/*
@File: Cavort Template Styles

* This file contains the styling for the actual template, this
is the file you need to edit to change the look of the
template.

This files table contents are outlined below>>>>>

******************************************* 
** - DEFAULT AREA STYLE - **

** - Default Btn Area Style
** - Read More Area Style

** - HOME PAGE STYLE - **

** - Header Area Style
** - Nav Area
** - Banner Area Style
** - First Facility Area Style
** - Second Facility Area Style
** - About Area Style
** - Services Area Style
** - Doctors Area Style
** - Work Area Style
** - Counter Area Style
** - Appointment Area Style
** - Emergency Area Style
** - Client Area Style
** - Business Contact Area Style
** - Blog Area Style
** - Blog Area Style
** - Subscribe Area Style
** - Footer Top Area Style
** - Footer Bottom Area Style

** - INNER PAGE STYLE AREA - **

** - Page Title Area Style
** - Sign In & Log In  Area Style
** - Coming Soon Area Style
** - 404 Error Area Style
** - Service Details Area Style
** - Blog Details Area Style
** - Contact Area Style
** - FAQ Area Style
** - Client Area Style

** - OTHER STYLE AREA - **

** - Preloader Area Style
** - Go Top Style
** - Video wave Style
** - Section Title Area Style
** - Nice select Area

*******************************************
/*


/*
Default Style
============================*/
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;1,300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
html {
  scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  font-family: "Poppins", sans-serif;
  color: #525252;
  overflow-x: hidden;
}

html, body {
  height: 100%;
  width: 100%;
}

a {
  display: inline-block;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  text-decoration: none;
  color: #3BC1CD;
}

a:hover {
  text-decoration: none;
  color: #001430;
}

a:focus {
  text-decoration: none;
}

button {
  outline: 0 !important;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}

button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: #001430;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

h3 {
  font-size: 20px;
}

