body {
  font-family: "Open sans, Helvetica, Arial", sans-serif;
  background-color: #E3DBDB;
  box-sizing: border-box;
  max-width: 1920px;
  width: 100%;
  margin: auto;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

main{
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.btn {
  width: 15rem;
  height: 5rem;
  border-radius: 30px;
  background-color: #4E3D42;
  color: #f8c398;
  transition: 1s;
  font-size: 25px;
  margin-top: 1rem;
}

.btn:hover {
  background-color: #f8c398;
  color: #6D6466;
  transition: 1s;
}

.btn2 {
  width: 10rem;
  height: 3rem;
  background-color: #f8c398;
  color: #6D6466;
  transition: 1s;
  border: none;
  border-radius: 20px;
  font-size: 20px;
}

.btn2:hover {
  background-color: #6D6466;
  color: #f8c398;
  transition: 1s;
}

/* --- Header --- */

.header {
  background-color: #4E3D42;
  color: #f8c398;
  padding: 0.7rem;
  padding-top: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 20px;
}


/* -------- SECTION 1 - HERO ---------- */

.section-1 {
  background-image: url(../images/banner-bg-03.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: 100%;
  align-items: center;
  justify-content: center;
  color: #4E3D42;
  height: 38rem;
}

.s1-1{
  padding: 2rem 6rem;
}

.s1-1 > h1 {
  font-size: 5rem;
  font-weight: 800;
}

.s1-subt {
  font-size: 1.5rem;
  font-style: italic;
}

.s1-txt{
  width: 50%;
}
.s1-stars{
  display: flex;
  gap: 10px;
}

.s1-chip {
  display: flex;
  gap: 15px;
  padding: 0 25px;
  width: 25rem;
  height: 80px;
  font-size: 25px;
  line-height: 70px;
}

.s1-chip > img {
  float: left;
  margin: 0px 0 0 -15px;
  height: 70px;
  width: 70px;
  border-radius: 50%;
}

/* -- s-1 discount effect -- */

s, strike{text-decoration:none;position:relative;}
s::before, strike::before {
    top: 50%; /*tweak this to adjust the vertical position if it's off a bit due to your font family */
    background:red; /*this is the color of the line*/
    opacity:.7;
    content: '';
    width: 110%;
    position: absolute;
    height:.1em;
    border-radius:.1em;
    left: -5%;
    white-space:nowrap;
    display: block;
    transform: rotate(-15deg);  
}
s.straight::before, strike.straight::before{transform: rotate(0deg);left:-1%;width:102%;}

.price-1{
  display: flex;
  align-items: center;
  gap: 1rem;
}

.price-disc{
  background-color: rgba(255, 74, 74, 0.62);
  min-width: 100px;
  padding: 0.2rem 0.5rem;
  border-radius: 10px;
  margin-right: 1rem;
}

.price-value{
  font-size: 40px;
  font-weight: 900;
}

.price-old{
  font-style: italic;
}

/* -------- SECTION 2 - MORE INFO ---------- */

.section-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4E3D42;
background-image: url('../images/marble-bg.webp');
padding: 2rem;
}

.s2-title {
  font-weight: 800;
  font-size: 50px;
}

.s2-subtitle {
  font-style: italic;
  font-size: 30px;
  padding-bottom: 1rem;
}

.s2-img > img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.s2-info {
  padding: 0rem 6rem;
}


/* -------- BARRAS SEPARACION ---------- */

.barra {
  background-color: #4E3D42;
  color: #f8c398;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
}

.barra>h3{
  text-align: center;
  font-weight: 900;
  font-size: 23px;
  font-style: italic;
}



/* -------- SECTION 4 - MORE INFO ---------- */

.section-4 {
 padding: 2rem;
 background-color: #f8f8fa;
 color: #4E3D42;
}

.s4-1{
  padding: 4rem;
}

.s4-1>h1{
  font-weight: 800;
  font-size: 50px;
}

.s4-title{
  padding: 2rem;
  text-align: center;
  font-weight: 800;
  font-size: 50px;
  color:#4E3D42;
}

.carousel{
  width: 30%;
  min-width: 340px;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* -------- SECTION 5 - REVIEWS ---------- */

.section-5 {
  background-color: #4E3D42;
  padding: 2rem;
  display: flex;
  justify-content: space-around;
  color: #4E3D42;
}

.s5-rev {
  background-color: #E3DBDB;
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 1rem;
}

.s5-rev-user {
  display: flex;
}

.s5-date {
  font-style: italic;
  padding-top: 0.5rem;
  color:rgba(0, 0, 0, 0.4)
}

.user-avatar {
  max-width: 40px;
  border-radius: 20px;
}

.s5-rev-info {
  display: flex;
  align-items: center;
  padding-top: 0.5rem;
}

.s5-chip {
  display: inline-block;
  padding: 0 25px;
  height: 50px;
  font-size: 16px;
  line-height: 50px;
}

.s5-chip > img {
  float: left;
  margin: 0 10px 0 -25px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
}

/* -------- FOOTER ---------- */

.footer {
  background-color: #4E3D42;
  color: #f8c398;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* --- FORM --- */

.final-section{
  padding: 2rem;
}

.form-title {
  background-color: #4E3D42;
  color: #f8c398;
  padding: 0.6rem;
  width: fit-content;
  font-weight: 800;
  font-size: 40px;
  margin: 0 auto;
}

.form-control{
  background-color: #fef1e7;
}

.card>img{
  filter: grayscale(25%);
}

.card-text{
  text-align: center;
}

.card-body{
  background-color: #4E3D42;
  color: #f8c398;
}

.box-form {
  max-width: 600px;
  width: 100%;
  margin: auto;
  box-sizing: border-box;
  background-color: #4E3D42;
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 2rem;
}

.form-subtitle {
  font-style: italic;
}

.quest1-row {
  width: 100%;
  margin: auto;
}

.form-btn {
  /*max-width: 220px;*/
  width: 100%;
  padding: 15px 20px;
  color: #fff;
  margin-top: 20px;
  font-weight: 700;
  font-family: "Open sans, Helvetica, Arial", sans-serif;
  border-radius: 15px;
  background-color: #f8c398;
  color: #4E3D42;
  border: none;
  transition: 1s;
}

.form-btn:hover {
  background-color: #ad8564;
  color: #675057;
  transition: 1s;
}

.box-check {
  padding: 3px 0px;
}

.fieldpp {
  font-size: 0.8em;
  /*color: #c2c2c2;*/
}

.advantage {
  padding: 80px 0;
}

.box-advantage {
  margin: auto;
  justify-content: center;
}

.box-advantage img {
  max-width: 880px;
  width: 100%;
}

.last-advantage {
  padding: 50px 0 0;
}

.last-advantage p {
  max-width: 1100px;
  width: 100%;
  margin: auto;
  font-size: 15.5pt;
  font-weight: lighter;
}

/* Error message */

.errormsg {
  /*height: 0;*/
  /*padding-top: 0;*/
  /*padding-bottom: 1em;*/
  color: red;
  /*transform: scaleY(0);*/
  /*transition: all 1s ease-in;*/
}

.errormsgactive {
  transform: scaleY(1);
  height: 2em;
}

/* Contact Form */
/*
.contactform {
  border: 2px solid #ccc;
  border-radius: 10px;
  background-color: #f7f7f7;
  padding: 10px;
  color: #999;
  /*width: 400px;*/
/*  position: fixed;
  top: 10%;
  left: 30%;
  margin-top: 0px;
  margin-left: -70px;
  z-index: 10;
  height: auto;
   opacity: 1;
  -webkit-transition: opacity 1000ms linear;
   transition: opacity 1000ms linear;
}*/

.form-horizontal,
.form-group {
  margin-left: 0px;
  margin-right: 0px;
  margin-bottom: 15px;
}

#xclose {
  /*position: fixed;*/
  padding: 5px;
  margin: 0 5px 10px 0;
  background-color: #ececec;
  border: 1px solid #c5c5c5;
  width: 26px;
}

#contacterr {
  margin-top: 10px;
  margin-bottom: 10px;
  color: red;
}

#bclose {
  line-height: 1em;
  border-radius: 0;
  padding: 3px 5px;
}

/* Thank you */

#thankyoubg {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  min-height: 100%;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

#thankyoubox {
  border: 2px solid #ccc;
  border-radius: 10px;
  background-color: #f7f7f7;
  padding: 10px;
  color: #999;
  width: 100%;
  max-width: 800px;
  min-height: 500px;
  position: fixed;
  top: 10%;
  left: 30%;
  margin-top: 0px;
  z-index: 10;
  height: auto;
  opacity: 1;
  -webkit-transition: opacity 1000ms linear;
  transition: opacity 1000ms linear;
  background-image: url("../images/thankyou-bg.jpg");
  background-size: cover;
  background-position: -80px;
}

