/*

Template 2099 Scenic

http://www.tooplate.com/view/2099-scenic

*/


@import url(http://fonts.googleapis.com/css?family=Dosis:300,400,500,600,700);
@import url(http://fonts.googleapis.com/css?family=Roboto:300,400,500,600,700);
@import url(https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400&display=swap);
:root {
	--primary: #1c262f;
	--primary-light: #212d37;
	--secondary: #c59a6d;
	--tertiary: #c59a6d;
	--gradient: linear-gradient(to right, #c59a6d, #c59a6d);
}

body {
  background: #ffffff;
  font-family: 'Roboto Slab', serif;
  overflow-x: hidden;
}

html, body {
  width: 100%;
  height: 100%;
}

/*---------------------------------------
  TYPOGRAPHY              
-----------------------------------------*/

h1,h2,h3,h4,h5,h6 {
  font-weight: 300;
}

h1 {
  font-size: 40px;
  font-weight: 200;
  line-height: 50px;
}

h2 {
  font-size: 30px;
  line-height: 40px;
  margin-top: 0;
}

h3 {
  font-size: 20px;
  font-weight: bold;
  line-height: 32px;
}

h4 {
  color: #505050;
  font-size: 18px;
  line-height: 28px;
}

p {
  color: #757575;
  font-size: 16px;
  font-weight: 300;
  line-height: 29px;
  letter-spacing: 0.5px;
}


/*---------------------------------------
  BUTTONS               
-----------------------------------------*/

.section-btn {
  margin: 32px 0 0 0;
  padding: 0;
}

.section-btn a,
.section-btn button {
  line-height: 45px;
  -webkit-perspective: 1000px;
  -moz-perspective: 1000px;
  perspective: 1000px;
  color: #ffffff;
  font-weight: normal;
}

.section-btn a span,
.section-btn button span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 0.5px;
  padding: 0 25px;
  background: #4dc47d;
  border-radius: 1px;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
  -webkit-transform-origin: 50% 0;
  -moz-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.csstransforms3d .section-btn a span::before,
.csstransforms3d .section-btn button span::before {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  border-radius: 1px;
  color: #ffffff;
  padding: 0 25px;
  content: attr(data-hover);
  -webkit-transition: background 0.3s;
  -moz-transition: background 0.3s;
  transition: background 0.3s;
  -webkit-transform: rotateX(-90deg);
  -moz-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  -webkit-transform-origin: 50% 0;
  -moz-transform-origin: 50% 0;
  transform-origin: 50% 0;
}

.section-btn a:hover span,
.section-btn a:focus span,

.section-btn button:hover span,
.section-btn button:focus span {
  -webkit-transform: rotateX(90deg) translateY(-22px);
  -moz-transform: rotateX(90deg) translateY(-22px);
  transform: rotateX(90deg) translateY(-22px);
}

.csstransforms3d .section-btn a:hover span::before,
.csstransforms3d .section-btn a:focus span::before,

.csstransforms3d .section-btn button:hover span::before,
.csstransforms3d .section-btn button:hover span::before {
  background: #000000;  
}



/*---------------------------------------
  GENERAL               
-----------------------------------------*/

html{
  -webkit-font-smoothing: antialiased;
}

a {
  color: #4dc47d;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

a:hover, a:active, a:focus {
  color: #000000;
  outline: none;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

::-webkit-scrollbar{
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: #252525;
}

.section-title {
  position: relative;
  padding-bottom: 22px;
}

.parallax-section {
  background-attachment: fixed !important;
  background-size: cover !important;
}

#about, #project,
#team, #contact, footer {
  background: #ffffff;
}

#about,
#team, #contact {
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
}

section {
  position: relative;
  padding: 100px 0;
}

/*---------------------------------------
  PRE LOADER              
-----------------------------------------*/

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background: none repeat scroll 0 0 #ffffff;
}

.spinner {
  border: 1px solid transparent;
  border-radius: 5px;
  position: relative;
}

.spinner:before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 1px solid #959595;
  border-top-color: #ffffff;
  animation: spinner .9s linear infinite;
}

@-webkit-@keyframes spinner {
  to {transform: rotate(360deg);}
}

@keyframes spinner {
  to {transform: rotate(360deg);}
}


/*---------------------------------------
  MENU             
-----------------------------------------*/



.custom-navbar {
  margin-bottom: 0;
  background-color: #273d51;
  padding: 20px 0;
}

.custom-navbar .navbar-brand {
  color: #f9f9f9;
  font-weight: normal;
  font-size: 25px;
}

.custom-navbar .nav li a {
  font-size: 14px;
  font-weight: normal;
  color: #f9f9f9;
  letter-spacing: 0.5px;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  padding: 0;
  margin: 15px 20px;
  text-transform: uppercase;
}

.custom-navbar .navbar-nav > li > a:hover,
.custom-navbar .navbar-nav > li > a:focus {
  background-color: transparent;
  color: #c2940a;
}

.custom-navbar .navbar-nav li a:after {
  content: "";
  position: absolute;
  display: block;
  width: 0px;
  height: 2px;
  margin: auto;
  background: transparent;
  transition: width .3s ease, background-color .3s ease;
}

.custom-navbar .navbar-nav li a:hover:after,
.custom-navbar .nav li.active > a:after {
  background: #c2940a;
  color: #c2940a;
  width: 100%;
}

.custom-navbar .nav li.active > a {
  background-color: transparent;
  color: #c2940a;
}

.custom-navbar .navbar-toggle {
  border: none;
  padding-top: 10px;
}

.custom-navbar .navbar-toggle {
  background-color: transparent;
}

.custom-navbar .navbar-toggle .icon-bar {
  background: #c2940a;
  border-color: transparent;
}

.custom-navbar img{
  padding: 0;
  margin: 0;
  max-height: 30px;
}

@media(min-width:768px) {
  .custom-navbar {
    background: 0 0; 
  }
  .custom-navbar.top-nav-collapse {
    background: #273d51;
    padding: 15px 0;
  }
}


/*---------------------------------------
  HOME             
-----------------------------------------*/


#home {

  padding: 0;
  
}