.d-table {
  width: 25%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.d-table-cell {
  vertical-align: middle;
}

p {
  font-size: 15px;
  margin-bottom: 15px;
}

p:last-child {
  margin-bottom: 0;
}

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.form-control {
  height: 50px;
  color: #001430;
  border: 1px solid #e8e8e8;
  background-color: #f2f9fc;
  border-radius: 4px;
  font-size: 14px;
  padding: 10px 20px;
  width: 100%;
}

.form-control::-webkit-input-placeholder {
  color: #495057;
}

.form-control:-ms-input-placeholder {
  color: #495057;
}

.form-control::-ms-input-placeholder {
  color: #495057;
}

.form-control::placeholder {
  color: #495057;
}

.form-control:focus {
  color: #000000;
  background-color: transparent;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  outline: 0;
  border: 1px solid #3BC1CD;
}

.form-control:hover:focus, .form-control:focus {
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

textarea.form-control {
  height: auto;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-130 {
  padding-bottom: 130px;
}

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

.mb-30 {
  margin-bottom: 30px;
}

.ml-30 {
  margin-left: 30px;
}

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

.top-title {
  font-size: 15px;
  color: #0081A4;
  margin-bottom: 10px;
  display: inline-block;
  font-weight: 600;
}

.bg-color {
  background-color: #eefbfc;
}

.titulo {
  font-weight: 600;
  color: #0081A4;
  font-size: 44px;
  text-align: center;
}

.subtitulo {
  font-weight: 200;
  color: #3BC1CD;
  font-size: 23px;
  text-align: center;
}

/*
Default Btn Area Style*/
.default-btn {
  font-size: 16px;
  color: #ffffff;
  padding: 15px 30px;
  line-height: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  text-transform: capitalize;
  position: relative;
  cursor: pointer;
  border-radius: 20px;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  background: -webkit-gradient(linear, left top, right top, from(#ED801A), to(rgb(204, 110, 23)));
  background: linear-gradient(to right, #ED801A 0%, rgb(204, 110, 23) 100%);
}

.default-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 53%;
  background: -webkit-gradient(linear, left top, right top, from(rgb(204, 110, 23)), to(#ED801A));
  background: linear-gradient(to right, rgb(204, 110, 23) 0%, #ED801A 100%);
  z-index: -1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.default-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 100%;
  width: 100%;
  height: 50%;
  background: -webkit-gradient(linear, left top, right top, from(rgb(204, 110, 23)), to(#ED801A));
  background: linear-gradient(to right, rgb(204, 110, 23) 0%, #ED801A 100%);
  z-index: -1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.default-btn.active {
  margin-left: 30px;
  margin-right: 10px;
  color: #ffffff;
  background: -webkit-gradient(linear, left top, right top, from(rgb(204, 110, 23)), to(#ED801A));
  background: linear-gradient(to right, rgb(204, 110, 23) 0%, #ED801A 100%);
}

.default-btn:hover {
  color: #ffffff;
  text-decoration: none;
}

.default-btn:hover::before {
  left: 0;
}

.default-btn:hover::after {
  right: 0;
}

.circle-btn {
  margin-bottom: 2.5px;
  width: 35px;
  height: 35px;
  font-size: 25px;
  color: #ffffff;
  padding: 5px 5px;
  line-height: 1;
  transition: all 0.6s;
  position: relative;
  cursor: pointer;
  border-radius: 50%;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  background-color: #0081A4;
}

.circle-btn:hover {
  color: #0081A4;
  background-color: #ffffff;
  text-decoration: none;
}



/*
Default Btn 2 Area Style*/
.default-btn-2 {
  font-size: 16px;
  color: #ffffff;
  padding: 15px 30px;
  line-height: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  text-transform: none;
  position: relative;
  cursor: pointer;
  border-radius: 20px;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  background: -webkit-gradient(linear, left top, right top, from(#3BC1CD), to(#0081A4));
  background: linear-gradient(to right, #3BC1CD 0%, #0081A4 100%);
}

.default-btn-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 53%;
  background: -webkit-gradient(linear, left top, right top, from(#0081A4), to(#3BC1CD));
  background: linear-gradient(to right, #0081A4 0%, #3BC1CD 100%);
  z-index: -1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.default-btn-2::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 100%;
  width: 100%;
  height: 50%;
  background: -webkit-gradient(linear, left top, right top, from(#0081A4), to(#3BC1CD));
  background: linear-gradient(to right, #0081A4 0%, #3BC1CD 100%);
  z-index: -1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.default-btn-2.active {
  margin-left: 30px;
  margin-right: 10px;
  color: #ffffff;
  background: -webkit-gradient(linear, left top, right top, from(#0081A4), to(#3BC1CD));
  background: linear-gradient(to right, #0081A4 0%, #3BC1CD 100%);
}

.default-btn-2:hover {
  color: #ffffff;
  text-decoration: none;
}

.default-btn-2:hover::before {
  left: 0;
}

.default-btn-2:hover::after {
  right: 0;
}

/*
Default Btn 3 Area Style*/
.default-btn-3 {
  font-size: 16px;
  color: #ffffff;
  padding: 15px 30px;
  line-height: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  text-transform: none;
  position: relative;
  cursor: pointer;
  border-radius: 20px;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  background: -webkit-gradient(linear, left top, right top, from(#FFBC00), to(#DD8D00));
  background: linear-gradient(to right, #FFBC00 0%, #DD8D00 100%);
}

.default-btn-3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 53%;
  background: -webkit-gradient(linear, left top, right top, from(#DD8D00), to(#FFBC00));
  background: linear-gradient(to right, #DD8D00 0%, #FFBC00 100%);
  z-index: -1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.default-btn-3::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 100%;
  width: 100%;
  height: 50%;
  background: -webkit-gradient(linear, left top, right top, from(#DD8D00), to(#FFBC00));
  background: linear-gradient(to right, #DD8D00 0%, #FFBC00 100%);
  z-index: -1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.default-btn-3.active {
  margin-left: 30px;
  margin-right: 10px;
  color: #ffffff;
  background: -webkit-gradient(linear, left top, right top, from(#DD8D00), to(#FFBC00));
  background: linear-gradient(to right, #DD8D00 0%, #FFBC00 100%);
}

.default-btn-3:hover {
  color: #ffffff;
  text-decoration: none;
}

.default-btn-3:hover::before {
  left: 0;
}

.default-btn-3:hover::after {
  right: 0;
}

/*
Read More Area Style*/
.read-more {
  line-height: 1;
  color: #3BC1CD;
  font-weight: 500;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  display: block;
  font-size: 13px;
  font-weight: 600;
}

.read-more i {
  position: relative;
  top: 2px;
}

.read-more:hover {
  color: #3BC1CD;
}

.read-more:hover i {
  color: #3BC1CD;
  -webkit-animation: rotation 0.5s linear infinite;
          animation: rotation 0.5s linear infinite;
}

/*===== DEFAULT STYLE END ======*/
/*====================================================
HOME PAGE ONE STYLE
======================================================*/
/*
Header Area Style
======================================================*/
.header-area .top-header-area {
  padding: 6px 0;
  background-color: #F7F7F7;
}

.header-area .top-header-area .header-content-left li {
  display: inline-block;
  padding-right: 20px;
  color: #001430;
  
}

.header-area .top-header-area .header-content-left li:last-child {
  padding-right: 0;
}

.header-area .top-header-area .header-content-left li a {
  color: #001430;
  display: inline-block;
}

.header-area .top-header-area .header-content-left li a i {
  color: #ffffff;
  margin-right: 5px;
  font-size: 15px;
  background-color: #3BC1CD;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  border-radius: 50%;
  position: relative;
  top: 1px;
}

.header-area .top-header-area .header-content-left li a:hover {
  color: #3BC1CD;
}

.header-area .top-header-area .header-content-right {
  line-height: 1;
  float: right;
  margin-bottom: 0px;
}

.header-area .top-header-area .header-content-right li {
  display: inline-block;
}

.header-area .top-header-area .header-content-right li a {
  color: #ffffff;
  margin-right: 10px;
  font-size: 35px;
  background-color: #0081A4;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  width: 35px;
  height: 35px;
  line-height: 29px;
  text-align: center;
  border-radius: 50%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.header-area .top-header-area .header-content-right li a i {
  font-size: 25px;
}

.header-area .top-header-area .header-content-right li a:hover {
  background-color: rgb(0, 101, 129);
}

.header-area .top-header-area .header-content-right li .option-item {
  color: #525252;
  display: inline-block;
  position: relative;
  line-height: 1;
  top: 0px;
}

.header-area .top-header-area .header-content-right li .option-item .search-overlay {
  display: none;
}

.header-area .top-header-area .header-content-right li .option-item .search-overlay.search-popup {
  position: absolute;
  top: 100%;
  width: 300px;
  right: 0;
  background: #ffffff;
  z-index: 2;
  padding: 20px;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  margin-top: 25px;
}

.header-area .top-header-area .header-content-right li .option-item .search-overlay.search-popup .search-form {
  position: relative;
}

.header-area .top-header-area .header-content-right li .option-item .search-overlay.search-popup .search-form .search-input {
  display: block;
  width: 100%;
  height: 50px;
  line-height: initial;
  border: 1px solid #eeeeee;
  color: #001430;
  outline: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  font-size: 15px;
  padding-top: 4px;
  padding-left: 15px;
}

.header-area .top-header-area .header-content-right li .option-item .search-overlay.search-popup .search-form .search-input:focus {
  border-color: #3BC1CD;
}

.header-area .top-header-area .header-content-right li .option-item .search-overlay.search-popup .search-form .search-button {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  background: #3BC1CD;
  border: none;
  width: 50px;
  outline: 0;
  color: #ffffff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  padding: 0;
}

.header-area .top-header-area .header-content-right li .option-item .search-overlay.search-popup .search-form .search-button:hover {
  background-color: #001430;
}

.header-area .top-header-area .header-content-right li .option-item .search-btn {
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  color: #ffffff;
  background-color: #3BC1CD;
  width: 25px;
  height: 25px;
  font-size: 15px;
  line-height: 27px;
  border-radius: 50%;
  text-align: center;
}

.header-area .top-header-area .header-content-right li .option-item .search-btn:hover {
  background-color: #001430;
}

.header-area .top-header-area .header-content-right li .option-item .close-btn {
  cursor: pointer;
  display: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  width: 25px;
  height: 25px;
  font-size: 15px;
  line-height: 27px;
  border-radius: 50%;
  text-align: center;
  background-color: #001430;
  color: #ffffff;
}

.header-area .top-header-area .header-content-right li .option-item .close-btn:hover {
  background-color: #001430;
}

.header-area .top-header-area .header-content-right li .option-item .close-btn.active {
  display: block;
}

/*
Nav Area Style
======================================================*/
.main-nav {
  height: 80px;
}

.navbar {
  height: 100%;

}
.nav-area .navbar-area .main-nav {
  background-color: #ffffff;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding-top: 0;
  padding-bottom: 0;
}

.nav-area .navbar-area .main-nav .container{
  max-width: 1350px;
}

.nav-area .navbar-area .main-nav .navbar-brand {
  margin-right: 0px;
}

.nav-area .navbar-area .main-nav .navbar-brand img {
  max-width: 100%;
}
nav-area .navbar-area .main-nav nav .navbar-nav .nav-item a {
  text-align: left;
}

.nav-area .navbar-area .main-nav nav .navbar-nav .nav-item a {
  font-family: "Poppins";
  font-weight: 500;
  font-size: 15px;
  color: #5B5C70;
  text-transform: capitalize;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  margin-left: 0;
  margin: 0 10px;
  position: relative;
}

.nav-area .navbar-area .main-nav nav .navbar-nav .nav-item a i {
  font-size: 15px;
  line-height: 0;
  position: relative;
  top: 3px;
}

.nav-area .navbar-area .main-nav nav .navbar-nav .nav-item a::before {
  content: "";
  position: absolute;
  bottom: -25px;
  right: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.nav-area .navbar-area .main-nav nav .navbar-nav .nav-item a:hover {
  color: #3BC1CD;
}

.nav-area .navbar-area .main-nav nav .navbar-nav .nav-item a.active {
  color: #3BC1CD;
}

.nav-area .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu {
  background-color: #ffffff;
  border: none;
  border-radius: 0;
  top: 100%;
  left: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

.nav-area .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a {
  font-size: 13px;
  color: #001430;
  position: relative;
  padding: 10px 15px;
  border-bottom: 1px dashed #eeeeee;
  margin-left: 0;
  margin-right: 0;
}

.nav-area .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a i {
  float: right;
  top: 12px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.nav-area .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover {
  color: #3BC1CD;
  background-color: #f3f3f3;
}

.nav-area .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active {
  color: #3BC1CD;
  background-color: #f3f3f3;
}

.nav-area .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  left: 100%;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

.nav-area .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li:last-child a {
  border-bottom: none;
}

.nav-area .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  top: 0px !important;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.nav-area .navbar-area .main-nav nav .navbar-nav .nav-item:hover ul {
  opacity: 1;
  visibility: visible;
  top: 100%;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.nav-area .navbar-area.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 999;
  background-color: #001430;
  -webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.4);
          box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.4);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
          animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-transition: all .5s;
  transition: all .5s;
  width: 100% !important;
}

.nav-area .navbar-area.is-sticky .main-nav nav .navbar-nav .nav-item a {
  color: #5B5C70;
}

.nav-area .navbar-area.is-sticky .main-nav nav .navbar-nav .nav-item a:hover {
  color: #3BC1CD;
}

.nav-area .navbar-area.is-sticky .main-nav nav .navbar-nav .nav-item a.active {
  color: #3BC1CD;
}

.nav-area .dropdown-toggle::after {
  display: none;
}

.nav-area .others-option {
  position: relative;
  display: inline-block;
}

.nav-area .others-option .subscribe {
  display: inline-block;
  position: relative;
  font-family: "Poppins";
  font-weight: 400;
  height: fit-content;
  vertical-align: middle;
}

.nav-area .others-option .subscribe .default-btn-2 {
  padding: 12px 20px;
  font-size: 12px;
}

.nav-area .others-option .subscribe .default-btn-3 {
  padding: 12px 20px;
  font-size: 12px;
}

.nav-area .others-option .subscribe a.circle-btn {
  margin-bottom: 0;
  vertical-align: middle;
}
.nav-area .others-option .sidebar-menu {
  display: inline-block;
  margin-left: 15px;
}

.nav-area .others-option .sidebar-menu i {
  font-size: 40px;
  color: #3BC1CD;
  position: relative;
  top: -2px;
}

.paises {
  background: #c3c3c3;
  border-radius: 3px;
  padding: 0 10px 3px 5px;
  align-self: flex-start;
  display: inline-block;
  transition: 0.3s all;
  text-decoration: none;
  overflow: hidden;
  height: 28px;
  width: 74px;
  outline: none;
  margin: 18px auto 0;
}

.paises:hover {
  background: #e1e1e1;
  text-decoration: none;
}

.paises.active {
  height: fit-content;
  transition: all 0.2s ease-out;
  cursor: auto;
  background: #e1e1e1;
}

.paises img {
  height: 22px;
  width: 33px;
}

.paises svg {
  display: inline-block;
  height: 11px;
  margin-left: 12px;
  fill: #f7f7f7;
  transition: 0.3s all;
  cursor: pointer;
}

.paises:hover svg,
.paises.active svg {
  fill: #a1a1a1;
  transform: rotate(90deg);
}

.paises .bandera {
  margin-top: 5px;
  cursor: pointer;
}

.nav-area.four .navbar-area.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 999;
  background-color: #ffffff;
  -webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.4);
          box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.4);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
          animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-transition: all .5s;
  transition: all .5s;
  width: 100% !important;
}

.nav-area.four .navbar-area.is-sticky .main-nav nav .navbar-nav .nav-item a {
  color: #001430;
}

.nav-area.four .navbar-area.is-sticky .main-nav nav .navbar-nav .nav-item a:hover {
  color: #3BC1CD;
}

.nav-area.four .navbar-area.is-sticky .main-nav nav .navbar-nav .nav-item a.active {
  color: #3BC1CD;
}

.nav-area.five .navbar-area .main-nav {
  border-top: 1px dotted #b1b9ba;
  border-bottom: 1px dotted #b1b9ba;
  background-color: #eff7f8;
}

.nav-area.five .navbar-area .main-nav nav .navbar-nav .nav-item a {
  color: #001430;
}

.nav-area.five .navbar-area .main-nav nav .navbar-nav .nav-item a:hover {
  color: #3BC1CD;
}

.nav-area.five .navbar-area .main-nav nav .navbar-nav .nav-item a.active {
  color: #3BC1CD;
}

.nav-area.five .navbar-area.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 999;
  background-color: #ffffff;
  -webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.4);
          box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.4);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
          animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-transition: all .5s;
  transition: all .5s;
  width: 100% !important;
}

.nav-area.five .navbar-area.is-sticky .main-nav nav .navbar-nav .nav-item a {
  color: #001430;
}

.nav-area.five .navbar-area.is-sticky .main-nav nav .navbar-nav .nav-item a:hover {
  color: #3BC1CD;
}

.nav-area.five .navbar-area.is-sticky .main-nav nav .navbar-nav .nav-item a.active {
  color: #3BC1CD;
}

/*
COVID Banner Area Style
======================================================*/
.main-covid {
  background-color: #FFBC00;
  animation-name: banner_change;
  animation-iteration-count: infinite;
  animation-duration: 4s;
  z-index: 3;
  height: 50px;
  margin-top: 80px;
}

.covid-banner-area {
  height: 100%;
  width: 100%;
}

.covid-banner-area:hover {
  text-decoration: none;
}

@keyframes banner_change {
  0%   {background-color:#FFBC00;}
  25%   {background-color:#ffffff;}
  50%  {background-color:#ffffff;}
  75% {background-color:#FFBC00;}
  100% {background-color:#FFBC00;}
}

.covid-banner-area .text-container {
  height: 100%;
  width: 100%;
  position: relative;
  font-family: "Poppins";
  color: #fff;
  display: inline-flex;
  flex-direction: row;
  animation-name: text_change;
  animation-iteration-count: infinite;
  animation-duration: 4s;
  justify-content: center;
}
@keyframes text_change {
  0%   {color:#ffffff;}
  25%  {color:#FFBC00;}
  50%  {color:#FFBC00;}
  75%  {color:#ffffff;}
  100% {color:#ffffff;}
}

.covid-banner-area .text-container b {
  font-weight: 600;
  font-size: 30px;
  line-height: 50px;

}

.covid-banner-area .text-container p {
  font-weight: 200;
  font-size: 18px;
  margin-left: 20px;
  line-height: 50px;
}

/*
Banner Area Style
======================================================*/
.area-banner-principal {
  position: relative;
  height: calc(100% - 130px);
  width: 100%;
  -webkit-box-shadow:  0 10px 10px -10px rgba(0, 0, 0, 0.35);
          box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.main-banner-area {
  height: 100%;
  width: 600%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-animation: slideshow 25s infinite;
          animation: slideshow 25s infinite;
  display: flex;
  flex-direction: row;
  transform: translateX(0%);
  animation-play-state: running;
}

@-webkit-keyframes slideshow {
  16.0%    {transform: translateX(0%);}
  20.0%    {transform: translateX(-16.66666667%);}
  36.0%    {transform: translateX(-16.66666667%);}
  40.0%    {transform: translateX(-33.33333334%);}
  56.0%    {transform: translateX(-33.33333334%);}
  60.0%    {transform: translateX(-50.00000001%);}
  76.0%    {transform: translateX(-50.00000001%);}
  80.0%    {transform: translateX(-66.66666668%);}
  96.0%    {transform: translateX(-66.66666668%);}
  100.0%    {transform: translateX(-83.33333335%);}   
}

@keyframes slideshow {
  16.0%    {transform: translateX(0%);}
  20.0%    {transform: translateX(-16.66666667%);}
  36.0%    {transform: translateX(-16.66666667%);}
  40.0%    {transform: translateX(-33.33333334%);}
  56.0%    {transform: translateX(-33.33333334%);}
  60.0%    {transform: translateX(-50.00000001%);}
  76.0%    {transform: translateX(-50.00000001%);}
  80.0%    {transform: translateX(-66.66666668%);}
  96.0%    {transform: translateX(-66.66666668%);}
  100.0%    {transform: translateX(-83.33333335%);}  
}

.main-banner-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0;
  z-index: -1;
}

.main-banner-area .slide {
  position: relative;
  height: 100%;
  width: 17%;
  background-size: cover;
  background-position: center;
}

.main-banner-area .slide.slide-1 {
  background-image: url(../img/home-one/slider/fondo1.jpg);
  background-position: left;
}

.main-banner-area .slide.slide-2 {
  background-image: url(../img/home-one/slider/fondo2.jpg);
  background-position: center top;
}

.main-banner-area .slide.slide-3 {
  background-image: url(../img/home-one/slider/fondo3.jpg);
  background-position: left;
}

.main-banner-area .slide.slide-4 {
  background-image: url(../img/home-one/slider/fondo4.jpg);
}

.main-banner-area .slide.slide-5 {
  background-image: url(../img/home-one/slider/fondo-trabajo.jpg);
  background-position: center top;
}


.main-banner-area .banner-text {
  position: absolute;
  text-align: center;
  font-family: "Poppins";
  bottom: 50%;
  left: 50%;
  width: 600px;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
}

.main-banner-area .slide.slide-1 .banner-text {
  bottom: 71%;
  left: 17%;
  width: 25%;
  text-align: left;
}

.main-banner-area .slide.slide-1 .banner-text h1 {
  font-size: 38px;
  margin-bottom: 6px;
  color: #3BC1CD;
}

.main-banner-area .slide.slide-1 .banner-text p {
  color: #FFF;
  font-style: italic;
  font-size: 30px;
}

.main-banner-area .slide.slide-2 .banner-text {
  bottom: 62%;
  left: 55.8%;
}

.main-banner-area .slide.slide-2 .banner-text h1 {
  font-size: 40px;
  margin-bottom: 0px;
  color: #3BC1CD;
  font-weight: 600;
}

.main-banner-area .slide.slide-2 .banner-text p {
  font-size: 26px;
  font-style: italic;
  margin-bottom: 35px;
  color: #0081A4;
  font-weight: 500;
}

.main-banner-area .slide.slide-3 .banner-text {
  bottom: 66%;
  left: 24%;
  text-align: left;
}

.main-banner-area .slide.slide-3 .banner-text h1 {
  font-size: 43px;
  font-weight: 530;
  margin-bottom: 0px;
  color: #3BC1CD;
}

.main-banner-area .slide.slide-3 .banner-text p {
  color: #F4F3F3;
  font-style: italic;
  font-size: 35px;
}

.main-banner-area .slide.slide-4 .banner-text {
  bottom: 83%;
  left: 56%;
  width: 100%;
  text-align: left;
}


.main-banner-area .slide.slide-4 .banner-text h1 {
  font-size: 50px;
  margin-bottom: 6px;
  color: #0081A4;
}

.main-banner-area .slide.slide-4 .banner-text p {
  color: #2491AE;
  font-size: 35px;
  margin-bottom: 0px;
}

.main-banner-area .slide.slide-4 .banner-text img {
  width: 25%;
}

main-banner-area .slide.slide-5 .banner-text {
  bottom: 55%;
  left: 57.8%;
}

.main-banner-area .banner-text span {
  font-size: 16px;
  color: #3BC1CD;
  margin-bottom: 20px;
  display: inline-block;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  color: #3BC1CD;
}

.main-banner-area .banner-text h1 {
  font-size: 40px;
  margin-bottom: 25px;
  color: #3BC1CD;
  font-weight: 600;
  
}

.main-banner-area .banner-text p {
  font-size: 20px;
  margin-bottom: 35px;
  color: #0081A4;
  font-weight: 300;
  
}

.main-banner-area .banner-text .default-btn-3 {
  border-radius: 20px;
  height: 40px;
  width: 300px;
  display: inline-block;
  text-align: center;
  position: relative;
  transition: 0.6s;
  padding: 10px;
}

.main-banner-area .banner-text .default-btn-3:hover {
  background-color: #ffffff;
}

.main-banner-area .banner-text .default-btn-3 a {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  width: 100%;
  height: 100%;
  transition: 0.6s;
}

.main-banner-area .banner-text .banner-button-text-2 {
  background-color: #3BC1CD;
  border-radius: 20px;
  height: 40px;
  width: 300px;
  display: inline-block;
  text-align: center;
  position: relative;
  transition: 0.6s;
}

.main-banner-area .banner-text .banner-button-text-2:hover {
  background-color: #ffffff;
}

.main-banner-area .banner-text .banner-button-text-2 a {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-top: 5px; 
  text-decoration: none;
  width: 100%;
  height: 100%;
  transition: 0.6s;
}

.main-banner-area .banner-text .banner-button-text-2 a:hover {
  color: #3BC1CD;
}

.main-banner-area .banner-text .banner-button-text-3 {
  background-color: #FFBC00;
  border-radius: 25px;
  height: 50px;
  width: 350px;
  display: inline-block;
  text-align: center;
  position: relative;
  transition: 0.6s;
}

.main-banner-area .banner-text .banner-button-text-3:hover {
  background-color: #ffffff;
}

.main-banner-area .banner-text .banner-button-text-3 a {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-top: 10px; 
  text-decoration: none;
  width: 100%;
  height: 100%;
  transition: 0.6s;
}

.main-banner-area .banner-text .banner-button-text-3 a:hover {
  color: #FFBC00;
}



.main-banner-area .banner-text .default-btn {
  background: linear-gradient(to right, #093668 0%, #021125 100%);
  border-radius: 20px;
  height: 40px;
  width: 300px;
  display: inline-block;
  text-align: center;
  position: relative;
  transition: 0.6s;
  padding: 10px;
}

.main-banner-area .banner-text .default-btn::before {
  background: linear-gradient(to left, #093668 0%, #021125 100%);
}

.main-banner-area .banner-text .default-btn::after {
  background: linear-gradient(to left, #093668 0%, #021125 100%);
}

.main-banner-area .banner-text .default-btn:hover {
  background-color: #ffffff;
}

.main-banner-area .banner-text .default-btn a {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  width: 100%;
  height: 100%;
  transition: 0.6s;
}

.main-banner-area .banner-text .default-btn-2 {
  border-radius: 20px;
  height: 40px;
  width: 300px;
  display: inline-block;
  text-align: center;
  position: relative;
  transition: 0.6s;
  padding: 10px;
}

.main-banner-area .banner-text .default-btn-2:hover {
  background-color: #ffffff;
}

.main-banner-area .banner-text .default-btn-2 a {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  width: 100%;
  height: 100%;
  transition: 0.6s;
}

.area-banner-principal .banner-img-wrap {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 25%;
  height: 100%;
  z-index: 3;
  text-align: center;
}

.area-banner-principal .banner-img-wrap .banner-img {
  max-width: 490px;
  position: absolute;
  bottom: 0;
  margin-left: auto;
  right: 0;
  padding: 0 40px;
}

.area-banner-principal .banner-img-wrap .banner-img img {
  max-width: 100%;
  max-height: 100% ;
  display: inline-block;
}

.area-banner-principal .banner-img-wrap .banner-shape {
  position: absolute;
  bottom: 55%;
  right: 9%;
  max-width: 650px;
  z-index: -1;
  -webkit-animation: rotation 30s linear infinite;
          animation: rotation 30s linear infinite;
  max-width: 80%;

}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

/*
Banner Banco Estado Area Style
======================================================*/
.banner-banco-estado {
  background-color: #ED801A;
  width: 100%;
  height: 250px;
  font-family: "Poppins";
  font-weight: 600;
  color: #ffffff;
  display: table !important;
  position: relative;
  z-index: 1;
}

.banner-banco-estado .celda {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.banner-banco-estado .celda .contenido .texto {
  width: 436px;
  height: 100%;
  display: inline-block;
  text-align: right;
  vertical-align: middle;
}

.banner-banco-estado .celda .contenido .texto p {
  margin-right: 30px;
  font-size: 40px;
  font-style: italic;
}

.banner-banco-estado .celda .contenido a {
  width: 436px;
  height: 100px;
  display: inline-block;
}

.banner-banco-estado .celda .contenido a img {
  height: 100%;
  width: 100%;
}

/*
Título y Video Style
======================================================*/
.banner-titulo {
  background-color: #ffffff;
  width: 100%;
  height: 300px;
  font-family: "Poppins";
  display: table !important;
}

.banner-titulo .celda {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.banner-titulo .celda .titulo {
  font-weight: 600;
  color: #0081A4;
  font-size: 44px;
  max-width: 1200px;
  display: inline-block
}

.banner-titulo .celda .subtitulo {
  font-weight: 200;
  color: #3BC1CD;
  font-size: 23px;
}

.banner-titulo .celda video {
  margin-top: 20px;
  margin-bottom: 20px;
}

/*
Nuestras Características Area Style
======================================================*/

.area-caracteristicas {
  background-image: url(../../assets/img/home-one/fondo-doctor-logo.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  display: table;
}

.area-caracteristicas.only-pc {
  display: table;
}

.area-caracteristicas .container {
  font-family: "Poppins";
  max-width: 85%;
  height: fit-content;
}

.area-caracteristicas .container .titulo {
  font-size: 26px;
  font-weight: 600;
  margin: 10px 0;
  color: #ffffff;
  text-align: inherit;
}

.area-caracteristicas .container .subtitulo {
  font-size: 16px;
  font-weight: 200;
  margin: 4px 0;
  color: #ffffff;
  text-align: inherit;
}

.area-caracteristicas .text-wrap {
  display: flex;
  position: relative;
  flex-direction: column;
}

.area-caracteristicas .container .caracteristicas {
  margin: 25px 0;
}

/*
Contador Area Style
======================================================*/
.area-contador {
  position: relative;
  overflow: hidden;
  font-family: "Poppins";
  background-color: #fff;
  width: 100%;
  margin-top: 50px;
}

.area-contador .col-lg-3 {
  text-align: center;
}

.contador {
  text-align: center;
  margin-bottom: 30px;
  padding: 60px 15px;
  position: relative;
  width: 200px;
  height: 200px;
  display: inline-block;
  border-radius: 50%;
  background-color: #ffffff;
  color: #fff;
}

.contador .linea-blanca {
  width: 100%;
  height: 5px;
  margin-bottom: 20px;
  border-bottom: 2px solid white;
  
}

.contador h2 {
  font-size: 32px;
  font-weight: 600;
  color: inherit;
}

.contador p {
  font-size: 17px;
  font-weight: 300;
  color: inherit;
}

/*
Especialidades Area Style
======================================================*/
.area-especialidades {
  background-color: #F7F7F7;
  font-family: "Poppins";
  padding: 40px 0 80px;
  height: auto;
}

.area-especialidades .container {
  max-width: 1450px;
}

.area-especialidades .section-title {
  max-width: unset;
  margin-top: 20px;
}

.area-especialidades .section-title h2{
  font-family: "Poppins";
  font-size: 44px;
  font-weight: 600;
  color: #0081A4;
}

.area-especialidades .section-title p{
  font-family: "Poppins";
  font-size: 23px;
  font-weight: 200;
  color: #3BC1CD;
}

.area-especialidades .especialidad {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 300px;
}

.area-especialidades .especialidad .grafica {
  height: 100%;
  width: 100%;
  position: absolute;
  transition: all 0.5s;
  z-index: 2;
}

.area-especialidades .especialidad .texto {
  height: 100%;
  width: 100%;
  position: absolute;
  opacity: 0;
  transition: all 0.5s;
  text-align: left;
  padding-left: 60px;
  padding-top: 20px;
}

.area-especialidades .especialidad ul{
  list-style-type: disc;
  font-size: 15px;
}

.area-especialidades .especialidad .texto  ul li{
  margin: 3px 0;
}

.area-especialidades .especialidad .grafica .circulo {
  height: 180px;
  width: 180px;
  border-radius: 50%;
  display: inline-block;

}

.area-especialidades .especialidad .grafica p {
  font-size: 18px;
  font-weight: 400;
  margin-top: 35px;
}

.area-especialidades .especialidad .texto ul {
  color: darkslategrey;
  font-size: 15px;
}

.area-especialidades .especialidad .grafica:hover{
  opacity: 0;
}

.area-especialidades .especialidad .grafica:hover + .texto{
  opacity: 1;
}

/*
Nuestro Equipo Area Style
======================================================*/
.area-equipo {
  padding-bottom: 150px;
  background-color: #f7f7f7
}

.area-equipo .container {
  color: #0081A4;
  max-width: 100%;
}

.area-equipo .container .section-title {
  font-size: 43px;
  font-weight: 600;
  margin-bottom: 137px;
}

.area-equipo .container .col-7 {
  text-align: left;
}

.area-equipo .container .frame-imagenes {
  height: 520px;
  width: 520px;
  position: relative;
  display: inline-block;
  margin: 0 0 0 auto;
}

.area-equipo .container .frame-imagenes img {
  position: absolute;
  top: 0;
  left: 0;
}

.area-equipo .container .frame-imagenes .frame-doctores {
  height: 100%;
  width: 100%;
  position: absolute;
  animation: rotation 30s linear infinite;
}

.area-equipo .container .frame-imagenes .frame-doctores .static {
  position: absolute;
  overflow: visible;
  height: 20%;
  width: 20%;
  border-radius: 52px;
  animation: rotation 30s linear infinite reverse;
}
.area-equipo .container .frame-imagenes .frame-doctores .static .doc {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  transition: 1s width;
  border-radius: 52px;
  overflow: hidden;
}

.area-equipo .container .frame-imagenes .frame-doctores .static .doc:hover {
  width: 300%;
}

.area-equipo .container .frame-imagenes .frame-doctores .static .doc img {
  height: 100%;
  position: absolute;
  left: 0;
  z-index: 2;
}

.area-equipo .container .frame-imagenes .frame-doctores .static .doc .nombre-doc {
  position: absolute;
  height: 50%;
  width: 169px;
  left: 91px;
  top: 25%;
  bottom: 25%;
  z-index: 1;
}

.area-equipo .container .frame-imagenes .frame-doctores .static .doc .nombre-doc img {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 1;
}

.area-equipo .container .frame-imagenes .frame-doctores .static .doc .nombre-doc span {
  color: #FFFFFF;
  text-align: center;
  position: absolute;
  height: 100%;
  width: 169px;
  z-index: 2;
  padding: 4px 4px 4px 8px;
}

.area-equipo .container .frame-imagenes .frame-doctores .static .doc .nombre-doc span p {
  font-size: 14px;
  margin-bottom: unset;
}

.area-equipo .container .frame-texto {
  width: 32%;
  margin: auto;
}

.area-equipo .container .frame-texto h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 1.5em;
  text-align: justify;
}

.area-equipo .container .frame-texto p {
  font-size: 21px;
  font-weight: 400;
  margin-bottom: 1.5em;
  text-align: justify;
}

.area-equipo .container .frame-texto .cifras{
  display: inline-block;
  width: 100%;
}

.area-equipo .container .frame-texto .cifras b {
  font-weight: 700;
}

.area-equipo .container .frame-texto .cifras p {
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  display: inline-block;
}

.area-equipo .container .frame-texto .cifras img {
  height: 30px;
  width: 196.5px;
  margin-left: 20px;
  margin-bottom: 5px;
}
.area-equipo .container .frame-texto .default-btn-2 {
  font-weight: 600;
  border-radius: 23px;
  color: #ffffff;
  width: 400px;
  margin: 0 auto;
}

/*
First Facility Area Style
======================================================*/
.first-facility-area {
  background: rgb(0,129,164);
  background: linear-gradient(90deg, rgba(0,129,164,1) 0%, rgba(59,193,205,1) 100%);
  color: #FFFFFF;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  border-radius: 0 55px 0 0;
  width: 700px;
  height: 21.462%;
  padding: 1.259% 15px;
}

.first-facility-area .shape {
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0.5;
  z-index: -1;
}

.first-facility-item {
  position: relative;
  padding-left: 90px;
  font-family: "Poppins";
}

.first-facility-item img {
  background-color: #ffffff;
  width: 70px;
  height: 70px;
  line-height: 70px;
  font-size: 50px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  color: #14a88f;
  position: absolute;
  left: 0;
  top: 0;
}

.first-facility-item h3 {
  margin: 10px 0;
  font-size: 13px;
  font-weight: 700;
}

.first-facility-item p {
  font-size: 10px;
  font-weight: 400;
  margin-bottom: 6px;
}

.video-principal {
  width: 100%;
  display: inherit;
}
/*
Second Facility Area Style
======================================================*/
.fila-caracteristicas {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;

}

.bloques {
  display: inline-block;
}

.bloque-caracteristicas {
  height: 350px;
  border-radius: 39px;
  padding: 12px 12px 12px 0;
  width: min-content;
}

.second-facility-item {
  border-radius: 27px;
  text-align: center;
  padding: 20px 5px;
  position: relative;
  z-index: 1;
  background-color: #ffffff;
  overflow: hidden;
  font-family: "Poppins";
  height: 100%;
  width: 220px;
  display: inline-block;
  margin-left: 12px;
}

.bloque-caracteristicas.bloque-1 {
  background: linear-gradient(#0081A4, #3BC1CD);
  width: unset;
}

.bloque-caracteristicas.bloque-2 {
  background: linear-gradient(#021125, #093668);
  margin: auto;
  margin-right: 15px;
}

.bloque-caracteristicas.bloque-3 {
  background: linear-gradient(#DD8D00, #FFBC00);
  margin: auto;
}

.bloque-caracteristicas.bloque-1 .second-facility-item {
  color: #0081A4;
}

.bloque-caracteristicas.bloque-2 .second-facility-item {
  color: #021125;
}

.bloque-caracteristicas.bloque-3 .second-facility-item {
  color: #DD8D00;
}

.second-facility-item img {
  height: 90px;
  width: 90px;
  margin-bottom: 30px;
}

.second-facility-item p {
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 300;
}

.second-facility-item h3 {
  font-size: 16px;
  font-weight: 700;
}

.second-facility-item ul {
  list-style-type: disc;
  text-align: left;
  display: inline-block;
  font-weight: 500;
  margin-bottom: 2px;
}

.bloques .bloque-caracteristicas.bloque-2 ul {
  margin-left: 15px;
}

.second-facility-item ul li{
  margin: 3px 0;
  font-size: 12px;
}

.second-facility-item span {
  font-size: 10px;
  display: block;
  text-align: left;
  margin-left: 20px;
}

.bloques .bloque-texto {
  width: 100%;
  text-align: center;
  padding: 20px 0;
}

.bloques .bloque-texto p {
  font-size: 18px;
}

.bloques .bloque-texto.bloque-1 {
  color: #0081A4;
}

.bloques .bloque-texto.bloque-2 {
  color: #021125;
}

.bloques .bloque-texto.bloque-3 {
  color: #DD8D00;
}

.bloques .bloque-texto p {
  margin-bottom: 34.4px;
}

.bloques .bloque-texto.bloque-2 h5,
.bloques .bloque-texto.bloque-3 h5 {
  margin-bottom: 65.2px;
}

.bloques .bloque-texto p i {
  font-size: 12px;
}

.bloques .bloque-texto .default-btn-2 {
  color: #FFF;
  font-weight: 600;
  border-radius: 30px;
  width: 230px;
}

.bloques .bloque-texto .default-btn-2:hover {
  color: #FFF;
}

.bloques .bloque-texto.bloque-1 .default-btn-2 {
  filter: grayscale(1);
  background: linear-gradient(to right, #0081A4, #3BC1CD);
}

.bloques .bloque-texto.bloque-1 .default-btn-2::after {
  background: linear-gradient(to left, #0081A4, #3BC1CD);
}

.bloques .bloque-texto.bloque-1 .default-btn-2::before {
  background: linear-gradient(to left, #0081A4, #3BC1CD);
}

.bloques .bloque-texto.bloque-2 .default-btn-2 {
  background: linear-gradient(to right, #021125, #093668);
}

.bloques .bloque-texto.bloque-2 .default-btn-2::after {
  background: linear-gradient(to left, #021125, #093668);
}

.bloques .bloque-texto.bloque-2 .default-btn-2::before {
  background: linear-gradient(to left, #021125, #093668);
}

.bloques .bloque-texto.bloque-3 .default-btn-2 {
  background: linear-gradient(to right, #DD8D00, #FFBC00);
}

.bloques .bloque-texto.bloque-3 .default-btn-2::after {
  background: linear-gradient(to left, #DD8D00, #FFBC00);
}

.bloques .bloque-texto.bloque-3 .default-btn-2::before {
  background: linear-gradient(to left, #DD8D00, #FFBC00);
}

/*
About Area Style
======================================================*/
.franja {
  width: 100%;
  margin: 40px 0;
  display: flex;
  flex-direction: row;
  position: relative;
  height: 48%;
}

.franja img {
  position: absolute;
  height: 100%;
  z-index: -1;
}

.franja .bloque {
  width: 50%;
  height: 100%;
  color: #fff;
  text-align: center;
  display: table;
}

.franja .bloque .texto {
  width: fit-content;
  display: table-cell;
  vertical-align: middle;
}

.franja .bloque .texto h3 {
  font-weight: 500;
  font-size: 32px;
  margin-bottom: 0.5em;
}

.franja .bloque .texto p {
  font-size: 17px;
  font-weight: 300;
  margin-bottom: 1.5em;
}

.franja .bloque .texto ul {
  font-size: 17px;
  font-weight: 300;
  list-style-type: disc;
  margin-bottom: 1.5em;
  margin-left: 18px;
}

.franja .bloque .texto ul:last-child {
  margin-bottom: 0;
}

.franja .bloque .texto ul li {
  margin-bottom: 5px;
}

.franja .bloque .texto p:last-child {
  margin-bottom: 0;
}

.franja .bloque .texto ul li:last-child {
  margin-bottom: 0;
}

.franja .bloque.bloque-1 {
  padding: 30px 50px;
  color: #fff;
  position: relative;
}

.franja .bloque.bloque-1 .texto {
  text-align: left;
}

.franja .bloque.bloque-1 .parrafo:first-child {
  margin-bottom: 1.5em;
}

.franja .bloque.bloque-1 img {
  position: absolute;
  max-height: 97%;
  bottom: 0;
  left: 143%;
  margin: auto;
  z-index: 1;
}

.franja .bloque.bloque-2 {
  padding: 30px 50px;
}

.franja .bloque.bloque-4 {
  padding: 30px 50px;
}

.franja .bloque.bloque-4 .texto {
  text-align: left;
  width: 84%;
}

.franja .bloque.bloque-4 .parrafo:first-child {
  margin-bottom: 1.5em;
}

.franja .bloque.bloque-4 .texto ul {
  text-align: left;
}

.franja .bloque.bloque-4 img {
  position: absolute;
  max-height: 100%;
  bottom: -17px;
  right: 62%;
  margin: auto;
  z-index: 1;
}

@-webkit-keyframes moveBounce {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes moveBounce {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

/*
Services Area Style
======================================================*/
.services-area.bg {
  background-image: url(../../assets/img/home-one/ayuda/fondo-ayuda.jpg);
  background-color: #f7f7f7;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
}

.services-area {
  font-family: "Poppins";
  padding: 40px 0 0px;
}

.services-area .section-title {
  margin-top: 0;
}

.services-area h2 {
  font-size: 44px;
  color: #0081A4;
  font-weight: 600;
}

.services-area h5 {
  color: #3BC1CD;
}

.services-area h6 {
  color: #0081A4;
  font-size: 22px;
  font-weight: 400;
}

.services-area .bordeish {
  background: #0081A4;
  background: linear-gradient(to right, #0081A4 0%, #3BC1CD 100%);
  padding: 3px;
  height: 85%;
  margin-bottom: 30px;
  border-radius: 30px;
  transition: 0.5s all;
}

.services-area .bordeish .second-facility-item {
  transform: unset;
  width: 100%;
  margin-left: 0;
}

.services-area .bordeish .second-facility-item h3 {
  font-size: 17px;
  color: #0081A4;
  font-weight: 500;
}

.services-area .bordeish .second-facility-item p {
  margin-bottom: 20px;
  color: #3BC1CD;
  font-size: 15px;
  font-weight: 300;
}

.services-area .bordeish:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  text-decoration: none;
}

.wrap-servicios {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
}

.single-services {
  text-align: center;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  -webkit-border: 1px rgb(0, 0, 0, 0.3) solid;
          border: 1px rgb(0, 0, 0, 0.3) solid;
  padding: 30px;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  margin: 30px;
  border-radius: 27px;
  overflow: hidden;
  height: auto;
  width: 350px;
}

.single-services img {
  max-width: 70px;
  max-height: 70px;
  margin-bottom: 20px;
  transition: all 1.5s;
}

.single-services:hover img {
  filter: grayscale(1) brightness(2.5);
}

.single-services::before {
  content: "";
  position: absolute;
  right: 500px;
  top: 50%;
  width: 100%;
  height: 10px;
  background-color: #0081A4;
  -webkit-box-shadow: 0 0 15px #0081A4;
          box-shadow: 0 0 15px #0081A4;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: -1;
}

.single-services::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #093668;
  -webkit-box-shadow: 0 0 15px #093668;
          box-shadow: 0 0 15px #093668;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: -1;
  -webkit-transition: 1.5s;
  transition: 1.5s;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
  border-radius: 27px;
}

.single-services a {
  font-size: 35px;
  color: #3BC1CD;
  display: inline-block;
  border: 1px solid #3BC1CD;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
}

.single-services a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #dcfcfe;
  margin: 5px;
  border-radius: 50%;
  z-index: -1;
}

.single-services .services-shape {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0.5;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: -1;
}

.single-services:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.single-services:hover::before {
  right: -500px;
}

.single-services:hover::after {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

.single-services h3 {
  color: #3BC1CD;
  transition: all 1.5s;
}

.single-services:hover h3 {
  color: #FFF;
}

.single-services p {
  color: #0081A4;
  transition: all 1.5s;
}

.single-services:hover p {
  color: #FFF;
}

/*
Doctors Area Style
======================================================*/
.single-doctor {
  text-align: center;
  background-color: #e9f8fe;
  padding: 30px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  border-radius: 40px;
  overflow: hidden;
}

.single-doctor::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #0081A4;
  z-index: -1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.single-doctor::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background-color: #0081A4;
  z-index: -1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.single-doctor img {
  border-radius: 50%;
  margin-bottom: 20px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  width: 140px;
  height: 140px;
  background-color: #e9f8fe;
}

.single-doctor h3 {
  margin-bottom: 5px;
}

.single-doctor .top-title {
  margin-bottom: 5px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.single-doctor ul {
  line-height: 1;
}

.single-doctor ul li {
  display: inline-block;
  padding: 0 3px;
}

.single-doctor ul li i {
  color: #ffffff;
  background-color: #3BC1CD;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  border-radius: 50%;
}

.single-doctor:hover img {
  background-color: #ffffff;
}

.single-doctor:hover::before {
  width: 50%;
}

.single-doctor:hover::after {
  width: 50%;
}

.single-doctor:hover .top-title {
  color: #001430;
}

.wrap-medicos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 70px;
}

.doctors-area-two .section-title h4 {
  color: #3BC1CD;
}

.doctors-area-two .wrap-medicos .wrap-title {
  width: 100%;
  font-family: "Poppins";
  font-weight: 600;
  font-size: 30px;
  text-align: center;
  margin: -8px 0 60px;
}

.doctors-area-two .doc {
  position: relative;
  width: 208px;
  border-radius: 35px;
  margin-bottom: 50px;
  padding: 3px;
  margin: 20px;
  font-family: "Poppins";
  transition: 0.5s all;
}

.doctors-area-two .doc.grande {
  width: 270px;
  max-width: 18.367%;
  color: #0081A4;
  background: linear-gradient(to right, #0081A4 0%, #3BC1CD);
  margin: 0.816%;
}

.doctors-area-two .doc:hover {
  transform: translateY(-5px);
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.25)
}

.doctors-area-two .doc.grande .cuadro-blanco {
  height: calc(100% - 110px)
}

.doctors-area-two .doc.grande .contenido {
  padding: 30px 8.712%;
}

.doctors-area-two .doc .cuadro-blanco {
  position: absolute;
  height: calc(100% - 104px);
  width: calc(100% - 6px);
  background-color: #FFFFFF;
  bottom: 3px;
  left: 3px;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
}

.doctors-area-two .doc .contenido {
  position: relative;
  height: 100%;
  padding: 30px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.doctors-area-two .doc .contenido .frame-img {
  display: inline-block;
  height: 144px;
  width: 144px;
  background-color: #ffffff;
  border-radius: 50%;
  margin-bottom: 20px;
  position: relative;
}

.doctors-area-two .doc .contenido .frame-img img {
  height: 140px;
  width: 140px;
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%,-50%);
  top: 50%;
  left: 50%;
}

.doctors-area-two .doc .contenido ul {
  flex-grow: 1;
  margin-bottom: unset;
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
}

.doctors-area-two .doc .contenido ul li:first-child {
  flex-grow: 1;
}

.doctors-area-two .doc .contenido .wrap-texto {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.doctors-area-two .doc .contenido .nombre {
  color: inherit;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
  display: inline-block;
}

.doctors-area-two .doc .contenido .desarrollo {
  color: #000;
  flex-grow: 1;
  margin-bottom: 15px;
}

.doctors-area-two .doc .contenido .desarrollo p {
  font-size: 13px;
}

.doctors-area-two .doc .contenido .experiencia p {
  font-size: 13px;
}

.doctors-area-two .doc .contenido .cargo {
  font-weight: 700;
  font-size: 14px;
  display: table;
  height: 192px;
  margin-top: 30px;
}

.doctors-area-two .doc .contenido .cargo p {
  display: table-cell;
}

.doctors-area-two .doc .contenido .social {
  margin: 15px 0;
  font-size: 23px;
}

.doctors-area-two .doc .contenido .social a {
  margin-right: 0;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background-color: #3BC1CD;
  color: #fff;
  line-height: 83px;
  transition: all 0.5s;
}

.doctors-area-two .doc .contenido .social a:hover {
  transform: translateY(-5px);
  background-color: #0081A4;
  text-decoration: none;
}

.doctors-area-two .doc .contenido .social a i {
  font-size: 40px;
  height: 100%;
  position: relative;
  display: inline-block;
}
/*
Work Area Style
======================================================*/
.our-work-area {
  background-color: #ffffff;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  font-family: "Poppins";
}

.our-work-area .container {
  max-width: 90%;
  padding: 0;
}

.our-work-area .section-title h2{
  color: #0081A4;
}

.our-work-area .section-title p {
  color: #3BC1CD;
  margin-bottom: 26px;
}

.our-work-area .owl-theme .owl-dots {
  margin-top: 50px;
}

.our-work-area .owl-theme .owl-dots .owl-dot span {
  width: 15px;
  height: 6px;
  background-color: #3BC1CD;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  margin: 0 5px;
}

.our-work-area .owl-theme .owl-dots .owl-dot.active span {
  background-color: #0081A4;
  width: 25px;
}

.our-work-area .owl-theme .owl-dots .owl-dot:hover span {
  background-color: #0081A4;
  width: 25px;
}

.our-work-area .shape {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  -webkit-animation: moveBounce 5s linear infinite;
          animation: moveBounce 5s linear infinite;
}

.single-work {
  text-align: center;
  position: relative;
  height: 200px;
  width: 300px;
  overflow: hidden;
}

.single-work img {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}

.single-work .work-title {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  padding: 20px;
  max-width: 325px;
  margin: auto;
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.single-work .work-title i {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: -webkit-gradient(linear, left top, right top, from(#1de9f5), to(#07e2bd));
  background: linear-gradient(to right, #1de9f5 0%, #07e2bd 100%);
  border-radius: 50%;
  color: #ffffff;
  margin-right: 20px;
}

.single-work .work-content-wrap {
  background: -webkit-gradient(linear, left top, right top, from(#ffffff), to(#ffffff));
  background: linear-gradient(to right, #ffffff 0%, #ffffff 100%);
  opacity: 0.9;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.single-work .work-content-wrap .work-content {
  padding: 30px;
}

.single-work .work-content-wrap .work-content h3 {
  margin-bottom: 15px;
}

.single-work .work-content-wrap .work-content p {
  color: #001430;
}

.single-work .work-content-wrap .work-content .read-more {
  color: #001430;
  font-weight: 700;
  font-size: 14px;
}

.single-work .work-content-wrap .work-content .read-more:hover i {
  color: #001430;
}

.single-work:hover .work-content-wrap {
  top: 0;
}

.single-work:hover .work-title {
  bottom: -100%;
}

/*
Counter Area Style
======================================================*/
.counter-area {
  position: relative;
  overflow: hidden;
}

.counter-area .shape-1 {
  position: absolute;
  left: -260px;
  top: 0;
  z-index: -1;
  -webkit-animation: FocuS 1s linear 1s infinite;
          animation: FocuS 1s linear 1s infinite;
}

.counter-area .shape-2 {
  position: absolute;
  right: -260px;
  bottom: 0;
  z-index: -1;
  -webkit-animation: FocuSTwo 1s linear 1s infinite;
          animation: FocuSTwo 1s linear 1s infinite;
}

.single-counter {
  text-align: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  margin-bottom: 30px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  padding: 30px;
  position: relative;
}

.single-counter i {
  background-color: #e3f7fc;
  color: #3BC1CD;
  font-size: 30px;
  line-height: 1;
  display: block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  margin: 0 auto 25px;
  border-radius: 50%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.single-counter p {
  color: #3BC1CD;
  line-height: 1;
  margin-bottom: 0;
  font-size: 18px;
}

.single-counter h2 {
  color: #001430;
  line-height: 1;
  font-size: 40px;
  margin-top: -8px;
  margin-bottom: 10px;
}

.single-counter:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.single-counter:hover i {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

@-webkit-keyframes FocuS {
  0% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes FocuS {
  0% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes FocuSTwo {
  0% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes FocuSTwo {
  0% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*
Appointment Area Style
======================================================*/
.appointment-area {
  height: auto;
  z-index: 2;
}

.appointment-area .container {
  height: 100%;
  max-width: 100%;
  padding-left: 0;
}

.appointment-here-form {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  padding: 50px;
  position: relative;
  z-index: 1;
  width: 100%;
}

.appointment-here-form h2 {
  font-size: 40px;
  text-align: center;
  color: #0081A4;
}

.appointment-here-form span {
  text-align: center;
  display: block;
}

.appointment-here-form label {
  font-weight: 600;
  font-size: 15px;
  color: #0081A4;
}

.appointment-here-form .form-group {
  position: relative;
  margin-bottom: 22px;
}

.appointment-here-form .form-group i {
  position: absolute;
  top: 17px;
  left: 20px;
  line-height: 1;
  font-size: 18px;
  color: #3BC1CD;
}

.appointment-here-form .form-group .form-control {
  padding: 10px;
}


.appointment-here-form .form-group .help-block ul li {
  position: absolute;
  font-size: 14px;
  top: 38px;
  color: #3BC1CD;
}

.appointment-here-form .default-btn-2 {
  display: block;
  margin: 15px auto 0;
  width: 200px;
  border-radius: 23px;
}

.appointment-here-form .nice-select {
  height: 50px;
  width: 100%;
  line-height: 48px;
  font-size: 15px;
  margin-bottom: 30px;
  padding-left: 50px;
  background-color: #f2f9fc;
}

.appointment-here-form .nice-select span {
  text-align: left;
}

.appointment-here-form .nice-select::after {
  height: 8px;
  width: 8px;
}

.appointment-here-form .nice-select.open .list {
  height: 250px;
  overflow-y: scroll;
}

.appointment-here-form .shape {
  position: absolute;
  top: -11.7%;
  right: 4.31%;
  z-index: -1;
  -webkit-animation: moveBounce 5s linear infinite;
          animation: moveBounce 5s linear infinite;
  max-width: 700px;
  max-height: 700px;
  opacity: 0.5;
}

.appointment-here-form .shape img {
  transform: rotate(160deg);
}

.table-condensed {
  border-collapse: collapse;
  width: 308px;
  text-align: center;
}

.table-condensed .prev {
  background-color: #f2f9fc;
  border-radius: 4px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
}

.table-condensed .prev:hover {
  background-color: #3BC1CD;
}

.table-condensed .next {
  background-color: #f2f9fc;
  border-radius: 4px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
}

.table-condensed .next:hover {
  background-color: #3BC1CD;
}

.table-condensed .day {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
  transition: all 0.5s;
  border-radius: 4px;
  font-size: 14px;
}

.table-condensed .day:hover {
  background-color: #3BC1CD;
}

.appointment-area .single-contact-map {
  height: 100%;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

.appointment-area .single-contact-map iframe {
  height: 100%;
}

/*
Medios Area Style
======================================================*/
.area-medios {
  background-color: #f7f7f7;
}

.area-medios .container {
  max-width: 1300px;
}

.area-medios .section-title {
  font-size: 22px;
  color: #0081A4;
  font-weight: 600;
}

.area-medios .medios-wrap .single-work {
  max-height: 126px;
  max-width: 206px;
}

/*
Emergency Area Style
======================================================*/
.emergency-img {
  background-image: url(../../assets/img/emergency.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
}

.emergency-area {
  background-color: #f1f9fd;
  position: relative;
  z-index: 1;
}

.emergency-area .shape {
  position: absolute;
  top: 180px;
  left: 0;
  z-index: -1;
  -webkit-animation: moveBounce 5s linear infinite;
          animation: moveBounce 5s linear infinite;
  display: none;
}

.emergency-content {
  max-width: 540px;
  margin-left: auto;
}

.emergency-content h2 {
  font-size: 40px;
  margin-bottom: 30px;
}

.emergency-content ul {
  margin-top: 40px;
}

.emergency-content ul li {
  position: relative;
  padding-left: 65px;
  display: inline-block;
  margin-right: 30px;
}

.emergency-content ul li:last-child {
  margin-right: 0;
}

.emergency-content ul li i {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 30px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: #3BC1CD;
  border-radius: 4px;
  color: #ffffff;
}

.emergency-content ul li span {
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.emergency-content ul li h3 {
  font-size: 18px;
}

.emergency-content ul li h3 a {
  color: #001430;
}

.emergency-content ul .active i {
  background-color: #1de9f5;
}

/*
Client Area Style
======================================================*/
.single-client {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  padding: 15px;
  margin: 30px;
  position: relative;
  font-family: "Poppins";
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  height: 165px;
}

.single-client img {
  position: absolute;
  top: -30px;
  left: 30px;
  border: 1px solid #3BC1CD;
  border-radius: 4px;
  background-color: #ffffff;
  height: 60px;
  width: 60px;
}

.single-client ul {
  line-height: 1;
  margin-bottom: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: row;
}

.single-client ul li {
  margin: 0 3px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}

.single-client ul li i {
  color: #FFBC00;
}

.single-client h3 {
  margin-bottom: 0;
  color: #0081A4;
  font-size: 16px;
}

.single-client span {
  color: #3BC1CD;
}


.client-area.c-bg {
  background-image: url(../../assets/img/home-one/fondo_clientes.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  position: relative;
  z-index: 1;
}

.client-area .container {
  max-width: 1500px;
}

.client-area .section-title {
  margin-bottom: 0;
}

.client-area .section-title h2{
  font-family: "Poppins";
  font-size: 44px;
  font-weight: 600;
  color: #FFFFFF;
}

.client-area .section-title p{
  font-family: "Poppins";
  font-size: 23px;
  font-weight: 200;
  color: #FFFFFF;
}

.client-area .wrap-video-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: row;
  align-items: center;
}

.client-area .wrap-video-area .boton-video {
  width: 250px;
  height: 250px;
  display: inline-block;
  position: relative;
  border-radius: 50%;
  margin: 50px;
  transition: all 0.5s;
}

.client-area .wrap-video-area .boton-video img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
}

.client-area .wrap-video-area .boton-video .play img {
  width: 40%;
  height: 40%;
  top: 30%;
  left: 30%;
  opacity: 0.5;
  transition: all 0.3s;
}

.client-area .wrap-video-area .boton-video:hover {
  -webkit-box-shadow: 0 0 10px 3px rgb(0, 0, 0, 0.2);
          box-shadow: 0 0 10px 3px rgb(0, 0, 0, 0.2);

}

.client-area .wrap-video-area .boton-video:hover .play img {
  opacity: 1;
}

.client-area .wrap-video-area .testimonio {
  width: 700px;
  display: inline-block;
  position: relative;
  color: #ffffff;
  margin: 50px;
}

.client-area .wrap-video-area .testimonio .desarrollo {
  display: inline-block;
  font-size: 27px;
  font-style: italic;
  font-weight: 500;
}

.client-area .wrap-video-area .testimonio .autor {
  font-size: 24px;
  font-weight: 600;
  margin-top: 30px;
}


.client-area .owl-carousel .owl-item img {
  display: block;
  width: auto;
}

.client-area .sector-boton {
  text-align: center;
}

.client-area .default-btn-3 {
  display: inline-block;
  border-radius: 23px;
  margin-top: 35px;
  width: 225px;
}

/*
Pacientes Area Style 
======================================================*/
.area-pacientes {
  padding-top: 200px;
}

.area-pacientes .container.comentarios {
  max-width: 1150px;
  margin-top: 70px;
}

.area-pacientes .section-title {
  margin-bottom: 70px;
}

.area-pacientes .section-title h2{
  font-family: "Poppins";
  font-size: 44px;
  font-weight: 600;
  color: #0081A4;
}

.area-pacientes .section-title p{
  font-family: "Poppins";
  font-size: 23px;
  font-weight: 200;
  color: #3BC1CD;
}

.area-pacientes .wrap-video-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  overflow: hidden;
  width: 100%;
}

.area-pacientes .contenido-testimonio.reverse {
  flex-direction: row-reverse !important;
}

.area-pacientes .wrap-video-area .contenido-testimonio {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.boton-video {
  width: 250px;
  height: 250px;
  display: inline-block;
  position: relative;
  border-radius: 50%;
  margin: 50px;
  transition: all 0.5s;
  z-index: 1;
  background-color: #000;
}

.area-pacientes .franja {
  justify-content: space-between;
  height: 350px;
}

.area-pacientes .franja .bloque {
  text-align: left;
  margin: 0 30px;
  width: 30%;
  position: unset;
  align-self: center;
  display: flex;
  flex-direction: column;
  padding-right: 0;
}

.area-pacientes .bloque .boton-video {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 240px;
  width: 240px;
}

.area-pacientes .bloque.bloque-1 {
  padding: 30px 0;
}

.area-pacientes .bloque.bloque-1 .boton-video {
  left: 26%;
}

.area-pacientes .bloque.bloque-2 {
  text-align: right;
  align-items: flex-end;
}

.area-pacientes .bloque.bloque-2 .boton-video {
  right: 26%;
}

.area-pacientes .bloque.bloque-3 {
  padding: 30px 0;
}

.area-pacientes .bloque.bloque-3 .boton-video {
  left: 26%;
}

.area-pacientes .bloque.bloque-4 {
  text-align: right;
  align-items: flex-end;
}

.area-pacientes .bloque.bloque-4 .boton-video {
  right: 26%;
}

.boton-video img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0 !important;
  border-radius: 50%;
  max-height: unset !important;
  margin: unset !important;
}

.boton-video .play img {
  width: 40%;
  height: 40%;
  top: 30%;
  left: 30% !important;
  opacity: 0.5;
  transition: all 0.3s;
}

.boton-video:hover {
  -webkit-box-shadow: 2px 2px 10px #1b154e;
          box-shadow: 2px 2px 10px #1b154e;

}

.boton-video:hover .play img {
  opacity: 1;
}

.area-pacientes .testimonio {
  width: 75%;
  display: inline-block;
  position: relative;
  color: #fff;
  z-index: 1;
  margin: auto 0;
}

.area-pacientes .testimonio .desarrollo {
  display: inline-block;
  font-size: 18 px;
  font-style: italic;
  font-weight: 500;
}

.area-pacientes .testimonio .autor {
  font-size: 24px;
  font-weight: 600;
  margin-top: 30px;
}

.area-pacientes div[class^='col-'] {
  display: flex;
}

.area-pacientes .single-client {
  width: 100%;
}

.area-pacientes .default-btn-3 {
  display: inline-block;
  border-radius: 23px;
  margin-top: 10px;
  width: 225px;
}


/*
Blog Area Style
======================================================*/
.single-blog {
  margin-bottom: 30px;
  height: calc(100% - 30px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  font-family: "Poppins";
  overflow: hidden;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.single-blog .blog-image {
  width: 100%;
  height: 234px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.single-blog .blog-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.single-blog span {
  position: absolute;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(#0081A4), to(#3BC1CD));
  background: linear-gradient(to right, #0081A4 0%, #3BC1CD 100%);
  padding: 5px 15px;
  color: #ffffff;
  z-index: 3;
}

.single-blog .blog-content {
  padding: 30px;
  position: relative;
  z-index: 1;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  height: calc(100% - 234px);
}

.single-blog .blog-content::before {
  content: "";
  position: absolute;
  left: -100%;
  bottom: 0;
  width: 50%;
  height: 120%;
  background-color: #021125;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: -1;
}

.single-blog .blog-content::after {
  content: "";
  position: absolute;
  right: -100%;
  bottom: 0;
  width: 50%;
  height: 120%;
  background-color: #021125;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: -1;
}

.single-blog .blog-content ul {
  line-height: 1;
  margin-bottom: 15px;
}

.single-blog .blog-content ul li {
  display: inline-block;
  color: #3BC1CD;
  border-right: 1px solid #3BC1CD;
  line-height: 1;
  padding: 0 10px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.single-blog .blog-content ul li:last-child {
  border-right: none;
  padding-right: 0;
}

.single-blog .blog-content ul li:first-child {
  padding-left: 0;
}

.single-blog .blog-content ul li a {
  color: #3BC1CD;
}

.single-blog .blog-content ul li a:hover {
  color: #3BC1CD;
}

.single-blog .blog-content h3 {
  margin-bottom: 20px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  line-height: 1.5;
  color: #0081A4;
}

.single-blog .blog-content a {
  text-decoration-color: #fff;
}

.single-blog .blog-content p {
  margin-bottom: 20px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  margin-top: -8px;
  flex-grow: 1;
}

.single-blog .blog-content .read-more:hover i {
  color: #ffffff;
}

.single-blog:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.single-blog:hover .blog-content ul li {
  color: #ffffff;
  border-color: #ffffff;
}

.single-blog:hover .blog-content ul li a {
  color: #ffffff;
}

.single-blog:hover .blog-content h3 {
  color: #ffffff;
}

.single-blog:hover .blog-content p {
  color: #ffffff;
}

.single-blog:hover .blog-content .read-more {
  color: #ffffff;
}

.single-blog:hover .blog-content::before {
  left: 0;
}

.single-blog:hover .blog-content::after {
  right: 0;
}

/*
Subscribe Area Style
======================================================*/
.subscribe-area {
  background-color: #eaf6fc;
  padding-top: 50px;
  padding-bottom: 50px;
}

.subscribe-area h2 {
  font-size: 40px;
}

.subscribe-area p {
  font-weight: 600;
}

.subscribe-area .newsletter-form {
  position: relative;
}

.subscribe-area .newsletter-form .form-control {
  height: 60px;
  background-color: #ffffff;
}

.subscribe-area .newsletter-form .default-btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 60px;
}

.subscribe-area #validator-newsletter {
  margin-top: 10px;
  color: #dc3545;
}

/*
Footer Top Area Style
======================================================*/
.footer-top-area {
  background-color: #001430;
  font-family: "Poppins" !important;
}

.footer-top-area .container {
  max-width: 90%;
}

.footer-top-area.f-bg {
  background-image: url(../../assets/img/footer-bg-3.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
}

.footer-top-area.f-bg-2 {
  position: relative;
  z-index: 1;
}

.footer-top-area.f-bg-2 .shape-1 {
  position: absolute;
  top: 50px;
  right: 50px;
  opacity: 0.2;
  z-index: -1;
  -webkit-animation: rotation 30s linear infinite;
          animation: rotation 30s linear infinite;
}

.footer-top-area.f-bg-2 .shape-2 {
  position: absolute;
  bottom: 50px;
  left: 100px;
  opacity: 0.2;
  z-index: -1;
  -webkit-animation: moveBounce 5s linear infinite;
          animation: moveBounce 5s linear infinite;
}

.footer-top-area.f-bg-2 .shape-3 {
  position: absolute;
  bottom: 50px;
  left: 100px;
  opacity: 0.2;
  z-index: -1;
  -webkit-animation: rotation 30s linear infinite;
          animation: rotation 30s linear infinite;
}

.footer-top-area.f-bg-2 .shape-4 {
  position: absolute;
  top: 50px;
  right: 50px;
  opacity: 0.2;
  z-index: -1;
  -webkit-animation: moveBounce 5s linear infinite;
          animation: moveBounce 5s linear infinite;
}

.single-widget {
  text-align: center;
}

.single-widget img {
  margin-bottom: 20px;
}

.single-widget h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 30px;
  display: inline-block;
  color: #001430;
  color: #3BC1CD;
  margin-top: 20px;
}

.single-widget p {
  margin-bottom: 0;
  display: inline-block;
  color: #ffffff;
  text-align: justify;
  width: 78%;
}

.single-widget ul li {
  color: #c0cade;
  margin-bottom: 8px;
  font-size: 15px;
}



.single-widget ul li:last-child {
  margin-bottom: 0;
}

.single-widget ul li span {
  color: #ffffff;
}

.single-widget ul li a {
  color: #c0cade;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.single-widget ul li a i {
  display: inline-block;
  margin-right: 2px;
  font-size: 14px;
}

.single-widget ul li a:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.single-widget .social-area ul {
  line-height: 1;
}

.single-widget .social-area ul li {
  display: inline-block;
  text-align: center;
}

.single-widget .social-area ul li a {
  margin: 0 5px;
  width: 30px;
  height: 30px;
  line-height: 34px;
  background-color: #3BC1CD;
  border-radius: 15px;
  text-align: center;
  display: inline-block;
}

.single-widget .social-area ul li a i {
  color: #eeeeee;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  margin-right: 0;
  font-size: 18px;
}

.single-widget .social-area ul li a:hover {
  border-color: #3BC1CD;
  background-color: #0081A4;
  -webkit-transform: translateX(-2px);
          transform: translateX(-2px);
}

.single-widget .social-area ul li a:hover i {
  color: #ffffff;
}

.single-widget.rse a {
  background: #3BC1CD;
  color: #FFF;
  text-decoration: none;
  height: 30px;
  border-radius: 15px;
  width: 100px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 3vw;
}

.single-widget.rse a:hover {
  background-color: #0081A4;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.single-widget.contact h3 {
  width: 100%;
}

.footer-top-area .single-widget .social-area {
  text-align: center;
}

.single-widget.contact {
  text-align: center;
}

.single-widget.contact ul li {
  position: relative;
  margin-bottom: 2.5em;
}

.single-widget.contact ul li:last-child {
  margin-bottom: 0;
}

.single-widget.contact ul li a {
  position: relative;
}

.single-widget.contact ul li a i {
  color: #3BC1CD;
  font-size: 20px;
  display: block;
  margin-bottom: 5px;
}

.single-widget.contact ul li a span {
  display: inline-block;
  font-weight: 800;
}

.single-widget.contact ul li i {
  color: #3BC1CD;
  font-size: 20px;
  display: block;
  margin-bottom: 5px;
}

.single-widget.contact ul li span {
  display: inline-block;
  font-weight: 800;
}

.single-widget.open-time {
  text-align: center;
}

.single-widget.open-time ul {
  padding: 0 10px;
  margin-top: 25px;
  margin-bottom: 2.5em;
  text-align: left;
  display: inline-block;
  width: 77%;
  text-align: center;
}

.single-widget.open-time li {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #3BC1CD;
  width: 100%;
}

.single-widget.open-time li .right {
  float: right;
}

.single-widget.open-time li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

/*
Footer Bottom Area Style
======================================================*/
.footer-bottom-area {
  background-color: #05224c;
  padding: 20px 0;
}

.footer-bottom-area .copy-right {
  text-align: center;
}

.footer-bottom-area .copy-right p {
  text-transform: capitalize;
  margin-bottom: 0;
  color: #ffffff;
}

.footer-bottom-area .copy-right p a {
  color: #ffffff;
}

/*
Second Facility Area Style
======================================================*/
.second-facility-area .container {
  max-width: 1450px;
}

.second-facility-area .sector-boton {
  text-align: center;
  margin: 70px 0;
  width: 100%;
}
.second-facility-area .default-btn-3 {
  border-radius: 23px;
  display: inline-block;
  vertical-align: middle;
  font-family: "Poppins";
  width: 300px;
  max-width: 100%;
  font-weight: 500;
}


/*
FAQ Area CSS
======================================================*/
.faq-area {
  padding-top: 200px;
}

.faq-area.bg-2 {
  background-color: #f1fafb;
}

.faq-accordion .accordion {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.faq-accordion .accordion .accordion-item {
  border-radius: 5px;
  display: block;
  background-color: #ffffff;
  margin-bottom: 15px;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

.faq-accordion .accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion .accordion-title {
  padding: 20px 60px 17px 25px;
  color: #001430;
  text-decoration: none;
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.faq-accordion .accordion .accordion-title i {
  position: absolute;
  right: 25px;
  top: 23px;
  font-size: 25px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.faq-accordion .accordion .accordion-title.active i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.faq-accordion .accordion .accordion-content {
  display: none;
  position: relative;
  margin-top: -5px;
  padding-bottom: 30px;
  padding-right: 30px;
  padding-left: 30px;
}

.faq-accordion .accordion .accordion-content p {
  line-height: 1.8;
}

.faq-accordion .accordion .accordion-content.show {
  display: block;
}

/*
Appointment Area CSS
======================================================*/
.make-appointment-area {
  background-image: url(../../assets/img/appointment-bg-2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  padding-top: 100px;
  position: relative;
  z-index: 1;
}

.make-appointment-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #012729;
  opacity: 0.9;
  z-index: -1;
}

.make-appointment-area .make-appointment-content {
  max-width: 600px;
  margin: auto;
  text-align: center;
}

.make-appointment-area .make-appointment-content h2 {
  color: #ffffff;
  margin-bottom: 30px;
}

.make-appointment-area .make-appointment-content p {
  color: #ffffff;
  margin-bottom: 30px;
}

/*
Convenios Area CSS
======================================================*/
.convenios-area .container {
  max-width: 1300px;
  display: table;
}

.convenios-area .section-title p {
  font-size: 32px;
  color: #0081A4;
  font-weight: 600;
}

.convenios-area .categoria-convenios {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 50px 0;
  border-bottom: solid #dbdbdb 1px;
  position: relative;
}

.convenios-area .categoria-convenios h5 {
  font-size: 21px;
  color: #0081A4;
  font-weight: 300;
  width: 30%;
}

.convenios-area .wrap-convenios {
  text-align: right;
}

.convenios-area .wrap-convenios .convenio {
  width: 140px;
  height: 140px;
  border: 1px rgb(0, 0, 0, 0.3) solid;
  margin: 30px;
  position: relative;
  transition: 0.5s all;
  box-shadow: 0 0 10px 3px rgb(0, 0, 0, 0.3);
  display: inline-block;
}

.convenios-area .wrap-convenios .convenio img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;  
  margin: auto;
  max-width: 90.566%;
  max-height: 62.264%;;
}

.convenios-area .wrap-convenios .convenio span {
  position: absolute;
  width: 105%;
  transform: translateX(-50%);
  left: 50%;
  bottom: -55px;
  font-size: 14px;
  color: #3BC1CD;
  transition: 0.5s all;
  font-family: "Poppins";
  font-weight: 400;
  text-align: center;
}

.convenios-area .wrap-convenios .convenio span.pais {
  bottom: -33.5px
}

.convenios-area .wrap-convenios .convenio:hover span {
  color: #0081A4;
}

.convenios-area .wrap-convenios .convenio:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  cursor: pointer;
}

/*====================================================
INNER PAGE STYLE AREA
======================================================*/
/* 
Page Title Area Style
=====================================================*/
.page-title-area {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  text-align: center;
  background-image: url(../../assets/img/page-bg/1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  margin-top: 80px;
}

.page-title-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: #000000;
  z-index: -1;
}

.page-title-area .page-title-content h2 {
  margin-bottom: 15px;
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
}

.page-title-area .page-title-content ul {
  padding-left: 0;
  list-style-type: none;
  margin-top: 10px;
  margin-bottom: 0;
}

.page-title-area .page-title-content ul li {
  display: inline-block;
  position: relative;
  font-size: 15px;
  font-weight: 500;
  padding-right: 10px;
  padding-left: 10px;
  color: #ffffff;
}

.page-title-area .page-title-content ul li::before {
  content: "";
  position: absolute;
  top: 7px;
  right: -7px;
  background-color: #3BC1CD;
  width: 10px;
  height: 10px;
  -webkit-clip-path: polygon(0% 20%, 60% 20%, 60% 0%, 100% 50%, 60% 100%, 60% 80%, 0% 80%);
          clip-path: polygon(0% 20%, 60% 20%, 60% 0%, 100% 50%, 60% 100%, 60% 80%, 0% 80%);
}

.page-title-area .page-title-content ul li:last-child::before {
  display: none;
}

.page-title-area .page-title-content ul li a {
  color: #ffffff;
}

.page-title-area .page-title-content ul li a:hover {
  color: #3BC1CD;
}

.page-title-area .page-title-content ul .active {
  color: #3BC1CD;
}

.page-title-area .shape-1 {
  position: absolute;
  top: 50px;
  right: 50px;
  opacity: 0.5;
  z-index: -1;
  -webkit-animation: rotation 30s linear infinite;
          animation: rotation 30s linear infinite;
  max-width: 156px;
  max-height: 156px;
}

.page-title-area .shape-2 {
  position: absolute;
  bottom: 50px;
  left: 50px;
  opacity: 0.5;
  z-index: -1;
  -webkit-animation: rotation 30s linear infinite reverse;
          animation: rotation 30s linear infinite reverse;
  max-width: 156px;
  max-height: 156px;
}

.page-title-area .shape-3 {
  position: absolute;
  bottom: 50px;
  left: 50px;
  opacity: 0.5;
  z-index: -1;
  -webkit-animation: rotation 30s linear infinite;
          animation: rotation 30s linear infinite;
  max-width: 156px;
  max-height: 156px;
}

.page-title-area .shape-4 {
  position: absolute;
  top: 50px;
  right: 50px;
  opacity: 0.5;
  z-index: -1;
  -webkit-animation: rotation 30s linear infinite reverse;
          animation: rotation 30s linear infinite reverse;
  max-width: 156px;
  max-height: 156px;
}

/* 
Faq Contact Area Style
=====================================================*/
.faq-contact-area .contact-wrap {
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  padding: 50px;
}

.faq-contact-area .contact-wrap .form-group {
  margin-bottom: 20px !important;
}

.faq-contact-area .contact-wrap label {
  font-weight: 600;
  font-size: 16px;
}

.faq-contact-area .contact-wrap .default-btn {
  display: table;
  margin: 0 auto -7px;
}

.faq-contact-area .list-unstyled {
  margin-top: 10px;
  color: #dc3545 !important;
}

.faq-contact-area #msgSubmit {
  margin: 20px auto 0;
  text-align: center;
}

/*
Sign In & Log In  Area Style
=====================================================*/
.user-area-all-style {
  position: relative;
  z-index: 1;
}

.user-area-all-style .contact-form-action {
  background-color: #ffffff;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  padding: 40px;
  margin: auto;
}

.user-area-all-style .contact-form-action form .submit-btn {
  margin-top: 24px;
}

.user-area-all-style .contact-form-action form .default-btn {
  font-size: 14px;
  padding: 15px 40px;
  margin-bottom: 30px;
}

.user-area-all-style .contact-form-action form .default-btn.btn-two {
  display: table;
  margin: 0 auto 0;
  padding: 15px 40px;
}

.user-area-all-style .contact-form-action form .col-lg-4:nth-child(1) .default-btn {
  background-color: #FF5733;
}

.user-area-all-style .contact-form-action form .col-lg-4:nth-child(2) .default-btn {
  background-color: #3955bc;
  display: table;
  margin: 0 auto 30px;
}

.user-area-all-style .contact-form-action form .col-lg-4:nth-child(3) .default-btn {
  background-color: #3BC1CD;
  float: right;
}

.user-area-all-style .contact-form-action form .reset-btn {
  margin-top: 0;
}

.user-area-all-style .contact-form-action form .form-condition {
  margin-bottom: 20px;
}

.user-area-all-style .contact-form-action form .form-condition .agree-label {
  font-weight: 600;
}

.user-area-all-style .contact-form-action form .form-condition .agree-label a {
  color: #3BC1CD;
}

.user-area-all-style .contact-form-action form .form-group {
  margin-bottom: 30px;
}

.user-area-all-style .contact-form-action .account-desc {
  margin: 25px auto 0;
  display: table;
  font-weight: 600;
}

.user-area-all-style .contact-form-action .account-desc a {
  color: #3BC1CD;
  margin-left: 10px;
  font-weight: 600;
}

.user-area-all-style .contact-form-action #chb1 {
  position: relative;
  top: 1px;
}

.user-area-all-style .contact-form-action #chb2 {
  position: relative;
  top: 1px;
}

.user-area-all-style .contact-form-action .forget {
  float: right;
  color: #3BC1CD;
  font-weight: 600;
}

.user-area-all-style .contact-form-action .now-register {
  font-weight: 600;
  float: right;
  margin-bottom: 30px;
}

.user-area-all-style .contact-form-action .now-register a {
  color: #3BC1CD;
}

.user-area-all-style .contact-form-action .now-log-in {
  color: #3BC1CD;
  font-weight: 600;
}

.user-area-all-style .contact-form-action .now-log-in .font-q {
  font-weight: 600;
}

.user-area-all-style .log-in-img {
  background-image: url(../../assets/img/log-in-img.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-image: cover;
  height: 100%;
}

.user-area-all-style .sign-in-img {
  background-image: url(../../assets/img/sign-in-img.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-image: cover;
  height: 100%;
}

.recover-password-area .contact-form-action {
  max-width: 570px;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

.recover-password-area .contact-form-action .form-heading h3 {
  font-size: 30px;
  margin-bottom: 20px;
}

.recover-password-area .contact-form-action .form-heading p {
  margin-bottom: 30px;
  font-weight: 600;
}

/* 
Coming Soon Area Style
=====================================================*/
.coming-soon-area {
  position: relative;
  height: 100vh;
  z-index: 1;
  background-color: #001430;
  overflow: hidden;
  background-image: url(../../assets/img/coming-soon.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.coming-soon-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: -5%;
  width: 110%;
  height: 100%;
  opacity: 1;
  z-index: -1;
  background-color: #091c29;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 0.9;
}

.coming-soon-area .coming-soon-content {
  text-align: center;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.coming-soon-area .coming-soon-content h1 {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 60px;
  margin-top: -18px;
}

.coming-soon-area .coming-soon-content p {
  color: #f3f3f3;
  font-size: 16px;
  max-width: 600px;
  margin-top: 15px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.coming-soon-area .coming-soon-content #timer {
  margin-top: 30px;
}

.coming-soon-area .coming-soon-content #timer div {
  display: inline-block;
  color: #ffffff;
  position: relative;
  margin-left: 35px;
  margin-right: 35px;
  font-size: 45px;
  font-weight: 700;
}

.coming-soon-area .coming-soon-content #timer div span {
  display: block;
  text-transform: capitalize;
  margin-top: -15px;
  font-size: 16px;
  font-weight: normal;
}

.coming-soon-area .coming-soon-content #timer div:last-child {
  margin-right: 0;
}

.coming-soon-area .coming-soon-content #timer div:last-child::before {
  display: none;
}

.coming-soon-area .coming-soon-content #timer div:first-child {
  margin-left: 0;
}

.coming-soon-area .coming-soon-content #timer div::before {
  content: "";
  position: absolute;
  right: -50px;
  top: -10px;
  font-size: 70px;
  color: #ffffff;
}

.coming-soon-area .coming-soon-content .newsletter-form {
  position: relative;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
}

.coming-soon-area .coming-soon-content .newsletter-form .input-newsletter {
  display: block;
  width: 100%;
  height: 60px;
  border: none;
  background-color: rgba(255, 255, 255, 0.3);
  padding-left: 15px;
  color: #ffffff;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 10px;
}

.coming-soon-area .coming-soon-content .newsletter-form .input-newsletter::-webkit-input-placeholder {
  color: #ffffff;
}

.coming-soon-area .coming-soon-content .newsletter-form .input-newsletter:-ms-input-placeholder {
  color: #ffffff;
}

.coming-soon-area .coming-soon-content .newsletter-form .input-newsletter::-ms-input-placeholder {
  color: #ffffff;
}

.coming-soon-area .coming-soon-content .newsletter-form .input-newsletter::placeholder {
  color: #ffffff;
}

.coming-soon-area .coming-soon-content .newsletter-form .input-newsletter:focus {
  border-color: #3BC1CD;
}

.coming-soon-area .coming-soon-content .newsletter-form button {
  position: absolute;
  right: 0;
  top: 0;
  height: 60px;
  padding: 0 30px;
  text-transform: uppercase;
  outline: 0;
  color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
}

.coming-soon-area .coming-soon-content .newsletter-form button::after {
  border-radius: 0;
}

.coming-soon-area .coming-soon-content .newsletter-form button::before {
  border-radius: 0;
}

.coming-soon-area .coming-soon-content .newsletter-form button:hover {
  color: #ffffff;
  background-color: #3BC1CD;
}

.coming-soon-area .coming-soon-content .newsletter-form #validator-newsletter {
  color: #ffffff;
  font-size: 14px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
  margin: 0 auto;
}

.coming-soon-area .coming-soon-content ul {
  margin-top: 30px;
}

.coming-soon-area .coming-soon-content ul li {
  display: inline-block;
  margin: 0 5px;
}

.coming-soon-area .coming-soon-content ul li a {
  width: 30px;
  height: 30px;
  line-height: 36px;
  background-color: #ffffff;
  border-radius: 50%;
}

.coming-soon-area .coming-soon-content ul li a i {
  font-size: 20px;
}

.coming-soon-area #validator-newsletter {
  text-align: left;
  color: #dc3545 !important;
}

/*
404 Error Area Style
=====================================================*/
.error-area {
  padding: 50px 0;
  height: 100vh;
  text-align: center;
  position: relative;
  z-index: 1;
  background-color: #ffffff;
}

.error-area .error-content-wrap {
  z-index: 1;
  position: relative;
}

.error-area .error-content-wrap h1 {
  font-size: 300px;
  line-height: 1;
  color: #001430;
}

.error-area .error-content-wrap h1 .a {
  -webkit-animation: bounce 3s infinite linear;
          animation: bounce 3s infinite linear;
  display: inline-block;
}

.error-area .error-content-wrap h1 .red {
  color: #ff0000;
  -webkit-animation: bounce 2s infinite linear;
          animation: bounce 2s infinite linear;
  display: inline-block;
}

.error-area .error-content-wrap h1 .b {
  -webkit-animation: bounce 3s infinite linear;
          animation: bounce 3s infinite linear;
  display: inline-block;
}

.error-area .error-content-wrap h3 {
  margin: 30px 0 0;
  position: relative;
  color: #ff0000;
}

.error-area .error-content-wrap p {
  margin: 20px 0 20px;
  font-size: 19px;
  color: #001430;
}

/*
Blog Details Area Style
=====================================================*/
.blog-details-area .container {
  max-width: 1400px;
}

.blog-details-area .blog-details-desc .col-lg-4 {
  display: initial;
}

.blog-details-area .blog-details-desc .article-image {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

.blog-details-area .blog-details-desc .article-image img {
  display: inline-block;
}

.blog-details-area .blog-details-desc .article-content {
  margin-top: 30px;
}

.blog-details-area .blog-details-desc a {
  color: #FFBC00;
}

.blog-details-area .blog-details-desc a:hover {
  color: #DD8D00;
  text-decoration: none;
}

.blog-details-area .blog-details-desc .article-content .entry-meta {
  margin-bottom: -10px;
}

.blog-details-area .blog-details-desc .article-content .entry-meta ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.blog-details-area .blog-details-desc .article-content .entry-meta ul li {
  position: relative;
  display: inline-block;
  color: #3BC1CD;
  margin-right: 21px;
  font-size: 14px;
}

.blog-details-area .blog-details-desc .article-content .entry-meta ul li span {
  display: inline-block;
  color: #3BC1CD;
  font-weight: 500;
}

.blog-details-area .blog-details-desc .article-content .entry-meta ul li a {
  display: inline-block;
  color: #666666;
  font-size: 13px;
}

.blog-details-area .blog-details-desc .article-content .entry-meta ul li a:hover {
  color: #3BC1CD;
}

.blog-details-area .blog-details-desc .article-content .entry-meta ul li i {
  color: #3BC1CD;
  margin-right: 2px;
}

.blog-details-area .blog-details-desc .article-content .entry-meta ul li::before {
  content: '';
  position: absolute;
  top: 11px;
  right: -15px;
  width: 6px;
  height: 1px;
  background: #3BC1CD;
}

.blog-details-area .blog-details-desc .article-content .entry-meta ul li:last-child {
  margin-right: 0;
}

.blog-details-area .blog-details-desc .article-content .entry-meta ul li:last-child::before {
  display: none;
}

.blog-details-area .blog-details-desc .article-content h3 {
  margin-bottom: 26px;
  margin-top: 25px;
  font-size: 30px;
}

.blog-details-area .blog-details-desc .article-content h5 {
  margin-bottom: 13px;
  margin-top: 25px;
}

.blog-details-area .blog-details-desc .article-content h4 {
  margin-bottom: 26px;
  margin-top: 25px;
}

.blog-details-area .blog-details-desc .article-content h2 {
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 30px;
}
.blog-details-area .blog-details-desc .article-content ul li {
  list-style-type: disc;
  margin-left: 20px;
  font-weight: 400;
  font-size: 15px;
}

.blog-details-area .blog-details-desc .article-content .wp-block-gallery.columns-3 {
  padding-left: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
  margin-bottom: 30px;
  margin-top: 30px;
}

.blog-details-area .blog-details-desc .article-content .wp-block-gallery.columns-3 li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333%;
          flex: 0 0 33.3333%;
  max-width: 33.3333%;
  padding-right: 10px;
  padding-left: 10px;
}

.blog-details-area .blog-details-desc .article-content .wp-block-gallery.columns-3 li figure {
  margin-bottom: 0;
}

.blog-details-area .blog-details-desc .article-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
}

.blog-details-area .blog-details-desc .article-footer .article-tags {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.blog-details-area .blog-details-desc .article-footer .article-tags span {
  display: inline-block;
  color: #3BC1CD;
  font-size: 20px;
  margin-right: 5px;
  position: relative;
  top: 4px;
}

.blog-details-area .blog-details-desc .article-footer .article-tags a {
  display: inline-block;
  color: #666666;
  font-weight: 600;
}

.blog-details-area .blog-details-desc .article-footer .article-tags a:hover {
  color: #3BC1CD;
}

.blog-details-area .blog-details-desc .article-footer .article-share {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.blog-details-area .blog-details-desc .article-footer .article-share .social {
  padding-left: 0;
  list-style-type: none;
  text-align: right;
  margin-bottom: 0;
}

.blog-details-area .blog-details-desc .article-footer .article-share .social li {
  display: inline-block;
}

.blog-details-area .blog-details-desc .article-footer .article-share .social li span {
  display: inline-block;
  margin-right: 2px;
  font-weight: 500;
  color: #666666;
}

.blog-details-area .blog-details-desc .article-footer .article-share .social li a {
  display: block;
  color: #ffffff;
  width: 32px;
  height: 32px;
  line-height: 33px;
  border-radius: 50%;
  background-color: #3BC1CD;
  text-align: center;
  font-size: 14px;
}

.blog-details-area .blog-details-desc .article-footer .article-share .social li a:hover {
  -webkit-animation: rubberBand 1s linear;
          animation: rubberBand 1s linear;
}

.blog-details-area .blog-details-desc .post-navigation {
  margin-top: 30px;
}

.blog-details-area blockquote {
  overflow: hidden;
  background-color: #f7f7f7;
  padding: 50px !important;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  margin-top: 20px;
  border-radius: 4px;
}

.blog-details-area blockquote p {
  color: #001430;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 600;
  font-size: 17px !important;
  text-align: center;
}

.blog-details-area blockquote cite {
  display: none;
}

.blog-details-area blockquote::before {
  color: #3BC1CD;
  content: "\ed67";
  position: absolute;
  left: 50px;
  top: -50px;
  z-index: -1;
  font-family: 'boxicons';
  font-size: 140px;
  font-weight: 900;
  opacity: 0.5;
}

.blog-details-area blockquote::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #3BC1CD;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details-area .post-navigation {
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  padding-top: 20px;
  padding-bottom: 20px;
}

.blog-details-area .post-navigation .navigation-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.blog-details-area .post-navigation .navigation-links .nav-previous {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.blog-details-area .post-navigation .navigation-links .nav-previous a i {
  margin-right: 0;
  font-size: 20px;
  position: relative;
  top: 4px;
}

.blog-details-area .post-navigation .navigation-links .nav-next {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
  text-align: right;
}

.blog-details-area .post-navigation .navigation-links .nav-next a i {
  margin-left: 0;
  font-size: 20px;
  position: relative;
  top: 4px;
}

.blog-details-area .post-navigation .navigation-links div a {
  display: inline-block;
  font-weight: 600;
  color: #001430;
}

.blog-details-area .post-navigation .navigation-links div a:hover {
  color: #3BC1CD;
}

.blog-details-area .comments-area {
  padding: 25px;
  margin-top: 30px;
  -webkit-box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.08);
          box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.08);
  background-color: #ffffff;
  display: none;
}

.blog-details-area .comments-area .comments-title {
  position: relative;
  margin-bottom: 30px;
  line-height: initial;
  font-size: 22px;
}

.blog-details-area .comments-area .comments-title::before {
  content: '';
  height: 25px;
  width: 3px;
  left: -25px;
  position: absolute;
  background: #3BC1CD;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.blog-details-area .comments-area ol {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.blog-details-area .comments-area ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.blog-details-area .comments-area .comment-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.blog-details-area .comments-area .children {
  margin-left: 40px;
}

.blog-details-area .comments-area .comment-body {
  border-bottom: 1px solid #eeeeee;
  padding-left: 65px;
  font-size: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.blog-details-area .comments-area .comment-body .reply {
  margin-top: 15px;
}

.blog-details-area .comments-area .comment-body .reply a {
  border: 1px solid #ded9d9;
  color: #001430;
  display: inline-block;
  padding: 5px 20px;
  border-radius: 30px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: 600;
}

.blog-details-area .comments-area .comment-body .reply a:hover {
  color: #ffffff;
  background-color: #3BC1CD;
  border-color: #3BC1CD;
}

.blog-details-area .comments-area .comment-meta {
  margin-bottom: .8em;
}

.blog-details-area .comments-area .comment-author {
  font-size: 16px;
  margin-bottom: 0.4em;
  position: relative;
  z-index: 2;
}

.blog-details-area .comments-area .comment-author .avatar {
  height: 50px;
  left: -65px;
  position: absolute;
  width: 50px;
  border-radius: 50%;
}

.blog-details-area .comments-area .comment-author .fn {
  font-weight: 600;
  color: #001430;
  font-size: 18px;
}

.blog-details-area .comments-area .comment-author .says {
  display: none;
}

.blog-details-area .comments-area .comment-metadata {
  color: #666666;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
}

.blog-details-area .comments-area .comment-metadata a {
  color: #666666;
  font-size: 11px;
}

.blog-details-area .comments-area .comment-metadata a:hover {
  color: #3BC1CD;
}

.blog-details-area .comments-area .comment-content p {
  font-size: 14px;
}

.blog-details-area .comments-area .comment-respond {
  margin-top: 30px;
}

.blog-details-area .comments-area .comment-respond .comment-reply-title {
  margin-bottom: 15px;
  position: relative;
  font-size: 22px;
}

.blog-details-area .comments-area .comment-respond .comment-reply-title::before {
  content: '';
  height: 25px;
  width: 3px;
  left: -25px;
  position: absolute;
  background: #3BC1CD;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.blog-details-area .comments-area .comment-respond .comment-reply-title #cancel-comment-reply-link {
  display: inline-block;
}

.blog-details-area .comments-area .comment-respond .comment-form {
  overflow: hidden;
}

.blog-details-area .comments-area .comment-respond .comment-form-comment {
  margin-bottom: 30px;
  float: left;
  width: 100%;
}

.blog-details-area .comments-area .comment-respond label {
  display: block;
  font-weight: 500;
  color: #001430;
  margin-bottom: 5px;
}

.blog-details-area .comments-area .comment-respond input[type="datetime-local"] {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-details-area .comments-area .comment-respond input[type="datetime-local"]:focus {
  border-color: #3BC1CD;
}

.blog-details-area .comments-area .comment-respond input[type="week"] {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-details-area .comments-area .comment-respond input[type="week"]:focus {
  border-color: #3BC1CD;
}

.blog-details-area .comments-area .comment-respond input[type="month"] {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-details-area .comments-area .comment-respond input[type="month"]:focus {
  border-color: #3BC1CD;
}

.blog-details-area .comments-area .comment-respond input[type="text"] {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-details-area .comments-area .comment-respond input[type="text"]:focus {
  border-color: #3BC1CD;
}

.blog-details-area .comments-area .comment-respond input[type="email"] {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-details-area .comments-area .comment-respond input[type="email"]:focus {
  border-color: #3BC1CD;
}

.blog-details-area .comments-area .comment-respond input[type="url"] {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-details-area .comments-area .comment-respond input[type="url"]:focus {
  border-color: #3BC1CD;
}

.blog-details-area .comments-area .comment-respond input[type="password"] {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-details-area .comments-area .comment-respond input[type="password"]:focus {
  border-color: #3BC1CD;
}

.blog-details-area .comments-area .comment-respond input[type="search"] {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-details-area .comments-area .comment-respond input[type="search"]:focus {
  border-color: #3BC1CD;
}

.blog-details-area .comments-area .comment-respond input[type="tel"] {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-details-area .comments-area .comment-respond input[type="tel"]:focus {
  border-color: #3BC1CD;
}

.blog-details-area .comments-area .comment-respond input[type="number"] {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-details-area .comments-area .comment-respond input[type="number"]:focus {
  border-color: #3BC1CD;
}

.blog-details-area .comments-area .comment-respond textarea {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-details-area .comments-area .comment-respond textarea:focus {
  border-color: #3BC1CD;
}

.blog-details-area .comments-area .comment-respond .comment-form-author {
  float: left;
  width: 50%;
  padding-right: 10px;
  margin-bottom: 20px;
}

.blog-details-area .comments-area .comment-respond .comment-form-email {
  float: left;
  width: 50%;
  padding-left: 12px;
  margin-bottom: 20px;
}

.blog-details-area .comments-area .comment-respond .comment-form-url {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}

.blog-details-area .comments-area .comment-respond .comment-form-cookies-consent {
  width: 100%;
  float: left;
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
}

.blog-details-area .comments-area .comment-respond .comment-form-cookies-consent input {
  position: absolute;
  left: 0;
  top: 6px;
}

.blog-details-area .comments-area .comment-respond .comment-form-cookies-consent label {
  display: inline-block;
  margin: 0;
  color: #666666;
  font-weight: normal;
}

.blog-details-area .comments-area .comment-respond .form-submit {
  float: left;
  width: 100%;
}

.blog-details-area .comments-area .comment-respond .form-submit input {
  background: #3BC1CD;
  border: none;
  color: #ffffff;
  padding: 14px 30px 12px;
  display: inline-block;
  cursor: pointer;
  outline: 0;
  border-radius: 0;
  text-transform: uppercase;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: 500;
  font-size: 14px;
}

.blog-details-area .comments-area .comment-respond .form-submit input:hover {
  color: #ffffff;
  background-color: #001430;
}

.blog-details-area .comments-area .comment-respond .form-submit input:focus {
  color: #ffffff;
  background-color: #3BC1CD;
}

.blog-details-area .row {
  justify-content: center;
}

.blog-details-area .col-lg-4 {
  display: none;
}

.blog-details-area .widget-area .widget {
  margin-top: 35px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.08);
          box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.08);
}

.blog-details-area .widget-area .widget .post-wrap {
  padding: 20px;
}

.blog-details-area .widget-area .widget:first-child {
  margin-top: 0;
}

.blog-details-area .widget-area .widget .widget-title {
  text-transform: capitalize;
  position: relative;
  font-size: 20px;
  margin-bottom: 0;
  background-color: #ececec;
  padding: 10px 20px;
  color: #001430;
  position: relative;
}

.blog-details-area .widget-area .widget .widget-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-color: #3BC1CD;
}

.blog-details-area .widget-area .widget_search form {
  position: relative;
}

.blog-details-area .widget-area .widget_search form label {
  display: block;
  margin-bottom: 0;
}

.blog-details-area .widget-area .widget_search form .screen-reader-text {
  display: none;
}

.blog-details-area .widget-area .widget_search form .search-field {
  background-color: transparent;
  height: 50px;
  padding: 6px 15px;
  border: 1px solid #eeeeee;
  width: 100%;
  display: block;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-details-area .widget-area .widget_search form .search-field:focus {
  border-color: #3BC1CD;
}

.blog-details-area .widget-area .widget_search form button {
  position: absolute;
  right: 0;
  outline: 0;
  bottom: 0;
  height: 50px;
  width: 50px;
  border: none;
  color: #ffffff;
  background-color: #3BC1CD;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}

.blog-details-area .widget-area .widget_search form button:hover {
  background-color: #001430;
}

.blog-details-area .widget-area .widget-peru-posts-thumb {
  position: relative;
  overflow: hidden;
}

.blog-details-area .widget-area .widget-peru-posts-thumb .item {
  overflow: hidden;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #efefef;
}

.blog-details-area .widget-area .widget-peru-posts-thumb .item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.blog-details-area .widget-area .widget-peru-posts-thumb .item .thumb {
  float: left;
  height: 80px;
  overflow: hidden;
  position: relative;
  width: 80px;
  margin-right: 15px;
}

.blog-details-area .widget-area .widget-peru-posts-thumb .item .thumb .fullimage {
  width: 80px;
  height: 80px;
  display: inline-block;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center !important;
  position: relative;
  background-color: #001430;
}

.blog-details-area .widget-area .widget-peru-posts-thumb .item .thumb .fullimage.bg1 {
  background-image: url(../../assets/img/blog/telemedicina-tendencia.jpg);
}

.blog-details-area .widget-area .widget-peru-posts-thumb .item .thumb .fullimage.bg2 {
  background-image: url(../../assets/img/blog/chile-supera-20000-contagiados.jpg);
}

.blog-details-area .widget-area .widget-peru-posts-thumb .item .thumb .fullimage.bg3 {
  background-image: url(../../assets/img/blog/cordones-sanitarios.jpg);
}

.blog-details-area .widget-area .widget-peru-posts-thumb .item .thumb .fullimage.bg4 {
  background-image: url(../../assets/img/blog/ventajas-telemedicina.jpg);
}

.blog-details-area .widget-area .widget-peru-posts-thumb .item .info {
  overflow: hidden;
}

.blog-details-area .widget-area .widget-peru-posts-thumb .item .info span {
  display: block;
  color: #666666;
  text-transform: uppercase;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 500;
}

.blog-details-area .widget-area .widget-peru-posts-thumb .item .info .title {
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 14px;
  font-weight: 600;
}

.blog-details-area .widget-area .widget-peru-posts-thumb .item .info .title a {
  display: inline-block;
  color: #474c40;
}

.blog-details-area .widget-area .widget-peru-posts-thumb .item .info .title a:hover {
  color: #3BC1CD;
}

.blog-details-area .widget-area .widget_recent_entries ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.blog-details-area .widget-area .widget_recent_entries ul li {
  position: relative;
  margin-bottom: 12px;
  color: #666666;
  padding-left: 17px;
  line-height: 1.5;
  font-size: 15px;
  font-weight: 600;
}

.blog-details-area .widget-area .widget_recent_entries ul li:last-child {
  margin-bottom: 0;
}

.blog-details-area .widget-area .widget_recent_entries ul li::before {
  background: #3BC1CD;
  position: absolute;
  height: 7px;
  width: 7px;
  content: '';
  left: 0;
  top: 7px;
}

.blog-details-area .widget-area .widget_recent_entries ul li .post-date {
  display: block;
  font-size: 13px;
  color: #666666;
  margin-top: 4px;
}

.blog-details-area .widget-area .widget_categories ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.blog-details-area .widget-area .widget_categories ul li {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 10px;
  color: #666666;
  padding-left: 20px;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid #efefef;
}

.blog-details-area .widget-area .widget_categories ul li:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.blog-details-area .widget-area .widget_categories ul li::before {
  background: #3BC1CD;
  position: absolute;
  height: 10px;
  width: 10px;
  content: '';
  left: 0;
  top: 7px;
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
          clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.blog-details-area .widget-area .widget_categories ul li a {
  display: block;
  color: #666666;
  font-weight: normal;
  font-size: 14px;
}

.blog-details-area .widget-area .widget_categories ul li a span {
  float: right;
  font-size: 13px;
}

.blog-details-area .widget-area .widget_categories ul li a:hover {
  color: #3BC1CD;
}

.blog-details-area .widget-area .widget_categories ul li .post-count {
  float: right;
}

.blog-details-area .widget-area .widget_meta ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.blog-details-area .widget-area .widget_meta ul li {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 10px;
  color: #666666;
  padding-left: 17px;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid #efefef;
}

.blog-details-area .widget-area .widget_meta ul li a {
  color: #525252;
}

.blog-details-area .widget-area .widget_meta ul li a:hover {
  color: #3BC1CD;
}

.blog-details-area .widget-area .widget_meta ul li:last-child {
  margin-bottom: 0;
}

.blog-details-area .widget-area .widget_meta ul li::before {
  background: #3BC1CD;
  position: absolute;
  height: 10px;
  width: 10px;
  content: '';
  left: 0;
  top: 8px;
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
          clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.blog-details-area .widget-area .widget_tag_cloud .widget-title {
  margin-bottom: 0;
}

.blog-details-area .widget-area .tagcloud a {
  display: inline-block;
  color: #666666;
  font-weight: normal;
  font-size: 14px !important;
  padding: 7px 10px;
  border: 1px dashed #eeeeee;
  margin-top: 10px;
  margin-right: 10px;
  text-transform: capitalize;
}

.blog-details-area .widget-area .tagcloud a:hover {
  background-color: #3BC1CD;
  color: #ffffff;
}

.blog-details-area .widget-area .tagcloud a:focus {
  background-color: #3BC1CD;
  color: #ffffff;
  border-color: #3BC1CD;
}

.blog-details-area .widget-area .widget_services_list ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.04);
          box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.04);
  background-color: #ffffff;
}

.blog-details-area .widget-area .widget_services_list ul li a {
  display: block;
  position: relative;
  border-bottom: 1px solid #eeeeee;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  padding-right: 35px;
  color: #5d6576;
  z-index: 1;
  font-weight: 500;
}

.blog-details-area .widget-area .widget_services_list ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #252920;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.blog-details-area .widget-area .widget_services_list ul li a i {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.blog-details-area .widget-area .widget_services_list ul li a:hover {
  background-color: #3BC1CD;
  color: #ffffff;
  padding-left: 20px;
}

.blog-details-area .widget-area .widget_services_list ul li a:hover::before {
  opacity: 1;
  visibility: visible;
  width: 5px;
}

.blog-details-area .widget-area .widget_services_list ul li a.active {
  background-color: #3BC1CD;
  color: #ffffff;
  padding-left: 20px;
}

.blog-details-area .widget-area .widget_services_list ul li a.active::before {
  opacity: 1;
  visibility: visible;
  width: 5px;
}

.blog-details-area .widget-area .widget_services_list ul li:last-child a {
  border-bottom: none;
}

.blog-details-area .widget-area .widget_download ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.04);
          box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.04);
  background-color: #ffffff;
}

.blog-details-area .widget-area .widget_download ul li a {
  display: block;
  position: relative;
  border-bottom: 1px solid #eeeeee;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  padding-right: 35px;
  color: #5d6576;
  z-index: 1;
  font-weight: 500;
}

.blog-details-area .widget-area .widget_download ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #252920;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.blog-details-area .widget-area .widget_download ul li a i {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.blog-details-area .widget-area .widget_download ul li a:hover {
  background-color: #3BC1CD;
  color: #ffffff;
  padding-left: 20px;
}

.blog-details-area .widget-area .widget_download ul li a:hover::before {
  opacity: 1;
  visibility: visible;
  width: 5px;
}

.blog-details-area .widget-area .widget_download ul li a.active {
  background-color: #3BC1CD;
  color: #ffffff;
  padding-left: 20px;
}

.blog-details-area .widget-area .widget_download ul li a.active::before {
  opacity: 1;
  visibility: visible;
  width: 5px;
}

.blog-details-area .widget-area .widget_download ul li:last-child a {
  border-bottom: none;
}

.blog-details-area .widget-area .info time {
  font-size: 13px;
  color: #929292;
  display: block;
  margin-bottom: 4px;
}

/*
Contact Info Area Style
=====================================================*/
.single-contact-info {
  text-align: center;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
  padding: 100px 30px;
}

.single-contact-info i {
  font-size: 40px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: #3BC1CD;
  color: #ffffff;
  display: inline-block;
  border-radius: 50%;
  margin-bottom: 15px;
}

.single-contact-info h3 {
  margin-bottom: 10px;
}

.single-contact-info p {
  font-weight: 600;
  margin-bottom: 5px;
}

.single-contact-info span {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}

.single-contact-info span:last-child {
  margin-bottom: 0;
}

.single-contact-map iframe {
  height: 430px;
  width: 100%;
}

/*
Services Page Area Style
=====================================================*/
.first-facility-area.services-page-one {
  margin: 100px auto 0;
  position: unset;
  max-width: 1110px;
}

.first-facility-area.services-page-one.mt-0 {
  margin-bottom: 100px;
}

/*
About Page Area Style
=====================================================*/
.about-page {
  padding-top: 100px;
}


/*
Planes Style
======================================================*/
.pricing-area .container {
  max-width: 1300px;
}

.pricing-area .section-title p {
  font-size: 23px;
  font-weight: 200;
  color: #3BC1CD;
}

.tabla-general {
  display: flex;
  flex-direction: row;
  font-family: "Poppins";
}

.tabla-general .cuadros-planes {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex-grow: 1;
  justify-content: space-between;
}

.tabla-general .cuadros-planes .logo-titulo {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: -10px 0 10px;
}

.tabla-general .cuadros-planes .logo-titulo img {
  max-height: 50px;
}

.tabla-general .cuadros-planes .plan {
  width: 25%;
  min-width: 350px;
  height: 140px;
  border-radius: 25px;
  overflow: hidden;
  margin: 10px;
  display: flex;
  flex-direction: row;
  transition: all 1s;
}

.tabla-general .cuadros-planes .plan .bordeish-1 {
  padding: 3px;
  width: 66%;
  height: 100%;
}

.tabla-general .cuadros-planes .plan.plan-1 .bordeish-1 {
  background: linear-gradient(to right, #021125, #093668);
}

.tabla-general .cuadros-planes .plan.plan-2 .bordeish-1 {
  background: linear-gradient(to right, #093668, #0081A4);
}

.tabla-general .cuadros-planes .plan.plan-3 .bordeish-1 {
  background: linear-gradient(to right, #0081A4, #3BC1CD);  
}

.tabla-general .cuadros-planes .plan.plan-4 .bordeish-1 {
  background: linear-gradient(to right, #3BC1CD, #00AF9A);  
}

.tabla-general .cuadros-planes .plan .bordeish-1 .plan-top {
  height: 40px;
  color: #FFF;
  padding: 9px;
  text-align: center;
  font-weight: 600;
  display: flex;
  flex-direction: column;
}

.tabla-general .cuadros-planes .plan .bordeish-1 .cuadro-blanco {
  background-color: #FFF;
  height: calc(100% - 40px);
  border-bottom-left-radius: 22px;
}

.tabla-general .cuadros-planes .plan .bordeish-1 .cuadro-blanco .precios-plan {
  text-align: center;
  padding: 17px;
  line-height: 1.3;
  height: 100%;
  color: #3BC1CD;
  font-family: "Poppins";
}

.tabla-general .cuadros-planes .plan .bordeish-1 .cuadro-blanco .precios-plan b {
  position: relative;
}

.tabla-general .cuadros-planes .plan .bordeish-1 .cuadro-blanco .precios-plan b.tachado::after  {
  border-bottom: 0.125em solid #3BC1CD;
  content: "";
  left: 50%;
  margin-top: calc(0.125em / 2 * -1);
  position: absolute;
  top: 50%;
  transform: translateX(-50%);
  width: 150%;
}

.tabla-general .cuadros-planes .plan .bordeish-2 {
  flex-grow: 1;
  height: 100%;
  padding: 3px 3px 3px 0;
}

.tabla-general .cuadros-planes .plan.plan-1 .bordeish-2 {
  background: linear-gradient(to left, #021125, #093668);
  transform: translateX(-1px);
}

.tabla-general .cuadros-planes .plan.plan-2 .bordeish-2 {
  background: linear-gradient(to left, #093668, #0081A4);
  transform: translateX(-1px);
}

.tabla-general .cuadros-planes .plan.plan-3 .bordeish-2 {
  background: linear-gradient(to left, #0081A4, #3BC1CD);
  transform: translateX(-1px);  
}

.tabla-general .cuadros-planes .plan.plan-4 .bordeish-2 {
  background: linear-gradient(to left, #3BC1CD, #00AF9A);
  transform: translateX(-1px);  
}

.tabla-general .cuadros-planes .plan .bordeish-2 .plan-top {
  color: #FFF;
  height: 40px;
  padding: 5px;
  line-height: 1.3;
  text-align: center;
  font-size: 12px;
  display: flex;
  flex-direction: row;
}

.tabla-general .cuadros-planes .plan .bordeish-2 .plan-top span {
  align-self: center;
  width: 100%;
}

.tabla-general .cuadros-planes .plan .bordeish-2 .cuentas-plan {
  background-color: #FFF;
  height: calc(100% - 40px);
  border-bottom-right-radius: 22px;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #3BC1CD;
  padding: 20px;
}

.tabla-general .bloque-caracteristicas {
  width: 75%;
  display: block;
  text-align: center;
  margin-top: 60px;
  margin-left: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-left: 2px #A4A4A4 solid;
}

.tabla-general .bloque-caracteristicas p {
  color: #A4A4A4;
  font-size: 22px;
}

.tabla-general .bloque-caracteristicas ul {
  text-align: center;
}

.tabla-general .bloque-caracteristicas ul li {
  text-align: left;
  font-size: 18px;
  margin-bottom: 0.5em;
  color: #A4A4A4;
}

.tabla-general .bloque-caracteristicas ul li img {
  display: inline-block;
  max-height: 18px;
  margin-right: 5px;
}



.pricing-area .default-btn-3 {
  width: 300px;
  border-radius: 50px;
  font-weight: 500;
}


/*
Trabaja Con Nosotros Style
======================================================*/
.trabaja-nosotros {
  font-family: "Poppins";
  padding-top: 200px;
}

.trabaja-nosotros .section-title {
  color: #0081A4;
  font-size: 43px;
  font-weight: 600;
  max-width: unset;
  margin-bottom: 0;
}

.trabaja-nosotros .subtitulo p {
  font-size: 31px;
  font-weight: 400;
  margin: 1em 0;
}

.trabaja-nosotros .contenido p {
  font-size: 23px;
  font-weight: 300;
  color: #616161;
  text-align: center;
}

.trabaja-nosotros .logos {
  display: flex;
  width: 59%;
  height: 55px;
  justify-content: space-between;
  margin: 30px auto 15px;
}

.trabaja-nosotros .logos img {
  height: 100%;
}

.trabaja-nosotros .formulario {
  width: 100%;
  border: 0;
  height: 1650px;
  margin-bottom: 20px;
}

/*====================================================
OTHER STYLE AREA
======================================================*/
/*
Preloader Area Style*/
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  overflow: hidden;
  z-index: 9999;
}

.loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background: #3BC1CD;
  z-index: 10;
}

.loader-wrapper .loader-section.section-left {
  left: 0;
}

.loader-wrapper .loader-section.section-right {
  right: 0;
}

.loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #0081A4;
  -webkit-animation: spin 1.7s linear infinite;
          animation: spin 1.7s linear infinite;
  z-index: 11;
}

.loader .container-logo {
  height: 100%;
  width: 100%;
  position: absolute;
  -webkit-animation: spin 1.7s linear infinite reverse;
          animation: spin 1.7s linear infinite reverse;
}

.loader .container-logo img {
  height: 80px;
  width: 88px;
  position: absolute;
  top: 35px;
  bottom: 35px;
  right: 31px;
  left: 31px;
}

.loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #FFBC00;
  -webkit-animation: spin-reverse .6s linear infinite;
          animation: spin-reverse .6s linear infinite;
}

.loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #E2E2E2;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}

.loaded .loader-wrapper {
  visibility: hidden;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all 0.3s 1s ease-out;
  transition: all 0.3s 1s ease-out;
}

.loaded .loader-wrapper .loader-section.section-left {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded .loader-wrapper .loader-section.section-right {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded .loader {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes spin-reverse {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

@keyframes spin-reverse {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

/*
Go Top Style*/
.go-top {
  position: fixed;
  cursor: pointer;
  top: 93%;
  right: -10%;
  background-color: #0081A4;
  z-index: 4;
  width: 40px;
  text-align: center;
  height: 42px;
  line-height: 42px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .9s;
  transition: .9s;
}

.go-top i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 20px;
}

.go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}

.go-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #3BC1CD;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.go-top:hover {
  color: #ffffff;
  background-color: #3BC1CD;
}

.go-top:hover::before {
  opacity: 1;
  visibility: visible;
}

.go-top:hover i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}

.go-top:hover i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.go-top:focus {
  color: #ffffff;
}

.go-top:focus::before {
  opacity: 1;
  visibility: visible;
}

.go-top:focus i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}

.go-top:focus i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.go-top.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
  right: 3%;
  top: 93%;
}

/*
Chatbot Style
*/
.chatbot {
  position: fixed;
  top: 40%;/* 93% */
  right: 10%;
  z-index: 4;
  width: 280px;
  text-align: center;
  height: 60%;
  line-height: 42px;
  font-family: sans-serif;
  letter-spacing: 0.5px;
  display: none;
}





/*
Video wave Style*/
.video-btn {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 69px;
  text-align: center;
  border-radius: 50%;
  color: #3BC1CD;
  position: relative;
  top: 3px;
  z-index: 1;
  background-color: #3BC1CD;
}

.video-btn i {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  position: absolute;
  top: 0;
  left: 3px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
}

.video-btn::after, .video-btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  background-color: #3BC1CD;
}

.video-btn::before {
  -webkit-animation: ripple 1.6s ease-out infinite;
          animation: ripple 1.6s ease-out infinite;
}

.video-btn::after {
  -webkit-animation: ripple 1.6s ease-out infinite;
          animation: ripple 1.6s ease-out infinite;
}

.video-btn:hover {
  background-color: #3BC1CD;
}

.video-btn:hover i {
  color: #ffffff;
}

@-webkit-keyframes ripple {
  0%, 35% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2);
            transform: scale(2);
  }
}

@keyframes ripple {
  0%, 35% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2);
            transform: scale(2);
  }
}

/*
Section Title Area Style*/
.section-title {
  max-width: 660px;
  margin: -8px auto 60px;
  text-align: center;
  position: relative;
}

.section-title h2 {
  font-size: 40px;
  margin-bottom: 15px;
  position: relative;
  display: block;
}

.section-title p {
  font-size: 23px;
  font-weight: 200;
  color: #3BC1CD;
}

.section-title h2:last-child {
  margin-bottom: 0;
}

.section-title.white-title span {
  color: #ffffff;
}

.section-title.white-title h2 {
  color: #ffffff;
}

.section-title.white-title p {
  color: #ffffff;
}

/*
Nice select Area Style*/
.nice-select .list {
  width: 100%;
}

.nice-select .option:hover {
  background-color: #3BC1CD;
  color: #ffffff;
}

.nice-select .option.selected.focus {
  background-color: #001430;
  color: #3BC1CD;
}

/*
Page-navigation Area Style*/
.page-navigation-area {
  text-align: center;
  margin: 20px auto 0;
  display: table;
}

.page-navigation-area .page-link {
  color: #3BC1CD;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 15px #d0d0d0;
          box-shadow: 0 0 15px #d0d0d0;
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff;
  line-height: 24px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  font-weight: 700;
}

.page-navigation-area .page-link i {
  margin-right: -4px;
  font-size: 21px;
}

.page-navigation-area .page-link:hover {
  color: #ffffff;
  background-color: #3BC1CD;
  border: 1px solid #3BC1CD;
}

.page-navigation-area .page-link:focus {
  z-index: 2;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.page-navigation-area .page-link.page-links i::before {
  margin-left: -4px;
}

.page-navigation-area .page-item {
  padding: 0 8px 0;
}

.page-navigation-area .page-item:first-child .page-link {
  border-radius: none;
}

.page-navigation-area .page-item:last-child .page-link {
  border-radius: none;
}

.page-navigation-area .page-item.active .page-link {
  z-index: 1;
  color: #ffffff;
  background-color: #3BC1CD;
  border-color: #3BC1CD;
}

/* Medios de Pago */
.medios-de-pago .container {
  max-width: 1000px;
}

.medios-de-pago .section-title {
  color: #0081A4;
  font-weight: 600;
  margin: 0 auto 40px;
}

.medios-de-pago table {
  width: 100%;
  color: #505050;
  text-align: left;
}

.medios-de-pago table tr:nth-child(odd) {
  background: #f0f0f0;
}

.medios-de-pago table tr:first-child {
  background: #FFF;
}

.medios-de-pago table tr th {
  font-size: 25px;
  font-weight: 500;
  border: 1px solid #50505040;
  padding: 1rem;
  text-align: center;
}

.medios-de-pago table tr td {
  padding: 0.6rem;
  border: 1px solid #50505040;
  line-height: 1.2;
}

.medios-de-pago table tr td.logos {
  max-width: 370px;
}
.medios-de-pago table tr td.logos .banda-logos img {
  height: 29px;
  margin-right: 10px;
}

.medios-de-pago table tr td.tipo-plan {
  font-size: 20px;
  max-width: 100px;
  vertical-align: top;
}

.medios-de-pago table tr td.descripcion {
  font-size: 17px;
  vertical-align: top;
  max-width: 260px;
}

/* rse.html */
.responsabilidad-social .section-title {
  color: #0081A4;
  font-weight: 700;
  margin: 40px auto 40px;
}

.responsabilidad-social .row .col {
  background-color: #0081A421;
  text-align: center;
  margin: 30px;
  padding: 45px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.responsabilidad-social .row .col .logo {
  margin-bottom: 15px;
  height: 200px;
}

.responsabilidad-social .row .col .logo::after {
  width: 0;
  height: 100%;
  display: inline-block;
  vertical-align: middle;
  content: "";
}

.responsabilidad-social .row .col img {
  max-height: 200px;
  display: inline-block;
  vertical-align: middle;
}

.responsabilidad-social .row .col p {
  font-family: "Poppins";
  font-weight: 400;
  color: #093668;
  flex-grow: 1;
}

.responsabilidad-social .row .col a {
  width: 150px;
  color: #FFF !important;
  font-weight: 600;
  border-radius: 100px;
  height: 30px;
  padding: 0;
  font-size: 12px;
  line-height: 30px;
}
/*# sourceMappingURL=style.css.map */