/*
Theme Name: OmniVisual
Theme URI: https://omnivisual.uy
Author: Pablo Revetria
Author URI: https://pablorevetria.com/
*/

/*///////////////////*/
/*///////////// Base */
/*///////////////////*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

:root {
  --font-family-montserrat: 'Montserrat', sans-serif;
  --light-color: #FFFDF1;
  --dark-color: #001115;
  --dark-color-2: #0C1F2E;
  --gray-color: #798787;
  --transition: all .8s .4s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #FFFFFF;
  font-family: var(--font-family-montserrat);
  color: var(--dark-color-2);
  position: relative;
  height: 100%;
  overflow-x: hidden;
}

a {
  color: var(--dark-color);
  font-weight: 500;
}

a:hover,
a:focus {
  color: var(--dark-color);
  text-decoration: underline;
  cursor: pointer;
}

ol, ul {
  list-style: none
}

/*//// Tools */

.opacity-0 { opacity: 0 !important; }

.opacity-1 { opacity: 1 !important; }

/*//// Colors */

.light-color { color: var(--light-color) !important; }

.bg-light-color { background-color: var(--light-color) !important; }

.dark-color { color: var(--dark-color) !important; }

.bg-dark-color { background-color: var(--dark-color) !important; }

.dark-color-2 { color: var(--dark-color-2) !important; }

.bg-dark-color-2 { background-color: var(--dark-color-2) !important;}

.gray-color { color: var(--gray-color) !important; }

.bg-gray-color { background-color: var(--gray-color) !important; }

/*//// Texts */

.light { font-weight: 300; }

.regular { font-weight: 400; }

.medium { font-weight: 500; }

.semi-bold { font-weight: 600; }

.bold { font-weight: 700; }

p {
  color: var(--dark-color-2);
  font-weight: 400;
  font-size: 16px;
  line-height: 36px;
}

p:last-child {
  margin-bottom: 0;
}

h1, h2 {
  color: var(--dark-color);
  font-weight: 700;
}

h1 {
  font-size: 27px;
  font-weight: 400;
  line-height: normal;
  max-width: 65%;
}

@media (min-width: 768px) {
  h1 {
    font-size: 30px;
  }
}

@media (min-width: 992px) {
  h1 {
    font-size: 36px;
    max-width: 100%;
  }
}

h2 {
  font-size: 34px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 1.2rem;
}

@media (min-width: 576px) {
  h2 {
    font-size: 36px;
  }
}

@media (min-width: 768px) {
  h2 {
    font-size: 38px;
    margin-bottom: 1.563rem;
  }
}

@media (min-width: 992px) {
  h2 {
    font-size: 42px;
  }
}

h2.wicon {
  background: url('img/connect-dark.svg') no-repeat left 6px;
  background-size: 10px;
  padding-left: 15px;
  line-height: normal;
  font-size: 24px;
}

@media (min-width: 576px) {
  h2.wicon {
    background: url('img/connect-dark.svg') no-repeat left top;
    background-size: auto;
    padding-left: 25px;
    font-size: 26px;
  }
}

@media (min-width: 768px) {
  h2.wicon {
    font-size: 30px;
  }
}

h2.wicon img {
  width: 38px;
}

@media (min-width: 576px) {
  h2.wicon img {
    width: 45px;
  }
}

h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
}

@media (max-width: 767px) {
  #servicios .servicio h3 {
    font-size: 24px;
  }
}

@media (min-width: 768px) {
  h3 {
    font-size: 24px;
  }
}

@media (min-width: 992px) {
  h3 {
    font-size: 26px;
  }
}

.wconnect {
  background: url('img/connect.svg') no-repeat left top;
  mix-blend-mode: difference;
}

@media (max-width: 991px) {
  .wconnect {
    padding-left: 25px;
    background-size: 11px;
  }
}

@media (min-width: 992px) {
  .wconnect,
  .dark .wconnect {
    padding-left: 35px;
    mix-blend-mode: normal;
  }

  .dark .wconnect {
    background: url('img/connect-dark.svg') no-repeat left top;
  }
}



/*//// Wrapper */

#wrapper {
}

@media (min-width: 576px) {
  #wrapper {
  }
}

