/**
* Template Name: ARTRI v.1.0
* Author: imaginestudio.es
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #555555;
}

a {
  text-decoration: none;
  color: #72a2fa;
}

a:hover {
  color: #12212b;
  text-decoration: none;
}

h2, h4, h5 {
  font-family: "Montserrat", sans-serif;
  color:black;
  font-weight:100;
}

h1 {
    font-family: "Montserrat";
    
    font-weight: bolder;
    font-size: 60px;
    text-align: center;
    color: black;
}

h3 {
    font-family: "Montserrat";
    font-weight: 100;
    font-size: 25px;
    text-align: center;
    color: black;
}



h6 {
    font-family: Times New Roman;
    font-style:italic;
    font-size:50px;
    text-align:center;
    color: slategray;

}

h7 {
    font-family: "Times New Roman", sans-serif;
    font-style: italic;
    font-weight: bold;
    font-size: 12px;
    text-align: center;
    color: #72a2fa;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: auto;
  }
}

/*--------------------------------------------------------------
# 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: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #72a2fa;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #12212b;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 130px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #fc0000;
  box-shadow: 0 6px 10px -3px rgba(0, 0, 0, 0.5);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: white;
  text-decoration: dotted;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

@media (max-width: 992px) {
  #header {
    height: 70px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu {
  width: 100%;
}

.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu .nav-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-menu .nav-logo {
  padding: 0 20px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: white;
  padding: 15px 25px;
  transition: 0.3s;
  font-size: 15px;
  font-weight:100;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #72a2fa;
  text-decoration: none;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  color: #151515;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #72a2fa;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 20px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #72a2fa;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #151515;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #72a2fa;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

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


#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
}

#hero .hero-logo {
  margin-bottom: 30px;
}

#hero h1 {
  margin: 0 0 30px 0;
  font-family: Montserrat;
  font-size: 60px;
  font-weight: bold;
  line-height: 60px;
  color: white;
}

#hero h2 {
  
  font-family: Montserrat;
  font-size: 50px;
  line-height: 50px;
  margin-bottom: 30px;
  font-weight: 100;
  color: white;
  
}

#hero img {
    height:200px;
}

#hero .btn-get-started {
  font-family: "Montserrat";
  text-transform: uppercase;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 30px 10px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #72a2fa;
  background: rgba(0, 0, 0, 0.5);
  padding-top: 150px
  
}

#hero .btn-get-started:hover {
  background: #fff;
  color: #72a2fa;
}

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

@media (max-width: 1024px) {
  #hero h1 {
    font-size: 35px;
    line-height: 35px;
  }
  #hero h2 {
    font-size: 25px;
    line-height: 25px;
    margin-bottom: 20px;
  }

  #hero img {
    height:120px;
  }


  #hero .btn-get-started {
    font-family: "Montserrat";
    text-transform: uppercase;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 30px 5px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 6px;
    color: #fff;
    background: #72a2fa;
    background: rgba(0, 0, 0, 0.5);
    padding-top: 110px
  
}


}

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

.section-bg {
  background-color: whitesmoke;
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding-bottom: 0;
  color: #151515;
}

.section-title p {
  margin-bottom: 0;
  color: #aeaeae;
}



/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.services .icon-box i {
  font-size: 48px;
  float: left;
  color: #72a2fa;
}

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

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

/*--------------------------------------------------------------
# Featured
--------------------------------------------------------------*/
.featured {
  padding: 40px 0 0 0;
  background: white;
}

.featured .nav-tabs {
  border: 0;
}

.featured .nav-link {
  border: 0;
  padding: 20px;
  color: #151515;
  transition: 0.3s;
}

.featured .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}

.featured .nav-link:hover h4 {
  color: #72a2fa;
}

.featured .nav-link p {
  font-size: 14px;
  margin-bottom: 0;
}

.featured .nav-link.active {
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.08);
}

.featured .nav-link.active h4 {
  color: #72a2fa;
}

.featured .tab-pane.active {
  -webkit-animation: slide-down 0.5s ease-out;
  animation: slide-down 0.5s ease-out;
}

