/*reset*/
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
  padding-top: 50px;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/*End Variables*/
/*Variables*/
body {
  font-family: "Roboto", sans-serif;
  color: #253635;
}

main,
footer {
  max-width: 1280px;
  margin: 0 auto;
}

main {
  padding: 20px;
}

.top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  max-width: 1280px;
  min-width: 100%;
  margin: 0 auto;
  background-color: #fff;
  transition: all 0.2s ease-in-out;
}
.top .top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background-color: #fff;
  transition: all 0.2s ease-in-out;
}
.top .top-content .logo {
  height: 150px;
  transition: all 0.5s ease;
}
.top .top-content .nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.top .top-content .nav label {
  font-size: 2em;
  cursor: pointer;
}
.top .top-content .nav input {
  display: none;
}
.top .top-content .nav #toggle:checked + nav {
  padding: 10px;
  transform: scaleY(1);
  display: flex;
  height: auto;
  margin: 10px 0;
  flex-direction: column;
  align-items: center;
  width: 300px;
}
.top .top-content .nav nav {
  text-align: right;
  background-color: #33827f;
  transition: all 0.3s ease;
  height: 0;
  transform: scaleY(0);
  transform-origin: top right;
}
.top .top-content .nav nav a {
  text-decoration: none;
  color: #fff;
  line-height: 1.5em;
  width: 100%;
  text-align: center;
  font-weight: bolder;
  text-transform: uppercase;
  display: block;
  margin: 5px 10px;
  padding: 10px;
  transition: all 0.2s ease;
}
.top .top-content .nav nav a:hover {
  background-color: #fff;
  color: #46b4b0;
}
.top .active {
  background-color: #fff;
  color: #33827f !important;
}
.top .top-buttons {
  display: flex;
  flex: 1;
  justify-content: flex-end;
}
.top .top-buttons a.button {
  text-decoration: none;
  display: inline-block;
  min-width: 150px;
  text-align: center;
  border-radius: 5px;
  margin: 10px;
  padding: 15px 10px;
  text-transform: uppercase;
  transition: all 0.5s ease;
  font-weight: bold;
}
.top .top-buttons a.button i {
  margin: 0 10px;
  color: #fff;
}

.scrolling .top-content .logo {
  height: 80px;
}

/*bt whatsapp & bt back*/
.overbuttons .btwhatsapp,
.overbuttons .bttop {
  position: fixed;
  bottom: 20px;
  transition: all 0.2s ease;
  z-index: 999;
}
.overbuttons .btwhatsapp:hover,
.overbuttons .bttop:hover {
  transform: scale(1.3);
}
.overbuttons .bttop {
  left: 30px;
}
.overbuttons .btwhatsapp {
  right: 30px;
}

.banner {
  margin: 0 auto;
  max-width: 1280px;
  z-index: -1;
}
.banner .slide {
  max-height: 400px;
  display: none;
}
.banner .slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .slide .text {
  color: #fff;
  text-align: center;
}

