/*--Fonts--*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700,800,900');
@font-face {
  font-family: bg-medium;
  src: url(../fonts/brandon-grotesque-medium.woff);
}

/*--Estilos Generales--*/
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body a:first-child{
  /*display: none;*/
}

/*--Tipography--*/
h1 {font-size: 3rem;}
h2 {font-size: 2.75rem; text-transform: uppercase;}
h3 {font-size: 2.25rem;}
h4 {font-size: 1.75rem;}

a, a:hover, a:focus {text-decoration: none;}

a {color: #3b6475;display: block;}

a:hover, a:focus {color: #113240;}

a:focus {outline: none;}

p {
  margin: 0 0 10px;
  font-size: 1.5rem;
  line-height: 1.5;
}
/*--Helpers--*/
.wrapper {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
}

.container-fluid {
  padding: 0;
}

.content {
  display: block;
  margin-top: 5rem;
  margin-bottom: 5rem;
  height: auto;
  overflow: hidden;
}

.section-header .content {
  overflow: visible;
}

.margin-tb-medium,
.margin-tb-small {
  float: left;
  width: 100%;
}

.margin-tb-medium {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.margin-tb-small {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.fade {
    -webkit-transition: opacity 1s linear;
    -o-transition: opacity 1s linear;
    transition: opacity 1s linear;
}

/*--COMPONENTS--*/

/*-Buttons-*/
.btn {
  background: #3b6475;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  color: #FFF;
  padding: .75rem 2rem;
  font-size: 80%;
  text-transform: uppercase;
  -webkit-transition: all .5s linear;
  -o-transition: all .5s linear;
  transition: all .5s linear;
}
.btn:hover,
.btn:focus {
  color: #FFF;
  background: #113240;
  outline: none;
}

.btn--block {
  display: block;
}

.btn--center {
  display: table;
  margin: 0 auto;
}

.descorcha{
  float: right;
  margin-right: 38px;
}

.link {
  text-transform: uppercase;
  font-size: 1.25rem;
  display: inline-block;
  text-align: right;
  color: #444;
}

/*-Carousel-*/
.owl-carousel .owl-item img {
  margin-left: auto;
  margin-right: auto;
}
.owl-carousel .owl-dots,
.owl-carousel .owl-pagination {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  margin-top: 3rem;
}
  .owl-carousel .owl-dots .owl-dot span,
  .owl-carousel .owl-pagination .owl-page span {
    width: 1.25rem;
    height: 1.25rem;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
  }
  .owl-carousel .owl-dots .owl-dot.active span,
  .owl-carousel .owl-pagination .owl-page.active span {
    background: #3b6475;
  }

/*-Tabs-*/
.tabs .nav-tabs {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  border: none;
  text-align: center;
}
  .nav-tabs>li>a,
  .nav-tabs>li>a:focus,
  .nav-tabs>li>a:hover {
    text-transform: uppercase;
    color: #444;
    background: transparent;
    border: none;
  }

  .nav-tabs>li.active>a::after{
    content:'';
    display: block;
    background: #3b6475;
    height: 0.5rem;
    width: 100%;
    margin-top: .5rem
  }
  .nav-tabs>li.active>a,
  .nav-tabs>li.active>a:focus,
  .nav-tabs>li.active>a:hover {
    border: none;
  }

.tabs .tab-content {
  padding: 3rem 0;
}

/*-Page title-*/
.page-title {
  height: 60rem;
  position: relative;
  background-size: cover;
  background-position: center;
}
.page-title::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,.5);
  z-index: 0;
}
  .page-title .wrapper {
    color: #FFF;
    text-transform: uppercase;
    width: 100%;
    -webkit-transform:translateY(-50%);
    -ms-transform:translateY(-50%);
    -moz-transform:translateY(-50%);
    -o-transform:translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
  }

/*--Form--*/
.form .form-group {
  margin-bottom: 2rem;
}
  .form .form-group label {
    text-transform: uppercase;
    font-size: 80%;
    font-weight: 500;
    width: 100%;
  }

.form .form-control {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border: 1px solid #E8E8E8;
  min-height: 6rem;
}

.form select.form-control{
  display: inline-block;
  width: auto;
}

main.single-news .content .margin-tb-small p img {
  display: block;
  max-width: 100%;
  height: auto;
}

main.single-news .content .margin-tb-small p iframe {
  width: 100%;
}

.form .select {
  width: 100%;
  overflow: hidden;
  display: block;
  width: 100%;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #E8E8E8;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  position: relative;
}

.form .select::after {
  content: '';
  position: absolute;
  right: 2rem;
  top: 48%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: .3em .3em 0 .3em;
  border-color: #444 transparent transparent transparent;
  z-index: 5;
  pointer-events: none;
}
  .form .select select {
    width: 130%;
    border: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
    background-image: none;
    appearance: none;
  }

.fail,
.success {
  padding: 1rem 1.5rem;
  border-radius: 1px;
  margin: 2rem 0;
}

.success {
  color: #177517;
  background: #ddf1dd;
}

.fail {
  background: #ffecec;
  color: #d03a37;
}

.error {
  margin: .75rem 0;
  font-size: 80%;
  color: #d03a37;
}

/*--Modal--*/
.modal-video .modal-dialog {
  height: 90vh;
}

.modal-dialog {
  width: 90%;
  max-width: 960px;
  min-height: 90vh;
}

  .modal-dialog .modal-content {
    height: auto;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: none;
  }
    .modal-dialog .modal-content iframe {
      /*height: 100%;*/
      width: 100%;
    }
  .modal-header h2 {
    height: auto;
    float: left;
    margin: 0;
    font-size: 95%;
  }

/*--Flexslider--*/
.galeria .flexslider {
  margin-bottom: 0;
}

.flexslider:hover .flex-direction-nav .flex-prev,
.flexslider:hover .flex-direction-nav .flex-next {
  opacity: 1;
}

.flex-direction-nav a:before {
  content: "\f104";
  font-family: FontAwesome;
  font-size: 2em;
  color: #3b6475;
  text-shadow: none;
}

.flex-direction-nav a.flex-prev:before {
  content: "\f104";
}

.flex-direction-nav a.flex-next:before {
  content: "\f105";
  font-family: FontAwesome;
  font-size: 2em;
  color: #3b6475;
  text-shadow: none;
}

.gallery-title {
  position: absolute;
  bottom: 0;
  margin: 0;
  padding: 30px;
  color: #fff;
  display: block;
  left: 0;
  right: 0;
  background: rgba(0,0,0,.8);
  z-index: 9;
  font-size: 1em;
}



/*--HEADER--*/
header {
  color: #FFF;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}


/*--Menu principal--*/
header .logo {
  width: 20%;
  padding: 0 1rem;
}
  .navbar-header {
    float: none;
  }
    .languages {
      padding: 1.75rem 0 0 0;
      float: right;
      font-weight: 300;
      font-size: 90%;
      margin-bottom: 0;
    }
      .languages li {
        list-style: none;
        float: left;
        margin-left: .5rem;
        font-size: 85%;
        text-transform: uppercase;
      }
      .languages li:first-child {
        border-right: 1px solid rgba(255,255,255,.5);
        padding-right: 1.5rem;
        margin-right: 1rem;
      }
        .languages li a {
          color: #FFF;
        }

  .main-menu {
    padding: 0;
  }
  .navbar-nav {
    width: 42.5%;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
  }
    .navbar-nav>li {
      float: none;
      margin-right: 3rem;
    }
    .navbar-nav>li:last-child {
      margin-right: 0;
    }
      .navbar-nav>li>a {
        padding-left: 0;
        padding-right: 0;
        text-transform: uppercase;
        color: #FFF;
        font-size: 85%;
        font-weight: 400;
        padding-left: 0;
        padding-right: 0;
        text-align: center;
      }
      .navbar-nav>li>a:hover,
      .navbar-nav>li>a:focus {
        background: transparent;
      }

      .navbar .navbar-toggle .icon-bar {
        background: #FFF;
      }

      .navbar-form {
        padding: 0;
        float: none;
      }
        .navbar-form .fa {
          color: #FFF;
        }

        .navbar-form .input-group {
          background: rgba(255,255,255,.2);
          -webkit-border-radius: 50px;
          -moz-border-radius: 50px;
          border-radius: 50px;
          -webkit-box-shadow: none;
          -moz-box-shadow: none;
          box-shadow: none;
        }
          .navbar-form .input-group .form-control,
          .navbar-form .input-group .input-group-addon {
            background: transparent;
            border: none;
            color: #fff;
          }

/*--Video--*/
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16/9 ratio */
  padding-top: 30px; /* IE6 workaround*/
  height: 0;
  overflow: hidden;
  margin-top: 4rem;
  margin-bottom: 4rem;
}
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

/*--FOOTER--*/
footer {
  background-image: url('../img/bg-footer.jpg');
  background-size: cover;
  background-position: center;
  float: left;
  width: 100%;
  color: #FFF;
  padding: 4rem 0;
}
  footer h4 {
    border-top: 4px solid #3b6475;
    padding-top: 1rem;
  }
  footer h4,
  footer h5 {
    text-transform: uppercase;
  }

  footer p {
    font-size: 85%;
  }

  footer a {
    color: #FFF;
  }

  footer .rrss ul{
    margin-top: 2rem;
  }
    footer .fa {
      font-size: 1.5em;
    }

  footer .form-control {
    background: rgba(255,255,255,.2);
    border: none;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    color: #FFF;
    text-transform: uppercase;
    text-align: center;
  }
  footer input::placeholder,
  footer input::-webkit-input-placeholder,
  footer input::-moz-placeholder,
  footer input:-ms-input-placeholder,
  footer input:-moz-placeholder {
    color: #FFF;
  }

footer .bottom {
  text-align: right;
  margin-top: 25px;
}

footer .complaints .flex {
  height: 100px;
  flex-direction: column;
}

footer .complaints .btn {
  margin-bottom: 15px;
  white-space: normal;
}

/*--HOME--*/
.section-home {
  margin-top: 5rem;
  margin-bottom: 5rem;
  display: block;
  height: auto;
  float: left;
  width: 100%;
}
  .section-home h2 {
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
  }


/*--Section Header--*/
.section-header {
  height: 100vh;
  text-align: center;
  position: relative;
  color: #FFF;
  font-weight: 300;
}
.section-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,.5);
  z-index: 1;
}
  .section-header #video_background {
  	position: absolute;
  	bottom: 0px;
  	right: 0px;
  	min-width: 100%;
  	min-height: 100%;
  	width: auto;
  	height: auto;
  	z-index: -1000;
  	overflow: hidden;
  }
  .section-header .wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    height: 100%;
    justify-content: center;
    -webkit-justify-content: center;
  }
    .section-header .content,
    .section-header .down {
      z-index: 2;
    }
    .section-header h1 {
      margin: 0;
      text-transform: uppercase;
      font-weight: 300;
    }
      .section-header h1 span{
        display: block;
      }

      .section-header .play-video {
        position: relative;
        height: 7rem;
        text-transform: uppercase;
        margin: 2rem 0;
        cursor: pointer;
        width: 200px;
        display: inline-block;
        color: #FFF;
      }
      .section-header .play-video::after,
      .section-header .play-video::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform:translate(-50%, -50%);
        -ms-transform:translate(-50%, -50%);
        -moz-transform:translate(-50%, -50%);
        -o-transform:translate(-50%, -50%);
        transform: translate(-50%, -50%);

      }
      .section-header .play-video::after {
        height: 7rem;
        width: 7rem;
        display: block;
        border: 2px solid #fff;
        text-align: center;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        -webkit-transition: all 0.3s ease-in-out;
      }
      .section-header .play-video::before {
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 10px 0 10px 14.0px;
        border-color: transparent transparent transparent #fff;
      }
      .section-header .play-video:hover::after {
        height: 7.5rem;
        width: 7.5rem;
      }
        .section-header .play-video span {
          position: absolute;
          bottom: -3rem;
          left: 0;
          right: 0;
        }

    .section-header .down {
      position: absolute;
      bottom: 4rem;
      left: 0;
      right: 0;
      text-transform: uppercase;
    }
    .section-header .down::after {
      content: "\f107";
      display: block;
      font-family: FontAwesome;
      font-size: 3em;
      text-rendering: auto;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      line-height: normal;
    }

  .section-header a {
    color: #FFF;
  }

