body {
  background: #686868;
  color: #444;
  font-family: "Open Sans", sans-serif;
}
body a {
  color: #007bff;
  transition: 0.5s;
}
body a:hover, body a:active, body a:focus {
  color: #0b6bd3;
  outline: none;
  text-decoration: none;
}
body p {
  padding: 0;
  margin: 0 0 30px 0;
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

.back-to-top {
  position: fixed;
  display: none;
  background: #007bff;
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}
.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #007bff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
  background: #f2bbd9;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
}
#header.header-scrolled, #header.header-pages {
  height: 60px;
  padding: 10px 0;
}
#header .logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}
#header .logo h1 a, #header .logo h1 a:hover {
  color: #00366f;
  text-decoration: none;
}
#header .logo img {
  padding: 0;
  margin: 3px 0;
  max-height: 38px;
}
#header i {
  color: #0a0a0a;
  font-size: 19px;
}
#header i:hover {
  color: #ff009a;
  font-size: 19px;
}

.main-pages {
  margin-top: 60px;
}

.section-header h3 {
  font-size: 28px;
  color: #0a0a0a;
  text-align: center;
  font-weight: 600;
  position: relative;
  margin-bottom: 45px;
}
.section-header p {
  text-align: center;
  margin: auto;
  font-size: 15px;
  padding-bottom: 60px;
  color: #556877;
  width: 50%;
}

.main-nav {
  /* Drop Down */
  /* Deep Drop Down */
}

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

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

.main-nav a {
  display: block;
  position: relative;
  color: #0a0a0a;
  padding: 10px 15px;
  transition: 0.3s;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.main-nav a:hover,
.main-nav .active > a,
.main-nav li:hover > a {
  color: #ff009a;
  text-decoration: none;
}

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

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

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

.main-nav .drop-down ul a {
  padding: 10px 20px;
  font-size: 13px;
  color: #0a0a0a;
}

.main-nav .drop-down ul a:hover,
.main-nav .drop-down ul .active > a,
.main-nav .drop-down ul li:hover > a {
  color: #ff009a;
}

.main-nav .drop-down > a:after {
  content: "\f107";
  font-family: FontAwesome;
  padding-left: 10px;
}

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

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

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

.main-nav .drop-down .drop-down > a:after {
  content: "\f105";
  position: absolute;
  right: 15px;
}

.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: rgba(85, 176, 255, 0.8);
  transition: 0.4s;
}
.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
}
.mobile-nav a:hover, .active > .mobile-nav a, li:hover > .mobile-nav a {
  color: #74b5fc;
  text-decoration: none;
}
.mobile-nav .drop-down > a:after {
  content: "\f078";
  font-family: FontAwesome;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}
.mobile-nav .active.drop-down > a:after {
  content: "\f077";
}
.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-toggle {
  position: fixed;
  right: 0;
  top: 0;
  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 {
  margin: 18px 18px 0 0;
  color: #15d0ff;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(39, 79, 117, 0.8);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}
.mobile-nav-active .mobile-nav {
  left: 0;
}
.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

#nosotros {
  background: white;
  padding: 60px 0;
}
#nosotros .nosotros-container .background {
  margin: 20px 0;
}
#nosotros .nosotros-container .content {
  background: white;
}
#nosotros .nosotros-container .title {
  color: #333;
  font-weight: 700;
  font-size: 32px;
}
#nosotros .nosotros-container p {
  line-height: 26px;
}
#nosotros .nosotros-container p:last-child {
  margin-bottom: 0;
}
#nosotros .nosotros-container .icon-box {
  background: white;
  background-size: cover;
  padding: 0 0 30px 0;
}
#nosotros .nosotros-container .icon-box .icon {
  float: left;
  background: #fff;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #007bff;
  transition: all 0.3s ease-in-out;
}
#nosotros .nosotros-container .icon-box .icon i {
  color: #007bff;
  font-size: 24px;
}
#nosotros .nosotros-container .icon-box .icon:hover {
  background: #007bff;
}
#nosotros .nosotros-container .icon-box .icon:hover i {
  color: #fff;
}
#nosotros .nosotros-container .icon-box .title {
  margin-left: 80px;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 18px;
}
#nosotros .nosotros-container .icon-box .title a {
  color: #333;
}
#nosotros .nosotros-container .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}
#nosotros .nosotros-extra {
  padding-top: 1px;
}
#nosotros .nosotros-extra h4 {
  font-weight: 600;
  font-size: 25px;
  color: #0a0a0a;
  font-family: "Montserrat", sans-serif;
}

