/* Animation Gradient */
@keyframes bganimation {
 0%{
   background-position: 0% 50%;
 }
 50%{
   background-position: 100% 50%;
 }
 100%{
   background-position: 0% 50%;
 }
}
/*  */

header {
  width: 100%;
  height: 135px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 999;
}

header .navbarLogo {
  width: 25%;
  height: 135px;
  float: left;
  position: relative;
}
header .navbarLogo img {
  max-width: 120px;
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: all .3s ease;
}

header .tel-menu{
  display: none;
}
header .navbarOptions {
  width: 75%;
  height: 135px;
  float: left;
  padding: 40px 0 0 15%;
  text-align: left;
  position: relative;
}
header .navbarOptions ul li.pageLinks {
  display: inline-block;
  padding: 0 25px 0 25px;
  text-align: center;
}
header .navbarOptions ul li.pageLinks a {
  font-size: 18px;
  font-family: 'Epilogue';
  font-weight: 600;
  font-style: normal;
  color: #ed7577;
  position: relative;
  transition: all .3s ease;
}
header .navbarOptions ul li.pageLinks a:hover,
header .navbarOptions ul li.pageLinks a:active,
header .navbarOptions ul li.pageLinks a:focus {
  font-size: 20px;
  font-family: 'Arnie';
  font-style: normal;
  font-weight: normal;
  text-transform: uppercase;
}
header .navbarOptions ul li.pageLinks a::after {
  content:  '';
  width: 0;
  height: 2px;
  background: #ed7577;
  background-color: #ed7577;
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  margin: auto;
  transition: all .3s ease;
}
header .navbarOptions ul li.pageLinks a:hover::after,
header .navbarOptions ul li.pageLinks a:active::after,
header .navbarOptions ul li.pageLinks a:focus::after,
header .navbarOptions ul li.pageLinks a.webSiteActived::after {
  width: 100%;
}

.dropdown-content {
  top: 80px!important;
  background: #f8f7f6!important;
  background-color: #f8f7f6!important;
}
.dropdown-content li a {
  font-family: 'SF UI Display'!important;
  font-weight: 600!important;
}
.dropdown-content li a::after {
  display: none;
}

