/**
* Template Name: Lumia
* Updated: Mar 10 2023 with Bootstrap v5.2.3
* Template URL: https://bootstrapmade.com/lumia-bootstrap-business-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Montserrat";
  color: #444444;
  max-width: 1920px;
  margin: auto;
}

hr {
  border: none;
  border-top: 1px solid gray;
  margin: 40px 40px;
}

a {
  color: #4F9194;
  text-decoration: none;
}

a:hover {
  color: #5faee3;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat";
  font-weight: bold;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #4F9194;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #57aae1;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.justified {
  justify-content: center;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 132px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #fff;
}

#header .logo img {
  max-height: 70px;
}

#header .container {
  max-width: 80%;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
  color: #273B5F;
  
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 60px;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #273B5F;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 18px;
  line-height: 0;
  margin-left: 5px;
}

.lastlink {
  margin-right: 100px;
}

.navbar button {
  background: #4F9194;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  font-weight: bold;
  font-family: 'Montserrat';
  font-size: 19px;
  transition: 0.4s;
  border-radius: 12px;
  margin-left: 12px;
  margin-right: 20px;
  height: 57px;
  width: 215px;
  opacity: 1;
}

@media (max-width: 992px) {
  .navbar button {
    height: 30px;
    width: 150px;
    font-size: 14px;
    border-radius: 6px;
    padding: 3px 6px;
  }
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #4F9194;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 20px;
  font-weight: 400;
  color: #21262a;
}

.navbar .dropdown ul a i {
  font-size: 20px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #4F9194;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #4F9194;
  font-size: 50px;
  font-weight: 900;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(33, 38, 42, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #384046;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #4F9194;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #4F9194;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 820px;
  background: url("../img/doctors.png") center center;
  background-size: cover;
  position: relative;
  margin-top: 70px;
  padding: 0;
}

#carousel-hero {
  width: 100%;
  height: 820px;
  margin-top: 120px;
}

#carousel-hero img {
  height: 820px;
  object-fit: none;
}

.carousel-control-prev {
  width: 50px !important;
}

.carousel-control-next {
  width: 50px !important;
}

.carousel-caption {
  margin-bottom: 100px !important;
  text-align: left !important;
  left: 6% !important;
}

.carousel-indicators .active { 
  background-color: #B8475D !important;
}

.carousel-indicators li {
  width: 12px !important;
  height: 12px !important;
  border-radius: 100% !important;
}

.second-carousel {
  display: inline-flex;
}

@media (max-width: 1300px) {
  .playbutton {
    display: none; 
  }
}

.playbutton {
  margin-top: 450px;
  margin-right: 30px;
  height: 280px !important;
}

.second-carousel-text {
  width: 100% !important;
}

.second-carousel-text h1 {
  width: 100% !important;
}

.second-carousel-text h2 {
  width: 100% !important;
}


#hero:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.hero-text-container {
  max-width: 80% !important;
}

.hero-text-container .title {
  font-weight: bold;
  margin-top: 350px;
}

@media (max-width: 1300px) {
  .hero-text-container .title {
    margin-top: 200px;
  }
}

@media (max-width: 922px) {
    .hero-text-container .title {
      margin-top: 200px;
    }
}

@media (max-width: 768px) {
  .hero-text-container .title {
    margin-top: 0px !important;
  }
}

@media (max-width: 1300px) {
  .hero-text-container .title {
    margin-top: 200px !important;
    font-size: 40px !important;
    line-height: normal !important;
  }
}

@media (max-width: 768px) {
  .hero-text-container .title {
    margin-top: 0px !important;
  }
}

.hero-text-container .subtitle {
  max-width: 869px;
}

.hero-text-container h1 {
  margin: 0px 0 10px 0;
  font-size: 62px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  padding-bottom: 20px;
  padding-top: 120px;
  max-width: 989px;
  line-height: 80px;
}

.hero-text-container h1 span {
  border-bottom: 4px solid #4F9194;
}

.hero-text-container h2 {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: 300;
}

#btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 23px;
  display: inline-block;
  padding-top: 2px;
  padding-left: 25px;
  padding-right: 14px;
  border-radius: 20px;
  transition: width 0.5s ease;
  color: #fff;
  background: #4F9194;
  height: 49px;
  text-align: left;
  width: 308px;
}


#btn-get-started:hover {
  width: 408px !important;
}

#btn-get-started img {
  float: right;
  height: 30px;
  margin-top: 3px;
}

#btn-get-started p {
  margin-top: 4px;
  width: 100%;
}

@media (max-width: 768px) {

  .hero-text-container {
    padding-top: 50% !important;
  }

  .hero-text-container h1 {
    font-size: 30px;
    line-height: 36px;
  }

  .hero-text-container h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: #fff;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
  width: 100%;
}

.section-title h2 {
  font-size: 43px;
  font-weight: 700 !important;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #3B3939;
  font-family: 'Montserrat';
  font-weight: bolder;
  width: 100%;
  margin-left: 10px;
}

.section-subtitle {
  display: flex;
  justify-content: center;
}

.section-subtitle .redbar {
  content: "";
  width: 7px;
  height: 48px;
  background: #B8475D;
  bottom: 0;
  border-radius: 4px;
  opacity: 100 !important;
}

.section-title p {
  margin-bottom: 2;
  font-family: 'Montserrat';
  font-weight: 300;
  font-size: 18px;
  color: #3B3939;
  opacity: 43%;
}

/*--------------------------------------------------------------
# What We Do
--------------------------------------------------------------*/
.what-we-do {
  background-color: #F7F7F7;
  font-family: 'Montserrat';
  font-weight: bold;
  padding-top: 160px;
}