#servicios {
  padding: 60px 0;
  background: #F2C9FB;
}
#servicios .section-header h3,
#servicios .section-header p {
  color: #fff;
}
#servicios .card {
  background: #ffffff;
  border-color: #9b9b9b;
  border-radius: 10px;
  margin: 0 15px;
  padding: 15px 0;
  text-align: center;
  color: #6c78ff;
  transition: 0.3s ease-in-out;
  height: 100%;
}
#servicios .card:hover {
  background: #9de8eb;
  border-color: #9de8eb;
}
#servicios .card i {
  font-size: 48px;
  padding-top: 15px;
  color: #181818;
}
#servicios .card h6 {
  font-size: 22px;
  font-weight: 600;
}
#servicios .card p {
  font-size: 15px;
  color: #000000;
}
#servicios .card .readmore {
  color: #fff;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease-in-out;
  border-bottom: #00458f solid 2px;
}
#servicios .card .readmore:hover {
  border-bottom: #fff solid 2px;
}
#servicios .counters {
  padding-top: 40px;
}
#servicios .counters span {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 48px;
  display: block;
  color: #fff;
}
#servicios .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #cce5ff;
}

#portfolio {
  padding: 60px 0;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}
#portfolio #portfolio-flters {
  padding: 0;
  margin: 5px 0 35px 0;
  list-style: none;
  text-align: center;
}
#portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 15px 15px 15px 0;
  display: inline-block;
  padding: 6px 20px;
  font-size: 12px;
  line-height: 20px;
  color: #007bff;
  border-radius: 50px;
  text-transform: uppercase;
  background: #ecf5ff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
#portfolio #portfolio-flters li:hover, #portfolio #portfolio-flters li.filter-active {
  background: #007bff;
  color: #fff;
}
#portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}
#portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
#portfolio .portfolio-item .portfolio-wrap {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  margin: 0;
}
#portfolio .portfolio-item .portfolio-wrap:hover img {
  opacity: 0.4;
  transition: 0.3s;
}
#portfolio .portfolio-item .portfolio-wrap .portfolio-info {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  opacity: 0;
  transition: 0.2s linear;
}
#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 {
  font-size: 22px;
  line-height: 1px;
  font-weight: 700;
  margin-bottom: 14px;
}
#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 a {
  color: #ec0072;
}
#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 a:hover {
  color: #ec0072;
}
#portfolio .portfolio-item .portfolio-wrap .portfolio-info p {
  padding: 0;
  margin: 0;
  color: #e2effe;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details {
  display: inline-block;
  line-height: 1;
  text-align: center;
  width: 36px;
  height: 36px;
  background: #007bff;
  border-radius: 50%;
  margin: 10px 4px 0 4px;
}
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview i,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details i {
  padding-top: 6px;
  font-size: 22px;
  color: #fff;
}
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview:hover,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details:hover {
  background: #3395ff;
}
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview:hover i,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details:hover i {
  color: #fff;
}
#portfolio .portfolio-item:hover .portfolio-wrap {
  background: #4ed6fc;
}
#portfolio .portfolio-item:hover .portfolio-wrap .portfolio-info {
  opacity: 1;
}

/* Empieza Portfolio.html
--------------------------------*/
#about3 i {
  color: #ff009a;
  margin-right: 8px;
  margin-left: 8px;
  cursor: pointer;
}

