@font-face {
    font-family: 'Exo 2';
    src: url('../font/Exo2-Black.woff2') format('woff2'),
        url('../font/Exo2-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Exo 2';
    src: url('../font/Exo2-Bold.woff2') format('woff2'),
        url('../font/Exo2-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Exo 2 Extra';
    src: url('../font/Exo2-ExtraBold.woff2') format('woff2'),
        url('../font/Exo2-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Exo 2 Extra';
    src: url('../font/Exo2-ExtraLight.woff2') format('woff2'),
        url('../font/Exo2-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Exo 2';
    src: url('../font/Exo2-Italic.woff2') format('woff2'),
        url('../font/Exo2-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Exo 2';
    src: url('../font/Exo2-Light.woff2') format('woff2'),
        url('../font/Exo2-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Exo 2';
    src: url('../font/Exo2-Medium.woff2') format('woff2'),
        url('../font/Exo2-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Exo 2';
    src: url('../font/Exo2-Regular.woff2') format('woff2'),
        url('../font/Exo2-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Exo 2 Semi';
    src: url('../font/Exo2-SemiBold.woff2') format('woff2'),
        url('../font/Exo2-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Exo 2';
    src: url('../font/Exo2-Thin.woff2') format('woff2'),
        url('../font/Exo2-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');


:root{
	--color-primary: #040E4B;
	--color-secundary: #D09A11;
	--parrafo: dimgrey;
	--font-primary: 'Exo 2', sans-serif;
	--font-secudary: 'Exo 2 Semi', serif;
	--font-tercero: 'Exo 2 Extra', serif;
	--font-staff: 'Roboto', sans-serif;
	--size: 30px;
}

html{
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

#border-circle{
	border-radius: 5px;
}

body{
	margin: 0;
	padding: 0;
	overflow: hidden;
	transition: all 0.3s;
}
.content-scrollbar::-webkit-scrollbar{
	background: #D9D9D9;
	width: 8px;
}
.content-scrollbar::-webkit-scrollbar-thumb{
	background: #292929;
	border-radius: 6px;
}

.video-banner{
	width: 100%;
}
.video-banner video{
	width: 100%;
}

.content-swiper{
	background: black;
	padding: 0;
}


/*-------------Bototn de WhatsApp---------------*/
.float{
	position:fixed;
	width:50px;
	height:50px;
	bottom:20px;
	right:30px;
	background-color:#06D755;
	color:#FFF;
	border-radius:50px;
	text-align:center;
    font-size:30px;
	box-shadow: 1px 1px 1px black;
    z-index:100;
}
.float:hover {
	text-decoration: none;
	border-radius: 50px 50px 50px 0; 
	transition: all .7s ease-in;
}

.my-float{
	margin-top:10px;
	color: white;
}


/*-------------Section Star--------------------*/
.section-t8 {
  padding-top: 53rem;
}
/*-------------Section End--------------------*/

/*------------------Menu de Navegacion Star-----------------*/
.burger-menu {
  height: 20px;
  display: inline-block;
  float: right;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto 20px auto 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: space-around; }
  .burger-menu:before, .burger-menu:after {
    content: '';
    display: block;
    width: 25px;
    height: 1px;
    background-color: white;
    -webkit-transition: -webkit-transform 150ms ease-in;
    transition: -webkit-transform 150ms ease-in;
    -o-transition: transform 150ms ease-in;
    transition: transform 150ms ease-in;
    transition: transform 150ms ease-in, -webkit-transform 150ms ease-in; }
  .burger-menu.open {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    .burger-menu.open:before {
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg);
      position: absolute;
      top: 10px; }
    .burger-menu.open:after {
      -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      transform: rotate(-45deg); }
  @media screen and (min-width: 768px) {
    .burger-menu {
      right: 15px;
      top: 16px;
      margin: 14px; } }
  @media screen and (min-width: 1179px) {
    .burger-menu {
      display: none; } }

.icon-container {
  margin: 20px 0 15px;
  padding: 0 5px;
  font-size: 35px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end; 
}

  @media screen and (min-width: 768px) {
    .icon-container {
      width: 345px;
      padding: 0 15px; } }
  @media screen and (min-width: 1025px) {
    .icon-container {
      width: 160px;
      padding: 0;
      margin-top: -10px; } }
  .icon-container a, .icon-container a:visited {
    color: #000;
    line-height: 1;
    text-decoration: none;
    display: inline-block; }
  .icon-container a:focus {
    outline: none; }
  .icon-container svg {
    width: 30px;
    height: 30px; }
    @media screen and (min-width: 768px) {
      .icon-container svg {
        width: 35px; } }
    @media screen and (min-width: 1025px) {
      .icon-container svg {
        width: 30px; } }


.header-menu {
	z-index: 99999999;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 84px;
	background: #292929;
	color: #fff;
	box-shadow: 0 3px 6px rgba(208,154,17, 0.12);
	transition: height .5s ease-in-out;
}

.header-menu .site-branding {
  position: absolute;
}

.header-menu .custom-logo {
  width: 165px;
  transition: width 1s ease;
}


.header-menu a {
  display: inline-block;
  color: white;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 200;
  letter-spacing: 1.68px;
  cursor: pointer;
  text-decoration: none;
}

.header-menu a.active {
  text-decoration: underline;
}


.header-menu a:hover {
	
	color: var(--color-secundary);
	font-weight: 500;
	text-shadow: -0.2px 0.2px 0px var(--color-secundary);
}

.header-menu a:not([href]):hover {
  text-decoration: none;
}

.header-menu a.m1 {
  font-weight: 500;
}



.header-menu .nav-right a {
  color: var(--color-secundary);
}

.header-menu .mm {
  font-size: 0;
  display: inline-block;  
  vertical-align:top;
  margin: 31px 10px 0;
  text-align: left;
  line-height: 24px;
  font-family: var(--font-primary);
  
}

.header-menu .mm ul {
  margin: 0;
  padding: 0;
	
}

.header-menu .mm ul li {
  opacity: 0;
  visibility: hidden;
  transition: all .1s ease;
  
}

.header-menu .mm ul li:nth-child(1) {
  transition-delay: .45s;
}

.header-menu .mm ul li:nth-child(2) {
  transition-delay: .40s;
}

.header-menu .mm ul li:nth-child(3) {
  transition-delay: .35s;
}

.header-menu .mm ul li:nth-child(4) {
  transition-delay: .30s;
}

.header-menu .mm ul li:nth-child(5) {
  transition-delay: .25s;
}

.header-menu:hover {
  height: 226px;
}

.header-menu:hover .m1.active:not(.one) {
  text-decoration: none;

}

.header-menu:hover .mm ul {
  height: auto;
}

.header-menu:hover .mm ul li {
  opacity: 1;
  visibility: visible;
}

.header-menu .icon-container  {
  display: none;
  margin: 30px auto;
  width: 200px;
}

.header-menu .icon-container svg {
  fill: white;
}

@media screen and (min-width: 1600px) {
  .header-menu {
    text-align: center;
  }
  
  .header-menu .nav-right {
    position: absolute;
    top: 0;
    right: 52px;
    text-align: right;
  }

  .header-menu .site-branding {				
      top: 25px;
    left: 52px;
  }
  
  .header-menu .custom-logo {
    width: 170px;
  }
}

@media screen and (min-width: 1423px) and (max-width: 1599px) {
  .header-menu {
    text-align: right;
  }
  
  .header-menu .nav-right {
    display: inline-block;
  }

  .header-menu .site-branding {				
      top: 25px;
    left: 52px;
  }
  
  .header-menu .custom-logo {
    width: 168px;
  }
}

@media screen and (min-width: 1380px) and  (max-width: 1422px) {
  .header-menu {
    text-align: right;
  }
  
  .header-menu .nav-right {
    display: inline-block;
    margin-right: 24px;
  }
  
  .header-menu a {
    font-size: 13px;
  }
  
  .header-menu .site-branding {				
      top: 25px;
    left: 24px;
  }
  
  .header-menu .custom-logo {
    width: 195px;
  }
  
  .header-menu .mm {
    margin: 31px 8px 0;
  }
}

@media screen and (min-width : 1203px ) and ( max-width : 1380px ){
  .header-menu {
    text-align: right;
  }
  
  .header-menu .nav-right {
    display: inline-block;
    margin-right: 24px;
  }
  
  .header-menu a {
    font-size: 13px;
    letter-spacing: 1px;
  }
  
  .header-menu .site-branding {				
      top: 25px;
      left: 50px;
	  
  }
  
  .header-menu .custom-logo {
    width: 165px;
  }
  
  .header-menu .mm {
    margin: 31px 8px 0;
  }
}

@media screen and (max-width: 1179px) {
  .header-menu {
    height: 65px;
    text-align: center;
    border-bottom: 1px solid #000;
	background: black;
  }
  
  .header-menu:hover {
    height: 65px;
  }
  
  .header-menu .site-branding {
    position: relative;
    padding: 0;
    height: 100%;
  }
  
  .header-menu .custom-logo {
    width: 160px;
    margin-top: 15px;
  }
  .burger-menu {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    margin-top: 0;
  }
  
  .header-menu .nav-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    background-color: #000;
    top: 65px;
    width: 100%;
    height: calc(100% - 60px);
    padding: 50px 0;
    overflow-y: auto;
  }
  
  body.fixed .header-menu .nav-menu {
    display: block;
    opacity: 1;
    visibility: visible;
	transition: all .5s ease;
	
  }
  
  .header-menu .mm {
    width: 100%;
    text-align: center;
    letter-spacing: 2px;
    line-height: 1.3;
	margin: 0 0 30px 0;
	
  }
  .header-menu .mm .m1 {
    font-size: 20px;
	margin-bottom: 10px;
	
  }
  
  .header-menu .mm ul li {
    opacity: 1;
    visibility: visible;
    margin-bottom: 15px;
  }
  
  .header-menu .icon-container  {
    display: flex;
  }
	
}

/*---------------------Menu Navigation End---------------------------*/

/*---------------------Slider Header Star---------------------------*/
.content-site{
	width: 100%;
}
.carousel-item{
	transition: transform 2s ease;
	opacity: .5s ease-out;
}
.wrapper-slider-custom{
	position:relative;
}
.wrapper-slider-img video{
	margin-top: 5.2em;
	display:block;
	max-width: 100%;
	height: auto;
}

.wrapper-slider-title{
	position: absolute;
	top: 195px;
	left: 5%;
	text-align: left;
	font-family: var(--font-primary);
	z-index: 99999px;
}

.slider-title{
	font-family: 'Nunito' , sans-serif;
	font-size: 41px;
	line-height: 45px;
    font-weight: 400;
	margin-top: 0px;
    margin-bottom: 18px;
	color: black;
	/*-webkit-text-stroke: 1px var(--color-primary);*/
	letter-spacing: 1.5px;
	
}
.slider-description{
	
    font-size: 20px;
    font-weight: 200;
    margin-top: 30px;
    height: 90px;
	font-style: italic;
	color: black;
	font-family: 'Nunito' , sans-serif;
	letter-spacing: 1px;
}
.slider-separator{
	background:var(--color-secundary);
	height: 3px;
	width: 367px;
	margin: 0px;
	border: none !important;
	float: right;
}

.slider-readmore{
	font-family: var(--font-primary);
    font-size: 17px;
	letter-spacing: 0.5px;
	font-weight: 300;
    width: 267px;
    height: 36px;
    line-height: 36px;
    text-decoration: none;
    background: var(--color-secundary);
    display: block;
    float: left;
    text-align: center;
    color: #fff;
	transition: .8s ;
}
.slider-readmore:hover {
	background-color: rgba(4, 14, 75);
	text-decoration: none;
	color: #fff;
}

/* CSS Document */

@media screen and (max-width: 1280px) {
	
	.wrapper-slider-title{
		width: 1000px;
		margin-right: -500px;
	}
	
	.wrapper-slider-title{
		top: 140px;
	}
}

@media screen and (max-width: 1170px) {

	.wrapper-slider-title{
		width: 98%;
		right: 1%;
		left: 1%;
		margin-right: 0;
	}
	.wrapper-slider-title .slider-separator{
		float: left;
		width: 30%;
		margin: 0 auto;
	}
}
@media screen and (max-width: 1024px) {
	.content-site{
		margin-top: -1.11em;
	}
	.wrapper-slider-title{
		top: 100px;
	}
   
	.slider-title{
		font-size: 30px;
		line-height: 35px;
	}
	.slider-description{
		margin: 0px;
		padding: 15px 0px;
		height: auto;
	}	
	
}

@media screen and (max-width: 768px) {
	
	.content-site{
		margin-top: -1.11em;
	}
	.wrapper-slider-title{
		width: 100%;
		position: relative;
		top: 0;
		right: 0;
		left: 0;
		text-align:center;
		padding-top: 10px;
	}
	
	.slider-title {
		color: black;
	}
	
	.slider-description{
		color: black;
	}
	.wrapper-slider-title .slider-separator{
		float: none;
		width: 80%;
		margin: 0 auto;
	}
	.wrapper-slider-title .slider-readmore{
		float: none;
		margin: 15px auto;
	}
	
}

@media screen and (max-width: 360px) {
	.slider-title {
    	font-size: 25px;
    	line-height: 25px;
		color: black;
	}
	
	.slider-description{
		color: black;
	}
}


/*---------------------Slider Header End---------------------------*/
.section-services{
	padding: 0 1px;
	margin-bottom: 40px;
	box-shadow: 1px 0 1px 0.5px #F4F4F4;	
	
}
.card-services{
	margin-bottom: 28px;
	
}
.card-services-special {
	margin-top: 5em;
	margin-bottom: 28px;
}

.services-title h3{
	font-family: var(--font-primary);
	font-style: italic;
	font-weight: 400;
	font-size: 28px;
	margin-bottom: 5px;
	color: black;
}
.services-title p{
	color: black;
	font-style: normal;
	font-family: var(--font-secudary);
	font-size: 18px;
	margin-bottom: 28px;
	text-decoration: underline;
}
.services-title a:hover{
	font-weight: 500;
	color: var(--color-secundary);
}

@media screen and (min-width: 280px) and (max-width: 370px){
	.section-t8{
		 padding-top: 47em;
	}
	
	.card-services-special{
		margin-top: 1em;
	}
}

@media only screen and (min-width: 375px)and (max-width: 375px){
	.section-t8{
		 padding-top: 58em;
	}
	
	.card-services-special{
		margin-top: 1em;
	}
}

@media screen and (min-width: 380px) and (max-width: 720px){
	.section-t8{
		 padding-top: 58em;
	}
	
	.card-services-special{
		margin-top: 1em;
	}
}
@media screen and (min-width: 730px) and (max-width: 1018px){
	.section-t8{
		 padding-top: 75em;
	}
	
	.section-services{
		display:block;
 		 margin-left: auto;
  		margin-right: auto;
	}
	
	.card-services-special{
		margin-top: 1em;
	}
}

@media screen and (min-width: 1020px) and (max-width: 1024px){
	.section-t8{
		 padding-top: 96em;
	}
}
	
/*---------------------Section index End---------------------------*/


/*---------------------Election Star---------------------------*/
.section-election{
	overflow: hidden;
	height: 80vh;
	box-sizing: border-box;
}
.banner-election img{
	float: right;
	padding-top: 4.5em;
	position: static;
}
.title-election{
	width: 100%;
	margin-top: -40em;
	margin-left: 80px;
		
}

.title-election p{
	font-family: var(--font-primary);
	font-size: 80px;
	font-style: italic;
	font-weight: 600;
	color: var(--color-primary);
	letter-spacing: -2px;
	margin-bottom: -20px;
	
}

.title-election span{
	display: flex;
	padding-left: 40px;
	font-family: var(--font-primary);
	font-size: 25px;
	font-weight: 500;
	font-style: italic;
	color: var(--color-primary);
	
}
.title-election h1{
	font-family: var(--font-primary);
	font-size: 100px;
	margin-top: -15px;
	font-weight: 700;
	color: var(--color-primary);
}


.section-content{
	height: 100vh;	
}

.panel-card{
	display: flex;
	align-content: center;
	padding-top: 13%;
	text-align: center;
	font-family: var(--font-primary);	
}
.grupo-card{
	margin-right: 10em;
	width: 290px;
	height: 100%;
}
.grupo-card .numbers {
	font-size: 66px;
	font-weight: 500;
	color: var(--color-primary);
	margin-bottom: 0;
}
.grupo-card h3{
	font-style: italic;
	display: inline-block;
	font-weight: 400;
	color: var(--color-primary);
	font-size: 24px;
	margin: 0 4px;
}
.grupo-card h3:after{
  content: '';
  position: relative;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  display: block;
  width: 250px;
  height: 1px;
  background: var(--color-secundary);
  transition: width .3s;
	margin-bottom: 25px;
}
  .grupo-card  .line-number{
	height: 3px;
	color: var(--color-secundary);
	margin-bottom: 25px;
}
.grupo-card .icon{
	color: darkgrey;
	margin-bottom: 25px;
}
.grupo-card .card-descripcion{
	
	border-top: 1px solid var(--color-secundary);
	margin: 0 15px;
	color: var(--color-primary);
	font-style: italic;
	font-weight: 400;
}

.grupo-card-img .imagen-section img{
	width: 100%;
	padding-top: 45px;
}

.section-content-color{
	width: 100%;
	height: 100vh;
	background-color: #232323;
}

.panel-card-color{
	display: flex;
	align-content: center;
	padding-top: 12%;
	text-align: center;
	font-family: var(--font-primary);	
}
.section2-img{
	width: 100%;
	padding: 0;
}
.grupo-card-color{
	margin-left: 8em;
	width: 290px;
	height: 100%;
}
.grupo-card-color .numbers {
	font-size: 66px;
	font-weight: 500;
	color: white;
	margin-bottom: 0;
}
.grupo-card-color h3{
	font-style: italic;
	display: inline-block;
	font-weight: 400;
	color: white;
	font-size: 24px;
	margin: 0 4px;
}
.grupo-card-color h3:after{
  content: '';
  position: relative;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  display: block;
  width: 250px;
  height: 1px;
  background: var(--color-secundary);
  transition: width .3s;
	margin-bottom: 25px;
}


.grupo-card-color .icon{
	color: darkgrey;
	margin-bottom: 25px;
}

.panel-card .grupo-card-color h3:after{
  content: '';
  position: relative;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  display: block;
  width: 250px;
  height: 1px;
  background: var(--color-secundary);
  transition: width .3s;
	margin-bottom: 25px;
}

.grupo-card-color .card-descripcion{
	border-top: 1px solid var(--color-secundary);
	margin: 0 15px;
	color: white;
	font-style: italic;
	font-weight: 400;
	
}

.grupo-card-carousel{
	margin-left:3em;
	margin-right: 1em;
	width: 290px;
	height: 100%;
}
.grupo-card-carousel .numbers {
	font-size: 66px;
	font-weight: 500;
	color: var(--color-primary);
	margin-bottom: 0;
}
.grupo-card-carousel h3{
	font-style: italic;
	display: inline-block;
	font-weight: 400;
	color: var(--color-primary);
	font-size: 24px;
	margin: 0 4px;
}
.grupo-card-carousel h3:after{
  content: '';
  position: relative;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  display: block;
  width: 250px;
  height: 1px;
  background: var(--color-secundary);
  transition: width .3s;
	margin-bottom: 25px;
}


.grupo-card-carousel .icon{
	color: darkgrey;
	margin-bottom: 25px;
}

.panel-card .grupo-card-carousel h3:after{
  content: '';
  position: relative;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  display: block;
  width: 250px;
  height: 1px;
  background: var(--color-secundary);
  transition: width .3s;
	margin-bottom: 25px;
}

.grupo-card-carousel .card-descripcion{
	border-top: 1px solid var(--color-secundary);
	margin: 0 15px;
	color: var(--color-primary);
	font-style: italic;
	font-weight: 400;
	margin-bottom: 25px;
	
}

.panel-card-carousel{
	
	align-content: center;
	padding-top: 1%;
	text-align: center;
	font-family: var(--font-primary);	

}
/*@media only  (min-width: 320px) and (max-width:320px){*/
	.section-election{
		height: auto;
		width: 100%;
	}
	.banner-election{
		width: 100%;
		padding: 0;
	}
	.title-election{
		padding-top: 20em;
		width: 100%;
		float: left;
		margin-left: 10px;
	}
	.title-election p{
		font-size: 45px;
		margin: 0;
		display: block;
		margin-bottom: 0;
	}
	.title-election span{
		font-size: 20px;
		margin-top: -15px;
	}

	.title-election h1{
		font-size: 60px;
	}
	.section-content{
		width: 100%;
		height: auto;
		
	}
	.panel-card{
		
		margin-left: 0%;
      
	}
	.grupo-card .numbers{
		color: black;
	}
	
	.grupo-card h3{
		color: black;
	}
	.grupo-card .card-descripcion{
		color: black;
		margin-bottom: 30px;
	}
	
	.grupo-card-img img{
		max-width: 100%;
		margin-left: .07em;
		}
	
	.section-content-color{
		margin-top: 4em;
		width: 100%;
		height: auto;
		background-color: #232323;
	}
	.section2-img{
	width: 73%;
	margin-left: 7.4em;
	margin-bottom: 50px;

}
	.panel-card-color{
		margin-left: -8em;
	}
	.panel-card-color .card-descripcion{
		margin-bottom: 50px;
	}
	
	.grupo-card-carousel{
		margin-left: 2px;
		margin-top: 5em;
		margin-bottom: 20px;
	}

@media screen and (min-width:280px) and (max-width:360px){
	.section-election{
		height: auto;
		width: 100%;
	}
	.banner-election{
		width: 100%;
		padding: 0;
	}
	.title-election{
		padding-top: 20em;
		width: 100%;
		float: left;
		margin-left: 10px;
	}
	.title-election p{
		font-size: 45px;
		margin: 0;
		display: block;
		margin-bottom: 0;
	}
	.title-election span{
		font-size: 20px;
		margin-top: -15px;
	}

	.title-election h1{
		font-size: 70px;
	}
	.section-content{
		width: 100%;
		height: auto;
		
	}
	.panel-card{
		
		margin-left: 5.5%;
      
	}
	.grupo-card .numbers{
		color: black;
	}
	
	.grupo-card h3{
		color: black;
	}
	.grupo-card .card-descripcion{
		color: black;
		margin-bottom: 50px;
	}
	
	.grupo-card-img img{
		max-width: 100%;
		margin-left: -1.5em;
		}
	
	.section-content-color{
		margin-top: 4em;
		width: 100%;
		height: auto;
		background-color: #232323;
	}
	.section2-img{
	width: 75%;
	margin-left: 6.8em;
	margin-bottom: 50px;

}
	.panel-card-color{
		margin-left: -6.8em;
	}
	.panel-card-color .card-descripcion{
		margin-bottom: 50px;
	}
	
	.grupo-card-carousel{
		margin-left: 20px;
		margin-top: 0em;
		margin-bottom: 80px;
	}
}
@media screen and (min-width:380px) and (max-width:720px){
	.section-election{
		height: auto;
		width: 100%;
	}
	.banner-election{
		width: 100%;
		padding: 0;
	}
	.title-election{
		padding-top: 20em;
		width: 100%;
		float:right; 
		padding-left: 20px;
	}
	.title-election p{
		font-size: 45px;
		margin: 0;
		display: block;
		margin-bottom: 0;
	}
	.title-election span{
		font-size: 20px;
		margin-top: -15px;
	}

	.title-election h1{
		font-size: 70px;
	}
	
	.section-content{
		width: 100%;
		height: auto;
	}
	
	.panel-card{
	  width: 100%;
	  padding-left: 50px;
	  height: auto;
      
	}
	.grupo-card .numbers{
		color: black;
	}
	
	.grupo-card h3{
		color: black;
	}
	.grupo-card .card-descripcion{
		color: black;
		margin-bottom: 50px;
	}
	
	.grupo-card-img img{
		max-width: 100%;
		margin-left: -3em;
		}
	
	.section-content-color{
		margin-top: 4em;
		width: 100%;
		height: auto;
		background-color: #232323;
	}
	.section2-img{
	width: 75%;
	margin-left: 6em;
	margin-bottom: 50px;

}
	.panel-card-color{
		margin-left: -5em;
	}
	.panel-card-color .card-descripcion{
		margin-bottom: 50px;
	}
	
	.grupo-card-carousel{
		margin-left: 38px;
		margin-top: 0em;
	}
	.grupo-card-carousel .numbers{
		color: black;
	}
	
	.grupo-card-carousel h3{
		color: black;
	}
	.grupo-card-carousel .card-descripcion{
		color: black;
		margin-bottom: 80px;
		
	}
	
}

@media screen and (min-width:375px) and (max-width:375px){
	.section-election{
		height: auto;
		width: 100%;
	}
	.banner-election{
		width: 100%;
		padding: 0;
	}
	.title-election{
		padding-top: 20em;
		width: 100%;
		float:right; 
		padding-left: 20px;
	}
	.title-election p{
		font-size: 45px;
		margin: 0;
		display: block;
		margin-bottom: 0;
	}
	.title-election span{
		font-size: 20px;
		margin-top: -15px;
	}

	.title-election h1{
		font-size: 70px;
	}
	.section-content{
		width: 100%;
		height: auto;
	}
	.panel-card{
	  width: 100%;
	  padding-left: 25px;
	  height: auto;
      
	}
	.grupo-card .numbers{
		color: black;
	}
	
	.grupo-card h3{
		color: black;
	}
	.grupo-card .card-descripcion{
		color: black;
		margin-bottom: 50px;
	}
	
	.grupo-card-img img{
		max-width: 100%;
		margin-left: -1.5em;
		}
	
	.section-content-color{
		margin-top: 4em;
		width: 100%;
		height: auto;
		background-color: #232323;
	}
	.section2-img{
	width: 75%;
	margin-left: 6.5em;
	margin-bottom: 50px;

}
	.panel-card-color{
		margin-left: -6em;
	}
	.panel-card-color .card-descripcion{
		margin-bottom: 50px;
	}
	
	.grupo-card-carousel{
		margin-left: 38px;
		margin-top: 0em;
	}
	.grupo-card-carousel .numbers{
		color: black;
	}
	
	.grupo-card-carousel h3{
		color: black;
	}
	.grupo-card-carousel .card-descripcion{
		color: black;
		margin-bottom: 80px;
		
	}
}
@media screen and (min-width:540px) and (max-width:540px){
	.section-election{
		height: auto;
		width: 100%;
	}
	.banner-election{
		width: 100%;
		padding-top: 10em;
	}
	.title-election{
		margin-top: -43em;
		width: 100%;
		float:right; 
		padding-left: 80px;
	}
	.title-election p{
		font-size: 45px;
		margin: 0;
		display: block;
		margin-bottom: 0;
	}
	.title-election span{
		font-size: 20px;
		margin-top: -15px;
	}

	.title-election h1{
		font-size: 70px;
	}
	.panel-card{
	  width: 100%;
	  padding-left: 7em;
	  height: auto;
      
	}
	.grupo-card .numbers{
		color: black;
	}
	
	.grupo-card h3{
		color: black;
	}
	.grupo-card .card-descripcion{
		color: black;
		margin-bottom: 50px;
	}
	
	.grupo-card-img img{
		max-width: 100%;
		margin-left: -7em;
		}
	
	.section-content-color{
		margin-top: 12em;
		width: 100%;
		height: auto;
		background-color: #232323;
	}
	.section2-img{
	width: 80%;
	margin-left: 4em;
	margin-bottom: 50px;

}
	.panel-card-color{
		margin-left: -1.8em;
	}
	.panel-card-color .card-descripcion{
		margin-bottom: 50px;
	}
	
	.grupo-card-carousel{
		margin-left: -1em;
		margin-top: 5em;
	}
	.grupo-card-carousel .numbers{
		color: black;
	}
	
	.grupo-card-carousel h3{
		color: black;
	}
	.grupo-card-carousel .card-descripcion{
		color: black;
		
	}
}
@media screen and (min-width:768px) and (max-width:960px){
	.section-election{
		height: auto;
		width: 100%;
	}
	.banner-election{
		width: 100%;
		padding-top: 16em;
	}
	.title-election{
		margin-top: -55em;
		width: 100%;
		float:right; 
		padding-left: 80px;
	}
	.title-election p{
		font-size: 5em;
		margin: 0;
		display: block;
		margin-bottom: 0;
	}
	.title-election span{
		font-size: 2em;
		margin-top: -20px;
	}

	.title-election h1{
		font-size: 7em;
	}
	
	.section-content{
		padding-top: -5em;
		height: auto;
	}
	.panel-card{
	  width: 100%;
	  padding-left: 28px;
	  height: auto;
      
	}
	.grupo-card .numbers{
		color: black;
	}
	
	.grupo-card h3{
		color: black;
	}
	.grupo-card .card-descripcion{
		color: black;
		margin-bottom: 50px;
	}
	
	.grupo-card-img img{
		max-width: 100%;
		margin-left: -1em;
		}
	
	.section-content-color{
		margin-top: 4em;
		width: 100%;
		height: auto;
		background-color: #232323;
	}
	.section2-img{
	width: 80%;
	margin-left: 9.5em;
	margin-bottom: 50px;

}
	.panel-card-color{
		margin-left: -8em;
	}
	.panel-card-color .card-descripcion{
		margin-bottom: 50px;
	}
	
	.grupo-card-carousel{
		margin-left: 30px;
		margin-top: 0em;
	}
	.grupo-card-carousel .numbers{
		color: black;
	}
	
	.grupo-card-carousel h3{
		color: black;
	}
	.grupo-card-carousel .card-descripcion{
		color: black;
		margin-bottom: 80px;
	}
}
@media screen and (min-width:980px) and (max-width:1024px){
	.section-election{
		height: auto;
		width: 100%;
	}
	.title-election{
		margin-top: -43em;
		width: 100%;
		float:right; 
		padding-left: 80px;
	}
	.title-election p{
		font-size: 5em;
		margin: 0;
		display: block;
		margin-bottom: 0;
	}
	.title-election span{
		font-size: 2em;
		margin-top: -20px;
	}

	.title-election h1{
		font-size: 7em;
	}
	
	.section-content{
		padding-top: -30em;
		height: auto;
	}
	.panel-card{
	  width: 100%;
	}
	.grupo-card .numbers{
		color: black;
	}
	
	.grupo-card h3{
		color: black;
	}
	.grupo-card .card-descripcion{
		color: black;
		margin-bottom: 100px;
	}
	
	.grupo-card-img img{
		width: 100%;
		
		}
	
	.section-content-color{
		width: 100%;
		height: auto;
		background-color: #232323;
		
	}
	.section2-img{
	width: 90%;
	margin-left: 10em;

}
	.panel-card-color{
		margin-left: -10em;
		padding-right: 8em;
		
	}
	.panel-card-color .card-descripcion{
		margin-bottom: 100px;
	}
	
	.grupo-card-carousel{
		margin-left: 0;
		margin-top: 2em;
		margin-bottom: 100px;
	}
	.grupo-card-carousel .numbers{
		color: black;
	}
	
	.grupo-card-carousel h3{
		color: black;
	}
	.grupo-card-carousel .card-descripcion{
		color: black;
		
	}
}

/*---------------------Election End---------------------------*/


/*---------------------Evolution Star---------------------------*/

.section-mision{
	padding-top: 5.2em;
	width: 100%;
	height: auto;
}
.img-mision{
	padding: 0;
	margin: 0;
	height: auto;
}
.img-evolution{
	padding-top: 2em;
	width: 100%;
	height: auto;
}

.background-animate{
	background: url('../img/fondo-evolution.png') no-repeat right top;
    background-size: cover;
    max-height: 100%;   
  	position: relative;
}

.titulo-evolution h1{
	font-family: var(--font-secudary);
	font-size: 50px;
	font-weight: 600;
	font-style: normal;
	text-decoration: underline;
	color: white;
	text-transform: uppercase;
	letter-spacing: 3px;
	display: flex;
	justify-content: center;
	
}


.titulo-evolution p{
	padding-top: 2em;
	line-height: 24px;
	font-size: 16px;
	text-align: justify;
	color: white;
	margin: 10px;
	font-family: var(--font-primary);
	font-weight: normal;
	letter-spacing: 1px;
}
.section-vision{
	width: 100%;
}
.fondo{
	background-color: #232323;
	margin: 0;
	padding: 0;
}

.img-container{
	margin: 0;
	padding: 0;
}
.img-evolution-vision{
	padding: 0;
	margin: 0;
	width: 100%;
}

.section-descripcion-evolution{
	width: 100%;
	height: 500px;
	display: flex;
	align-items: center;
}

.section-descripcion-evolution #text-descrip{
	text-align: center !important;
	font-family: var(--font-secudary);
	font-weight: 600;
	color: #9C9B9B;
}

.section-descripcion-evolution #text-descrip h1{
	font-size: 60px;
	text-transform: uppercase;
}

.section-content-tree{
	margin-top: 3em;
	background: #F5F5F5;
	text-align: center;
	padding-bottom: 4em;
}

#text-tree-header{
	top: 0.5em;
	font-family: var(--font-secudary);
	font-weight: 600;
	color: #9C9B9B;
}

#section-img-infraestructura{
	margin-top: 4em;
}

.img-tree{
	padding-top: 10em;
}

#img1{
	box-shadow: 15px 15px 20px rgba(0, 0, 0, 0.10);
}

#img3{
	box-shadow: -15px 15px 20px rgba(0, 0, 0, 0.10);
}

#infraestructura{
	margin-top: 4em;
}

#infraestructura h1{
	font-family: var(--font-secudary);
	font-weight: 600;
	font-size: 40px;
	color:#6F6F6E;
}

#infraestructura p{
	font-family: var(--font-primary);
	font-weight: normal;
	color: #6F6F6E;
	font-size: 15px;
	text-align: justify;
	padding-top: 2.5em;
}

