/*Global Styles*/
@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,600,700&display=swap');

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

html {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

p {
  font-size: 1.6rem;
}

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

section {
  padding: 5rem 0;
}

span {
  text-transform: capitalize;
}

h1 {
  text-transform: uppercase;
  font-size: 4rem !important;
}

/* Header */

header {
  width: 100%;
  height: 5rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.container {
  width: 100%;
  max-width: 98rem;
  margin: 0 auto;
  padding: 0 1rem;
}

nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-brand {
  width: 21rem;
}

.menu-icons i {
  font-size: 3.5rem;
  color: #d7d4ed;
  cursor: pointer;
}

.open i {
  position: fixed;
  top: 3.5rem;
  right: 2rem;
}

.close i,
.fa-check {
  color: #eb648c;
}

.nav-list {
  width: 25rem;
  height: 100vh;
  background-color: #d7d4ed;
  position: fixed;
  top: 0;
  right: -26rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: all 650ms ease-in-out;
}

.nav-list.active {
  right: 0;
}

.close {
  position: absolute;
  top: 1rem;
  left: 1.5rem;
}

.nav-item {
  font-size: 5rem;
  margin: 1.5rem 0;
}

.nav-link {
  font-size: 2rem;
  text-transform: uppercase;
  color: rgba(49, 24, 131, 0.9);
}

.nav-link:hover {
  color: #eb648c;
}

.hero {
  width: 100%;
  height: 80vh;
  background: linear-gradient(
      135deg,
      rgba(49, 24, 131, 0.9) 0%,
      rgba(72, 56, 149, 0.8) 100%
    ),
    url('https://colorlib.com/preview/theme/toothsy/images/person-transparent-2.png')
      center no-repeat;
  background-size: cover;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 4.7rem;
  background: url('imagens/waves/wave-small.png') center no-repeat;
  background-size: cover;
}

.main-message {
  width: 100%;
  max-width: 50rem;
  color: #fafafa;
  text-transform: uppercase;
  transform: translateY(20%);
}

.main-message h3 {
  font-size: 1.9rem;
}

.main-message h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4rem;
  /* margin: 2rem 0; */
}

.main-message p {
  text-transform: lowercase;
}

.btnc {
  background: linear-gradient(to left, #eb648c, #9149b9);
  border-radius: 2rem;
  color: #fff;
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2.5rem;
  text-transform: uppercase;
  transition: background-color 650ms;
}

.btnc:hover {
  color: #fff;
  background: linear-gradient(to right, #eb648c, #9149b9);
  text-decoration: none;
}

/*Start About Me*/
#about {
  background: linear-gradient(
    135deg,
    rgba(49, 24, 131, 0.9) 0%,
    rgba(72, 56, 149, 0.8) 100%
  );
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

#about .container .about-right {
  padding: 30px;
  color: #fff;
}

.container_about {
  justify-content: center;
  text-justify: auto;
  text-align: justify;
  padding: 30px;
  position: relative;
}

#about .container .about-link {
  text-align: center;
}

#about .container .about-link li {
  display: inline-block;
}

#about .container .about-link li a i {
  justify-content: center;
  text-justify: auto;
  text-align: justify;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
  border: 1px solid #eb648c;
  margin-right: 10px;
  color: #eb648c;
  font-size: 22px;
  transition: all 0.6s;
}

#about .container .about-link li a i:hover {
  color: #222222;
  background: #eb648c;
  border-color: #eb648c;
}

.about-img {
  margin-top: -30px;
  height: 430px;
  width: 100%;
}

#about .container .about-img {
  background: url('imagens/aboutMe/jamz.png');
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 1px;
}

#about .container h2 {
  text-align: center;
  margin-bottom: 1.25rem;
}
#about .container p {
  text-align: center;
  /* margin-bottom: 1.25rem; */
}
/*End About Me*/

/* Experiencia */

.experiance {
  padding: 0;
  /* color: rgba(49, 24, 131, 0.9); */
}

.title-heading {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 10rem;
  /* color: rgba(0, 0, 0, .7); */
}

.title-heading h3 {
  font-size: 1.4rem;
}

.title-heading h1 {
  font-size: 2rem;
  margin: 0.5rem 0 1rem;
}

