html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Quicksand', sans-serif;
  font-size: calc(4px + (1vw * 0.25));
  color: #0515a6;
}

h1, h2, h3 {
  font-family: 'DM Serif Display', serif;
  font-weight: normal;
}

h1 {
  font-size: 4em;
}

h2 {
  font-size: 3em;
}

h3 {
  font-size: 2em;
  margin-block: 0;
}

h4 {
  font-size: 1.2em;
  font-weight: normal;
  margin-block: 0.6em;
}

p {
  font-size: calc(11.2px + (1vw * 0.25));
}

.subtext {
  font-size: initial;
  font-weight: normal;
}

@media screen and (max-width: 800px) {
  .subtext {
    width: 100%;
    text-align: center;
  }
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-heading {
  opacity:0;
}

.service-icon {
  opacity:0;
  transform: scale(0.9);
}

#varicose-services .service-icon {
  opacity: 0.7;
}

.bio-pic {
  opacity:0;
}

.in-view .service-heading {
  opacity: 1;
  transition: opacity .7s ease-in;
}

.in-view .service-icon {
  opacity: 1;
  transform: scale(1);
  transition: all .7s ease-in;
}

.in-view .bio-pic {
  opacity: 0.9;
  transition: opacity 1.5s ease-in-out;
}

.service-description, .bio-text {
  opacity: 0;
  transform: translateY(40px);
}




.in-view .service-description, .in-view .bio-text {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1.2s ease-in, transform .7s ease-out;
}

.varicose-text {
  max-width: 620px;
}

.in-view .service-card:nth-child(1)>* {
  transition-delay: 0s;
}
.in-view .service-card:nth-child(2)>* {
  transition-delay: 0.2s;
}
.in-view .service-card:nth-child(3)>* {
  transition-delay: 0.4s;
}
.in-view .service-card:nth-child(4)>* {
  transition-delay: 0.6s;
}

button {
  background-color: #6b7bff;
  color: #fff;
  font-size: 3em;
  font-family: 'DM Serif Display', serif;
  padding: 26px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  opacity: 0.85;
}

button.read-more {
  background-color: white;
  border: 3px solid #0515a6;
  color: #0515a6;
  padding: 16px;
}

.link--animated button.read-more .link__text--animated:before,
.link--animated button.read-more .link__text--animated:after {
  background-color: #0515a6;
}

button#btn-info {
  background-color: #3e4057;
}

.link--animated button .link__text--animated {
  transition: transform 0.5s ease;
}

button:hover .link__text--animated {
}

a {
  text-decoration: none;
  color: #0515a6;
}

.link--animated .link__text--animated {
  text-align: center;
  margin: 0 auto;
  padding: 0;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.link--animated .link__text--animated:before, .link--animated .link__text--animated:after {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 0px;
  height: 5px;
  margin: 5px 0 0;
  transition: all 0.2s ease-in-out;
  transition-duration: 0.5s;
  opacity: 0;
  background-color: #f28080;
}

.link--animated button .link__text--animated:before, .link--animated button .link__text--animated:after {
  background-color: #fff;
}

.link--animated .link__text--animated:before {
  left: 50%;
}

.link--animated .link__text--animated:after {
  right: 50%;
}

.link--animated:hover .link__text--animated:before, .link--animated:hover .link__text--animated:after,
  .link--animated.active .link__text--animated:before, .link--animated.active .link__text--animated:after {
  width: 50%;
  opacity: 1;
}

div.link--animated {
  width: fit-content;
  margin: auto;
}

li.link--animated {
  transition: transform .5s ease;
  padding-bottom: 3px;
}

li.link--animated:hover, li.link--animated.active {
}

#hero {
  min-height: 600px;
}

#hero .parallax__layer--back {
  background: radial-gradient(ellipse at right bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.8) 100%),
    url('../images/pexels-akshaya-premjith-1173804-reverse.jpg') center center;
  background-size: cover;
  width:100%;
}