.what-we-do .cards {
  margin-top: 60px;
  justify-content:center;
}

.what-we-do .icon-box {
  text-align: left;
  padding: 0px 20px;
  transition: all ease-in-out 0.3s;
}

.what-we-do .icon {
  margin: 0 auto;  
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}

.what-we-do .icon img {
  width: 50x;
  height: 50px;
}

@media (max-width: 768px) {
  .what-we-do-card-second {
    margin-top: 60px;
  }
}

@media (max-width: 992px) {
  .what-we-do-card-third {
    margin-top: 60px;
  }
}

.what-we-do .icon-box .icon i {
  color: #B8475D;
  font-size: 28px;
}

.what-we-do .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 28px;
  color: #273B60;
  font-weight: 700;
}

.what-we-do .icon-box h4 a {
  color: #384046;
  transition: ease-in-out 0.3s;
}

.what-we-do .icon-box p {
  line-height: 24px;
  font-size: 20px;
  margin-bottom: 0;
  color: #273B60;
  font-weight: 400;
  width: 310px;
}

.what-we-do .div-btn {
  margin-top: 80px;
}

.what-we-do button {
  background: #B8475D;
  border: 0;
  padding: 5px 22px;
  color: #fff;
  font-weight: bold;
  font-family: 'Montserrat';
  font-size: 20px;
  transition: 0.4s;
  border-radius: 30px;
  height: 46px;
  width: 233px;
}

.what-we-do .redbar {
  content: "";
  width: 6px;
  height: 46px;
  background: #B8475D;
  bottom: 0;
  border-radius: 4px;
  opacity: 100 !important;
  margin-right: 10px;
  margin-top: 10px;
}

.what-we-do .s-subtitle {
  text-align: left;
  letter-spacing: 0px;
  color: #3B3939;
  opacity: 1;
  font-size: 43px;
  font-weight: bold;
  text-align: center;
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding: 80px 0px;
  width: 100% !important;
}

.about .titlediv {
  margin-bottom: 0px;
  margin-top: 80px;
  display: inline-flex;
  width: 400px;
}

.about .redbar {
  content: "";
  width: 7px;
  height: 74px;
  background: #B8475D;
  bottom: 0;
  border-radius: 4px;
  left: 1px;
  opacity: 100;
  padding-right: 6px;
  margin-right: 30px;
}

.about .about-main-div {
  width:100%;
  justify-content: center;
}

.about .img-div {
  width:700px;
  margin-right: 120px;
}

.about .description {
  text-align: justify;
}

@media (max-width:1300px) {
  .about .img-div {
    width: 80% !important;    
    margin-right: 0px;
  }
}

@media (max-width:1300px) {
  .img-div video {
    width: 346px;
  }
  .img-video {
    width: 492px;
    height: 304px;
  }
}

@media (max-width:768px) {
  .img-div video {
    margin-left: 28px !important;
    margin-top: 61.5px !important;
    width: 326px !important;
  }
  .img-video {
    width: 392px !important;
    height: 304px !important;
  }
}

.img-div video {
  position:relative;
  z-index:2;
  margin-left: 58px;
  margin-top: 100px;
  width: 546px;
}

.img-video {
  position:absolute;
  z-index:3;
  width: 692px;
  height: 504px;
}

.about .text-div {
  width: 700px;
}

@media (max-width:1600px) {
  .about .text-div {
    margin-top: 60px;
    width: 80% !important;
  }
}

@media (max-width:1300px) {
  .about .text-div {
    margin-top: 60px;
    width: 80% !important;
  }
}

