@import url("https://fonts.googleapis.com/css?family=Lato|Lato");
@import url("bootstrapCustomization.css");
@import url("effects.css");
@import url("navbar.css");
:root {
  /* El logotipo usa #018f95; el tono de acción se oscurece para texto blanco. */
  --brand: #018f95;
  --brand-action: #00696f;
  --brand-hover: #00545a;
  --brand-ink: #17383a;
  --brand-soft: #edf7f6;
  --brand-line: #c9e1df;
  --brand-accent: #ad5146;
  --brand-accent-hover: #9d463d;
  --brand-warm: #f8f5ef;
}
body {
  overflow-x: hidden;
  height: 100%;
  color: var(--brand-ink);
  background: #fff;
}
.text-sidebar {
  color: white;
  font-size: 16px;
  margin-bottom: 10px;
}
.container-video {
  position: relative;
  display: block;
  /*width: 100%;
  height: 0;
  padding-bottom: 56.25%;*/
}
.video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.font-16 {
  font-size: 16px;
}

.text-white {
  color: white !important;
}

/*all transition types*/

#fixednav .navbar-fixed-top,
#fixednav li,
#fixednav img,
.mixed-bar {
  -webkit-transition: all 0.3s cubic-bezier(0.69, 1, 0.18, 1) 0s;
  -moz-transition: all 0.3s cubic-bezier(0.69, 1, 0.18, 1) 0s;
  -o-transition: all 0.3s cubic-bezier(0.69, 1, 0.18, 1) 0s;
  transition: all 0.3s cubic-bezier(0.69, 1, 0.18, 1) 0s;
}

/*push wrap class configure transifion on transform event*/

.push-wrap {
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.69, 1, 0.18, 1) 0s;
  -moz-transition: -moz-transform 0.3s cubic-bezier(0.69, 1, 0.18, 1) 0s;
  -o-transition: -o-transform 0.3s cubic-bezier(0.69, 1, 0.18, 1) 0s;
  transition: transform 0.3s cubic-bezier(0.69, 1, 0.18, 1) 0s;
}

/*modification on show-nav is active on push-wrap elements*/

.show-nav .push-wrap {
  -webkit-transform: translate(-300px, 0);
  -moz-transform: translate(-300px, 0);
  -ms-transform: translate(-300px, 0);
  -o-transform: translate(-300px, 0);
  transform: translate(-300px, 0);
}

/*mixed theme color of page*/

.mixed-color {
  background-color: var(--brand-action);
  mix-blend-mode: multiply;
}

.mixed-background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/*sidebar*/

#toogle-nav {
  width: 300px;
  height: 100%;
  position: fixed;
  right: -300px;
  background-color: #24464a;
  z-index: 9999999;
}

/*search field of sidebar*/

#search input[type="text"] {
  background-color: white;
  border: 0 none;
  color: black;
  width: 150px;
  font-weight: 600;
  padding: 6px 15px 6px 5px;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 3px rgba(0, 0, 0, 0.2) inset;
  -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 3px rgba(0, 0, 0, 0.2) inset;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 3px rgba(0, 0, 0, 0.2) inset;
  -webkit-transition: all 0.7s ease 0s;
  -moz-transition: all 0.7s ease 0s;
  -o-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
}

#search input[type="text"]:focus {
  color: black;
  width: 100%;
  -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(0, 0, 0, 0.9) inset;
  -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(0, 0, 0, 0.9) inset;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(0, 0, 0, 0.9) inset;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}

/*close button of sidebar*/

.close-nav {
  z-index: 999999999999;
  cursor: pointer;
  background-image: url(../../images/standard/icons/close.png);
  background-repeat: no-repeat;
  background-size: 100%;
  height: 20px;
  width: 20px;
  display: inline-block;
  margin-top: 30px;
  line-height: 13px;
  color: white;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.close-nav:hover {
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
}

/* style noticia*/

.cover-p {
  min-height: 600px;
}

.productos .imageitem {
  display: block;
  overflow: hidden;
  max-height: 230px;
  position: relative;
  margin-top: -5px;
}

.productos .container-img img {
  transition: all 0.2s ease-in-out;
}

.productos .container-img:hover img {
  transform: scale(1.5);
}

.productos:after {
  mix-blend-mode: multiply;
  background: var(--brand-soft);
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  height: 100%;
  z-index: -1;
}

.container-img p {
  color: rgba(0, 0, 0, 0.6);
}

/* end style noticias*/

/*style of #social#*/

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 2px solid var(--brand);
  width: 75%;
}

