@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@800&family=Poppins:wght@700&family=Roboto:wght@400;700&display=swap");
:root {
  --primary-color: #8ac926;
}

body {
  background: #F2F2F2;
  margin: 0;
  font-family: "Poppins";
}

.navbar {
  background-color: white;
  padding: 1em;
}
.navbar .logo {
  text-decoration: none;
  font-weight: bold;
  color: black;
  font-size: 1.2em;
}
.navbar span {
  color: var(--primary-color);
}
.navbar nav {
  display: none;
}
.navbar .container {
  display: flex;
  place-content: space-between;
}
.navbar .mobile-menu {
  cursor: pointer;
}

a {
  color: #219ebc;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

section {
  padding: 5em 2em;
}

.hero {
  text-align: center;
}

.left-col .subhead {
  text-transform: uppercase;
  font-weight: bold;
  color: gray;
  letter-spacing: 0.3em;
}
.left-col h1 {
  font-size: 2.5em;
  line-height: 1.5em;
  margin-top: 0.2em;
}
.left-col h1, .left-col span {
  margin: 0px;
  font-size: 3rem;
  display: flex;
}
.left-col .blinking-cursor {
  color: #2E3D48;
  -webkit-animation: 1s blink step-end infinite;
  animation: 1s blink step-end infinite;
}
@keyframes blink {
  from, to {
    color: transparent;
  }
  50% {
    color: black;
  }
}
@-webkit-keyframes blink {
  from, to {
    color: transparent;
  }
  50% {
    color: black;
  }
}
.left-col .primary-cta {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  padding: 0.6em 1.5em;
  font-size: 1.4em;
  border-radius: 20px;
  font-weight: bold;
  display: inline-block;
  transition: 0.2s;
}
.left-col .primary-cta:hover {
  background-color: white;
  color: var(--primary-color);
}
.left-col .watch-video-cta {
  display: block;
  margin-top: 1em;
}
.left-col .watch-video-cta:hover {
  text-decoration: underline;
}
.left-col img {
  margin-right: 0.5em;
}

.hero-img {
  width: 70%;
  margin-top: 3em;
  -webkit-animation: introload 2s forwards;
          animation: introload 2s forwards;
}

@-webkit-keyframes introload {
  from {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  to {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

@keyframes introload {
  from {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  to {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
.features-section {
  background: #023047;
  color: white;
}

ul.features-list {
  margin: 0;
  padding: 0.1em;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
}
ul.features-list li {
  font-size: 1.1em;
  margin-bottom: 1em;
  margin-left: 2em;
  position: relative;
}
ul.features-list li:before {
  content: "";
  left: -2em;
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url("../images/bullet.svg");
}

.features-section img {
  display: none;
}

.testimonials-section {
  background-color: #00bbf9;
}
.testimonials-section li {
  background-color: #0077b6;
  text-align: center;
  padding: 2em 1em;
  margin: 0 auto 5px auto;
  border-radius: 20px;
}
.testimonials-section li img {
  width: 5em;
  height: 5em;
  border: 5px solid;
  border-radius: 50px;
  margin-top: -4, 5em;
  margin-top: -5em;
}

.Reviews {
  margin-top: 100px;
  font-size: large;
}

.Instagram {
  text-decoration: none;
  background: linear-gradient(-45deg, #ff006e 0%, #7209b7 100%);
  color: white;
  padding: 10px;
  border-radius: 20px;
  margin-right: 40px;
  transition: 0.23s;
}

.tiktok {
  text-decoration: none;
  background: linear-gradient(-45deg, black 0%, #7209b7 50%);
  color: white;
  padding: 10px;
  margin-right: 20px;
  border-radius: 20px;
  transition: 0.23s;
}

.youtube {
  text-decoration: none;
  background: red;
  padding: 10px;
  margin-left: 20px;
  border-radius: 20px;
  color: white;
  transition: 0.23s;
}

.youtube:hover {
  box-shadow: 1.5px 1.5px 0 rgba(0, 0, 0, 0.23);
}

.tiktok:hover {
  box-shadow: 1.5px 1.5px 0 rgba(0, 0, 0, 0.23);
}

.instagram:hover {
  box-shadow: 1.5px 1.5px 0 rgba(0, 0, 0, 0.23);
}

@media only screen and (max-width: 446px) {
  .Instagram {
    text-decoration: none;
    background: linear-gradient(-45deg, #ff006e 0%, #7209b7 100%);
    color: white;
    padding: 10px;
    border-radius: 20px;
    margin-right: 40px;
    display: block;
    text-align: center;
    margin-top: 5px;
    margin-right: 0px;
  }
  .tiktok {
    text-decoration: none;
    background: linear-gradient(-45deg, black 0%, #7209b7 50%);
    color: white;
    padding: 10px;
    margin-right: 20px;
    border-radius: 20px;
    display: block;
    text-align: center;
    margin-top: 5px;
    margin-right: 0px;
  }
  .youtube {
    text-decoration: none;
    background: red;
    padding: 10px;
    margin-left: 20px;
    border-radius: 20px;
    color: white;
    display: block;
    text-align: center;
    margin-top: 5px;
    margin-left: 0;
    margin-right: 0px;
  }
}
h3 {
  font-size: small;
}

h2 {
  font-size: 2em;
  font-weight: bold;
  margin-top: 0px;
}

label {
  display: block;
  font-size: 1.5em;
}

input, textarea {
  width: 100%;
  padding: 0.8em;
  margin-bottom: 1em;
  border-radius: 0.3em;
  border: 1px solid gray;
  box-sizing: border-box;
}

input[type=submit] {
  border: none;
  background-color: #219ebc;
  cursor: pointer;
  border-radius: 9px;
  font-weight: bold;
  font-size: large;
  color: white;
  width: 200px;
  transition: 0.23s;
}

input[type=submit]:hover {
  box-shadow: 1.5px 1.5px 0 rgba(0, 0, 0, 0.23);
}

iframe {
  height: 15em;
  width: 15em;
}

nav.menu-btn {
  display: block;
}

nav {
  position: fixed;
  z-index: 999;
  width: 66%;
  right: 0;
  top: 0;
  background: var(--primary-color);
  height: 100vh;
  padding: 1em;
}
nav ul.primary-nav {
  margin-top: 6em;
}
nav li a {
  color: white;
  display: block;
  padding: 0.5em;
  font-size: 1.2em;
  text-align: right;
  text-decoration: none;
}
nav li a:hover {
  font-weight: bold;
}
nav .mobile-menu-exit {
  float: right;
}

@media only screen and (min-width: 768px) {
  .mobile-menu, .mobile-menu-exit {
    display: none;
  }
  .navbar .container {
    display: grid;
    grid-template-columns: 180px auto;
    justify-content: unset;
  }
  .navbar nav {
    display: flex;
    justify-content: space-between;
    background: none;
    position: unset;
    height: auto;
    width: 100%;
    padding: 0;
  }
  .navbar nav ul {
    display: flex;
  }
  .navbar nav a {
    color: black;
    font-size: 1em;
    padding: 0.1em 1em;
  }
  .navbar nav .primary-nav {
    margin: 0;
  }
  .navbar nav li.go-premium-cta a {
    color: grey;
    border: solid;
    font-weight: bold;
    border-radius: 3em;
    margin-top: -0.2em;
  }
  .navbar nav:hover {
    color: white;
  }
  .left-col h1, .left-col span {
    margin: 0px;
    font-size: 3rem;
    display: inline-block;
  }
}
@media only screen and (min-width: 1080px) {
  .container {
    width: 1080px;
    margin: 0 auto;
  }
  section {
    padding: 10em 4em;
  }
  .hero .container {
    display: flex;
    justify-content: space-between;
    text-align: left;
  }
  .hero .container .left-col {
    margin: 3em 3em 0 5em;
  }
  .hero .container h1 {
    font-size: 3em;
    width: 90%;
  }
  .hero-img {
    width: 30%;
    margin-right: 8em;
  }
  .hero-cta {
    display: flex;
  }
  .primary-cta {
    margin-right: 1em;
  }
  ul.features-list {
    display: block;
    margin-left: 5em;
  }
  ul.features-list li {
    font-size: 1.4em;
  }
  ul.features-list li:before {
    width: 30px;
    height: 30px;
  }
  .features-section {
    position: relative;
  }
  .features-section img {
    display: block;
    position: absolute;
    right: 0;
    width: 350px;
    bottom: -2em;
  }
  .testimonials-section ul {
    display: flex;
  }
  .testimonials-section ul li {
    margin: 0 1em;
  }
  .primary-nav li, .secondary-nav li {
    display: flex;
    justify-content: space-between;
  }
  .contact-section {
    position: relative;
  }
  .contact-section .container {
    display: flex;
  }
  .contact-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 45%;
    height: 100%;
  }
  .contact-right iframe {
    height: 100%;
    width: 100%;
  }
  .left-col h1, .left-col span {
    margin: 0px;
    font-size: 3rem;
    display: inline-block;
  }
}/*# sourceMappingURL=main.css.map */