* {
  font: inherit;
}

*, *::before, *::after {
  box-sizing: border-box;
}

img, video, svg {
  display: block;
  height: auto;
  max-width: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: "poppins", sans-serif;
}

:root {
  --main-color: #3182CE;
  --main-bg-color: #F3F4F6;
  --main-btn-color: #FFD700;
}

strong {
  color: var(--main-color);
}

strong.gold-text {
  color: var(--main-btn-color);
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */ /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */ /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
     supported by Chrome, Edge, Opera and Firefox */
}

.navbar nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1rem 3rem;
}
.navbar nav .logo {
  font-size: 2.35rem;
  font-weight: bold;
}
.navbar nav .logo a {
  text-decoration: none;
  color: #000;
  display: flex;
  align-items: center;
}
.navbar nav ul {
  list-style-type: none;
  display: flex;
  gap: 2em;
  justify-self: center;
  padding: 0;
}
.navbar nav ul .select {
  font-weight: bold;
}
.navbar nav ul .download-now-btn {
  border: none;
  padding: 0.75em 2em;
  color: #fff;
  background-color: var(--main-color);
  border-radius: 1rem;
  font-weight: 600;
  cursor: pointer;
  font-size: 1.05em;
  transition: transform 0.3s ease;
}
.navbar nav ul .download-now-btn:hover {
  transform: scale(1.05);
  background-color: #0d82ee;
}
.navbar nav ul .download-now-btn:active {
  background-color: #469ae9;
}
.navbar nav ul li a {
  text-decoration: none;
  color: #626262;
  position: relative;
}
.navbar nav ul li a::after {
  content: "";
  position: absolute;
  background-color: var(--main-btn-color);
  height: 3px;
  width: 0;
  left: 0;
  bottom: -10px;
  transition: 0.3s ease-in-out;
}
.navbar nav ul li a:hover::after {
  width: 100%;
}
.navbar nav ul li a:hover {
  color: #000;
}
.navbar nav ul.center-column {
  font-size: 1.2rem;
}

.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: url(svg/wave.svg) no-repeat bottom;
  height: 88vh;
}
.hero-section .title {
  flex-basis: 60%;
  flex-grow: 1;
}
.hero-section h1 {
  font-size: 3.5rem;
  text-align: left;
  font-weight: bold;
  margin: 0 0 0 4rem;
  padding: 0;
}
.hero-section h1.second-h1 {
  font-size: 3.5rem;
  margin: 0 0 0 7rem;
}
.hero-section h1.second-h1 strong {
  color: var(--main-btn-color);
}
.hero-section .hero-img {
  flex-basis: 40%;
  padding: 0;
  flex-grow: 1;
  filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.5));
}
.hero-section img {
  width: 100%;
}

.cta-section {
  display: block;
  text-align: center;
  background-color: #09f;
  padding: 2rem 0 2rem 0;
  box-shadow: #bbbbbb 10px 10px 10px;
}
.cta-section .download-btn {
  border: none;
  padding: 0.75em 2em;
  color: #fff;
  background-color: var(--main-btn-color);
  border-radius: 1rem;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.1em;
  transition: transform 0.3s ease;
  margin-top: 2rem;
}
.cta-section .download-btn:hover {
  transform: scale(1.05);
  background-color: #ffee00;
}
.cta-section .download-btn:active {
  background-color: #fff700;
}
.cta-section .subtitle {
  color: #fff;
  font-weight: 600;
  font-size: 1.25rem;
  margin: 0 0 1rem 0;
}

.features-section {
  margin: 0 2rem 7rem 2rem;
}
.features-section .title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: var(--main-color);
  margin: 6rem 0;
}
.features-section .wrapper {
  display: flex;
  gap: 2rem;
}
.features-section .wrapper .card {
  text-align: center;
  border: solid var(--main-bg-color) 3px;
  border-radius: 2rem;
  padding: 6rem 5rem;
  box-shadow: var(--main-bg-color) 10px 10px 20px;
}
.features-section .wrapper .card .article-title h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 5rem;
}
.features-section .wrapper .card .article-title i {
  font-size: 3rem;
  color: var(--main-btn-color);
}

.testimonials-section .title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: var(--main-color);
  margin: 6rem 0;
}
.testimonials-section .wrapper {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 1rem;
}
.testimonials-section .wrapper .card {
  display: flex;
  flex-direction: column;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  justify-content: space-between;
  border: solid var(--main-bg-color) 3px;
  border-radius: 2rem;
  padding: 3rem 5rem;
  width: 450px;
  height: auto;
  margin: 1rem 0;
  box-shadow: var(--main-bg-color) 10px 10px 20px;
}
.testimonials-section .wrapper .card .testimonial-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonials-section .wrapper .card .testimonial-user .name {
  color: var(--main-btn-color);
  font-weight: bold;
}
.testimonials-section .wrapper .card .testimonial-user .pfp-img {
  width: 30px;
}

.secondary-cta {
  display: block;
  text-align: center;
  background-color: #09f;
  padding: 2rem 0 2rem 0;
  box-shadow: #bbbbbb 10px 10px 10px;
  margin-top: 7rem;
}
.secondary-cta .cta-btn {
  border: none;
  padding: 0.75em 2em;
  color: #fff;
  background-color: var(--main-btn-color);
  border-radius: 1rem;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.1em;
  transition: transform 0.3s ease;
  margin-top: 2rem;
}
.secondary-cta .cta-btn:hover {
  transform: scale(1.05);
  background-color: #ffee00;
}
.secondary-cta .cta-btn:active {
  background-color: #fff700;
}
.secondary-cta .title {
  color: #fff;
  font-weight: 600;
  font-size: 1.25rem;
  margin: 0 0 1rem 0;
}

footer {
  text-align: center;
  margin-top: 5rem;
}
footer .footer-socials ul {
  display: flex;
  text-align: center;
  justify-content: center;
  list-style-type: none;
  gap: 2rem;
  margin: 2rem 0;
  padding: 0;
  font-size: 1.5rem;
}
footer .footer-socials a {
  color: #626262;
}
footer .footer-socials a:hover {
  color: var(--main-color);
}
footer .footer-links ul {
  font-size: 1.1rem;
  display: flex;
  list-style-type: none;
  justify-content: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
}
footer .footer-links a {
  color: #626262;
}
footer .footer-links a:hover {
  color: var(--main-color);
}/*# sourceMappingURL=main.css.map */