.vl {
  border-left: 2px solid white;
  /*height: 100px;*/
  padding-left: 25px;
}

.txt-p {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
}

.fhS h2 {
  color: #fff;
  padding-bottom: 0;
  font-size: 36px;
  font-weight: 600;
  padding-bottom: 20px;
  margin-bottom: 0;
  margin-top: 0;
  position: relative;
  text-transform: uppercase;
}

.h4 {
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 50;
}

.desct {
  padding-left: 70px;
}

.fsb {
  margin-bottom: 30px;
  color: #fff;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.stybox {
  background-color: var(--brand-soft);
  border: 2px solid var(--brand-line);
  padding: 25px 20px;
  border: 1px solid var(--brand-line);
}

.fsbs1 .fhicon,
.img-icon {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.imagenicon {
  width: 70px;
  height: 70px;
  top: 60%;
  transform: translateY(-50%);
  position: absolute;
  left: 30px;
  line-height: 100;
  transition: 0.5s;
}

/*end*/

/*social bar middle index page*/

#social {
  margin: 0;
  color: white;
  overflow: hidden;
  text-shadow: 0px 0px 9px rgba(0, 0, 0, 0.75);
}

#social .col-md-4 {
  margin: 50px auto;
}

#social .col-md-8 {
  margin: 50px auto;
}

/*button styles*/

.btn-download {
  display: table;
  padding: 12px 10px 12px 10px;
  border: 4px dashed var(--brand-accent);
  margin-bottom: 30px;
  text-align: left;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  width: 100%;
}

.btn-more {
  font-size: 15px;
  font-weight: 600 !important;
  color: var(--brand-accent-hover) !important;
  border: 2px solid var(--brand-accent);
  border-radius: 5px;
}

.btn-more:hover {
  color: var(--brand-accent-hover) !important;
  border-color: var(--brand-accent-hover);
}

/*btn-go*/

.btn-go {
  border-radius: 0;
  color: white;
  background-color: var(--brand-accent);
  padding: 10px 0;
}

.item-p a:hover .btn-go {
  color: white;
  background-color: var(--brand-accent-hover);
}

/*end btn-go*/

/*arrow to back to top on page*/

.fa-arrow {
  display: none;
  border: 2px solid black;
  background-color: white;
  color: black;
  height: 60px;
  width: 60px;
  padding-top: 12px;
  padding-left: 15px;
  cursor: pointer;
  position: fixed;
  z-index: 999999;
  right: 40px;
  bottom: 10%;
}

.fa-arrow:hover {
  background-color: black;
  color: white;
}

/*banner*/

.fixed-banner {
  top: 0 !important;
  position: absolute !important;
  width: 100% !important;
  height: 100% !important;
}