/*home*/
.home .resultados {
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.home .resultados a {
  min-width: 150px;
  height: 80px;
  border: none;
  border-radius: 10px;
  padding: 20px;
  text-transform: uppercase;
  margin-right: 30px;
  font-size: 2em;
  transition: all 0.2s ease;
}
.home .resultados a i {
  margin: 0 10px;
  color: #fff;
}
.home .resultados .text {
  width: 350px;
  font-size: 2em;
  font-weight: bold;
}
.home .services {
  min-height: 300px;
  margin-bottom: 20px;
}
.home .services h2 {
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-left: 20px;
}
.home .services .cards {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}
.home .services .cards a {
  text-decoration: none;
}
.home .services .cards a .card {
  width: 200px;
  height: 200px;
  background-color: #33827f;
  margin: 10px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: all 0.2s ease;
}
.home .services .cards a .card i {
  font-size: 5em;
  color: #fff;
  margin-bottom: 20px;
}
.home .services .cards a .card p {
  color: #fff;
  text-align: center;
}
.home .services .cards a .card p span {
  font-size: 1.5em;
  color: #fff;
}
.home .services .cards a .card:hover {
  background-color: #46b4b0;
  transform: scale(1.1);
  z-index: -1;
}
.home .testimonials {
  margin-top: 20px;
  min-height: 300px;
  border-radius: 5px;
}
.home .testimonials h2 {
  margin-bottom: 20px;
  margin-left: 20px;
  text-transform: uppercase;
}
.home .testimonials .testimonial-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  cursor: pointer;
  line-height: 1.5em;
}
.home .testimonials .testimonial-content .testimonial {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  margin: 10px;
  min-height: 250px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #46b4b0;
  transition: all 0.2s ease-in-out;
  transform: scale(0.9);
}
.home .testimonials .testimonial-content .testimonial:hover {
  transform: scale(1);
}
.home .testimonials .testimonial-content .testimonial .quotte > i {
  font-size: 2em;
  margin-bottom: 20px;
  color: #253635;
}
.home .testimonials .testimonial-content .testimonial .text > p {
  color: #253635;
  margin-bottom: 20px;
}
.home .testimonials .testimonial-content .testimonial .people {
  font-weight: bold;
}
.home .info {
  margin-top: 20px;
  margin-bottom: 20px;
}
.home .info h2 {
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-left: 20px;
}
.home .info .card-conteiner {
  display: flex;
  justify-content: space-around;
}
.home .info .card-conteiner .card {
  border: 2px solid #33827f;
  padding: 15px;
  margin: 0 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  max-width: 300px;
}
.home .info .card-conteiner .card img {
  height: 240px;
  margin: 0 auto;
  margin-bottom: 15px;
}
.home .info .card-conteiner .card h1 {
  margin-bottom: 5px;
}
.home .info .card-conteiner .card p {
  margin-bottom: 10px;
  line-height: 1.5em;
}
.home .info .card-conteiner .card .readmore {
  display: flex;
  justify-content: flex-end;
}
.home .info .card-conteiner .card .readmore button {
  background-color: #46b4b0;
  color: #fff;
  min-width: 100px;
  border: none;
  border-radius: 5px;
  padding: 10px;
  text-transform: uppercase;
  transition: all 0.2s ease;
}
.home .info .card-conteiner .card .readmore button:hover {
  background-color: #33827f;
}

/*About Page*/
.sobre {
  margin-top: 130px;
  padding: 20px;
}
.sobre h1,
.sobre h2,
.sobre h3 {
  color: #33827f;
}
.sobre .institutional {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  align-items: center;
}
.sobre .institutional .card {
  flex: 1;
  margin: 10px;
  border: 1px solid #33827f;
  border-radius: 10px;
  padding: 20px;
  transform: scale(0.9);
  transition: all 0.2s ease;
}
.sobre .institutional .card h3 {
  margin-right: 20px;
  font-size: 2em;
}
.sobre .institutional .card:hover {
  transform: scale(1);
}
.sobre .quality {
  margin: 10px 0;
  border: 1px solid #33827f;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transform: scale(0.96);
  transition: all 0.2s ease;
}
.sobre .quality h3 {
  margin-bottom: 20px;
  font-size: 2em;
}
.sobre .quality:hover {
  transform: scale(1);
}
.sobre .history,
.sobre .whoweare,
.sobre .team {
  margin-top: 40px;
}
.sobre .history h2,
.sobre .history h3,
.sobre .whoweare h2,
.sobre .whoweare h3,
.sobre .team h2,
.sobre .team h3 {
  border-bottom: 2px solid #33827f;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
}
.sobre .history .content,
.sobre .whoweare .content,
.sobre .team .content {
  line-height: 1.8em;
}
.sobre span {
  text-transform: uppercase;
  color: #33827f;
  font-weight: bold;
}
.sobre cite {
  text-align: center;
  color: #33827f;
  font-size: 2em;
  padding: 10px;
  display: block;
  margin: 20px 0 40px 0;
}
.sobre .card {
  display: flex;
  margin-top: 20px;
}
.sobre .card .image {
  margin-right: 20px;
}
.sobre .card .image img {
  border-radius: 20px;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  width: 200px;
}
.sobre .card .information {
  padding-top: 5px;
}
.sobre .card .information span {
  color: #253635;
}
.sobre .card .information .name {
  font-size: 1.6em;
  color: #253635;
}
.sobre .card .information .role {
  font-style: italic;
}
.sobre .card .information .formation {
  margin-top: 20px;
}