#infraestructura-carusel{
	padding-top: 3em;
	padding-bottom: 3em;
}

.fond-evolution-i{
	background: url('../img/fond-evolution-i.png') no-repeat right top;
	background-size: cover;
	max-height: 100%;
}

@media screen and (min-width: 280px) and (max-width: 720px){
	.section-mision{
	width: 100%;
	padding-top: 4.1em;
	height: auto;
	margin-bottom: 50px;
}

.section-descripcion-evolution #text-descrip h1{
	padding-top: 1em;
	font-size: 30px;
	text-transform: uppercase;
}

#infraestructura h1{
	font-family: var(--font-secudary);
	font-weight: 600;
	font-size: 30px;
	color:#6F6F6E;
	align-self: center;
}

	.titulo-evolution{   
	display: block;
	padding-top: 2.5em;
}
	.titulo-evolution h1{   
	font-size: 30px;
	align-items: center;
}
	.titulo-evolution p{
		font-size: 14px;
		padding: 25px 13.8px;
	}
	.section-vision{
	width: 100%;
	margin-bottom: 20px;
	
}

.img-tree,
.img-four{
	padding-top: 2em;
}


#img1{
	box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.10);
}

#img3{
	box-shadow: -5px 5px 8px rgba(0, 0, 0, 0.10);
}

