/*Alexander Soriano*/
#brochure{
margin-left: 48.2%;
    width: 100px;
    position: fixed;
    top: 30vh;
    z-index:500;
}
@media screen and (max-width: 500px){
	#wsp{
		display: block;
	}
        #brochure{
          margin-left: 45%;
          width: 60px !important;
        }
}
#inicio h2{
	font-family: 'Montserrat', cursive;
	color: orange;
	font-size: 40px;
}
#inicio p{
	color: black;
	font-size: 20px;
	font-family: 'Comfortaa', cursive;
}
#inicio a{

}

#wsp{
	
	width: 50px;
	position: fixed;
	top: 80vh;
	left: 85%;
}
.gallery
{
    display: inline-block;
    margin-top: 20px;
}
.button__holder {
	font-family: 'Comfortaa', cursive;
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: left;
  background-color: white;
}
.button__holder:after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  
}
.button__holder h2 {
  margin-right: 1em;
  text-align: center;
  color: #8A3B58;
}

.plus {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  color: #1a1a1a;
  background: orange;
  border-radius: 50%;
  border: none;
  -webkit-transition: box-shadow 400ms cubic-bezier(0.2, 0, 0.7, 1), -webkit-transform 200ms cubic-bezier(0.2, 0, 0.7, 1);
  transition: box-shadow 400ms cubic-bezier(0.2, 0, 0.7, 1), -webkit-transform 200ms cubic-bezier(0.2, 0, 0.7, 1);
  transition: box-shadow 400ms cubic-bezier(0.2, 0, 0.7, 1), transform 200ms cubic-bezier(0.2, 0, 0.7, 1);
  transition: box-shadow 400ms cubic-bezier(0.2, 0, 0.7, 1), transform 200ms cubic-bezier(0.2, 0, 0.7, 1), -webkit-transform 200ms cubic-bezier(0.2, 0, 0.7, 1);
}
.plus:after {
  content: "+";
  font-size: 2.5em;
  line-height: 1.1em;
}
.plus:hover {
      transform: rotate(45deg);
    box-shadow: 0 0 1px 15px rgba(247, 150, 6, 0.46), 0 0 1px 30px rgba(255, 165, 0, 0.36), 0 0 1px 45px rgba(255, 165, 0, 0.36);
}

.plus2 {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  color: #1a1a1a;
  background: white;
  border-radius: 50%;
  border: none;
  -webkit-transition: box-shadow 400ms cubic-bezier(255, 255, 255, 1), -webkit-transform 200ms cubic-bezier(255, 255, 255, 1);
  transition: box-shadow 400ms cubic-bezier(255, 255, 255, 1), -webkit-transform 200ms cubic-bezier(255, 255, 255, 1);
  transition: box-shadow 400ms cubic-bezier(255, 255, 255, 1), transform 200ms cubic-bezier(255, 255, 255, 1);
  transition: box-shadow 400ms cubic-bezier(255, 255, 255, 1), transform 200ms cubic-bezier(255, 255, 255, 1), -webkit-transform 200ms cubic-bezier(0.2, 0, 0.7, 1);
}
.plus2:after {
  content: "+";
  font-size: 2.5em;
  line-height: 1.1em;
}
.plus2:hover {
	transition: all 0.3s linear;
      transform: rotate(45deg);
    box-shadow: 0 0 1px 15px rgba(255, 255, 255, 0.46), 0 0 1px 30px rgba(255, 255, 255, 0.36), 0 0 1px 45px rgba(255, 255, 255, 0.36);
}
/*SERVICIOS*/
#servicios{
	background: orange;
	padding: 25px 50px;
}
#servicios h2{
	font-family: 'Montserrat', cursive;
	color: white;
	font-size: 50px;
}
#servicios li{
	font-family: 'Comfortaa', cursive;
	color: white;
	font-size: 30px;
}
#servicios img {
 margin-top: -26px;
  height: auto;
}
#servicios h3{
	font-family: 'Comfortaa', cursive;
	color: white;
	font-size: 30px;

}
/*PROYECTOS*/
#proyectos{
	background: white;
}
#proyectos h2{
	font-family: 'Comfortaa', cursive;
	color: #26569e;
	text-align: center;
	font-size: 50px;
}
.description {
	margin-top: 24px;
}
.description p{
	text-align: center;
	font-weight: 400;
	font-size: 16px;
}