@media only screen and (max-width: 600px) {
  #hero .parallax__layer--back {
    background: linear-gradient(0, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.5) 40%, rgba(255, 255, 255, 0.9) 100%),
     url(../images/pexels-akshaya-premjith-1173804-reverse.jpg) center center;
     background-size: cover;
  }
}

.parallax {
  perspective: 1px;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  perspective-origin-x: 100%;
  -webkit-overflow-scrolling: touch;
}
.parallax__group {
  position: relative;
  height: 100vh;
  transform-style: preserve-3d;
}
.parallax__layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform-origin-x: 100%;
}
.parallax__layer--base {
  transform: translateZ(0);
}
.parallax__layer--back {
  transform: translateZ(-1px) scale(2);
}


#header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 50px;
}

#menu-opener, #menu-closer {
  z-index: 2;
}

.logo-desktop {
  width: 360px;
  max-width: 100%;
}

.logo-mobile {
  width: 320px;
  max-width: 70%;
}

.menu-desktop ul {
  list-style: none;
  padding: 0;
}

.menu-desktop li {
  display: inline-block;
  padding: 5px 20px;
  font-size: 1.75em;
  font-weight: bold;
}

.logo-mobile {
  display: none;
}

#menu-opener, #menu-closer {
  display: none;
  cursor: pointer;
}

#menu-opener img, #menu-closer img {
  width: 30px;
}

#hero-text {
  max-width: 620px;
  margin: 100px 0;
}

#hero-text button, button.read-more {
  margin: 0.67em 0;
}

#services, #varicose-what {
  background: #fff;
  height: unset;
}

#pricing {
  height: 650px;
  width: 100%;
  background: #fff;
  overflow: hidden;
}

@keyframes grow {
  from { transform: scale(1) }
  to { transform: scale(1.1) }
}

#pricing-box {
  background-color: #fff;
  padding: 50px;
  border: none;
  border-radius: 10px;
  margin-left: auto;
  margin-top: 100px;
  max-width: 250px;
}

@media only screen and (max-width: 650px) {
  #pricing-box {
    background-color: rgba(242, 243, 250, 0.7);
  }
}

#pricing-box button {
  padding: 26px 50px;
  margin-top: 50px;
}

#bio-carmen {
  background: url('../images/carmen-work.jpg') center top;
  background-size: cover;
  justify-self: center;
}

#bio-carmen-blues {
  background: url('../images/carmen-blues.jpg') center top;
  background-size: cover;
  justify-self: center;
}

#bio-carmen-home {
  background: url('../images/carmen-home.jpg') center top;
  background-size: cover;
  justify-self: center;
}

.in-view #bio-carmen-home.bio-pic {
  opacity: 1;
}

#service-varicose-vein {
  background: url('../images/varicose-vein.svg') center top;
  background-size: cover;
  justify-self: center;
  padding: 0;
}

#company-logo {
  background: url('../images/circle-logo.svg') center top;
  background-size: cover;
  justify-self: center;
}

.page-width {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
}

.padded-section {
  padding: 25px 0;
}

.vein-text {
  color: #0515a6;
}

.vein-background {
  background-color: #0515a6;
}

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

#service-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-gap: 50px;
  padding-bottom: 50px;
}

@media only screen and ( max-width:1250px ) {
  #service-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media only screen and ( max-width:550px ) {
  #service-grid {
    grid-template-columns: 1fr;
  }
}

.service-heading {
}

.service-icon {
  text-align:center;
}

.service-icon>img {
  height: 80px;
  width: 80px;
  padding: 10px 0;
}

.varicose-icon>img {
    height: 150px;
    width: 150px;
    background-color: white;
    border-radius: 50%;
}

#varicose-methods .varicose-icon, .varicose-text .varicose-icon {
  display: none;
}


.service-title {
  font-size: 1.6em;
  text-align: center;
  position: relative;
  padding: 20px 0;
}

#varicose-services .service-title {
  font-weight: bold;
  font-size: 1.6em;
  text-align: center;
}