#thankyoutxt {
  margin-left: 60%;
  text-align: center;
  padding-top: 25%;
}

#thankyoutxt1 {
  color: #ea740e;
}

#thankyouhr {
  background-color: #d20f1d;
  height: 5px;
  width: 50%;
  margin: 10px auto 10px auto;
}

.thanks-page {
  max-width: 900px;
  width: 100%;
  margin: auto;
  border: 1px solid #c2c2c2; /* Este border se quitará cuando se haga en popup*/
  background-color: #f4f4f5;
  position: fixed;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0px;
  z-index: 10;
  height: auto;
  opacity: 1;
  -webkit-transition: opacity 1000ms linear;
  transition: opacity 1000ms linear;
}

.info-thanks {
  padding: 25px 40px;
}

.card{
  max-width: 20rem;
  border: none;
  margin: 1rem;
}

.text {
  font-size: 1.2rem;
  line-height: 1.4rem;
  color: #4d4d4d;
  text-align: center;
}

.text h1 {
  font-size: 2.5em;
  font-weight: bold;
  color: #0091a9;
}

.text h4 {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 30px;
}

.text span {
  font-size: 1em;
  font-weight: lighter;
}

.line {
  height: 6px !important;
  width: 45%;
  margin: 0 auto 20px;
  color: #0091a9;
  border-radius: 2px;
  opacity: 100%;
}