.about .smalltitle {
  font: normal normal medium 18px/34px Montserrat;
  letter-spacing: 0px;
  color: #3B3939;
  text-transform: uppercase;
  opacity: 0.43;
  margin-bottom: 10px;
}

.about .smallsubtitle {
  margin-bottom: 10px;
  font: normal normal bold 44px/95px Montserrat;
  color: #3B3939;
  opacity: 1;
  width: 400px;
  height: 54px;
  line-height: 40px;
}

.about .description {
  padding-left: 36px;
  width:100%;
 
  font: normal normal normal 23px/39px Montserrat;
  letter-spacing: 0px;
  color: #262020;
  text-shadow: 0px 3px 6px #00000029;
  opacity: 1;
}

/*--------------------------------------------------------------
# Sponsors
--------------------------------------------------------------*/
.sponsors {
  text-align: center;
  width: 100%;
}

.sponsors .s-title {
  font: normal normal medium 18px/34px Montserrat;
  letter-spacing: 0px;
  color: #3B3939;
  text-transform: uppercase;
  opacity: 0.43;
}

.sponsors .s-subtitle {
  text-align: left;
  letter-spacing: 0px;
  color: #3B3939;
  opacity: 1;
  font-size: 43px;
  font-weight: bold;
}

.sponsors .cards {
  justify-content:center;
}

.sponsors img {
  margin-right: 20px;
}

.sponsors .redbar {
  content: "";
  width: 6px;
  height: 46px;
  background: #B8475D;
  bottom: 0;
  border-radius: 4px;
  left: 1px;
  opacity: 100;
  margin-right: 10px;
  margin-top: 10px;
}



/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  border-radius: 6px;
  background: #fff;
  transition: ease-in-out 0.3s;
}

.services .icon-box i {
  float: left;
  color: #4F9194;
  font-size: 40px;
  line-height: 0;
}

