/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 
# 
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 :root {
  --color-1azul: #15297c;
  --color-2verde: #39864B;
  --color-3verde: #19400E;
  --color-4verde: #1e251c;
  
  --color-4amarillo: #F2CB05;
  --color-5naranja: #F2B705;
  --color-verdeMenu: #28c34c;

  /*
  var(--color-1azul)
  var(--color-2verde)
  var(--color-3verde)
  var(--color-4amarillo)
  var(--color-5naranja)
  var(--color-verdeMenu)
  */

}

 @font-face {
  font-family: "MoongladeBold";
  src: url("../fonts/MoongladeBold.ttf");
}

body {
  /*font-family: "Open Sans", sans-serif;*/
  font-family: 'Inconsolata', monospace;
  color: #3f3f3f;
}

a {
  color: var(--color-2verde);
}

a:hover {
  color: var(--color-2verde);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'MoongladeBold', sans-serif;
  /*font-family: "Raleway", sans-serif;font-family: 'Inconsolata', monospace;*/
}

/*@import url('../fonts/zektonrg.otf');*/
h1 span, h2 span, h3 span, h4 span, h5 span, h6 span {
  font-family: 'Saira', sans-serif;
  /*src: url('../fonts/zektonrg.otf')*/
  /*font-family: 'Sarabun', sans-serif;*/
  /*font-family: "Raleway", sans-serif;font-family: 'Inconsolata', monospace;*/
}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 
# Back to top button
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background: var(--color-2verde);
  color: var(--color-3verde);
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: var(--color-3verde);
  color: var(--color-2verde);
}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 
# Preloader
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--color-3verde);
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid var(--color-2verde);
  border-top-color: #151515;
  border-bottom-color: #151515;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 
# Disable aos animation delay on mobile devices
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 
# Header
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  font-family: 'Saira', sans-serif;
}

#header.header-scrolled, #header.header-inner-pages {
  background: rgba(0, 0, 0, 0.8);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 1px;
  
}

#header .logo a {
  color: #fff;
}

#header .logo a span {
  /*color: var(--color-2verde);*/
}

#header .logo img {
  /*max-height: 40px;*/
}


/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 
# inicio Section
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
#inicio {
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg.jpg") top center;
  background-size: cover;
  position: relative;
}

#inicio:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#inicio .container {
  position: relative;
  padding-top: 74px;
  text-align: center;
}

#inicio h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: #fff;
  /*font-family: "Poppins", sans-serif;font-family: 'Inconsolata', monospace;*/
}

#inicio h1 span {
  color: var(--color-verdeMenu);
}

#inicio p {
  color: #fff;
}

#inicio h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
  font-size: 24px;
  color: var(--color-verdeMenu);
}

#inicio h1 span2, #inicio h2 span2 {
  font-family: 'Saira', sans-serif;
}


#inicio .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
  text-align: center;
}

#inicio .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: var(--color-verdeMenu);
}

#inicio .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

#inicio .icon-box h3 a {
  color: #fff;
  transition: ease-in-out 0.3s;
}

#inicio .icon-box h3 a:hover {
  color: var(--color-verdeMenu);
}

#inicio .icon-box:hover {
  border-color: var(--color-verdeMenu);
}

@media (min-width: 1024px) {
  #inicio {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #inicio {
    height: auto;
  }
  #inicio h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #inicio h2 {
    font-size: 20px;
    line-height: 24px;
  }
}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 
# Sections General
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif; font-family: 'Inconsolata', monospace;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #ffde9e;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Saira', sans-serif;
  color: #151515;
}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 
# nosotros
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.nosotros .content h3 {
  font-weight: 700;
  font-size: 28px;
  font-family: 'MoongladeBold', sans-serif;
  color: var(--color-3verde);
}


.nosotros .content ul {
  list-style: none;
  padding: 0;
}

.nosotros .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}

.nosotros .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: hwb(197 8% 36%);
}

.nosotros .content p:last-child {
  margin-bottom: 0;
}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 
# Clients
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.clients {
  padding-top: 20px;
}

.clients .owl-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.clients .owl-item img {
  width: 100%;
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .owl-item img:hover {
  filter: none;
  opacity: 1;
}

.clients .owl-nav, .clients .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.clients .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 40%;
  background-color: #ddd !important;
}

.clients .owl-dot.active {
  background-color: var(--color-2verde) !important;
}


/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 
# programa
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 .programa .icon-box {
  text-align: center;
  border: 1px solid #dae8e9;
  padding: 20px 10px;
  transition: all ease-in-out 0.3s;
  margin-bottom: 10px;
  -moz-border-radius: 13px;
  -webkit-border-radius: 13px;
  
  background: url("../img/ponentes/ponentes_fondo.png") top center;
  background-color: var(--color-4verde);
  /*
  background: #fff;
  background: url("../img/logo/envios.jpg") top center;
  background-image: url("../img/logo/envios.jpg");
  background-size: 100%;*/
}