/*--Section Wines Sparklings--*/
.section-wines-sparklings {
  position: relative;
}
  .section-wines-sparklings .tabs::before {
    content: '';
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    height: 20rem;
    background: #f5f5f5;

  }
    .wines {
      margin-top: 5rem;
    }
      .wines .owl-wrapper-outer {
        z-index: 1;
      }
        .wines .item {
          height: 50rem;
          cursor: pointer;
        }
          .wines .item img,
          .wines-catalogue-container .item img {
            width: 90px;
            margin: 0 auto;
            z-index: 1;
            position: relative;
            margin-bottom: 3rem;
          }

          .wines .item .caption,
          .wines-catalogue-container .item .caption {
            margin: 0 auto;
            text-align: right;
            -webkit-transform:rotate(-90deg);
            -ms-transform:rotate(-90deg);
            -moz-transform:rotate(-90deg);
            -o-transform:rotate(-90deg);
            transform: rotate(-90deg);
            padding-right: 40%;
            z-index: 0;
            position: relative;
          }
            .wines .item .caption h3,
            .wines-catalogue-container .item .caption h3 {
              font-size: 17px;
              font-weight: 300;
              margin: 0;
              text-align: right;
              word-break: break-word;
            }

      .wines .owl-nav,
      .wines .owl-buttons {
        position: absolute;
        top: 40%;
        right: 0;
        left: 0;
        z-index: 1;
        -webkit-transform:translateY(-50%);
        -ms-transform:translateY(-50%);
        -moz-transform:translateY(-50%);
        -o-transform:translateY(-50%);
        transform: translateY(-50%);
        color: #FFF;
        font-size: 2em;
      }
        .wines .owl-nav .owl-prev,
        .wines .owl-buttons .owl-prev {
          float: left;
        }
        .wines .owl-nav .owl-next,
        .wines .owl-buttons .owl-next {
          float: right;
        }
        .wines .owl-nav .owl-prev,
        .wines .owl-buttons .owl-prev,
        .wines .owl-nav .owl-next,
        .wines .owl-buttons .owl-next {
          color: #3b6475;
        }

        .wines-catalogue-carousel .owl-stage {
          margin-left: auto;
          margin-right: auto;
        }

  .section-wines-sparklings .big-img {
    margin-top: -20rem;
    overflow: hidden;
    height: auto;
    margin-bottom: 3rem;
    text-align: center;
  }

  .section-wines-sparklings .big-img:before {
    content:'';
    display: block;
  }
      .section-wines-sparklings .big-img img {
        height: 690px;
        width: auto;
        margin: 0 auto;
    }

