#header {
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 50px;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100px;
  width: 100%;
}
#header .header__logo img,
#header .header__logo svg {
  -webkit-transition: 0.4s fill;
  transition: 0.4s fill;
  width: 220px;
  fill: white;
}

#header .header__nav > a:hover {
  color: #ffb81c;
 
}


.datepicker { 
margin-top: -20px;
}

#header .header__nav {
  text-align: center;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#header .header__nav .nav__menu {
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: left;
  padding: 10px;
  width: 100%;
  opacity: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition: 0.3s opacity, 0.3s -webkit-transform;
  transition: 0.3s opacity, 0.3s -webkit-transform;
  transition: 0.3s opacity, 0.3s transform;
  transition: 0.3s opacity, 0.3s transform, 0.3s -webkit-transform;
  pointer-events: none;
}
#header .header__nav .nav__menu a {
  margin: 0 -10px;
  padding: 2px 10px;
  font-size: 12px;
}
#header .header__nav .nav__menu a:hover {
  background-color: black;
}
#header .header__nav .nav__menu-title {
  color: #ffb81c;
  border-bottom: 1px solid #ffb81c;
  font-size: 11px;
}
#header .header__nav .nav__submenu {
  display: inline-block;
  position: relative;
  -webkit-transition: 0.3s background;
  transition: 0.3s background;
}
#header .header__nav .nav__submenu:hover {
  background: rgba(0, 0, 0, 0.4);
}
#header .header__nav .nav__submenu:hover .nav__menu {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1);
          transform: scale(1);
}
#header .header__nav a,
#header .header__nav .nav__submenu > a {
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 0 15px;
  text-decoration: none;
  -webkit-transition: 0.2s font-weight;
  transition: 0.2s font-weight;
}
#header .header__lang {
  margin-left: auto;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}
#header .header__lang img {
  height: 22px;
}
#header .header__menu {
  width: 50px;
  height: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 0;
  z-index: 500;
  background: transparent;
}
#header .header__menu span {
  width: 23px;
  height: 2px;
  border-radius: 5px;
  margin: 2px 0;
  background-color: white;
  display: inline-block;
  -webkit-transition: 0.2s opacity, 0.2s -webkit-transform;
  transition: 0.2s opacity, 0.2s -webkit-transform;
  transition: 0.2s opacity, 0.2s transform;
  transition: 0.2s opacity, 0.2s transform, 0.2s -webkit-transform;
}
#header .header__menu.active span {
  width: 22px;
}
#header .header__menu.active span:first-child {
  -webkit-transform: rotate(45deg) translate3d(4px, 4px, 0px);
          transform: rotate(45deg) translate3d(4px, 4px, 0px);
}
#header .header__menu.active span:nth-child(2) {
  opacity: 0;
}
#header .header__menu.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate3d(5px, -4px, 0px);
          transform: rotate(-45deg) translate3d(5px, -4px, 0px);
}
#header .header__sidebar {
  min-width: 300px;
  min-height: -webkit-min-content;
  min-height: -moz-min-content;
  min-height: min-content;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0;
  -webkit-transition: 0.5s opacity, 0.5s -webkit-transform;
  transition: 0.5s opacity, 0.5s -webkit-transform;
  transition: 0.5s opacity, 0.5s transform;
  transition: 0.5s opacity, 0.5s transform, 0.5s -webkit-transform;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: auto;
  position: fixed;
  right: 0;
  bottom: 0;
  width: 40%;
  height: 100%;
  background-image: url("../img/sidebar-bg.gif");
}
#header .header__sidebar.active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  opacity: 1;
  pointer-events: auto;
}
#header .header__sidebar .sidebar__nav {
  padding-bottom: 15px;
  padding-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#header .header__sidebar .sidebar__nav a {
  text-decoration: none;
  padding: 3px 0;
  color: white;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  display: block;
  width: 100%;
  -webkit-transition: 0.2s background-color;
  transition: 0.2s background-color;
}
#header .header__sidebar .sidebar__nav a:hover {
  background-color: #ffb81c;
}
#header .header__sidebar .nav__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
#header .header__sidebar .nav__menu a {
  padding: 2px 10px;
  font-size: 12px;
  -webkit-transition: 0.2s color, 0.2s background-color;
  transition: 0.2s color, 0.2s background-color;
}
#header .header__sidebar .nav__menu a:hover {
  background-color: white;
  color: black;
}
#header .header__sidebar .nav__menu-title {
  color: #ffb81c;
  border-bottom: 1px solid #ffb81c;
  text-align: center;
  width: 60%;
  margin: auto;
  font-size: 12px;
}
#header .header__sidebar .nav__submenu {
  display: inline-block;
  position: relative;
}
#header .header__sidebar .sidebar__social {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#header .header__sidebar .sidebar__social a {
  margin: 0 10px;
  display: inline-block;
}
#header .header__sidebar .sidebar__social img {
  width: 23px;
}
#header .header__sidebar .sidebar__address {
  color: #bcbcbc;
  font-family: "PT Serif", sans-serif;
  text-align: center;
  font-style: italic;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#header .header__sidebar .sidebar__address p {
  margin: 0;
}
#header .header__sidebar .sidebar__address a {
  color: #bcbcbc;
}
@media (max-width: 1150px) {
  #header .header__nav a,
  #header .header__nav .nav__submenu > a {
    font-size: 12px;
    margin: 0 5px;
  }
  #header .header__logo svg {
    width: 150px;
  }
}
@media (max-width: 900px) {
  #header .header__nav {
    display: none;
  }
  #header .header__lang {
    display: none;
  }
  #header .header__menu {
    margin-left: auto;
  }
}
@media (max-width: 576px) {
  #header {
    padding: 0 20px;
    height: 60px;
  }
  #header .header__sidebar .sidebar__nav a {
    font-size: 17px;
  }
}
@media (max-height: 540px) {
  #header .header__sidebar {
    display: block;
  }
}
#header.header-fixed {
  pointer-events: none;
}
#header.header-fixed .header__logo,
#header.header-fixed .header__menu {
  pointer-events: auto;
}
#header.header-fixed .header__nav,
#header.header-fixed .header__lang {
  opacity: 0;
  pointer-events: none;
}
#header.header-fixed .header__menu {
  pointer-events: auto;
}
#header.header-fixed .header__menu span {
  background-color: #a1a1a1;
}
#header.logo-black .header__logo img,
#header.logo-black .header__logo svg {
  fill: black;
}
#header.header-single {
  background-color: #3b3b3b;
}

#footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 50px;
  z-index: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100px;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  pointer-events: none;
}
#footer .footer__social a {
  pointer-events: auto;
  margin-right: 10px;
}
#footer .footer__social a img {
  width: 23px;
}
#footer .footer__address {
  -webkit-transition: 0.5s opacity;
  transition: 0.5s opacity;
  color: #bcbcbc;
  font-family: "PT Serif", sans-serif;
  text-align: center;
  font-style: italic;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}
#footer .footer__address p {
  margin: 0;
}
#footer .footer__address a {
  color: #bcbcbc;
}
#footer .footer__wp a {
  pointer-events: auto;
  width: 55px;
  height: 55px;
  background-color: #30bf39;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
}
#footer .footer__wp a img {
  width: 20px;
}
#footer .footer__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#footer .footer__bg .bg__black {
  background-color: #3b3b3b;
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  -webkit-transition: 0.5s opacity;
  transition: 0.5s opacity;
}
#footer .footer__bg .bg__normal {
  background-image: url("../img/sidebar-bg.gif");
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  top: 0;
  -webkit-transition: 0.5s opacity;
  transition: 0.5s opacity;
}
#footer.bg-normal .footer__address {
  opacity: 1;
  pointer-events: auto;
}
#footer.bg-normal .footer__bg .bg__normal {
  opacity: 1;
}
#footer.bg-black .footer__bg .bg__black {
  opacity: 1;
}
#footer.footer-single {
  background-image: url("../img/sidebar-bg.gif");
  position: relative;
  pointer-events: auto;
}
#footer.footer-single .footer__address {
  opacity: 1;
}
@media (max-width: 900px) {
  #footer {
    background-image: url("../img/sidebar-bg.gif");
    position: relative;
    pointer-events: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    padding: 20px 0;
  }
  #footer .footer__address {
    opacity: 1;
  }
  #footer .footer__wp {
    position: absolute;
    top: -30px;
    right: 20px;
  }
}