.more-webs {
  width: 100%;
  margin: 20px auto 30px;
}

.web {
  width: 30%;
  background-color: #fff;
  border: solid 1px #c2c2c2;
  text-align: center;
  margin: 0 auto;
  padding: 25px;
}

.web li {
  text-align: left;
}

.web img {
  max-width: 70px;
  width: 100%;
}

.list {
list-style: square;
}

.hide {
  display: none;
}

.btn-thanks {
  max-width: 200px;
  width: 100%;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  padding: 10px;
  font-size: 1em;
  color: #ffffff;
  background-color: #e68016;
  border-radius: 5px;
  margin: auto;
  margin-bottom: 10px;
  border: 0;
}

.btn-thanks:hover {
  background-color: #d9580b;
  color: #ffffff;
}

@media screen and (max-width: 750px) {
  #thankyoubg {
    overflow: scroll;
  }

  .thanks-page {
    top: 0;
    position: absolute;
  }

  .web {
    max-width: 450px;
    width: 100%;
    margin: auto;
    margin-bottom: 25px;
  }

  .list {
    height: initial;
  }

  .text h1 {
    font-size: calc(2rem + 0.8vw);
  }

  .text h4 {
    font-size: calc(1rem + 0.5vw);
    margin-bottom: 10px;
  }

  .text span {
    font-size: calc(0.8rem + 0.3vw);
  }

  .old-price {
    text-align: center;
  }
}

/* Loader */

.loaderbg {
  background-color: #c1c1c18a;
  height: 100%;
  width: 100%;
  z-index: 1;
  position: absolute;
}