@media screen and (min-width: 551px) {
  #varicose-services .service-title {
    position: absolute;
    padding: 20px 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.service-description {
  text-align: center;
  padding-top: 15px;
}

@media screen and (max-width: 550px) {
  .service-card{
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 20px;
  }

  .service-card:nth-child(2n) {
    grid-template-columns: auto 1fr;
  }

  .service-heading {
    grid-row: 1;
    grid-column: 1;
  }

  .service-title {
    text-align: left;
  }
  .service-icon {
    grid-row: 1;
    grid-column: 1;
  }
  .service-icon img {
    width: 80px!important;
    height: 80px!important;
    padding: 0;
  }
  .service-description {
    grid-row: 2;
    grid-column: 1/3;
    text-align: left;
  }

}


.pricing-video {
  opacity: 0.75;
  width: 100%;
  height: auto;
  right: 0;
  bottom: 0;
  position: absolute;
  z-index: -1;
}

.bio {
  display: grid;
  align-items: center;
  grid-gap: 20px;
  grid-auto-flow: column;
}

.first-service {
  display: grid;
  align-items: center;
  grid-column-gap: 20px;
  grid-template-columns: 1fr auto;
  margin-bottom: 40px;
}

.first-service-title {
  grid-row: 1;
  grid-column: 1/3;
}

.first-service-text {
  grid-row: 2;
  grid-column: 1;
  display: flex;
  flex-direction: column;
}

.first-service-text a {
  width: fit-content;
}

.first-service-pic {
  height: 250px;
  width: 250px;
  border-radius: 50%;
  grid-row: 2;
  grid-column: 2;
  align-self: flex-start;
}

@media screen and (max-width: 550px) {
  .first-service-title {
    grid-column: 1;
  }

  .first-service-text {
    grid-column: 1/3;
    align-items: center;
  }

  .first-service-pic {
    grid-row: 1;
    grid-column: 2;
    height: 150px;
    width: 150px;
  }
}

@media screen and (max-width: 359px) {
  .first-service-pic {
    height: 120px;
    width: 120px;
  }
}

.varicose-grid {
  display: grid;
  align-items: center;
  justify-items: center;
  grid-gap: 20px 100px;
  grid-auto-flow: column;
  padding-bottom: 30px;
}

.vertical-grid {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  height: 100%;
  gap: 20px;
}

.bio-text {
  flex: 3;
  padding:20px 0;
}

.bio-pic {
  height: 250px;
  width: 250px;
  border-radius: 50%;
  padding:20px;
}

.company-logo {
  height: 218px;
  width: 250px;
  padding:20px;
}

#contact, #varicose-services, #about-hero {
  background: linear-gradient(#f6f4ff, #fff);
}

#testimonial, #feedback {
  background: linear-gradient(#f6f4ff, #fbfaff);
  position: relative;
}

#feedback {
  background: linear-gradient(#f6f4ff, #fbfaff);
  height: unset;
}

#before-after {
  background: white;
  height: unset;
}

#about {
  background: #3E4057;
  color: white;
}

#about button.read-more, #results button.read-more {
  border: none;
}

#services {
  background: #f6f4ff;
}

#varicose-services, #contact {
  height: unset;
}

#contact-hero {
  min-height: 700px;
}

#varicose-hero {
  background: radial-gradient(ellipse at right bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 25%, rgba(255, 255, 255, 0.8) 50%)
  , url(../images/pexels-yungsaac-1557252.jpg) left center;
  background-size: 130%;
  width: 100%;
}

#results-hero {
  background: radial-gradient(ellipse at right bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 25%, rgba(255, 255, 255, 0.8) 50%)
  , url(../images/pexels-edward-eyer-12666108.jpg) left 30% center;
  background-size: cover;
  width: 100%;
}

#contact-hero  .parallax__layer--back {
  background: radial-gradient(ellipse at right bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 25%, rgba(255, 255, 255, 0.8) 50%)
  , url(../images/pexels-aviz-5126583.jpg) 60% center;
  background-size: cover;
  width: 100%;
}