#text-tree-header{
	display: inline-flexbox;
	font-size: 23px;
	line-height: 10px;
	font-weight: normal;
}

#infraestructura h1{
	font-size: 25px;
	display: flex;
	justify-content: center;
	text-align: center;
	
}

.section-descripcion-evolution{
	width: 100%;
	height: 280px;
	display: flex;
	align-items: center;
}

#img1{
	padding-top: 3em;
}

}
@media screen and (min-width: 768px) and (max-width: 1021px){
	.section-mision{
	width: 100%;
	padding-top: 4.2em;
	height: auto;
	margin-bottom: 50px;
	}
	.img-mision{
		width: 100%;
		margin: 0;
		padding: 0;
	}
	.img-evolution{
	padding-top: 7em;
}
	.titulo-evolution{   
		position: absolute;
		top: 8%;
		left: 8%;
		transform: translate(-5%, 5%);
}
	.titulo-evolution h1{   
	font-size: 25px;
	padding: 0 15px;
}
	.titulo-evolution p{
		font-family: var(--font-primary);
		padding: 10px 20px;
		font-weight: normal;
		
	}
	.section-vision{
	width: 100%;
	margin-bottom: 20px;
		height: auto;
	
}
	.titulo-evolution-vision{
		padding-top: 3em;
	}
	.titulo-evolution-vision h1{
		font-size: 25px;
	}
	.titulo-evolution p,
	.titulo-evolution-vision p{
		font-size: 14px;
	}

}
@media screen and (min-width: 1022px) and (max-width: 1024px){
		
.titulo-evolution{   
  position: absolute;
  top: 10%;
  left: 10%;
  transform: translate(-7%, 10%);
  
}
}

