* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Varela Round", sans-serif;
}

html {
  scroll-behavior: smooth;
}

/****** Mobile Layout ******/
.to-top-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  font-size: 1.8rem;
  background-color: #023047;
  border: 2px solid white;
  border-radius: 5px;
  padding: 5px;
  color: white;
  z-index: 2;
  display: none;
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

header .top-part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  color: white;
  background-color: #1b2a41;
  width: 100%;
  border-bottom: 2px solid white;
  z-index: 1;
}

header .top-part .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

header .top-part .logo img {
  height: 2.2em;
  margin: 10px 1vw;
}

header .top-part .logo .logo-words h1 {
  font-size: 1.6em;
}

header .top-part .nav-btn {
  color: white;
  background-color: transparent;
  margin-right: 3%;
  border: none;
}

header .top-part .nav-btn i {
  font-size: 1.8em;
  cursor: pointer;
}

header nav {
  width: 100%;
  -webkit-transform: translateY(-80px);
          transform: translateY(-80px);
  position: absolute;
  -webkit-transition: 600ms all ease-in-out;
  transition: 600ms all ease-in-out;
}

header nav ul {
  background-color: #023047;
  list-style: none;
  padding: 0;
  margin: 0;
}

header nav ul li {
  padding: 8px 20px;
  border-bottom: 2px solid white;
}

header nav ul li a {
  text-decoration: none;
  font-size: 1.3em;
  color: white;
}

header nav ul li:last-child {
  border: none;
}

header nav.active {
  -webkit-transform: translateY(56px);
          transform: translateY(56px);
}

section.home {
  color: white;
  background-color: #007ea7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding: 1em 2em;
  z-index: -1;
}

section.home .word-part {
  margin-bottom: 4em;
  width: 100%;
}

section.home .word-part h2 {
  font-size: 1.6rem;
  margin: 2em 0;
  line-height: 1.2em;
  font-family: "Varela Round", sans-serif;
}

section.home .word-part .store-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-top: 1em;
}

section.home .word-part .store-links img {
  width: 12em;
}

section.home .phone-mockup {
  display: none;
}

section.features .heading {
  background-color: #007ea7;
}

section.features .heading .word {
  color: white;
  background-color: #1b2a41;
  position: relative;
  width: 160px;
  padding: 0 10px;
  height: 1.8em;
  display: block;
  margin-left: 2.4em;
}

section.features .heading .word::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-bottom: 1.8em solid #1b2a41;
  clear: both;
}

section.features .heading .word::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  width: 0;
  height: 0;
  border-right: 24px solid transparent;
  border-bottom: 1.8em solid #1b2a41;
  clear: both;
}

section.features .heading .word h2 {
  font-size: 1.4rem;
  text-align: center;
  margin-right: 15px;
}

section.features .heading .line {
  width: 100%;
  height: 0.4em;
  background-color: #1b2a41;
}

section.features .content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -ms-grid-rows: auto;
      grid-template-rows: auto;
  gap: 10px;
  padding: 20px 20px;
}

section.features .content .feature-card {
  color: white;
  background-color: #023047;
  width: 88%;
  padding: 16px 0;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -ms-grid-column-align: center;
      justify-self: center;
  border-radius: 30px;
}

section.features .content .feature-card h3 {
  text-align: center;
  font-family: "Lobster", cursive;
  font-weight: 100;
}

section.comments .heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

section.comments .heading .word {
  color: white;
  background-color: #007ea7;
  position: relative;
  width: 90px;
  height: 1.8em;
  padding: 0 10px;
  display: block;
  margin-right: 2.4em;
}

section.comments .heading .word::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  width: 0;
  height: 0;
  border-left: 24px solid transparent;
  border-bottom: 1.8em solid #007ea7;
  clear: both;
}

section.comments .heading .word::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  width: 0;
  height: 0;
  border-right: 18px solid transparent;
  border-bottom: 1.8em solid #007ea7;
  clear: both;
}

section.comments .heading .word h2 {
  font-size: 1.4rem;
  text-align: left;
  margin-right: 15px;
}

section.comments .heading .line {
  width: 100%;
  height: 0.4em;
  background-color: #007ea7;
}