#home h1 {
	font-size: 4em;
	font-weight: 500;
  line-height: 1em; 

}

#home P {
  font-size: 1.5em;
	color: white;
  line-height: 1.2em; 
}
#home .para {
  font-size: 2em;
  width: 100%;
  padding: 5% 0 5% 0;
  line-height: 1em; 
}
#home .d-flex{
  display:flex
}

#home .p-2{padding-right:.5rem!important}

#home .my-3{
  padding: 5% 0 5% 0;
}
  
#home .btn {
 
	color: white;
	border-radius: 0;
	border-width: 2px;
	padding: 10px 30px;
	border-image-slice: 1;
	background-image: none;
	background: transparent;
	border-image-source: var(--gradient);
	box-shadow: 5px 5px 0px 0px var(--secondary);
}

#home .btn:hover {
	color: white;
	box-shadow: none;
	border-radius: 0;
	padding: 10px 30px;
	transform: translate(5px, 5px);
}




@media (min-width: 768px) {
  
}

.slider .owl-dots {
  position: absolute;
  top: 50%;
  right: 2em;
  justify-content: center;
}

.owl-theme .owl-dots .owl-dot {
  display: block;
}

.owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 7px 10px;
  border: 2px solid #d9d9d9;
  background: transparent;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background-color: #ffffff;
  border-color: transparent;
}

.slider .caption {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: left;
  background-color: rgba(20,20,20,0.2);
  height: 100%;
  color: #fff;
  cursor: e-resize;
  padding: 4em 2em 0 2em;
  
}


.slider .item {
  
  background-repeat: no-repeat;
  background-attachment: local;
  background-size: cover;
  height: 100vh;
}

.slider .item-first {
  background-image: url(../images/slider-image1.png);
}

.slider .item-second {
  background-image: url(../images/slider-image2.png);
}

.slider .item-third {
  background-image: url(../images/slider-image4.png);
}

.slider .item-second .section-btn {
  background: #292929;
}

.slider .item-second .section-btn:hover {
  background: #ffffff;
}

.slider .item-third .section-btn {
  background: transparent;
  border: 1px solid #ffffff;
}

.slider .item-third .section-btn:hover,
.slider .item-third .section-btn:focus {
  background: #ce3232;
  border-color: transparent;
  color: #ffffff;
}



#information {
  padding: 0px;
  background-image: url();
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  border-color: #c2940a;
 
}

#information .service-item {
  text-align: center;
  margin: 0px -15px;
  padding: 30px 45px;
 
}

#information .service-item h4 {
  margin-top: 45px;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

#information .service-item p {
  margin-bottom: 0px;
  color: #fff;
}

#information .first-service {
  background-color: #1c262f;
}

#information .second-service {
  background-color: #212d37;
}