@media screen and (min-width: 1026px){
	.titulo-evolution{   
		position: absolute;
		top: 20%;
		left: 20%;
		transform: translate(-13%, 10%);
		
	  }
}

@media screen and (min-width: 2560px){
	.titulo-evolution{   
		position: absolute;
		top: 23%;
		left: 25%;
		transform: translate(-13%, 10%);
		
	  }
	  .titulo-evolution h1{
		  font-size: 6em;
	  }

	  .titulo-evolution p{
		  font-size: 2em;
		  line-height: 45px;
	  }
}
/*---------------------Evolution End---------------------------*/


/*---------------------Evolution PORTAFOLIO star---------------------------*/

.section-portafolio{
	width: 100%;
	height: auto;
}

.title-portafolio{
	display: flex;
	justify-content: center;
	font-family: var(--font-primary);
	text-transform: uppercase;
	color: black;
}
.title-portafolio h1{
	font-weight: 600;
	font-size: 50px;
	letter-spacing: 18px;
}

.evolution-video{
	padding: 0;
	margin: 0;
	width: 100%;
	height: auto;
}

.evolution-video video{
	width: 100%;
}

/*---------------------Evolution PORTAFOLIO end---------------------------*/

/*----------------------------Casos Clinicos Star----------------------------------*/
.contenedor-clientes{
 
 top: 7em;
}
.contenedor{
	flex-flow: row;
}

