/* Responsive Styles */

/* Mobile Screen */

@media (max-width: 576px) {


  body {
    font-size: 1rem;
  }

  h2 {
    font-size: 2rem;
  }

  .btn-success {
    font-size: 1rem;
  }

  .btn-secondary {
    font-size: 1rem;
  }

  section.first .money-bag {
    width: 7rem;
    height: fit-content;
    color: #fff;
  }

  .logo {
    height: 20px;
  }

  section.second {
    display: flex;
  }

  section.fourth img {
    max-width: 100%;
  }

  footer .valuation-logo {
    height: 20px;
  }

  footer .container .footer-logos {
    align-items: center;
  }

  footer .container .footer-logos {
    display: flex;
    flex-direction: column;
    padding: 1rem;
  }

  footer .certificates-group {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
  }
}

/* Tablet Screen */

@media (min-width: 577px) and (max-width: 768px) {
  body {
    font-size: 1rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .btn-success {
    font-size: 1rem;
  }

  .btn-secondary {
    font-size: 1rem;
  }

  .navbar {
    padding: 1rem;
  }

  footer .valuation-logo {
    height: 20px;
  }

  footer .container .footer-logos {
    align-items: center;
  }

  footer .container .footer-logos {
    display: flex;
    flex-direction: column;
    padding: 0 1rem;
  }

  footer .certificates-group {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
  }
}

/* Desktop Screen */

@media (min-width: 769px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .btn-success {
    font-size: 1.25rem;
  }

  .btn-secondary {
    font-size: 1.25rem;
  }

  .navbar {
    padding: 1rem 2rem;
  }

  footer .container .footer-logos {
    display: flex;
    flex-direction: row;
    padding: 1rem;
  }

  footer .certificates-group {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
  }
}

/* Extra Large Screen */

@media (min-width: 1440px) {

  p {
    font-size: 1.25rem;
  }

  .btn-success {
    padding: 0.5rem 1.5rem;
  }

  section .btn-success {
    width: fit-content;
    height: 4.5rem;
    display: flex;
    align-items: center;
    padding: 0 1rem;
  }

  section .btn-success p {
    margin: 0;
    font-size: 1.25rem;
    padding: 0 0.75rem;
  }

  section.first .btn-secondary {
    height: 4.5rem;
    display: flex;
    align-items: center;
    padding: 0 2rem;
  }

  section.first .container {
    display: flex;
    height: 100%;
    justify-content: space-around;
  }
}