/*--Conosur Vineyards and Winery--*/
.conosur-vineyards-carousel .owl-item a {
  display: block;
}
.conosur-vineyards-carousel .item h3 {
  position: absolute;
  bottom: 0;
  margin: 0;
  padding: 2rem 10rem 4rem 10rem;
  text-align: center;
  color: #FFF;
  font-weight: 300;
  font-size: 1.5rem;
  background: rgba(0,0,0,.6);
  width: 100%;
}

.conosur-vineyards-carousel .owl-dots,
.conosur-vineyards-carousel .owl-pagination {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
}

/*--Valleys Winery--*/
.section-valleys-winery {
  text-align: center;
  text-transform: uppercase;
}
  .section-valleys-winery .flex {
    justify-content: space-around;
    -webkit-justify-content: space-around;
    align-items: center;
  }
  .section-valleys-winery .text.flex {
    flex-direction: column;
    -webkit-flex-direction: column;
    justify-content: center;
    -webkit-justify-content: center;
   /*  height: 100%; */
  }
    .section-valleys-winery h2 {
      margin-bottom: 2rem;
    }
    .section-valleys-winery nav li i {
      display: block;
      margin: 0 auto;
    }
    .section-valleys-winery a {
      color: #444;
      display: block;
    }

/*--Sustainbility--*/
.section-sustainbility {
  color: #FFF;
  text-align: center;
}
  .section-sustainbility a {
    display: block;
    color: #FFF;
  }
    .section-sustainbility .flex {
      height: 50rem;
      background-size: cover;
      background-position: center;
      flex-direction: column;
      -webkit-flex-direction: column;
      justify-content: center;
      -webkit-justify-content: center;
    }
      .section-sustainbility .container-text {
        width: 50%;
        margin: 0 auto;
      }