.services .icon-box h4 {
  margin-left: 70px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .icon-box h4 a {
  color: #384046;
  transition: 0.3s;
}

.services .icon-box p {
  margin-left: 70px;
  line-height: 24px;
  font-size: 14px;
}

.services .icon-box:hover {
  box-shadow: 0px 2px 22px rgba(0, 0, 0, 0.08);
}

.services .icon-box:hover h4 a {
  color: #4F9194;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio {
  padding: 60px 0;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 0 35px 0;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 0 15px 15px 0;
  display: inline-block;
  padding: 10px 20px;
  font-size: 12px;
  line-height: 20px;
  color: #444444;
  border-radius: 4px;
  text-transform: uppercase;
  background: #fff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  background: #4F9194;
  color: #fff;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.portfolio .portfolio-wrap:hover {
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
}

.portfolio .portfolio-item {
  position: relative;
  height: 360px;
  overflow: hidden;
}

.portfolio .portfolio-item figure {
  background: #000;
  overflow: hidden;
  height: 240px;
  position: relative;
  border-radius: 4px 4px 0 0;
  margin: 0;
}

.portfolio .portfolio-item figure:hover img {
  opacity: 0.4;
  transition: 0.4s;
}

.portfolio .portfolio-item figure .link-preview,
.portfolio .portfolio-item figure .link-details {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  line-height: 0;
  text-align: center;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  transition: all 0.2s linear;
  overflow: hidden;
  font-size: 20px;
}

.portfolio .portfolio-item figure .link-preview i,
.portfolio .portfolio-item figure .link-details i {
  color: #384046;
  line-height: 0;
}

.portfolio .portfolio-item figure .link-preview:hover,
.portfolio .portfolio-item figure .link-details:hover {
  background: #4F9194;
}

.portfolio .portfolio-item figure .link-preview:hover i,
.portfolio .portfolio-item figure .link-details:hover i {
  color: #fff;
}

.portfolio .portfolio-item figure .link-preview {
  left: calc(50% - 38px);
  top: calc(50% - 18px);
}

.portfolio .portfolio-item figure .link-details {
  right: calc(50% - 38px);
  top: calc(50% - 18px);
}

.portfolio .portfolio-item figure:hover .link-preview {
  opacity: 1;
  left: calc(50% - 44px);
}

.portfolio .portfolio-item figure:hover .link-details {
  opacity: 1;
  right: calc(50% - 44px);
}

.portfolio .portfolio-item .portfolio-info {
  background: #fff;
  text-align: center;
  padding: 30px;
  height: 90px;
  border-radius: 0 0 3px 3px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  line-height: 1px;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info h4 a {
  color: #333;
}

.portfolio .portfolio-item .portfolio-info h4 a:hover {
  color: #4F9194;
}

.portfolio .portfolio-item .portfolio-info p {
  padding: 0;
  margin: 0;
  color: #b8b8b8;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 0;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #4F9194;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #4F9194;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(56, 64, 70, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testimonials-container {
  width: 100%;
  display: inline-block;
  justify-content: center !important;
  align-items: center;
}

.testimonials-container .row {
  max-width: 90%;
  margin: auto;
  justify-content: center !important;
}

.testimonials .section-title {
  width: 100%;
  text-align: center;  
  margin-bottom: 80px;
}

.testimonials .section-title p {
  font: normal normal medium 18px/34px Montserrat;
  letter-spacing: 0px;
  color: #3B3939;
  text-transform: uppercase;
  opacity: 0.43;
}

.testimonials .section-title h3 {
  text-align: center;
  font: normal normal bold 43px/56px Montserrat;
  letter-spacing: 0px;
  color: #3B3939;
  opacity: 1;
  width: 70%;
}


@media (max-width: 768px) {
  .dr-testimonial-second {
    margin-top: 60px;
  }
}

@media (max-width: 992px) {
  .dr-testimonial-third {
    margin-top: 60px;
  }
}

.dr-testimonial {
  
}

.testimonials .member {
  height: 100%;
  background: rgba(38, 245, 255, 0.08);
  border-radius: 20px;
}

.dr-name {
  color: #333333 !important;
  opacity: 1 !important;
  font-size: 25px;
  font-family: "Product Sans";
  font-weight: bold;
  padding-top: 46px;
  padding-left: 30px;
  padding-bottom: 10px;
}

.ds-description {
  color: #333333B3 !important;
  opacity: 1 !important;
  font-size: 18px;
  font-family: "Product Sans";
  padding-left: 30px;
  padding-right: 40px;
  letter-spacing: 0px;
  text-align: justify;
}

/*--------------------------------------------------------------
# Price
--------------------------------------------------------------*/
.price .member {
  text-align: left;
  margin-bottom: 20px;
  box-shadow: 0px 0px 12px 0px #00000029;
  border-radius: 20px;
  background: #F7F7F7 0% 0% no-repeat padding-box;
  box-shadow: 0px -1px 12px #00000029;
  opacity: 1;
  color: #4D8C8F;
  font-family: "Montserrat";
  width: 317px;
  height: 687px;
  padding: 10px 10px;
}

.price .member-semestral {
  text-align: left;
  margin-bottom: 20px;
  box-shadow: 0px 0px 12px 0px #FFFFFF;
  border-radius: 20px;
  background: #F7F7F7 0% 0% no-repeat padding-box;
  box-shadow: 0px -1px 12px #FFFFFF;
  opacity: 1;
  color: #FFFFFF;
  font-family: "Montserrat";
  width: 317px;
  height: 687px;
  padding: 10px 10px;
  background-color: #4D8C8F;
  position: absolute;
}

.price .member-highlighted {
  text-align: left;
  margin-bottom: 20px;
  box-shadow: 0px 0px 12px 0px #FFFFFF;
  border-radius: 20px;
  background: #F7F7F7 0% 0% no-repeat padding-box;
  box-shadow: 0px -1px 12px #FFFFFF;
  opacity: 1;
  color: #FFFFFF;
  font-family: "Montserrat";
  width: 317px;
  height: 687px;
  padding: 10px 10px;
  background-color: #4D8C8F;
  position: absolute;
}

.price-option {
  justify-content: center;
}

@media (max-width: 768px) {
  .price-option {
    margin-top: 40px;
  }
  .last-price-option {
    margin-top: 700px;
  }
}

.semester-div {
  position: relative;
}

.best-seller {
  z-index: 9;
  width: 182px;
  height: 41px;
  background: #B8475D 0% 0% no-repeat padding-box;
  border-radius: 19px;
  opacity: 1;
  position: relative;
  margin-left: 110px;
  margin-top: -20px;
}

.best-seller p {
  font: normal normal bold 17px/20px Montserrat;
  letter-spacing: 0px;
  color: #FFFFFF;
  opacity: 1;
  margin-top: 10px;
}

.price .mensal {
  padding-top: 60px;
  padding-left: 30px;
  font: normal normal bold 39px/48px Montserrat;
  letter-spacing: 0px;
  color: #4D8C8F;
  opacity: 1;
  padding-bottom: 10px;
}

.price .semestral {
  padding-top: 60px;
  padding-left: 30px;
  font: normal normal bold 39px/48px Montserrat;
  letter-spacing: 0px;
  color: #4D8C8F;
  opacity: 1;
  padding-bottom: 10px;
}

.price .anual {
  padding-top: 60px;
  padding-left: 30px;
  font: normal normal bold 39px/48px Montserrat;
  letter-spacing: 0px;
  color: #FFFFFF;
  opacity: 1;
  padding-bottom: 10px;
}

.price {
  text-align: center;
  width: 100%;
}

.price .s-title {
  font: normal normal medium 18px/34px Montserrat;
  letter-spacing: 0px;
  color: #3B3939;
  text-transform: uppercase;
  opacity: 0.43;
}

.price .s-subtitle {
  letter-spacing: 0px;
  color: #3B3939;
  opacity: 1;
  font-size: 43px;
  font-weight: bold;
}

.price .price-redbar {
  content: "";
  width: 6px;
  height: 46px;
  background: #B8475D;
  bottom: 0;
  border-radius: 4px;
  opacity: 100 !important;
  margin-right: 10px;
  margin-top: 10px;
}

.price .s-description {
  height: 86px;
  text-align: center;
  letter-spacing: 0px;
  color: #273B60;
  opacity: 1;
  font-size: 27px;
  font-weight: 400;
  margin-bottom: 80px;

}

.price .price-subtitle {
  display: flex;
  justify-content: center;
  offset: 10px;
}

.price button {
  border: 0;
  padding: 5px 22px;
  color: #fff;
  font-weight: bold;
  font-family: 'Montserrat';
  width: 250px;
  height: 51px;
  background: #4E8F92 0% 0% no-repeat padding-box;
  border-radius: 28px;
  opacity: 1;
  margin-top: 40px;
}

.price .member-semestral button {
  border: 0;
  padding: 5px 22px;
  color: #4E8F92;
  font-weight: bold;
  font-family: 'Montserrat';
  width: 250px;
  height: 51px;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border-radius: 28px;
  opacity: 1;
  margin-top: 40px;
}

.price .member-highlighted button {
  border: 0;
  padding: 5px 22px;
  color: #4E8F92;
  font-weight: bold;
  font-family: 'Montserrat';
  width: 250px;
  height: 51px;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border-radius: 28px;
  opacity: 1;
  margin-top: 40px;
}

/*--------------------------------------------------------------
# Price details
--------------------------------------------------------------*/

.price .details {
  width: 293px;
  height: 397px;
  border: 1px solid rgba(78, 143, 146, 0.2);
  border-radius: 22px;
  padding-left: 10px;
  padding-top: 20px;
}

.price .details-semester {
  width: 293px;
  height: 397px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  padding-left: 10px;
  padding-top: 20px;
}

.price .details-highlighted {
  width: 293px;
  height: 397px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  padding-left: 10px;
  padding-top: 20px;
}

.price .semester-div hr {
  background-color:white;
  margin-top: 10px;
  margin-bottom: 10px;
  height: 2px;
  margin-left: 10px;  
  margin-right: 16px; 
}

.price hr {
  color:rgba(78, 143, 146, 0.2);
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 10px;  
  margin-right: 16px; 
}

.price .obs {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0px;
  color: #4E8F92;
  opacity: 1;
  text-align: left;
  line-height: 16px;
  margin-bottom: 10px;
  padding-left: 6px;
}

.price .obs-semester {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0px;
  color: #FFFFFF;
  opacity: 1;
  text-align: left;
  line-height: 16px;
  margin-bottom: 10px;
  padding-left: 6px;
}

.de {
  font-size: 21px;
  letter-spacing: 0px;
  color: #4F9194;
  opacity: 0.21;
  padding-right:16px;
}

.de-semester {
  font-size: 21px;
  letter-spacing: 0px;
  color: #FFFFFF;
  opacity: 0.21;
  padding-right:16px;
}

.de-highlighted {
  font-size: 21px;
  letter-spacing: 0px;
  color: #FFFFFF;
  opacity: 0.21;
  padding-right:16px;
}

.por {
  font-size: 21px;
  letter-spacing: 0px;
  color: #4F9194;
  opacity: 1;
  margin-bottom: 0px !important;
  font-weight: 400 !important;
}

.por-semester {
  font-size: 21px;
  letter-spacing: 0px;
  color: #FFFFFF;
  opacity: 1;
  margin-bottom: 0px !important;
  font-weight: 400 !important;
}

.por-highlighted {
  font-size: 21px;
  letter-spacing: 0px;
  color: #FFFFFF;
  opacity: 1;
  margin-bottom: 0px !important;
  font-weight: 400 !important;
}

.por-preco {
  font: normal normal bold 41px/50px Montserrat;
  letter-spacing: 0px;
  color: #4E8F92;
  opacity: 1;  
}

.por-preco-semester {
  font: normal normal bold 41px/50px Montserrat;
  letter-spacing: 0px;
  color: #FFFFFF;
  opacity: 1;
}

.por-preco-highlighted {
  font: normal normal bold 41px/50px Montserrat;
  letter-spacing: 0px;
  color: #FFFFFF;
  opacity: 1;
}

.por-mes {
  font: normal normal normal 28px/34px Montserrat;
  letter-spacing: 0px;
  color: #4E8F92;
  opacity: 1;
  width: 68px;
  padding-top: 12px;
}

.por-mes-semester {
  font: normal normal normal 28px/34px Montserrat;
  letter-spacing: 0px;
  color: #FFFFFF;
  opacity: 1;
  width: 68px;
  padding-top: 12px;
}

.por-mes-highlighted {
  font: normal normal normal 28px/34px Montserrat;
  letter-spacing: 0px;
  color: #FFFFFF;
  opacity: 1;
  width: 68px;
  padding-top: 12px;
}

.line {
  display: flex;
  padding-top: 0px !important;
  line-height: 16px;
}

.line img {
  height: 28px;
}

.incluso {
  font: normal normal bold 15px/19px Montserrat;
  letter-spacing: 0px;
  color: #4E8F92;
  opacity: 1;
  padding-top: 10px;
}

.bi-check-circle-fill {
  font-size: 18px !important;
  margin-right: 8px;
}

.incluso-item {
  font: normal normal medium 15px/19px Montserrat;
  letter-spacing: 0px;
  color: #4E8F92;
  opacity: 1;
  padding-top: 2px;
}

/*--------------------------------------------------------------
# Newsletter
--------------------------------------------------------------*/
#newsletter {
  width: 100%;
  height: 800px;
  background: url("../img/newsletter-bg.png") top center;
  background-size: cover;
  justify-content: center;
}

.newsletter .section-title {
  width: 100%;
  text-align: center;  
  margin-bottom: 80px;
  justify-content: center;
  display: inline-grid;
  padding-top: 80px;
}

.newsletter .newsletter-redbar {
  content: "";
  width: 6px;
  height: 46px;
  background: #B8475D;
  bottom: 0;
  border-radius: 4px;
  opacity: 100 !important;
  margin-right: 10px;
  margin-top: 10px;
}

.newsletter .s-description {  
  height: 86px;
  max-width: 916px;
  text-align: center;
  margin-bottom: 80px;  
  color: #000000;
  opacity: 1;
  font-size: 37px;
  font-weight: 400;  
  font: normal normal normal 37px/41px Montserrat;
  letter-spacing: 0px;
  opacity: 1;
  justify-content: center;
}

.newsletter .s-subdescription {
  color: #4D8C8F;
}

@media (max-width: 1300px) {
  .newsletter .s-subtitle {
    font-size: 28px !important;
  }
  .newsletter .s-description {  
    font-size: 23px !important;
    width: 70% !important;
    margin: auto;
    margin-bottom: 100px;
  }
  .newsletter-redbar {
    height: 30px !important;
  }
}

.newsletter .s-subtitle {
  letter-spacing: 0px;
  color: #3B3939;
  opacity: 1;
  font-size: 43px;
  font-weight: bold;
  padding-bottom: 20px;
}
.newsletter .newsletter-subtitle {
  display: flex;
  justify-content: center;
  offset: 10px;
}

.submit-email {
  /* This bit sets up the horizontal layout */
  display:flex;
  flex-direction:row;  
  max-width: 794px;
  height: 72px;
  background: #EAEAEA 0% 0% no-repeat padding-box !important;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 36px !important;
  opacity: 1;
  margin-bottom: 60px;
}

.submit-email span {
    font-family: 'Montserrat';
    font-size: 22px;
    font-weight: bold;
    padding-right: 20px;
}

.submit-email input {
  flex-grow:2;
  border:none;
  border-radius: 36px !important;
  height: 72px !important;
}

.submit-email input::placeholder {
  color: #D6D6D6 !important;
  font-size: 21px !important;
  text-align: center;
}

.submit-email input:focus {
  outline: none;
}

.submit-email form:focus-within { 
  outline: 1px solid #4D8C8F 
}

.submit-email button {
  border:1px solid #4D8C8F;
  background:#4D8C8F;
  color:white;
  border-radius: 35px;
  width: 207px;
  height: 69px;
}

.authorize-newsletter-div {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: 140px;
}

.authorize-newsletter-div p {
  width: 358px;
  height: 42px;
  text-align: left;
  font: normal normal medium 16px/23px Montserrat;
  letter-spacing: 0px;
  color: #000000;
  opacity: 1;
  font-weight: 400;  
  font-size: 16px;
}

.authorize-newsletter-div  input[type=checkbox] {
  height: 24px;
  margin-right: 10px;
  background: #FFFFFF 0% 0% no-repeat padding-box !important;
  box-shadow: inset 0px 3px 6px #00000029;
  border: 1px solid #707070;
  border-radius: 3px;
  opacity: 1;
  accent-color: #4D8C8F;
}

.authorize-div {
  display: flex;
  width: 100%;
  justify-content: left;
  margin-top: 40px;
}

.authorize-div p {
  width: 358px;
  height: 42px;
  text-align: left;
  font: normal normal medium 16px/23px Montserrat;
  letter-spacing: 0px;
  color: #000000;
  opacity: 1;
  font-weight: 400;  
  font-size: 16px;
}

.authorize-div input[type=checkbox] {
  height: 24px;
  margin-right: 10px;
  background: #FFFFFF 0% 0% no-repeat padding-box !important;
  box-shadow: inset 0px 3px 6px #00000029;
  border: 1px solid #707070;
  border-radius: 3px;
  opacity: 1;
  accent-color: #4D8C8F;
}

/*** ------- dropdown-el --------- ***/


.dropdown-el-div {
  position: absolute;
  left: 0; 
  right: 0; 
}

.dropdown-el {
  position: relative;
  display: inline-block;
  margin-right: 1em;
  max-height: 60px;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  white-space: nowrap;
  color: #3B3B3B;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 21px;
  font-weight: bold;
  outline: none;
  border: 3px solid transparent;
  border-color: #4D8C8F;
  border-radius: 34px;
  transition: 0.3s all ease-in-out;
  background-color: #F6F6F6;
  width: 512px !important;
}

@media (max-width: 1300px) {
  .dropdown-el {
    width: 412px !important;
  }
}

.dropdown-el label {
  height: 60px !important;
  line-height: 60px !important;
  color: #3B3B3B !important;
}

.dropdown-el input:focus + label {
  background: #def;
}

.dropdown-el input {
  width: 1px;
  height: 60px;
  display: inline-block;
  position: absolute;
  opacity: 0.01;
}

.dropdown-el label {
  display: block;
  padding-left: 1em;
  padding-right: 3em;
  cursor: pointer;
  position: relative;
  transition: 0.3s color ease-in-out;
}

.dropdown-el label:nth-child(2) {
  margin-top: 60px;
  height: 60px;
  color: #a8a8a8 !important;
}

.dropdown-el input:checked + label {
  display: block;
  border-top: none;
  position: absolute;
  top: 0;
  width: 100%;
  height: 60px !important;
  padding-bottom: 40px;
}

.dropdown-el::after {
  content: "";
  position: absolute;
  right: 1em;
  top: 0.8em;
  border: 0.4em solid #4D8C8F;
  border-color: #4D8C8F transparent transparent transparent;
  transition: 0.4s all ease-in-out;
  margin-right: 10px;
  font-size: 30px;
}

.dropdown-el.expanded {
  max-height: 90em;
}

.dropdown-el.expanded label {
  border-top: 0.06em solid #d9d9d9;
  height: 60px;
}

.dropdown-el.expanded::after {
  transform: rotate(-180deg);
  top: 0.5em;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  width: 100%;
  height: 1000px;
  padding-top: 100px;
}

@media (max-width: 1300px) {
  .float-container {
    display: grid;
    justify-content: center;
    margin-bottom: 400px;
  }
  #contact {
    margin-bottom: 300px;
  }
}