.title-heading p {
  text-transform: lowercase;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  grid-gap: 2.5rem;
}

.card1 {
  position: relative;
  width: 300px;
  height: 400px;
  margin: 2rem 0;
  z-index: 0;
  overflow: hidden;
  text-align: justify;
  box-shadow: 0 0 20px 0 rgba(72, 94, 116, 0.7);
}

.card1 .card-title {
  padding: 3px;
  position: absolute;
  top: 2px;
  left: 5px;
  background-color: #d7d4ed;
  border-radius: 3px;
}

#detailsBtn1,
#detailsBtn2,
#detailsBtn3,
#detailsBtn4,
#detailsBtn5,
#detailsBtn6,
.toggle {
  position: absolute;
  width: 50px;
  height: 50px;
  bottom: 20px;
  right: 20px;
  outline: none;
  z-index: 10;
}

#detailsBtn1:hover,
#detailsBtn2:hover,
#detailsBtn3:hover,
#detailsBtn4:hover,
#detailsBtn5:hover,
#detailsBtn6:hover {
  cursor: pointer;
}

#detailsBtn1,
#detailsBtn2,
#detailsBtn3,
#detailsBtn4,
#detailsBtn5,
#detailsBtn6 {
  opacity: 0;
}

.toggle {
  pointer-events: none;
  border-radius: 50%;
  background: #fff;
  transition: 0.5s;
  text-align: center;
  line-height: 50px;
  font-size: 36px;
  box-shadow: 0 0 0 0px #9c27b0;
}

#detailsBtn1:checked ~ .toggle,
#detailsBtn2:checked ~ .toggle,
#detailsBtn3:checked ~ .toggle,
#detailsBtn4:checked ~ .toggle,
#detailsBtn5:checked ~ .toggle,
#detailsBtn6:checked ~ .toggle {
  box-shadow: 0 0 0 500px #9c27b0;
  transform: rotate(225deg);
}

.details {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
  z-index: 11;
  pointer-events: none;
  transition: 0.5s;
  opacity: 0;
}

#detailsBtn1:checked ~ .details,
#detailsBtn2:checked ~ .details,
#detailsBtn3:checked ~ .details,
#detailsBtn4:checked ~ .details,
#detailsBtn5:checked ~ .details,
#detailsBtn6:checked ~ .details {
  opacity: 1;
  transition-delay: 0.5s;
}

.details h2 {
  margin-bottom: 5px;
  color: #fff;
}

.details p {
  margin: 0;
  padding: 0;
  color: #fff;
}

.card1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(49, 24, 131, 0.7));
  z-index: -2;
}

