* { 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

// html {
// 	height: 100%;
// 	font-family: 'Montserrat', sans-serif;
// }

// body {
// 	height: 100%;
// 	font-family: 'Montserrat', sans-serif;
// }

body,html {
	height: 100%;
	font-family: 'Montserrat', sans-serif;

}

#contenedor-carga{
  background-color: rgba(250, 240, 245, 0.9);
  height: 100%;
  width: 100%;
  position: fixed;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  z-index: 10000;
}

#carga{
  border: 15px solid #ccc;
  border-top-color: #2675f4;
  border-top-style: groove ; 
  height: 100px;
  width: 100px;
  border-radius: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-animation: girar 1.5s linear infinite;
  -o-animation: girar 1.5s linear infinite;
  animation: girar 1.5s linear infinite;
}

@keyframes girar {
  from { transform: rotate(0deg);}
  to {transform: rotate(360deg);}  
}


@media screen and (max-width: 550px) {
    .navbar.responsive {position: relative;}
  
    .navbar a {
      position: absolute;
      right: 0;
      top: 0;
      float: none;
      display: block;
      text-align: center;
    }
  
    .navbar .switch{
      margin-top: 30px;
    }
  }
  
  .navbar{
    background-color: #283747;
    padding: 5px;
  }
  
   
  .dropdown:hover .dropdown-menu{
          display: block;
  }
  .dropdown-menu{
          margin-top: 0;
  }

   
.dropdown:hover .dropdown-menu{
        display: block;
}
.dropdown-menu{
        margin-top: 0;
}

#return-to-top {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: rgba(73, 122, 255, .8);
        width: 50px;
        height: 50px;
        display: block;
        text-decoration: none;
        -webkit-border-radius: 35px;
        -moz-border-radius: 35px;
        border-radius: 35px;
        display: none;
        -webkit-transition: all 0.3s linear;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
}

#return-to-top i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 16px;
    top: 13px;
    font-size: 19px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#return-to-top:hover {
    background: rgb(73, 122, 255);
}
#return-to-top:hover i {
    color: #fff;
    top: 5px;
}



/*------------------
  Hero section
---------------------*/

.animacion {
    // background-color: #283747;
    background-color: rgba(40,50,71,0.7);
    position: absolute;
    bottom: 150px;
    // left: 1px;
    max-width: 800px;
}

.animacion div {
    padding: 12px;
    animation-name: animation;
    animation-duration: 4s;
}

.animacion h1 {
    font-size: 50px;
	font-weight: 600; 
	line-height: 1;
    color: #ffffff;
    
}
  

@keyframes animation {
    0%   {margin-left:-800px;}
    25%  {margin-left:-800px;}
    50%  {margin-left:0px;}
    100% {margin-left:0px;}
}

.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/banner.jpeg);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
  }

.justificar {
    text-align: justify;
}