#contact-form {
  max-width: 620px;
  margin: auto;
  padding: 20px 50px 70px;
}

#company {
  background: linear-gradient(to left, rgba(0,0,0,.6), rgba(0,0,0,.4))
  , url(../images/collingwood-centre.jpg) 40% center;
  background-size: cover;
  width: 100%;
  color: white;
}

.company-wrapper {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
}

.company-logo {
  grid-row: 1/3;
}

.company-text {
  grid-column: 2/3;
}

@media screen and (max-width: 800px) {
  .company-wrapper {
    grid-template-columns: auto;
  }

  .company-title {
    grid-row: 1;
    text-align: center;
  }

  .company-logo {
    grid-row: 2;
  }

  .company-text {
    grid-column: 1;
    text-align: justify;
  }

  .company-text .varicose-book {
    text-align: center;
  }
}

#varicose-veins {
  padding-bottom: 50px;
}

#varicose-methods {
  background: #3e4057;
  color: white;
  height: unset;
}

.varicose-book {
  padding-top: 0.7em;
  padding-bottom: 0.7em;
}

.contact-thanks {
  background: linear-gradient(to bottom right, #6b7bff, #7e8cff 7%, #a6b0ff 74%,#c7cdff 89%,#fff);
  color: white;
  padding: 30px;
  border-radius: 20px;
  font-size: 0.7em;
}

.contact-thanks h3 {
  margin-block: 1em;
}

input, textarea {
  border: none;
  border-radius: 5px;
  margin: 5px 0;
  width: 100%;
  max-width: 400px;
  padding: 12px 16px;
  font-size: 1em;
  font-family: inherit;
  box-sizing: border-box;
}

input[type="submit"] {
  color: white;
  background-color: transparent;
  padding: 0;
  margin: 0;
  width: auto;
}

#contact-grid {
  display: grid;
  grid-template-columns: 300px 1fr 200px;
  grid-template-rows: 1fr 1fr;
  grid-auto-flow: column;
  gap: 30px 60px;
  padding: 20px 0 60px;
}
#contact-phone, #contact-message, #accreditation-rcse {
  align-self: start;
}
#contact-address, #contact-links, #accreditation-sx {
  align-self: end;
}

.contact-link img {
  height: 30px;
}

.contact-link {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

#contact-links .contact-link {
  line-height: 20px;
}

.phone-icon {
  display: none;
}

.accreditation img {
  max-width: 200px;
  width: 100%;
}

.big-quote {
  font-size: 20em;
  display: block;
  position: absolute;
  z-index: 1;
  top: -60px;
  left: 8%;
}

.small-quote {
  display: none;
}

.quote-box {
  background: #fff;
  border-radius: 10px;
  padding: 30px 100px;
  display: block;
  flex: 1;
}

.quote-author {
  text-align: right;
  font-weight: bold;
}

@media only screen and (max-width: 800px) {
  .quote-box {
    padding: 30px;
  }
}

@media only screen and (max-width: 1100px) {
  .pricing-video {
    width: auto;
    height: 100%;
    right: 0;
    bottom: 0;
    position: absolute;
  }

  #contact-grid {
    grid-template-columns: 400px 1fr;
    grid-template-rows: unset;
  }
  #contact-links {
    grid-column: 1;
    grid-row: 4;
  }
  #contact-message {
    grid-column: 2;
    grid-row: 1/3;
  }
  #accreditation-rcse {
    grid-column: 2;
    grid-row: 3;
  }
  #accreditation-sx {
    grid-column: 2;
    grid-row: 4;
  }

  #contact-address {
      align-self: start;
      grid-row: 2/4;
      grid-column: 1;
  }
}