.ortodontia {
  background-image: url('imagens/servicos/aparelho-min.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.alinhadores-ortodônticos {
  background-image: url('imagens/servicos/IMG_CD73F9ACB76B-1-min.jpeg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.clareamento-dental {
  background: url('imagens/servicos/clareamento-min.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.lentes-de-contato {
  background: url('imagens/servicos/IMG_7B00FFCAA400-1-min.jpeg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.harmonizacao-orofacial {
  background: url('imagens/servicos/IMG_2BE0B8566948-1-min.jpeg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.odontopediatria {
  background: url('imagens/servicos/pexels-nadezhda-moryak-7800569-min.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.implates-dentarios {
  background: url('imagens/servicos/IMG_2BB5814BD24A-1-min.jpeg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.protese-dentaria {
  background: url('imagens/servicos/velhos-min.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.endodontia {
  background: url('imagens/servicos/IMG_B1DE3EC5AA9F-1-min.jpeg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/*SVG*/
svg {
  fill: url(#MyGradient);
  height: 100px;
  position: absolute;
  top: 0;
  right: 5px;
}

.activities-grid-item h1 {
  font-size: 1.7rem;
  text-transform: uppercase;
  margin: 2rem 0;
}

/*Testimonials*/
.testimonials {
  width: 100%;
  height: 80vh;
  background: linear-gradient(
      135deg,
      rgba(49, 24, 131, 0.9) 0%,
      rgba(72, 56, 149, 0.8) 100%
    ),
    url('imagens/servicos/daniel-frank-kdoaOFGE9QM-unsplash-min.jpg') center
      no-repeat fixed;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 4.7rem;
  background: url('imagens/waves/wave-small-reversed.png') center no-repeat;
  background-size: cover;
}

.testimonial {
  width: 100%;
  color: #fafafa;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.testimonial-text-box {
  /* padding: 0 1.5rem; */
  /* margin-top: 2rem; */
  /* position: relative; */
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-items: center;
}

.testimonial-text-box i {
  position: absolute;
  top: -8rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8rem;
  color: #eb648c;
  opacity: 0.5;
  z-index: -1;
}

.testimonial-customer img {
  width: 10rem;
  height: 10rem;
  border-radius: 100%;
  border: 3px solid #eb648c;
}

.videoBox iframe {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 300px;
  height: 335px;
  margin-top: 20%;
  /* border: 3px solid #eb648c; */
}
/* .videoInfo {
  width: 300px;
  justify-content: center;
  text-align: center;
  align-items: center;
} */

.up {
  position: absolute;
  width: 5rem;
  height: 5rem;
  background-color: #eee;
  top: -2.5rem;
  right: 5rem;
  border-radius: 100%;
  display: flex;
  animation: pulse 2s infinite;
  cursor: pointer;
}

.up i {
  color: #16162d;
  font-size: 2rem;
  margin: auto;
}

.our-services h1 {
  text-align: center;
}

/* * Depoimentos swiper */
.depoimentos {
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  overflow: hidden;
  /* background-color: #f9fafe; */
}

.swiper-container {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.swiper-container h1 {
  text-align: center;
  margin-bottom: 30px;
  color: #21325b;
}

.swiper-slide {
  width: 420px;
  height: 420px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2);
}

.swiper-slide .source {
  position: fixed;
  bottom: 20px;
  left: 20px;
}

.source-profile {
  width: 90px;
  height: 90px;
  margin-right: 5px;
}

.source {
  margin-top: 80px;
  display: flex;
}

.flex-column {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}
.fa-star {
  color: orange;
}

.mb-3 {
  margin-top: 20px;
}

hr {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.order-1 a:hover {
  text-decoration: none;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(253, 87, 191, 0.99);
  }

  70% {
    box-shadow: 0 0 0 2rem rgba(253, 87, 191, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(253, 87, 191, 0);
  }
}

/*end pulse effect*/

/*Media Queries*/

@media screen and (min-width: 350px) {
  .main-message {
    transform: translateY(40%);
  }

  .card1 {
    margin: auto;
  }
}

@media screen and (min-width: 470px) {
  .hero::before {
    height: 9.4rem;
    background: url('imagens/waves/wave-medium.png');
    background-size: cover;
  }

  .testimonials::before {
    height: 9.4rem;
    background: url('imagens/waves/wave-medium-reversed.png');
    background-size: cover;
  }

  /* footer::before {
    height: 9.4rem;
    background: url('imagens/waves/wave-medium-reversed.png');
    background-size: cover;
  } */

  .nav-brand {
    width: 14rem;
  }

  .up {
    right: 2rem;
    top: 2rem;
  }
}

@media screen and (min-width: 700px) {
  header {
    height: 8rem;
  }

  .nav-brand {
    width: 14rem;
  }

  .nav-list {
    width: initial;
    height: initial;
    background-color: transparent;
    position: initial;
    top: initial;
    right: initial;
    flex-direction: row;
    transition: initial;
  }

  .menu-icons {
    display: none;
  }

  .nav-link,
  .current {
    color: #fafafa;
    position: relative;
    font-size: 1.3rem;
  }

  .nav-link::before,
  .current::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    background-color: #eb648c;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 650ms;
  }

  .current::before {
    transform: scaleX(1);
  }

  .nav-link:hover::before {
    transform: scale(1);
  }

  .hero {
    height: 60vh;
  }

  .main-message {
    transform: translateY(30%);
  }

  .title-heading h1 {
    font-size: 2.5rem;
  }

  #about {
    /* height: 75vh; */
    display: flex;
    flex-direction: row;
  }

  .about-img {
    margin-top: 120px;
    height: 450px;
    width: 100%;
  }

  /* .about-img */
  .jamz {
    /* position: relative; */
    top: -300px;
    height: 400px;
    /* left: 0; */
    /* width: 400px; */
    /* height: min-content; */
    padding-right: 60px;
    /* background-size: cover; */
  }

  #about .container .about-right {
    padding-left: 80px;
  }

  /* footer .row {
    position: relative;
    top: 360px;
  } */
}

@media screen and (min-width: 950px) {
  .hero::before {
    height: 22.7rem;
    background: url('imagens/waves/wave-large.png');
    background-size: cover;
  }

  .testimonials::before {
    height: 22.7rem;
    background: url('imagens/waves/wave-large-reversed.png');
    background-size: cover;
  }

  /* footer::before {
    height: 22.7rem;
    background: url('imagens/waves/wave-large-reversed.png');
    background-size: cover;
  } */
}

@media screen and (min-width: 1200px) {
  .hero {
    height: 90vh;
  }

  /* footer {
    height: 75vh;
  }

  footer .row {
    top: 80%;
    font-size: 15px;
  } */

  .up {
    top: 6rem;
  }
}

@media screen and (max-width: 600px) {
  footer {
    height: 100vh;
  }
}
@media (max-width: 768px) {
  .swiper-slide {
    width: 300px;
    height: 410px;
    padding: 10px;
  }

  .mb-2 {
    font-size: 1rem;
    margin-bottom: 2px !important;
  }

  .ratings {
    margin-bottom: 1px !important;
  }

  .source-profile {
    width: 60px;
    height: 60px;
    margin-right: 4px;
  }

  .item-inner {
    justify-content: center;
  }
}
/* ================================ */

/* .footerSec {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 100vh;
  flex-direction: column;
  background: #ede7f6;
} */
footer {
  position: relative;
  width: 100%;
  height: auto;
  padding: 50px 100px;
  background-color: rgba(49, 24, 131, 0.9);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  justify-items: center;
}

footer .footerContainer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  justify-items: center;
  flex-direction: row;
  width: 100%;
  max-width: 98rem;
  margin: 0 auto;
  padding: 0 1rem;
  margin-right: 90px;
}

/* footer .footerContainer .sec {
  margin-right: 30px;
} */

footer .footerContainer .sec.aboutus {
  margin-top: 40px;
  width: 40%;
}
footer .footerContainer h2 {
  position: relative;
  color: #fff;
  font-weight: 500;
  margin-bottom: 15px;
}
footer .footerContainer h2:before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 2px;
  background: #eb648c;
}

footer p {
  color: #fff;
}
.sci {
  margin-top: 20px;
  display: flex;
}
.sci li {
  list-style: none;
}
.sci li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 20px !important;
}

.sci li a:hover {
  background: #fff;
}
.sci li a .fa {
  color: #eb648c;
  font-size: 20px;
}
.quickLinks {
  position: relative;
  width: 25%;
}
.quickLinks ul li {
  list-style: none;
}
.quickLinks ul li a {
  color: #fff;
  text-decoration: none;
  margin-bottom: 10px;
  display: inline-block;
  font-size: initial;
}
.quickLinks ul li a:hover {
  color: #eb648c;
}
.footerContact {
  width: calc(35% - 60px);
  margin: 0 !important;
}
.footerContact .info {
  position: relative;
}
.footerContact .info li {
  display: flex;
  margin-bottom: 16px;
}
.footerContact .info li span:nth-child(1) {
  color: #eb648c;
  font-size: 20px;
  margin-right: 10px;
}
.footerContact .info li span {
  color: #fff;
  font-size: initial;
}
.footerContact .info li a {
  color: #fff;
  text-decoration: none;
}
.footerContact .info li a:hover {
  color: #eb648c;
}
.copyrightText {
  width: 100%;
  background: #181818;
  padding: 8px 100px;
  text-align: center;
  color: #999;
}
@media (max-width: 991px) {
  footer {
    padding: 40px;
  }
  footer .footerContainer {
    flex-direction: column;
  }
  fotter .footerContainer .sec {
    margin-right: 0;
    margin-bottom: 40px;
  }
  footer .footerContainer .sec.aboutus,
  .quickLinks,
  .footerContact {
    width: 100%;
  }

  .copyrightText {
    padding: 8px 40px;
  }
}