@media (min-width: 768px) {
  #wrapper {
  }
}

@media (min-width: 576px) {
  .container,
  .container-fluid,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    padding-right: 12px;
    padding-left: 12px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .container,
  .container-sm {
    max-width: 100%;
  }
}

@media (min-width: 576px) {  } /* sm */

@media (min-width: 768px) {  } /* md */

@media (min-width: 992px) {  } /* lg */

@media (min-width: 1200px) {  } /* xl */

/*///////////////////*/
/*/////////// Header */
/*///////////////////*/

/*//// Progress bar */

.progress-container {
  width: 100%;
  height: 4px;
  background: transparent;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 9998;
}

.progress-bar {
  height: 4px;
  background: var(--dark-color-2);
  width: 0%;
  border-bottom: 2px solid rgba(256,256,256,0.8);
}

/*//// Navbar */

.menu {
  mix-blend-mode: difference;
  /*z-index: 0;*/
}

.navbar {
  margin-bottom: 5%;
}

.navbar-nav {
  padding: 0;
  margin: 0;
}

.navbar-nav li {
  padding-right: 30px;
}

.navbar-nav li a {
  color: var(--light-color);
  font-weight: 600;
  font-size: 16px;
}

.navbar-nav .nav-link {
  padding-left: 0 !important;
}

/*//// Logo */

@media (max-width: 991px) {
  .header {
    background: #FFFFFF;
    box-shadow: 0 8px 20px rgba(12, 31, 46, 0.25);
    z-index: 9997;
  }
}

@media (min-width: 992px) {
  .header {
    mix-blend-mode: difference;
  }
}

.navbar-brand {
  background: transparent url('img/logo-omnivisual.svg') center center no-repeat;
  background-size: 135px 55px;
  width: 135px;
  height: 55px;
  margin: 15px 0 10px;
  margin-right: auto;
}

@media (min-width: 576px) {
  .navbar-brand {
    background-size: 140px 57px;
    width: 140px;
    height: 57px;
  }
}

@media (min-width: 768px) {
  .navbar-brand {
    background-size: 150px 61px;
    width: 150px;
    height: 61px;
  }
}

@media (min-width: 992px) {
  .navbar-brand {
    background: transparent url('img/logo-omnivisual-light.svg') center center no-repeat;
    background-size: 180px 73px;
    width: 180px;
    height: 73px;
    margin-top: 15px;
  }
}

@media (min-width: 576px) {
  /*.navbar-brand {
    background-size: 180px 73px;
    width: 180px;
    height: 73px;
  }*/
}

/*///////////////////*/
/*//// Inicio / Hero */
/*///////////////////*/

#inicio {
  height: 100vh;
  background-color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 991px) {
  #inicio {
    background-position: bottom;
  }
}

#inicio .text {
  margin-top: 200px;
}

@media (max-width: 991px) {
  #inicio .text {
    margin-left: -15px;
  }
}

/*///////////////////*/
/*////////////// Box */
/*///////////////////*/

.box {
  padding: 30px 20px;
}

@media (min-width: 576px) {
  .box {
    padding: 35px 25px;
  }
}

@media (min-width: 768px) {
  .box {
    padding: 35px;
  }
}

@media (min-width: 992px) {
  .box {
    padding: 55px;
  }
}

.box p {
  font-size: 16px;
  line-height: 32px;
}

@media (min-width: 768px) {
  .box p {
    font-size: 18px;
    line-height: 38px;
  }
}

/*///////////////////*/
/*////////// zindex */
/*///////////////////*/

@media (min-width: 992px) {
  .zindex {
    position: relative;
    z-index: 1049;
  }
}

/*///////////////////*/
/*///////// Nosotros */
/*///////////////////*/

#nosotros {
  background-color: #FFFFFF;
  background-size: auto 50%;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  #nosotros {
    background-color: var(--dark-color-2);
    background-size: cover;
  }
}

@media (max-width: 767px) {
  #nosotros section {
    padding-top: 80%;
  }
}

#nosotros .box {
  margin-bottom: 100px;
}

@media (min-width: 768px) {
  #nosotros .box {
    margin-top: 80%;
  }
}