section.comments .carousel-zone {
  background-color: white;
  border: 10px solid #007ea7;
  border-top: none;
  padding: 0 10px;
  height: 480px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

section.comments .carousel-zone .owl-carousel {
  padding: 0 50px;
}

section.comments .carousel-zone .owl-carousel .comment {
  color: white;
  background-color: #007ea7;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -ms-grid-rows: 6rem 2rem 1rem minmax(1rem, auto);
      grid-template-rows: 6rem 2rem 1rem minmax(1rem, auto);
  justify-items: center;
  gap: 5px;
  padding: 20px;
  height: 400px;
  width: 100%;
  border: 10px solid #1b2a41;
}

section.comments .carousel-zone .owl-carousel .comment .profile-photo {
  width: 5em;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

section.comments .carousel-zone .owl-carousel .comment .name {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  font-size: 1.2rem;
  position: relative;
}

section.comments .carousel-zone .owl-carousel .comment .rating {
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  grid-row: 3/4;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-flex-item-align: start;
      align-self: flex-start;
  position: relative;
}

section.comments .carousel-zone .owl-carousel .comment .rating i {
  color: yellow;
  font-size: 1.2em;
}

section.comments .carousel-zone .owl-carousel .comment .content {
  text-align: center;
  -ms-grid-row: 4;
  -ms-grid-row-span: 1;
  grid-row: 4/5;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin: 10px 0;
  font-size: 0.8rem;
}

section.comments .carousel-zone .owl-carousel .owl-nav [class^="owl-"] {
  font-size: 3em;
  color: #9b9999;
  position: absolute;
  top: 45%;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}

section.comments .carousel-zone .owl-carousel .owl-nav .owl-prev {
  left: 0;
}

section.comments .carousel-zone .owl-carousel .owl-nav .owl-next {
  right: 0;
}

footer {
  color: white;
  background-color: #1b2a41;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px;
  border-top: 1px solid white;
}

footer a {
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}

footer .icon-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
  margin: 10px;
}

footer .icon-box a {
  color: white;
  text-decoration: none;
}

footer .icon-box a i {
  font-size: 2em;
}

footer .icon-box a:hover {
  color: #007ea7;
}

footer .copyright p {
  font-size: 0.8rem;
}

footer .copyright p a {
  text-decoration: none;
  font-weight: bold;
  color: white;
}

/****** Desktop Layout ******/
@media (min-width: 780px) {
  header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    color: white;
    background-color: #007ea7;
    padding: 1.5em 2%;
  }
  header .top-part {
    background-color: #007ea7;
    width: auto;
    border-bottom: none;
  }
  header .top-part .nav-btn {
    display: none;
  }
  header nav {
    display: block;
    width: auto;
    position: relative;
    -webkit-transform: none;
            transform: none;
  }
  header nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    border: 2px solid white;
    border-radius: 25px;
    margin-right: 2%;
    background-color: #1b2a41;
  }
  header nav ul li {
    margin: 0 1em;
    border: none;
  }
  header nav ul li:first-child {
    width: 180px;
  }
  header nav ul li a {
    letter-spacing: 2px;
    position: relative;
  }
  header nav ul li a:after {
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    background: #fff;
    -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
  }
  header nav ul li a:hover:after {
    width: 100%;
    left: 0;
  }
  section.home {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  section.home .word-part {
    margin-left: 1.8em;
    margin-bottom: 0;
  }
  section.home .word-part h2 {
    width: 60%;
    font-size: 2.2rem;
    margin-bottom: 1.5em;
    margin-top: 0;
  }
  section.home .word-part .store-links {
    margin: 5em 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
  }
  section.home .phone-mockup {
    color: white;
    background-color: #007ea7;
    display: block;
    width: 300px;
    margin-right: 1.8em;
  }
  section.home .phone-mockup .device-wrapper .device .screen .crop {
    width: 100%;
    overflow: hidden;
  }
  section.home .phone-mockup .device-wrapper .device .screen .crop img {
    width: 100%;
    margin: 0 0 -22px 0;
  }
  section.features .heading .word {
    width: 240px;
    height: 2.5em;
  }
  section.features .heading .word::before {
    border-left: 18px solid transparent;
    border-bottom: 2.5em solid #1b2a41;
  }
  section.features .heading .word::after {
    border-right: 32px solid transparent;
    border-bottom: 2.5em solid #1b2a41;
  }
  section.features .heading .word h2 {
    font-size: 2.2em;
  }
  section.features .content {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto;
        grid-template-rows: auto;
    gap: 20px;
    padding: 40px 20px;
  }
  section.features .content .feature-card {
    color: white;
    background-color: #023047;
    width: 88%;
    padding: 42px 0;
  }
  section.features .content .feature-card h3 {
    font-size: 1.8em;
  }
  section.comments .heading .word {
    width: 128px;
    height: 2.5rem;
  }
  section.comments .heading .word::before {
    border-left: 32px solid transparent;
    border-bottom: 2.5em solid #007ea7;
  }
  section.comments .heading .word::after {
    border-right: 18px solid transparent;
    border-bottom: 2.5em solid #007ea7;
  }
  section.comments .heading .word h2 {
    font-size: 2.2rem;
  }
  section.comments .carousel-zone {
    padding: 0 80px;
  }
  section.comments .carousel-zone .owl-carousel {
    padding: 0 2vw;
  }
  section.comments .carousel-zone .owl-carousel .comment .profile-photo {
    width: 6em;
  }
  section.comments .carousel-zone .owl-carousel .comment .name {
    font-size: 1.5em;
  }
  section.comments .carousel-zone .owl-carousel .comment .content {
    font-size: 1rem;
  }
  section.comments .carousel-zone .owl-carousel .owl-nav [class^="owl-"] {
    font-size: 4em;
    top: 40%;
  }
  section.comments .carousel-zone .owl-carousel .owl-nav .owl-prev {
    left: -4%;
  }
  section.comments .carousel-zone .owl-carousel .owl-nav .owl-next {
    right: -4%;
  }
  footer .copyright a:hover {
    color: #007ea7;
  }
}
/*# sourceMappingURL=style.css.map */