body {
  font-family: 'Montserrat', sans-serif;
}

nav,
nav a {
  text-transform: uppercase;
  color: white;
}

nav a.active {
  color: #475CFD;
  font-weight: bold;
}

nav a:hover {
  color: #475CFD;
}

nav h5 {
  font-weight: bold;
}

.main {
  color: white;
}

.main h1 {
  font-weight: 100;
}

.main h1 span {
  font-weight: 600;
  color: #ff9900;
}

.main p {
  font-size: 20px;
  font-weight: 100;
  margin-top: 20px;
}

.card-body {
  position: relative;
  overflow: hidden;
  padding-left: 5rem;
  padding-bottom: 5rem;
}

.bg-img {
  position: absolute;
  bottom: 85px;
  right: -0px;
  width: 50%;
}

.call-to-action {
  background-color: transparent;
  position: relative;
  border-radius: 30px;
  padding: 0.45rem;
  transition: all 0.5s ease-in-out;
  display: inline-block;
}

.call-to-action.bigger {
  background-color: #FF4887;
}

.call-to-action .button {
  text-decoration: none;
  background-color: #FF4887;
  color: white;
  border-radius: 30px;
  border: none;
  padding: 0.45rem;
  display: block;
  outline: none;
}

.call-to-action .button:active, .call-to-action .button:focus {
  outline: none;
}

/*.btn{*/
/*    background: linier-gradient(90deg, #be2edd, #5f27cd);*/
/*    color: #fff;*/
/*    font-size: 16px;*/
/*    border: none;*/
/*    border-radius: 25px;*/
/*    outline: none;*/
/*    cursor: pointer;*/
/* } */

@media (max-width: 420px) {

  #nav-home .nav-link {
    display: inline-block;
  }

  #nav-home .nav-link {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  #nav-home .nav-link:first-of-type {
    padding-left: 0px;
  }

  #nav-home .nav-link:last-of-type {
    padding-right: 0px;
  }

  h1.display-4 {
    font-size: 2rem;
  }

  .bg-img {
    display: none;
  }

  .call-to-action {
    text-align: center;
    display: block;
  }

  .card {
    border-radius: 0px;
  }

  .card-body {
    border-radius: 0px;
    padding-left: 2rem;
  }

  .call-to-action .button {
    width: 100%;
  }
}