h5 {
  margin-top: 20px;
  color: white;
  background-color: #ff009a;
  font-family: Montserrat;
  font-size: 35px;
  font-weight: bold;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 35px;
  padding-bottom: 35px;
  width: 100%;
}

#about3 #hola {
  margin-top: 55px;
}

#about3 .container {
  margin-top: 5px;
}

.carousel-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 100%;
}

.carousel-inner {
  margin-top: 0px;
}

.titulodestacado {
  font-weight: bold;
  display: inline;
}

.titulonormal {
  display: inline;
}

#about3 img {
  width: 100%;
  display: block;
  margin: auto;
  padding: auto;
}

#about3 .container {
  width: 100%;
}

#about3 {
  background: white;
  padding: 60px 0;
}
#about3 .about3-container .background {
  margin: 20px 0;
}
#about3 .about3-container .content {
  background: white;
}
#about3 .about3-container .content .title {
  color: #333;
  font-weight: 700;
  font-size: 32px;
}
#about3 .about3-container .content p {
  line-height: 26px;
}
#about3 .about3-container .content p:last-child {
  margin-bottom: 0;
}
#about3 .about3-container .content .icon-box {
  background: white;
  background-size: cover;
  padding: 0 0 30px 0;
}
#about3 .about3-container .content .icon-box .icon {
  float: left;
  background: #fff;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #007bff;
  transition: all 0.3s ease-in-out;
}
#about3 .about3-container .content .icon-box .icon i {
  color: #007bff;
  font-size: 24px;
}
#about3 .about3-container .content .icon-box:hover .icon {
  background: #007bff;
}
#about3 .about3-container .content .icon-box:hover .icon i {
  color: #fff;
}
#about3 .about3-container .content .icon-box .title {
  margin-left: 80px;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 18px;
}
#about3 .about3-container .content .icon-box .title a {
  color: #333;
}
#about3 .about3-container .content .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}
#about3 .about3-extra {
  padding-top: 25px;
}
#about3 .about3-extra h4 {
  font-weight: 600;
  font-size: 24px;
}

.boton1 {
  cursor: pointer;
  margin-top: 20px;
  margin-bottom: 20px;
  color: white;
  border: solid white 2px;
  background-color: #535353;
  width: 24%;
  height: 11%;
  text-transform: uppercase;
  font-size: 60%;
  margin-left: 80px;
  letter-spacing: 1.5px;
}
.boton1:hover {
  margin-top: 20px;
  margin-bottom: 20px;
  color: #535353;
  border: solid white 2px;
  background-color: white;
  width: 24%;
  height: 11%;
  text-transform: uppercase;
  font-size: 60%;
  font-weight: bold;
}

#equipo {
  background: #f2cda0;
  padding: 60px 0;
}
#equipo .equipo-container .background {
  margin: 20px 0;
}
#equipo .equipo-container .content {
  background: #f2cda0;
}
#equipo .equipo-container .title2 {
  color: #333;
  font-weight: 700;
  font-size: 32px;
}
#equipo .equipo-container .description2 {
  line-height: 26px;
}
#equipo .equipo-container .description2:last-child {
  margin-bottom: 0;
}
#equipo .equipo-container .icon2-box {
  background: #f2cda0;
  background-size: cover;
  padding: 0 0 30px 0;
}
#equipo .equipo-container .icon2-box .icon2 {
  float: left;
  background: #f2cda0;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
#equipo .equipo-container .icon2-box .icon2 i {
  color: #000000;
  font-size: 31px;
}
#equipo .equipo-container .icon2-box .title2 {
  margin-left: 80px;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 18px;
}
#equipo .equipo-container .icon2-box .title2 a {
  color: rgb(61, 61, 61);
}
#equipo .equipo-container .icon2-box .description2 {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}
#equipo .equipo-extra {
  padding-top: 60px;
}
#equipo .equipo-extra .title2 {
  font-weight: 600;
  font-size: 24px;
}
#equipo .description2 {
  color: rgb(61, 61, 61);
}