.contact input[type=email] {
  width: 100%;
}

.contact textarea {
  width: 100% !important;
}

.float-container {
  height: 100%;
  width: 100%;
  max-width: 1374px;
  margin: 0 auto;  
}

.left-container {
  float: left;
  margin-right: 40px;
  width: 300px;
  padding-top: 10px;
}

.left-container img {
  padding-bottom: 30px;
}

.left-container h2 {
  padding-bottom: 30px;
}

@media (max-width: 576px) {
  .left-container p {
    max-width: 400px !important;
    margin-bottom: 100px;    
  } 
  .left-container {
    padding-left: 60px;
  }
}

.left-container p {
  width: 648px;
  height: 96px;
  font-size: 26px;
}

.contact-email-adress {
  color: #B8475D;
  font-weight: bold;
}

.right-container {
  float: right;
  width: 500px;
  height: 715px;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 12px #00000029;
  border-radius: 24px;
  opacity: 1;
}

.contact-form {
  padding: 40px;
}

input[type=text] {
  width: 100%;
  margin-bottom: 20px;
  max-width: 436px;
  height: 52px;
  background: #EAEAEA 0% 0% no-repeat padding-box;
  border-radius: 13px;
  opacity: 1;
}

input[type=text]::placeholder {
  font: normal normal bold 16px/19px Montserrat;
  letter-spacing: 0px;
  color: #6E6E6E;
  opacity: 1;
}

