* {
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #f8f8f8;
  color: #272727;
  margin: 0;
  padding: 0;
  font-size: 16px;
}

img {
  max-width: 100%;
  height: auto;
}

header {
  position: relative;
}

h2 {
  text-align: center;
}

.container {
  background: #fff;
  width: calc(100% - 5rem);
  max-width: 1366px;
  margin: 0 auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.col-12 {
  flex: 0 0 100%;
}

.col-11 {
  flex: 0 0 calc(100% / 12 * 11);
}

.col-10 {
  flex: 0 0 calc(100% / 12 * 10);
}

.col-9 {
  flex: 0 0 calc(100% / 12 * 9);
}

.col-8 {
  flex: 0 0 calc(100% / 12 * 8);
}

.col-7 {
  flex: 0 0 calc(100% / 12 * 7);
}

.col-6 {
  flex: 0 0 calc(100% / 12 * 6);
}

.col-5 {
  flex: 0 0 calc(100% / 12 * 5);
}

.col-4 {
  flex: 0 0 calc(100% / 12 * 4);
}

.col-3 {
  flex: 0 0 calc(100% / 12 * 3);
}

.col-2 {
  flex: 0 0 calc(100% / 12 * 2);
}

.col-1 {
  flex: 0 0 calc(100% / 12 * 1);
}

.logo-container {
  text-transform: uppercase;
  font-family: sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

@media screen and (max-width: 879px) {
  .container {
    width: 100%;
  }
}

.logo-container::before {
  content: '';
  display: block;
  width: calc(100% - 10px);
  height: 28px;
  position: absolute;
  left: 10px;
  top: 10px;
  background-color: #0c798a;
  z-index: 0;
  border-radius: 0 10px 0 0;
}

.logo-container::after {
  content: '';
  display: block;
  width: calc(100% - 10px);
  height: 4px;
  position: absolute;
  left: 10px;
  bottom: 9px;
  background-color: #abdee9;
  z-index: 0;
}

.logo {
  display: flex;
  align-items: center;
  z-index: 1;
  /* margin-top: -14px; */
}

.logo-texto>span:nth-child(1) {
  font-size: 20px;
  color: white;
  position: relative;
  top: 8px;
  margin-left: 10px;
}

.logo-texto>span:nth-child(3) {
  font-size: 9px;
  color: #0c798a;
  position: relative;
  top: 6px;
  margin-left: 10px;
  letter-spacing: 1.5px;
}

.menu-btn {
  display: none;
}

@media screen and (max-width: 880px) {
  .menu-btn {
    display: block;
    position: absolute;
    right: 0;
    top: 38px;
    top: 30px;
    padding: 4px 20px 4px 14px;
    width: 62px;
    font-size: 2em;
    color: #0c798a;
    /* text-shadow: 1px 2px 3px #abdee9; */
  }
  
  .menu-btn .fa-bars {
    font-size: 1em;
  }
}

.menu {
  display: flex;
  /* justify-content: center; */
  z-index: 0;
  position: absolute;
  top: 9px;
  right: 20px;
  text-transform: uppercase;
}

@media screen and (min-width: 1200px) {
  .menu {
    /* right: 25%; */
  }
}

@media screen and (min-width: 1600px) {
  .menu {
    /* right: 30%; */
  }
}

@media screen and (max-width: 879px) {
  .menu {
    display: flex;
    justify-content: center;
    z-index: 0;
    flex-direction: column;
    position: absolute;
    color: red;
    background: #0c798a;
    z-index: 2;
    top: 82px;
    right: 20px;
  }
  .menu>div>a {
    display: block;
  }
}

.social-menu {
  display: inherit;
  position: relative;
  /* right: -10px; */
}

@media screen and (max-width: 880px) {
  .menu, .social {
    display: none;
  }
  .social-icone {
    width: 50%;
    display: inline-block;
    text-align: center;
  }
  .social-menu {
    display: flex;
  }
  .fab {
    font-size: 1.5em;
  }
  .social-icone>a {
    width: 100%;
  }
}

.social-icone .fab {
  /* color: white; */
  font-size: 1.2rem;
  /* padding: 0 3px; */
}

@media screen and (min-width: 880px) {
  .social-icone .fab {
    margin-top: -2px;
  }
}

.social-icone .fab:hover {
  /* color: red; */
}

#myDropdown>div.social-menu>.social-icone:hover {
  color: #272727;
}

/* .social > div > a {

  color: white;

  padding: 2px 10px;

  display: inline-block;

  font-size: 1.3rem;

  margin-top: -1px; 

} */

/* @media screen and (max-width: 439px){

  .social {

    position: absolute;

    background: #90d5e2;

    z-index: 2;

    top: 213px;

    right: 0;

    width: 120px;

    height: 48px;

    display: flex;

    justify-content: space-evenly;

    align-items: center;

  }

  .social > div { 

    padding: 0;

  }

  .social > div > a {

    display: block;

    width: 100%;

    font-size: 2rem;

    color: #272727;

  }

  .social > div > a:hover, .social > div > a:active { color: white; } 

  .social > div { padding: 0 !important;}

} */

/* .social > div { padding: 0 10px;} */

.menu a {
  display: inline-block;
  padding: 6px 9px;
  font-size: 14px;
  color: white;
  text-decoration: none;
}

.menu a:hover {
  background-color: #abdee9;
  color: #272727;
  width: 100%;
}

.hero {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  position: relative;
  height: 604px;
  width: 100%;
  background-image: url(../imagens/hero1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
  border-radius: 4px;
}

.hero::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 4px;
}

@media screen and (max-width: 879px) {
  .hero {
    height: 504px;
  }
}

@media screen and (max-width: 439px) {
  .hero {
    height: 464px;
  }
}

.hero div span {
  position: absolute;
  top: 28vh;
  left: 9vw;
  font-size: 50px;
  color: white;
}

@media screen and (max-width: 879px) {
  .hero div span {
    font-size: 2rem;
    top: calc(50% - 38px);
  }
}

@media screen and (max-width: 439px) {
  .hero div span {
    font-size: 1.5rem;
    top: calc(50% + 120px);
    left: 0;
    bottom: 0;
    padding: 0 10px;
    width: 100%;
  }
}

.bio {
  justify-content: center;
  animation: bio-anima 2s ease-out;
}

@keyframes bio-anima {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}

.bio img {
  border-radius: 4px;
  box-shadow: 2px 2px 1px 2px rgba(200, 200, 200, 0.7);
  margin-bottom: 5px;
  border: 1px solid #D7D7D7;
}

.bio>div:nth-child(2)>p:nth-child(1) {
  margin-top: 0;
}

/* div.col-3:nth-child(1) > div:nth-child(1) > img:nth-child(1) {

  width: 100%;

  height: 100%;

} */

.bio>div:nth-child(2) {
  -webkit-column-count: 1;
  -moz-column-count: 1;
  column-count: 1;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  margin-left: 30px;
}

.bio {
  margin: 48px 0 10px 0;
}

@media screen and (max-width: 439px) {
  .bio {
    margin: 128px 0 10px 0;
  }
}

@media screen and (min-width: 375px) and (max-width: 720px) {
  div.col-3:nth-child(1) {
    flex: 0 0 calc(100% / 12 * 10);
  }
  /* .col-3 {

    flex: 0 0 calc(100% / 12 * 5);

  } */
}

@media screen and (max-width: 439px) {
  .bio>div:nth-child(1) {
    flex: 0 0 calc(100% / 12 * 8);
  }
  .bio>div:nth-child(2) {
    flex: 0 0 calc(100% / 12 * 8);
    text-align: justify;
    margin-left: 0;
  }
}

@media screen and (max-width: 375px) {
  .bio>div:nth-child(2) {
    flex: 0 0 calc(100% / 12 * 10);
    text-align: left;
    hyphens: auto;
  }
}

footer {
  background-color: #0c798a;
  color: white;
  /* padding-top: 50px; */
  padding: 50px 0;
  border-radius: 0 0 0 10px;
  margin-bottom: 10px;
  position: relative;
}

footer::before {
  content: '';
  display: block;
  width: calc(100%);
  height: 4px;
  position: absolute;
  left: 0px;
  top: -4px;
  background-color: #abdee9;
  z-index: 0;
}

footer a {
  text-decoration: none;
  color: white;
}

footer p {
  margin-top: 0;
}

@media screen and (min-width: 881px) {
  footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 50px 0;
  }
  .foot-social {
    flex-direction: column;
    align-self: start;
  }
}

