*{
  color: inherit;
  margin: 0;
padding: 0; 
  box-sizing: border-box;
      -webkit-box-sizing: border-box;
  text-decoration: none;
}
body{
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #707070;
  line-height: 22px;
      -webkit-font-smoothing: antialiased;
}
p{
  white-space: pre-line;
}
em{
  font-weight: 600;
  color: #033474;
}
.w-container{
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}
/* header */
.w-header{
  display: grid;
  height: 150px;
  grid-template-columns: 1fr 2fr;
  background-color: white;
}
.child-header:first-child{
  display: flex;
  align-items: center;
}
.child-header:last-child{
  display: grid;
  grid-template-rows: 1fr 1.5fr;
}
.brand{
  width: 290px;
}
.info-header{
  display: grid;
  color: white;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: none;
  align-items: center;
  background-color: #033474;
}
.info-header > a{
  display: flex;
  justify-content: center;
  position: relative;
}
.info-header > a:before {
  content: '';
  width: 1px;
  height: 20px;
  right: 0;
  top: 0px;
  background-color: white;
  position: absolute;
}
.info-header > a i{
  font-size: 20px;
  margin-right: 12px;
}
.info-header > a strong{
  margin-left: 12px;
}
.rsocial{
  display: flex;
  justify-content: center;
}
.rsocial > a{
  margin-left: 8px;
}
.rsocial > a i{
  font-size: 20px;
  margin-left: 12px;
}
.navbar{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background-color: white;
}
.navbar > ul{
  list-style: none;
  padding: 0;
  margin: 0;  
}
.navbar > ul li{
  display: inline-block;
  padding: 0 10px;
  line-height: 90px;
}
.navbar > ul li a{
  font-weight: 700;
  text-transform: uppercase;
}
/* slidershow */
.slidershow{
  height: auto;
  background-color: white;
  position: relative;
}
.slidershow > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}
.slidershow-page{
  height: 550px;
}
/* section */
.section{
  padding: 100px 0;
}
.bg-section{
  background-color: #F2F1F1;
}
.bg-two-section{
  background-color: #E4E4E4;
}
h2.title-line{
  font-size: 34px;
  color: #5E5D5D;
  margin: 0 0 20px;
  padding: 0 0 33px;
  position: relative;
}
h2.title-line:before{
  content: '';
  width: 60px;
  height: 2px;
  bottom: 0;
  background-color: #0E67DB;
  position: absolute;
}
h2.title-center{
  text-align: center;
}
h2.title-center:before{
  content: '';
  width: 60px;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
      -webkit-transform: translate(-50%, 0);
}
h2.h2-white{
  font-size: 34px;
  margin-bottom: 40px;
}
.link-flex{
  display: flex;
  align-items: center;
  margin: 60px 0 0 0;
}
.link-flex > a{
  margin-right: 24px;
} 
.link{
  font-size: 13px;
  font-weight: 700;
  padding: 11px 28px;
  text-transform: uppercase;
}
.bg-primary{
  color: white;
  background-color: #033474;
}
.bg-secondary{
  color: #033474;
  background-color: #FFFFFF;
}
.bg-three{
  color: white;
  border: none;
  background-color: #0E67DB;
}
.colo-for{
  color: #033474;
}
.link-default{
  margin-left: 40px;
}
.link-default > a{
  color: #033474;
  padding: 11px 18px;
  position: relative;
}
.link-border{
  color: white;
  border: 2px solid white;
  background-color: transparent;
}
.link-default > a:first-child:before{
  content: '';
  width: 1px;
  height: 15px;
  right: 0;
  top: 12px;
  background-color: #9F9F9F;
  position: absolute;
}
/* double text */
.w-double-text{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 60px;
}
/* .child-double-text > p b{
  font-size: 17px;
} */
/* banner */
.s-banner{
  height: 450px;
}
.s-banner > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.flex-caption-reverse{
  display: flex;
  justify-content: flex-end;
}
.caption-banner{
  display: flex;
  width: 60%;
  height: 550px;
  align-items: center;
  position: relative;
}
.caption-banner > img{
  top: -34px;
  margin-right: 20px;
  position: relative;
}
.caption-banner > p{
  font-size: 20px;
  font-weight: 600;
  color: white;
}
/* contact */
.w-contact-bg{
  width: 100%;
  height: 100%;
  color: white;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 100%;
  background-image: url(http://www.orza.hivetech.cl/wp-content/uploads/2019/07/bg-contact.png);
  position: relative;
}
.w-contact-bg:before{
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(3, 52, 116, 0.80);
  position: absolute;
}
.w-contact-bg > .w-container{
  position: relative;
}
.w-contact-bg h2{
  color: white;
}
.w-contact-bg form{
  margin: 50px 0 30px;
}
/* form */
.form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 60px;
}
.child-form-grid,
.form-full{
  margin-bottom: 22px;
}
.child-form-grid > label,
.form-full > label{
  display: block;
  font-weight: 600;
  margin: 0 0 14px;
}
.child-form-grid > input{
  width: 100%;
  min-height: 40px;
  font-size: 14px;
  color: #707070;
  padding: 8px 12px;
  border: none;
}
.form-full > textarea{
  width: 100%;
  height: 240px;
  font-size: 14px;
  color: #707070;
  padding: 12px;
  resize: none;
  border: none;
}
button{
  cursor: pointer;
}
input:focus,
textarea:focus,
button:focus{
  outline: none;
}
/* section video */
.w-video-double{
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.child-video-double:first-child{
  color: white;
  padding: 100px 70px 94px 256px;
  background-color: #0E67DB;
}
.child-video-double:first-child h2{
  width: 52%;
  font-size: 34px;
  line-height: 43px;
  margin: 0 0 20px;
}
.child-video-double:last-child{
  overflow: hidden;
  position: relative;
}
.child-video-double:last-child > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}
/* news */
.w-news{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 90px;
}
.child-news .thumbnail{
  width: 100%;
  height: 212px;
  overflow: hidden;
  margin-bottom: 50px;
}
.child-news .thumbnail > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.child-news span{
  color: #134296;
}
.child-news h2{
  text-transform: uppercase;
  line-height: 26px;
  margin: 10px 0 30px;
}
.fa-clock{
  margin-right: 8px;
}
/* mision & vision */
.w-double-mvision{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 60px;
  margin-top: -230px;
  margin-bottom: 80px;
}
.child-mvision{
  text-align: center;
  padding: 90px 50px 90px;
  background-color: white;
}
.child-mvision > h2{
  font-size: 34px;
  margin: 40px 0 40px;
}
/* footer */
footer{
  padding: 100px 0;
  background-color: #033474;
}
.w-footer{
  display: grid;
  grid-template-columns: 1fr 2fr;
}
.child-footer{
  color: white;
}
.child-footer:first-child{
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.child-footer:last-child{
  display: grid;
  grid-template-rows: 1fr 6fr 1fr;
}
.child-footer-ch{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.child-footer-ch:last-child ul{
  list-style: none;
  padding: 0;
  display: flex;
}
.child-footer-ch:last-child ul li{
  margin-left: 20px;
}
.child-footer-ch:last-child ul a img{
  display: none;
}
.child-footer-ch > a i{
  font-size: 20px;
  color: white;
  margin-left: 12px;
}
.w-newsletter{
  display: flex;
  align-items: center;
}
.newslleter-input{
  margin-left: 20px;
  padding: 3px;
  background-color: white;
}
.newslleter-input > input{
  width: 300px;
  min-height: 40px;
  font-size: 14px;
  color: #707070;
  padding: 8px 12px;
  border: none;
}
.newslleter-input > button{
  cursor: pointer;
}
.icon-contact{
  display: flex;
  align-items: end;
  margin-top: 24px;
}
.icon-contact > img{
  margin-right: 10px;
}
/* quote home */
.section-quote{
  padding: 0;
  overflow: hidden;
}
.w-section-quote{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
}
.w-section-quote > div{
  padding: 60px 0;
}
.w-section-quote > div:first-child{
  display: flex;
  align-items: center;
  font-size: 15px;
}
.w-section-quote > div:last-child{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.w-section-quote > div:last-child:before{
  content: '';
  width: 200%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #033474;
  position: absolute;
}
.w-section-quote div:nth-child(2) h2,
.w-section-quote div:last-child h2{
  font-size: 24px;
  color: white;
  margin: 0;
}
.w-section-quote div:nth-child(2) h2:before,
.w-section-quote div:last-child h2:before{
  display: none;
}
.w-section-quote div:nth-child(2) h2{
  color: #5E5D5D;
}
.quote-link{
  display: flex;
  position: relative;
}
.quote-link > a:first-child{
  margin-right: 18px;
  padding: 8px 28px;
  border: 3px solid white;
}
/* accordion */
.panel-group{
  margin-top: 40px;
}
.panel-heading{
  font-size: 16px;
  padding: 13px 0px;
  text-transform: uppercase;
  border-bottom: 1px solid #9F9F9F;
}
.panel-body{
  padding: 30px 0;
}
.collapse-link{
  display: flex;
  margin-top: 30px;
}
/* carrusel */
.wpcp-wrapper-123 .wpcp-carousel-section.nav-vertical-center,
.wpcp-wrapper-131 .wpcp-carousel-section.nav-vertical-center,
.wpcp-wrapper-136 .wpcp-carousel-section.nav-vertical-center{
  padding: 0 !important;
}
.wpcp-wrapper-123 .wpcp-carousel-section.slick-initialized .slick-slide,
.wpcp-wrapper-131 .wpcp-carousel-section.slick-initialized .slick-slide,
.wpcp-wrapper-136 .wpcp-carousel-section.slick-initialized .slick-slide{
  margin: 0 !important;
}
.wpcp-wrapper-123 .wpcp-carousel-section .wpcp-single-item img,
.wpcp-wrapper-131 .wpcp-carousel-section .wpcp-single-item img,
.wpcp-wrapper-136 .wpcp-carousel-section .wpcp-single-item img{
  width: 100% !important;
  height: 300px;
}
.seriousslider-caption-buttons{
  margin-top: 4em !important;
}
.slick-prev{
  padding: 23px 22px;
  margin-left: 20px;
  background-color: #033474 !important;
}
.slick-prev i{
  top: -14px;
  left: -5px;
  line-height: 0 !important;
  position: relative;
}
.slick-next{
  padding: 23px 22px;
  margin-right: 20px;
  background-color: #033474 !important;
}
.slick-next i{
  top: -14px;
  left: -5px;
  line-height: 0 !important;
  position: relative;
}
.wpcp-wrapper-142 .slick-prev{
  margin-left: 0px !important;
}
.wpcp-wrapper-142 .slick-next{
  margin-right: 0px !important;
}
.section-carrusel{
  padding-top: 0 !important;
}
.section-padding{
  padding-bottom: 100px;
}
.wpcp-carousel-section ul.slick-dots li button{
  width: 8px !important;
  height: 8px !important;
}
#sp-wp-carousel-free-id-123.sp-wpcp-123 ul.slick-dots li.slick-active button,
#sp-wp-carousel-free-id-131.sp-wpcp-131 ul.slick-dots li.slick-active button,
#sp-wp-carousel-free-id-136.sp-wpcp-136 ul.slick-dots li.slick-active button,
#sp-wp-carousel-free-id-142.sp-wpcp-142 ul.slick-dots li.slick-active button{
  width: 10px !important;
  height: 10px !important;
  background-color: #033474 !important;
}
.color-white-uppercase{
  display: block;
  color: white;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.w-video-double-two{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 50px;
  margin-top: 100px;
}
.w-video-container{
  width: 100%;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.14);
}
.title-productos:before{
  display: none;
}
.w-lista-productos{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 50px;
}
.child-lista-producto p{
  font-size: 16px;
  line-height: 25px;
}
/* submenu */
.sub-menu{
  display: none;
  color: white;
  background-color: #133473;
  position: absolute;
  z-index: 1;
}
.sub-menu > li{
  display: flex !important;
  padding: 15px 20px !important;
  line-height: 20px !important;
}
.hover-submenu:hover .sub-menu{
  display: block !important;
}
.arrow-menu{
  margin-left: 5px;
}
/* idioma */
.lang-item-es img,
.lang-item-en img{
  width: 20px;
  height: 14px;
}
.lang-item-es > a {
  background-image: url(https://sjp.cl/wp-content/uploads/2019/03/cl.png);
  background-repeat: no-repeat;
  color: transparent !important;
  background-size: contain;
}
.lang-item-en > a {
  background-image: url(https://sjp.cl/wp-content/uploads/2019/03/gb.png);
  background-repeat: no-repeat;
  color: transparent !important;
  background-size: contain;
}
.lang-item-en,
.lang-item-es{
  width: 50px;
}
.navbar-mobile-block{
  display: none;
}
.navbar-mobile-block img{
  width: 28px;
  cursor: pointer;
}
/* menu mobile */
header{
  background-color: white;
  position: relative;
  z-index: 999;
}
.container-menu{
  padding: 15px;
  margin-top: -278px;
  transition: all 0.5s;
  background-color: #133473;
  position: relative;
  z-index: 10;
}
.toggle-menu{
  margin-top: 0 !important;
}
.container-menu ul{
  padding: 0;
  list-style: none;
}
.container-menu ul li{
  padding: 4px 0;
}
.container-menu ul li a{
  font-weight: 700;
  color: white;
  text-transform: uppercase;
}
.parrafos-new{
  white-space: pre-line;
}
.team-container{
  margin-top: 100px;
}


/* responsive design */
@media (max-width: 1200px){
  .child-footer-ch > a i{
    display: none;
  }
  .child-footer-ch:last-child{
    display: none;
  }
  footer{
    padding: 50px 0;
  }
  .slidershow-page{
      height: 300px !important;
  }
  .w-video-double-two{
      grid-template-columns: 1fr;
      grid-gap: 50px;
      margin-top: 50px;
  }
  .w-double-text{
      grid-template-columns: 1fr;
      grid-gap: 0;
  }
  .rsocial{
      display: none;
  }
  .seriousslider-button{
    font-size: 12px;
  }
  .seriousslider-caption-text h2{
    font-size: 20px;
  }
  .seriousslider .seriousslider-inner > .item p{
    font-size: 12px;
  }
  .seriousslider-caption{
    width: 100%;
    padding: 0 15px;
    left: 0 !important;
    right: 0 !important;
  }
  .panel-title{
    font-size: 14px;
  }
  .navbar-mobile-block{
    display: block;
  }
  .navbar-web-none{
    display: none;
  }
  .section-quote{
    display: none;
  }
  /* .w-section-quote div:nth-child(2) h2, .w-section-quote div:last-child h2 {
    font-size: 20px;
  }
  .w-section-quote > div:last-child:before{
    left: auto;
  }
  .w-section-quote > div{
      padding: 0;
  }
  .w-section-quote{
      grid-template-columns: 1fr;
      grid-gap: 0;
  } */
  .icon-contact{
      margin-top: 0;
  }
  .w-contact-bg form{
      margin: 30px 0 20px;
  }
  .child-form-grid > label, .form-full > label{
      margin: 0 0 8px;
  }
  .child-form-grid input{
      font-size: 12px;
  }
  .form-full textarea{
      height: 100px;
      font-size: 12px;
  }
  .form-grid{
      grid-template-columns: 1fr;
      grid-gap: 0;
  }
  h2.h2-white{
      font-size: 20px;
      margin-top: 20px;
      margin-bottom: 20px;
  }
  .w-double-mvision{
      grid-template-columns: 1fr;
      grid-gap: 30px;
      margin-top: -120px;
      margin-bottom: 20px;
  }
  .child-mvision{
      padding: 40px 20px 40px;
  }
  .child-mvision > img{
      width: 60px;
  }
  .child-mvision > h2{
      font-size: 20px;
      margin: 30px 0 30px;
  }
  .caption-banner > p{
      font-size: 14px;
      text-align: center;
  }
  .caption-banner > img{
      display: none;
  }
  .caption-banner{
      width: 100%;
  }
  .child-news .thumbnail{
      margin-bottom: 30px;
  }
  .link-flex{
      margin: 38px 0 0 0;
  }
  .child-footer > p{
      margin-bottom: 25px;
  }
  .child-footer:last-child{
      grid-template-rows: 1fr;
  }
  .chile-footer-ch:first-child,
  .chile-footer-ch:nth-child(2){
      display: none;
  }
  .w-newsletter{
      display: none;
  }
  .chile-footer-ch{
      justify-content: flex-start;
  }
  .w-footer{
      grid-template-columns: 1fr;
  }
  .brand{
      width: 160px;
  }
  .w-header{
      height: 80px;
  }
  .navbar{
      display: flex;
      align-items: center;
      justify-content: flex-end
  }
  .child-header:last-child{
      grid-template-rows: 1fr;
  }
  .info-header{
      display: none;
  }
  .slidershow{
    height: auto;
  }
  .caption-banner{
      height: 300px;
  }
  .section{
      padding: 50px 0;
  }
  .link-default{
      display: flex;
      margin-left: 0;
  }
  .link-default > a{
      margin-bottom: 0;
  }
  .link{
      width: 100%;
      font-size: 12px;
      text-align: center;
      margin-bottom: 20px;
  }
  .link-flex > a{
      margin-right: 0;
  }
  .link-flex{
      flex-direction: column;
  }
  .s-banner{
      height: 300px;
  }
  h2.title-line{
      font-size: 20px;
  }
  .child-video-double:first-child h2{
      width: 100%;
      font-size: 20px;
  }
  .child-video-double:first-child{
      padding: 40px;
  }
  .w-video-double{
      grid-template-columns: none;
      grid-template-rows: 1fr 1fr;
  }
  .w-news{
      grid-template-columns: repeat(1, 1fr);
      grid-gap: 60px;
  }
  body{
      font-size: 12px;
  }
}