.section-casos{
	margin-top: 5.2em;
}

#casos{
	background: #F5F5F5;
}


.titulo-evolution h3{
	font-family: var(--font-primary);
	font-size: 30px;
	font-weight: normal;
	font-style: normal;
	color: #6F6F6E;
	display: flex;
	justify-content: center;
	
}

.titulo-evolution h2{
	font-family: var(--font-secudary);
	font-size: 60px;
	font-weight: 600;
	font-style: normal;
	color: #292929;
	text-transform: uppercase;
	display: flex;
	justify-content: center;
	
}

.contenedor-clientes{
 
 top: 7em;
}
.contenedor{
	flex-flow: row;
}

.casos-clinicos{
	padding-bottom: 1.8em;
}
.container-img-clinico{
	padding-bottom: 1.5em;
}
.titulo-casos-clinico{
	padding: 120px 0 60px 0;
}
.titulo-casos-clinico h1{
	
	font-family: var(--font-primary);
	font-weight: normal;
	font-size: 40px;
	font-style: normal;
	color: #6F6F6E;
	text-transform: uppercase;
	
}
.titulo-casos-clinico span {
	align-content: center;
    font-family: var(--font-primary);
	color: #9C9B9B;
	font-size: 13px;
	margin-bottom: 50px;
	text-transform: uppercase;
}

