html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
  
}

body{
  font-family: 'Rawline', sans-serif;
  font-size: 14px;
}

.text-info {
  color: #2652A1!important;
}

/*a:hover{
color: #ff0000;
text-decoration: none;
}*/

.text-info:hover{
color:#ff0000;
}
/*
body {
  background-color: yellow;
}
*/
.mobile {
  opacity: 0; /* Esconde no desktop. */
  height: 0;
  background-color: #fff;
  padding: 10px;
  text-align: center;
}

@media only screen and (max-width: 751px) {
  /*
  body {
    background-color: lightblue;
  }*/

  .topo {
    display: none;
  }

  .mobile {
    opacity: 1; /* Só aparece no mobile. */
    height: auto;
  }

}

/*

@media screen and (max-width: 720px) {
  .topo {
    display: none;
  }

  
}*/

.container {
  max-width: 960px;
}

.pricing-header {
  max-width: 700px;
}

.card-deck .card {
  min-width: 220px;
}

.border-top { border-top: 1px solid #e5e5e5; }
.border-bottom { border-bottom: 1px solid #e5e5e5; }

.box-shadow { box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); }
