.hero {
  position: relative;
	background-color:var(--peach);
	background-size:cover;
	background-repeat: no-repeat;
	background-position: center;
	background-attachment: fixed;
	color:#fff;
  min-height: 20em;
  text-align: center;
}

  .blackbg {
    background-color:#333;
    padding:3em;
  }

	.hero h1 {
    position: absolute;
    color:inherit;
    left:50%;
    top:50%;
    transform:translate(-50%, -50%);
    width:100%;
		padding:5%;
		text-align: center;
		margin:0;
	}

  .hero h1.pink {
    color:var(--pink);
    text-shadow:0 0 20px rgba(255,255,255,1);
  }

  .hide h1 {
    opacity:0;
  }

  .hide {
    min-height: 0;
  }

  .left-align,
  .hero .left-align {
    text-align: left;
  }

  .hero p{
    position:absolute;
    display:inline-block;
    bottom:1em;
    right:1em;
    background-color: #fff;
    color:#333;
    padding:0.75em;
    border-radius:0.25em;
  }

  .hero img {
    width:100%;
  }

  .hero .head-logo {
    display:block;
    width:500px;
    max-width:90%;
    margin:5em auto;
  }

.main {
	background-color:#f6f6f6;
	padding:5%;
}

.main .peach-btn {
  margin:0 0.5em 0.5em 0;
}

.main .centre_btn {
  float:none;
  margin:1em auto;
  display:block;
  width:300px;
  text-align: center;
}

.lilash {
	background-color:#fff;
}

  #lilash-form {
    margin-bottom: 5em;
    background-color: var(--lpink);
    padding: 3em;
    box-shadow: 0px 9px 25px #0003;
    border-radius: 1em;
    width:min(500px,100%);
  }

  #lilash-form input,
  #lilash-form textarea,
  #lilash-form select {
    background-color:#fff;
  }

  #lilash-form select {
    cursor: pointer;
  }
  
  #lilash-form input.white-btn:hover {
    background-color:var(--pink);
  }
  
  .lilash p {
    clear:left;
  }


.paypal-box {
  float: left;
  cleaR: left;
  width: 350px;
  max-width: 100%;
  margin-bottom: 5em;
  box-shadow: 0px 8px 20px #0002;
  padding: 2em;
  border-radius: 1em;
}

input[type="submit"].paypal-submit {
  width: 100%;
  float: left;
  clear: left;
  background-color: var(--peach);
  color: #fff;
  border: 0;
  outline: 0;
  font-weight: 500;
  border: 1px solid var(--peach);
}

  input[type="submit"].paypal-submit:hover {
    background-color: #fff;
    border: 1px solid var(--peach);
    color: var(--peach);
  }

  .paypal-logo {
    width: 100%;
    clear: left;
  }

article {
  float:left;
  width:75%;
  padding-right:5%;
}

aside {
  float:right;
  width:25%;
}

  .main aside .peach-btn {
    width:100%;
    margin:0 0 0.5em 0;
    text-align: left;
    font-size:1.6em;
    padding:1em 1.5em;
  }

  .side-gal {
    margin-bottom:5em;
  }

  .side-gal img {
    border-radius:5px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    width:80%;
    float:right;
    margin-top:-10%;
  }

  .side-gal img:nth-of-type(even) {
    float:left;
  }

  .side-gal img:first-of-type {
    margin-top:0;
  }

.gallery {
	display:grid;
	grid-template-columns: repeat(4,1fr);
	grid-gap:2em;
  margin-bottom:7.5em;
}

	.gallery a {
		background-color:#fff;
		border-radius: 0.25em;
	}

	.gallery a img {
		width:100%;
		opacity:1;
		transition:opacity 0.5s ease-in-out;
		border-radius:0.25em;
	}

		.gallery a:hover img {
			opacity:0.7;
		}

.contact {
  padding:5%;
}

  .tests {
    display:grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap:3em;
  }

    .test {
      background-color:#fff;
      border:1px solid #eee;
      border-radius:0.25em;
      padding:15% 10%;
      text-align: center;
    }

      .test h4 {
        font-family: 'Montserrat', sans-serif;
        font-weight:300;
        color:var(--peach);
        margin-bottom:0;
      }

      .test p {
        font-size:1.4em;
        line-height:1.8;
        font-style: italic;
      }

      .test img {
        border-radius:100em;
        margin:0 auto;
        float:none;
        margin-bottom:10%;
      }

  .contact .left{
    width:50%;
  }

  .contact .right {
    width:50%;
    padding:0 5%;
  }

.faq-group {
  margin-bottom:4em;
}

  .faq-group > h3 {
    margin-bottom:0.5em;
  }

.faq {
  margin-top:1em;
}

  .faq-title {
    position:relative;
    display:block;
    background-color:var(--peach);
    color:#fff;
    width:100%;
    padding:1em;
    font-size:2em;
    text-decoration: none;
    border-radius:0.25em;
  }

  .faq-title::after {
    content:'+';
    position:absolute;
    right:1em;
    top:1em;
  }

  .faq-content {
    display:none;
    padding-block:2em;
  }

.price-group {
  margin-bottom:4em;
}

  .price-service {
    display:grid;
    grid-template-columns: 4fr 1fr;
    grid-gap:3em;
    padding-bottom:2em;
    border-bottom:2px dotted var(--peach);
    margin-bottom:2em;
  }

    .price-service:last-of-type {
      border-bottom: none;
    }

    .price-service h3 {
      color:var(--peach);
    }

@media screen and (max-width:959px) {
  .hero {
    min-height:0;
  }

  .hero h1 {
    font-size:5em;
  }
}

@media screen and (max-width:599px) {
  .gallery {
    grid-template-columns: repeat(3,1fr);
  }

  article,
  aside,
  .contact .left,
  .contact .right {
    width:100%;
    padding:0;
  }

  article {
    margin-bottom:7.5%;
  }

  .menu a {
    float:left;
    clear:left;
    width:100%;
    text-align: center;
  }

  .lilash td {
    display:block;
    width:100%;
  }

  .main blockquote {
    font-size:1.2em;
  }
}

@media screen and (max-width:399px) {
  .gallery {
    grid-template-columns: repeat(2,1fr);
  }
}