.page-slider__swiper .swiper-pagination-bullet {
  background-color: #ffb81c;
  margin: 10px 20px 10px 0 !important;
}
@media (max-width: 900px) {
  .page-slider__swiper {
    height: auto;
  }
  .page-slider__swiper > .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.section-title {
  margin-bottom: 30px;
  color: #272425;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section-title:after {
  content: "";
  width: 100px;
  height: 8px;
  background-color: #ffb81c;
  display: inline-block;
  margin-top: 10px;
}
.section-title.no-border:after {
  content: none;
}

.btn-yellow {
  background-color: #ffb81c;
  color: white;
  height: 55px;
  padding: 0 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 10;
}
.btn-yellow:before {
  -webkit-transition: 0.2s -webkit-transform;
  transition: 0.2s -webkit-transform;
  transition: 0.2s transform;
  transition: 0.2s transform, 0.2s -webkit-transform;
  content: "";
  background-color: black;
  position: absolute;
  inset: 0;
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  z-index: -1;
}
.btn-yellow:hover:before {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}
.btn-yellow:hover {
  color: white;
  text-decoration: none;
}
.btn-yellow.loading {
  background-image: url("../img/loading.gif");
  pointer-events: none;
  background-position: 90% center;
  background-repeat: no-repeat;
  padding-right: 48px;
  background-size: 17px;
  opacity: 0.8;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide-contacto {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: calc(100vh - 100px);
}
.slide-contacto .copy {
  font-size: 11px;
  margin-bottom: 10px;
  margin-top: -15px;
  color: #828282;
}
.slide-contacto .copy a {
  color: #828282;
}
.slide-contacto p {
  color: #787878;
  font-family: "PT Serif", sans-serif;
  font-style: italic;
  max-width: 600px;
  text-align: center;
  margin: 0 auto 20px auto;
}
.slide-contacto form {
  max-width: 700px;
  margin: 0 auto;
}
.slide-contacto input,
.slide-contacto textarea {
  min-height: 50px;
  width: 100%;
  border: 0;
  background-color: white;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 14px;
  padding: 10px;
  resize: none;
}
.slide-contacto textarea {
  min-height: 100px;
}
@media (max-height: 570px) {
  .slide-contacto .section-title {
    font-size: 25px;
    margin-bottom: 10px;
  }
  .slide-contacto input,
  .slide-contacto textarea {
    min-height: 40px;
    margin-bottom: 5px;
  }
  .slide-contacto textarea {
    min-height: 80px;
  }
}
@media (max-width: 900px) {
  .slide-contacto {
    height: auto;
    padding: 60px 20px;
  }
}

.slide-fotos {
  padding-top: 40px;
  height: calc(100vh - 178px);
}
.slide-fotos .swiper-container {
  height: 100%;
}
.slide-fotos .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.slide-fotos .item-foto {
  width: 25%;
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}
.slide-fotos .item-foto img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slide-fotos .item-foto:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .slide-fotos {
    height: auto;
  }
  .slide-fotos .item-foto {
    height: auto;
    padding-bottom: 25%;
  }
}

.swiper-nav {
  position: absolute;
  left: calc(50% - 52px);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}
.swiper-nav.active {
  opacity: 1;
  pointer-events: auto;
}
.swiper-nav .prev,
.swiper-nav .next {
  width: 50px;
  height: 50px;
  background-image: url("../img/angle.svg");
  background-color: transparent;
  border: 0;
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}
.swiper-nav .next {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.slide-video {
  height: calc(var(--vh, 1vh) * 100);
}
.slide-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slide-video .slide-video__stand {
  cursor: pointer;
  margin: auto;
  width: 98px;
  height: 45px;
  position: absolute;
  bottom: 127px;
  left: 0;
  right: 0;
  background-image: url("../img/fxclic.png");
  
}

.slide-video .slide-video__arrow {
  cursor: pointer;
  margin: auto;
  width: 60px;
  height: 53px;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  background-image: url("../img/arrow-bottom.svg");
  -webkit-animation: sembradora_arrow 3s infinite;
          animation: sembradora_arrow 3s infinite;
}
@-webkit-keyframes sembradora_arrow {
  0% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  50% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
@keyframes sembradora_arrow {
  0% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  50% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
.modal-sembradora .modal-dialog {
  max-width: 800px;
}
.modal-sembradora .modal-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2rem;
}
.modal-sembradora p {
  font-family: "PT Serif", sans-serif;
  font-style: italic;
}
.modal-sembradora p:last-child {
  margin: 0;
}
.modal-sembradora .close {
  background: black;
  opacity: 1;
  color: white;
  text-shadow: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 45px;
  position: absolute;
  top: -20px;
  right: -20px;
  -webkit-box-shadow: 0 0 0 4px white;
          box-shadow: 0 0 0 4px white;
  z-index: 50;
}
.modal-sembradora .close:hover {
  opacity: 1 !important;
}
@media (max-width: 850px) {
  .modal-sembradora .close {
    right: 10px;
  }
}
@media (max-width: 768px) {
  .modal-sembradora .modal-dialog {
    margin-top: 25px;
  }
  .modal-sembradora .section-title {
    font-size: 24px;
    margin-top: 15px;
  }
  .modal-sembradora .sembradora__text p {
    font-size: 14px;
  }
}

.modal-fotos .close {
  background: black;
  opacity: 1;
  color: white;
  text-shadow: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 45px;
  position: absolute;
  top: -20px;
  right: -20px;
  -webkit-box-shadow: 0 0 0 4px white;
          box-shadow: 0 0 0 4px white;
  z-index: 50;
}
.modal-fotos .close:hover {
  opacity: 1 !important;
}
@media (max-width: 850px) {
  .modal-fotos .close {
    right: 10px;
  }
}

.page-home .home__sembradora {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page-home .home__sembradora .home__slider {
  width: 60%;
}
.page-home .home__sembradora .home__slider img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-home .home__sembradora .home__content {
  padding: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-home .home__sembradora .home__title {
  margin-bottom: 30px;
  color: #272425;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}
.page-home .home__sembradora .home__title span {
  display: block;
  color: #ffb81c;
  background-image: url("../img/arrow-title.svg");
  padding-left: 20px;
  background-repeat: no-repeat;
  background-size: 0.6em;
  background-position: 0 center;
}
.page-home .home__sembradora .home__list {
  font-family: "PT Serif", sans-serif;
  font-style: italic;
  margin: 0 0 0 15px;
  padding: 0;
  max-width: 150px;
}
.page-home .home__sembradora .home__list li {
  margin-bottom: 20px;
}
.page-home .home__sembradora .home__list li:last-child {
  margin-bottom: 0;
}
.page-home .home__sembradora .home__logo {
  margin-bottom: 50px;
}
.page-home .home__sembradora .home__logo:hover svg {
  fill: #ffb81c;
}
.page-home .home__sembradora .home__logo svg {
  -webkit-transition: 0.2s fill;
  transition: 0.2s fill;
  fill: #272425;
}
.page-home .home__sembradora .home__logo .txp,
.page-home .home__sembradora .home__logo .txm,
.page-home .home__sembradora .home__logo .mxmax {
  width: 250px;
}
.page-home .home__sembradora .home__logo .apx,
.page-home .home__sembradora .home__logo .adx,
.page-home .home__sembradora .home__logo .mxy {
  height: 45px;
}
@media (max-width: 1200px) {
  .page-home .home__sembradora .home__title {
    font-size: 20px;
  }
  .page-home .home__sembradora .home__logo {
    margin-bottom: 20px;
  }
  .page-home .home__sembradora .home__logo .txp,
  .page-home .home__sembradora .home__logo .txm,
  .page-home .home__sembradora .home__logo .mxmax {
    width: 150px;
  }
  .page-home .home__sembradora .home__logo .apx,
  .page-home .home__sembradora .home__logo .adx,
  .page-home .home__sembradora .home__logo .mxy {
    height: 30px;
  }
}
@media (max-width: 900px) {
  .page-home .home__sembradora {
    display: block;
  }
  .page-home .home__sembradora .home__slider {
    width: 100%;
  }
  .page-home .home__sembradora .home__slider img {
    height: 300px;
  }
}
.page-home .home__5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
}
.page-home .home__5 .banner__1,
.page-home .home__5 .banner__2 {
  width: 50%;
}
.page-home .home__5 .banner__1 img,
.page-home .home__5 .banner__2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: 0.4s opacity;
  transition: 0.4s opacity;
}
.page-home .home__5 .banner__1:hover img,
.page-home .home__5 .banner__2:hover img {
  opacity: 0.8;
}
@media (max-width: 900px) {
  .page-home .home__5 {
    height: auto;
    display: block;
  }
  .page-home .home__5 .banner__1,
  .page-home .home__5 .banner-2 {
    width: 100%;
  }
}
.page-home .home__6 {
  padding-top: 40px;
  padding-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100vh;
}
.page-home .home__6 .home__top {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.page-home .home__6 .home__novedades {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-home .home__6 .home__novedades .novedad {
  margin: 0 10px;
  font-family: "PT Serif", sans-serif;
  font-style: italic;
  width: 350px;
  text-decoration: none;
}
.page-home .home__6 .home__novedades .novedad .novedad__image {
  height: 190px;
  position: relative;
}
.page-home .home__6 .home__novedades .novedad .novedad__image:before {
  content: "";
  width: 50px;
  height: 50px;
  background-color: white;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.page-home .home__6 .home__novedades .novedad .novedad__image span {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  color: white;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
}
.page-home .home__6 .home__novedades .novedad .novedad__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-home .home__6 .home__novedades .novedad .novedad__title {
  color: black;
  margin: 15px;
  text-align: center;
  -webkit-transition: 0.2s color;
  transition: 0.2s color;
}
.page-home .home__6 .home__novedades .novedad:hover .novedad__title {
  color: #ffb81c;
}
.page-home .home__6 .home__novedades .novedad:hover .novedad__image span {
  opacity: 1;
}
.page-home .home__6 .home__banners {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: auto;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.page-home .home__6 .home__banners .banner__1,
.page-home .home__6 .home__banners .banner__2 {
  width: 50%;
}
.page-home .home__6 .home__banners .banner__1 img,
.page-home .home__6 .home__banners .banner__2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: 0.4s opacity;
  transition: 0.4s opacity;
}
.page-home .home__6 .home__banners .banner__1:hover img,
.page-home .home__6 .home__banners .banner__2:hover img {
  opacity: 0.8;
}
@media (max-width: 1200px) {
  .page-home .home__6 .home__novedades .novedad {
    width: 33%;
  }
  .page-home .home__6 .home__novedades .novedad .novedad__image {
    height: 140px;
  }
}
@media (max-width: 900px) {
  .page-home .home__6 {
    height: auto;
    padding-bottom: 0;
  }
  .page-home .home__6 .home__novedades {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-home .home__6 .home__novedades .novedad {
    width: 90%;
    margin: auto;
  }
  .page-home .home__6 .home__banners {
    display: block;
  }
  .page-home .home__6 .home__banners .banner__1,
  .page-home .home__6 .home__banners .banner-2 {
    width: 100%;
  }
}

.page-noticia {
  padding: 60px 0;
}
.page-noticia .page-noticia__container {
  max-width: 800px;
  padding: 0 20px;
  margin: auto;
}
.page-noticia .page-noticia__content {
  font-family: "PT Serif", sans-serif;
  font-style: italic;
  color: #232323;
  font-size: 18px;
}
.page-noticia .page-noticia__share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  font-weight: 700;
}
.page-noticia .page-noticia__share button {
  border: 0;
  background: transparent;
  display: inline-block;
  margin-left: 10px;
}
.page-noticia .page-noticia__share img {
  width: 22px;
}
@media (max-width: 576px) {
  .page-noticia {
    padding: 30px 0 60px 0;
  }
  .page-noticia .page-noticia__content {
    font-size: 15px;
  }
}

.page-producto .producto__sembradora {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page-producto .producto__sembradora .producto__slider {
  width: 60%;
}
.page-producto .producto__sembradora .producto__slider img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-producto .producto__sembradora .logo {
  margin-bottom: 20px;
}
.page-producto .producto__sembradora .producto__content {
  padding: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-producto .producto__sembradora .producto__content p {
  font-family: "PT Serif", sans-serif;
  font-style: italic;
}
.page-producto .producto__sembradora .producto__title {
  margin-bottom: 30px;
  color: #272425;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}
.page-producto .producto__sembradora .producto__title span {
  display: block;
  color: #ffb81c;
  background-image: url("../img/arrow-title.svg");
  padding-left: 20px;
  background-repeat: no-repeat;
  background-size: 0.6em;
  background-position: 0 center;
}
@media (max-width: 1200px) {
  .page-producto .producto__sembradora .producto__title {
    font-size: 20px;
  }
}
@media (max-width: 900px) {
  .page-producto .producto__sembradora {
    display: block;
  }
  .page-producto .producto__sembradora .producto__slider {
    width: 100%;
  }
  .page-producto .producto__sembradora .producto__slider img {
    height: 300px;
  }
}

.page-institucional .institucional__2 {
  padding-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}
.page-institucional .institucional__2 .institucional__top {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.page-institucional .institucional__2 .institucional__content {
  padding: 0 20px;
}
.page-institucional .institucional__2 .institucional__content p {
  font-family: "PT Serif", sans-serif;
  font-style: italic;
  max-width: 700px;
  margin: 0 auto 30px auto;
  text-align: center;
}
.page-institucional .institucional__2 .institucional__galeria {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 100px;
  margin-top: auto;
}
.page-institucional .institucional__2 .institucional__galeria .galeria {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: auto;
  width: 33.3333%;
}
.page-institucional .institucional__2 .institucional__galeria .galeria img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 576px) {
  .page-institucional .institucional__2 .institucional__galeria {
    padding-bottom: 50px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .page-institucional .institucional__2 .institucional__galeria .galeria {
    width: 100%;
  }
}
.page-institucional .institucional__3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 100px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-institucional .institucional__3 .institucional__content p {
  font-family: "PT Serif", sans-serif;
  font-style: italic;
  max-width: 700px;
  margin: 0 auto 30px auto;
  text-align: center;
}
@media (max-width: 576px) {
  .page-institucional .institucional__3 {
    padding-bottom: 50px;
  }
  .page-institucional .institucional__3 .institucional__content {
    padding: 0 20px;
  }
}
.page-institucional .institucional__4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 100px;
  min-height: 100vh;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-institucional .institucional__4 .institucional__video {
  width: 48vw;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .page-institucional .institucional__4 {
    min-height: auto;
    padding-bottom: 0;
  }
}
@media (max-width: 576px) {
  .page-institucional .institucional__4 {
    min-height: auto;
    padding-bottom: 0;
  }
  .page-institucional .institucional__4 .institucional__video {
    width: 100%;
  }
  .page-institucional .institucional__4 iframe {
    width: 100%;
  }
}
.page-institucional .institucional__6 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
}
.page-institucional .institucional__6 .banner__1,
.page-institucional .institucional__6 .banner__2 {
  width: 50%;
}
.page-institucional .institucional__6 .banner__1 img,
.page-institucional .institucional__6 .banner__2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: 0.4s opacity;
  transition: 0.4s opacity;
}
.page-institucional .institucional__6 .banner__1:hover img,
.page-institucional .institucional__6 .banner__2:hover img {
  opacity: 0.8;
}
@media (max-width: 900px) {
  .page-institucional .institucional__6 {
    height: auto;
    display: block;
  }
  .page-institucional .institucional__6 .banner__1,
  .page-institucional .institucional__6 .banner-2 {
    width: 100%;
  }
}

.page-sembradora .sembradora__2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 100px;
}
.page-sembradora .sembradora__2 .sembradora__logo {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.page-sembradora .sembradora__2 .sembradora__logo img {
  height: 37px;
}
.page-sembradora .sembradora__2 .sembradora__logo:after {
  content: "";
  width: 100px;
  height: 8px;
  background-color: #ffb81c;
  display: inline-block;
  margin-top: 10px;
}
.page-sembradora .sembradora__2 .sembradora__content {
  padding: 0 20px;
}
.page-sembradora .sembradora__2 .sembradora__content p {
  font-family: "PT Serif", sans-serif;
  font-style: italic;
  max-width: 700px;
  margin: 0 auto 10px auto;
  text-align: center;
  font-size: 17px;
}
@media (max-height: 570px) {
  .page-sembradora .sembradora__2 .section-title {
    font-size: 25px;
    margin-bottom: 10px;
  }
  .page-sembradora .sembradora__2 .sembradora__logo img {
    height: 30px;
  }
  .page-sembradora .sembradora__2 .sembradora__content p {
    font-size: 15px;
  }
}
@media (max-width: 900px) {
  .page-sembradora .sembradora__2 {
    min-height: auto;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.page-sembradora .sembradora__3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 100px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}
.page-sembradora .sembradora__3 .sembradora__image img {
  width: 100%;
}
.page-sembradora .sembradora__3 .sembradora__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.page-sembradora .sembradora__3 .sembradora__icons .icon {
  width: 25%;
  background-color: #ffb81c;
  padding: 15px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  cursor: pointer;
  -webkit-transition: 0.2s background-color;
  transition: 0.2s background-color;
}
.page-sembradora .sembradora__3 .sembradora__icons .icon:nth-child(even) {
  background-color: #d1a030;
}
.page-sembradora .sembradora__3 .sembradora__icons .icon:hover {
  background-color: #b57c00;
}
.page-sembradora .sembradora__3 .sembradora__icons .icon .icon__image img {
  width: 30px;
  margin-bottom: 15px;
}
.page-sembradora .sembradora__3 .sembradora__icons .icon .icon__title {
  color: white;
}
@media (max-width: 768px) {
  .page-sembradora .sembradora__3 {
    padding-bottom: 30px;
  }
  .page-sembradora .sembradora__3 .sembradora__icons {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .page-sembradora .sembradora__3 .sembradora__icons .icon {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .page-sembradora .sembradora__3 .sembradora__icons .icon {
    width: 100%;
  }
}
.page-sembradora .sembradora__4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 100px;
  min-height: 100vh;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-sembradora .sembradora__4 .sembradora__videos {
  width: 100%;
}
.page-sembradora .sembradora__4 .sembradora__video {
  width: 48vw;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .page-sembradora .sembradora__4 {
    min-height: auto;
    padding-bottom: 0;
  }
}
@media (max-width: 576px) {
  .page-sembradora .sembradora__4 {
    min-height: auto;
    padding-bottom: 0;
  }
  .page-sembradora .sembradora__4 .sembradora__video {
    width: 100%;
  }
  .page-sembradora .sembradora__4 iframe {
    width: 100%;
  }
}
.page-sembradora .sembradora__6 .sembradora__top {
  background-color: #ebebeb;
  height: 50vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.page-sembradora .sembradora__6 .sembradora__bottom {
  background-color: #303030;
  height: 50vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-sembradora .sembradora__6 .sembradora__bottom .section-title {
  color: white;
}
.page-sembradora .sembradora__6 .sembradora__testimonios {
  max-width: 700px;
}
.page-sembradora .sembradora__6 .sembradora__testimonios .swiper-wrapper {
  height: auto;
}
.page-sembradora .sembradora__6 .sembradora__testimonios .swiper-slide {
  background-color: transparent !important;
  text-align: center;
  color: white;
  font-family: "PT Serif", sans-serif;
  font-style: italic;
}
.page-sembradora .sembradora__6 .sembradora__testimonios blockquote {
  max-width: 400px;
  margin: auto;
}
.page-sembradora .sembradora__6 .sembradora__testimonios .sembradora__nombre {
  letter-spacing: 0.2em;
  margin-top: 25px;
}
.page-sembradora .sembradora__6 .swiper-pagination {
  position: relative;
  margin-top: 25px;
}
.page-sembradora .sembradora__6 .swiper-pagination .swiper-pagination-bullet {
  margin: 0 5px !important;
  opacity: 1;
  background: white;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  -webkit-transition: 0.2s background, 0.2s -webkit-transform;
  transition: 0.2s background, 0.2s -webkit-transform;
  transition: 0.2s background, 0.2s transform;
  transition: 0.2s background, 0.2s transform, 0.2s -webkit-transform;
}
.page-sembradora .sembradora__6 .swiper-pagination .swiper-pagination-bullet-active {
  background: #ffb81c;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.page-sembradora .sembradora__6 .swiper-button-next {
  background-image: url("../img/arrow-title.svg");
  color: transparent;
  background-position: center;
  background-repeat: no-repeat;
}
.page-sembradora .sembradora__6 .swiper-button-prev {
  background-image: url("../img/arrow-title.svg");
  color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media (max-width: 900px) {
  .page-sembradora .sembradora__6 .sembradora__top {
    padding: 50px 20px;
    height: auto;
  }
  .page-sembradora .sembradora__6 .sembradora__bottom {
    padding: 50px 20px;
    height: auto;
  }
  .page-sembradora .sembradora__6 .sembradora__testimonios {
    max-width: 100%;
  }
}
.page-sembradora .sembradora__7 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
}
.page-sembradora .sembradora__7 .banner__1,
.page-sembradora .sembradora__7 .banner__2 {
  width: 50%;
}
.page-sembradora .sembradora__7 .banner__1 img,
.page-sembradora .sembradora__7 .banner__2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: 0.4s opacity;
  transition: 0.4s opacity;
}
.page-sembradora .sembradora__7 .banner__1:hover img,
.page-sembradora .sembradora__7 .banner__2:hover img {
  opacity: 0.8;
}
@media (max-width: 900px) {
  .page-sembradora .sembradora__7 {
    height: auto;
    display: block;
  }
  .page-sembradora .sembradora__7 .banner__1,
  .page-sembradora .sembradora__7 .banner-2 {
    width: 100%;
  }
}

.page-concesionarios {
  position: relative;
}
.page-concesionarios .map__buscador {
  position: absolute;
  top: 50px;
  left: 50px;
  z-index: 100;
  width: 300px;
}
.page-concesionarios .map__buscador .map__button {
  height: 50px;
  width: 100%;
  background-color: #ffb81c;
  color: white;
  font-family: "PT Serif", sans-serif;
  font-style: italic;
  border: 0;
  background-image: url("../img/gps.png");
  background-repeat: no-repeat;
  background-position: 15px center;
  background-size: 30px;
  text-align: left;
  padding-left: 55px;
}
.page-concesionarios .map__buscador .map__input input {
  width: 100%;
  color: white;
  background-color: black;
  border: 0;
  height: 50px;
  padding: 10px;
  font-family: "PT Serif", sans-serif;
  font-style: italic;
}
.page-concesionarios .map__found {
  position: absolute;
  top: 170px;
  left: 50px;
  z-index: 100;
  width: 300px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: .5s opacity;
  transition: .5s opacity;
  max-height: calc(100vh - 230px);
  overflow: auto;
}
.page-concesionarios .map__found.active {
  opacity: 1;
  pointer-events: auto;
}
.page-concesionarios .map__found .map__title {
  height: 50px;
  width: 100%;
  background-color: #ffb81c;
  color: #535353;
  font-family: "PT Serif", sans-serif;
  font-style: italic;
  padding-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-concesionarios .map__found .map__title span {
  display: inline-block;
  margin: 0 5px;
}
.page-concesionarios .map__found .map__list {
  background-color: black;
  padding: 10px;
}
.page-concesionarios .map__found .map__item {
  font-family: "PT Serif", sans-serif;
  font-style: italic;
  border-bottom: 1px solid white;
  margin-bottom: 10px;
  padding-bottom: 10px;
  word-wrap: break-word;
}
.page-concesionarios .map__found .map__item .title {
  color: #ffb81c;
}
.page-concesionarios .map__found .map__item .subtitle {
  color: white;
}
.page-concesionarios #map {
  width: 100%;
  height: 100vh;
}
@media (max-width: 576px) {
  .page-concesionarios .map__buscador {
    position: relative;
    margin-top: -30px;
    top: 0;
    left: 0;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .page-concesionarios .map__found {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 10px;
    margin-top: 10px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
.page-concesionarios .si-float-wrapper .si-close-button {
  color: white;
}
.page-concesionarios .si-float-wrapper .si-content-wrapper {
  background: black;
  border: 0;
  max-width: 350px;
  font-family: "PT Serif", sans-serif;
  font-style: italic;
}
.page-concesionarios .si-float-wrapper .si-content-wrapper strong {
  color: #ffb81c;
}
.page-concesionarios .si-float-wrapper .si-content-wrapper p {
  color: white;
  margin: 0;
}
.page-concesionarios .si-float-wrapper .si-pointer-top {
  border-top-color: black;
}
.page-concesionarios input::-webkit-calendar-picker-indicator {
  opacity: 100;
}

body {
  font-family: "Montserrat", sans-serif;
}

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

.page-slider {
  width: 100%;
  height: 100vh;
}
.page-slider .page-slider__swiper {
  width: 100%;
  height: 100%;
}
.page-slider .page-slider__swiper .swiper-wrapper > .swiper-slide {
  background-color: white;
}
@media (max-width: 900px) {
  .page-slider {
    height: auto;
  }
}

.page-single {
  margin-top: 100px;
}

.visible-mobile {
  display: none;
}
@media (max-width: 900px) {
  .visible-mobile {
    display: block;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}