#render .owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  width: 90%;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
}

#render .owl-carousel .owl-nav div {
  outline: none;
  pointer-events: all;
  width: 60px;
}

#render .owl-carousel .owl-nav div img {
  width: 300%;
}

#render .owl-carousel .owl-nav div:nth-child(2) {
  transform: rotate(180deg);
}

#render .owl-carousel .item {
  position: relative;
  opacity: 0.4;
  transition: 0.8s;
  height: 44vw;
  min-height: 300px;
}

#render .owl-carousel .item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

#render .owl-carousel .owl-stage-outer .owl-stage .owl-item.active {
  opacity: 1;
}

#render .owl-carousel .owl-stage-outer .owl-stage .owl-item.active .item {
  opacity: 1;
  transition: .4s;
}

#galeria .owl-stage .owl-item .item {
  margin-top: 20vw;
  height: 0;
}

#galeria .owl-stage .owl-item.active .item {
  height: 40vw;
  min-height: 300px;
}

#galeria .owl-nav {
  width: 100%;
}

#galeria .owl-stage .owl-item.active .item {
  height: 350px;
}

#render .owl-carousel .owl-nav {
  width: 100%;
}

#render .owl-carousel .owl-nav div {
  width: 40px;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

section p {
  font-size: 18px;
  font-family: "Spartan-Light";
  margin: 0;
  padding-bottom: 20px;
}

section p:last-child {
  padding: 0;
}

.web-wrapper {
  width: 80%;
  margin: 0 auto;
  max-width: 1500px;
}

body {
  font-family: Arial;
}


/**
* Header 
* --------------------------------
*/

header {
  display: flex;
  align-items: center;
  background-color: #A09D9D;
  height: 206px;
  width: 100%;
}


.header-container {
  display: flex;
  align-items: flex-end;
}

header img {
  width: 377px;
  margin-left: 40px;
}

header p {
  font-size: 2rem;
  font-weight: bolder;
  font-style: italic;
  background-color: #FFD900;
  border-radius: 6px;
  margin-left: 60px;
  padding: 10px 18px;
  margin-bottom: 0;
}

/** 
* Main section con formulario
* ---------------------------------------------------------------------------------
*/

.main-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

/** Imagen */

.main-picture {
  display: flex;
  align-items: flex-end;
  background: url(../images/img-1.jpg) no-repeat 50% 50% / cover;
  width: 55%;
  height: 79vh;
}

.main-description {
  width: 65%;
}

.main-container h3 {
  font-family: "Spartan-Light";
  background-color: rgba(160, 157, 157, .78);
  font-size: 2.5rem;
  padding: 12px 36px;
  color: #fff;
  margin-bottom: 40px;
}

/** 
*Formulario 
* ---------------------------------------------------------------
*/

.form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45%;
}

.form-section {
  padding: 2vw 4vw;
  text-align: center;
}

.form-section .viviendas{
  list-style: none;
  font-size: 21px;
  color: gray;
  line-height: 36px;
    font-family: "Spartan-Light";
}

.form-container h1 {
  font-weight: normal;
  font-size: 2.6rem;
  margin-bottom: 10px;
}

.form-container h2 {
  font-family: "Spartan-Light";
  font-size: 1.8rem;
  color: #182234;
  margin-bottom: 40px;
}

form .inputs .input-style {
  padding: 2px 0;
}

form .inputs .input-style input,
form .inputs .input-style textarea {
  background: rgba(160, 157, 157, .53);
  font-size: 1.2rem;
  color: #000;
  padding: 15px;
  border: none;
  margin-bottom: 8px;
  width: 100%;
  font-family: 'Arial';
}

textarea::placeholder {
  color: #000;
}

form .inputs .input-style textarea {
  height: 100px;
  resize: none;
}

input::placeholder {
  font-size: 1.2rem;
  color: #000;
}

.form-two .inputs {
  display: flex;
  flex-wrap: wrap;

}

.form-two .inputs .input-style {
  width: 33.33%;
  padding: 5px;
}

.form-two form .inputs .input-style.bg {
  width: 50%;
}

.form-two form .inputs .input-style input,
.form-two form .inputs .input-style textarea {
  height: 60px;
}

/** 
* Terminos y boton del formulario 
* ----------------------------------------
*/

.submits {
  display: flex;
  justify-content: space-between;
  padding: 5px;
}