/*///////////////////*/
/*//////// Servicios */
/*///////////////////*/

#servicios {
  background-color: #FFFFFF;
  background-position: right bottom;
  background-size: 280%;
  background-repeat: no-repeat;
  padding-bottom: 28.125rem;
}

@media (min-width: 768px) {
  #servicios {
    background-size: cover;
  }
}

#servicios .box {
  margin-top: 100px;
  margin-bottom: 40px;
}

#servicios .servicio {
  margin: 0 0 15px;
  width: 100%;
  background: black;
  color: #fff;
  padding: 20px;
  height: 268px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

@media (min-width: 768px) {
  #servicios .servicio {
    margin: 15px;
    float: left;
    width: calc(50% - 15px);
  }
}

#servicios .servicio:nth-child(odd) {
  margin-left: 0;
}

#servicios .servicio:nth-child(even) {
  margin-right: 0;
}

#servicios .servicio:hover {
  transition: var(--transition);
  background-color: var(--dark-color);
  text-decoration: none;
}

@media (max-width: 991px) {
  #servicios .servicio img {
    display: none;
  }
}

#servicios .servicio img {
  height: 100%;
  position: absolute;
  z-index: 1;
  opacity: 0;
}

#servicios .servicio:hover img {
  opacity: 0.7;
}

#servicios .servicio .bg {
  width: 100%;
  height: 100%;
  background-color: var(--dark-color);
  display: block;
  position: absolute;
  z-index: 0;
  opacity: 0;
  /*transition: var(--transition);*/
}

#servicios .servicio:hover .bg {
  opacity: 1;
  /*transition: var(--transition);*/
}

#servicios .servicio h3,
#servicios .servicio span {
  text-align: center;
  line-height: normal;
  position: absolute;
}

@media (max-width: 991px) {
  #servicios .servicio h3 {
    margin-top: -60px;
  }

  #servicios .servicio span {
    margin-top: 60px;
    padding: 10px 15px;
    border: 1px solid;
  }
}

@media (min-width: 992px) {
  #servicios .servicio h3 {
    position: relative;
    z-index: 2;
    transform: translateX(0);
    transition: all 0.5s 0s ease-in-out;
    opacity: 1;
    width: 100%;
    text-align: center;
    position: absolute;
    text-decoration: none;
  }

  #servicios .servicio:hover > h3,
  #servicios .servicio:focus > h3 {
    text-decoration: none;
    transform: translateX(500px);
    transition: all 0.5s 0s ease-in-out;
    opacity: 0;
  }

  #servicios .servicio span {
    line-height: normal;
    position: relative;
    z-index: 2;
    transform: translateX(-500px);
    transition: all 0.5s 0s ease-in-out;
    opacity: 0;
    width: 100%;
    text-align: center;
    text-decoration: none;
  }

  @media (min-width: 768px) {
    #servicios .servicio span {
      font-size: 26px;
    }
  }

  #servicios .servicio:hover > span,
  #servicios .servicio:focus > span {
    text-decoration: none;
    transform: translateX(0);
    transition: all 0.5s 0s ease-in-out;
    opacity: 1;
  }

  #servicios .servicio:active > h3,
  #servicios .servicio:active > span {
    text-decoration: none;
  }
}

/*///////////////////*/
/*//////////// Modal */
/*///////////////////*/

.modal {
  z-index: 9999;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
}

.modal-backdrop.show {
  opacity: 0.7;
}

@media (max-width: 575px) {
  .modal-dialog {
    width: auto;
    margin: 0.5rem;
    max-width: none;
  }
}

.modal-header .close {
  padding: 0;
  position: absolute;
  top: -5px;
  right: 0;
  opacity: 1;
}

@media (max-width: 575px) {
  .modal-header .close img {
    width: 40px;
  }
}

@media (min-width: 576px) {
  .modal-header .close {
    top: -15px;
    right: -15px;
  }
}

.modal-header {
  border-bottom: 0;
  position: relative;
}

.modal-header::after {
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23333' stroke-width='1' stroke-dasharray='2%2c 2' stroke-dashoffset='0' stroke-linecap='round'/%3e%3c/svg%3e");
  content: '';
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  display: block;
  overflow: hidden;
  left: 0;
  right: 0;
}