@media screen and (min-width: 881px) and (max-width: 1199px) {
  footer {
    justify-content: center;
  }
}

.foot-logo {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.foot-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.foot-logo>span:nth-child(2) {
  font-size: 22px;
  margin-top: 6px;
}

@media screen and (min-width: 881px) and (max-width: 1199px) {
  .foot-logo {
    width: 100%;
    margin-bottom: 20px;
  }
}

.foot-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0;
}

.foot-menu a {
  padding: 4px 8px;
}

.foot-social {
  margin: 20px 0;
  display: flex;
  justify-content: center;
}

.zona-norte p a {
  text-decoration: none;
  color: #0c798a;
  border-bottom: 1px solid #0c798a;
  padding-bottom: 2px;
  margin-bottom: 3px;
  display: inline-block;
}

.foot-social span {
  padding: 0 20px;
}

.local {
  /* margin: 0 auto; */
  text-align: center;
  /* width: 270px; */
  /* max-width: 50%; */
  /* width: 295px; */
  /* max-width: 390px; */
  /* padding: 0 20px; */
  padding: 10px 0px;
}

.local .estacionamento {
  margin-top: 8px;
  font-style: italic;
  text-transform: capitalize;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
  display: inline-block;
  padding-bottom: 2px;
}

@media screen and (min-width: 881px) {
  .foot-social span {
    padding: 4px 20px;
  }
  .foot-menu, .foot-social {
    margin: 0 0 20px 0;
  }
  .local {
    text-align: center;
    width: 100%;
    flex-direction: column;
    padding: 0 10px !important;
  }
}