.checkbox {
  text-align: left;
  width: 40%;
}

.checkbox span {
  font-size: 0.8rem;
}

.checkbox a {
  color: #000;
  text-decoration: none;
}

.submit input {
  background-color: #182234;
  color: #fff;
  font-weight: bold;
  padding: 18px 20px;
  width: 180px;
  border: none;
  cursor: pointer;
  border: 2px solid #182234;
  background-image: -webkit-linear-gradient(90deg, #fff 50%, transparent 50%);
  background-image: linear-gradient(90deg, #fff 50%, transparent 50%);
  background-position: 100%;
  background-size: 400%;
  -webkit-transition: background 100ms ease-in-out;
  transition: background 100ms ease-in-out;
}

.inputs input[name="mensaje"] {
  height: 140px;
}

.submit input:hover {
  background-color: #fff;
  border: 2px solid #182234;
  color: #182234;
  background-position: 0;
  transition: .8s;
}

/** 
* Descripción 
* ----------------------------------------
*/

.paragraph {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Spartan-light";
  width: 100%;
  padding-bottom: 40px;
}

.paragraph-container {
  padding: 20px 0;
}

.paragraph .paragraph-container h4 {
  margin-bottom: 24px;
  font-size: 1.2rem;
}

.paragraph .paragraph-container h3 {
  font-family: "Spartan-light";
  font-size: 2rem;
  margin-bottom: 24px;
}

.paragraph .paragraph-container p {
  font-family: "Spartan-Light";
  font-size: 1.25rem;
  line-height: 1.5;
  text-align: justify;
}

/** 
* Iconos 
* ----------------------------------------
*/

.icons {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #182234;
  padding: 60px 0;
  margin-top: 10px;
  margin-bottom: 0px;
}

.icons .icons-container {
  display: flex;
  justify-content: space-around;
  width: 57%;
}

.icons .single-icon {
  width: 20%;
  padding: 20px;
}

.single-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icons .icons-container img {
  width: 65px;
  margin-bottom: 10px;
}

.icons .icons-container p {
  font-size: 1rem;
  text-align: center;
  color: #fff;
}

/** 
* Sección Más Información
* ----------------------------------------
*/

/* .info-container .content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row;
}

.info-container .content:nth-child(odd) {
  flex-direction: row-reverse;
}

.info-container .content:nth-child(2) {
  position: relative;
  margin: -1vw 0;
} */



.info-container {
  display: flex;
  justify-content: center;
  padding-bottom: 40px;

}
.info-container .imagen {
  width: 67%;
}

.info-container .imagen video {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

/* .info-container .content .texto {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3vw;
  width: 40%;
} */

.content .texto {
  padding: 3vw;
}

/** Segunda imagen con boton Mas Información*/

.second-image {
  display: flex;
  align-items: center;
}

.more-info {
  text-align: center;
}

.more-info p {
  font-family: "Spartan-Regular";
  font-size: 2.1rem;
  padding: 20px 0;
}

button {
  padding: 20px 30px;
  font-weight: bold;
  color: #fff;
  background-color: #182234;
  border: 2px solid #182234;
  cursor: pointer;
}

button:hover {
  color: #182234;
  background-color: #fff;
  border: 2px solid #182234;
}

.boton {
  padding: 20px 30px;
  font-weight: bold;
  color: #fff;
  background-color: #182234;
  border: 2px solid #182234;
  cursor: pointer;
  background-image: -webkit-linear-gradient(90deg, #fff 50%, transparent 50%);
  background-image: linear-gradient(90deg, #fff 50%, transparent 50%);
  background-position: 100%;
  background-size: 400%;
  -webkit-transition: background 100ms ease-in-out;
  transition: background 100ms ease-in-out;
}

.boton:hover {
  color: #182234;
  background-color: #fff;
  border: 2px solid #182234;
  text-decoration: none;
  background-position: 0;
  transition: .8s;
}

/** 
Banner
* ----------------------------------------------
*/

.banner-container {
  display: flex;
  margin-top: 30px;
}

.banner-container .imagen-mini {
  width: 50%;
}

.banner-container .imagen-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-mobile {
  display: flex;
}

.banner-information {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #A09D9D;
  color: #fff;
  font-family: "Spartan-Light";
  width: 100%;
  padding: 50px;
}

.banner-information h3 {
  font-size: .9rem;
  margin-bottom: 16px;
}

.banner-information h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.banner-information p {
  font-size: 1.15rem;
  line-height: 2;
  text-align: center;
}

.banner-icons {
  display: flex;
  margin-top: 40px;
}

.banner-icons .icon-text p {
  line-height: 1.2;
}

.banner-icons .icon-text img {
  width: 30%;
}

.icon-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-text p {
  font-family: Arial;
  margin: 0 18px;
}

/** 
* Vive la luz de la Costa del Sol
* ----------------------------------------------
*/

.sol-container {
  text-align: center;
  margin-top: 50px;
}

.sol-container h1 {
  font-size: 2rem;
  font-family: "Spartan-Light";
  margin-bottom: 60px;
}

.localizacion {
  margin-top: 60px;
  text-align: left;
}

.localizacion h4 {
  font-family: "Spartan-Light";
  margin-bottom: 24px;
  font-size: 1.2rem;
}

.localizacion h3 {
  font-family: "Spartan-Light";
  font-size: 2rem;
  margin-bottom: 24px;
}

.localizacion p {
  font-family: "Spartan-Light";
  font-size: 1.25rem;
  line-height: 1.5;
  text-align: justify;
  margin-bottom: 18px;
}

/** 
* Mapa
* ----------------------------------------------
*/

.map {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 80px;

}

.map-info {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 25%;
  background-color: #182234;
  color: #fff;
  padding: 60px;
}

.map-icons {
  display: flex;
  align-items: center;
}

.map-info .map-icons img {
  width: 50px;
  margin-right: 20px;
}

.beach {
  padding-bottom: 10px;
}

.map-picture {
  width: 75%;
}

.map-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-two {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 80px;
  padding: 0 30px;
}

.form-two h1 {
  font-family: "Spartan-Light";
  font-size: 2rem;
  margin-bottom: 18px;
}

.form-two p {
  font-family: "Spartan-Light";
  margin-bottom: 48px;
}

/** 
* Contacto
* ----------------------------------------------
*/

.contact-container {
  text-align: center;
  margin-top: 60px;
}

.titular {
  font-size: 1.8rem;
  font-weight: bold;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  margin: 18px 0;
}

.contact-buttons img {
  width: 160px;
  padding-right: 30px;
}

.contact {
  font-family: "Spartan-Thin";
  margin-bottom: 20px;
}

.office h5 {
  font-family: "Spartan-ExtraLight";
  margin-top: 40px;
  padding-bottom: 6px;
}

.street {
  display: flex;
  justify-content: center;
}

.street p {
  font-family: "Spartan-ExtraLight";
  padding-right: 20px;
}

.postal-code {
  font-family: "Spartan-Thin";
  border-top: 1px solid #A09D9D;
  padding-top: 8px;
  margin-bottom: 80px;
}

/** 
* Footer
* ----------------------------------------------
*/

footer {
  background-color: #A09D9D;
  color: #fff;
  padding: 16px 0;
}

footer p {
  font-size: .8rem;
  width: 100%;
  text-align: center;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  color: #fff;
  text-decoration: none;
}

/** 
* Media queries
* ----------------------------------------------
*/

@media only screen and (max-width: 1284px) {
  header {
    height: 106px;
  }

  header img {
    width: 177px;
    margin-left: 10px;
  }

  .main-container {
    display: flex;
    justify-content: center;
  }

  .main-picture {
    width: 100%;
  }

  .main-container p {
    font-size: 1.4rem;
    padding: 12px;
  }

  .form-container {
    width: 90%;
  }

  .form-container h1 {
    margin-top: 20px;
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .form-container h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  form .inputs .input-style {
    padding: 2px 0;
  }

  input::placeholder {
    font-size: 1rem;
  }

  .checkbox {
    width: 100%;
  }

  .submits {
    flex-direction: column;
  }

  .submit input {
    margin-top: 10px;
    width: 100%;
  }

  textarea::placeholder {
    color: #000;
    font-size: 1rem;
  }

  .paragraph-container p {
    font-size: 1rem;
  }

  .icons .icons-container {
    flex-wrap: wrap;
    width: 100%;
    padding: 60px;

  }

  .icons .icons-container img {
    width: 55px;
  }

  .icons .icons-container p {
    font-size: 1.1rem;
    padding-bottom: 10px;
  }

  .banner-container {
    flex-wrap: wrap;
  }

  .banner-container .imagen-mini {
    width: 50%;
  }

  .map-info {
    padding: 20px;
  }

  .map-info .map-icons img {
    width: 40px;
    margin-right: 20px;
  }

  .map-info .map-icons p {
    font-size: 0.8rem;
  }
}

@media only screen and (max-width: 992px) {
  .info-container .imagen {
    width: 100%;
  }
  #render .owl-carousel .owl-nav {
    padding: 0;
  }
  #render .owl-carousel .owl-nav div img {
    width: 200%;
  }
  
  header p {
    padding: 10px;
  }

  .more-info p {
    font-family: "Spartan-Regular";
    font-size: 1.2rem;
    margin-top: 8px;
    margin-bottom: 0;
  }

  .paragraph .paragraph-container p {
    font-size: 1rem;
  }

  .info-container .content .imagen {
    width: 100%;
  }

   .content .texto {
    width: 100%;
    padding-bottom: 9vw;
  }

  .icons {
    padding: 20px 0;
  }

  .sol-container h1 {
    font-size: 1.6rem;
  }

  .localizacion p {
    font-size: 1rem;
  }

  .banner-information h2 {
    font-size: 1.4rem;
    text-align: center;
  }

  .banner-information p {
    font-size: 1rem;
  }

  .banner-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }

  .banner-icons .icon-text p {
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .map-info {
    width: 100%;
  }

  .map-picture {
    width: 100%;
  }

  .map-info {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .map-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .map-info .map-icons img {
    padding-bottom: 10px;
    padding-top: 10px;
  }

  .form-two--info {
    padding: 0 7px;
  }

  .form-two--info p {
    font-size: 1.2rem;
    padding-bottom: 8px;
    margin: 0;
  }

  .more-info p {
    margin-bottom: 10px;
  }

  .imagen-mobile {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .icons .single-icon {
    width: 33.33%;
  }

  .main-container h3 {
    width: 90%;
    font-size: 2rem;
  }

  .video{
    display: none;
  }
}

@media only screen and (max-width: 480px) {
  header img {
    width: 147px;
    margin-left: 10px;
  }

  header p {
    font-size: 1.6rem;
    font-weight: bolder;
    font-style: italic;
    background-color: #FFD900;
    border-radius: 6px;
    margin-left: 30px;
    padding: 4px 12px;
    margin-bottom: 0;
  }
  .main-picture {
    height: 39vh;
  }
  .main-container h3 {
    font-size: 1.2rem;
}

  .form-two h1 {
    font-size: 1.3rem;
  }
  .form-two--info p {
  font-size: .9rem;
  text-align: left;
  }
  .icons .icons-container {
    padding: 30px;
  }

  .icons .single-icon {
    width: 50%;
  }

  button {
    padding: 10px 20px;
  }

  .form-two {
    margin-top: 20px;
  }

  .form-two .inputs .input-style {
    width: 100%;
  }

  .form-two form .inputs .input-style.bg {
    width: 100%;
    ;
  }
  .map-picture img {
    width: 100%;
  }
  .contact-buttons img {
    width: 140px;
    padding-right: 30px;
}
.postal-code {
  margin-bottom: 20px;
}
.more-info p {
  margin-bottom: 37px;
}
.info-container {
  padding-top: 40px;
}
}

@font-face {
  font-family: 'Arial';
  src: url("../fonts/Arial.ttf") format("truetype");
}

@font-face {
  font-family: 'Arial-Black';
  src: url("../fonts/Arial-Black.ttf") format("truetype");
}

@font-face {
  font-family: 'Arial-Bold';
  src: url("../fonts/Arial-Bold.ttf") format("truetype");
}

@font-face {
  font-family: 'Spartan-ExtraLight';
  src: url("../fonts/Spartan-ExtraLight.ttf") format("truetype");
}

@font-face {
  font-family: 'Spartan-Light';
  src: url("../fonts/Spartan-Light.ttf") format("truetype");
}

@font-face {
  font-family: 'Spartan-Regular';
  src: url("../fonts/Spartan-Regular.ttf") format("truetype");
}

@font-face {
  font-family: 'Spartan-Thin';
  src: url("../fonts/Spartan-Thin.ttf") format("truetype");
}