.modal-content {
  padding: 30px 20px 20px;
  border-radius: 0;
  border: 0;
  box-shadow: 8px 8px 20px rgba(12, 31, 46, 0.25);
}

@media (min-width: 576px) {
  .modal-content {
    padding: 35px 25px;
  }
}

@media (min-width: 768px) {
  .modal-content {
    padding: 30px 35px;
  }
}

@media (min-width: 992px) {
  .modal-content {
    padding: 50px 55px 55px;
  }
}

.modal-body {
  padding: 20px 0;
  margin: 0;
}

@media (min-width: 768px) {
  .modal-body {
    padding: 30px 0;
  }
}

.modal-footer {
  border: 0;
}

/*//// Services List */

.modal .modal-body ul {
  padding: 0;
  margin: 30px 0 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .modal .modal-body ul {
    margin: 50px 0 0;
  }
}

.modal .modal-body ul li {
  width: 100%;
  display: block;
  float: left;
  font-weight: 700;
  font-size: 16px;
  color: var(--dark-color-2);
  margin-bottom: 20px;
}

@media (min-width: 576px) {
  .modal .modal-body ul li {
    width: 50%;
  }
}

.modal .modal-body ul li a {
  font-weight: 700;
  font-size: 16px;
  color: var(--dark-color-2);
}

.modal .modal-body ul li a:hover,
.modal .modal-body ul li a:focus {
  text-align: underline;
}

.modal .modal-body ul li img {
  width: 30px;
  margin-right: 8px;
}

/*///////////////////*/
/*///////// Trabajos */
/*///////////////////*/

#trabajos {
  /*background-color: linear-gradient(180deg, rgba(12,31,46,1) 0%, rgba(12,31,46,1) 50%, rgba(249,249,249,1) 50%, rgba(249,249,249,1) 100%);*/
  background-color: #F9F9F9;
  background-position: top center, bottom center;
  background-repeat: no-repeat, no-repeat;
  background-size: 100% auto;
  padding-bottom: 100px;
}

@media (min-width: 768px) {
  #trabajos {
  padding-bottom: 600px;
  }
}

#trabajos h3 {
  padding-top: 5px;
  padding-bottom: 5px;
}

@media (max-width: 767px) {
  #trabajos section {
    padding-top: 20%;
  }
}

#trabajos .box {
  margin-bottom: 40px;
}

#trabajos .sliders {
  padding-bottom: 100px;
}

@media (max-width: 767px) {
  #trabajos .sliders {
    margin: 0 15px;
  }
}

@media (min-width: 768px) {
  #trabajos .sliders {
    padding-left: 40px;
  }
}

@media (min-width: 992px) {
  #trabajos .sliders {
    padding-left: 55px;
  }
}

#trabajos .sliders h3 {
  color: var(--light-color);
  mix-blend-mode: difference;
}

@media (min-width: 992px) {
  #trabajos .sliders h3 {
    color: var(--light-color);
    mix-blend-mode: normal;
  }

  #trabajos .sliders .dark h3 {
    color: var(--dark-color);
    mix-blend-mode: normal;
  }
}

#trabajos .sliders .slider .carousel {
  background-color: var(--dark-color);
  margin-top: 23px;
  margin-bottom: 100px;
}

@media (min-width: 992px) {
  #trabajos .sliders .slider .carousel {
    height: 450px;
  }

  #trabajos .sliders .slider.large .carousel {
    height: auto;
  }

  #trabajos .sliders .slider.large .carousel .carousel-control-prev-icon {
    background-image: url('img/icons/ChevronLeftLight.svg') !important;
  }

  #trabajos .sliders .slider.large .carousel .carousel-control-next-icon {
    background-image: url('img/icons/ChevronRightLight.svg') !important;
  }
}

#trabajos .sliders .slider .carousel img {
  width: 100%;
}

#trabajos .sliders .slider.large .carousel img {
  width: auto;
  max-height: 632px;
  margin-left: auto;
  margin-right: auto;
}

#trabajos .sliders .slider .carousel .carousel-indicators {
  display: none;
}