@-webkit-keyframes slide-down {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slide-down {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}



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

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

.portfolio h1 {
    text-align: center;
    font-family: Montserrat;
    font-size: 90px;
    line-height: 90px;
    color: #222;
}

.portfolio h2 {
    font-family: Roboto;
    color: #72a2fa;
    font-size: 20px;
    text-align: left;
}

.portfolio h3 {
    text-align: center;
    font-family: Roboto;
    font-size: 25px;
    font-weight: 200;
    line-height: unset;
    color: #44484f;
}

.portfolio h4 {
    text-align: center;
    font-family: Open Sans;
    font-weight: 200;
    font-size: 18px;
    color: black;
}




    .portfolio #portfolio-flters li {
        cursor: pointer;
        display: inline-block;
        padding: 10px 18px 12px 18px;
        font-size: 14px;
        font-weight: 400;
        line-height: 1;
        text-transform: uppercase;
        color: #555555;
        transition: all 0.3s ease-in-out;
        margin: 0 4px 10px 4px;
        background: whitesmoke;
        border-radius: 4px;
    }

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  background: #72a2fa;
  color: #fff;
}

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

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(0, 0, 0, 0);
  border-radius: 10px;
 
}

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

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

        .portfolio .portfolio-wrap .portfolio-info::before {
            display: block;
            content: "";
            width: 48px;
            height: 48px;
            position: absolute;
            top: 35px;
            left: 35px;
            border-top: 3px solid #fff;
            border-left: 3px solid #fff;
            transition: all 0.5s ease 0s;
            z-index: 9994;
            
        }

        .portfolio .portfolio-wrap .portfolio-info::after {
            display: block;
            content: "";
            width: 48px;
            height: 48px;
            position: absolute;
            bottom: 35px;
            right: 35px;
            border-bottom: 3px solid #fff;
            border-right: 3px solid #fff;
            transition: all 0.5s ease 0s;
            z-index: 9994;
            
        }

    .portfolio .portfolio-wrap .portfolio-info h4 {
        font-family: Montserrat;
        font-size: 32px;
        color: #fff;
        font-weight: bolder;
    }

    .portfolio .portfolio-wrap .portfolio-info p {
        color: #ffffff;
        font-family: Open Sans;
        font-size: 18px;
        font-weight: 100;
        padding: 0;
        margin: 0;
        justify-content: center;
        align-items: center;
    }

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

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

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #72a2fa;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

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

.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

@media (max-width: 992px) {


    .portfolio h3 {
        text-align: justify;
        font-family: Roboto;
        font-size: 20px;
        font-weight: 200;
        line-height: unset;
        color: #44484f;
    }

    .portfolio h5 {
        font-family: Inconsolata;
        color: black;
        font-weight: bolder;
        font-size: 80px;
        text-align: left;
    }
}


/*--------------------------------------------------------------
# impact
--------------------------------------------------------------*/

.impact {
}

    .impact .container-impact {
        background-color: #12212b;
        border-radius: 30px;
        padding: 50px 50px 50px 50px;
    }

    .impact .impact-item {
        background-color: white;
        box-shadow: 0 4px 10px -3px rgba(0, 0, 0, 0.3);
        border-radius: 10px;
        margin: 20px 5px 20px 5px;
        max-width: 320px;
    }

        .impact .impact-item impact-img {
            align-content: center;
            justify-content: center;
            max-height: 150px;
        }


    .impact .impact-item h1 {
        text-align: center;
        font-family: Montserrat;
        font-size: 90px;
        color: #222;
    }


    .impact .impact-item h3 {
        padding-top: 1px;
        text-align: center;
        font-family: Montserrat;
        font-weight: bold;
        font-size: 25px;
        color: #222;
    }

    .impact .impact-item h4 {
        text-align: center;
        font-family: Open Sans;
        font-weight: 200;
        font-size: 20px;
        color: black;
        margin: 40px 10px 50px 10px;
    }



    .impact video {
        max-height: 500px;
    }

.impact .video-box {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 400px;
    position: relative;
}



    


.impact .media-logo{
    max-width:600px;
    padding-top:100px;
    padding-bottom:40px;
}

.impact h1 {
    text-align: center;
    font-family: Montserrat;
    font-size:90px;
    line-height: 180px;
    color: #222;
}

.impact h2 {
    text-align: center;
    font-family: Montserrat;
    font-weight: bolder;
    font-size:50px;
    color: #222;
}

.impact h3 {
    padding-top: 50px;
    text-align: center;
    font-family: Montserrat;
    font-weight: bold;
    font-size:30px;
    color: #222;

}

.impact h4 {
    text-align: center;
    font-family: Open Sans;
    font-weight:200;
    font-size:20px;
    color: black;
    margin-bottom:20px;
   
}

.impact h5 {
    text-align: center;
    font-family: Open Sans;
    font-weight:300;
    font-size:25px;
    color: black;
    margin-top: 30px;

}

.impact h6 {
    text-align: left;
    font-family: Roboto;
    font-size:50px;
    font-weight:bolder;
    color: #72a2fa;
}

.impact h7 {
    text-align:center;
    font-family: Roboto;
    font-size:120px;
    line-height: 180px;
    color: white;
}

.impact i{
    align-content: center;
    max-height:100px;
}

.impact .impact-item a{
    align-content: center;
    max-height:100px;
}