/* Equipo.html
--------------------------------*/
#portfolio3 {
  padding: 120px 0;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#cargo3 {
  color: black;
  font-size: 16px;
  margin-bottom: 2px;
  margin-top: 8px;
}

#parrafo3 {
  color: black;
  font-size: 13px;
  margin-bottom: 0px;
  margin-top: 0px;
}

.portfolio-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}

.portfolio3-wrap img {
  max-width: 100%;
  height: auto;
}

/* Empieza Inspiracion */
#inspiracion {
  padding: 60px 0;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}
#inspiracion #inspiracion-flters {
  padding: 0;
  margin: 5px 0 35px 0;
  list-style: none;
  text-align: center;
}
#inspiracion #inspiracion-flters li {
  cursor: pointer;
  margin: 15px 15px 15px 0;
  display: inline-block;
  padding: 6px 20px;
  font-size: 12px;
  line-height: 20px;
  color: #007bff;
  border-radius: 50px;
  text-transform: uppercase;
  background: #ecf5ff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
#inspiracion #inspiracion-flters li:hover, #inspiracion #inspiracion-flters li.filter-active {
  background: #007bff;
  color: #fff;
}
#inspiracion #inspiracion-flters li:last-child {
  margin-right: 0;
}
#inspiracion .inspiracion-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
#inspiracion .inspiracion-item .inspiracion-wrap {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  margin: 0;
}
#inspiracion .inspiracion-item .inspiracion-wrap:hover img {
  opacity: 0.4;
  transition: 0.3s;
}
#inspiracion .inspiracion-item .inspiracion-wrap .inspiracion-info {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  opacity: 0;
  transition: 0.2s linear;
}
#inspiracion .inspiracion-item .inspiracion-wrap .inspiracion-info h4 {
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 14px;
}
#inspiracion .inspiracion-item .inspiracion-wrap .inspiracion-info h4 a {
  color: #fff;
}
#inspiracion .inspiracion-item .inspiracion-wrap .inspiracion-info h4 a:hover {
  color: #007bff;
}
#inspiracion .inspiracion-item .inspiracion-wrap .inspiracion-info p {
  padding: 0;
  margin: 0;
  color: #e2effe;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}
#inspiracion .inspiracion-item .inspiracion-wrap .inspiracion-info .link-preview,
#inspiracion .inspiracion-item .inspiracion-wrap .inspiracion-info .link-details {
  display: inline-block;
  line-height: 1;
  text-align: center;
  width: 36px;
  height: 36px;
  background: #007bff;
  border-radius: 50%;
  margin: 10px 4px 0 4px;
}
#inspiracion .inspiracion-item .inspiracion-wrap .inspiracion-info .link-preview i,
#inspiracion .inspiracion-item .inspiracion-wrap .inspiracion-info .link-details i {
  padding-top: 6px;
  font-size: 22px;
  color: #fff;
}
#inspiracion .inspiracion-item .inspiracion-wrap .inspiracion-info .link-preview:hover,
#inspiracion .inspiracion-item .inspiracion-wrap .inspiracion-info .link-details:hover {
  background: #3395ff;
}
#inspiracion .inspiracion-item .inspiracion-wrap .inspiracion-info .link-preview:hover i,
#inspiracion .inspiracion-item .inspiracion-wrap .inspiracion-info .link-details:hover i {
  color: #fff;
}
#inspiracion .inspiracion-item:hover {
  background: #616161;
}
#inspiracion .inspiracion-item:hover .inspiracion-info {
  opacity: 1;
}

.sobre2 {
  font-size: 80px;
  text-transform: lowercase;
}

.titulares2 {
  color: black;
  font-size: 16px;
  margin-bottom: 2px;
  margin-top: 8px;
}

.parrafo2 {
  color: black;
  font-size: 13px;
}

/* General Styles for h5 */
h5 {
  margin-top: 20px;
  color: white;
  background-color: #141414;
  font-family: Montserrat;
  font-size: 35px;
  font-weight: bold;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 35px;
  padding-bottom: 35px;
  width: 100%;
}