.container-img-clinico{
	margin: 20px 0px 0px 0px ;
	display: flex;
	justify-content: center;

}

.titulo-clinicos{
	position: relative;
	top: calc(100%/2.5);
}

.titulo-clinicos h3{
	font-family: var(--font-primary);
	font-size: 30px;
	font-weight: normal;
	font-style: normal;
	color: #6F6F6E;
	display: flex;
	justify-content: center;
	
}

.titulo-clinicos h2{
	font-family: var(--font-secudary);
	font-size: 50px;
	font-weight: 600;
	font-style: normal;
	color: #292929;
	text-transform: uppercase;
	display: flex;
	justify-content: center;
	
}
@media screen and (min-width: 280px) and (max-width: 720px){

	.section-casos{
		margin-top: 4em;
	}

	#casos{
		background: #F5F5F5;
		padding-bottom: 3em;
	}
	
	
	.contenedor-clientes{
 
 		padding-top: 5em;
}
	.titulo-casos-clinico{
	padding: 10px 0 0 0;
}
	.titulo-casos-clinico h1{
	
	font-size: 30px;
	
}
	.titulo-casos-clinico span {

	font-size: 13px;
}
	.container-img-clinico{
		display: flex;
	}
	.container-img-clinico img{
		align-content: center;
	}
}

@media screen and (min-width: 768px) and (max-width: 1024px){
	.contenedor-clientes{
 
 		padding-top: 5em;
}
	.titulo-casos-clinico{
	padding: 10px 0 0 0;
}
	.titulo-casos-clinico h1{
	
	font-size: 25px;
	font-weight: 800;
}
	.titulo-casos-clinico span {

	font-size: 11px;
}
	.container-img-clinico{
		display: flex;
	}
	.container-img-clinico img{
		align-content: center;
	}
}

.button-oculto{
	border: 2px solid black;
	border-style: groove;
	width: 150px;
	height: 38px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 50px;
	margin-top: 50px;
	
}
.button-oculto a {
	display: block;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	color: var(--color-primary);
	font-size: 20px;
	font-weight: 600
}
.button-oculto:hover{
	background-color: var(--color-primary);
	border: 2px solid var(--color-primary);
	transition: all .5s ;
}

.button-oculto a:hover{
	color: white;
	text-decoration: none;
	transition: all .3s;
}


/*----------------------------Casos Clinicos End----------------------------------*/

/*----------------------------Testimonio Star----------------------------------*/

.section-testimonio-header{
	width: 100%;
	margin-top: 6em;
	height: auto;
}

.container-video{
	padding: 0;
	margin: 0;
}
.video-testimonio video{
	
	
}
.section-testimonio{
	padding-top: 3em;
	width: 100%;
	height: 100vh;
}
.titulo-testimonio h1{
	font-family: var(--font-primary);
	font-weight: 500;
	font-size: 50px;
	font-style: italic;
	color: var(--color-primary);
}

.blockquote p {
	font-family: var(--font-secudary);
	font-size: 22px;
	font-style: normal;
} 
.blockquote i{
	color: var(--color-secundary);
	
}
.blockquote-footer{
	font-family: var(--font-primary);
	font-style: italic;
}
/*----------------------------Testimonio Star----------------------------------*/


/*----------------------------Staff Star----------------------------------*/

.contenedor-img{
	margin-top: 5.2em;
	width: 100%;
	height: auto;
}
.contenedor-img-staff{
	margin: 0;
	padding: 0;
}
.contenedor-tab-staff{
	padding-top: -20px;
}

.staff-desc{
	font-family: var(--font-primary);
	font-size: 15px;
	font-weight: normal;
	color: #9C9B9B;
	padding: 4em 4em 4em 4em;

}

.nav{
	background: url('../img/staff-menu.png') no-repeat left top;
	background-size: cover;
	max-height: 100%;   
	z-index: 100;
	line-height: 5px;
	margin-top: 2em;
 
}
.line-staff{
	padding-bottom: 0;
}

.nav-text{
	font-family: var(--font-secudary);
	font-size: 18px;
	color: #7b7b7b;
	padding: 0;
	
	
}

.nav-text:hover{
	font-weight: 500;
	color: black;
	transition: all .3s ease-in;
}

.title-nav-staff{
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	font-family: var(--font-primary);
	color: var(--color-primary);	
	margin-bottom: 80px;
}
.title-nav-staff h3{
	font-weight: 500;
	font-size: 35px;
}
.contenedor-staff{
	padding-bottom: 80px;
}
.container-profesional{
	width: 100%;
	display: flex;
	border-bottom: 3px solid #292929;
}
.container-profesional img{
	width: auto;
	height: auto;
	box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}