.news {
  margin-top: 20px;
}
.news h2 {
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-left: 20px;
}
.news .articles {
  display: flex;
  justify-content: center;
  line-height: 1.5em;
}
.news .articles .article {
  max-width: 30%;
  border: 1px solid #33827f;
  padding: 10px;
  border-radius: 10px 10px 0 0;
}
.news .articles .article img {
  width: 100%;
  height: 200px;
}
.news .articles .article .title {
  margin: 10px 0;
}
.news .articles .article p {
  display: -webkit-box;
  margin-top: 10px;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.news .articles .article p a {
  color: #33827f;
}

/*Guia*/
.guia {
  margin-top: 130px;
  min-height: 400px;
}
.guia form {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  min-height: 200px;
}
.guia form .formgroup {
  display: flex;
  flex-direction: column;
  align-items: left;
  margin: 10px 0;
  width: 100%;
}
.guia form .formgroup label {
  padding: 10px 10px 10px 0;
  font-weight: bold;
  font-size: 2em;
}
.guia form .formgroup input,
.guia form .formgroup select {
  padding: 20px;
  font-size: 1.5em;
  margin: 5px 0;
  outline: none;
  color: #253635;
  width: 100%;
  border: 1px solid #253635;
  border-radius: 10px;
}
.guia form .formgroup a {
  text-decoration: none;
  padding-top: 5px;
}
.guia form .bt-normal {
  padding: 10px 32px;
  border: none;
  border-radius: 10px;
  font-size: 1.2em;
}
.guia form .bt-normal i {
  color: #fff;
  margin-right: 20px;
}

.exams-list {
  margin-top: 140px;
}
.exams-list .link .bt-normal {
  padding: 10px;
  border: none;
  border-radius: 10px;
  font-size: 1.2em;
}
.exams-list .link .bt-normal i {
  color: #fff;
  margin-right: 20px;
}
.exams-list .conteiner {
  padding-top: 20px;
  display: flex;
  flex-flow: row wrap;
}
.exams-list .conteiner a {
  margin: 20px;
  padding-left: 10px;
  border-left: 5px solid #33827f;
  line-height: 1.8em;
  width: 40%;
  text-decoration: none;
}
.exams-list .conteiner a .whatsexame {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.exams-list .conteiner a .whatsexame h3 {
  margin-left: 15px;
}
.exams-list .conteiner a h2 {
  margin-bottom: 5px;
}
.exams-list .conteiner a:hover {
  border-left: 5px solid #46b4b0;
}

.result {
  margin-top: 20px;
  padding: 20px;
}
.result form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 600px;
  margin: 0 auto;
}
.result form .formgroup {
  display: flex;
  flex-direction: column;
  align-items: left;
  margin: 10px 0;
  width: 100%;
}
.result form .formgroup label {
  padding: 10px 10px 10px 0;
  font-weight: bold;
}
.result form .formgroup input,
.result form .formgroup select {
  padding: 10px;
  margin: 5px 0;
  outline: none;
  color: #253635;
  width: 100%;
  border: 1px solid #253635;
  border-radius: 10px;
}
.result form .formgroup a {
  text-decoration: none;
  padding-top: 5px;
}
.result form .formgroup .bt-normal {
  padding: 10px;
  border: none;
  border-radius: 10px;
  font-size: 1.2em;
}

/*footer*/
footer {
  background-color: #33827f;
  margin-top: 60px;
  padding-top: 60px;
  display: flex;
  flex-direction: column;
}
footer .footer {
  display: flex;
  width: 100%;
  flex-direction: column;
}
footer .footer .links {
  display: flex;
  justify-content: space-evenly;
}
footer .footer .links h3 {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 1.5em;
}
footer .footer .links ul {
  list-style: none;
}
footer .footer .links ul li {
  margin: 20px 0;
}
footer .footer .links ul li a {
  color: #fff;
  display: block;
  padding-bottom: 6px;
  text-decoration: none;
}
footer .footer .links ul li a:hover {
  padding-bottom: 5px;
  border-bottom: 1px solid #fff;
}
footer .footer .links ul li a i {
  color: #fff;
  font-size: 3em;
}
footer .footer .links .socials {
  display: flex;
  flex-direction: column;
  font-weight: bold;
}
footer .footer .links .socials ul > li > a {
  padding-bottom: 6px;
  text-align: center;
}
footer .footer .links .socials ul > li > a:hover {
  border: none;
  padding-bottom: 6px;
}
footer .address a {
  text-decoration: none;
  display: flex;
  justify-content: center;
  padding-bottom: 2px;
}
footer .address a p,
footer .address a i {
  color: #fff;
  margin: 10px;
}
footer .copyright {
  text-align: center;
}
footer .copyright a {
  font-size: 0.8em;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

/*exams*/
.exames {
  margin-top: 130px;
  padding: 20px;
}
.exames form {
  display: flex;
  margin: 0 auto;
  width: 80%;
}
.exames table {
  margin: 0 auto;
  width: 80%;
  text-align: left;
  border: 1px solid #253635;
}
.exames table td {
  border-bottom: 1px solid #33827f;
  padding: 5px;
}

/*Contact Page*/
#contact {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 10px 200px;
}
#contact .content {
  display: flex;
}
#contact .content h2 {
  margin: 30px 0;
}
#contact .content .form-container {
  padding: 30px;
  padding-top: 0px;
  margin-right: 20px;
  width: 500px;
  border-radius: 10px;
}
#contact .content .form-container .input-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
#contact .content .form-container .input-group label {
  margin-bottom: 5px;
}
#contact .content .form-container .input-group input,
#contact .content .form-container .input-group textarea {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #aaa;
  outline: none;
}
#contact .content .form-container .input-group input[type=submit] {
  background-color: #33827f;
  color: #fff;
  border: none;
  font-size: 16px;
  font-weight: bold;
  padding: 20px;
}
#contact .content .form-container .input-group input[type=submit]:hover {
  background-color: #46b4b0;
  color: #333;
}
#contact .content .card-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#contact .content .card-container .card {
  width: 200px;
  height: 150px;
  background-color: #eee;
  border-radius: 5px;
  margin: 5px;
}
#contact .content .card-container .card .card-header {
  padding: 10px;
  text-align: center;
  background-color: #fff;
}
#contact .content .card-container .card .card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*Teste Covid 19 page*/
.covid {
  line-height: 1.5em;
}
.covid .showroom .header {
  text-align: center;
  width: 80%;
  margin: 0 auto;
}
.covid .showroom .header h1 {
  text-transform: uppercase;
  margin-bottom: 30px;
}
.covid .showroom .exams {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
.covid .showroom .exams .pre-infection .divisionline,
.covid .showroom .exams .pos-infection .divisionline {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20px;
}
.covid .showroom .exams .pre-infection .divisionline .barra,
.covid .showroom .exams .pos-infection .divisionline .barra {
  width: 2px;
  height: inherit;
  background-color: #253635;
  margin: 0 10px;
}
.covid .showroom .exams .pre-infection .divisionline .flex-line,
.covid .showroom .exams .pos-infection .divisionline .flex-line {
  flex: 1;
  height: 2px;
  background-color: #253635;
}
.covid .showroom .exams .pre-infection .divisionline .title,
.covid .showroom .exams .pos-infection .divisionline .title {
  margin: 0 10px;
}
.covid .showroom .exams .pre-infection .divisionline .title i,
.covid .showroom .exams .pos-infection .divisionline .title i {
  margin-right: 10px;
}
.covid .showroom .exams .pre-infection .products,
.covid .showroom .exams .pos-infection .products {
  display: flex;
  justify-content: center;
}
.covid .showroom .exams .pre-infection .products .product,
.covid .showroom .exams .pos-infection .products .product {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  padding: 0 15px;
  max-width: 300px;
  transform: scale(0.9);
  transition: all 0.2s ease-in-out;
}
.covid .showroom .exams .pre-infection .products .product:hover,
.covid .showroom .exams .pos-infection .products .product:hover {
  transform: scale(1);
}
.covid .showroom .exams .pre-infection .products .product .title,
.covid .showroom .exams .pos-infection .products .product .title {
  color: #fff;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  height: 80px;
  background-color: #33827f;
  padding: 20px;
}
.covid .showroom .exams .pre-infection .products .product .content,
.covid .showroom .exams .pos-infection .products .product .content {
  border: 1px solid #33827f;
  width: 100%;
  text-align: center;
}
.covid .showroom .exams .pre-infection .products .product .content .result,
.covid .showroom .exams .pos-infection .products .product .content .result {
  color: #999;
  margin: 10px 0;
}
.covid .showroom .exams .pre-infection .products .product .content .result i,
.covid .showroom .exams .pos-infection .products .product .content .result i {
  margin-right: 10px;
  color: #999;
}
.covid .showroom .exams .pre-infection .products .product .content .price,
.covid .showroom .exams .pos-infection .products .product .content .price {
  margin: 10px 0;
  text-align: center;
}
.covid .showroom .exams .pre-infection .products .product .content .price .value,
.covid .showroom .exams .pos-infection .products .product .content .price .value {
  font-weight: bold;
  font-size: 30px;
  color: #253635;
}
.covid .showroom .exams .pre-infection .products .product .content .price .payment,
.covid .showroom .exams .pos-infection .products .product .content .price .payment {
  margin-top: 10px;
  color: #999;
}
.covid .showroom .exams .pre-infection .products .product .cta,
.covid .showroom .exams .pos-infection .products .product .cta {
  text-align: center;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.covid .showroom .exams .pre-infection .products .product .cta a,
.covid .showroom .exams .pos-infection .products .product .cta a {
  display: block;
  padding: 10px;
  text-decoration: none;
}
.covid .showroom .exams .pre-infection .products .product .cta a i,
.covid .showroom .exams .pos-infection .products .product .cta a i {
  color: #fff;
  margin-left: 10px;
}
.covid .showroom .button-holder {
  height: 50px;
  padding: 20px;
  margin-top: 20px;
  text-align: center;
}
.covid .showroom .button-holder .button {
  padding: 10px 20px;
  border-radius: 5px;
}
.covid .explanation {
  margin-top: 50px;
}
.covid .explanation .header {
  text-align: center;
}
.covid .explanation .switch-tables {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.covid .explanation .switch-tables .title {
  font-weight: bold;
}
.covid .explanation .switch-tables .content {
  width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  font-size: small;
  border: 1px solid #46b4b0;
  /* The switch - the box around the slider */
}
.covid .explanation .switch-tables .content .text-option {
  width: 200px;
}
.covid .explanation .switch-tables .content .text-option.right {
  text-align: right;
}
.covid .explanation .switch-tables .content .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin: 0 20px;
  /* The slider */
}
.covid .explanation .switch-tables .content .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.covid .explanation .switch-tables .content .switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
}
.covid .explanation .switch-tables .content .switch .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
}
.covid .explanation .switch-tables .content .switch input:checked + .slider {
  background-color: #46b4b0;
}
.covid .explanation .switch-tables .content .switch input:focus + .slider {
  box-shadow: 0 0 1px #46b4b0;
}
.covid .explanation .switch-tables .content .switch input:checked + .slider:before {
  transform: translateX(26px);
}
.covid .explanation .switch-tables .content .switch .slider.round {
  border-radius: 34px;
}
.covid .explanation .switch-tables .content .switch .slider.round:before {
  border-radius: 50%;
}
.covid .explanation .comparative {
  max-width: 80%;
  margin: 50px auto 0 auto;
}
.covid .explanation .comparative .pre-infection,
.covid .explanation .comparative .pos-infection {
  padding: 10px;
  font-size: smaller;
}
.covid .explanation .comparative .pre-infection .table-caption,
.covid .explanation .comparative .pos-infection .table-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
}
.covid .explanation .comparative .pre-infection .table-caption h2,
.covid .explanation .comparative .pos-infection .table-caption h2 {
  color: #fff;
}
.covid .explanation .comparative .pre-infection table tr:nth-child(even),
.covid .explanation .comparative .pre-infection table tr:nth-child(even) > th,
.covid .explanation .comparative .pre-infection table tr:nth-child(even) > td,
.covid .explanation .comparative .pos-infection table tr:nth-child(even),
.covid .explanation .comparative .pos-infection table tr:nth-child(even) > th,
.covid .explanation .comparative .pos-infection table tr:nth-child(even) > td {
  background-color: #46b4b0;
  color: #fff;
}
.covid .explanation .comparative .pre-infection table td,
.covid .explanation .comparative .pos-infection table td {
  padding: 10px;
  text-align: center;
}
.covid .explanation .comparative .pre-infection table thead tr,
.covid .explanation .comparative .pos-infection table thead tr {
  border-collapse: collapse;
}
.covid .explanation .comparative .pre-infection table thead tr th,
.covid .explanation .comparative .pos-infection table thead tr th {
  border-bottom: 2px solid #46b4b0;
}
.covid .explanation .comparative .pre-infection table thead tr th img,
.covid .explanation .comparative .pos-infection table thead tr th img {
  width: 100px;
  margin: 10px auto;
}