#portfolio4 .container {
  margin-top: 55px;
}

#portfolio4 {
  padding: 60px 0;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#portfolio4 #portfolio4-flters {
  padding: 0;
  margin: 5px 0 35px 0;
  list-style: none;
  text-align: center;
}

#portfolio4 #portfolio4-flters li {
  cursor: pointer;
  margin: 15px 15px 15px 0;
  display: inline-block;
  padding: 6px 20px;
  font-size: 12px;
  line-height: 20px;
  color: #007bff;
  border-radius: 50px;
  text-transform: uppercase;
  background: #ecf5ff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

#portfolio4 #portfolio4-flters li:hover,
#portfolio4 #portfolio4-flters li.filter-active {
  background: #007bff;
  color: #fff;
}

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

#portfolio4 .portfolio4-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

#portfolio4 .portfolio4-item .portfolio4-wrap {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  margin: 0;
}

#portfolio4 .portfolio4-item .portfolio4-wrap:hover img {
  opacity: 0.4;
  transition: 0.3s;
}

#portfolio4 .portfolio4-item .portfolio4-wrap .portfolio4-info {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  opacity: 0;
  transition: 0.2s linear;
}

#portfolio4 .portfolio4-item .portfolio4-wrap .portfolio4-info h4 {
  font-size: 22px;
  line-height: 1px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 0;
}

#portfolio4 .portfolio4-item .portfolio4-wrap .portfolio4-info h4 a {
  color: #fff;
}

#portfolio4 .portfolio4-item .portfolio4-wrap .portfolio4-info h4 a:hover {
  color: #007bff;
}

#portfolio4 .portfolio4-item .portfolio4-wrap .portfolio4-info p {
  padding: 0;
  margin: 0;
  color: #e2effe;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}

#portfolio4 .portfolio4-item .portfolio4-wrap .portfolio4-info .link-preview,
#portfolio4 .portfolio4-item .portfolio4-wrap .portfolio4-info .link-details {
  display: inline-block;
  line-height: 1;
  text-align: center;
  width: 36px;
  height: 36px;
  background: #007bff;
  border-radius: 50%;
  margin: 10px 4px 0 4px;
}

#portfolio4 .portfolio4-item .portfolio4-wrap .portfolio4-info .link-preview i,
#portfolio4 .portfolio4-item .portfolio4-wrap .portfolio4-info .link-details i {
  padding-top: 6px;
  font-size: 22px;
  color: #fff;
}

#portfolio4 .portfolio4-item .portfolio4-wrap .portfolio4-info .link-preview:hover,
#portfolio4 .portfolio4-item .portfolio4-wrap .portfolio4-info .link-details:hover {
  background: #3395ff;
}

#portfolio4 .portfolio4-item .portfolio4-wrap .portfolio4-info .link-preview:hover i,
#portfolio4 .portfolio4-item .portfolio4-wrap .portfolio4-info .link-details:hover i {
  color: #fff;
}

#portfolio4 .portfolio4-item .portfolio4-wrap:hover {
  background: #003166;
}

#portfolio4 .portfolio4-item .portfolio4-wrap:hover .portfolio3-info {
  opacity: 1;
}

.sobre {
  font-size: 80px;
  text-transform: lowercase;
}

.titulares3 {
  color: black;
  font-size: 16.5px;
  margin-bottom: 8px;
  margin-top: 10px;
  font-weight: bold;
}

.cargo3 {
  color: black;
  font-size: 16px;
  margin-bottom: 0px;
  margin-top: 0px;
}

.parrafo3 {
  color: black;
  font-size: 13px;
  margin-bottom: 0px;
  margin-top: 0px;
}

/* Termina Inspiracion David Carson  */
/* Empieza inspiracionisidro.html
--------------------------------*/
#isidro .container {
  margin-top: 55px;
}

#isidro {
  padding: 60px 0;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#isidro #isidro-flters {
  padding: 0;
  margin: 5px 0 35px 0;
  list-style: none;
  text-align: center;
}