.programa .icon-box img {
  margin: 0 auto;
  width: 90%;
  /*background: var(--color-2verde);*/
  border-radius: 24px;
  -moz-border-radius: 18px;
  -webkit-border-radius: 18px;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: 0.3s;
}

.programa .icon-box .icon i {
  color: #ffffff;
  font-size: 94px;
  transition: ease-in-out 0.3s;
}
.talleres .icon-box{
  background: url("../img/ponentes/taller_fondo.jpg") top center;
}

.programa .icon-box h4 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 28px;
}

.programa .icon-box h4 a {
  color: #151515;
  transition: ease-in-out 0.3s;
}

.programa .icon-box h4 a:hover {
  color: var(--color-verdeMenu);
}

.programa .icon-box h5 a{
  color: var(--color-verdeMenu);
}

.programa .icon-box p {
  color: #e6e6e6;
  line-height: 20px;
  font-size: 14px;
  margin-bottom: 0;
}

.programa .icon-box:hover {
  border-color: var(--color-2verde);
  box-shadow: 0px 0 25px 0 var(--color-4verde);
  transform: translateY(-11px);
}

.programa .talleres .icon-box h5{
  color: var(--color-verdeMenu);
}

.programa .talleres .icon-box .icon {
  background: url("../img/ponentes/ponentes_fondo.jpg") top center;
}

.programa span {
  font-family: 'Saira', sans-serif;
}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 
# fechas
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.fechas .content {
  padding: 26px 0;
}

.fechas .content h3 {
  font-weight: 600;
  font-size: 30px;
  color: var(--color-3verde);
}

.fechas .content p {
  margin-bottom: 0;
}

.fechas .content .count-box {
  padding: 10px 0;
  width: 100%;
}

.fechas .content .count-box i {
  /*display: block;*/
  font-size: 26px;
  color: var(--color-2verde);
  /*float: left;*/
}

.fechas .content .count-box span {
  font-size: 20px;
  /*line-height: 30px;*/
  /*display: block;
  font-weight: 700;*/
  color: #151515;
  /*margin-left: 50px;*/
}

.fechas .content .count-box p {
  padding: 10px 0 0 0;
  margin: 0 0 0 0px;
  font-family: "Raleway", sans-serif; font-family: 'Inconsolata', monospace;
  font-size: 16px;
  color: #3b3b3b;
}

.fechas .content .count-box a {
  font-weight: 500;
  display: block;
  margin-top: 20px;
  color: #3b3b3b;
  font-size: 15px;
  font-family: "Poppins", sans-serif;font-family: 'Inconsolata', monospace;
  transition: ease-in-out 0.3s;
}

.fechas .content .count-box a:hover {
  color: #626262;
}

.fechas .image {
  background: url("../img/counts-img.jpg") center center no-repeat;
  background-size: cover;
  min-height: 400px;
}

@media (max-width: 991px) {
  .fechas .image {
    text-align: center;
  }
  .fechas .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .fechas .image img {
    max-width: 100%;
  }
}


/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 
# costos
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 .costos {
  background: linear-gradient(rgba(2, 2, 2, 0.6), rgba(0, 0, 0, 0.9)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 40px 60px 40px 60px;
  font-size: 22px;
}

.costos h2 {
  color: #fff;
  font-size: 38px;
  font-weight: 700;
}
.costos h3 {
  color: #fff;
  font-size: 24px;
  /*font-weight: 700;*/
}

.costos p {
  color: #fff;
  /*font-family: 'Saira', sans-serif;*/
}

.costos small{
  color: rgb(165, 165, 165);
}

.costos span{
  
  font-size: 22px;
}

.costos .costos-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 24px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.costos .costos-btn:hover {
  background: var(--color-2verde);
  border-color: var(--color-2verde);
  color: #151515;
}




/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 
# registro
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 .registro {
  padding-top: 20px;
}

.registro .icon-box {
  padding-left: 15px;
}

.registro .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.registro .icon-box i {
  font-size: 48px;
  float: left;
  color: var(--color-2verde);
}

.registro .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.registro .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}



/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 
# trabajos
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 .trabajos {
  background: #fff;
  padding: 60px 0;
}
 
.trabajos .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.trabajos .member .member-img {
  position: relative;
  overflow: hidden;
}

.trabajos .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.trabajos .member .social a {
  transition: color 0.3s;
  color: #151515;
  margin: 0 3px;
  padding-top: 7px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.8);
  display: inline-block;
  transition: ease-in-out 0.3s;
  color: var(--color-2verde);
}

.trabajos .member .social a:hover {
  color: #fff;
  background: var(--color-2verde);
}

