* {
  font-family: "Montserrat", sans-serif !important;
  text-align: center;
}

body {
  font-family: "Montserrat", sans-serif;
  text-align: center;
}

/* Title */
.colored-section {
  background-color: #6739B6;
  color: #fff;
}

#title {
  text-align: left;
}

.navbar-brand img {
  width: 250px;
  height: auto;
  justify-content: flex-start;
}


.push-right {
  justify-content: flex-end;
}

.big-heading {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.5;
}

p,
h1,
h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.nav-link {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.nav-link:hover {
  color: black !important;
}

h2:hover,
h1:hover {
  color: blanchedalmond !important;
}



/* Animations for logo and hero image */
.nav-link:hover {
  transition: transform 0.3s ease-in-out;
  transform: scale(1.1);
}

.big-heading:hover {
  transition: transform 1s ease !important;
  transform: scale(1.1) !important;
}

#phonepe_logo:hover {
  transition: transform 0.5s ease;
  transform: scale(1.3);
}

#phonepe_hero {
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-final {
  transform: rotate(25deg);
}

.hero-init {
  transform: scale(0.2) rotate(-90deg);
  opacity: 0;
  animation: heroScaleUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes heroScaleUp {
  to {
    transform: scale(1) rotate(25deg);
    opacity: 1;
  }
}

#phonepe_hero:hover {
  animation: heroRotate360 8s linear infinite;
  transform-origin: 50% 50%;
}

@keyframes heroRotate360 {
  from {
    transform: scale(1) rotate(25deg);
    opacity: 1;
  }

  to {
    transform: scale(1) rotate(385deg);
    opacity: 1;
  }
}



/* features */
#features {
  padding-top: 2em;
}

.white-section {
  margin-top: 10em;
  margin-bottom: 10em;
}

.feature-box {
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.050);
  transition: transform 2s ease !important;
}

.feature-box:hover {
  border: 2px solid rgba(255, 166, 0, 0.772);
  border-radius: 25px;
  box-shadow: 5px 10px 35px 35px rgba(0, 0, 0, 0.1);
  transform: translateY(-20px) !important;
}

.feature-box p:last-child {
  margin-bottom: 0;
}

.feature-icon {
  height: 4rem;
  width: auto;
}

#features .row {
  align-items: start;
}


/* pricing */
#pricing {
  background-color: #f5f5f5;
  padding-top: 5em;
  padding-bottom: 5em;
}

.main:hover {
  transform: scale(1.3);
  transition: transform 1s ease;
  z-index: 1;
  color: purple !important;
  font-weight: bolder;
}

.card-header:hover {
  background-color: orange !important;
  color: black !important;
  font-weight: bolder;
  transition: background-color 0.5s ease;
}

.price:hover {
  transition: transform 0.5s ease !important;
  transform: scale(1.05) !important;
}

li:hover {
  transition: transform 0.3s ease-in-out;
  transform: scale(1.1);
}

#transaction-fees:hover {
  transition: transform 0.3s ease-in-out;
  transform: scale(1.05);
}

/* Customers */
.grey-section {
  padding: 7em;
  padding-bottom: 0;
}

#barackobama {
  border-radius: 50%;
  height: 125px;
  width: 150px;
  margin: 30px auto;
  vertical-align: middle;
}

.media img {
  height: 50%;
  width: 50%;
  margin: 20px;
  transition: transform 0.3s ease;
}

.media img:hover {
  transform: scale(1.1);
}

#barackobama:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
  box-shadow: 2px 7px 10px 10px rgba(0, 0, 0, 0.2);
}

/* Media queries */
@media only screen and (max-width: 1024px) {
  #title {
    text-align: center;
  }

  .image-iphone {
    display: block;
    margin: 0 auto;
    width: 60%;
  }

  #phonepe_hero {
    transform: rotate(0);
  }

  h2 {
    font-size: 2rem;
  }

  .media img {
    width: 105px;
    height: 55px;
  }

  .feature-box,
  .feature-box:hover {
    margin-left: 11.5%;
  }

  .price {
    margin-top: 2em !important;
  }
}