input[type=email] {
  width: 100%;
  margin-bottom: 20px;
  width: 436px;
  height: 52px;
  background: #EAEAEA 0% 0% no-repeat padding-box;
  border-radius: 13px;
  opacity: 1;
}

input[type=email]::placeholder {
  font: normal normal bold 16px/19px Montserrat;
  letter-spacing: 0px;
  color: #6E6E6E;
  opacity: 1;
}

.right-container textarea {
  width: 100%;
  margin-bottom: 20px;
  width: 436px;
  height: 122px;
  background: #EAEAEA 0% 0% no-repeat padding-box;
  border-radius: 13px;
  opacity: 1;
  resize: none;
}

.right-container input:focus {
    outline: none !important;
    border:1px solid #4D8C8F;
    box-shadow: 0 0 10px #4d8c8f56;
}

.right-container textarea:focus {
  outline: none !important;
  border:1px solid #4D8C8F;
  box-shadow: 0 0 10px #4d8c8f56;
}

.right-container textarea::placeholder {
  font: normal normal bold 16px/19px Montserrat;
  letter-spacing: 0px;
  color: #6E6E6E;
  opacity: 1;
}

.right-container button {
  width: 120px;
  height: 41px;
  background: #B8475D;
  border-radius: 20px;
  opacity: 1;
  float: left;
  margin-top: 60px;
  font-weight: bold;
  font-size: 21px;
  color: #fff;
  border-color: #B8475D;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
  padding: 40px 0;
  margin-top: 70px;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #273B5F;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #444444;
  font-size: 14px;
  background: #F7F7F7;
  opacity: 1;
  width: 100%;
  flex-wrap: nowrap !important;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
  margin-right: auto;
  width: 60%;
}

