body{
	overflow-x: hidden;
}

a {
  text-decoration: none;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #105285!important;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #11a3eb!important;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: white;
  height: 60px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
}
#topbar img{
	width:160px;
}
/*#topbar.topbar-scrolled {
  top: -60px;
}*/

#topbar .contact-info a {
  line-height: 1;
  color: #091f2f;
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  text-decoration: underline;
}

#topbar .contact-info i {
  padding-right: 4px;
  margin-left: 15px;
}

#topbar .contact-info i:first-child {
  margin-left: 0;
}

#topbar .social-links a {
  color: rgba(255, 255, 255, 0.6);
  padding-left: 15px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: #fff;
}
.contact-ico{
	color: rgba(255, 255, 255, 0.6);
    padding-left: 15px;
    display: inline-block;
    line-height: 1px;
    transition: 0.3s;
	margin-top: 8px;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #001c33;
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0!important;
  height: 64px;
}

#header.header-scrolled {
  top: 0;
	background-color: #001c33;
	height: 62px;
}

.logo{
	max-width:160px;
	
}
@media (max-width: 992px) {
  #header {
    padding: 15px 0px;
    top: 0;
  }
  #header .logo {
    font-size: 28px;
  }
}
.mr-auto{
	margin-right: auto!important;
}
.menucm{
	display: block;
	float:right;
}
.menucm a{
	color:#fff;
	margin-right: 20px;
}
.menucm a:hover{
	color:#105285;
}

.menucm .drop-down ul {
  display: block;
  position: absolute;
  left: 26px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.menucm.drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.menucm .drop-down li {
  min-width: 180px;
  position: relative;
}

.menucm.drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #062b5b;
}

.menucm .drop-down ul a:hover, .menucm .drop-down ul .active > a, .menucm .drop-down ul li:hover > a {
  color: #105285;
}

.menucm .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.menucm .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.menucm .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.menucm.drop-down .drop-down > a {
  padding-right: 35px;
}

.menucm .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #222222;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 600;
  padding: 0 3px;
  text-decoration: none!important;
  font-family: "Open Sans", sans-serif;
}

.nav-menu > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #035d54;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
  visibility: visible;
  width: 100%;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #105285;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 26px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #062b5b!important;
  text-decoration: none!important;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #105285;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #222222;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #222222;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #105285;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(9, 9, 9, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-toggle i{
	color:#091f2f !important;
}
/*last brand*/
.last-brand{
	background-color: #33302e;
}
.last-brand img{
	display:block; 
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;

}

#footer .footer-top {
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
  color: #11a3eb;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #f4f5f7;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #11a3eb;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #11a3eb;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
	margin-top: 0px!important;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #f4f5f9;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
	text-decoration: none!important;
	padding: 0px!important;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #11a3eb;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #11a3eb	;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  padding-top: 16px;
}

#footer .footer-top .social-links a:hover {
  background: #3b8af2;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  text-align: center;
  float: left;
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #f4f5f9;
}
#footer .footer-last{
	dsiplay:block;
	margin: 5px auto;
	text-align: center;
	width:100%;
}
.tyc a{
	color:#6cc0af;
	font-size: 11px;
}
@media (max-width: 768px) {
.card-contenedor {
    max-width: 306px;}
 #hero{
  padding: 0px!important;
 }
  #footer .copyright, #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
}
.copyright{
	font-size:10px;
}
/*Citas*/
.citas{
	background-color: rgba(0,28,51,1);
	padding: 20px 0;
}
.citas h2{
	font-size:32px;
}
.citas h2{
	color:#fff;
}
/*WhatsApp Widget*/
.whatsapp--widget {
    width: 185px;
    height: 42px;
    background-color: #01e675;
    position: fixed;
    bottom: 20px;
    right: 100px;
    z-index: 999;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 50%;
    border-radius: 25px;
    background-clip: padding-box;
    display: inline-block;
}
.whatsapp--widget a:hover{
	text-decoration:none;
}
.whatsapp--widget a {
	padding-top: 18px;
	font-weight: 600;
    font-size: 17px!important;
    color: #fff!important;
	font-family: 'Poppins'!important;
}
.whatsapp--widget p{
	margin-top: 8px;
}
.waicon{
	display:block;
	float: left;
	margin: 10px 8px 6px 10px;
	width: 24px;
}
.btn_whatss{
	min-width: 360px!important;
}
/*Menu CM*/
#header-cm {
  background: rgba(0,28,51,1.00);
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
  top: 0px;
}

#header-cm .header-scrolled {
  top: 0;
  padding: 15px;
	background-color: rgba(0,28,51,0.70);
}
.titulo-nav{
	font-size: 18px;
}
.menucm p{
	font-size:14px!important;
}
.ico_nav{
	filter: grayscale(1);
	opacity: .75;
	height: 50px;
}
.ico_nav:hover{
	-webkit-transition: all .25s ease-in;
	-moz-transition: all .25s ease-in;
	-ms-transition: all .25s ease-in;
	-o-transition: all .25s ease-in;
	transition: all .25s ease-in;
	filter: grayscale(0);
	opacity: 1;
}