/*decorators*/
.margin-top-menu {
  margin-top: 180px;
}

.bt-normal,
.bt-highlight {
  background-color: #33827f;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease-in;
}
.bt-normal:hover,
.bt-highlight:hover {
  background-color: #46b4b0;
}

.bt-highlight {
  background-color: #b559a2;
}

.shadow {
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
}

.bold {
  font-weight: bold;
}

.center {
  text-align: center;
}

.destaque {
  color: #46b4b0;
  font-weight: bold;
}

/* MEDIA QUERIES  */
@media (max-width: 899px) {
  .top .top-content {
    justify-content: space-around;
  }
  .top .top-content .logo {
    height: 80px;
  }
  .top .top-content .top-buttons {
    font-size: 0.8em;
  }
  .top .top-content .nav {
    max-width: 50px;
  }
  .banner {
    margin-top: 80px;
  }
  .result form {
    max-width: 60vw;
  }
  .sobre .institutional {
    flex-direction: column;
  }
  .sobre .institutional .card {
    width: 80vw;
    align-items: center;
  }
  .covid {
    margin-top: 100px;
  }
  .covid .exams {
    flex-direction: column;
    align-items: center;
    width: 100vw;
  }
  .covid .exams .products {
    align-items: center;
    width: 100vw;
  }
  .covid .exams .products .product {
    width: 100%;
  }
}
@media (max-width: 899px) and (max-width: 599px) {
  .top {
    width: 100vw;
    padding-bottom: 10px;
  }
  .top .top-content {
    flex-direction: column;
    align-items: center;
    width: 100vw;
  }
  .top .top-content .logo {
    margin-top: 1em;
    height: 100px;
  }
  .top .top-content .top-buttons {
    justify-content: center;
    width: 80vw;
    flex-direction: column;
  }
  .top .top-content .nav {
    align-items: center;
    margin: 5px;
  }
  .overbuttons .btwhatsapp {
    left: 5;
  }
  .overbuttons .bttop {
    right: 5;
  }
  .banner {
    display: none;
  }
  .home {
    width: 100vw;
    margin-top: 250px;
  }
  .home .resultados {
    flex-direction: column;
    text-align: center;
  }
  .home .resultados a {
    width: 80vw;
    margin: 20px 0px;
  }
  .home .services {
    margin-top: 50px;
  }
  .home .services h2 {
    margin: 1.5em auto;
    text-align: center;
    max-width: 75vw;
  }
  .home .services .cards {
    flex-direction: column;
    align-items: center;
  }
  .home .testimonials {
    margin-top: 50px;
  }
  .home .testimonials h2 {
    max-width: 75vw;
    text-align: center;
    margin: 0 auto;
  }
  .sobre {
    width: 100vw;
    margin-top: 250px;
    padding: 20px;
  }
  .sobre .institutional {
    flex-direction: column;
  }
  .sobre .institutional .card {
    display: flex;
    flex-direction: column;
    width: 90vw;
  }
  .sobre .card {
    flex-direction: column;
    align-items: center;
    margin-bottom: 100px;
  }
  .sobre .card .image {
    margin-bottom: 10px;
  }
  .sobre .card .image img {
    width: 75vw;
  }
  .sobre .card .information {
    text-align: center;
  }
  .guia {
    width: 100vw;
    margin-top: 250px;
  }
  .result {
    width: 100vw;
    margin-top: 250px;
    padding: 20px;
  }
  .result form {
    width: 75vw;
  }
  .exams-list {
    width: 100vw;
    margin-top: 250px;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .exams-list .conteiner {
    flex-flow: nowrap;
    flex-direction: column;
    width: 100vw;
  }
  .exams-list .conteiner a {
    width: 80vw;
    color: #253635;
  }
  .exams-list .conteiner .whatsexame {
    width: 80vw;
  }
  .covid {
    margin-top: 300px;
  }
  .covid .exams {
    flex-direction: column;
    align-items: center;
    width: 100vw;
  }
  .covid .exams .products {
    flex-direction: column;
  }
  .covid .exams .products .product .content .result {
    width: 100%;
  }
  .covid .explanation {
    display: none;
  }
  footer .footer {
    text-align: center;
  }
  footer .footer .links {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  footer .footer .links .socials,
footer .footer .links .institucional,
footer .footer .links .services {
    margin-bottom: 50px;
  }
  footer .footer .links .socials h3,
footer .footer .links .institucional h3,
footer .footer .links .services h3 {
    font-weight: bolder;
  }
  footer .footer .links .socials a,
footer .footer .links .institucional a,
footer .footer .links .services a {
    text-decoration: underline;
  }
  footer .footer .address {
    max-width: 75vw;
    margin: 0 auto;
  }
}/*# sourceMappingURL=styles.css.map */