/*--News--*/
.section-news .news-carousel .owl-dots {
  margin: 1.5rem 0;
}

.section-news .owl-carousel .card {
  margin: 0 1rem;
}
.section-news .card {
  border: 1px solid #ccc;
}
  .section-news .flex {
    justify-content: space-between;
  }
  .section-news .top,
  .section-news .text {
    padding: 2rem;
  }
    .section-news .media-heading {
      font-weight: 300;
      font-size: 1.5rem;
    }
      .section-news .media-heading .small {
        display: block;
        margin-top: .5rem;
      }
    .section-news .top a {
      color: #958213;
    }
    .section-news .media-body {
      width: auto;
    }
      .section-news .text h3 {
        text-transform: uppercase;
        font-weight: 300;
        font-size: 1.75rem;
        margin: 0 0 1rem 0;
        min-height: 6rem;
      }
      .section-news .text h3::before {
        content:"";
        height: .5rem;
        width: 5rem;
        display: block;
        background-color: #3b6475;
        margin-bottom: 1rem;
      }


.section-news .img-container {
  height: 300px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
  .section-news .img-container img {
    height: 100%;
    width: auto;
  }


/*--RRSS--*/
.section-rrss h4 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.75rem;
}
  .section-rrss h4 .fa {
    font-size: 2em;
    display: block;
    margin-bottom: 1rem;
  }