#footer .footer-top .footer-contact img {
  width: 178px;
  height: 74px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  width: 372px;
  height: 87px;
  text-align: left;
  letter-spacing: 0px;
  color: #273B60 !important;
  opacity: 1;
  font-size: 20px;
  padding-top: 40px;
  font-weight: 400;
}

#footer .footer-top .footer-menu h4 {
  font-size: 25px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  text-align: left;
  letter-spacing: 0px;
  color: #273B60 !important;
  opacity: 1;
}

#footer .footer-top .footer-menu a {
  text-align: left;
  letter-spacing: 0px;
  color: #273B60 !important;
  opacity: 1;
  font-size: 20px;
  font-weight: 400;
}

#footer .footer-top .footer-menu p {
  text-align: left;
  letter-spacing: 0px;
  color: #273B60 !important;
  opacity: 1;
  font-size: 20px;
  font-weight: 400;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
  margin-left: 20px !important;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #4F9194;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #4F9194;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}

.social-links {
  width: 300px;
}

#footer .footer-top .footer-contact .social-links img {
  margin-right: 26px;
  width: 38px !important;
  height: 38px;
}


.footer-menu {
  display: flex;
}

.footer-row {
  display: inline-flex;
  width: 75%;
}

@media (max-width: 1300px) {
  .footer-menu {
    display: block;

  }  
  .footer-row {
    display: inline-block;
    margin: auto !important;
    width: 50% !important;
  }
}

.img-fluid {
  max-width: 300px;
}

.copyright {
  width: 100%;
  height: 24px;
  text-align: left;
  letter-spacing: 0px;
  color: #77838F;
  opacity: 1;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 80px;
}

#divBannerBlackFriday {
  position: fixed;
  z-index: 999;
  display: flex;
  width: 100%;
  justify-content: center;
  left: 0;
  top: 50px;
}
#divBannerBlackFriday img {
  width: 60%;
  display: none;
  cursor: pointer;
}

#divFecharBanner {
  color: black;
  cursor: pointer;
  font-weight: bold;
}

.de-preco {
  font-size: x-large;
  text-decoration: line-through #B8475D solid;
}

.de-preco-anual {
  font-size: x-large;
  text-decoration: line-through #B8475D solid;
}

.hr-highlighted {
  background-color:white;
  margin-top: 10px;
  margin-bottom: 10px;
  height: 2px;
  margin-left: 10px;  
  margin-right: 16px; 
}