@media only screen and (max-width: 1020px) {
  .menu-desktop {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(0,0,0,.8);
    width: 100%;
    text-align: center;
    padding-top: 3em;
    line-height: 1em;
    font-size: 1.5em;
    z-index: -1;
    height: 0;
    opacity: 0;
    transition: all 0.3s ease;
  }
  .menu-desktop.menu-show {
    height: 100vh;
    opacity: 1;
    padding-top: 5em;
    line-height: 3em;
    z-index: 1;
  }
  .menu-desktop ul {
    display: flex;
    flex-direction: column;
  }
  #menu-opener {
    display: block;
  }
  .menu-desktop .link--animated {
    padding-left: 0;
    position: relative;
  }
  .menu-desktop .link--animated::after {
    content: "";
    position: absolute;
    top: 10%;
    width: 80%;
    max-width: 300px;
    height: 80%;
    background-color: white;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: -1;
    border-radius: 50px;
  }
}

@media only screen and (max-width: 500px) {
  .logo-desktop {
    display: none;
  }
  .logo-mobile {
    display: block;
  }
}

@media only screen and (max-width: 800px) {
  .bio, .varicose-grid {
    grid-auto-flow: row;
  }
  .bio-title {
    text-align: center;
  }
  .bio-text {
    text-align: justify;
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #pricing-box {
    padding: 30px;
    max-width: 200px;
  }

  #pricing-box button {
    margin-top: 30px;
  }
  #pricing:after {
    transform-origin: top;
  }
  .pricing-video {
    right: -150px;
  }
  #contact-grid {
    grid-template-columns: 260px 1fr;
    gap: 20px;
  }
  .varicose-icon {
    display: none;
  }
  #varicose-methods .varicose-icon {
    display: block;
  }
  .varicose-text .varicose-icon {
    display: block;
    padding: 20px 0;
  }
  .varicose-text h2 {
    margin-block: 0;
  }

  .varicose-icon>img {
      height: 150px;
      width: 150px;
  }
  .varicose-grid .vertical-grid {
    order: 2;
  }
}

@media only screen and (max-width: 650px) {
  #pricing {
    height: 150vw;
    width: 100vw;
  }

  #pricing:after {
    background-position: center;
    height: 500px;
  }

  #pricing-box {
    margin-right: auto;
    margin-top: 25%;
    opacity: 0;
  }

  .in-view #pricing-box {
    opacity: 1;
    transition: .7s opacity .2s ease-out;
  }

  .service-icon img {
    height:80px;
    width:80px;
  }
  .pricing-video {
    display: none;
    /*right: calc(35% - 400px);*/
  }
  #pricing:after {
    content: "";
    background: radial-gradient(ellipse at right bottom, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.4) 100%),
      url('../images/pexels-taryn-elliott-6405700.jpg') 45% top no-repeat;
    background-size: cover;
    height: 150vw;
    width: 100vw;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transform-origin: top;
    transform: scale(1.0);
  }
  #pricing.in-view:after {
    transform: scale(1.05);
    transition: transform 2s ease-out;
  }
  #contact-grid {
    grid-template-columns: 240px 1fr;
  }
}

@media only screen and (max-width: 500px) {
  #contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  #contact-links {
    grid-row: 2;
    grid-column: 1/3;
  }
  #contact-message {
    grid-column: 1/3;
    grid-row: 3;
    padding: 40px 0;
  }
  #accreditation-rcse {
    grid-column: 1;
    grid-row: 5;
  }
  #accreditation-sx {
    grid-column: 2;
    grid-row: 5;
  }

  #contact-phone {
    grid-row: 1;
    grid-column: 1/3
  }
  .phone-icon {
    display: block;
  }

  #contact-address {
    grid-row: 4;
    grid-column: 1/3;
  }

  #contact-form {
    padding: 0 0 50px 0;
  }
}

@media only screen and (max-width: 400px) {
  .bio-pic {
    height: 200px;
    width: 200px;
  }

  .company-logo {
    height: 174px;
    width: 200px;
  }


  #hero {
    text-align: center;
  }

  #pricing {
    text-align: center;
  }

  #pricing-box {
    padding: 20px;
    margin-top: 15%;
  }

  .page-width {
    padding: 0 20px;
  }
}

