/* VARS*/
/* GENERAL */
* {
  margin: 0;
  padding: 0; }

html {
  scroll-behavior: smooth; }

body {
  background: #FFFAFA;
  border-radius: 15px;
  color: #665555;
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden; }

a,
a:visited,
a:active,
a:hover {
  color: inherit;
  text-decoration: none; }

h1,
h2,
h3,
h4,
h5 {
  font-family: "Fira Sans", sans-serif;
  font-weight: 600; }
  h1.italic,
  h2.italic,
  h3.italic,
  h4.italic,
  h5.italic {
    font-style: italic; }
  h1.red,
  h2.red,
  h3.red,
  h4.red,
  h5.red {
    color: #ED1A3C; }
  h1.line-red,
  h2.line-red,
  h3.line-red,
  h4.line-red,
  h5.line-red {
    position: relative; }
    h1.line-red:after,
    h2.line-red:after,
    h3.line-red:after,
    h4.line-red:after,
    h5.line-red:after {
      content: '';
      position: absolute;
      width: 30px;
      height: 3px;
      background: #ED1A3C;
      border-radius: 2px;
      left: 0;
      bottom: -15px; }
  h1.line-red-center,
  h2.line-red-center,
  h3.line-red-center,
  h4.line-red-center,
  h5.line-red-center {
    position: relative; }
    h1.line-red-center:after,
    h2.line-red-center:after,
    h3.line-red-center:after,
    h4.line-red-center:after,
    h5.line-red-center:after {
      content: '';
      position: absolute;
      width: 30px;
      height: 3px;
      background: #ED1A3C;
      border-radius: 2px;
      left: 50%;
      transform: translateX(-50%);
      bottom: -15px; }
  h1.line-gray,
  h2.line-gray,
  h3.line-gray,
  h4.line-gray,
  h5.line-gray {
    position: relative; }
    h1.line-gray:after,
    h2.line-gray:after,
    h3.line-gray:after,
    h4.line-gray:after,
    h5.line-gray:after {
      content: '';
      position: absolute;
      width: 30px;
      height: 3px;
      background: #665555;
      border-radius: 2px;
      left: 0;
      bottom: -15px; }

.fz-42 {
  font-size: 42px;
  margin-bottom: 45px; }

.fz-36 {
  font-size: 36px;
  margin-bottom: 30px; }

.fz-32 {
  font-size: 32px;
  margin-bottom: 30px; }

.fz-28 {
  font-size: 28px;
  margin-bottom: 30px; }

.fz-24 {
  font-size: 24px;
  margin-bottom: 20px; }

.fz-18 {
  font-size: 18px;
  margin-bottom: 15px; }

@media (max-width: 768px) {
  .fz-42 {
    font-size: 36px;
    margin-bottom: 45px; }

  .fz-36 {
    font-size: 28px;
    margin-bottom: 30px; }

  .fz-32 {
    font-size: 28px;
    margin-bottom: 30px; }

  .fz-28 {
    font-size: 24px;
    margin-bottom: 30px; }

  .fz-24 {
    font-size: 20px;
    margin-bottom: 20px; }

  .fz-18 {
    font-size: 16px;
    margin-bottom: 15px; } }
p {
  font-size: 18px;
  line-height: 200%; }

.pre-title {
  font-family: "Open Sans", sans-serif;
  color: #998888;
  font-size: 14px;
  letter-spacing: 10%;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase; }

.mt-30 {
  margin-top: 30px; }

.mt-60 {
  margin-top: 60px; }

.mt-90 {
  margin-top: 90px; }

.mt-180 {
  margin-top: 180px; }

.mt-240 {
  margin-top: 240px; }

a.btn {
  color: #ED1A3C;
  border: 2px #ED1A3C solid;
  padding: 5px 30px;
  border-radius: 25px;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-size: 16px;
  transition: cubic-bezier(0, 0.2, 0.22, 0.96) 0.3s;
  transition-property: background, color;
}

header {
  width: 100%;
  position: fixed;
  padding: 25px 0 10px 0;
  z-index: 10;
  background: #BD202E; }
  header:before {
    content: '';
    position: absolute;
    width: 100%;
    height: calc(100% - 5px);
    border-radius: 15px 15px 0 0;
    background: url(images/hero-bg.jpg) no-repeat center top;
    background-size: cover;
    top: 5px;
    left: 0; }
  @media (max-width: 768px) {
    header:before {
      background: #fff; } }
  header:after {
    content: '';
    position: absolute;
    width: 100%;
    height: calc(100% - 5px);
    border-radius: 15px 15px 0 0;
    background: #fff;
    background-size: cover;
    top: 5px;
    left: 0;
    opacity: 0;
    transition: opacity cubic-bezier(0, 0.2, 0.22, 0.96) 0.3s; }
  header.fixed:after {
    opacity: 1; }
  header .container {
    position: relative;
    z-index: 1; }
  header .logo {
    z-index: 10; }
    header .logo img {
      height: 70px;
      width: auto; }
      @media (max-width: 768px) {
        header .logo img {
          height: 45px; } }
  header .mobile-menu-icon {
    width: 50px;
    height: 50px;
    position: absolute;
    top: -5px;
    right: 15px;
    z-index: 5;
    display: none; }
    @media (max-width: 1200px) {
      header .mobile-menu-icon {
        display: block; } }
    header .mobile-menu-icon .line-1 {
      width: 30px;
      height: 2px;
      background: #665555;
      position: absolute;
      top: 15px;
      left: 10px;
      transition: transform cubic-bezier(0, 0.2, 0.22, 0.96) 0.3s, top cubic-bezier(0, 0.2, 0.22, 0.96) 0.3s; }
    header .mobile-menu-icon .line-2 {
      width: 30px;
      height: 2px;
      background: #665555;
      position: absolute;
      top: 25px;
      left: 10px;
      transition: width cubic-bezier(0, 0.2, 0.22, 0.96) 0.3s, left cubic-bezier(0, 0.2, 0.22, 0.96) 0.3s; }
    header .mobile-menu-icon .line-3 {
      width: 30px;
      height: 2px;
      background: #665555;
      position: absolute;
      top: 35px;
      left: 10px;
      transition: transform cubic-bezier(0, 0.2, 0.22, 0.96) 0.3s, top cubic-bezier(0, 0.2, 0.22, 0.96) 0.3s; }
    header .mobile-menu-icon.open .line-1 {
      transform: rotate(45deg);
      top: 25px; }
    header .mobile-menu-icon.open .line-2 {
      width: 1px;
      left: 25px; }
    header .mobile-menu-icon.open .line-3 {
      transform: rotate(-45deg);
      top: 25px; }
  header nav {
    text-align: right; }
    header nav ul li {
      display: inline-block;
      padding: 15px 0; }
      header nav ul li a {
        position: relative;
        padding: 15px 8px;
        font-family: "Fira Sans", sans-serif;
        font-size: 14px;
        font-weight: 500;
        transition: 0.3s cubic-bezier(0, 0.2, 0.22, 0.96);
        transition-property: color; }
        header nav ul li a:hover {
          color: #ED1A3C; }
        header nav ul li a.active {
          color: #ED1A3C; }
          header nav ul li a.active:after {
            content: '';
            position: absolute;
            width: 30px;
            height: 3px;
            border-radius: 2px;
            background: #ED1A3C;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%); }
        header nav ul li a.btn {
          background: #ED1A3C;
          color: #fff;
          padding: 10px 15px;
          font-weight: bold;
          border-radius: 50px; }
    @media (max-width: 1200px) {
      header nav {
        position: fixed !important;
        width: 100% !important;
        max-width: none !important;
        height: 100vh;
        top: 0;
        right: -100%;
        background: #fff;
        transition: right cubic-bezier(0, 0.2, 0.22, 0.96) 0.3s; }
        header nav.open {
          right: 0; }
        header nav ul {
          max-width: 540px;
          margin-top: 135px;
          margin-left: 15px;
          text-align: left; }
          header nav ul li {
            display: list-item;
            list-style: none; }
            header nav ul li a.active:after {
              left: 7px;
              transform: translateX(0); } }

.home-hero {
  width: 100%;
  height: calc(100vh + 60px);
  background: url(images/hero-bg.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
  overflow: hidden; }
  .home-hero:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 60px;
    background: url(images/hero-shape.png) no-repeat center top;
    background-size: cover;
    left: 0;
    bottom: 0; }
  @media (max-width: 768px) {
    .home-hero {
      height: calc(100vh + 30px);
      background: url(images/home-bg-mobile.jpg) no-repeat center center;
      background-size: cover; } }
  .home-hero .container {
    height: 100%; }
    .home-hero .container .content {
      padding-top: 50%;
      transform: translateY(-37.5%); }
      @media (max-width: 768px) {
        .home-hero .container .content {
          height: calc(100vh - 60px);
          display: flex;
          align-items: flex-end;
          padding-bottom: 30px; }
          .home-hero .container .content h1 {
            color: #fff;
            text-shadow: 0px 10px 20px rgba(237, 26, 60, 0.5); }
            .home-hero .container .content h1:after {
              background: #fff; } }
      .home-hero .container .content p {
        font-size: .9em; }
      @media (max-width: 992px) {
        .home-hero .container .content {
          padding-top: 200px;
          transform: translateY(0); } }
      @media (max-width: 768px) {
        .home-hero .container .content {
          padding-top: 120px;
          transform: translateY(0); } }
    .home-hero .container .image {
      height: calc(100vh + 60px); }
      .home-hero .container .image img {
        max-height: 80vh;
        width: auto;
        position: absolute;
        bottom: 0; }
    .home-hero .container .know-more {
      font-size: 16px;
      font-weight: 600;
      text-decoration: underline;
      color: #665555; }
    .home-hero .container button.red {
      display: block;
      font-size: 18px;
      color: #fff;
      font-weight: 600;
      background: #ED1A3C;
      padding: 10px 30px;
      width: 450px;
      max-width: 100%;
      border-radius: 30px;
      border: none;
      margin-top: 45px;
      box-shadow: 0px 15px 30px rgba(237, 26, 60, 0.15); }
      .home-hero .container button.red img {
        height: 10px;
        width: auto; }
    .home-hero .container button.white {
      display: block;
      font-size: 18px;
      color: #ED1A3C;
      background: #fff;
      font-weight: 600;
      padding: 10px 30px;
      width: 450px;
      max-width: 100%;
      border-radius: 30px;
      border: none;
      margin-top: 15px;
      box-shadow: 0px 15px 30px rgba(237, 26, 60, 0.15); }
      .home-hero .container button.white img {
        height: 10px;
        width: auto; }

.sponsors {
  margin-top: 90px; }
  .sponsors h2 {
    margin-bottom: 60px; }
  .sponsors .logo-list .logo-item {
    height: 215px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 5px 10px rgba(221, 204, 204, 0.5);
    margin: 0 15px 15px 15px;
    text-align: center; }
    .sponsors .logo-list .logo-item .brand {
      width: 100%;
      height: 165px;
      position: relative; }
      .sponsors .logo-list .logo-item .brand img {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        margin: auto; }
    .sponsors .logo-list .logo-item .role {
      width: calc(100% - 30px);
      margin-left: 15px;
      border-top: 1px solid #DDCCCC;
      padding: 10px 0;
      font-family: "Open Sans", sans-serif;
      font-weight: bold;
      color: #998888;
      font-size: 14px; }
    @media (max-width: 992px) {
      .sponsors .logo-list .logo-item {
        height: 230px; } }
  .sponsors .slick-dots {
    text-align: center;
    margin-top: 30px; }
    .sponsors .slick-dots li {
      display: inline-block;
      padding: 5px; }
      .sponsors .slick-dots li button {
        width: 15px;
        height: 15px;
        border: 3px solid #FFFAFA;
        border-radius: 10px;
        color: transparent;
        background: #DDCCCC;
        transition: cubic-bezier(0, 0.2, 0.22, 0.96) 0.3s;
        transition-property: border-color, background; }
      .sponsors .slick-dots li.slick-active button {
        background: #fff;
        border: #ED1A3C 3px solid;
        transition-property: border-color, background; }

.about {
  padding-top: 180px; }
  .about .container-fluid {
    position: relative; }
    .about .container-fluid img.left {
      position: absolute;
      left: 0;
      top: -90px; }
      @media (max-width: 992px) {
        .about .container-fluid img.left {
          width: 45vw;
          height: auto; } }
      @media (max-width: 768px) {
        .about .container-fluid img.left {
          width: auto;
          max-width: 100%;
          height: auto;
          position: relative;
          margin-left: -15px; } }
    .about .container-fluid img.right {
      position: absolute;
      right: 0;
      top: -90px; }
      @media (max-width: 992px) {
        .about .container-fluid img.right {
          width: 45vw;
          height: auto; } }
    @media (max-width: 768px) {
      .about .container-fluid.mt-240 {
        margin-top: 90px; } }

.specialities {
  width: 100%;
  padding-top: 90px; }
  .specialities .container {
    background: #fff;
    border-radius: 15px;
    padding: 45px 15px; }
    .specialities .container .intro {
      text-align: center;
      width: calc(100% - 150px);
      margin-left: 75px; }
      @media (max-width: 576px) {
        .specialities .container .intro {
          width: 100%;
          margin-left: 0; } }
    .specialities .container .tab-list {
      width: 100%;
      padding: 30px 75px 0 75px;
      display: flex;
      flex-direction: row;
      border-bottom: 2px solid #DDCCCC; }
      @media (max-width: 992px) {
        .specialities .container .tab-list {
          padding: 30px 30px 0px 30px; } }
      @media (max-width: 576px) {
        .specialities .container .tab-list {
          padding: 30px 0 0 0; } }
      .specialities .container .tab-list .tab-item {
        width: 50%;
        padding: 30px 0;
        font-size: 24px;
        font-family: "Fira Sans", sans-serif;
        color: #BBAAAA;
        text-align: center;
        transform: translateY(2px);
        cursor: pointer; }
        .specialities .container .tab-list .tab-item.active {
          color: #ED1A3C;
          border-bottom: 2px solid #ED1A3C; }
        @media (max-width: 576px) {
          .specialities .container .tab-list .tab-item {
            font-size: 18px; } }
    .specialities .container .tabs-content {
      width: 90%;
      width: calc(100% - 90px);
      margin-left: 45px;
      position: relative; }
      @media (max-width: 992px) {
        .specialities .container .tabs-content {
          width: calc(100% - 30px);
          margin-left: 15px; } }
      .specialities .container .tabs-content .list {
        padding: 15px 0;
        display: none; }
        .specialities .container .tabs-content .list.active {
          display: block; }
        .specialities .container .tabs-content .list .item {
          display: block;
          width: 100%;
          width: calc(100% + 15px);
          padding: 30px;
          margin-top: 15px;
          margin-left: -7.5px;
          border: 2px solid #DDCCCC;
          border-radius: 15px;
          font-size: 18px;
          color: #665555;
          position: relative;
          box-shadow: 0 0 0 transparent;
          transition: cubic-bezier(0, 0.2, 0.22, 0.96) 0.3s;
          transition-property: border-color, box-shadow; }
          .specialities .container .tabs-content .list .item:hover {
            border-color: #FEE2CD;
            box-shadow: 0 15px 30px rgba(237, 26, 60, 0.15); }
          .specialities .container .tabs-content .list .item:after {
            content: '';
            position: absolute;
            width: 7px;
            height: 12px;
            background: url(images/icons/chevron-right.png) no-repeat;
            right: 30px;
            top: 0;
            bottom: 0;
            margin: auto;
            transition: cubic-bezier(0, 0.2, 0.22, 0.96) 0.3s;
            transition-property: right; }
          .specialities .container .tabs-content .list .item:hover:after {
            right: 20px; }
          @media (max-width: 576px) {
            .specialities .container .tabs-content .list .item {
              padding: 15px 35px 15px 15px; } }

.tips {
  width: 100%;
  margin-top: 90px;
  padding: 90px 0;
  background: #fff; }
  .tips .card {
    background: #fff;
    border: none;
    border-bottom: 2px solid #DDCCCC;
    border-radius: 0; }
    .tips .card .card-header {
      background: #fff;
      padding: 0;
      border-radius: 0;
      border-bottom: none; }
      .tips .card .card-header button {
        width: 100%;
        text-align: left;
        padding: 20px 45px 20px 0;
        font-size: 20px;
        color: #665555;
        font-family: "Fira Sans", sans-serif;
        background: #fff;
        border: none;
        position: relative; }
        .tips .card .card-header button:after {
          content: '';
          position: absolute;
          width: 12px;
          height: 7px;
          background: url(images/icons/chevron-down.png) no-repeat;
          top: 0;
          bottom: 0;
          right: 0;
          margin: auto; }
        .tips .card .card-header button[aria-expanded="true"]:after {
          background: url(images/icons/chevron-up.png) no-repeat; }
    .tips .card .card-body {
      padding: 0 0 30px 0;
      font-size: 16px;
      color: #998888; }

.step-by-step {
  width: 100%;
  margin-top: 75px; }
  .step-by-step .container {
    border-top: 1px solid #DDCCCC;
    padding-top: 75px;
    padding-bottom: 75px; }
    .step-by-step .container .title {
      display: flex;
      align-content: center;
      align-items: center; }
    .step-by-step .container .video {
      height: 0;
      position: relative;
      padding-bottom: 56.25%;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.15); }
      .step-by-step .container .video iframe {
        width: 100%;
        height: 100%;
        position: absolute; }

.doctor-form {
  margin-top: 90px; }
  .doctor-form .form-container {
    padding: 45px 110px;
    border-radius: 15px;
    background: #fff; }
    @media (max-width: 992px) {
      .doctor-form .form-container {
        padding: 45px; } }
    @media (max-width: 768px) {
      .doctor-form .form-container {
        padding: 30px 15px; } }
    .doctor-form .form-container .container-fluid {
      width: calc(100% + 30px);
      margin-top: 60px;
      margin-left: -15px; }

.input-group {
  margin: 15px 0; }
  .input-group label {
    display: block;
    font-size: 14px;
    color: #998888;
    font-weight: bold;
    margin-bottom: 10px; }
    .input-group label small {
      font-size: 14px;
      color: #DDCCCC; }
  .input-group input {
    width: 100%;
    padding: 10px 15px;
    border-radius: 10px;
    border: 2px solid #DDCCCC;
    font-size: 16px;
    transition: border-color cubic-bezier(0, 0.2, 0.22, 0.96) 0.3s; }
    .input-group input:focus {
      border-color: #998888; }
  .input-group select {
    width: 100%;
    padding: 10px 15px;
    border-radius: 10px;
    border: 2px solid #DDCCCC;
    font-size: 16px;
    transition: border-color cubic-bezier(0, 0.2, 0.22, 0.96) 0.3s; }
    .input-group select:focus {
      border-color: #998888; }

.select2-container--default .select2-selection--single {
  width: 100%;
  height: auto;
  padding: 10px 15px;
  border-radius: 10px;
  border: 2px solid #DDCCCC;
  font-size: 16px; }

.select2-container--default .select2-selection--multiple {
  width: 100%;
  height: auto;
  padding: 5px 5px;
  border-radius: 10px;
  border: 2px solid #DDCCCC;
  font-size: 16px; }

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  top: 82.5%;
  margin-top: 0;
  margin-left: 0;
  margin-right: 15px;
  left: 0; }

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  border: 0;
  background: #F3EDED;
  border-radius: 50px;
  padding-left: 10px;
  padding-right: 10px; }

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: 2px solid #998888; }

.appointments-component {
  width: 100%;
  height: auto;
  padding: 15px 30px;
  border-radius: 15px;
  border: 2px solid #DDCCCC; }
  .appointments-component .header .date,
  .appointments-component .header .hour {
    width: 49%;
    display: inline-block; }
    @media (max-width: 768px) {
      .appointments-component .header .date,
      .appointments-component .header .hour {
        display: none; } }
  .appointments-component .line {
    width: 100%;
    position: relative; }
    @media (max-width: 768px) {
      .appointments-component .line {
        padding: 15px 0 30px 0;
        border-bottom: 1px solid #DDCCCC; } }
    .appointments-component .line .dates {
      width: calc(50% - 30px) !important;
      display: inline-block;
      position: relative;
      margin: 0; }
      @media (max-width: 768px) {
        .appointments-component .line .dates {
          width: 100% !important; } }
      .appointments-component .line .dates .icon {
        display: inline-block;
        width: 50px;
        height: 48px;
        position: relative;
        background: #fff;
        border-top-left-radius: 10px !important;
        border-top-right-radius: 0px !important;
        border-bottom-left-radius: 10px !important;
        border-bottom-right-radius: 0px !important;
        border: 2px solid #DDCCCC !important;
        transform: translateY(18px); }
        .appointments-component .line .dates .icon:after {
          content: '';
          position: absolute;
          width: 20px;
          height: 20px;
          background: url(images/icons/datepicker.png) no-repeat center center;
          background-size: contain;
          top: 0;
          left: 0;
          bottom: 0;
          right: 0;
          margin: auto; }
      .appointments-component .line .dates input {
        width: calc(100% - 55px);
        display: inline-block;
        border-top-left-radius: 0px !important;
        border-top-right-radius: 10px !important;
        border-bottom-left-radius: 0px !important;
        border-bottom-right-radius: 10px !important;
        border: 2px solid #DDCCCC !important;
        margin: 0;
        margin-left: -7px;
        padding: 10px 15px;
        transition: border-color cubic-bezier(0, 0.2, 0.22, 0.96) 0.3s;
        position: relative;
        z-index: 1; }
        .appointments-component .line .dates input:focus {
          border-color: #998888 !important; }
    .appointments-component .line .timepicker {
      width: calc(50% - 30px) !important;
      display: inline-block;
      position: relative;
      margin: 0;
      margin-left: 23px; }
      @media (max-width: 768px) {
        .appointments-component .line .timepicker {
          width: 100% !important;
          margin-left: 0; } }
      .appointments-component .line .timepicker .icon {
        display: inline-block;
        width: 50px;
        height: 48px;
        position: relative;
        background: #fff;
        border-top-left-radius: 10px !important;
        border-top-right-radius: 0px !important;
        border-bottom-left-radius: 10px !important;
        border-bottom-right-radius: 0px !important;
        border: 2px solid #DDCCCC !important;
        transform: translateY(18px); }
        .appointments-component .line .timepicker .icon:after {
          content: '';
          position: absolute;
          width: 20px;
          height: 20px;
          background: url(images/icons/timepicker.png) no-repeat center center;
          background-size: contain;
          top: 0;
          left: 0;
          bottom: 0;
          right: 0;
          margin: auto; }
      .appointments-component .line .timepicker input {
        width: calc(100% - 55px);
        display: inline-block;
        border-top-left-radius: 0px !important;
        border-top-right-radius: 10px !important;
        border-bottom-left-radius: 0px !important;
        border-bottom-right-radius: 10px !important;
        border: 2px solid #DDCCCC !important;
        margin: 0;
        margin-left: -6px;
        position: relative;
        z-index: 1;
        transition: border-color cubic-bezier(0, 0.2, 0.22, 0.96) 0.3s; }
        .appointments-component .line .timepicker input:focus {
          border-color: #998888 !important; }
    .appointments-component .line .btn-exclude {
      display: inline-block;
      width: 30px;
      height: 50px;
      transform: translate(15px, 45px);
      cursor: pointer;
      position: relative; }
      @media (max-width: 768px) {
        .appointments-component .line .btn-exclude {
          position: absolute;
          top: 45px;
          right: -18px; } }
      .appointments-component .line .btn-exclude:before {
        content: '';
        position: absolute;
        width: 15px;
        height: 2px;
        background: #998888;
        transform: rotate(-45deg); }
      .appointments-component .line .btn-exclude:after {
        content: '';
        position: absolute;
        width: 15px;
        height: 2px;
        background: #998888;
        transform: rotate(45deg); }
  .appointments-component .extra-lines {
    width: 100%;
    height: auto; }
    .appointments-component .extra-lines input {
      margin-left: -2px !important; }
    .appointments-component .extra-lines .timepicker {
      margin-left: 28px; }
      @media (max-width: 768px) {
        .appointments-component .extra-lines .timepicker {
          margin-left: 0; } }
  .appointments-component .add-line {
    width: calc(100% - 40px);
    margin-left: 0;
    text-align: center;
    padding: 15px;
    color: #ED1A3C;
    border: 2px dashed #ED1A3C;
    border-radius: 10px;
    margin-top: 30px;
    background: #fff;
    transition: background cubic-bezier(0, 0.2, 0.22, 0.96) 0.3s; }
    .appointments-component .add-line:hover {
      background: #FEE2CD;
      cursor: pointer; }
    @media (max-width: 768px) {
      .appointments-component .add-line {
        width: 100%; } }

.ui-datepicker {
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.15);
  border: none;
  border-radius: 15px; }
  .ui-datepicker a.ui-state-default {
    border: 0;
    background: #fff;
    color: #665555; }
  .ui-datepicker .ui-datepicker-current-day a {
    background: #ED1A3C;
    border-radius: 5px;
    color: #fff !important; }
  .ui-datepicker .ui-datepicker-today a {
    color: #BD202E; }
  .ui-datepicker .ui-widget-header {
    background: #fff;
    font-family: "Fira Sans", sans-serif;
    border: none; }

form .btn-wrapper {
  display: flex;
  flex-direction: row-reverse;
  margin-top: 60px;
  padding-bottom: 30px; }
  form .btn-wrapper button {
    padding: 15px 30px;
    border-radius: 50px;
    background: #ED1A3C;
    color: #fff;
    border: none;
    box-shadow: 0px 15px 30px rgba(237, 26, 60, 0.15);
    transition: box-shadow cubic-bezier(0, 0.2, 0.22, 0.96) 0.3s; }
    form .btn-wrapper button:hover {
      box-shadow: 0px 15px 30px rgba(237, 26, 60, 0.5); }
    @media (max-width: 768px) {
      form .btn-wrapper button {
        margin: 0 auto; } }
    form .btn-wrapper button img {
      height: 10px;
      width: auto;
      margin-left: 10px;
      transform: translateY(-2px); }

.countdown .box {
  width: 100%;
  padding: 15px 30px 30px 30px;
  background: #BD202E;
  border-radius: 15px;
  color: #fff;
  text-align: center; }
  .countdown .box .num {
    font-size: 72px;
    font-weight: bold; }
  .countdown .box .text {
    font-weight: bold;
    font-size: 18px;
    margin-top: -10px; }
  @media (max-width: 768px) {
    .countdown .box {
      width: calc(100% + 20px);
      margin-left: -10px;
      padding: 10px; }
      .countdown .box .num {
        font-size: 48px; } }
  @media (max-width: 576px) {
    .countdown .box .num {
      font-size: 24px; }
    .countdown .box .text {
      font-size: 14px;
      margin-top: 0; }
      .countdown .box .text span {
        display: none; } }

.medibook-cta {
  width: 100%;
  height: auto;
  background: url(images/medibook-bg.png) no-repeat center center;
  background-size: cover;
  text-align: center;
  padding: 90px 0;
  margin-top: 90px; }
  .medibook-cta .logo {
    display: inline-block;
    margin-bottom: 30px;
    max-width: 80%; }
  .medibook-cta p {
    color: #fff;
    font-size: 18px; }
  .medibook-cta button {
    padding: 15px 30px;
    border-radius: 50px;
    background: #fff;
    color: #ED1A3C;
    border: none;
    box-shadow: 0px 15px 30px rgba(237, 26, 60, 0.15);
    transition: box-shadow cubic-bezier(0, 0.2, 0.22, 0.96) 0.3s; }
    .medibook-cta button:hover {
      box-shadow: 0px 15px 30px rgba(237, 26, 60, 0.5); }
    @media (max-width: 768px) {
      .medibook-cta button {
        margin: 0 auto; } }
    .medibook-cta button img {
      height: 10px;
      width: auto;
      margin-left: 10px;
      display: inline-block;
      transform: translateY(-2px); }

.how-it-works {
  margin-top: 150px; }
  .how-it-works h2 {
    margin-bottom: 115px; }
  .how-it-works .topic {
    text-align: center;
    margin-bottom: 30px; }
    .how-it-works .topic .icon {
      margin-bottom: 45px; }
    .how-it-works .topic h3 {
      font-weight: normal; }
    .how-it-works .topic p {
      font-size: 16px; }
  .how-it-works ol {
    list-style: none;
    counter-reset: how-it-works; }
    .how-it-works ol li {
      counter-increment: how-it-works;
      font-size: 18px;
      position: relative;
      padding-bottom: 15px;
      margin-bottom: 45px;
      border-bottom: 1px solid #DDCCCC; }
      .how-it-works ol li:before {
        content: "0" counter(how-it-works);
        font-weight: bold;
        font-size: 42px;
        font-family: "Fira Sans", sans-serif;
        color: #ED1A3C;
        position: absolute;
        top: 0;
        transform: translateX(calc(-100% - 15px));
        line-height: 100%; }
      .how-it-works ol li a {
        text-decoration: underline; }

.schedule {
  margin: 90px 0; }
  .schedule .dates {
    margin-top: 45px; }
    .schedule .dates .col-12 {
      margin-bottom: 30px; }
    .schedule .dates .date {
      width: 100%;
      height: 100%;
      background: #fff;
      border-radius: 10px;
      text-align: center;
      padding: 30px 15px;
      box-shadow: 0px 15px 30px rgba(237, 26, 60, 0.15);
      margin-bottom: 30px; }
      .schedule .dates .date .day {
        font-size: 42px;
        color: #BD202E;
        font-family: "Fira Sans", sans-serif;
        font-weight: bold;
        margin-bottom: 5px; }
      .schedule .dates .date .text {
        color: #998888; }
  .schedule .disclaimer {
    font-size: 18px;
    text-align: center;
    margin-top: 60px;
    color: #998888; }

/* SPECIALITITES */
.specialities-hero {
  width: 100%;
  height: 500px;
  background: url(images/hero-bg.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
  overflow: hidden; }
  .specialities-hero:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 60px;
    background: url(images/hero-shape.png) no-repeat center top;
    background-size: cover;
    left: 0;
    bottom: 0; }
  .specialities-hero .container {
    height: 100%; }
    .specialities-hero .container .content {
      height: 500px;
      display: flex;
      align-content: center;
      align-items: center; }
      .specialities-hero .container .content .sponsored-by {
        display: flex;
        flex-direction: row; }
        .specialities-hero .container .content .sponsored-by .logo {
          width: 75px;
          height: 75px;
          border-radius: 15px;
          background: #fff;
          overflow: hidden;
          position: relative;
          margin-right: 30px; }
          .specialities-hero .container .content .sponsored-by .logo img {
            position: absolute;
            width: 90%;
            height: auto;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto; }
        .specialities-hero .container .content .sponsored-by .text {
          color: #665555; }
          .specialities-hero .container .content .sponsored-by .text h2 {
            margin-top: 15px; }
    .specialities-hero .container .image {
      height: 400px;
      margin-top: 100px; }
      .specialities-hero .container .image img {
        max-height: 90%;
        width: auto;
        position: absolute;
        bottom: 0; }

.specialist-tips {
  width: 100%;
  margin-top: 90px; }
  .specialist-tips .content {
    margin-top: 45px; }
    .specialist-tips .content p {
      font-family: "Open Sans", sans-serif;
      font-size: 18px;
      color: #665555; }
    .specialist-tips .content .video {
      width: 100%;
      width: calc(100% + 30px);
      margin-left: -15px;
      margin-top: 45px;
      padding-bottom: 60px;
      height: 0;
      position: relative;
      padding-bottom: 56.25%;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.15); }
      .specialist-tips .content .video iframe {
        width: 100%;
        height: 100%;
        position: absolute; }

.doctors {
  width: 100%;
  position: relative;
  background: #FEE2CD;
  margin-top: 120px;
  padding-bottom: 90px;
  z-index: 6; }
  .doctors:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 350px;
    background: url(images/top-graphism.png) no-repeat center top;
    background-size: cover;
    top: 0;
    left: 0;
    z-index: 1; }
  .doctors:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 15px;
    background: #FEE2CD;
    border-radius: 0 0 15px 15px;
    bottom: -15px;
    left: 0;
    z-index: 5; }
  .doctors .container {
    background: #fff;
    border-radius: 15px;
    padding-top: 45px;
    padding-bottom: 30px;
    position: relative;
    z-index: 2; }
    .doctors .container h3 {
      font-weight: normal; }
      .doctors .container h3 strong {
        font-weight: bold;
        position: relative; }
        .doctors .container h3 strong:after {
          content: '';
          position: absolute;
          width: 100%;
          height: 2px;
          background: #ED1A3C;
          bottom: -3px;
          left: 0; }
      @media (max-width: 768px) {
        .doctors .container h3 {
          text-align: center;
          line-height: 180%; } }
    .doctors .container .cta .btn {
      color: #ED1A3C;
      border: 2px #ED1A3C solid;
      padding: 5px 30px;
      border-radius: 25px;
      font-family: "Open Sans", sans-serif;
      font-weight: bold;
      font-size: 16px;
      transition: cubic-bezier(0, 0.2, 0.22, 0.96) 0.3s;
      transition-property: background, color; }
      .doctors .container .cta .btn:hover {
        background: #ED1A3C;
        color: #fff;
        box-shadow: 0 15px 30px rgba(237, 26, 60, 0.15); }
    @media (max-width: 768px) {
      .doctors .container .cta {
        width: 100%;
        margin-top: 15px; }
        .doctors .container .cta .btn {
          width: 100%;
          display: inline-block;
          text-align: center;
          padding: 15px 30px;
          border-radius: 20px;
          background: #ED1A3C;
          color: #fff; } }
    @media (max-width: 768px) {
      .doctors .container .title {
        text-align: center; } }
    .doctors .container .doctors-list {
      width: 100%;
      margin-top: 30px; }
      .doctors .container .doctors-list .doctor {
        width: 100%;
        height: auto;
        padding: 10px 15px;
        margin-top: 15px;
        position: relative;
        background: #fff;
        font-family: "Open Sans", sans-serif;
        border-radius: 15px;
        border: 2px solid #FFFAFA;
        display: flex;
        flex-direction: row;
        box-shadow: 0 15px 30px rgba(187, 170, 170, 0.15);
        transition: cubic-bezier(0, 0.2, 0.22, 0.96) 0.3s;
        transition-property: border-color, box-shadow; }
        .doctors .container .doctors-list .doctor:hover {
          border-color: #FEE2CD;
          box-shadow: 0 15px 30px rgba(237, 26, 60, 0.15); }
        @media (max-width: 768px) {
          .doctors .container .doctors-list .doctor {
            flex-direction: column; } }
        .doctors .container .doctors-list .doctor:after {
          content: '';
          position: absolute;
          width: 7px;
          height: 12px;
          background: url(images/icons/chevron-right.png) no-repeat;
          top: 0;
          bottom: 0;
          right: 15px;
          margin: auto; }
        .doctors .container .doctors-list .doctor .photo {
          width: 75px;
          height: 75px;
          border-radius: 15px;
          border: 2px solid #eedddd;
          margin-right: 30px;
          overflow: hidden; }
          .doctors .container .doctors-list .doctor .photo img {
            width: 100%;
            height: 100%;
            object-fit: cover; }
          @media (max-width: 768px) {
            .doctors .container .doctors-list .doctor .photo {
              margin-bottom: 15px; } }
        .doctors .container .doctors-list .doctor .info {
          width: calc(100% - 100px); }
          @media (max-width: 768px) {
            .doctors .container .doctors-list .doctor .info {
              width: 100%; } }
          .doctors .container .doctors-list .doctor .info .name {
            font-size: 20px;
            color: #665555;
            font-family: "Fira Sans", sans-serif;
            display: inline; }
          .doctors .container .doctors-list .doctor .info .crm {
            font-size: 16px;
            color: #BBAAAA;
            display: inline;
            margin-left: 5px; }
          .doctors .container .doctors-list .doctor .info .speciality {
            font-size: 14px;
            color: #998888;
            margin-left: 10px;
            display: inline; }
          .doctors .container .doctors-list .doctor .info .address {
            font-size: 14px;
            color: #665555;
            margin-top: 5px; }
          .doctors .container .doctors-list .doctor .info .keywords {
            font-size: 14px;
            color: #ED1A3C;
            margin-top: 5px; }

footer {
  width: 100%;
  height: auto;
  padding-top: 90px;
  background: #BD202E;
  position: relative;
  color: #fff; }
  footer:before {
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    background: url(images/footer-heart.png) no-repeat center right;
    top: 0;
    left: 0;
    background-size: cover; }
    @media (max-width: 992px) {
      footer:before {
        display: none; } }
  footer:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 15px;
    background: #FFFAFA;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    top: 0;
    left: 0;
    z-index: 5; }
  footer .brand {
    text-align: center; }
    footer .brand .medicos-do-bem {
      height: 90px;
      width: auto;
      margin-bottom: 30px; }
    footer .brand .project-by {
      width: 100%;
      position: relative; }
      footer .brand .project-by:before {
        content: '';
        position: absolute;
        width: 100%;
        height: 1px;
        background: #fff;
        opacity: .25;
        top: 12px;
        left: 0; }
      footer .brand .project-by span {
        display: inline-block;
        padding: 0 10px;
        background: #ED1A3C;
        position: relative;
        z-index: 2; }
        @media (max-width: 992px) {
          footer .brand .project-by span {
            background: #BD202E; } }
    footer .brand .medibook {
      height: 30px;
      width: auto;
      margin-top: 30px;
      margin-bottom: 60px; }
  footer .contact,
  footer .address {
    position: relative;
    z-index: 2; }
    footer .contact h4,
    footer .address h4 {
      font-size: 18px;
      font-weight: 500;
      font-style: italic;
      margin-bottom: 45px;
      position: relative; }
      footer .contact h4:after,
      footer .address h4:after {
        content: '';
        position: absolute;
        width: 30px;
        height: 3px;
        border-radius: 2px;
        background: #fff;
        left: 0;
        bottom: -15px; }
    footer .contact a,
    footer .contact p,
    footer .address a,
    footer .address p {
      font-size: 16px;
      font-family: "Open Sans", sans-serif;
      margin-bottom: 20px;
      display: block; }
  footer .contact .social-media {
    margin-top: 30px; }
    footer .contact .social-media li {
      display: inline-block;
      margin-right: 15px; }
      footer .contact .social-media li a {
        display: block;
        width: 40px;
        height: 40px;
        border-radius: 20px;
        background: #ED1A3C;
        position: relative; }
        footer .contact .social-media li a img {
          position: absolute;
          top: 0;
          left: 0;
          bottom: 0;
          right: 0;
          margin: auto; }
  footer .last-line {
    margin-top: 60px;
    border-top: #901823 1px solid;
    padding: 20px 0 30px 0;
    font-size: 14px;
    position: relative;
    z-index: 2; }
    @media (max-width: 768px) {
      footer .last-line {
        text-align: center; } }
    footer .last-line .right {
      text-align: right; }
      @media (max-width: 768px) {
        footer .last-line .right {
          text-align: center; } }
  footer .blur {
    width: 304px;
    height: 327px;
    background: url(images/footer-blur.png) no-repeat bottom right;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 0; }

#tip-1 .video {
  width: 100%;
  width: calc(100% + 0px);
  margin-left: 0px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.15); 
}
#tip-1-video {
  width: 100%;
  height: 100%;
  position: absolute; 
}

#tip-2 .video {
  width: 100%;
  width: calc(100% + 0px);
  margin-left: 0px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.15); 
}
#tip-2-video {
  width: 100%;
  height: 100%;
  position: absolute; 
}

/*# sourceMappingURL=style.css.map */