.slider-wrapper{
    position: relative;
    height: 250px;
    width: 90%;
    margin: auto;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.slider-track{
    display: flex;
    width: calc(200px *18);
    animation: slidescroll 40s linear infinite;
}

.slider-track:hover{
    animation-play-state: paused;
}

@keyframes slidescroll{
    0%{
        transform:  translateX(0);
    }
    100%{
        transform: translateX(calc(-200px* 9));
    }
}

.slide{
    width: 200px;
    height: auto;
    display: flex;
    align-items: center;
    padding: 15px;
    overflow: hidden;
    perspective: 100px;
    cursor: pointer;
}

.slide img{
    max-width: 70%;
    min-height: 70%;
    object-fit: cover;
    // -webkit-filter: grayscale(100%);
    // filter: grayscale(100%); 
}

.slide img:hover{
    transform: translateZ(15px);
}

.logo{
    width: 50%;
    height: 50%;
}

.img-proyecto img{
    width: 350px;
    height: 300px;
}

.section-title {
    margin-top: 80px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.feature-item{
    text-align: center;
    margin-bottom: 55px;
}

.line h1:before {
    position: absolute;
    bottom: -15px;
    content: "";
    width: 50px;
    margin-left: -25px;
    height: 2px;
    left: 50%;
    background: #283747;
}

.feature-item .fa-icon {
    display: -ms-inline-flex;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 87px;
    height: 87px;
    background: #2E86C1;
    font-size: 43px;
    color: #fff;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 40px;
}

.btnservs{
    display: inline-block;
}

.btn-vermas:hover {   
    background: #283747;
    color: #fff;
}

.btn-vermas{
border: none;
border-radius: 14px;
background: #2E86C1;
color: #fff;
padding: 10px 25px;
}

.btn-vermas a {
   text-decoration: none;
   color: #ffffff;

}

.footer-top-section {
    background: #2E86C1;
}

.spad {
    padding-top: 70px;
    padding-bottom: 70px;
}
.text-white {
    color: #fff;
}

.footer-section {
    background: #283747;
    overflow: hidden;
    padding: 20px 0px;
}

.footer-menu {
    list-style: none;
    float: right;
}

ul, ol {
    padding: 0;
    margin: 0;
}

.footer-menu li {
    display: inline;
}

.footer-menu li a {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    opacity: 0.50;
    margin-left: 40px;
    text-decoration: none;
}

.copyright {
    color: #fff;
    font-size: 14px;
    padding-top: 3px;
    opacity: 0.50;
}

/*------------------
  servicios
---------------------*/

.servicio{
    text-align: center;
    margin-bottom: 55px;
}

.servicio a {
    display: -ms-inline-flex;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 87px;
    height: 87px;
    background: #2E86C1;
    font-size: 43px;
    color: #fff;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 40px;
}

.servicio a:hover {
    background: #ffffff;
    font-size: 80px;
    color: #283747;
    cursor: pointer;
}

.servicio a {
    
text-decoration: none;
color: #ffffff;

}


/*------------------
  nosotros
---------------------*/

.image-nos {
    background-image: url(../img/nosotros.jpeg);
    filter: brightness(0.7);
}

.nosotros{
    padding-bottom: 100px;
}

.cabecera{
    height: 80vh;
    min-height: 50vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

// .img-cont{
//     width: 476px;
//     height: 370px;
// }


.valor .fa-icon {
    display: inline-flex;
    width: 50px;
    height: 50px;
    background: #2E86C1;
    font-size: 25px;
    color: #fff;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 40px;
    
}

.valor{
    text-align: center;
    margin-bottom: 55px;
    overflow: hidden;
}

.valor .fa-icon:hover{

    background: #283747;

}

.accordion{
    overflow: hidden;
    border-radius: 13px;
    
}

.accordion .contentBx {
    position: relative;
    margin: 10px 20px;
    background: #283747;
    color: white;
    border-radius: 15px;
}

.accordion .contentBx .label{
    position: relative;
    padding: 10px;
    cursor: pointer;
    padding: 30px 20px 30px;
  
}

.accordion .contentBx .label::before{
    content: '+';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 1.5em;
    
    
}

.accordion .contentBx.active .label::before{
    content: '-';
    
    
}

.accordion .contentBx.active{
    background: #2E86C1;
    color: white;
    font-size: 1.6em;
    
}

.accordion .contentBx .content{
    position: relative;
    height: 0;
    transition: 0.5s;    

}

.accordion .contentBx.active .content{
    height: auto;
    background: #2E86C1;
    padding: 17px 100px 17px 20px;
    text-align: left;
	position: relative;
	width: 100%;
	padding: 17px 65px 17px 20px;
	padding-left: 41px;
	font-size: 15px;
	font-weight: 500;
	color: #fff;
	line-height: 1;
	cursor: pointer;
	border: none;
	min-height: 70px;
	border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    text-align: center;
}

.accordion .content li {
   	font-size: 15px;
	margin-bottom: 10px;
	line-height: 1.8; 
    list-style: none;
}
/*------------------
  cuerpos académicos
---------------------*/

.cuerpos hr {
	height: 5px;
}

.btngrupos {
    display: inline-block;
    border: none;
    font-size: 14px;
    font-weight: 400;
    min-width: 186px;
    padding: 17px 25px;
    border-radius: 14px;
    background: #2E86C1;
    color: #fff;
    line-height: 1;
    cursor: pointer;
    text-align: center;
    margin-bottom: 30px;
}

.btngrupos:hover {   
    background: #283747;
    color: #fff;
}

.contenedor-padding {
 padding-top: 100px;
 padding-bottom: 100px;
}

/*------------------
  cuerpo académico
---------------------*/
.cont-ava {
    text-align: center; 
    margin-left: auto;
    margin-right: auto;
}

.avatar {
    border-radius: 50%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    width: 200px;
}

.title {
  color: grey;
  font-size: 18px;
}
.card-title{
    padding-bottom: 30px;
}

.email {
    font-size: 16px;
}

.email a{
    text-decoration: none;
}

.espaciado-proyecto{
    padding:50px 0 50px 0;
}

.img-pro img{
    width: 450px;
    height: 323px;
}


/*------------------
  contacto
---------------------*/
.contact-info h3{
	padding-left: 0;
	font-size: 30px;
	border-bottom: 3px solid #283747;
	padding-bottom: 12px;
	margin-bottom: 0;
}
.contact-form h3{
	padding-left: 0;
	font-size: 30px;
	border-bottom: 3px solid #283747;
	padding-bottom: 12px;
	margin-bottom: 0;
}
.contact-info ul{
	margin: 0;
	padding: 0;
}
.contact-info ul li{
	font-size: 14px;

}
.contact-info i.fa{
	font-size: 16px;
  	padding-right: 12px;
  	width: 25px;
  	height: 38px;
}
.contact-info ul li span{
	font-weight: bold;
}
.contact-form input{
	width: 100%;
	height: 40px;
	font-size: 13px;
	color: #283747;
	padding: 12px;
	margin-bottom: 12px;
    border: 3px solid #283747;
    border-radius: 5px;
}
.contact-form textarea{
	padding:12px;
	width: 100%;
	height: 140px;
	border:0;
	margin-bottom: 12px;
    color:  #283747;
    border: 3px solid #283747;
    border-radius: 5px;
}

.contact-form input.submit-btn{
	width: 130px;
	height: 50px;
	float: right;
	font-size: 24px;
	padding: 0;
	font-weight: bold;
	
}

.contact-form input.submit-btn:hover{
    background: #283747;
    color: #fff;
}