

/* ==========================================================================
   GENERAL BASE
   ========================================================================== */

body {
  background: rgb(130,141,253); 
  background-image: url('assets/cursor_background.png');
  background-image: url('assets/cursor_background.png'), linear-gradient(180deg, rgba(130,141,253,1) 0%, rgba(210,214,254,1) 100%);
  cursor: url(../img/cursor_48.png), auto;
  background-attachment: fixed;
}

h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 21px;
  text-align: center;
  margin-top: 2%;
  line-height: 140%;
  padding-right: 15%;
  padding-left: 15%;
  font-weight: 400;
  color: #000;
}

h1 strong {
  font-weight: 700;
} 

p {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  text-align: center;
  margin-top: 2%;
  line-height: 140%;
  padding-right: 15%;
  padding-left: 15%;
  font-weight: 400;
  color: #000;
}

p strong {
  font-weight: 700;
}


/* ==========================================================================
   LINKS
   ========================================================================== */

.action a button {
  -webkit-transition: .2s;
  transition: .4s;
}


/* ==========================================================================
   BOX
   ========================================================================== */

.box-no-bottom {
  padding-top: 3.5%;
  max-width: 858px;
  margin: auto;
}

.box-no-top {
  padding-top: 0;
  padding-bottom: 3.5%;
  margin-bottom: 100%;
  max-width: 858px;
  margin: auto;
}
 
/* ==========================================================================
   CALL TO ACTION
   ========================================================================== */

.section-button {
  background-color: #fff;
  border: 3px solid #000;
  padding: 1.5% 4%;
  text-decoration: none;
  margin: 0 auto;
  margin-left: 0.5%;
  margin-right: 0.5%;
  display: inline-block;
  cursor: pointer;
  font-size: 14px;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-button:hover {
  cursor: url(../img/cursor_48_hover.png), pointer;
  color: #fff;
  background-color: #000;
}

.action {
  padding-top: 2.5%;
  padding-bottom: 2.5%;
  text-align: center;
}

/* ==========================================================================
   IMAGES
   ========================================================================== */

.fotos {
  margin-bottom: 1.5%;
}

/*==========  Non-Mobile First Method  ==========*/

    /* Medium Devices, Desktops */
    @media only screen and (max-width : 992px) {

      h1 {
        font-size: 23px;
        line-height: 135%;
      }

      .section-button {
        font-size: 15px;
        padding: 1.5% 4%;
        border: 2px solid #000;
      }

      p {
        font-size: 14px;
        line-height: 145%;
      }

   } 

    /* Small Devices, Tablets */
    @media only screen and (max-width : 767px) {

      h1 {
        font-size: 18px;
      }

      p {
        font-size: 11px;
      }

	}

    /* Extra Small Devices, Phones */ 
    @media only screen and (max-width : 480px) {

      h1 {
        font-size: 14px;
        line-height: 115%;
      }

      .section-button {
        font-size: 17px;
        margin-top: 1%;
        margin-bottom: 1%;
      }

      p {
        font-size: 10px;
        line-height: 15px;
      }

      .container-fluid {
        padding-right: 1px;
        padding-left: 1px;
      }

      .box-no-bottom {
        margin-top: 10%;
      }

    }