#isidro #isidro-flters li {
  cursor: pointer;
  margin: 15px 15px 15px 0;
  display: inline-block;
  padding: 6px 20px;
  font-size: 12px;
  line-height: 20px;
  color: #007bff;
  border-radius: 50px;
  text-transform: uppercase;
  background: #ecf5ff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

#isidro #isidro-flters li:hover,
#isidro #isidro-flters li.filter-active {
  background: #007bff;
  color: #fff;
}

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

#isidro .isidro-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

#isidro .isidro-item .isidro-wrap {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  margin: 0;
}

#isidro .isidro-item .isidro-wrap:hover img {
  opacity: 0.4;
  transition: 0.3s;
}

#isidro .isidro-item .isidro-wrap .isidro-info {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  opacity: 0;
  transition: 0.2s linear;
}

#isidro .isidro-item .isidro-wrap .isidro-info h4 {
  font-size: 22px;
  line-height: 1px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 0;
}

#isidro .isidro-item .isidro-wrap .isidro-info h4 a {
  color: #fff;
}

#isidro .isidro-item .isidro-wrap .isidro-info h4 a:hover {
  color: #007bff;
}

#isidro .isidro-item .isidro-wrap .isidro-info p {
  padding: 0;
  margin: 0;
  color: #e2effe;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}

#isidro .isidro-item .isidro-wrap .isidro-info .link-preview,
#isidro .isidro-item .isidro-wrap .isidro-info .link-details {
  display: inline-block;
  line-height: 1;
  text-align: center;
  width: 36px;
  height: 36px;
  background: #007bff;
  border-radius: 50%;
  margin: 10px 4px 0 4px;
}

#isidro .isidro-item .isidro-wrap .isidro-info .link-preview i,
#isidro .isidro-item .isidro-wrap .isidro-info .link-details i {
  padding-top: 6px;
  font-size: 22px;
  color: #fff;
}

#isidro .isidro-item .isidro-wrap .isidro-info .link-preview:hover,
#isidro .isidro-item .isidro-wrap .isidro-info .link-details:hover {
  background: #3395ff;
}

#isidro .isidro-item .isidro-wrap .isidro-info .link-preview:hover i,
#isidro .isidro-item .isidro-wrap .isidro-info .link-details:hover i {
  color: #fff;
}

#isidro .isidro-item .isidro-wrap:hover {
  background: #003166;
}

#isidro .isidro-item .isidro-wrap:hover .isidro-info {
  opacity: 1;
}

.sobre {
  font-size: 80px;
  text-transform: lowercase;
}

.titulares3 {
  color: black;
  font-size: 16.5px;
  margin-bottom: 8px;
  margin-top: 10px;
  font-weight: bold;
}

.cargo3 {
  color: black;
  font-size: 16px;
  margin-bottom: 0px;
  margin-top: 0px;
}

.parrafo3 {
  color: black;
  font-size: 13px;
  margin-bottom: 0px;
  margin-top: 0px;
}

/* Termina inspiracionisidro.html
--------------------------------*/
.fuccia {
  background-color: #1c1c1c;
  width: 100%;
  height: auto;
  margin-bottom: 0;
  padding-bottom: 90px;
  padding-top: 50px;
}

.blog .carousel-indicators {
  left: 0;
  top: auto;
  bottom: -50px;
}
.blog .carousel-indicators li {
  background: #a3a3a3;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background: #ccc;
  border: 1px solid #ccc;
}
.blog .carousel-indicators .active {
  background: #707070;
}

#contact {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 0;
  overflow: hidden;
}
#contact .section-header {
  padding-bottom: 30px;
}
#contact .contact-about h3 {
  font-size: 36px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #007bff;
}
#contact .contact-about p {
  font-size: 14px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
  color: #888;
}
#contact .social-links {
  padding-bottom: 20px;
}
#contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fff;
  color: #007bff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid #007bff;
}
#contact .social-links a:hover {
  background: #007bff;
  color: #fff;
}
#contact .info {
  color: #ffffff;
}
#contact .info i {
  font-size: 32px;
  color: #000000;
  float: left;
  line-height: 1;
}
#contact .info p {
  padding: 0 0 10px 36px;
  line-height: 28px;
  font-size: 14px;
}
#contact .form #sendmessage {
  color: #007bff;
  border: 1px solid #007bff;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}