.full-screen {
  width: 110%;
  height: 110%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.text-box {
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 20%;
  right: 0;
  width: 95%;
  -webkit-box-shadow: 0px 0px 150px 0px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 0px 0px 150px 0px rgba(0, 0, 0, 0.6);
  box-shadow: 0px 0px 150px 0px rgba(0, 0, 0, 0.6);
}

.item-p a {
  color: inherit;
}

.item-p a:hover {
  color: inherit;
  text-decoration: none;
}

.container-img .paragraph .img-description {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 300;
  font-size: 16px;
}

.container-img .paragraph .img-description b {
  color: black;
}

@media (min-width: 1200px) {
  .text-box {
    width: 60%;
    right: 10%;
  }
}

@media (max-width: 768px) {
  .carousel-inner {
    max-height: 440px;
  }
  .full-screen {
    width: 100%;
    height: 100%;
    background-attachment: scroll;
  }
  .fade {
    opacity: 1 !important;
  }
  .animated {
    -o-transition-property: none !important;
    -moz-transition-property: none !important;
    -ms-transition-property: none !important;
    -webkit-transition-property: none !important;
    transition-property: none !important;
    -o-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -webkit-transform: none !important;
    transform: none !important;
    -webkit-animation: none !important;
    -moz-animation: none !important;
    -o-animation: none !important;
    -ms-animation: none !important;
    animation: none !important;
  }
}

.bg-thubnails {
  background-color: #f2f5f3;
}

/*wayakit*/

.btn-desc {
  text-align: center;
  display: block;
  width: 100%;
  background-color: var(--brand-accent);
  color: #fff;
  padding: 15px 10px;
  cursor: pointer;
  font-size: 18px;
}

.desc {
  border: 1px solid gray;
  background-color: #fff;
  padding: 15px 10px 15px 10px;
  width: 100%;
  font-size: 16px;
}

/* Tamaños del logotipo por estado de la navegación. Estas reglas tienen
   prioridad sobre los tamaños genéricos de imágenes en navbar.css. */
.isolant-logo{display:block;max-width:100%;height:auto}
.large .isolant-logo{width:190px;margin:13px 0}
.small .isolant-logo{width:125px;margin:0}
.navbar-mov .navbar-header .navbar-brand{display:block;float:none;width:100%;height:auto;padding:0;margin:0}
.navbar-mov .navbar-header .isolant-logo{width:160px;max-width:100%;margin:6px 0}

/* Acciones y superficies compartidas del tema claro. */
a { color: var(--brand-action); }
a:hover, a:focus { color: var(--brand-hover); }
.section.section-inter { background-color: var(--brand-soft); }
.btn-warning, .btn-warning:visited,
.btn-primary, .btn-primary:visited,
.btn-success, .btn-success:visited {
  color: #fff;
  background-color: var(--brand-accent);
  border-color: var(--brand-accent);
}
.btn-warning:hover, .btn-warning:focus, .btn-warning:active,
.btn-primary:hover, .btn-primary:focus, .btn-primary:active,
.btn-success:hover, .btn-success:focus, .btn-success:active {
  color: #fff;
  background-color: var(--brand-accent-hover);
  border-color: var(--brand-accent-hover);
}
.btn-default { color: var(--brand-accent); border-color: var(--brand-accent); background: #fff; }
.btn-default:hover, .btn-default:focus { color: var(--brand-accent-hover); border-color: var(--brand-accent); background: var(--brand-soft); }
.btn-go:hover, .item-p a:focus .btn-go { color: #fff; background-color: var(--brand-accent-hover); }
.fa-arrow { color: var(--brand-accent); border-color: var(--brand-accent); }
.fa-arrow:hover { color: #fff; background: var(--brand-accent); }
:focus-visible { outline: 3px solid var(--brand-accent); outline-offset: 2px; }

/* Contacto: la fotografía se conserva bajo una capa de color sólido. */
.contact-section { color: #fff; background: #28575b; }
.contact-section > .container { position: relative; z-index: 1; }
.contact-section .mixed-color { background: linear-gradient(90deg, rgba(24, 67, 71, .74), rgba(24, 67, 71, .82)); mix-blend-mode: normal; }
.contact-section .contact-heading { color: #fff; border-color: rgba(255, 255, 255, .48); }
.contact-section .help-block { color: #e5f1f0; }
.contact-section .form-control { color: var(--brand-ink); background: #fff; border-color: #9abfbd; }
.contact-section .form-control:focus { border-color: var(--brand-action); box-shadow: 0 0 0 3px rgba(1, 143, 149, .18); }
.contact-section a:hover, .contact-section a:focus { color: #fff; text-decoration: underline; }
.site-footer a:hover, .site-footer a:focus { color: #fff; text-decoration: underline; }
.site-footer { color: #fff; background: #102c30; border-top: 1px solid rgba(255, 255, 255, .24); }
#toogle-nav { border-left: 1px solid #3a676b; }
#toogle-nav .text-sidebar { color: #fff; }
#toogle-nav .close-nav { filter: none; }

/* Las tarjetas blancas destacan sobre el fondo claro del catálogo. */
.bg-thubnails .container-img { background-color: #fff; border: 1px solid #d7e2df; }