.trabajos .member .social i {
  font-size: 18px;
}

.trabajos .member .member-info {
  padding: 25px 15px;
}

.trabajos .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #151515;
}

.trabajos .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.trabajos .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.trabajos .member:hover .social {
  opacity: 1;
  bottom: 15px;
}


/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 
# articulo 
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ 
 .articulos2{
  background: linear-gradient(rgba(0, 0, 0, 0.60), rgba(0, 0, 0, 0.90)), url("../img/cta-bg.jpg") fixed center center;
  color:#FFF;
  background-size: cover;
  padding: 10px 5px 10px 5px;
  font-size: 16px;
 }

 .articulos2 h3 {
  color: var(--color-verdeMenu);
}

.articulos2 .table-responsive .thead1 {
  background-color: rgba(0, 0, 0, 0.60);
  color: var(--color-verdeMenu);
  line-height: 16px;
  font-size: 14px;
  margin-bottom: 0;
  padding: 10px;
}

.articulos2 .table-responsive .th1 {
  padding: 20px;
  width: 10%;
}
.articulos2 .table-responsive .th2 {
  padding: 20px;
  width: 40%;
}
.articulo2 .table-responsive tr {
  color: white;
  line-height: 14px;
  font-size: 12px;
  margin-bottom: 0;
  padding: 20px 15px 20px 15px;
  
}
.articulo2 .table-responsive td {
  vertical-align: top;
}

.articulos2 .table-responsive .colspan2{
  column-span: "2";

}

.articulos2 .table-responsive .conferenciaM {
  color: #8fe4fd;
  font-size: 20px; text-align: center;
}

.articulos2 .table-responsive .horas {
  color: #a9ebff;
}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 
# comite
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 .comite {
  padding: 40px 0;
  background: url("../img/comite-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.comite::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

.comite .section-header {
  margin-bottom: 30px;
}

.comite .testimonial-item {
  text-align: center;
  color: #fff;
}

.comite .testimonial-item .testimonial-img {
  width: 50%;/*135px;*/
  /*border-radius: 25%;*/
  /*border: 3px solid var(--color-2verde);*/
  margin: 0 auto;
}

.comite .testimonial-item h2 {
  font-size: 22px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--color-2verde);
}

.comite .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}



.comite .testimonial-item .quote-icon-left, .comite .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.6);
  font-size: 26px;
}

.comite .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.comite .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.comite .testimonial-item p {
  font-style: italic;
  margin: 0 auto 10px auto;
  color: #eee;
}
.comite .testimonial-item span {
  font-size: 15px;
  color: var(--color-2verde);
  margin: 0 0 10px 0;
}

.comite .owl-nav, .comite .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.comite .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4) !important;
}

.comite .owl-dot.active {
  background-color: var(--color-2verde) !important;
}

.comite .owl-carousel  {
  transition: all 10s ease 0s;


}

@media (min-width: 1024px) {
  .comite {
    background-attachment: fixed;
  }
}

@media (min-width: 992px) {
  .comite .testimonial-item p {
    width: 80%;
  }
}


/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 
# Portfolio
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #151515;
  background: var(--color-2verde);
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(21, 21, 21, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(21, 21, 21, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: var(--color-2verde);
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}



/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 
# Contact
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  background: var(--color-2verde);
  color: #ffffff;
  float: left;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
}
.contact .section-title h3{
  font-family: 'MoongladeBold', sans-serif;
  color: var(--color-3verde);
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #151515;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #484848;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 
# Breadcrumbs
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.breadcrumbs {
  padding: 15px 0;
  background: whitesmoke;
  min-height: 40px;
  margin-top: 74px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #2f2f2f;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 
# Portfolio Details
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: var(--color-2verde) !important;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 50px;
}

.portfolio-details .portfolio-description h2 {
  width: 50%;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0 0 0 0;
}

@media (max-width: 992px) {
  .portfolio-details .portfolio-description h2 {
    width: 100%;
  }
  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 
# Footer
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
#footer {
  background: black;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #151515;
  border-bottom: 1px solid #222222;
  padding: 60px 0 30px 0;
}

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

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

#footer .footer-top .footer-info h3 span {
  color: var(--color-verdeMenu);
}

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

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

#footer .footer-top .social-links a:hover {
  background: var(--color-verdeMenu);
  color: #151515;
  text-decoration: none;
}

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

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

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--color-verdeMenu);
  font-size: 18px;
  line-height: 1;
}

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

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

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: var(--color-verdeMenu);
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--color-verdeMenu);
  color: #151515;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #ffcd6b;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .container .social-link .modal i{
  color: var(--color-verdeMenu);


}


.point {
  color: var(--color-verdeMenu);
  font-family: 'MoongladeBold', sans-serif;
}