.section-rrss .owl-dots {
    margin: 1.5rem 0;
}


/*--PAGE WINE AND SPARKLINGS--*/
.wines-catalogue-container {
  justify-content: center;
  -webkit-justify-content: center;
}
  .wines-catalogue-container .item {
    width: 6rem;
    margin: 0 1rem;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    position: relative;
  }
    .wines-catalogue-container .item .caption {
      height: 10rem;
    }

/*--PAGE CONO SUR WINERY--*/
.page-conosur-winery .content h2 {
  text-align: center;
}
  .page-conosur-winery .content .core-values img,
  .page-conosur-winery .content .innovative-varieties img {
    margin: 4rem auto;
  }

/*--PAGE NEWS--*/
/*.page-news .card {
  margin-bottom: 4rem;
}*/

.page-news .filter{
  margin-top: 0;
}

.page-news .filter h4 {
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  text-align:center;
}
.page-news .filter ul {
  margin: 0;
  justify-content: center;
  -webkit-justify-content: center;
}
  .page-news .filter ul li {
    margin: 0 1rem;
  }
    .page-news .filter ul li {
      margin: 0 1rem;
      border: 1px solid #3b6475;
      -webkit-border-radius: 6px;
      -moz-border-radius: 6px;
      border-radius: 6px;
      background: #FFF;
      text-transform: uppercase;
    }
    .page-news .filter ul li.active {
      background: #3b6475;
    }
      .page-news .filter ul li a {
        padding: .25rem 2rem;
        display: block;
        color: #000;
        text-align: center;
        text-decoration: none;
      }
      .page-news .filter ul li.active a {
        color: #FFF;
      }

/*--PAGE SUSTAINABILITY--*/
.page-sustainability .certificates .item {
  margin-bottom: 4rem;
  min-height: 20rem;
}

.sustanable-practices .btn {
  margin-top: 1rem;
  margin-bottom: 2rem;
}


/*--SINGLE WINES--*/
.single-wines .content-wine {
  overflow: visible;
}
    .single-wines .content-wine .awards {
      margin-top: 5rem;
    }
      .single-wines .content-wine .awards img {
        margin-left: auto;
        margin-right: auto;
        padding: 2rem;
      }
  .single-wines .content-wine .img-wine {
    height: 70rem;
    float: right;
    margin-top: -50rem;
  }