/*With :after */
figure.test {	
	display: inline-block;
	position: relative;
	overflow: hidden;	
	text-align: center;		
	cursor: pointer;
}
figure.test img {
	width: 100%;
	height: 100%;
}
figure.test figcaption {
	position: absolute;
	top: 50%;
	left: 22.5%;
	right: 22.5%;	
	width: 200px;
	opacity: 0;
	z-index: 1;
	transition: all 0.8s ease-out;
	transition-delay: 0.2s;
}
figure.test:after {
	display: inline-block;
	position: absolute;
	content: "";
	top: 7%;
	left: 10%;
	right: 10%;
	bottom: 7%;
	background: white;
	opacity: 0;
	transition: all 0.8s ease-out;
}
figure.test:hover:after {
	opacity: 0.9;
}
figure.test:hover figcaption {
	transform: translateY(-50%);
	opacity: 1;
}

#rotate {
	perspective: 500px;
}
#rotate:after {
	transform: rotateX(90deg);
	transition: all 0.6s ease-in-out;
}
#rotate:hover:after {
	transform: rotateX(0deg);
}
#rotate figcaption {	
	transition: all 0.6s ease-in-out;
	transform: translateY(-50%) rotateX(90deg);
}
#rotate:hover figcaption {
	transform: translateY(-50%) rotateX(0);
}
.center {
    margin-top:50px;   
}

.modal-header {
	padding-bottom: 5px;
}

.modal-footer {
    	padding: 0;
	}
    
.modal-footer .btn-group button {
	height:40px;
	border-top-left-radius : 0;
	border-top-right-radius : 0;
	border: none;
	border-right: 1px solid #ddd;
}
	
.modal-footer .btn-group:last-child > button {
	border-right: 0;
}
/*Without :after*/
.frame {
	text-align: center;	
	position: relative;
	cursor: pointer;	
	perspective: 500px; 
}
.frame img {
	width: 100%;
	height: 100%;
}
.frame .details {
	width: 75%;
	height: 80%;	
	padding: 5% 10%;
	position: absolute;	
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotateY(90deg);
	transform-origin: 50%;
	background: rgba(255,255,255,0.9);	
	opacity: 0;
	transition: all 0.4s ease-in;
	
}
.frame:hover .details {
	transform: translate(-50%, -50%) rotateY(0deg);
	opacity: 1;
}

/*Effect without Perspective*/
.frame#wth {
	perspective: none;
}
/*FOOTER*/
footer{
	background: #26569e;
	color: white;
}
footer h3{
	color: orange;
	font-family: 'Comfortaa', cursive;
	font-size: 25px;
	font-weight: bold;
}
footer p{
	font-family: 'Roboto', cursive;
	text-align: justify;
	font-weight: bold;
}
footer a{
	color: white;
}



/*NOOSTROSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS*/
#titulo{
	background-attachment: fixed;
	background-position: cover;
	background-size: 100%;
	height: 380px;
	width: 100%;
}
#titulo .container{
	background: rgba(2, 68, 169, 0.5);
	width: 100%;
	height: 380px;
}
#titulo h1{
	margin-top: 211px;
	color: white;
	font-family: 'Montserrat', cursive;
	font-size: 40px;
	text-align: center;
}
#mision img{
	width: 50%;
	margin-left: 25%;
}
#mision h2{
	color: #26569e;
	font-family: 'Montserrat', cursive;
	font-size: 30px;
	text-align: center;
}
#mision p{
	font-family: 'Comfortaa', cursive;
	font-size: 15px;
	color: black;
	text-align: center;
}
#contacto h2{
	text-align: center;
	font-family: 'Montserrat', cursive;
	font-size: 25px;
	color: orange;
}
#contacto p{
	text-align: center;
	font-family: 'Comfortaa', cursive;
	font-size: 18px;
	color: black;
}
#servi h2{
	text-align: center;
	font-family: 'Comfortaa', cursive;
	font-size: 25px;
	color: #26569e;
}
#servi img{
	border:5px solid orange;
	border-radius: 15px 0px 15px 0px;
}
#servi h1{
	text-align: center;
	font-family: 'Montserrat', cursive;
	font-size: 18px;
	color: orange;
	margin-top: 30px;
}

/*RESPONSIVE*/
@media screen and (max-width: 450px){
	.fnc-nav{
		display: none;
	}
	.fnc-slide__content{
		display: none;
	}
}