.container-profesional #nombre{
	padding-top: 1em;
	padding-left: 10px;
	font-family: var(--font-primary);
	font-style: 500;
	font-size: 20px;
	color: #6F6F6E;
}
.container-profesional #especialidad{
	font-size: 14px;
	color: #6F6F6E;
	font-family: var(--font-staff);
	font-weight: 500;
}

.fond-tab-content{
	background: url('../img/fondo-staff.png') no-repeat left top;
	background-size: cover;
	max-height: 100%;
}

.arrow-staff{
	float: right;
	margin-top: -1em;
	color: #292929;
	font-size: 25px;
}


.content-color{
	transition: height .5s ease-in-out;
	border-radius: 10px 0 10px 0;
	background: #ECECEC;
	max-height: 100%;
}



.descripcio-staff{
	font-family: var(--font-secudary);
	text-align: justify;
	color: var(--color-primary);
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	
	
}
.descripcio-staff p{
	width: 30em;
	font-size: 11px;
	padding-left: 10px;
	padding-right: 10px;
	text-align: justify;
}

.tab-pane-staff{
	padding: 1em 0 0 5em;
}
@media screen and (max-width: 768px) {
	.contenedor-img{
		padding-top: 6em;
	}
	.nav{
		margin-top: 10px;
		line-height: 1px;
	}

	.contenedor-staff{
		margin: 0;
	}
	.container-profesional img{
		
		height: auto;
	}
	.container-profesional #nombre{
		padding-top: 1em;
		padding-right: 10px;
		font-family: var(--font-secudary);
		font-style: 600;
		font-size: 12.5px;
		color: #6F6F6E;
	}
	.container-profesional #especialidad{
		font-size: 12.5px;
		padding-right: 10px;
		color: #6F6F6E;
		font-family: var(--font-primary);
		font-weight: normal;
	}
	
	.descripcio-staff{
		width: 20em;
		padding-left: 0;
		padding-right: 0;
	}
	.descripcio-staff p{
		width: 30em;
		font-size: 11px;
		padding-left: 10px;
		padding-right: 10px;
		text-align: justify;
	}
	.tab-pane-staff{
		padding: 0;
	}
}
@media screen and (max-width: 1024px) {
	.contenedor-img{
		margin-top: -30px;
	}
}
/*----------------------------Staff End----------------------------------*/
/*----------------------------Section Tabs Star----------------------------------*/
.content-tab{
 padding-top: 6em;
}

.img-carilla img{
	width: 100%;
}

#padding-section{
	padding-top: 4em;
}

.contenedor-img-carilla{
	margin-top: 5.2em;
}

.slick-image-carilla{
	width: 100%;
	
}

.slick-image-carilla img:hover{
	filter: grayscale(0%);
	-webkit-filter: grayscale(0%);
	filter: grayscale(0%);
	transition: all .5s ease-in;
}

.slick-image-carilla img{
	display:block;

	margin-left: auto;

	margin-right: auto;
	
	filter: grayscale(100%);
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	transition: all .5s ease-in;
	border-radius: 5px;
}

.slick-image-plastica img{
	display:block;

	margin-left: auto;

	margin-right: auto;
}

.tab-link{
	
	background: #F2F2F2;
}

.tab-link .nav-link .diente{
	width: 18px;
}
.tab-link .nav-link span{
	font-size: 12px;
	color: white;
	font-family: var(--font-secudary);

	text-transform: uppercase;
	letter-spacing: 1px;
}

.tab-link .nav-link:hover span{
	font-weight: 500;
	color: black;
	text-decoration: underline;
}
.title-box-d{
	width: 100%;
	display: flex;
	text-align: center;
	font-family: var(--font-secudary);
}
.title-box-d h2{
	font-size: 50px;
	font-weight: 600;
	color: #292929;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-align: center;
}
.title-box-d h3{
	font-size: 40px;
	font-weight: normal;
	color: #9C9B9B;
	text-transform: uppercase;
	padding-bottom: 0.5em;
	letter-spacing: 2px;
	text-align: center;
}
.tab-content p{
	font-family: var(--font-primary);
	color: #6F6F6E;
	font-size: 15px;
	font-weight: normal;
	padding-top: 15px;
	line-height: 25px;
	text-align: justify;
}

.scale-border{
	transform:scale(1);
    -ms-transform:scale(1); 
    -moz-transform:scale(1); 
    -webkit-transform:scale(1); 
    -o-transform:scale(1); 
    -webkit-transition: all 500ms ease-in-out; 
    -moz-transition: all 500ms ease-in-out; 
    -ms-transition: all 500ms ease-in-out; 
    -o-transition: all 500ms ease-in-out;    
}

.scale-border:hover{
	transform:scale(0.8);
    -ms-transform:scale(0.8); 
    -moz-transform:scale(0.8); 
    -webkit-transform:scale(0.8); 
    -o-transform:scale(0.8); 
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
     border-radius: 10px;
}

.nota{
	font-size: 10px;
	font-style: italic;
	font-family: var(--font-secudary);
	color: var(--color-primary);
	display: flex;
	align-content: center;
	padding: 0 20px;
	font-weight: 200;
}

.list-content{
	left: 40px;
	line-height: 5px;
}
.list-content i{
	color: var(--color-secundary);
}

.video-youtube{
	display: flex;
	justify-content: center;
	padding-bottom: 10px;
}
.content-color p{
	padding-top:50px;
}
.content-implante{
	padding-top: 80px;
	width: 100%;
	background-color: rgba(219,215,215,0.11);
	
}

.scroll-icon-container {
  font-size: var(--size);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  overflow: hidden;
  top: calc(var(--size) * 17.3);
  left: 0;
  right: 0;
  margin: 0 auto;
  width: calc(var(--size) * 2);
  height: calc(var(--size) * 2);
  border-radius: 0.15rem;
  background-color: white;
  box-shadow: 0 6px 12px -3px rgba(0, 0, 0, 0.3);
  z-index: 4;
}

.scroll-icon-container .icon--down-arrow {
  width: var(--size);
  height: var(--size);
}
.content-titulo-implante{
	font-family: var(--font-secudary);
	font-weight: 600;
	text-transform: uppercase;
	display: flex;
	justify-content: center;
}

.content-titulo-implante h3{
	font-size: 40px;
	padding-bottom: 10px;
	color: #292929;
	border-bottom: 2px solid #292929;
	font-weight: 400;
}

.content-implante-description{
	margin-top: 30px;
	font-family: var(--font-primary);
	padding: 0 15px 10px;
}
.content-implante-description p{
	font-size: 15px;
	color: #6F6F6E;
	letter-spacing: 1px;
	line-height: 25px;
	font-weight: normal;
}


.video-container{
	margin: 0;
	padding: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
}
.video-container video{ 
	width: 100%;
	justify-content: center;
	align-items: center;
	align-content: center;
}
.content-titulo-endodoncia{
	font-family: var(--font-secudary);
	font-weight: 600;
	text-transform: uppercase;
	display: flex;
	justify-content: center;
}
.content-titulo-endodoncia h3{
	
	font-size: 40px;
	padding-bottom: 10px;
	color: #292929;
	font-weight: bold;
	text-transform: uppercase;
	display: flex;
	justify-content: center;
	border-bottom: 2px solid #292929;
	
}
.contenedor-imagen{
	display: flex;
	justify-content: center;
	align-items: center;
}
.imagen-container{
	justify-content: center;
}