@media screen and (min-width: 1200px) {
  .local {
    text-align: left;
    padding: 8px;
    width: auto;
    padding: 0;
  }
}

.developed {
  width: 100%;
  text-align: center;
  position: absolute;
  color: red;
  bottom: -60px;
  padding: 20px 0;
}

.developed a {
  text-decoration: none;
  color: #272727;
  padding: 10px;
}

/* .developed {

	position: relative;

	top: 60px;

	color: #272727 !important;

	text-align: center;

	padding: 20px 0;

}





@media screen and (min-width: 881px){

  .developed {

    position: absolute;

    top: 270px;

    width: 100%;

    display: flex;

    flex-direction: column;

  }

} */

#localizacao .row {
  justify-content: center;
}

#localizacao .row div {
  width: 80%;
  margin-bottom: 30px;
}

#localizacao iframe {
  height: 300px;
  width: 100%;
}

/* #localizacao .place-card.place-card-large { */

/* .gm-style .place-card-large { */

#mapDiv>div:nth-child(1)>div:nth-child(1)>div:nth-child(4)>div:nth-child(1) {
  display: none !important;
}

@media screen and (min-width: 881px) {
  #localizacao .row div {
    width: 50%;
    max-width: 550px;
    padding: 0 20px;
  }
}

.zona-norte h3, .zona-sul h3 {
  font-size: 14px;
  font-weight: bold;
  padding: 0 inherit;
  margin: 6px 0;
}

.equipe {
  max-width: 800px;
  padding: 0 0 20px 0;
  margin: 0 auto;
}

@media screen and (max-width: 375px) {
  .equipe {
    padding: 0 0 20px 0;
    margin: 30px 30px;
  }
}

.equipe .row {
  justify-content: center;
}

@media screen and (max-width: 375px) {
  .equipe .row {
    justify-content: space-around;
  }
}

@media screen and (min-width: 376px) and (max-width: 800px) {
  .equipe .row {
    justify-content: space-around;
  }
  .equipe {
    margin: 30px 30px;
  }
}

.equipe h2 {
  text-align: center;
}

.profissional .especialidade {
  width: 120px;
  border-style: solid;
  border-width: 1px;
  border-color: #0c798a;
  border-top: none;
  border-right: none;
  border-bottom: none;
  margin-top: 4px;
  font-style: italic;
  padding-left: 4px;
  font-size: 14px;
  font-weight: lighter;
}