header .navbarOptions a.btnTelefono {
    font-family: 'SF UI Display';
    font-weight: bold;
    font-style: normal;
    position: absolute;
    top: 10px;
    right: 20%;
    padding: 5px 30px 5px 30px;
    height: 30px;
    line-height: 20px;
    border-radius: 10px;
    color: #8ed2d0;
    background: rgb(78,100,112);
    background: -moz-linear-gradient(90deg, rgba(78,100,112,1) 0%, rgba(71,92,104,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(78,100,112,1) 0%, rgba(71,92,104,1) 100%);
    background: linear-gradient(90deg, rgba(78,100,112,1) 0%, rgba(71,92,104,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4e6470",endColorstr="#475c68",GradientType=1);
    transition: all .3s ease;
}
header .navbarOptions a.btnTelefono:hover,
header .navbarOptions a.btnTelefono:active,
header .navbarOptions a.btnTelefono:focus {
    background: rgb(142,210,208);
    background: -moz-linear-gradient(0deg, rgba(142,210,208,1) 0%, rgba(151,214,212,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(142,210,208,1) 0%, rgba(151,214,212,1) 100%);
    background: linear-gradient(0deg, rgba(142,210,208,1) 0%, rgba(151,214,212,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8ed2d0",endColorstr="#97d6d4",GradientType=1);
    color: #4f6571;
}

header .navbarOptions a.btnTelefono svg {
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0;
  left: 10px;
  bottom: 0;
  margin: auto;
}
header .navbarOptions a.btnTelefono svg path {
  fill: #8ed2d0;
}
header .navbarOptions a.btnTelefono:hover svg path,
header .navbarOptions a.btnTelefono:active svg path,
header .navbarOptions a.btnTelefono:focus svg path {
    fill: #4f6571;
}

/* RESPONSIVE BUTTON NAVBAR */
.navbarHamb {
  z-index: 99;
  width: 75px;
  height: 75px;
  line-height: 75px;
  text-align: center;
  padding: 0 0 0 0;
  position: absolute;
  top: 0;
  right: 25px;
  bottom: 0;
  margin: auto;
  display: none;
  transition: all .3s ease;
}
.navbarHamb span {
  font-size: 22px;
  font-family: 'Epilogue';
  font-weight: 600;
  font-style: normal;
  color: #ed7577;
  position: relative;
}
.navbarHamb span::after {
  content: '';
  width: 100%;
  height: 2px;
  background: #ed7577;
  background-color: #ed7577;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  margin: auto;
  transition: all .3s ease;
}
.navbarHamb span#close {
  font-size: 18px;
  display: none;
}
.navbarHamb:hover span,
.navbarHamb:focus span,
.navbarHamb:active span {
  font-size: 27px;
  font-family: 'Arnie';
  font-weight: normal;
  font-style: normal;
  color: #ed7577;
  text-transform: uppercase;
}
.navbarHamb:hover span::after,
.navbarHamb:focus span::after,
.navbarHamb:active span::after {
  width: 0;
  background: #ed7577;
  background-color: #ed7577;
}

/* Sidebar Main */
.noShadow {
  -webkit-box-shadow: none!important;
  -moz-box-shadow: none!important;
  box-shadow: none!important;
}
.sidebarMain {
  width: 100%;
  height: 0;
  background: #ffffff;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 998;
  display: none;
}
.sidebarInner {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 0 0 0 0;
}
.sidebarContent {
  width: 100%;
  position: absolute;
  bottom: 2px;
  top: 50px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 100px 0 0 0;
  text-align: center;
  transition: all .3s ease;
}
.sidebarContent ul li {
  line-height: 55px;
  position: relative;
  cursor: pointer;
  padding: 0 0 0 0;
  transition: all .3s ease;
}
.sidebarContent ul li::after {
  content: '';
  width: 0;
  height: 2px;
  background: #ed7577;
  background-color: #ed7577;
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  margin: auto;
  transition: all .3s ease;
}
.sidebarContent ul li a {
  font-size: 25px;
  font-family: 'Epilogue';
  font-weight: 600;
  font-style: normal;
  color: #ed7577;
  transition: all .3s ease;
}
.sidebarContent ul li a.activePage , .sidebarContent ul li a:hover ,
.sidebarContent ul li a:focus {
  font-family: 'Arnie';
  text-transform: uppercase;
}
.sidebarContent ul li:hover::after,
.sidebarContent ul li.webSiteActived::after {
  width: 100%;
  background: #ed7577;
  background-color: #ed7577;
}
.sidebarFooter {
  width: 100%;
  height: 2px;
  background: #ffffff;
  background-color: #ffffff;
  position: absolute;
  padding: 0 0 0 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
/*  */
/*  */

.phoneDoctorErick {
  width: 85px;
  height: 85px;
  text-align: center;
  background: #ffffff;
  background-color: #ffffff;
-webkit-box-shadow: 0px 0px 3px 1px rgba(0,0,0,0.3);
-moz-box-shadow: 0px 0px 3px 1px rgba(0,0,0,0.3);
box-shadow: 0px 0px 3px 1px rgba(0,0,0,0.3);
  padding: 10px 0 0 0;
  position: fixed;
  z-index: 997;
  bottom: 50px;
  left: 50px;
  transition: all .3s ease;
}
.phoneDoctorErick::before {
  content: '';
  width: 100%;
  height: 10px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
background: rgb(24,167,157);
background: -moz-linear-gradient(90deg, rgba(24,167,157,1) 0%, rgba(24,167,157,0.5) 25%, rgba(24,167,157,1) 50%, rgba(24,167,157,0.5) 75%, rgba(24,167,157,1) 100%);
background: -webkit-linear-gradient(90deg, rgba(24,167,157,1) 0%, rgba(24,167,157,0.5) 25%, rgba(24,167,157,1) 50%, rgba(24,167,157,0.5) 75%, rgba(24,167,157,1) 100%);
background: linear-gradient(90deg, rgba(24,167,157,1) 0%, rgba(24,167,157,0.5) 25%, rgba(24,167,157,1) 50%, rgba(24,167,157,0.5) 75%, rgba(24,167,157,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#18a79d",endColorstr="#18a79d",GradientType=1);
  opacity: 0;
  background-size: 400%;
  animation : bganimation 5s infinite;
  animation-timing-function:ease-in;
}

.phoneDoctorErick svg {
  width: 35px;
  height: 35px;
  position: relative;
  z-index: 5;
}
.phoneDoctorErick svg path {
  fill:  #13bcba;
}
.phoneDoctorErick p {
  font-size: 16px;
  padding: 0 0 0 0;
  margin: 0 0 0 0;
  font-family: 'SF UI Display';
  font-weight: 900;
  font-style: normal;
  color: #13bcba;
  position: relative;
  z-index: 5;
  transition: all .3s ease;
}
.phoneDoctorErick:hover,
.phoneDoctorErick:focus,
.phoneDoctorErick:active {
  -ms-transform: scale(1.1); /* IE 9 */
  -webkit-transform: scale(1.1); /* Safari 3-8 */
  transform: scale(1.1);
}
.phoneDoctorErick:hover::before,
.phoneDoctorErick:focus::before,
.phoneDoctorErick:active::before {
  opacity: 1;
}
.phoneDoctorErick:hover p,
.phoneDoctorErick:focus p,
.phoneDoctorErick:active p {
  color:  #4c4a4a;
}
.phoneDoctorErick:hover svg path,
.phoneDoctorErick:focus svg path,
.phoneDoctorErick:active svg path {
  fill:  #4c4a4a;
}
/*  */

/* MODAL CONTACTO */
.overlayContacto {
    width: 100%;
    height: 100%;
    background: #000000;
    background-color: #000000;
    opacity: 0.5;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 999;
    display: none;
}

.contactoModal {
    width: 500px;
    height: 100%;
    background: #ffffff;
    background-color: #ffffff;
    position: fixed;
    top: 0;
    right: -350%;
    bottom: 0;
    margin: auto;
    z-index: 1000;
}

.contactoFullInner {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 0 0 0 0;
}

.contactoClose {
    font-family: 'Arnie';
    font-style: normal;
    font-weight: normal;
    font-size: 33px;
    color: #ee7a7c;
    position: absolute;
    top: 25px;
    right: 10px;
    z-index: 10;
}
.contactoClose:hover,
.contactoClose:active,
.contactoClose:focus {
    color: #9ae3e6;
}

.contactoFullContent {
  width: 100%;
  position: absolute;
  bottom: 2px;
  top: 10px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 75px 50px 0 50px;
  text-align: left;
  transition: all .3s ease;
}

label {
  font-size: 16px;
  color: #ed7577!important;
  font-family: 'Bebas Neue'!important;
  font-weight: normal;
  font-style: normal;
}

.boton-formulario {
  background: #9ae3e6;
  background-color: #9ae3e6;
  color: #ffffff;
  width: auto;
  height: 38px;
  padding-left: 30px;
  padding-right: 30px;
  border: 2px solid #9ae3e6;
  box-shadow: none!important;
  text-transform: capitalize;
  border-radius: 50px;
}

.boton-formulario:hover {
  background: #ee7a7c;
  background-color: #ee7a7c;
  height: 38px;
  width: auto;
  border: 1px solid #ee7a7c;
  padding-left: 30px;
  padding-right: 30px;
  transform: scale(1.5);
}

.boton-formulario:active {
    background: #ee7a7c;
    background-color: #ee7a7c;
    height: 38px;
    width: auto;
    border: 1px solid #ee7a7c;
    padding-left: 30px;
    padding-right: 30px;
    transform: scale(1.5);
}

.boton-formulario:focus {
    background: #ee7a7c;
    background-color: #ee7a7c;
    height: 38px;
    width: auto;
    border: 1px solid #ee7a7c;
    padding-left: 30px;
    padding-right: 30px;
    transform: scale(1.5);
}

input[type='text']:not(.browser-default),
input[type='email']:not(.browser-default),
textarea.materialize-textarea {
  margin: 0px 0px 1px 0;
  border-bottom: 1px solid #9ae3e6;
  font-family: 'Epilogue';
  font-weight: normal;
  font-style: normal;
}

.contactoFullFooter {
  width: 100%;
  height: 2px;
  position: absolute;
  padding: 0 0 0 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
/*  */

input:focus {
  border: 4px solid #ee7a7c;
}

input[type='text']:not(.browser-default):focus:not([readonly]),
input[type='email']:not(.browser-default):focus:not([readonly]),
textarea.materialize-textarea {
  border-bottom: 1px solid #9ae3e6;
  box-shadow: none !important;
  font-family: 'Arnie';
  font-weight: normal;
  font-style: normal;
}

input.valid:not([type]),
input.valid:not([type]):focus,
input[type='text'].valid:not(.browser-default),
input[type='text'].valid:not(.browser-default):focus,
input[type='password'].valid:not(.browser-default),
input[type='password'].valid:not(.browser-default):focus,
input[type='email'].valid:not(.browser-default),
input[type='email'].valid:not(.browser-default):focus,
input[type='url'].valid:not(.browser-default),
input[type='url'].valid:not(.browser-default):focus,
input[type='time'].valid:not(.browser-default),
input[type='time'].valid:not(.browser-default):focus,
input[type='date'].valid:not(.browser-default),
input[type='date'].valid:not(.browser-default):focus,
input[type='datetime'].valid:not(.browser-default),
input[type='datetime'].valid:not(.browser-default):focus,
input[type='datetime-local'].valid:not(.browser-default),
input[type='datetime-local'].valid:not(.browser-default):focus,
input[type='tel'].valid:not(.browser-default),
input[type='tel'].valid:not(.browser-default):focus,
input[type='number'].valid:not(.browser-default),
input[type='number'].valid:not(.browser-default):focus,
input[type='search'].valid:not(.browser-default),
input[type='search'].valid:not(.browser-default):focus,
textarea.materialize-textarea.valid,
textarea.materialize-textarea.valid:focus,
textarea.materialize-textarea:focus:not([readonly]),
.select-wrapper.valid > input.select-dropdown {
  border-bottom: 1px solid #ee7a7c;
  box-shadow: none !important;
  font-family: 'Arnie';
  font-weight: normal;
  font-style: normal;
}

/*input[type='text']:not(.browser-default):focus:not([readonly]),
input[type='email']:not(.browser-default),
textarea.materialize-textarea {
  border: 4px solid rgb(171, 171, 202);
  margin: 0px 0px 1px 0;
} */

/* NAVBAR FIXED */
header.menuFixed {
  background: #ffffff;
  background-color: #ffffff;
  height: 95px;
}

header.menuFixed .navbarLogo {
  width: 25%;
  height: 95px;
  float: left;
  position: relative;
}
header.menuFixed .navbarLogo img {
  max-width: 85px;
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

header.menuFixed .navbarOptions {
  width: 75%;
  height: 95px;
  float: left;
  padding: 40px 0 0 15%;
  text-align: left;
  position: relative;
}

header.menuFixed .navbarOptions ul li.pageLinks a {
    color: #9ae3e6;
}

header.menuFixed .navbarOptions ul li.pageLinks a:hover,
header.menuFixed .navbarOptions ul li.pageLinks a:active,
header.menuFixed .navbarOptions ul li.pageLinks a:focus {
  color: #9ae3e6;
}
header.menuFixed .navbarOptions ul li.pageLinks a::after {
  background: #9ae3e6;
  background-color: #9ae3e6;
}

header.menuFixed .navbarHamb span {
    color: #9ae3e6;
}

header.menuFixed .navbarHamb span::after {
    background: #9ae3e6;
    background-color: #9ae3e6;
}

header.menuFixed .navbarHamb:hover span,
header.menuFixed .navbarHamb:focus span,
header.menuFixed .navbarHamb:active span {
  color: #9ae3e6;
}
header.menuFixed .navbarHamb:hover span::after,
header.menuFixed .navbarHamb:focus span::after,
header.menuFixed .navbarHamb:active span::after {
  background: #9ae3e6;
  background-color: #9ae3e6;
}

.sidebarFixed ul li::after,
 {
  content: '';
  width: 0;
  height: 2px;
  background: #9ae3e6;
  background-color: #9ae3e6;
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  margin: auto;
  transition: all .3s ease;
}
.sidebarFixed ul li a {
  font-size: 25px;
  font-family: 'Epilogue';
  font-weight: 600;
  font-style: normal;
  color: #9ae3e6;
  transition: all .3s ease;
}
.sidebarFixed ul li:hover::after,
.sidebarFixed ul li.webSiteActived::after {
  width: 100%;
  background: #9ae3e6;
  background-color: #9ae3e6;
}
/*  */

/* CUSTOM CURSOR */
.cursorWoorx {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #ed7577;
  background-color: #ed7577;
  position: absolute;
  opacity: 0.5;
  z-index: 99999999;
  transform: translate(-50%, -50%);
  pointer-events: none;
  /*transition: all .3s ease;*/
  transition-property: opacity, transform;
  transform-origin: 100% 100%;
  /*display: none!important;*/
}

.link-grow {
  transform: scale(1.5);
  opacity: 0.3;
}

.hovered-link .navbar .navbarOptions ul li a {
  color: #ffffff;
}
/*  */
