body {
  font-family: "Montserrat";
  text-align: center;
}

.gradient-background {
  background: linear-gradient(300deg, #00bfff, #ff4c68, #ef8172);
  background-size: 180% 180%;
  animation: gradient-animation 18s ease infinite;
}
.gradient-background-reverse {
  background: linear-gradient(300deg, #ef8172, #ff4c68, #ffbf4c);
  background-size: 180% 180%;
  animation: gradient-animation 18s ease infinite;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

h1,
h2,
.nav-link,
.features-h3,
.cta-h3 {
  font-family: "Montserrat";
}
h1,
h2,
.cta-h3 {
  line-height: 1.5;
}
h1 {
  font-weight: bold;
  font-size: 3.5rem;
}
h2 {
  font-weight: 700;
  font-size: 3rem;
}

/* Navigation Bar */

.container-fluid {
  padding: 3% 15% 7%;
}

.navbar-nav {
  padding-left: 2rem;
}

.navbar {
  padding-bottom: 4.5rem;
}
.navbar-brand {
  font-size: 2.5rem;
  font-family: "Ubuntu";
  font-weight: bold;
}
.nav-item {
  padding: 0 18px;
}
.nav-link {
  font-size: 1.2rem;
  font-weight: light;
}
.colored-section {
  color: white;
}
.white-section {
  background-color: white;
}
/* Title section  */

.download-btn {
  text-align: left;
}
.btn {
  margin-top: 2rem;
}
.cat-parent {
  position: relative;
  top: -2rem;
  left: 2rem;
}
.cat-img {
  width: 60%;
  transform: rotate(25deg);
  position: absolute;
  right: 30%;
}

.btn-outline-light {
  margin-left: 1rem;
}

/* Features */

#features {
  padding: 7% 15%;
  position: relative;
}
.features-columns {
  padding: 4.5%;
}
.features-icons {
  color: #ff4c68;
  font-size: 5.5rem;
  margin-bottom: 1.5rem;
}
.features-icons:hover {
  color: #ef8172;
}
.features-h3 {
  font-weight: 700;
  font-size: 1.5rem;
  padding-bottom: 0;
}
.features-p {
  color: #8f8f8f;
}
/* Testimonials Section */
#testimonials {
  background-color: #ff4c68;
}
.testimonial-icon {
  width: 10%;
  border-radius: 100%;
  margin: 20px;
}
.carousel-item {
  padding: 7% 15%;
}

/* Press Section */

#press {
  background-color: #ff4c68;
  padding-bottom: 3%;
}

.press-icons {
  margin: 20px 20px 50px;
  width: 15%;
  filter: grayscale(100%);
  transition: all 0.2s;
}
.press-icons:hover {
  filter: grayscale(0%);
  transform: scale(1.2);
}

/* Pricing section */

#pricing {
  padding: 100px;
}

.pricing-col {
  padding: 3% 2%;
}
/* Cta Sction */
#cta {
  padding: 3% 15%;
}
.cta-h3 {
  font-weight: bold;
  font-size: 3.5rem;
  margin-top: 6rem;
}
.cta-btn {
  margin: 3rem 1rem 5rem;
  padding: 10px 20px;
  font-weight: 500;
}
/* Footer Section  */
#footer {
  padding: 6rem 6rem 1.3rem 6rem;
}
.fa-lg {
  padding: 1rem 1rem;
  color: #000;
}

.footer-p {
  color: grey;
  font-weight: 500;
}

@media (max-width: 768px) {
  .cat-img {
    position: static;
    transform: rotate(0);
    padding-top: 4%;
  }
  #title {
    text-align: center;
  }
}