#results {
  margin: 80px auto;
}

@media screen and (max-width: 500px) {
  #results {
    margin: 40px auto;
  }
}

.results-wrapper {
  background-color: #3E4057;
  color: white;
  padding: 30px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  align-items: center;
}

.results-carousel {
  display: flex;
  justify-content: space-evenly;
  padding: 30px 0;
  overflow: hidden;
}

.results-carousel .slick-slide:not(.slick-current) {
  opacity: 0;
}

.results-carousel .slick-slide {
  transition: opacity 1s ease;
}

.results-card {
  display: flex;
  justify-content: center;
  position: relative;
  gap: 40px;
  grid-column: 1;
  grid-row: 1 / 3;
}

.results-text {
  grid-column: 2;
  grid-row: 1;
}

#before-after .results-text {
  grid-row: 1 / 3;
}

#before-after .slick-slide {
  padding: 0 10px;
}

.results-action {
  grid-column: 2;
  grid-row: 2;
}

.results-card img {
  width: auto;
  height: 20vw;
  border-radius: 5px;
}

.results-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

@media screen and (max-width: 900px) {
  .results-wrapper {
    grid-template-columns: auto;
    grid-template-rows: unset;
    align-items: center;
  }

  .results-card {
    grid-column: 1;
    grid-row: 2;
  }

  .results-text, #before-after .results-text {
    grid-column: 1;
    grid-row: 1;
  }

  .results-action {
    grid-column: 1;
    grid-row: 3;
  }


}

@media screen and (max-width: 600px) {
  .results-card img {
    max-height: unset;
    height: 40vw;
    width: auto;
  }
}


@media screen and (max-width: 500px) {
  .results-card {
    gap: 20px;
  }

  .results-arrow {
    width: 30px;
  }
}

.testimonial-carousel .slick-track {
  height: 100%;
  display: flex;
  gap: 50px;
  align-items: center;
}

.testimonial-carousel.slick-slider {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-carousel .slick-dots {
  position: relative;
  bottom: 0;
}

@media screen and (max-width: 800px) {
  .testimonial-carousel .slick-track {
    gap: 20px;
  }

  .big-quote {
    font-size: 15em;
    top: -20px;
    left: 3%;
  }

}

@media screen and (max-width: 500px) {
  .big-quote {
    font-size: 12em;
    top: -20px;
    left: 3%;
  }


  .testimonial-carousel h2 {
    font-size: 1.5em;
  }

  .quote-box {
    padding: 20px;
  }

  .testimonial-carousel .slick-track {
    gap: 10px;
  }

}

.testimonial-carousel .slick-slide {
  min-height: 300px;
  flex-direction: column;
  justify-content: space-around;

}

.testimonial-carousel .slick-slide div {
  opacity: 1;
  transition: opacity 1s ease;
}

.testimonial-carousel .slick-slide:not(.slick-current) div {
  opacity: 0;
}


.carousel .slick-list {
  width: 80%;
  margin: auto;
  overflow: visible;
}

@media screen and (max-width: 500px) {
  .carousel.results-carousel .slick-list {
    width: 95%;
  }
  .results-wrapper {
    padding: 25px 15px;
  }
  #before-after .slick-slide {
    padding: 0 5px;
  }
}

.testimonial-grid {
  display: grid;
  grid-template-areas:
      "a a a b b b"
      "c c d d e e";
  gap: 20px;
  align-items: center;
}

.testimonial-grid .quote-box {
  padding: 50px 10%;
}

@media screen and (max-width: 500px) {
  .testimonial-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .testimonial-grid .quote-box {
    padding: 15px;
  }

}

#about-quote {
  background: white;
  padding: 80px 0;
}

.about-quote-wrapper {
  display: flex;
  gap: 20px;
  align-items: center;
}

#btn-about-feedback {
  white-space: nowrap;
}

@media screen and (max-width: 500px) {
  .about-quote-wrapper {
    flex-direction: column;
  }
  #btn-about-feedback {
    white-space: normal;
  }

}