@media (max-width: 1200px) {
    .impact .media-logo {
        max-width: 320px;
        padding-top: 60px;
        padding-bottom: 40px;
    }


    .impact video {
        max-height: 180px;
    }

    .impact h1 {
        text-align: center;
        font-family: Montserrat;
        font-size: 52px;
        line-height: 180px;
        color: #222;
    }

    .impact h2 {
        text-align: center;
        font-family: Montserrat;
        font-weight: bolder;
        font-size: 30px;
        color: #222;
    }

    .impact h3 {
        padding-top: 50px;
        text-align: center;
        font-family: Montserrat;
        font-weight: bold;
        font-size: 28px;
        color: #222;
    }

    .impact h4 {
        text-align: justify;
        font-family: Open Sans;
        font-weight: 200;
        font-size: 20px;
        color: black;
    }

    .impact h5 {
        text-align: center;
        font-family: Open Sans;
        font-weight: 300;
        font-size: 25px;
        color: black;
        margin-top: 30px;
    }

    .impact h6 {
    text-align: left;
    font-family: Roboto;
    font-size:25px;
    font-weight:bolder;
    color: #72a2fa;
}
    .impact h7 {
        font-family: Roboto;
        font-size: 25px;
        font-weight: bolder;
        color: #72a2fa;
        margin: 40px 30px 30px 30px;
    }

    .impact .container-impact{
    background-color: #12212b;
    border-radius: 30px;
    padding: 25px 25px 25px 25px;
    border: 6px solid white;
    
}

    

    .impact .impact-item {
        background-color: white;
        box-shadow: 0 4px 10px -3px rgba(0, 0, 0, 0.3);
        border-radius: 10px;
        margin: 20px 10px 10px 10px;
        max-width: 200px;
    }

        .impact .impact-item h1 {
            text-align: center;
            font-family: Montserrat;
            font-size: 90px;
            color: #222;
        }


        .impact .impact-item h3 {
            padding-top: 1px;
            text-align: center;
            font-family: Montserrat;
            font-weight: bold;
            font-size: 25px;
            color: #222;
        }

        .impact .impact-item h4 {
            text-align: center;
            font-family: Open Sans;
            font-weight: 200;
            font-size: 20px;
            color: black;
            margin: 40px 10px 50px 10px;
        }

    
}

@media (max-width: 1400px) {
    .impact .impact-item {
        background-color: white;
        box-shadow: 0 4px 10px -3px rgba(0, 0, 0, 0.3);
        border-radius: 15px;
        margin: 20px 10px 10px 10px;
        max-width: 250px;
    }


}

    /*--------------------------------------------------------------
# Method
--------------------------------------------------------------*/
    .method .method-list {
        padding: 0;
        list-style: none;
    }

    .method .method-item {
        background-color: white;
        box-shadow: 0 4px 10px -3px rgba(0, 0, 0, 0.3);
        border-radius: 30px;
        margin: 20px 10px 10px 10px;
        max-width: 300px;
        align-content: center;
        /justify-items:center;
    }

    .method h3 {
        text-align: center;
        font-family: Roboto;
        font-size: 25px;
        font-weight: 200;
        line-height: unset;
        color: #44484f;
    }

    .method h5 {
        text-align: left;
        font-family: Inconsolata;
        font-size: 150px;
        font-weight: bolder;
        color: black;
    }

    .method .method-list li {
        //border-bottom: 1px solid #eee;
        margin-bottom: 0px;
        padding-bottom: 0px;
        list-style: disc;
        font-size: 20px;
        color: #72a2fa;
        /padding-left: 10px;
    }

    .method .method-list a {
        display: block;
        position: relative;
        font-family: Roboto;
        font-size: 60px;
        line-height: 60px;
        font-weight: bold;
        padding-right: 25px;
        cursor: pointer;
        color: white;
    }

    .method .method-list a2 {
        display: block;
        position: relative;
        font-family: Roboto;
        font-size: 28px;
        line-height: unset;
        font-weight: bold;
        padding-right: 25px;
        cursor: pointer;
        color: black;
    }

    .method .method-list i {
        font-size: 24px;
        position: absolute;
        right: 0;
        top: 0;
    }

    .method .method-list p {
        margin-bottom: 0;
        padding: 10px 0 0 0;
        font-size: 20px;
        font-family: Open Sans;
        font-weight: 100;
        text-align: justify;
        line-height: 35px;
        color: white;
    }

    .method .method-list p2 {
        margin-bottom: 0;
        padding: 10px 0 0 0;
        font-size: 18px;
        font-family: Open Sans;
        font-weight: 100;
        text-align: justify;
        line-height: 35px;
        color: #98a2b3;
    }

    .method .method-list .icon-show {
        display: none;
    }

    .method .method-list a.collapsed {
        color: white;
    }

    .method .method-list a2.collapsed {
        color: #72a2fa;
    }

    .method .method-list a.collapsed:hover {
        color: #72a2fa;
    }

    .method .method-list a2.collapsed:hover {
        color: #72a2fa;
    }

    .method .method-list a.collapsed .icon-show {
        display: inline-block;
    }

    .method .method-list a2.collapsed .icon-show {
        display: inline-block;
    }

    .method .method-list a.collapsed .icon-close {
        display: none;
    }

    .method .method-list a2.collapsed .icon-close {
        display: none;
    }

    @media (max-width: 992px) {
        .method .method-list a {
            display: block;
            position: relative;
            font-family: Roboto;
            font-size: 40px;
            line-height: 40px;
            font-weight: bold;
            padding-right: 25px;
            cursor: pointer;
            color: white;
        }

        .method .method-list p {
            margin-bottom: 0;
            margin-right: 15px;
            padding: 10px 0 0 0;
            font-size: 15px;
            font-family: Open Sans;
            font-weight: 100;
            /text-align: justify;
            line-height: 18px;
            color: white;
        }

        .method .method-list li {
            //border-bottom: 1px solid #eee;
            margin-bottom: 0px;
            padding-bottom: 0px;
            justify-content: center;
        }

        .method h3 {
            text-align: justify;
            font-family: Roboto;
            font-size: 20px;
            font-weight: 200;
            line-height: unset;
        }


        .method h5 {
            text-align: left;
            font-family: Inconsolata;
            font-size: 80px;
            font-weight: bolder;
            color: black;
        }

        .method .method-item {
            background-color: white;
            box-shadow: 0 4px 10px -3px rgba(0, 0, 0, 0.3);
            border-radius: 30px;
            margin: 20px 10px 10px 10px;
            max-width: 300px;
            align-content: center;
            /justify-items:center;
        }
    }

    /*--------------------------------------------------------------
# MICROSITE 1
--------------------------------------------------------------*/
.microsite-portada {
    padding-top: 130px;
    padding-bottom: 130px;
    background: url("assets/img/ExampleMicrosite_2/bg_image_1.jpg") no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
}

    .microsite-portada .titulo-portada {
        text-align: center;
        color: #fff;
    }

    .microsite-portada h1 {
        text-align: center;
        font-family: Montserrat;
        font-size: 90px;
        line-height: 90px;
        color: #22222;
    }

    .microsite-portada .titulo-portada h1 {

    font-family: Montserrat;
    font-size: 100px;
    font-weight: bold;
    color: white;
}