#information .third-service {
  background-color: rgba(255, 255, 255, 0.75);
 
}
#information .third-service p {
  color: rgb(0, 0, 0);
}
#information .third-service h4 {
  color: rgb(0, 0, 0);
}
#information .third-service .icon {
  color: rgb(0, 0, 0);
  background-color: #000000;
}

#information .service-item .icon {
  width: 70px;
  height: 70px;
  display: inline-block;
  text-align: center;
  line-height: 74px;
  background-color: transparent;
}




/*---------------------------------------
  ABOUT              
-----------------------------------------*/

#about {
  padding-top: 200px;
  padding-bottom: 150px;
}

.about-info h3 {
  font-size: 14px;
  letter-spacing: 12px;
  text-transform: uppercase;
  margin: 0;
}


/*---------------------------------------
  PROJECT              
-----------------------------------------*/

.project-item {
  overflow: hidden;
  position: relative;
  margin-bottom: 25px;
  padding: 0;
  vertical-align: middle;
  text-align: center;
}

.project-overlay {
  background: rgba(0,0,0,0.5);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}

.project-info {
  padding: 12em 0;
}

.project-item img {
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
.project-item:hover img {
  transform: scale(1.1);
}

.project-overlay h1 {
  color: #ffffff;
  margin: 0;
}
.project-overlay h3 {
  color: #d9d9d9;
  font-size: 14px;
  letter-spacing: 0.2px;
  margin-top: 0;
}

.project-item:hover .project-overlay {
  opacity: 1;
}


/*---------------------------------------
   TEAM             
-----------------------------------------*/

#team .item {
  display: block;
  width: 100%;
  margin-bottom: 22px;
}

#team h3,
#team p {
  margin: 0;
}

.team-item {
  overflow: hidden;
  position: relative;
  margin-top: 34px;
  margin-bottom: 16px;
}

.team-item img {
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
.team-item:hover img {
  transform: scale(1.1);
}

.team-overlay {
  background: rgba(0,0,0,0.5);
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}

.team-overlay .social-icon {
  position: relative;
  top: 45%;
}
.team-overlay .social-icon li a {
  background: #ffffff;
  color: #191919;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
}

.team-item:hover .team-overlay {
  opacity: 1;
}


/*---------------------------------------
  CONTACT             
-----------------------------------------*/

#contact {
  background: url('../images/contact-bg.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center;
  z-index: 0;
}
#contact .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(34, 34, 34, 0.438);
  z-index: -1;
}

#contact {
  padding: 60px 0;
}

#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}

#contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #3b5e7e;
  font-weight: bold;
}
#contact .section-header h3 {
  
  color: #c59a6d;
}

#contact .section-header h3::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ffffff;
  bottom: 1px;
  left: calc(50% - 60px);
}

#contact .section-header h3::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #5a8ebe;
  bottom: 0;
  left: calc(50% - 20px);
}



#contact .contact-info .tel {
  
  color: #c2940a;
}

#contact .contact-info address,
#contact .contact-info p {
  margin-bottom: 0;
  color: #ffffff;
}

#contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #ffffff;
}

#contact .contact-info a {
  color: #ffffff;
}

#contact .contact-info a:hover {
  color: #c59a6d;
}

#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
  margin-bottom: 20px;
}
#contact .map {
  margin-left: auto;
  width: 100%;
  height: 400px;
  border: 3px solid #c59a6d;
}


/*---------------------------------------
  FOOTER              
-----------------------------------------*/

footer {
  border-top: 1px solid rgba(0,0,0,0.05);
  padding: 110px 0;
  padding-bottom: 80px;
  border-bottom: 5px solid #c59a6d;

}

footer .section-title {
  padding-bottom: 10px;
}

footer h2 {
  font-size: 20px;
}

footer a,
footer p {
  color: #909090;
}

footer strong {
  color: #d9d9d9;
}

footer address p {
  margin-bottom: 0;
}

.footer-info,
footer .social-icon {
  margin-top: 30px;
}

.footer-open-hour {
  background: #ce3232;
  background: url('../images/footer.jpg') center 10% no-repeat;
  background-size: cover;
  border-radius: 20px;
  margin-top: 10px;
  padding: 20px 30px 40px 30px;
  overflow: hidden;
  position: relative;
  z-index: 22;
  
}

.footer-open-hour::after {
  background: rgba(29,29,29,0.85);
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2222;
}

.footer-open-hour h2 {
  color: #ffffff;
}

.footer-open-hour p {
  color: #d9d9d9;
}

.footer-open-hour strong {
  color: #f9f9f9;
}