@media screen and (min-width: 280px) and (max-width: 720px){
	
.contenedor-img-carilla{
	margin-top: 4em;
}
	.imagen-container{
		padding-bottom: 10px;
	}

	.title-box-d h2{
		font-size: 35px;
		font-weight: 600;
		color: #292929;
		text-transform: uppercase;
		padding-top: 1em;
		letter-spacing: 2px;
		text-align: center;
	}
	.title-box-d h3{
		font-size: 25px;
		font-weight: normal;
		color: #9C9B9B;
		text-transform: uppercase;
		padding-bottom: 0.5em;
		letter-spacing: 2px;
		text-align: center;
	}

	.content-titulo-implante h3{
		font-size: 25px;
	}
	.video-container{
		padding-bottom: 10px;
	}
	.content-swiper{
		padding-top:10px;
	}
	
	.scroll-icon-container{
		top: calc(var(--size) * 3.7);
	}
}

@media screen and (min-width: 721px) and (max-width: 1023px){
	.scroll-icon-container{
		top: calc(var(--size) * 9.3);
	}

	.title-box-d h2{
		font-size: 33px;
		font-weight: 600;
		color: #292929;
		text-transform: uppercase;
		letter-spacing: 2px;
		text-align: center;
	}
	.title-box-d h3{
		font-size: 23px;
		font-weight: normal;
		color: #9C9B9B;
		text-transform: uppercase;
		padding-bottom: 0.5em;
		letter-spacing: 2px;
		text-align: center;
	}
}

@media screen and (min-width: 1024px) and (max-width: 1365px){
	.scroll-icon-container{
		top: calc(var(--size) * 12.7);
	}
	
}

.swiper{
	width: 100%;
}
.swipe-style{
	display: block;
	margin: auto;
	top: 10px;
	
}

.swipe-style img{
	width: 450px; 
	display: block; 
	margin: auto;
	border-radius: 5px;
/*	filter: grayscale(100%);
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	transition: all .5s ease-in;
	border-radius: 4px;*/
}

/*.swipe-style img:hover{
	filter: grayscale(0%);
	-webkit-filter: grayscale(0%);
	filter: grayscale(0%);
	transition: all .5s ease-in;
}*/
/*----------------------------Section Tabs End----------------------------------*/

/*----------------------------Contactos Star----------------------------------*/
.contenedor-img-contact{
	margin: 5.2em 0 0 0 ;
	padding: 0;
	margin-bottom: 50px;
}
.form-contact{
	width: 100%;
	height: auto;
	margin-bottom: 50px;
}

.informacion-contact{
	display: block;
	width: 100%;
}
.informacion-contact h2{
	font-size: 60px;
	font-family: var(--font-secudary);
	color: #292929;
	font-weight: 600;
	margin-bottom: 50px;
	text-transform: uppercase;
}
@media screen and (max-width: 768px){
	.informacion-contact h2{
		font-size: 40px;
	}
	.informacion-contact p{
		font-family: var(--font-primary);
		color: #6F6F6E;
		font-size: 14px;
		margin-bottom: 30px;
	}
}
.informacion-contact p{
	font-family: var(--font-primary);
	color: #6F6F6E;
	font-size: 18px;
	margin-bottom: 30px;
}
.informacion-contact p i{
	font-size: 18px;
	color: #292929;	
}
.informacion-contact span{
	color: #6F6F6E;
	text-align: center;
}
.formulario-contact p{
	color: #6F6F6E;
	font-weight: normal;
	font-family: var(--font-primary);
	font-size: 15px;
	margin-bottom: 20px;
	text-align: center;
}


.form-group input,textarea{
	font-family: var(--font-primary);
	color: #6F6F6E;
	font-weight: normal;
}

.horario{
	color: #6F6F6E;
	font-weight: normal;
	font-family: var(--font-primary);
	font-size: 15px;
	
}

.form-a #sendmessage {
  color: #D09A11;
  border: 1px solid #D09A11;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}
.form-a #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

.form-a #sendmessage.show,
.form-a #errormessage.show,
.form-a .show {
  display: block;
}

.form-a .validation {
  color: red;
  display: none;
  margin: 4px 0 20px 0;
  font-weight: 400;
  font-size: 13px;
}

.form-a label {
  color: #000000;
  position: relative;
}

.form-a select.form-control-lg:not([size]):not([multiple]) {
  height: 3.5rem;
}

.form-a .form-control {
  border-radius: 0;
  font-size: 1.1rem;
  font-weight: 300;
}

.form-a .form-control.form-control-a {
  height: 3.5rem;
}

.form-a .form-control:focus {
  box-shadow: none;
  border-color: var(--color-secundary);
}

.btn {
  transition: .5s ease;
}

.btn.btn-a {
  border-radius: 0;
  padding: 1rem 3rem;
  letter-spacing: .05rem;
}

.btn.btn-a {
	background-color: #292929;
	color: #ffffff;
	font-family: var(--font-primay);
  }
  
  .btn.btn-a:hover {
	background-color: #D09A11;
	color: #292929;
  }
.contact-map{
	padding-top: 20px;
}
/*---------------------------Contactos End----------------------------------*/

/*---------------------Footer Star---------------------------*/
.footer-site{
	width: 100%;
	height: auto;
}
footer .footer{
	background:url(../img/footer.png) no-repeat right top;
	background-size: cover;
	color: #FFFFFF;
	
	
}
.clearfix{
	padding-top: 20px;
	padding-bottom: 30px;
}
.widget-title{
	line-height: 20px;
	font-weight: 600;
	font-family: var(--font-secudary);
    font-size: 18px;
    text-decoration: underline;

}
.sub-menu{
	font-family: var(--font-primary);
    font-size: 13px;
	list-style: none;
	padding: 0px;
	margin: 0px;
	font-style: normal;	
	
}

.copyrigth{
	width: 100%;
	box-sizing: border-box;
	height: auto;
	
}
.section-copy{
	background: #292929;
	display: flex;
	
}
.clearfix-copy{
	display: block;
	justify-content: center;
	align-items: center;
	align-content: center;

}
.wrapper-copy p{
  padding-top: 10px;
  font-size: 9px;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  color: white;
  line-height: 5px;
  font-family: var(--font-primary);
  text-transform: uppercase;
}

footer a:link,
footer a:visited{
	color: #FFFFFF;
	text-decoration: none;
}
footer a:hover{
	color: var(--color-secundary);
}
.icon-container-footer{
	width: 10em;
	display: flex;
	float: right;
}

.icon-container-footer img{
	padding-left: 30px;
}

 .icon-container-social i{
	 font-size: 20px;
	 justify-content: space-between;
	 padding: 0 5px;
 }
@media screen and (max-width: 768px) {
	.wrapper-copy{
		display: block;
		margin-left: auto;
		margin-right: auto;
		line-height: 10px;
	}
	.clearfix{
		top: 15px;
	}

	.clearfix-copy{
		display: flex;
		justify-content: center;
		width: 100%;
		margin: 0;
		padding: 0;
	}
	
	
}

/*---------------------Footer End---------------------------*/

.loader{
	position: absolute;
	top: 0;
	left: 0;
	background: #292929;
	height: 100% !important;
	width: 100%;
	z-index: +999999999;
	display: flex;
	justify-content: center;
}

#anim{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 350px;
}

@media screen and (max-width: 768px){
	#anim{
		width: 200px;
	}
}