#contact .form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}
#contact .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}
#contact .form input,
#contact .form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}
#contact .form button[type=submit] {
  background: white;
  border: 2.5px solid #000000;
  text-transform: uppercase;
  padding: 11px 32px;
  color: #000000;
  transition: 0.3s;
  font-size: 85%;
  letter-spacing: 1.5px;
  font-family: Arial;
}
#contact .form button[type=submit]:hover {
  background: #272727;
  cursor: pointer;
  color: white;
}

#footer {
  background: #f2b6c1;
  padding: 0 0 30px 0;
  color: #000000;
  font-size: 14px;
}
#footer .footer-top {
  background: #f2b6c1;
  padding: 60px 0 30px 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}
#footer .footer-top .footer-info h3 {
  font-size: 14px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  color: #000000;
  font-weight: bold;
  padding-bottom: 20px;
  text-transform: uppercase;
}
#footer .footer-top .footer-info p {
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: #000000;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #f2b6c1;
  color: rgb(44, 44, 44);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  border: solid white 0px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  color: #74b5fc;
}
#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #000000;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}
#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 li {
  padding: 8px 0;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul li a {
  color: #000000;
}
#footer .footer-top .footer-links ul li a:hover {
  color: #74b5fc;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact p {
  line-height: 26px;
}
#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}
#footer .footer-top .footer-newsletter input[type=email] {
  border: 0;
  padding: 6px 8px;
  width: 50%;
  height: 44px;
}
#footer .footer-top .footer-newsletter input[type=submit] {
  background: #f2b6c1;
  border: solid white 1.5px;
  width: 50%;
  text-align: center;
  color: #000000;
  transition: 0.3s;
  cursor: pointer;
  text-transform: uppercase;
  padding-left: 12px;
  padding-right: 12px;
  letter-spacing: 1.5px;
  font-size: 14px;
  height: 44px;
}
#footer .footer-top .footer-newsletter input[type=submit]:hover {
  color: #f2b6c1;
  background: #fff;
}
#footer .copyright {
  text-align: center;
  padding-top: 30px;
}
#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #f1f7ff;
}
#footer .credits a {
  color: #bfddfe;
}
#footer .credits a:hover {
  color: #f1f7ff;
}

@media (min-width: 992px) {
  #testimonials .testimonial-item p {
    width: 80%;
  }
}
@media (max-width: 991px) {
  #header {
    height: 60px;
    padding: 10px 0;
  }
  #header .logo h1 {
    font-size: 28px;
    padding: 8px 0;
  }
  #intro {
    padding: 140px 0 60px 0;
  }
  #intro .intro-img {
    width: 80%;
    float: none;
    margin: 0 auto 25px auto;
  }
  #intro .intro-info {
    width: 80%;
    float: none;
    margin: auto;
    text-align: center;
  }
  #why-us .card {
    margin: 0;
  }
}
@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
  .portfolio-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  #intro .intro-info {
    width: 100%;
  }
  #intro .intro-info h2 {
    font-size: 34px;
    margin-bottom: 30px;
  }
  .section-header p {
    width: 100%;
  }
  #testimonials .testimonial-item {
    text-align: center;
  }
  #testimonials .testimonial-item .testimonial-img {
    float: none;
    margin: auto;
  }
  #testimonials .testimonial-item h3,
  #testimonials .testimonial-item h4,
  #testimonials .testimonial-item p {
    margin-left: 0;
  }
}
@media (max-width: 574px) {
  #intro {
    padding: 100px 0 20px 0;
  }
}

/*# sourceMappingURL=style.css.map */