/* #recommend-wines-carousel .owl-wrapper,
.wines-catalogue-carousel .owl-wrapper,
#recommend-wines-carousel .owl-item,
.wines-catalogue-carousel .owl-item {
  margin-left: auto;
  margin-right: auto;
}*/



/*--PAGE VALLEYS AND WINERY--*/
/*-Map-*/
#map {
  height: 50rem;
}

.valleys-winery-tabs a {
  display: block;
  text-decoration: none;
  -webkit-transition: all .5s linear;
  -o-transition: all .5s linear;
  transition: all .5s linear;
}
  .valleys-winery-tabs .item {
    text-align: center;
    margin-bottom: 3rem;
    border: 1px solid #3b6475;
  }
    .valleys-winery-tabs .item figcaption {
      text-align: center;
      text-transform: uppercase;
      padding: 1rem;
      background: rgba(59, 100, 117, .075);
    }
    .valleys-winery-tabs a:hover .item figcaption {
      background: #3b6475;
      color: #FFF;
    }

    .valleys-winery-tabs .item a {
      width: 50%;
      padding-top: 10px;
      padding-bottom: 10px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .valleys-winery-tabs .item .flex {
      justify-content: space-around;
    }

    .valleys-winery-tabs .item a::before {
      content: "";
      display: inline-block;
      height: 28px;
      width: 35px;
      background-image: url(../img/icons-valley-winery.png);
      background-size: cover;
      margin-right: 10px;
      background-repeat: no-repeat;
      -webkit-transition: all .25s ease;
      -o-transition: all .25s ease;
      transition: all .25s ease;
    }

    .valleys-winery-tabs .item .gallery::before {
          background-position: 0 -36px;
    }

    .valleys-winery-tabs .item .img360::before {
      background-position: 0 2px;
    }

    .valleys-winery-tabs .item .link{
      color: #3b6475;
    }

    .valleys-winery-tabs .item .link:hover {
      color: #FFF;
      background: #3b6475;
    }

    .valleys-winery-tabs .item .gallery:hover::before {
          background-position: 0 -115px;
    }

    .valleys-winery-tabs .item .img360:hover::before {
      background-position: 0 -76px;
    }


.valleys-tab::before,
.winery-tab::before {
  display: block;
  width: 100%;
}

.valleys-tab::before {
  content: url('../img/valleys-icon.png');
}

.winery-tab::before {
  content: url('../img/barrels-icon.png');
}

/*--PAGE SEARCH--*/
.results-list .item {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #EEE;
}
.results-list .item:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
  .results-list .item h3 {
    margin-top: 0;
  }

  .results-list .item .link {
    margin-top: 1rem;
  }

/*--PAGE COMPLAINTS--*/
.page-complaints iframe {
  width: 100%;
  height: 360px;
}

.estado-denuncia .modal-dialog {
  min-height: auto;
  height: 420px;
}
.estado-denuncia .modal-header {
  border: none;
  padding-bottom: 0;
  background: #FFF;
}
.estado-denuncia .modal-content {
  height: 100%;
}

/*--Pagina bienvenida--*/
.welcome {
  background-image: url(../img/bg-welcome.jpg);
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  color: #FFF;
  position: relative;
  z-index: 1;
}

.welcome::after {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.5);
  display: block;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
}