.footer-info .social-icon {
  position: relative;
  padding: 0;
  margin: 0;
  text-align: left;
}



/*---------------------------------------
  SOCIAL ICON             
-----------------------------------------*/

.social-icon {
  position: relative;
  padding: 0;
  margin: 0;
  text-align: center;
}

.social-icon li {
  display: inline-block;
  list-style: none;
}

.social-icon li a {
  border-radius: 100%;
  color: #292929;
  cursor: pointer;
  font-size: 18px;
  text-decoration: none;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  text-align: left;
  position: relative;
  margin: 4px 8px 0 8px;
}

.social-icon li a:hover {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}


/*---------------------------------------
  MOBILE RESPONSIVE              
-----------------------------------------*/

@media (max-width: 1200px){
  #home h1 {
    font-size: 3em;
  }
  #home .para {
    font-size: 1.5em;
    line-height: 1.5em;
  }
  #home p {
    font-size: 1em;
    line-height: 1.5em;
  }
}


@media (max-width: 992px) {

  #speakers-details  p {
    line-height: normal;
    font-size: 2em;
  
    }
 
  #home h1 {
    
    line-height: normal;
  }
  
}

@media (min-height: 1000px) {

  .ex-header {
    padding-top: 13rem;
    padding-bottom: 8rem;
    background: url("../images/Equipo/cover.JPG") 50% -10% no-repeat fixed;
    padding: 80px 0 60px 0;
    background-size:contain;
    text-align: center;
    
}
    
}


@media (max-width: 980px) {

  .ex-header {
    padding-top: 13rem;
    padding-bottom: 8rem;
    background: url("../images/Equipo/cover.JPG") 50% 0% no-repeat fixed;
    padding: 80px 0 60px 0;
    background-size:contain;
    text-align: center;
    
}

  h1 {
   
    line-height: inherit;
    
  }


  #about {
    padding-top: 120px;
    padding-bottom: 100px;
  }

  .project-info {
    padding: 4em 0;
  }

  footer {
    text-align: center;
  }
  footer .social-icon {
    margin-top: 32px;
  }
  .footer-info .social-icon {
    text-align: center;
  }
}

@media (max-width: 770px) {
  
  
}

@media (max-width: 767px) {

 
  
  .custom-navbar {
    padding: 10px 0;
  }
  .custom-navbar .nav li a {
    display: inline-block;
    line-height: 15px;
    margin-bottom: 0;
  }
  .custom-navbar .nav li:last-child a {
    margin-bottom: 5px;
  }

  .project-info {
    padding: 10em 0;
  }

  .footer {
    padding: 60px 0;
    padding-bottom: 60px;
  }


  .footer-open-hour {
    right: 0;
    bottom: 0;
    margin-top: 30px;
  }

  #home .home-text {
   left: 0%;
   padding: 60px 0 20px 0;
  }

  #home img {
    width: 257px;
    height: 160px;
    padding-bottom: 30px;
    display: block;
    margin: auto;
  }

  

}


@media (max-width: 580px) {

  .owl-dot{
    visibility:hidden;
  }

  .ex-header {
    padding-top: 13rem;
    padding-bottom: 8rem;
    background: url("../images/Equipo/cover.JPG") 50% 10% no-repeat fixed;
    padding: 80px 0 60px 0;
    background-size:contain;
    text-align: center;
    
}

  #speakers-details  p {
    line-height: normal;
    font-size: 1.5em;
  
    }

  .about-info h3 {
    font-size: 12px;
    letter-spacing: 6px;
  }

  .project-info {
    padding: 5em 0;
  }

  #home img {
    width: 330px;
    height: 206px;
    padding-bottom: 0px;
    padding-left: 0%;
  }

  #price .pricing__item {
    
    padding: 20px 10px 20px 10px;
  }
 
 
}

@media (max-width: 400px) {

  .ex-header {
    padding-top: 13rem;
    padding-bottom: 8rem;
    background: url("../images/Equipo/cover.JPG") 50% 6% no-repeat fixed;
    padding: 80px 0 60px 0;
    background-size:cover;
    text-align: center;
    
}


#home h1 {
	font-size: 2em;
	font-weight: 500;
  line-height: 1em; 

}

#home P {
  font-size: 1em;
	color: white;
  line-height: 1.2em; 
}

#home .para {
  font-size: 1.5em;
  width: 100%;
  padding: 5% 0 5% 0;
  line-height: 1em; 
}

}




@media (max-height: 500px) {

#home{
  height: 150vh;
}
  .slider .item {
  
    height: 150vh;
  }
 

}