.microsite-portada .titulo-portada h2 {
    font-family: Montserrat;
    font-size: 60px;
    color: white;
    /margin: 0 0 15px 0;
}


.microsite-portada .titulo-portada h3 {
    font-family: Montserrat;
    font-size: 75px;
    font-weight: bold;
    /margin: 10px 0 5px 0;
    color: white;
}

.microsite-portada .titulo-portada h4 {
    font-family: Montserrat;
    font-size: 50px;
    font-weight: bold;
    color: white;
    /margin: 0 0 15px 0;
}

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

@media (max-width: 992px) {



    .microsite-portada {
        padding-top: 100px;
        background: url("assets/img/ExampleMicrosite_2/bg_image_1.jpg") no-repeat;
        background-position: center center;
        background-size: cover;
        position: relative;
        //background-attachment: fixed;
    }

        .microsite-portada .titulo-portada {
            text-align: center;
            color: #fff;
        }

            .microsite-portada .titulo-portada h1 {
                font-family: Montserrat;
                font-size: 42px;
                font-weight: bold;
                color: white;
            }

            .microsite-portada .titulo-portada h2 {
                font-family: Montserrat;
                font-size: 30px;
                color: white;
            }

            .microsite-portada .titulo-portada h3 {
                font-family: Montserrat;
                font-size: 35px;
                font-weight: bold;
                color: white;
            }

            .microsite-portada .titulo-portada h4 {
                font-family: Montserrat;
                font-size: 22px;
                font-weight: bold;
                color: white;
            }


            .microsite-portada .titulo-portada p {
                /width: 80%;
            }

        .microsite-portada h1 {
            text-align: center;
            font-family: Montserrat;
            font-size: 60px;
            line-height: 90px;
            color: #22222;
        }
}


    /*--------------------------------------------------------------
# OVERVIEW
--------------------------------------------------------------*/
    .overview .icon-box h4 {
        font-size: 20px;
        font-weight: 700;
        margin: 5px 0 10px 60px;
    }

    .overview h3 {
        font-family: Montserrat;
        font-weight: bolder;
        color: #72a2fa;
        text-transform: uppercase;
        margin-bottom: 50px;
    }

    .overview h1 {
        font-family: Montserrat;
        font-weight: bolder;
        margin-bottom: 20px;
        font-size: 70px;
        text-align: left;
    }

    .overview h4 {
        font-family: Montserrat;
        font-weight: 100;
        margin-bottom: 20px;
        font-size: 20px;
        text-align: justify;
    }

    .overview .icon-box i {
        font-size: 48px;
        float: left;
        color: #72a2fa;
    }

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

    .overview img {
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        max-height: 450px;
    }

    @media (max-width: 992px) {

        .overview h1 {
            font-family: Montserrat;
            font-weight: bolder;
            margin-bottom: 12px;
            font-size: 50px;
            text-align: left;
        }

        .overview h4 {
            font-family: Montserrat;
            font-weight: 100;
            margin-bottom: 12px;
            font-size: 12px;
            text-align: justify;
        }
    }


    /*--------------------------------------------------------------
# ARTICULO 1
--------------------------------------------------------------*/

    .articulo h1 {
        font-family: Montserrat;
        font-size: 80px;
        margin-top: 30px;
        margin-bottom: 30px;
    }


    .articulo h2 {
        font-family: Times New Roman;
        font-style: italic;
        font-size: 50px;
        text-align: center;
        color: slategray;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .articulo h3 {
        font-family: Times New Roman;
        font-style: italic;
        font-size: 25px;
        text-align: center;
        margin-top: 15px;
        margin-bottom: 15px;
        color: darkslategray;
    }

    .articulo h4 {
        font-family: Times New Roman;
        font-style: italic;
        font-size: 32px;
        text-align: center;
        color: slategray;
        margin: 20px 20px 20px 20px;
    }


    .articulo h5 {
        font-family: Montserrat;
        font-weight: bolder;
        color: #72a2fa;
        text-transform: uppercase;
        margin-bottom: 50px;
    }

    .articulo h6 {
        font-family: Montserrat;
        font-size: 58px;
        font-weight: bold;
        font-style: normal;
        color: black;
    }

    .articulo h7 {
        font-family: "Times New Roman";
        font-style: italic;
        font-weight: bold;
        font-size: 12px;
        text-align: center;
        color: black;
        margin: 20px;
    }

    .articulo h8 {
        font-family: "Times New Roman";
        font-style: italic;
        font-size: 12px;
        text-align: center;
        color: black;
    }

    .articulo p {
        text-align: justify;
    }


    .articulo .articulo-list {
        padding: 0;
        list-style: none;
    }

    .articulo .video-box {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        min-height: 400px;
        position: relative;
    }

    .articulo .articulo-list li {
        border-bottom: 1px solid #eee;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .articulo .articulo-list a {
        display: block;
        text-transform: uppercase;
        font-style: italic;
        font-weight: bold;
        cursor: pointer;
        color: #72a2fa;
    }

    .articulo .articulo-list i {
        font-size: 24px;
        position: absolute;
        right: 0;
        top: 0;
    }

    .articulo .articulo-list p {
        text-align: justify;
    }

    .articulo .articulo-list .icon-show {
        display: none;
    }

    .articulo .articulo-list a.collapsed {
        color: slategray;
    }

        .articulo .articulo-list a.collapsed:hover {
            color: #72a2fa;
        }

        .articulo .articulo-list a.collapsed .icon-show {
            display: inline-block;
        }

        .articulo .articulo-list a.collapsed .icon-close {
            display: none;
        }

    @media (max-width: 992px) {

        .articulo h1 {
            font-family: Montserrat;
            font-size: 45px;
        }

        .articulo h2 {
            font-family: Times New Roman;
            font-style: italic;
            font-size: 28px;
            text-align: center;
            color: slategray;
            margin: 20px;
        }

        .articulo h3 {
            font-family: Times New Roman;
            font-style: italic;
            font-size: 20px;
            text-align: center;
            margin: 15px;
            color: darkslategray;
        }

        .articulo h4 {
            font-family: Times New Roman;
            font-style: italic;
            font-size: 22px;
            text-align: center;
            color: slategray;
            margin: 20px;
        }

        .articulo h6 {
            font-family: Montserrat;
            font-size: 38px;
            font-weight: bold;
            font-style: normal;
            color: black;
        }

        .articulo .articulo-list li {
            //border-bottom: 1px solid #eee;
            margin-bottom: 12px;
            padding-bottom: 12px;
        }
    }


    /*--------------------------------------------------------------
# ENTREVISTA 1
--------------------------------------------------------------*/
    .entrevista1 {
        padding: 0;
    }

        .entrevista1 h1 {
            font-family: Montserrat;
            font-size: 80px;
        }


        .entrevista1 h2 {
            font-family: Times New Roman;
            font-style: italic;
            font-size: 50px;
            text-align: center;
            color: slategray;
            margin: 30px;
        }

        .entrevista1 p {
            text-align: justify;
        }

        .entrevista1 .content {
            padding: 60px 100px 0 100px;
        }

            .entrevista1 .content h3 {
                font-weight: 400;
                font-size: 34px;
            }

            .entrevista1 .content h4 {
                font-size: 20px;
                font-weight: 700;
                margin-top: 5px;
            }

            .entrevista1 .content p {
                font-size: 15px;
                color: #959595;
                text-align: justify;
            }

        .entrevista1 .video-box {
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center center;
            min-height: 400px;
            position: relative;
        }

        .entrevista1 .accordion-list {
            /padding: 0 100px 60px 100px;
        }

            .entrevista1 .accordion-list ul {
                padding: 0;
                list-style: none;
            }

            .entrevista1 .accordion-list li + li {
                margin-top: 15px;
            }

            .entrevista1 .accordion-list li {
                padding: 20px;
                /background: #fff;
                border-radius: 4px;
            }

            .entrevista1 .accordion-list a {
                display: block;
                position: relative;
                font-family: montserrat;
                font-style: italic;
                text-align: justify;
                font-size: 18px;
                line-height: 24px;
                font-weight: 500;
                padding-right: 30px;
                outline: none;
                cursor: pointer;
            }

            .entrevista1 .accordion-list span {
                /color: #72a2fa;
                font-weight: 600;
                font-size: 18px;
                padding-right: 10px;
            }

            .entrevista1 .accordion-list i {
                font-size: 24px;
                position: absolute;
                right: 0;
                top: 0;
            }

            .entrevista1 .accordion-list p {
                margin-bottom: 0;
                padding: 10px 0 0 0;
                text-align: justify;
            }

            .entrevista1 .accordion-list .icon-show {
                display: none;
            }

            .entrevista1 .accordion-list a.collapsed {
                color: #343a40;
            }

                .entrevista1 .accordion-list a.collapsed:hover {
                    color: #72a2fa;
                }

                .entrevista1 .accordion-list a.collapsed .icon-show {
                    display: inline-block;
                }

                .entrevista1 .accordion-list a.collapsed .icon-close {
                    display: none;
                }

        .entrevista1 .play-btn {
            width: 94px;
            height: 94px;
            background: radial-gradient(#72a2fa 50%, rgba(124, 197, 118, 0.4) 52%);
            border-radius: 50%;
            display: block;
            position: absolute;
            left: calc(50% - 47px);
            top: calc(50% - 47px);
            overflow: hidden;
        }

            .entrevista1 .play-btn::after {
                content: '';
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translateX(-40%) translateY(-50%);
                width: 0;
                height: 0;
                border-top: 10px solid transparent;
                border-bottom: 10px solid transparent;
                border-left: 15px solid #fff;
                z-index: 100;
                transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
            }

            .entrevista1 .play-btn::before {
                content: '';
                position: absolute;
                width: 120px;
                height: 120px;
                -webkit-animation-delay: 0s;
                animation-delay: 0s;
                -webkit-animation: pulsate-btn 2s;
                animation: pulsate-btn 2s;
                -webkit-animation-direction: forwards;
                animation-direction: forwards;
                -webkit-animation-iteration-count: infinite;
                animation-iteration-count: infinite;
                -webkit-animation-timing-function: steps;
                animation-timing-function: steps;
                opacity: 1;
                border-radius: 50%;
                border: 5px solid rgba(124, 197, 118, 0.7);
                top: -15%;
                left: -15%;
                background: rgba(198, 16, 0, 0);
            }

            .entrevista1 .play-btn:hover::after {
                border-left: 15px solid #72a2fa;
                transform: scale(20);
            }

            .entrevista1 .play-btn:hover::before {
                content: '';
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translateX(-40%) translateY(-50%);
                width: 0;
                height: 0;
                border: none;
                border-top: 10px solid transparent;
                border-bottom: 10px solid transparent;
                border-left: 15px solid #fff;
                z-index: 200;
                -webkit-animation: none;
                animation: none;
                border-radius: 0;
            }

    @media (max-width: 1024px) {
        .entrevista1 .content, .entrevista1 .accordion-list {
            padding-left: 0;
            padding-right: 0;
        }
    }

    @media (max-width: 992px) {
        .entrevista1 .content {
            padding-top: 30px;
        }

        .entrevista1 .accordion-list {
            padding-bottom: 30px;
        }

        .entrevista1 h1 {
            font-family: Montserrat;
            font-size: 45px;
        }

        .entrevista1 h2 {
            font-family: Times New Roman;
            font-style: italic;
            font-size: 28px;
            text-align: center;
            color: slategray;
            margin: 20px;
        }
    }

    @-webkit-keyframes pulsate-btn {
        0% {
            transform: scale(0.6, 0.6);
            opacity: 1;
        }

        100% {
            transform: scale(1, 1);
            opacity: 0;
        }
    }

    @keyframes pulsate-btn {
        0% {
            transform: scale(0.6, 0.6);
            opacity: 1;
        }

        100% {
            transform: scale(1, 1);
            opacity: 0;
        }
    }


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

    

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

        .testimonials .quote-icon {
            text-align: center;
            margin-bottom: 30px;
        }

            .testimonials .quote-icon i {
                color: #7cc576;
                font-size: 24px;
                padding: 18px;
                border-radius: 50px;
                border: 2px solid #7cc576;
            }

        .testimonials .testimonial-item {
            text-align: center;
            align-items: center center;
            vertical-align: middle;
            background-color: white;
            box-shadow: 0 4px 10px -3px rgba(0, 0, 0, 0.3);
            border-radius: 30px;
            margin: 20px 350px 0px 350px;
            padding-top: 30px;
            padding-bottom: 30px;
            
        }



            .testimonials .testimonial-item p {
                font-family: Roboto;
                margin: 0 auto 30px auto;
                align-items: center;
                font-size: 30px;
                color: white;
            }

            .testimonials .testimonial-item .testimonial-img {
                width: 200px;
                border-radius: 0%;
                //border: 10px solid rgba(58, 95, 165, 0.3);
                margin: auto;
            }

            .testimonials .testimonial-item h3 {
                padding-top: 1px;
                text-align: center;
                font-family: Montserrat;
                font-weight: bold;
                font-size: 35px;
                color: #222;
            }

            .testimonials .testimonial-item h4 {
                margin:40px;
                font-family: Montserrat;
                font-size: 20px;
                font-weight: 100;
                text-align: center;
                color: #222;
            }

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

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

            .testimonials .owl-dot.active {
                background-color: #72a2fa !important;
            }

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

    @media (max-width: 992px) {
        .testimonials .testimonial-item p {
            font-size: 20px;
        }

        .testimonials .testimonial-item h3 {
            font-family: Roboto;
            font-size: 35px;
            font-weight: bold;
            color: white;
            margin-top: 30px;
        }

        .testimonials .testimonial-item h4 {
            font-family: Roboto;
            font-size: 60px;
            font-weight: bolder;
            color: #72a2fa;
        }

        .testimonials .testimonial-item {
            text-align: center;
            align-items: center center;
            vertical-align: middle;
            background-color: #12212b;
            box-shadow: 0 4px 10px -3px rgba(0, 0, 0, 0.3);
            border-radius: 30px;
            margin: 20px 50px 0px 50px;
        }

            .testimonials .testimonial-item .testimonial-img {
                width: 120px;
                border-radius: 50%;
                border: 8px solid rgba(58, 95, 165, 1);
                margin: auto;
            }
    }
    /*--------------------------------------------------------------
# publicaciones
--------------------------------------------------------------*/
    .publicaciones-- {
        padding: 100px 0;
        background: url("../img/hero-bg2.png");
        position: relative;
    }

    .publicaciones {
        width: 100%;
        //height: 80vh;
        padding: 0px 0;
        background: url("") no-repeat;
        background-position: center center;
        background-size: cover;
        position: relative;
    }


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

        .publicaciones .quote-icon {
            text-align: center;
            margin-bottom: 30px;
        }

            .publicaciones .quote-icon i {
                color: #72a2fa;
                font-size: 24px;
                padding: 18px;
                border-radius: 50px;
                border: 2px solid #72a2fa;
            }

        .publicaciones .publicacion-item {
            text-align: center;
            color: #fff;
        }

            .publicaciones .publicacion-item p {
                font-style: italic;
                margin: 0 auto 30px auto;
                font-size: 20px;
            }

            .publicaciones .publicacion-item .publicacion-img {
                width: 500px;
                //border-radius: 50%;
                //border: 6px solid rgba(255, 255, 255, 0.15);
                margin: 0 auto;
            }

            .publicaciones .publicacion-item .publicacion-medios {
                width: 300px;
                //border-radius: 50%;
                //border: 6px solid rgba(255, 255, 255, 0.15);
                margin: 0 auto;
            }

            .publicaciones .publicacion-item .publicacion-img2 {
                width: 600px;
                margin: 0 auto;
            }

            .publicaciones .publicacion-item h1 {
                font-size: 70px;
                font-weight: bold;
                margin: 10px 0 5px 0;
                color: #fff;
            }


            .publicaciones .publicacion-item h3 {
                font-size: 40px;
                font-weight: bold;
                margin: 10px 0 5px 0;
                color: black;
            }

            .publicaciones .publicacion-item h4 {
                font-size: 14px;
                color: #ddd;
                margin: 0 0 15px 0;
            }

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

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

            .publicaciones .owl-dot.active {
                background-color: #72a2fa !important;
            }

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

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

        .publicaciones .publicacion-item h1 {
            font-size: 200px;
            font-weight: 900;
            margin: 10px 0 5px 0;
            color: #fff;
        }

        .publicaciones .publicacion-item h4 {
            font-size: 40px;
            font-weight: 100;
            margin: 10px 0 5px 0;
            color: #fff;
        }
    }


    /*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
    .clients {
        background: whitesmoke;
        padding: 20px 0;
        text-align: center;
    }

        .clients img {
            width: 80%;
            filter: grayscale(100);
            transition: all 0.4s ease-in-out;
            display: inline-block;
            padding: 15px;
        }
        port
            .clients img:hover {
                filter: none;
                transform: scale(1.2);
            }

    @media (max-width: 768px) {
        .clients img {
            width: 40%;
            padding: 1px 0;
        }
    }

    @media (max-width: 575px) {
        .clients img {
            width: 40%;
            padding: 1px 0;
        }
    }

    /*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
    .team {
        background: #fff;
        padding: 60px 0;
    }

        .team .member {
            margin-bottom: 20px;
            overflow: hidden;
        }

            .team .member .member-img {
                position: relative;
                overflow: hidden;
                border-radius: 1px;
            }

            .team .member .social {
                position: absolute;
                left: 0;
                bottom: -40px;
                right: 0;
                height: 40px;
                opacity: 0;
                transition: bottom ease-in-out 0.4s;
                text-align: center;
                background: rgba(124, 197, 118, 0.8);
            }

                .team .member .social a {
                    transition: color 0.3s;
                    color: #fff;
                    margin: 0 10px;
                    padding-top: 8px;
                    display: inline-block;
                }

                    .team .member .social a:hover {
                        color: #72a2fa;
                    }

                .team .member .social i {
                    font-size: 18px;
                    margin: 0 2px;
                }

            .team .member .member-info h4 {
                font-weight: 700;
                margin: 15px 0 5px 0;
                font-size: 18px;
            }

            .team .member .member-info span {
                display: block;
                font-size: 13px;
                text-transform: uppercase;
                font-weight: 400;
                margin-bottom: 15px;
                color: #72a2fa;
            }

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

            .team .member:hover .social {
                bottom: 0;
                opacity: 1;
                transition: bottom ease-in-out 0.4s;
            }

    

    /*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
    .contact .info {
        width: 100%;
        height: 100%;
        background: #fff;
        padding: 20px;
        border-radius: 5px;
    }

        .contact .info i {
            font-size: 20px;
            color: #72a2fa;
            float: left;
            width: 44px;
            height: 44px;
            background: #eaf6e9;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50px;
            transition: all 0.3s ease-in-out;
        }

        .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;
        }

        .contact .info .email, .contact .info .phone {
            margin-top: 40px;
        }

            .contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
                background: #72a2fa;
                color: #fff;
            }

    .contact .php-email-form {
        width: 100%;
        background: #fff;
        padding: 20px;
        border-radius: 5px;
    }

        .contact .php-email-form .form-group {
            padding-bottom: 8px;
        }

        .contact .php-email-form .validate {
            display: none;
            color: red;
            margin: 0 0 15px 0;
            font-weight: 400;
            font-size: 13px;
        }

        .contact .php-email-form .error-message {
            display: none;
            color: #fff;
            background: #ed3c0d;
            text-align: left;
            padding: 15px;
            font-weight: 600;
        }

            .contact .php-email-form .error-message br + br {
                margin-top: 25px;
            }

        .contact .php-email-form .sent-message {
            display: none;
            color: #fff;
            background: #18d26e;
            text-align: center;
            padding: 15px;
            font-weight: 600;
        }

        .contact .php-email-form .loading {
            display: none;
            background: #fff;
            text-align: center;
            padding: 15px;
        }

            .contact .php-email-form .loading:before {
                content: "";
                display: inline-block;
                border-radius: 50%;
                width: 24px;
                height: 24px;
                margin: 0 10px -6px 0;
                border: 3px solid #18d26e;
                border-top-color: #eee;
                -webkit-animation: animate-loading 1s linear infinite;
                animation: animate-loading 1s linear infinite;
            }

        .contact .php-email-form input, .contact .php-email-form textarea {
            border-radius: 0;
            box-shadow: none;
            font-size: 14px;
        }

        .contact .php-email-form input {
            height: 44px;
        }

        .contact .php-email-form textarea {
            padding: 10px 12px;
        }

        .contact .php-email-form button[type="submit"] {
            background: #72a2fa;
            border: 0;
            padding: 10px 24px;
            color: #fff;
            transition: 0.4s;
            border-radius: 4px;
        }

            .contact .php-email-form button[type="submit"]:hover {
                background: #12212b;
            }

    @-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: 40px 0;
    }

        .breadcrumbs h2 {
            font-size: 26px;
            font-weight: 300;
        }

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

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

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

    @media (max-width: 768px) {
        .breadcrumbs .d-flex {
            display: block !important;
        }

        .breadcrumbs ol {
            display: block;
        }

            .breadcrumbs ol li {
                display: inline-block;
            }
    }

    /*--------------------------------------------------------------
# Breadcrumbs 2
--------------------------------------------------------------*/
    .breadcrumbs2 {
        padding: 20px 0;
    }

        .breadcrumbs2 h2 {
            font-size: 26px;
            font-weight: 300;
        }

        .breadcrumbs2 ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            font-size: 15px;
        }

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

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

    @media (max-width: 768px) {
        .breadcrumbs .d-flex {
            display: block !important;
        }

        .breadcrumbs2 ol {
            display: block;
        }

            .breadcrumbs2 ol li {
                display: inline-block;
            }
    }

    /*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
    .portfolio-details {
        padding-top: 0;
    }

        .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: #72a2fa !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: 400;
                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: 400;
                margin-bottom: 20px;
            }

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

    @media (max-width: 768px) {
        .portfolio-details .portfolio-info {
            position: static;
            margin-top: 30px;
        }
    }

    /*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
    #footer {
        background: url("../img/footer-bg.jpg") center center no-repeat;
        color: #fff;
        font-size: 14px;
        position: relative;
    }

        #footer::before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.75);
            z-index: 1;
        }

        #footer .footer-top {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 80px 0;
        }

            #footer .footer-top .footer-logo img {
                height: 100px;
            }

            #footer .footer-top h3 {
                font-size: 36px;
                font-weight: 700;
                color: #fff;
                position: relative;
                font-family: "Poppins", sans-serif;
                padding: 30px 0 0 0;
                margin-bottom: 0;
            }

            #footer .footer-top p {
                font-size: 15;
                font-style: italic;
                margin: 30px 0 0 0;
                padding: 0;
            }

            #footer .footer-top .footer-newsletter {
                text-align: center;
                font-size: 15px;
                margin-top: 30px;
            }

                #footer .footer-top .footer-newsletter form {
                    background: #fff;
                    padding: 6px 10px;
                    position: relative;
                    border-radius: 50px;
                    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
                    text-align: left;
                }

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

                    #footer .footer-top .footer-newsletter form input[type="submit"] {
                        position: absolute;
                        top: 0;
                        right: -1px;
                        bottom: 0;
                        border: 0;
                        background: none;
                        font-size: 16px;
                        padding: 0 20px;
                        background: #72a2fa;
                        color: #fff;
                        transition: 0.3s;
                        border-radius: 50px;
                        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
                    }

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

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

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

                    #footer .footer-top .social-links a:hover {
                        background: #5ab652;
                        color: #fff;
                        text-decoration: none;
                    }

        #footer .footer-bottom {
            border-top: 1px solid white;
            z-index: 2;
            position: relative;
            padding-top: 20px;
            padding-bottom: 20px;
        }

        #footer .copyright {
            text-align: center;
            font-size: 15px;
        }

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

    @media (max-width: 992px) {

        #footer .copyright {
            text-align: center;
            font-size: 10px;
        }
    }
