@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;376;400;419;455;500&display=swap");
body {
  
  font-family: "Comfortaa", sans-serif;
  background-color: #fff;
}

html {
/*   overflow-x: hidden; */
}

input:focus,
a:focus,
button:focus,
textarea:focus {
  outline: none !important;
}

input:active,
a:active,
button:active,
textarea:active {
  outline: none !important;
}

a:hover {
  text-decoration: none;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

p {
  font-weight: 400;
  font-size: 16px;
}

h1 {
  font-size: 64px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 36px;
}

h4 {
  font-size: 28px;
}

h5 {
  font-size: 18px;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.titulo-secao:after {
  content: "";
  background-color: #fff;
  height: 4px;
  width: 25px;
  bottom: -6px;
  position: relative;
  display: block;
  border-radius: 6px;
}

::-webkit-input-placeholder,
select,
input {
  /* Edge */
  font-size: 16px;
}

:-ms-input-placeholder,
select,
input {
  /* Internet Explorer 10-11 */
  font-size: 16px;
}

::-ms-input-placeholder,
select,
input {
  font-size: 16px;
}

::placeholder,
select,
input {
  font-size: 16px;
}

a.btn.btn-default {
  padding: 8px 20px;
  border: 1px solid;
  border-radius: 22px;
  font-weight: bold;
  color: #18b9fe;
  border-color: #12e4c0;
  font-size: 14px;
  margin: 0 auto;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

a.btn.btn-default span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #18b9fe;
  text-align: center;
  border: 1px solid #18b9fe;
  border-radius: 100%;
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

a.btn.btn-default:hover {
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
  -webkit-transition: all 463ms ease-in-out;
  transition: all 463ms ease-in-out;
}

header {
  position: absolute;
  z-index: 99;
  height: 120px;
  padding: 0px 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  background-image: url(../img/background-header.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
/*  -webkit-animation: blink 0.3s infinite;
          animation: blink 0.3s infinite;
  -webkit-transition: all 463ms ease-in-out;
  transition: all 463ms ease-in-out;*/
}

header.fixed-top {
  height: 80px;
 /* -webkit-animation: blink 0.3s infinite;
          animation: blink 0.3s infinite;
  -webkit-transition: all 463ms ease-in-out;
  transition: all 463ms ease-in-out;*/
}

header .logo img {
  width: 170px;
  height: auto;
  margin: 0 auto;
}

header nav ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

header nav ul li {
  margin: 0px 14px;
}

header nav ul li a {
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
}

header nav ul li a:hover {
  color: #fff !important;
}

header nav .dropdown.show .dropdown-toggle::after {
  background-image: url("../svg/up-arrow.svg");
  -webkit-transition-duration: 200ms;
          transition-duration: 200ms;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

header nav .dropdown-toggle {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition-duration: 200ms;
          transition-duration: 200ms;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

header nav .dropdown-toggle:after {
  background-image: url("../svg/arrow-down.svg");
  background-repeat: no-repeat;
  background-size: contain;
  height: 20px;
  width: 20px;
  right: -25px;
  background-size: 14px;
  position: absolute;
  bottom: 0;
  border: none;
  background-color: transparent;
  -webkit-transition-duration: 200ms;
          transition-duration: 200ms;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.navbar-toggler {
  display: none;
}

.whats-link img {
  width: 30px;
}

#main-home #banner {
  height: 800px;
}

#main-home #banner .slick-list {
  overflow: visible !important;
}

#main-home #banner ul.slick-dots {
  position: absolute;
  width: 100%;
  top: 95%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#main-home #banner ul.slick-dots li {
  margin: 0px 15px;
}

#main-home #banner ul.slick-dots li button {
  border: none;
  font-size: 0px;
  background-color: #cccccc;
  height: 8px;
  width: 8px;
  border-radius: 100%;
}

#main-home #banner ul.slick-dots li.slick-active button {
  background-color: #18b9fe;
}

#main-home #banner .banner_box {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

#main-home #banner .banner_box .banner_layer {
  color: #fff;
  position: relative;
  margin-left: 100px;
  margin-bottom: 30px;
}

#main-home #banner .banner_box .banner_layer:before {
  content: "";
  background: url(../img/border-banner.png);
  width: 6px;
  height: 130%;
  background-size: cover;
  position: absolute;
  left: -25px;
}