.profissional img {
  border-radius: 4px;
}

.profissional {
  margin-bottom: 30px;
  margin-right: 10px;
}

/* ESPAÇAR ABAIXO DA FOTO, SÓ A DIV ABAIXO DA FOTO. DE TODAS AS DIVS DA EQUIPE */

/* div.profissional:nth-child(1) > div:nth-child(1n){

  margin: 2px 0;

  background-color: lightcoral;

} */

.contato {
  background-color: rgba(171, 222, 233, 0.27);
  padding: 40px 106px 95px 105px;
  margin: 0;
}

@media screen and (max-width: 720px) {
  .contato {
    padding: 5px 30px;
  }
}

@media screen and (max-width: 720px) {
  .contato-whatsapp {
    flex: 0 0 calc(100% / 12 * 12);
  }
  .col-6 {
    flex: 0 0 calc(100% / 12 * 12);
  }
}

@media screen and (max-width: 375px) {
  .contato {
    padding: 5px 30px;
  }
}

.contato-form>form:nth-child(1)>fieldset:nth-child(1)>div:nth-child(1)>div:nth-child(2)>div:nth-child(1) {
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.contato>h2.row {
  justify-content: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 320px) {
  .contato>h2.row {
    margin-bottom: 10px;
  }
}

.contato p {
  font-size: 20px;
}

.contato-whatsapp>p:nth-child(2) {
  text-align: right;
}

.contato-whatsapp>p:nth-child(2)>a {
  text-decoration: none;
  color: #fff;
  background-color: #0c798a;
  padding: 13px 10px 14px 10px;
  border-radius: 10px;
}

#contato .fa-2x {
  font-weight: 400;
  position: relative;
  top: 8px;
}

@media screen and (max-width: 880px) {
  #contato .fa-2x {
    top: 3px;
  }
}

.contato-whatsapp>p:nth-child(2)>a:hover {
  color: #abdee9;
  background-color: #096574;
}

div.contato-whatsapp.col-3 .fa-3x {
  font-weight: 400;
  position: relative;
  top: 10px;
}

.contato>div.row {
  justify-content: space-around;
}

.contato-whatsapp {
  max-width: 355px;
  /* margin-top: 66px; */
}

@media screen and (min-width: 720px) and (max-width: 1024px) {
  .contato-whatsapp {
    margin-top: 26px;
    flex: 0 0 calc(100% / 12 * 4);
  }
}

@media screen and (max-width: 375px) {
  .contato-whatsapp {
    margin-top: 0;
  }
}

.galeria {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.galeria img {
  width: 220px;
  height: 220px;
  display: inline-block;
  margin: 3px 3px;
  object-fit: cover;
  object-position: top center;
  border-radius: 4px;
}

.tratamentos {
  max-width: 904px;
  margin: 0 auto;
  padding: 20px 0;
  margin-bottom: 60px;
}

#tratamentos a {
  text-decoration: none;
}

#tratamentos a:hover {
  background-color: #096574;
}

#tratamentos .fa, .fas {
  font-weight: 900;
  font-size: 2.5em;
}

/* .tratamentos .row {

  display: flex;

  justify-content: center;

  align-items: center;

  align-content: center;

  align-self: center;

  justify-self: center;

  justify-items: center;

} */

