html {
   scroll-behavior: smooth;
}

@media screen and (prefers-reduced-motion: reduce) {
   html {
      scroll-behavior: auto;
   }
}

* {
   margin: 0;
   padding: 0;
   list-style-type: none;
}

body {
   font-family: "Roboto", serif;
   font-size: 1em;
   line-height: 1.3;
   margin: 0;
   padding: 0;
   color: #000625;
}

h1 {
   font-size: 2.5em;
   font-weight: 700;
   line-height: 1;
   margin-bottom: 0.5em;
}

h2 {
   font-size: 2em;
   margin-bottom: 0.5em;
   line-height: 1;
   font-weight: 400;
}

h3 {
   font-size: 1.5em;
   margin: 0 0 1em 0;
   font-weight: 300;
   line-height: 1.2;
}

h4 {
   font-size: 1.313em;
   line-height: 1.2;
   margin: 0 0 0.5em 0;
}

p {
   font-size: 1em;
   font-weight: 300;
   margin-bottom: 1em;
}

img {
   max-width: 100%;
}

a {
   color: #000;
   text-decoration: none;
   transition: 0.2s;
}

a:hover {
   color: #00d6d6;
}

.button {
   background-color: #003357;
   border-radius: 6px;
   display: block;
   width: 100%;
   color: #FFF;
   font-weight: 500;
   height: 64px;
   padding: 0 20px;
   text-align: center;
   line-height: 64px;
   text-decoration: none;
   font-size: 1.25em;
   margin: 2em 0 0 0;
   max-width: 220px;
   transition: 0.2s;
}

.button:hover {
   background-color: rgb(0, 45, 116);;
   color: #FFF;
}

.clearfix::after {
   content: "";
   clear: both;
   display: table;
}

.wrap {
  margin: 0 auto;
  padding: 5em 0;
  width: 90%;
  max-width: 1000px;
}

.highlight {
   background-color: #B31983;
   color: #FFF;
   padding: 8px 8px 8px 0;
   display: inline-block;
}

video {
   max-width: 100%;
   margin-bottom: 2em;
}

.floatLeft,
.floatRight {
   margin-bottom: 2em;
   text-align: left;
}

@media only screen and (min-width: 900px) {


   h4 {
      font-size: 1.313em;
      margin: 0 0 0.5em 0;
   }

   p {
      font-size: 1.125em;
   }

   .floatLeft {
      float: left;
      width: 50%;
      margin-right: 6%;
   }

   .floatRight {
      float: right;
      width: 44%;
   }

}

/****   HEADER   ****/

.header {
   background-color: #FFF;
}

.header .wrap {
   padding: 2em 0;
}

.logo {
  text-align: center;
  width: 100%;
}

.nav {
  margin: 1.5em auto 0 auto;
  width: 100%;
  text-align: center;
}

.nav a {
  color: #000;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
  margin: 5px 10px;
  text-transform: uppercase;
}

.nav a:hover {
   color: rgb(0, 45, 116);
}

@media only screen and (min-width: 900px) {

   .logo {
     float: left;
     text-align: left;
     width: auto;
   }

   .nav {
     float: right;
     margin: 15px 0 0 0;
     width: auto;
   }

   .nav a {
     margin: 0 1em;
   }

}

#sobre {
   background-image: url('images/sobreBannerV2.jpg');
   background-repeat: no-repeat;
   background-size: cover;
   background-position: 50% 50%;
   text-align: center;
}

.plan {
   text-align: center;
}

.plan ul {
   margin-top: 2em;
}

.plan ul li {
   display: inline-block;
   vertical-align: top;
   width: 40%;
   margin: 1%;
}

.plan img {
   width: 50%;
   max-width: 70px;
}

.plan ul li h3 {
   margin: 10px 0 5px 0;
}

#testimonials {
   background-image: url('images/sobreBannerV2.jpeg');
   background-repeat: no-repeat;
   background-size: cover;
   background-position: 50% 50%;
   text-align: center;
}

#testimonials ul li {
   display: inline-block;
   width: 90%;
   margin: 2em 1% 0 1%;
   background-color: #FFF;
   text-align: left;
   font-size: 0.913em;
   vertical-align: top;
}

#testimonials p {
   padding: 30px;
}

#testimonials ul li div {
   background-color: #003357;
   padding: 30px;
   color: #FFF;
}

#testimonials ul li div img {
   display: block;
   width: 50px;
   border-radius: 50%;
   margin-right: 1em;
   float: left;
}

#testimonials ul li div h3 {
   margin-bottom: 5px;
   display: inline-block;
}


#footer {
   background-color: #003357;
   color: #FFF;
   text-align: center;
}


@media only screen and (min-width: 900px) {

   .floatLeft,
   .floatRight {
      margin-bottom: 0;
   }

   #testimonials ul li {
      width: 47%;
   }

   .plan ul li {
      width: 22%;
   }


}