@media (min-width: 576px) {
  #trabajos .sliders .slider .carousel .carousel-indicators {
    display: flex;
    bottom: -60px;
    mix-blend-mode: difference;
  }
}

#trabajos .sliders .slider .carousel .carousel-indicators li {
  width: 30px;
  height: 7px;
  margin-right: 6px;
  margin-left: 6px;
  background-color: var(--light-color);
}

@media (min-width: 992px) {
  #trabajos .sliders .slider .carousel .carousel-indicators li {
    background-color: var(--light-color);
  }

  #trabajos .sliders .slider.dark .carousel .carousel-indicators li,
  #trabajos .sliders .slider.mix .carousel .carousel-indicators li {
    background-color: var(--dark-color-2);
  }
}

#trabajos .sliders .slider .carousel .carousel-control-next,
#trabajos .sliders .slider .carousel .carousel-control-prev {
  width: 10%;
  mix-blend-mode: difference;
}

#trabajos .sliders .slider .carousel .carousel-control-prev-icon {
  /*background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' fill='currentColor' class='bi bi-chevron-left' viewBox='0 0 40 40'%3E%3Cpath fill-rule='evenodd' d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E") !important;*/
  background-image: url('img/icons/ChevronLeftLight.svg') !important;
  width: 40px;
  height: 40px;
  color: var(--dark-color-2);
}

#trabajos .sliders .slider .carousel .carousel-control-next-icon {
  /*background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' fill='currentColor' class='bi bi-chevron-right' viewBox='0 0 40 40'%3E%3Cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") !important;*/
  background-image: url('img/icons/ChevronRightLight.svg') !important;
  width: 40px;
  height: 40px;
  color: var(--dark-color-2);
}

/*///////////////////*/
/*///////// Clientes */
/*///////////////////*/

#clientes {
  padding-top: 220px;
  padding-bottom: 150px;
}

@media (max-width: 767px) {
  #clientes {
    padding-top: 20%;
    padding-bottom: 0;
  }
}

#clientes .quotes {
  margin: 0 15px;
}

@media (min-width: 768px) {
  #clientes .quotes {
    margin: 0 0 0 55px;
  }
}

#clientes .quotes .slide {
  padding: 20px 40px;
}

@media (min-width: 768px) {
  #clientes .quotes .slide {
    padding: 40px 60px;
  }
}

@media (min-width: 768px) {
  #clientes .bg {
    background: var(--dark-color)
  }

  #clientes .bg::before {
    background: var(--dark-color);
    width: 100%;
    display: block;
    position: absolute;
    height: 100%;
    content: '';
    right: -100%;
  }

  #clientes .bg::after {
    background: var(--dark-color);
    width: 100vw;
    height: 100%;
    display: block;
    content: '';
    left: -10px;
    padding: 10px;
  }
}

#clientes .quotes .slide .carousel-inner .carousel-item blockquote {
  font-size: 18px;
  line-height: 35px;
  margin-bottom: 30px;
  min-height: 80px;
}

#clientes .quotes .slide .carousel-inner .carousel-item blockquote::before {
  content: '" ';
}

#clientes .quotes .slide .carousel-inner .carousel-item blockquote::after {
  content: ' "';
}

#clientes .quotes .slide .carousel-inner .carousel-item blockquote:before,
#clientes .quotes .slide .carousel-inner .carousel-item blockquote:after {
  display: inline-block;
  vertical-align: bottom;
  color: var(--light-color);
  font-size: 14px;
  top: -2px;
  position: relative;
}

#clientes .quotes .slide .carousel-inner .carousel-item .signature {
  background: url('img/connect.svg') no-repeat left 8px;
  background-size: 10px;
  padding-left: 25px;
}

#clientes .quotes .slide .carousel-inner .carousel-item .signature img {
  width: 48px;
}

#clientes .quotes .slide .carousel-inner .carousel-item .signature span {
  display: block;
  width: 100%;
  padding-left: 15px;
}

#clientes .quotes .slide .carousel-inner .carousel-item .signature .company {
  font-size: 14px;
}

#clientes .quotes .slide .carousel-control-next,
#clientes .quotes .slide .carousel-control-prev {
  width: 5%;
}