.loader {
  background-image: url("../images/loader.gif");
  width: 30px;
  height: 30px;
  /*border: 1px solid grey;*/
  /*border-radius: 5px;*/
  z-index: 10;
  /*position: relative;
	top: 50%;
	left: 50%;*/
  background-repeat: no-repeat;
  background-size: contain;
  max-width: 30px;
  max-height: 30px;
  float: left;
}

.checker {
  background-image: url("../images/checker.gif");
  background-repeat: no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
  display: block;
  float: left;
}

.thankyouloader {
  background-image: url("https://media2.giphy.com/media/3oEjI6SIIHBdRxXI40/200.gif");
  background-repeat: no-repeat;
  /*background-size: contain;*/
  background-position: center;
  background-color: white;
  width: 100%;
  height: 100%;
}

#thankyouloader-txt {
  text-align: center;
  margin-top: 100px;
  font-size: 1.5em;
}

/* Postcode */

.postcodenoview {
  display: none;
  height: 0;
  transition: height 2s;
  transition-timing-function: ease-in;
}

.postcodeview {
  display: block;
  height: 1em;
  color: #0f8d3b;
  /*padding-top: 1em;*/
  /*padding-bottom: 1em;*/
  font-size: 1em;
}
.trapemail {
  display: none;
}

.new-price {
  font-size: 3em;
  color: red;
  font-weight: bold;
}

.old-price {
  font-size: 2em;
  color: #000000;
  text-decoration: line-through;
  margin-right: 1em;
  margin-left: 1em;
}

.disclaimer-pp {
  font-size: 12px;
  color: #f8c398;
  margin-top: 20px;

}

.step-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.step-box>img{
	width: 100%;
  max-width: 900px;
	object-fit: contain;
}

.form-steps {
  padding: 1rem;
}

/* Overlap box */

.overlapbox {
  border: 2px solid #ccc;
  border-radius: 10px;
  background-color: #f7f7f7;
  padding: 1.5em;
  color: #999;
  width: 50%;
  /*max-width: 800px;*/
  min-height: 500px;
  position: fixed;
  top: 10%;
  left: 50%;
  margin-left: -25%;
  transform: scale(0, 0);
  transition: all 0.5s ease;
  z-index: 9;
  overflow: hidden;
  /*margin: auto;*/
}

.overlapbox-active {
  transform: scale(1, 1);
}

.content-overlapbox {
  margin-top: 20px;
  overflow-y: scroll;
  max-height: 400px;
}



.general-box-mobile {
  display: none;
}

@media screen and (max-width: 1200px) {
	.section-1 {
	  background-position-x:50%;
	}

	.s2-img{
		min-width: 20rem;
	}

	.s2-p{
		font-size: 13px;
	}
  }


@media screen and (max-width: 768px) {
  .section-1 {
    background-image: url(../images/marble-bg.webp);
    height: 50rem;
  }

  .s1-hidden{
    background-image: url(../images/banner-bg-03-mobile.jpg);
    background-size: cover;
    background-position-y: 100%;
    height: 15rem;
  }

  .s1-1{
    padding: 1rem;
  }

  .s1-1>h1{
    font-size: 55px;
  }

.span-price{
  font-size: 10px;
}

.price{
font-size: 40px;
}

 .s1-chip{
  padding: 1rem;
 }

 .s1-chip>span{
  font-size: 20px;
 }
  .s1-txt{
    width: fit-content;
  }

  .s2-p{
	width: auto;
  }

  .s2-info{
    padding: 0.5rem;
  }

}

/* ------ CARRUSEL ---------- */

.s4, .s4>div{
  display: flex;
  justify-content: center;
}

.s4-gallery {
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin: 2rem;
  min-width: 250px;
  max-width: 310px;
  width: 100%;
  background-color: #e3dbdb;
  color: #ffffff;
  text-align: left;
  font-size: 16px;
}

.s4-gallery * {
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.s4-gallery img {
  max-width: 100%;
  vertical-align: top;
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}
.s4-gallery:hover img,
.s4-gallery.hover img {
  -webkit-transform: scale(1) rotate(1deg);
  transform: scale(1) rotate(1deg);
}

/* unvisited link */
a:link {
  color: #e68016;
}