.trat-card {
  width: 220px;
  height: 147px;
  background-color: #0c798a;
  color: white;
  margin: 3px 3px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* .trat-card-link {

  position: relative;

} */

.trat-icone>i {
  font-size: 32px;
  margin-bottom: 10px;
}

.trat-texto {
  /* visibility: hidden;*/
  display: none;
  background-color: #0c798a;
}

textarea {
  width: 100%;
  height: 158px;
  margin-top: 28px;
}

.contato-form>form:nth-child(1)>fieldset:nth-child(1)>div:nth-child(2)>div:nth-child(2)>div:nth-child(1) {
  display: flex;
  flex-direction: column;
  align-content: end;
  align-items: end;
}

@media screen and (max-width: 375px) {
  textarea {
    margin-top: 0;
  }
}

input[type="text"], input[type="email"], textarea {
  border: 2px solid #BCE0FD;
  border-radius: 10px;
  padding-left: 22px;
  font-family: sans-serif;
  color: #858585;
  font-size: 15px;
}

textarea {
  padding-top: 14px;
}

input[type="text"], input[type="email"] {
  border: 2px solid #BCE0FD;
  height: 50px;
}

input[type="button"] {
  background-color: #0c798a;
  width: 116px;
  height: 50px;
  border: none;
  color: white;
  font-size: 14px;
  font-weight: 900;
  border-radius: 10px;
  margin-top: 3px;
  display: flex;
  justify-content: center;
  align-self: flex-end;
}

input[type="button"]:hover {
	background-color: #096574;
	color: #abdee9;
}

fieldset {
  border: none;
}

legend {
  font-size: 26px;
  margin-bottom: 20px;
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  /* color: red; */
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  /* color: red; */
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  /* color: red; */
}

label {
  display: block;
  margin-bottom: 8px;
}

.form-control {
  display: block;
  width: 96%;
  padding: .375rem .75rem;
  margin-bottom: 32px;
}

@media screen and (max-width: 720px) {
  .form-control {
    width: 100%;
  }
}

@media screen and (max-width: 879px) {
  .contato-form {
    display: flex;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 720px) {
  .contato-form {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
    flex: 0 0 calc(100% / 12 * 12);
    justify-content: center;
  }
}

@media screen and (max-width: 375px) {
  div.col-6:nth-child(1) {
    flex: 0 0 calc(100% / 12 * 12);
  }
}

@media screen and (max-width: 375px) {
  .contato-form>form:nth-child(1)>fieldset:nth-child(1)>div:nth-child(2)>div:nth-child(2) {
    flex: 0 0 calc(100% / 12 * 12);
  }
}

/* VIDEO WRAPPER */

.video-wrapper {
  width: 100%;
  height: 604px;
  overflow: hidden;
  margin-top: 20px;
}

@media screen and (max-width: 439px) {
  .video-wrapper {
    height: 274px;
  }
}

.video-wrapper video {
	object-fit: cover;
	width: 100%;
	height: 100%;
	animation: video-anima 2s ease-in;
	object-position: 0% 70%;
}
.video-wrapper img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	animation: video-anima 2s ease-in;
	object-position: 50% 70%;
}

@keyframes video-anima {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}

/* Filto do vídeo */

/* .video-wrapper::after {

	display: ;

	display: block;

	content: "";

	background-color: rgba(30,30,30,0.2);

	width: 1366px;

	height: 604px;

	position: ;

	position: absolute;

	top: 48px;

}



.video-wrapper::before {

	display: block;

	content: "Especialista em Odontopediatria e Ortodontia Infantil";

	width: 1366px;

	height: 604px;

	position: absolute;

	top: 48px;

} */

.video-wrapper::before {
	display: block;
	content: "Especialista em Odontopediatria e Ortodontia Infantil";
	position: absolute;
	top: 588px;
	color: white;
	font-size: 1.8em;
	z-index: 2;
	background-color: rgba(49, 101, 116, 0.87);
	padding: 10px;
	height: 40px;
	width: auto;
	font-weight: bolder;
	border-radius: 0px 20px 0px 0px;
}

@media screen and (max-width: 970px) {
  .video-wrapper::before {
    font-size: 1.2em;
    border-radius: 0;
  }
}

@media screen and (max-width: 439px) {
  .video-wrapper::before {
    top: 340px;
    height: auto;
    background-color: rgba(49, 101, 116, 1);
    font-size: 1.2em;
    border-radius: 0;
  }
}

/* DROPDOWN MENU */

.dropbtn {
  /* background-color: #3498DB;

  color: white;

  padding: 16px;

  font-size: 16px;

  border: none; */
  cursor: pointer;
}

/* Dropdown button on hover & focus */

.dropbtn:hover, .dropbtn:focus {
  /* background-color: #2980B9; */
}

/* The container <div> - needed to position the dropdown content */

.dropdown {
  /* position: relative; */
  /* display: inline-block; */
}

/* Dropdown Content (Hidden by Default) */

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Links inside the dropdown */

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */

.dropdown-content a:hover {
  background-color: #ddd
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */

.show {
  display: flex !important;
}