#clientes .quotes .slide .carousel-control-prev-icon {
  background-image: url('img/icons/ChevronLeftLight.svg') !important;
  width: 30px;
  height: 30px;
  color: var(--light-color);
}

#clientes .quotes .slide .carousel-control-next-icon {
  background-image: url('img/icons/ChevronRightLight.svg') !important;
  width: 30px;
  height: 30px;
  color: var(--light-color);
}

@media (min-width: 1200px) {
  #clientes .client-logos {
    margin-left: -5px;
  }
}

#clientes .client-logos img {
  width: calc(50% - 10px);
  margin: 5px;
  mix-blend-mode: luminosity;
  transition: var(--transition);
}

@media (min-width: 576px) {
  #clientes .client-logos img {
    width: calc(25% - 10px);
  }
}

#clientes .client-logos img:hover {
  mix-blend-mode: normal;
  transition: var(--transition);
}

@media (max-width: 575px) {
  #clientes section:last-child {
    padding-bottom: 80px;
  }
}

/*//// Floating WA */

.floating-wa {
  display: none;
}

@media (min-width: 768px) {
  .floating-wa {
    background-image: url('img/icons/Whatsapp-Dark.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 40px 40px;
    background-color: #FFFFFF;
    display: block;
    border-radius: 100px;
    width: 35px;
    height: 35px;
    position: fixed;
    z-index: 9998;
    right: 20px;
    bottom: 20px;
    padding: 35px;
    filter: drop-shadow(0px 5px 5px rgba(0, 17, 21, 0.25));
    transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
  }
}

@media (min-width: 992px) {
  .floating-wa {
    right: 55px;
    bottom: 55px;
  }
}

.floating-wa:focus,
.floating-wa:hover {
  filter: drop-shadow(0px 5px 5px rgba(0, 17, 21, 0.75));
}

.header-wa {
  background-image: url('img/icons/Whatsapp-Dark.svg');
  background-repeat: no-repeat;
  background-position: 12px center;
  background-size: 30px 30px;
  background-color: #FFFFFF;
  display: block;
  margin-top: 20px;
  max-width: 200px;
  text-align: left;
  padding: 12px 15px 12px 50px !important;
  font-size: 14px;
}

@media (min-width: 768px) {
  .header-wa {
    display: none;
  }
}

/*///////////////////*/
/*///////// Contacto */
/*///////////////////*/

#contacto {
  background-color: #F5F5F5;
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 100% auto;
  padding-top: 110px;
}

#contacto form {
  max-width: 400px;
}

::-webkit-input-placeholder,
:-ms-input-placeholder,
::placeholder {
  color: var(--dark-color);
  opacity: 1;
}

#contacto form input[type=text],
#contacto form input[type=email],
#contacto form input[type=tel],
#contacto form textarea {
  border: 1px solid var(--gray-color);
  color: var(--dark-color);
  padding: 15px;
  border-radius: 0;
  outline: none;
}

#contacto form input[type=text]:hover,
#contacto form input[type=email]:hover,
#contacto form input[type=tel]:hover,
#contacto form textarea:hover,
#contacto form input[type=text]:focus,
#contacto form input[type=email]:focus,
#contacto form input[type=tel]:focus,
#contacto form textarea:focus {
  border: 1px solid var(--dark-color);
  color: var(--dark-color);
  box-shadow: none;
  outline: none;
}

#contacto form input[type=text]:active,
#contacto form input[type=email]:active,
#contacto form input[type=tel]:active,
#contacto form textarea:active {
  border: 1px solid var(--dark-color);
  box-shadow: 0 0 0 1px rgba(0,17,21,1);
  color: var(--dark-color);
  outline: none;
}

#contacto form input[type=text],
#contacto form input[type=email],
#contacto form input[type=tel] {
  height: 50px;
}

#contacto form textarea,
#contacto form input[type=text],
#contacto form input[type=email],
#contacto form input[type=tel] {
  width: 100%;
}

#contacto form textarea,
#contacto form input[type=text],
#contacto form input[type=email],
#contacto form input[type=tel] {
  margin-bottom: 5px;
}

#contacto form textarea {
  height: 150px !important;
}

#contacto section:last-child {
  margin-left: -15px;
  margin-right: -15px;
  width: calc(100% + 30px);
}