.welcome>.flex {
  height: 100%;
  width: 70%;
  position: relative;
  z-index: 3;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.welcome h1 {
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 300;
  margin: 1em 0;
}

.welcome .text h2 {
  font-size: 1.75em;
  text-transform: inherit;
  font-weight: 300;
}

.welcome .text h2::after {
  content: '';
  display: block;
  background: #3b6475;
  height: 0.5rem;
  width: 15%;
  margin: .5rem auto .5rem auto;
}

.welcome .text p {
  display: block;
  width: 100%;
  font-size: 1.75rem;
  line-height: normal;
}

.welcome .text ul li{
  display: inline;
}

.welcome .text .btn {
  width: 8em;
}

.welcome .text-es,
.welcome .text-en {
  margin: 0 2em;
  width: 100%;
}

.welcome_container{
  margin-top: 20px;
}

.language_selector {
  border: 1px solid #ccc;
  background-color: #FFFFFF;
  width: 250px;
  height: 35px;
  border-radius: 3px;
  padding: 5px;
  color: #000000;
}

select.minimal {
  background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;      
  appearance: none;
  width: 500px;
}

select.minimal::-ms-expand {
  display: none;
}

/*==================================
REDIRECT
==================================*/
input.redirect_credentials {
    height: 40px;
    border-radius: 5px;
    background: #FFF;
    padding: 10px;
    margin-bottom: 10px;
    width: 500px;
    color: #000;
    font-size: 20px;
}

.redirect_response{
  color: red;
  margin: 0 auto;
  margin-top: 20px;
  width: 500px;
}

/*==================================
    TIMELINE
==================================*/
/*-- GENERAL STYLES
------------------------------*/
.timeline {
  line-height: 1.4em;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.timeline h1, .timeline h2, .timeline h3, .timeline h4, .timeline h5, .timeline h6 {
  line-height: inherit;
}

/*----- TIMELINE ITEM -----*/
.timeline-item {
  padding-left: 2.5em;
  position: relative;
}
.timeline-item:last-child {
  padding-bottom: 0;
}

/*----- TIMELINE MARKER -----*/
.timeline-marker {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15px;
}
.timeline-marker:before {
  background: #3b6475;
  border: 3px solid transparent;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  content: "";
  display: block;
  height: 1em;
  position: absolute;
  top: .25em;
  left: 0;
  width: 1em;
  transition: all 0.3s ease-in-out;
}
.timeline-marker:after {
  content: "";
  width: .25em;
  background: #CCD5DB;
  display: block;
  position: absolute;
  top: 1.5em;
  bottom: 0;
  left: .35em;
}
.timeline-item:last-child .timeline-marker:after {
  content: none;
}


/*----- TIMELINE CONTENT -----*/
.timeline-content {
  padding-bottom: 2.5em;
}

.timeline-content img {
  margin-bottom: 1em;
}
.timeline-content p:last-child {
  margin-bottom: 0;
}

/*----------------------------------------------
    MOD: TIMELINE CENTERED
----------------------------------------------*/
@media (min-width: 768px) {
  .timeline-centered,
  .timeline-centered .timeline-item,
  .timeline-centered .timeline-info,
  .timeline-centered .timeline-marker,
  .timeline-centered .timeline-content {
    display: block;
    margin: 0;
    padding: 0;
  }
  .timeline-centered .timeline-item {
    padding-bottom: 2.5em;
    overflow: hidden;
  }
  .timeline-centered .timeline-marker {
    position: absolute;
    left: 50%;
    margin-left: -0.5em;
  }
  .timeline-centered .timeline-info,
  .timeline-centered .timeline-content {
    width: 50%;
  }
  .timeline-centered > .timeline-item:nth-child(even) .timeline-info {
    float: left;
    text-align: right;
    padding-right: 2em;
  }
  .timeline-centered > .timeline-item:nth-child(even) .timeline-content {
    float: right;
    text-align: left;
    padding-left: 2em;
  }
  .timeline-centered > .timeline-item:nth-child(odd) .timeline-info {
    float: right;
    text-align: left;
    padding-left: 2em;
  }
  .timeline-centered > .timeline-item:nth-child(odd) .timeline-content {
    float: left;
    text-align: right;
    padding-right: 2em;
  }

}

/*--Bootstrap--*/
.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-xs-5ths {
    width: 20%;
    float: left;
}

@media (min-width: 768px) {
    .col-sm-5ths {
        width: 20%;
        float: left;
    }
}

@media (min-width: 992px) {
    .col-md-5ths {
        width: 20%;
        float: left;
    }
}

@media (min-width: 1200px) {
    .col-lg-5ths {
        width: 20%;
        float: left;
    }
}

@media screen and (max-width: 500px){
  select.minimal{
    width: 100%;
  }
}


/*--Animations--*/
.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    transform: translateY(0); }
  40% {
    -moz-transform: translateY(-15px);
    transform: translateY(-15px); }
  60% {
    -moz-transform: translateY(-15px);
    transform: translateY(-15px); } }

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  40% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px); }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px); } }

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  40% {
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px); }
  60% {
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px); } }

.font-bg-medium {
  font-family: 'bg-medium';
}