#main-home #banner .banner_box .banner_layer h1 {
  font-size: 56px;
}

#main-home #banner .banner_box .banner_layer h2 {
  color: #e0dfe0;
  font-weight: 400;
  font-size: 38px;
}

#main-home #oque-hospital {
  padding-bottom: 200px;
  /* width */
  /* Track */
  /* Handle */
}

#main-home #oque-hospital h3 {
  font-size: 20px;
  color: #3a3a3a;
}

#main-home #oque-hospital h4 {
  color: #18b9fe;
}

#main-home #oque-hospital h4:after {
  content: "";
  background-color: #18b9fe;
  height: 4px;
  width: 25px;
  bottom: -6px;
  position: relative;
  display: block;
  border-radius: 6px;
}

#main-home #oque-hospital .content {
  margin-top: 50px;
  height: 400px;
  max-height: 100%;
  overflow: scroll;
  /*direction: rtl;*/
  overflow-x: hidden;
}

#main-home #oque-hospital .content p {
  color: #3c3c3c;
  font-weight: 600;
  line-height: 32px;
}

#main-home #oque-hospital ::-webkit-scrollbar {
  width: 3px;
  background-color: #cac8c8;
}

#main-home #oque-hospital ::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px #cac8c8;
          box-shadow: inset 0 0 5px #cac8c8;
  background-color: #cac8c8;
  border-radius: 10px;
  width: 3px;
}

#main-home #oque-hospital ::-webkit-scrollbar-thumb {
  background: #10e7c8;
  border-radius: 10px;
  width: 3px;
}

#main-home #categorias {
  color: #fff;
  position: relative;
}

#main-home #categorias .video_box {
  width: 700px;
  height: 350px;
  margin: 0 auto;
  display: block;
  position: absolute;
  top: -13%;
  left: 0;
  right: 0;
  -webkit-box-shadow: 0px 0px 5px 2px #707070;
  box-shadow: 0px 0px 5px 2px #707070;
}

#main-home #categorias .video_box video, #main-home #categorias .video_box iframe {
  width: 100%;
  height: 100%;
}

#main-home #categorias .btn {
  color: #fff;
  border-color: #fff;
  margin: 0 auto 40px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

#main-home #categorias .btn span {
  color: #fff;
  border-color: #fff;
}

#main-home #categorias .content {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 200px 0px;
}

#main-home #categorias .content h3 {
  font-size: 46px;
}

#main-home #categorias .content h3:after {
  content: "";
  background-color: #fff;
  height: 4px;
  width: 25px;
  bottom: -6px;
  position: relative;
  display: block;
  border-radius: 6px;
}

#main-home #categorias .content ul {
  -webkit-column-count: 2;
          column-count: 2;
}

#main-home #categorias .content ul li {
  margin: 0px 0px 40px;
  width: 85%;
}

#main-home #categorias .content ul li h4 {
  margin-bottom: 5px;
}

#main-home #ultimas-edicoes {
  background-color: #eaeaea;
}

#main-home #ultimas-edicoes h3 {
  color: #18b9fe;
  font-size: 46px;
}

#main-home #ultimas-edicoes h3:after {
  background-color: #18b9fe;
}

#main-home #ultimas-edicoes #slider .slick-list {
  overflow: visible !important;
  height: auto !important;
}

#main-home #ultimas-edicoes #slider .slick-slide {
  opacity: 0.5;
}

#main-home #ultimas-edicoes #slider .slick-slide.slick-active {
  opacity: 1;
}

#main-home #ultimas-edicoes #slider .slider-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 480px;
  max-height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#main-home #ultimas-edicoes #slider .slider-box img:not(.player-video) {
  width: 80%;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
}

#main-home #ultimas-edicoes #slider .slider-box img.player-video {
  position: absolute;
  height: 100px;
  width: 100px !important;
  z-index: 10;
  cursor: pointer;
}

#main-home #ultimas-edicoes #slider .slider-box a.link-fancy {
  height: 90%;
}

#main-home #ultimas-edicoes #slider .slider-box a.link-fancy {
  width: 90%;
}

#main-home #ultimas-edicoes #slider .slider-box.slick-active a.link-fancy {
  height: 100% !important;
}

#main-home #ultimas-edicoes #slider .slider-box.slick-active img {
  width: 100%;
  margin: 0 auto;
}

