#salonervsbooksy {
 line-height: normal;
    /* background-color: red; */
    ul {
        list-style: unset;
        padding-left: 1rem;
        line-height: normal;
    }

    li {
        margin-left: 1rem;
    }


    h2,
    h3,
    h4,
    h5,
    h6 {
        color: #000000;
        font-weight: 700;
    }
    p img {
        margin:auto;
    }
}

.page-grid {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 10rem;
}

.section-header {
    margin-bottom: 2rem;
    font-weight: bold;
    text-align: center;
}

.section-header::after {
    content: "";
    display: block;
    margin: auto;
    position: relative;
    margin-top: 1.5rem;
    width: 6rem;
    height: 1.125rem;
    border-radius: 3rem;
    background: linear-gradient(86.68deg, #fefcfc 8.59%, #fbc2d7 47.43%, #feb59b 64.42%, rgba(250, 147, 50, 0.55) 86.26%);
}

.hero-section {
    background: linear-gradient(86.68deg, rgba(254, 252, 252, 0.5) 8.59%, rgba(251, 194, 215, 0.5) 47.43%, rgba(254, 181, 155, 0.5) 64.42%, rgba(250, 147, 50, 0.275) 86.26%), #f08572;
    margin-top: -8.6rem;
    padding-top: 10.6rem;
    padding-bottom: 0;
}

.page_title {
    color: #ffffff;
    padding-bottom: 5rem;
    text-align: center;
    font-weight: bold;
    font-size: 5rem;
}

.hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 63px;
    margin-top: 5rem;
}

.bottom-cta {
    display: flex;
    justify-content: center;
    margin-block: 4rem;
    margin-left: auto;
    margin-right: auto;
}

.bottom-cta .cta-bottom {
    font-size: var(--fs-22);
    padding: 1.4rem 8rem;
    text-align: center;
}

.calculator {    
    padding: 3rem 2rem;
    border-radius: 4rem;
    border: 2px solid #f08472;
    max-width: 600px;
    margin-inline: auto;
}
.calculator.mobile-version{
    display: block;
}
@media(min-width:960px) {
    .calculator.mobile-version {
        display: none;
    }
}

.calculator.desktop-version {
    display: none;
    max-width: 1200px;
    /* margin-bottom: 10rem;     */
}
@media(min-width:960px) {
    .calculator.desktop-version {
        display: block
    }
}
.calculator.desktop-version .calculator-subtitle {
  text-align: left;
    align-items: left;
    width: 50%;
    border-right: 1px solid;
    padding-right: 3rem;
}

.subtitle-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    margin-bottom: 2rem;
}
.calculator-subtitle {      
    font-weight: bold;
    font-size: 1.8rem;
    width: 100%;
    text-align: center;
    align-items: center;
}

.brand {
    position: relative;
    color: #000;
    font-size: 1.5rem;
    font-weight: bold;
}



/* switches */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #f38961;
}

input:focus + .slider {
  box-shadow: 0 0 1px #f38961;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}


.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.switch-taxes {
    display: flex;
    justify-content: space-around;
    margin-bottom: 3rem;
}
.switch-taxes-slider {
    display: flex;
    flex-direction: column;
}
.switch-taxes-slider:first-of-type {
    text-align: left;
}
.switch-taxes-slider:last-of-type {
    text-align: right;
}

input {
    border-radius: 18px;
    padding: .5rem 1rem;
}
hr {
width: 100%;
/* padding-bottom: 3rem; */
}
@media(min-width:1024px) {

    .calculator-subtitle , .brand {
        font-size: 2rem;
    }
    .calculator {
        padding: 3rem;
    }
}



@media(max-width: 768px) {
    .page-grid {
        row-gap: 5rem;
    }

    .page_title {
        font-size: 3rem;
    }
}