.contact i {
    font-size: 5rem;
    color: #011f37; text-decoration: none; line-height: inherit;
}
.contact{
    cursor: pointer;
    text-align: center;
    padding: 2rem;
    display: flex;
    justify-content: space-evenly;
}
body {
    font-size: 16px;
    font-family: Montserrat;
    font-weight: 400;
    background: #fcfcfc;
    line-height: 170%;
  }
  
  strong,
  b {
    font-weight: 600
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-weight: 300;
    line-height: 150%;
  }
  
  *,
  *:before,
  *:after {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
  /*clearfixes*/
  
  .cf:before,
  .cf:after {
    content: " ";
    display: table;
  }
  
  .cf:after {
    clear: both;
  }
  
  .main-container {
    max-width: 1000px;
    margin: 25px auto 25px auto;
    position: relative;
  }
  
  .container {
    position: relative;
    padding: 25px;
  }
  
  /*animation element sliding left*/
  
  /*animation slide left styled for testimonials*/
  
  .animation-element.slide-left.testimonial {
    border-radius: 15px;
    float: left;
    width: 47%;
    margin: 0% 1.5% 3% 1.5%;
    background: #fff;
    padding: 15px;
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2);
    border: solid 1px #EAEAEA;
  }
  
  .animation-element.slide-left.testimonial:hover,
  .animation-element.slide-left.testimonial:active{
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.25);
  }
  
  .animation-element.slide-left.testimonial .left{
    float: left;
    margin-right: 15px;
  }
  
  .animation-element.slide-left.testimonial img {
    width: 100px;
    height: 100px;
    border-radius: 25px;
    background-size: cover;
    box-shadow: 0px 1px 3px rgba(51, 51, 51, 0.5);
  }
  
  .animation-element.slide-left.testimonial .content {
    float: left;
    width:100%;
    margin-bottom: 10px;
  }
  
  .animation-element.slide-left.testimonial .rating{
    color: #1e2e7a;
  }
  
  .animation-element.slide-left.testimonial i {
    margin-right: 5px;
  }


  /* Whatsapp Icon */


  .btn-whats{
    background-color: #25D366;
    color: white;
    width: 4rem;
    height: 4rem;
    text-decoration: none;
    border-radius: 800px;
    padding: 20px;
    top: 85%;
    left: 90%;
    position: fixed;
    transition: all .6s;
    animation: 2s btn-whats;
    animation-fill-mode: both;
    animation-iterative-count: 1;
    z-index: 1;
  }.btn-whats:hover{
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
  }

  
.btn-whats > i{
    position: relative;
    font-size: 2rem;
    margin: -3px -2px;
  }

  
@media only screen and (min-width: 900px){
    .btn-whats{
      left: 92%;
    }
    
  
  }
  
  @media only screen and (max-width: 700px){
    .btn-whats{
      left: 85%;
    }
    h1{
      font-size: 1.8rem;
    }
  }
  
  @media only screen and (max-width: 450px){
    .btn-whats{
      left: 80%;
    }
    
  }
  
  @media only screen and (max-width: 350px){
    .btn-whats{
      left: 75%;
    }
  }
  /* Animações */
  @keyframes btn-whats{
    10%{
      transform: translate(0, 200px); 
    }
    50%{
      transform: translate(0, -40px);
    }
    
    70%{
      transform: scale(1.1);
    }
  }
  
  @keyframes pulse {
    50%{
      transform: scale(1.1);
    }
  }
  
  