#main-home #ultimas-edicoes a.btn {
  border-color: #18b9fe;
}

#main-home #regulamento .box-img {
  position: relative;
}

#main-home #regulamento .box-img img:not(.before-img) {
  padding: 6px 6px 0px 0px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#main-home #regulamento .box-img .before-img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 70%;
  height: 40%;
}

#main-home #regulamento h3 {
  color: #18b9fe;
  font-size: 46px;
}

#main-home #regulamento h3:after {
  background-color: #18b9fe;
}

#main-home #regulamento p {
  line-height: 30px;
  font-weight: 500;
}

#main-home #midia {
  background-color: #43d8e2;
}

#main-home #midia .titulo-secao {
  color: #fff;
  font-size: 46px;
}

#main-home #midia #slider .slick-list {
  overflow: visible !important;
  height: auto !important;
}

#main-home #midia #slider .slick-slide {
  opacity: 0.5;
}

#main-home #midia #slider .slick-slide.slick-active {
  opacity: 1;
}

#main-home #midia #carousel  .slick-arrow {
  color: #fff;
  font-size: 40px;
  position: absolute;
  top: 43%;
  font-weight: bold;
}

#main-home #midia  #carousel .slick-arrow.slick-prev,#main-home #midia  #slider .slick-arrow.slick-prev {
  left: 0;
}

#main-home #midia  #carousel .slick-arrow.slick-next,#main-home #slider  #carousel .slick-arrow.slick-next {
  right: 0;
}

#main-home #midia #slider .slider-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 600px;
  position: relative;
  max-height: 100%;
}

#main-home #midia #slider .slider-box img {
  width: 80%;
  margin: 0 auto;
}

#main-home #midia #slider .slider-box.slick-active img {
  width: 100%;
  margin: 0 auto;
}

#main-home #midia a.btn {
  border-color: #fff;
  color: #fff;
}

#main-home #midia a.btn span {
  color: #fff;
  border-color: #fff;
}

/* #main-home #contato {
  background-position-x: left;
  background-position-y: center;
  background-image: url("../img/background-contato.jpg");
  background-repeat: no-repeat;
} */

#main-home #contato .titulo-secao {
  color: #18b9fe;
}

#main-home #contato .titulo-secao:after {
  background-color: #18b9fe;
}

#main-home #contato form {
  width: 100%;
}

#main-home #contato form input:not(.wpcf7-submit), #main-home #contato form textarea {
  border-radius: 12px;
  border: 2px solid #18b9fe;
  text-indent: 10px;
  width: 100%;
  margin-bottom: 10px;
  padding: 5px 0px;
}

#main-home #contato form textarea {
  height: 110px;
}

#main-home #contato form .wpcf7-submit {
  background-image: url(../img/btn-submit.jpg);
  border: none;
  background-size: cover;
  border-radius: 22px;
  padding: 12px 30px;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  margin-top: 10px;
}

#main-home #contato form ::-webkit-input-placeholder,
#main-home #contato form select,
#main-home #contato form input {
  /* Edge */
  font-size: 14px;
  color: #18b9fe;
}

#main-home #contato form :-ms-input-placeholder,
#main-home #contato form select,
#main-home #contato form input {
  /* Internet Explorer 10-11 */
  font-size: 14px;
  color: #18b9fe;
}

#main-home #contato form ::-ms-input-placeholder,
#main-home #contato form select,
#main-home #contato form input {
  font-size: 14px;
  color: #18b9fe;
}

#main-home #contato form ::placeholder,
#main-home #contato form select,
#main-home #contato form input {
  font-size: 14px;
  color: #18b9fe;
}

footer {
  background-color: #efefef;
  min-height: 120px;
  padding: 50px 0px;
  max-height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .logo-footer img {
  width: 220px;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

footer .menu-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

footer .menu-footer li {
  width: auto;
  display: inline-block;
  padding: 0px 10px;
  border-right: 2px solid #a6a6a6;
}

footer .menu-footer li:last-child {
  border: none;
}

footer .menu-footer li a {
  font-size: 14px;
  color: #a6a6a6;
}

footer .menu-footer li a:hover {
  color: #a6a6a6;
}

@media only screen and (max-width: 850px){
#main-home #categorias .content {
    padding: 10px 0px;
}
.slider-mobile {
    height: 460px !important;
}

}
/*# sourceMappingURL=main.css.map */