@media (min-width: 992px) {
  #contacto section:last-child {
    width: 100%;
  }
}

/*//// Map */

@media (min-width: 992px) {
  #contacto .map-cont::before {
    background: var(--dark-color-2);
    width: 100%;
    display: block;
    position: absolute;
    height: 100%;
    content: '';
    right: -100%;
    top: 0;
  }

  #contacto .map-cont::after {
    background: var(--dark-color-2);
    width: 100vw;
    height: 100%;
    display: block;
    content: '';
    left: -10px;
    padding: 10px;
  }
}

#contacto .map-cont .map {
  margin-top: 25px;
}

#contacto h3 {
  background: url('img/icons/GeoAltFill.svg') no-repeat left center;
  background-size: 25px;
  padding-left: 35px;
}

/*//// Social */

#contacto .contact-data .data {
  border-left: 1px solid var(--light-color);
  padding: 5px 0 5px 25px;
  margin: 25px 0 40px;
}

#contacto .contact-data .data li {
  max-width: 300px;
}

#contacto .contact-data .data li,
#contacto .contact-data .data li * {
  color: var(--light-color);
}

#contacto .contact-data .data li a {
  text-decoration: none;
}

#contacto .contact-data .data li a:hover,
#contacto .contact-data .data li a:focus {
  color: var(--light-color);
  text-decoration: underline;
}

@media (min-width: 768px) {
  #contacto .contact-data .social {
    margin: 20px 0;
  }
}

#contacto .contact-data .social li {
  height: 30px;
  width: 30px;
  margin-right: 25px;
}

#contacto .contact-data .social li a {
  opacity: 1;
  height: 30px;
  width: 30px;
}

#contacto .contact-data .social li a:hover,
#contacto .contact-data .social li a:focus {
  opacity: 0.75;
  transition: all .8s ease-in-out;
  -moz-transition: all .8s ease-in-out;
  -webkit-transition: all .8s ease-in-out;
}

#contacto .contact-data .social li a:after {
  border: none;
}

#contacto .contact-data .social li.facebook a {
  background: url('img/icons/Facebook.svg') no-repeat center center;
  background-size: 30px 30px;
}

#contacto .contact-data .social li.instagram a {
  background: url('img/icons/Instagram.svg') no-repeat center center;
  background-size: 30px 30px;
}

#contacto .contact-data .social li.linkedin a {
  background: url('img/icons/Linkedin.svg') no-repeat center center;
  background-size: 30px 30px;
}

#contacto .contact-data .social li.whatsapp a {
  background: url('img/icons/Whatsapp.svg') no-repeat center center;
  background-size: 30px 30px;
}

/*///////////////////*/
/*////////// Buttons */
/*///////////////////*/

.btn {
  background-color: white;
  border-radius: 0;
  border: 1px solid var(--dark-color-2);
  padding: 12px 30px;
  font-size: 18px;
  color: var(--dark-color-2);
  font-weight: 600;
}

.btn:hover,
.btn:focus {
  background-color: var(--dark-color-2);
  border: 1px solid var(--dark-color-2);
  color: white;
}

.btn:active {
  background-color: var(--gray-color);
  border: 1px solid var(--dark-color-2);
  color: white;
}

/*///////////////////*/
/*//////////// wpcf7 */
/*///////////////////*/

.wpcf7 form .wpcf7-spinner {
  width: 24px;
  margin: 12px 0 0 12px;
}

.wpcf7 form .wpcf7-response-output {
	margin: 2em 0 0;
	padding: 6px 12px;
	border: 1px solid #00a0d2;
  background: #bae9f8;
  color: #147493;
  border-radius: 4px;
  font-size: 14px;
  line-height: 18px;
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
	display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
	border-color: #46b477;
  background: #b6f4d2;
  color: #27814f;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
	border-color: #dc3232;
  background: #facccc;
  color: #883838;
}

.wpcf7 form.spam .wpcf7-response-output {
	border-color: #FF5100;
  background: #fdc9b1;
  color: #7a3718;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	border-color: #ffb900;
  background: #ffebb6;
  color: #796122;
}

.wpcf7 form .wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 12px;
}
