html {
    scroll-behavior: smooth;
}
*{
    box-sizing: border-box;
}
body {
    font-family: 'Nunito Sans', sans-serif;;
    font-size: 18px;
    line-height: 140%;
    font-weight: 400;
    padding: 0;
    margin: 0;
    color: #3f3f3f;
    letter-spacing: 0.02em;
}
h1, h2, h3, h4, h5, h6 {
    line-height: 140%;
    font-family: 'Nunito Sans', sans-serif;;
    font-weight: 800;
    font-weight: 700;
    margin: 0;
    padding: 0;
}
h2.title {
    font-size: 40px;
    line-height: 110%;
    font-weight: 700;
    margin-bottom: 20px;
}
p {
    margin: 0;
    padding: 0;
}
button {
    padding: 0;
    border: none;
}
.container {
    max-width: 1201px;
    padding: 0 15px;
    width: auto;
    margin: 0 auto;
}
.btn {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    display: block;
    text-shadow: 0-1px 0 rgba(255,255,255,.2);
    border-radius: 5px;
    font-family: 'Nunito Sans', sans-serif;;
    background: #5f3964;
    max-width: 680px;
    width: 100%;
    padding: 15px;
    cursor: pointer;
    text-align: center;
    transition: all 0.5s ease;
}
.btn:hover {
    background: #f9d36a;
    transition: all 0.5s ease;
}
input, input:focus, textarea, textarea:focus {
    outline: none;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
a, a:hover, a:active {
    text-decoration: none;
    color: inherit;
}
.title {
    font-weight: 700;
    line-height: 110%;
}
/*Preloader Start*/
.preloaderBg {
    position: fixed;
    z-index: 1000; 
    top: 0;
    background: rgba(255, 255, 255, 0.97);
    width: 100%;
    height: 100%;
    text-align: center;
}
.preloader {
    position: relative;
    top: 230px;
    margin: auto;
    background: url('../img/logo.png') no-repeat center;
    background-size: 100px;
    width: 140px;
    height: 140px;
}
.preloader2 {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #5f3964;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    animation: spin 1s ease-in-out infinite ;
    position: relative;
    margin: auto;
    top: 80px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* Preloader End */

/*header*/
.header {
    position: fixed;
    overflow: hidden;
    width: 100%;
    transition: all 0.5s ease;
    color: #212529;
    box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2);
    background: #ffffff; 
}
.header.scrolled {
    top: 0;
    z-index: 1002;
    transition: all 0.5s ease;
}
.header.scrolledDown {
    top: 7px;
}
.header.scrolled .header-logo {
    height: 45px;
    width: 185px;
    margin-top: -12px;
}
.header.scrolled .header-logo__img {
    padding: 0px 25px 5px 15px;
}
.header.scrolled .header-book {
    padding: 8px 35px;
    font-size: 20px;
    border-radius: 0;
}
.header.scrolled .header-book::before {
    width: 25px;
    height: 25px;
}
.header.scrolled  .header-menu__item:not(:last-child) {
    font-size: 12px;
}
.header__wrapper {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-logo {
    width: 240px;
    height: 85px;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    padding-top: 0.5%;
    transition: all 0.5s ease;
}
.header-logo:hover {
    transition: all 0.5s ease;
    opacity: 0.8;
}
.header-logo__img {
    padding: 4px 12px 4px 12px;
    width: 170px;
    object-fit: cover;
}
.header-menu__items {
    margin-left: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-menu__item:not(:last-child) {
    margin-right: 35px;
}
.header-menu__item {
    font-family: 'Nunito Sans', sans-serif;;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.2s ease-in-out;
    position: relative;
    cursor: pointer;
}
.header-menu__item.active::after {
    width: 100%;
}
.header-menu__item::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    content: '';
    width: 0;
    height: 2px;
    margin-top: 5px;
    background-color: #f9d36a;
    transition: width 0.5s ease-in-out;
}
.header-menu__item:hover {
    transition: all 0.2s ease-in-out;
}
.header-menu__item:hover::after {
    width: 100%;
    transition: all 0.2s ease-in-out;
}
.header-menu__link_more {
    display: flex;
    align-items: center;
}
.header-menu__link_more::after {
    content: '';
    display: block;
    background: url(../img/arrow-down.png) no-repeat;
    width: 14px;
    height: 8px;
    background-size: cover;
    margin-left: 7px;
}
.header-submenu {
    padding: 15px 9px;
    width: 105px;
    margin-left: -15px;
    display: none;
    transition: all 0.5s ease;
}
.header-menu__item_more:hover .header-submenu {
    position: fixed;
    background: rgba(45, 45, 45, 0.85);
    border-radius: 10px;
    z-index: 1000000;
    width: 250px;
    color: #ffffff;
    display: block;
    transition: all 0.5s ease;
}
.header-submenu__item {
    transition: all 0.5s ease;
}
.header-submenu__item:hover {
    transition: all 0.5s ease;
    color: #f9d36a;
}
.header-submenu__item:not(:last-child) {
    margin-bottom: 10px;
}
.header-submenu__item.active {
    color: #f9d36a;
}
.header-info {
    display: flex;
}
.header-info__phone {
    font-family: 'Nunito Sans', sans-serif;;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    padding: 22px;
    border-radius: 20px;
    transition: opacity 0.5s ease;
}
.header-info__phone::before {
    content: '';
    display: block;
    background: url('../img/telephone-call.png');
    width: 22px;
    height: 22px;
    background-size: cover;
    margin-right: 17px;
}
.header-info__phone:hover {
    transition: opacity 0.5s ease;
    opacity: 0.8;
}
.header-info__phone_burger {
    display: none;
}
.header-book {
    display: flex;
    align-items: center;
    font-family: 'Nunito Sans', sans-serif;;
	font-size: 22px;
    letter-spacing: 3px;
	font-weight: 900;
    height: 100%;
    padding: 10px 12px;
    border-radius: 5px;
    color: #fff;
    background: #5f3964;
    transition: all ease 0.5s;
}
.header-book::before {
    content: '';
    display: block;
    margin-right: 12px;
    width: 30px;
    height: 30px;
    background: url('../img/telephone-call.png') no-repeat;
    background-size: cover;
}
.header-book:hover {
    color: #fff;
    background: #f9d36a;
    transition: all ease 0.5s;
}
.menu-burger {
    display: none;
}
/*top section*/
.top-section {
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.30), rgba(249, 211, 106, 0.1)), url('../img//junk-removal-palm-beach-gardens-fl-2.png') no-repeat;
    background: linear-gradient(360deg, rgba(32.9, 22.4, 39.2, 0.4), rgba(32.9, 22.4, 39.2, 0)), url('../img//junk-removal-palm-beach-gardens-fl-2.png') no-repeat;
    /*background: linear-gradient(360deg, rgba(84, 57, 100 , 0.5), rgba(84, 57, 100, 0)), url('../img//junk-removal-palm-beach-gardens-fl-2.png') no-repeat;
    */background-size: 43%;
    background-position: right 30%;
}
.top-section_about {
    background-size: 35%;
    background-position: right 90%;
}
.container_top-section {
    padding: 170px 0 75px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-section__content {
    display: flex;
}
.top-section__content-wrapper {
    max-width: 680px;
    width: auto;
}
.top-section__title {
    color: #3f3f3f;
    font-weight: 700;
    text-align: left;
    font-size: 62px;
    line-height: 109%;
    margin-bottom: 35px;
    width: 100%;
}
.top-section__title span {
    display: block;
}
.top-section__text {
    color: #3f3f3f;
}
.top-form {
    color: #3f3f3f;
    position: relative;
    margin-left: 15px;
    width: 100%;
    max-width: 580px;
}
.top-form__fields {
    display: flex;
    flex-wrap: wrap;
    color: #3f3f3f;
    justify-content: space-between;
}
.top-form__title {
    color: #5f3964;
    font-size: 30px;
    line-height: 110%;
    font-weight: 700;
    margin: 30px 0 15px;
}
.top-form__fields>div {
    width: 48%;
    position: relative;
}
.top-form__input {
    width: 100%;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 5px;
    border: none;
    border: 2px solid #ffffff;
    text-shadow: none;
    color: #212529;
    font-family: "Open Sans",sans-serif;
    font-weight: 300;
    padding: 10px 12px;
    margin-bottom: 15px;
    font-size: 16px;
}
.top-form__textarea {
    border: 2px solid #ffffff;
}
.top-form__input::placeholder, .top-form__textarea::placeholder {
    color: #212529;
    opacity: 1;
}
.top-form__success {
    position: absolute;
    border-radius: 4px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10.02, 73.73, 61.18, 0.30);
    display: none;
}
.top-form__success-content {
    position: absolute;
    max-width: 420px;
    width: 100%;
    padding: 30px;
    background: rgba(0, 0, 0, 0.70);
    color: #ffffff;
    text-align: center;
    margin-top: 10px;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: #000;
}
.top-form__success_contact .top-form__success-content {
    max-width: 450px;
    padding: 20px;
}
.top-form__success h4 {
    margin-bottom: 7px;
    font-size: 18px;
}
label.error {
    position: absolute;
    bottom: -29px;
    left: 9px;
    font-size: 15px;
    color: #cc3a26;
    text-align: left;
    margin-top: -30px;
    padding-bottom: 27px;
}
#services {
    outline: none;
    cursor: pointer;
}
#top-form__home > .remarck, #top-form__contact  > .remarck { 
    display:none; 
}
/* Benefits */
.container_benefits {
    display: flex;
    justify-content: space-between;
}
.benefits {
    padding: 25px 0;
}
.benefits_furniture {
    background: rgb(203 199 141 / 10%);
}
.container_benefits {
    background: linear-gradient(180deg, rgba(254, 254, 254, 0.55), rgba(254, 254, 254, 0.50)), url('../img/white-bathroom-design.jpg') no-repeat;
    background-size: cover;
    background-position: center center;
}
.benefits-item {
    padding: 15px;
    width: 32%;
    display: flex;
    flex-direction: column;
    align-content: center;
}
.benefits-item:not(:last-child) {
    padding-right: 15px;
    border-right: 2px solid #f9d36a;
}
.benefits-item__title {
    color: #3f3f3f;
    font-size: 22px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.benefits-item__icon {
    margin-left: 25%;
    height: 80px;
    width: 80px;
    object-fit: cover;
    margin-bottom: 9px;
}

/*Intro*/
/*.intro-text {
    text-align: center;
    max-width: 890px;
    margin: auto;
}
.intro-text:not(:last-child) {
    margin-bottom: 5px;
}
.intro-list {
    margin-bottom: 20px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}
.intro-item {
    width: 23%;
    padding-left: 10px;
    border-left: #f9d36a 3px solid;
}
.intro-item span {
    color: #f9d36a;
    font-weight: 500;
}*/
.intro-text {
    max-width: 810px;
}
.intro-text:not(:last-child) {
    margin-bottom: 5px;
}
.intro-item {
    margin-left: 18px;
    list-style: disc;
    margin-bottom: 5px;
}

/* About */
.about {
    padding: 55px 0;
    background: rgb(0 0 0 / 10%);
}
h2.about-title {
    text-align: center;
    margin-bottom: 40px;
}
.about-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}
.about-item_1 {
    margin-top: 12px;
}
.about-item:last-child {
    margin-bottom: 0px;
}
.about-item__left, .about-item__bg {
    width: 50%;
}
.about-item__bg_bottom img {
    margin-left: 11%;
}
.about-item__img {
    width: 80%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.about-item__title, .testimonials-title {
    font-size: 30px;
    margin-bottom: 12px;
}
.about-item__text:not(:last-child) {
    margin-bottom: 7px;
}
.intro-text_more {
    display: none;
}
.intro-text_last {
    position: relative;
    display: block;
}
.intro-text_last:after {
    position: absolute;
    top: 0px;
    background: linear-gradient(transparent, #e5e5e5);
    left: 0px;
    content: "";
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.intro-text_last.active:after {
    display: none;
}
.intro-text_more.active {
    display: block;
}
.about-wrapper__btn {
    color: #5f3964;
    background: transparent;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    margin-top: 10px;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.5s ease;
}
.about-wrapper__btn:hover {
    opacity: 0.8;
    transition: opacity 0.5s ease;
}
.about-wrapper__btn::after {
    content: "";
    display: block;
    background: url('../img/arrow-right.png') no-repeat;
    background-size: contain;
    transform: rotate(-90deg);
    width: 30px;
    height: 18px;
    margin-top: -20px;
    margin-left: 5px;
}
.about-wrapper__btn.unactive {
    display: none;
}
.about-wrapper__btn_less {
    display: none;
}
.about-wrapper__btn_less.active {
    display: flex;
}
.about-wrapper__btn_less::after {
    transform: rotate(90deg);
    margin-top: 15px;
}
/* Service */
.services {
    padding: 55px 0;
}
.services-title {
    text-align: center;
}
.services-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.services-item {
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1);
    padding: 30px 25px 25px;
    width: 32%;
    transition: all 0.5s ease;
    cursor: default;
}
.services-item:nth-last-child(n+4) {
    margin-bottom: 25px;
}
.services-item__img {
    width: 329px;
    height: 200px;
    display: block;
    object-fit: cover;
    margin-bottom: 18px;
}
.services-item__title {
    font-size: 22px;
    color: #5f3964;
    margin-bottom: 10px;
    font-weight: 800;
    line-height: 120%;
}
.services-item__text a,
.steps-item__text a,
.furniture-wrapper__text a, .test a, .serving-content__text a,
.whoWe-text a, .contact-content__text a {
    text-decoration: underline;
    cursor: pointer;
    z-index: 1;
    position: relative;
    color: #f9d36a;
}
.test {
    color: #cc3a26;
}
@keyframes fadeInLeft {
    from {
      margin-left: -300px;
      width: 290px;
      opacity: 0;
    }
    to {
      margin-left: 0%;
      width: 290px;
      opacity: 1;
    }
}
@keyframes fadeInRight {
    from {
      right: -300px;
      width: 78px;
      opacity: 0 !important;
    }
    to {
      right: 74px;
      width: 78px;
      opacity: 1 !important;
    }
}
.fadeInLeft {
    animation: fadeInLeft 0.5s;
}
.fadeInRight {
    animation: fadeInRight 0.5s;
}
.services-btn {
    margin: auto;
    margin-top: 25px;
    max-width: 270px;
}
.services-btn:hover {
    color: #ffffff;
}

/*schedul*/
.schedul {
    padding: 40px 0;
    background: rgba(10.02, 73.73, 61.18, 0.5);
}
.schedul-title {
    color: #ffffff;
    text-align: center;
    font-size: 30px;
}
.schedul-title::after {
    content: '';
    margin: auto;
    display: block;
    background: url('../img/graphic.png') no-repeat;
    background-size: cover;
    width: 605px;
    height: 128px;
}
.schedul-wrapper {
    margin: 10px auto 0;
    display: flex;
    max-width: 1000px;
    justify-content: space-between;
}
.schedul-item {
    padding: 35px 25px;
    background: #ffffff;
    width: 45%;
    text-align: center;
}
/* CTA */
.CTA {
    color: #fff;
    padding: 75px 0;
    background: linear-gradient(360deg, rgba(32.9, 22.4, 39.2, 0.9), rgba(0, 0, 0, 0.5));
    background-size: cover;
    position: relative;
}
.CTA-decor {
    position: relative;
    display: contents;
}
.CTA::before, .CTA::after, .CTA-decor::after, .CTA-decor::before {
    position: absolute;
    content: "";
    right: 35%;
    bottom: 0;
    background: #e5e5e5;
    background: #f9d36a;
    border-radius: 45px 45px 0 0;
    width: 80px;
    height: 50%;
}
.CTA::after {
    right: 27%;
    background: #fffbd4;
    height: 70%;
}
.CTA-decor::after {
    right: 19%;
    background: #e5e5e5;
    height: 90%;
}
.CTA-decor::before {
    right:11%;
    background: #5f3964;
    height: 110%;
}
h3.CTA-title {
    font-size: 55px;
    margin-bottom: 25px;
}
h3.CTA-title::after {
    content: '';
    display: block;
    background: #a454ae;
    width: 150px;
    height: 3px;
    margin-top: 20px;
}
.CTA-text {
    max-width: 550px;
    margin-bottom: 20px;
}
.CTA-btn {
    max-width: 375px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    padding: 15px 25px 25px;
    box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1);
}
.CTA-btn span {
    font-family: 'Nunito Sans', sans-serif;;
    letter-spacing: 3px;
    display: block;
    margin-top: 9px;
    font-size: 35px;
}
.CTA-btn:hover {
    color: #ffffff;
}
.CTA-btn_services {
    margin-top: 37px;
    max-width: 465px;
}
.container_CTA {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.CTA-content {
    width: 100%;
}
.CTA-bg {
    text-align: center;
    width: 35%;
}
.CTA-bg img {
    width: 100%;
    margin-right: -20px;
}
.padding {
    padding: 50px;
}
/* Testimonials */
.testimonials {
    padding: 55px 0;
}
.testimonials-title {
    text-align: center;
}
.testimonials-item {
    padding: 20px 15px;
    max-width: 800px;
    width: 100%;
    background: rgb(0 0 0 / 10%);
    border-left: 2px solid #5f3964;
    margin-right: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.testimonials-item__author, .testimonials-item__author-stars {
    display: flex;
}
.testimonials-item__author {
    margin-top: 15px;
    align-items: center;   
}
.star {
    background: url('../img/star.png') no-repeat;
    width: 22px;
    height: 22px;
    background-size: contain;
    display: inline-block;
}
.star:not(:last-child) {
    margin-right: 8px;
}
.testimonials-item__author-name {
    color: #5f3964;
    font-weight: 700;
    font-size: 20px;
    margin-left: 15px;
}
.testimonials-slider {
    position: relative;
    padding: 0 50px 0 50px;
    min-width: 0;
    width: 100%;
}
.testimonials-item.slick-slide {
    left: 0;
}
.slick-track {
    display: flex;
}
.slick-track .slick-slide {
    display: flex;
    height: auto;
}
.slick-list {
    padding: 0 0 0 15px;
    position: relative;
    overflow: hidden;
}
.testimonials-slider .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
}
.testimonials-slider .slick-dots li:not(:last-child) {
    margin-right: 20px;
}
.testimonials-slider .slick-dots button {
    font-size: 0;
    background-color: #212529;
    border-radius: 50%;
    width: 7px;
    height: 7px;
    cursor: pointer;
}
.testimonials-slider .slick-dots .slick-active button {
    background-color: #f9d36a;
}
.testimonials-slider .slick-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 1000000;
    font-size: 0;
    width: 20px;
    height: 40px;
    cursor: pointer;
    z-index: 1000;
}
.testimonials-slider .slick-arrow.slick-prev {
    left: 2px;
    background: url('../img/arrow-right.png') 0 0 / 100% no-repeat;
    transition: all 0.5s ease;
}
.testimonials-slider .slick-arrow.slick-prev:hover, .testimonials-slider .slick-arrow.slick-next:hover {
    opacity: 0.8;
    transition: opacity 0.5s ease;
}
.testimonials-slider .slick-arrow.slick-next {
    right: 5px;
    background: url('../img/arrow-right.png') 0 0 / 100% no-repeat;
    transform: rotate(180deg);
    transition: opacity 0.5s ease;
}
.testimonials-slider .slick-arrow.slick-next:hover {
    opacity: 0.8;
    transition: opacity 0.5s ease;
}
/* FAQ */
.FAQ {
    padding: 50px 0;
}
.FAQ__title {
    text-align: center;
    font-size: 34px;
    margin-bottom: 20px;
    color: #5f3964;
}
.FAQ-wrapper {
    max-width: 748px;
    margin: 0 auto;
}
.FAQ-item {
    border: 2px solid #5f3964;
    box-sizing: border-box;
    border-radius: 2px;
}
.FAQ-item:not(:last-child) {
    margin-bottom: 20px;
}
.FAQ-item__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 26px 18px 25px;
    cursor: pointer;
}
.FAQ-item__title {
    color: #3f3f3f;
    font-size: 20px;
    max-width: 625px;
    letter-spacing: 0;
}
.FAQ-item__plus {
    cursor: pointer;
    transition: all 0.5s ease;
}
.FAQ-item__plus.active {
    transition: all 0.5s ease;
    transform: rotate(45deg);
}
.FAQ-item__plus span {
    display: block;
    width: 20px;
    height: 2px;
    background: #5f3964;
}
.FAQ-item__plus span:first-child {
    transform: rotate(90deg);
}
.FAQ-item__plus span:last-child {
    margin-top: -2px;
}
.FAQ-item__bottom {
    padding: 25px 65px 22px 25px;
    background: rgba(95, 57, 100, 0.3);
    border-radius: 0px 0px 2px 2px;
    color: #000;
    font-size: 17px;
    line-height: 140%;
    opacity: 1 !important;
    transition: all 0.5s ease;
    display: none;
}
.FAQ-item__bottom span {
    display: block;
}
/*.FAQ-item:nth-child(2n+2) .FAQ-item__bottom {
    background: rgba(42, 42, 42, 0.3);
}*/
.FAQ-item__bottom.active, .faq-item__bottom.active {
    transition: all 0.5s ease;
    display: block;
}
/* PSL */
.PSL {
    padding: 55px 0;
}
.PSL-title {
    text-align: center;
}
.PSL-text {
    margin: auto;
    margin-bottom: 5px;
}
.PSL-text_2 {
    margin-bottom: 15px;
    font-style: italic;
    text-align: center;
}
.PSL-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5em;
}
.PSL-item__content {
    width: 52%;
}
.PSL-item__title {
    font-size: 22px;
    margin-bottom: 10px;
}
.PSL-item__text a {
    text-decoration: underline;
}
.PSL-item__bg img {
    object-fit: cover;
    height: 271px;
    opacity: 0.95;
    border: #f9d36a solid 5px;
    border-style: double;
}
.PSL_fort-pierce .PSL-item__bg img {
    width: 520px;
}
/* Partners */
.partners {
    background: rgb(203 199 141 / 10%);
    padding: 35px 0 50px;
}
.partners-title {
    text-align: center;
}
.partners-wrapper{
    display: flex;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    margin-top: 30px;
    max-width: 1000px;
}
.partners-link {
    width: 15%;
    margin-right: 55px;
}
.partners-link_3 {
    width: 27%;
}
.partners-link img {
    width: 100%;
}
/*Map*/
.map-content {
    width: 53%;
}
.map-title {
    font-size: 28px;
    line-height: 110%;
    margin-bottom: 20px;
}
.map-cities {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.map-cities_column {
    width: 33.3%;
}
.map-cities__item {
    margin-bottom: 3px;
}
.map-btn {
    margin: auto;
    margin-top: 45px;
    width: 90%;
}
.map-cities__item {
    list-style: disc;
}
/* Footer */
.footer {
    padding: 40px 0 30px;
    background: #3f3f3f;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
}
.footer-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
}
.footer-logo {
    transition: opacity ease 0.5s;
}
.footer-logo:hover {
    transition: opacity ease 0.5s;
    opacity: .8;
}
.footer-logo__img {
    width: 150px;
    object-fit: cover;
    /*padding: 15px 40px;
    border-right: 2px solid #f9d36a;
    border-left: 2px solid #f9d36a;*/
}
.footer-item__privacy {
    display: block;
}
.footer-item:first-child {
    padding-right: 15px;
    border-right: 2px solid #f9d36a;
}
.footer-item_terms a {
    padding: 15px;
    border-left: 2px solid #f9d36a;
    font-weight: 600;
    display: block;
    transition: all 0.5s ease;
}
.footer-item_terms a:hover {
    color: #ffffff;
    transition: all 0.5s ease;
}
.footer-item__address, .footer-item__phone, 
.footer-item__email, .footer-item__hours, .footer-item__name {
    display: flex;
    margin-bottom:7px;
}
.footer-item__address span {
    display: none;
}
.footer-item__name::before {
    content: '';
    display: block;
    background: url('../img/office.png') no-repeat;
    width: 16px;
    background-size: contain;
    margin-top: 1.3%;
    margin-right: 10px;
}
.footer-item__address::before {
    content: '';
    display: block;
    background: url('../img/address-1.png') no-repeat;
    width: 16px;
    background-size: contain;
    margin-top: 0.5%;
    margin-right: 10px;
}
.footer-item__phone::before {
    content: '';
    display: block;
    background: url('../img/telephone-call2.png') no-repeat;
    width: 18px;
    background-size: contain;
    margin-top: 1.5%;
    margin-right: 10px;
}
.footer-item__email::before {
    content: '';
    display: block;
    background: url('../img/message.png') no-repeat;
    width: 16px;
    background-size: contain;
    margin-top: 1.5%;
    margin-right: 10px;
}
.footer-item__hours::before {
    content: '';
    display: block;
    background: url('../img/clock.png') no-repeat;
    width: 16px;
    background-size: contain;
    margin-top: 1.5%;
    margin-right: 10px;
}
.footer-item__rights {
    padding-top: 15px;
    font-size: 14px;
    font-weight: 400;
    border-top: 1px solid #f9d36a55;
    text-align: center;
    display: block;
}
/* Page Services Start */
.bread-crumbs {
    font-size: 15px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}
.container_furniture {
    padding: 120px 20px 65px;
}
.bread-crumbs__first {
    opacity: 0.8;
}
.bread-crumbs__line {
    display: block;
    margin: 0 10px;
    width: 20px;
    height: 1px;
    background: #f9d36a;
}
.top-section_furniture .top-section__content {
    max-width: 900px;
}
.top-section_furniture {
    background: linear-gradient(360deg, rgba(10.02, 73.73, 61.18, 0.15), rgba(10.02, 73.73, 61.18, 0)), url('../img/junk-removal-palm-beach-gardens-fl.png') no-repeat;
    background-size: 33%;
    background-position: 85% center;
}
.top-section_furniture .top-section__btn {
    max-width: 330px;
    font-size: 19px;
    padding: 18px;
    border-radius: 10px;
    box-shadow: rgba(47, 47, 47, 0.05) 0px 2px 0px;
} 
.top-section_furniture .top-section__btn:hover {
    color: #ffffff;
}
.intro {
    background: rgba(0, 0, 0, 0.1);
    padding: 55px 0;
}
.intro_furniture {
    background: #ffffff;
}
.container_intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.intro-content {
    width: 60%;
}
/*blog*/
.container_blog {
    display: block;
}
.container_blog .intro-content {
    width: 63%;
}
.container_blog .intro-content p {
    margin-bottom: 1em;
}
.intro-content h3 {
    margin-bottom: 0.3em;
}
.container_blog .intro-content h2 {
    margin-bottom: 20px;
    margin-top: 25px;
}
.intro-blog__img {
    background: url('../img/couch-curbside-pickup-small.jpg') no-repeat; 
    display: block;
    width: 47%;
    height: 800px;
    margin-top: 3%;
    margin-left: 40px;
    border: #f9d36a solid 5px;
    border-style: double;
    background-size: cover;
}
.intro-blog__img_2 {
    background: url('../img/old-couch-furniture-removal-port-st-lucie-fort-pierce-small.jpg') no-repeat; 
    display: block;
    width: 47%;
    height: 800px;
    margin-left: 0;
    margin-right: 40px;
    background-size: cover;
}
.intro-blog__img_3 {
    background: url('../img/old-couch-removal-small.jpg') no-repeat; 
    display: block;
    width: 47%;
    height: 800px;
    margin-left: 40px;
    margin-right: 0px;
    background-size: cover;
}
.intro-blog__img_smallHeight {
    background: url('../img/') no-repeat; 
    display: block;
    height: 650px;
    margin-bottom: 20px;
    background-size: cover;
}
.intro-blog__img_smallHeight_2 {
    height: 450px;
}
.blog-wrapper {
    display: flex;
    justify-content: space-between;
}
.blog-wrapper_form {
    align-items: flex-start;
    position: relative;
}
.blog-title {
    font-size: 48px;
}
/*end blog*/
.intro-bg {
    width: 37%;
}
.intro-bg__img {
    width: 100%;
}
.intro-content__title {
    color: #3f3f3f;
}
.intro-content__text:not(:last-child) {
    margin-bottom: 1em;
}
.intro-content__text a {
    text-decoration: underline;
}
.container_intro:first-child {
    margin-bottom: 35px;
}
.review {
    background: rgb(203 199 141 / 10%);
    padding: 50px 0;
}
.review-item {
    margin-top: 7px;
    display: block;
    max-width: 800px;
}
.review-item__name {
    margin-top: 5px;
    text-decoration: underline;
}
.container_review {
    max-width: 900px;
}
.map {
    padding: 25px 0;
}
.container_map {
    display: flex;
    justify-content: space-between;
}
.map-city {
    max-width: 550px;
    margin-left: 15px;
    margin-top: 20px;
}
.map-city__content {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
}
.map-city__item {
    width: 48%;
    display: flex;
    align-items: center;
}
.map-city__item::before {
    content: '';
    display: block;
    margin-right: 8px;
    background: url('../img/address-1.png') no-repeat;
    background-size: contain;
    width: 12px;
    height: 17px;
    border-radius: 50%;
}
.map-city__item:not(:last-child) {
    margin-bottom: 8px;
}
.map-city__link {
    display: inline-block;
    transition: all 0.5s ease;
}
.map-city__link::after {
    content: '';
    width: 0px;
    height: 1px;
    display: block;
    background: #01091F;
    transition: 300ms;
}
.map-city__link:hover::after {
    width: 100%;
}
.container_map iframe {
    width: 46%;
}
.container_before-after {
    max-width: 900px;
}
.before-after {
    padding: 50px 0;
    background: rgb(203 199 141 / 10%);
}
.before-after__title {
    font-size: 32px;
    margin-bottom: 12px;
}
.before-after__imgs {
    display: flex;
    justify-content: space-between;
    max-width: 850px;
    width: 100%;
}
.before-after_img {
    object-fit: cover;
    width: 48%;
}
.before-after_PSL .before-after_img {
    height: 600px;
}
.before-after_PSL .before-after__text {
    margin-top: 30px;
}
/*
.before-after_img:first-child {
    margin-right: 15px;
}
.before-after_img:last-child {
    margin-left: 15px;
}*/
.before-after__text {
    max-width: 850px;
    margin-top: 15px;
    margin-bottom: 35px;
}
.before-after .review-item_name {
    text-decoration: underline;
    text-decoration-color: #f9d36a;
    font-size: 19px;
    margin-top: 8px;
}
.CTA_Fort {
    background: linear-gradient(180deg, rgba(10.02, 73.73, 61.18, 0.7), rgba(10.02, 73.73, 61.18, 0.7)), url('../img/junk-removal-fort-pierce.jpg') no-repeat;
    background-size: cover;
    padding: 35px 0 45px;
    background-position: center center;
    color: #ffffff;
    text-align: center;
}
.CTA_Fort .CTA-content {
    width: 65%;
    margin: auto;
}
.CTA_Fort h3.CTA-title {
    margin-bottom: 25px;
}
.CTA_Fort .CTA-btn {
    margin: auto;
}
.furniture {
    padding: 55px 0;
}
.furniture-wrapper {
    max-width: 1000px;
    margin: auto;
}
.furniture-wrapper__title, .serving-content__title,
.benefits-title {
    font-size: 34px;
    margin-bottom: 15px;
}
.furniture-wrapper__text {
    margin-bottom: 8px;
}
.furniture-wrapper__item {
    list-style: decimal;
    margin-left: 20px;
    margin-bottom: 8px;
}
.furniture-wrapper__item span {
    font-weight: 700;
}
.furniture-wrapper__item a {
    text-decoration: underline;
    color: #f9d36a;
}
.furniture-list__item {
    font-weight: 600;
    margin-bottom: 10px;
}
.furniture-list__item::before {
    content: "✓";
    font-size: 22px;
    color: #f9d36a;
    margin-top: 8px;
}
.furniture-wrapper__subtitle {
    margin-bottom: 8px;
    margin-top: 15px;
}
.new-line {
    display: block;
    width: 100%;
}
.note {
    display: flex;
    justify-content: space-between;
    padding: 25px 15px 25px 45px;
   /* background-color: #f9d36a;
    */max-width: 800px;
    border: #f9d36a 2px solid;
    border-radius: 10px;
    margin: auto;
    margin-top: 20px;
    position: relative;
}
.note::before, .note::after {
    content: "";
    display: block;
    background: url('../img/quote.jpg') no-repeat;  
    position: absolute;
    width: 70px;
    height: 70px;
    background-size: contain;
    top: -25px;
    left: -25px;
}
.note::after {
    top: auto;
    left: auto;
    bottom: -25px;
    right: -27px;
    transform: rotate(180deg);
}
.before-after .note::before, .before-after .note::after {
    background: url('../img/quote.jpg') no-repeat;  
    width: 70px;
    height: 70px;
    background-size: contain;
}
.services-foreword.note::before, .services-foreword.note::before .note::after {
    background: url('../img/quote1.jpg') no-repeat; 
}
.before-after .note {
    display: block;
}
.note-icon {
    width: 150px;
    object-fit: contain;
}
.note p {
    max-width: 550px;
}
.note span {
    display: block;
    font-weight: 700;
    font-size: 45px;
    font-style: italic;
    background: url('../img/note.png') no-repeat;
    background-size: cover;
    padding: 22px 20px 20px 45px;
    background-position: center center;
    width: 170px;
    font-family: 'Nunito Sans', sans-serif;;
}
.hauling {
    padding: 55px 0;
    background: rgb(203 199 141 / 10%);
}
.hauling-title {
    font-size: 28px;
    text-align: center;
    color: #3f3f3f;
}
.hauling-wrapper {
    display: flex;
    justify-content: space-between;
}
.hauling-item {
    transition: all 0.5s ease;
}
.hauling-item:hover {
    transition: all 0.5s ease;
    transform: scale(1.1);
}
.hauling-item__img {
    border: #cbc78d 2px solid;
    width: 250px;
    height: 180px;
    object-fit: cover;
}
.hauling-text {
    max-width: 550px;
    text-align: center;
    margin: auto;
    margin-bottom: 25px;
    margin-top: 10px;
}
.hauling-text_2 {
    margin-bottom: 0;
    margin-top: 20px;
}
.hauling-text span {
    color: #f9d36a;
}
.hauling-item__title {
    font-size: 18px;
    color: #f9d36a;
    text-align: center;
}
.serving {
    padding: 55px 0;
    background: linear-gradient(360deg, rgba(0, 0, 0, 1), rgba(32.9, 22.4, 39.2, 0.9), rgba(0, 0, 0, 0.5)), url(../img/old-shed-demolition-removal.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
    color: #fff;
}
.serving-content {
    text-align: center;
    max-width: 750px;
    margin: auto;
}
.serving_shedPage .map-cities_column {
    width: 24%;
}
.serving_housecleanout {
    background: linear-gradient(360deg, rgba(0, 0, 0, 1), rgba(32.9, 22.4, 39.2, 0.5), rgba(0, 0, 0, 0.4)), url('../img/house-clean-outs.jpg') no-repeat;
}
.serving_housecleanout .map-cities {
    justify-content: center;
}
.serving_housecleanout .map-cities_column {
    width: 20%;
}
.serving-content__title {
    margin-bottom: 30px;
}
.serving-text_note {
    max-width: 650px;
    text-align: center;
    margin: 15px auto 0;
}
.prepare {
    background:  linear-gradient(180deg, rgba(203, 199, 141, 0.10), rgba(255, 255, 255, 0.10)), url('../img/prepare-bg.jpg') no-repeat;
    background: rgb(203 199 141 / 10%);
    background-size: cover;
    background-position: center center;
    padding: 55px 0;
}
.prepare-wrapper {
    display: flex;
    justify-content: space-between;
    margin: auto;
}
.prepare-wrapper img {
    max-width: 400px;
    object-fit: contain;
    margin-right: 25px;
}
.prepare-item:not(:last-child) {
    margin-bottom: 8px;
}
.prepare-item__text a {
    text-decoration: underline;
}
/* Page Services End */
/* Contact&About page start */
.top-section_about .top-section__content-wrapper {
    max-width: 800px;
}
.top-section_about .top-section__text:not(:last-child) {
    margin-bottom: 5px;
}
.top-section_about .top-section__btn {
    margin-top: 30px;
}
.top-section_about .container_top-section {
    padding: 120px 15px 60px;
}
.top-section_about .bread-crumbs, .top-section_contact .bread-crumbs {
    margin-bottom: 30px;
}
.whoWe {
    padding: 55px 0;
}
.whoWe-wrapper {
    max-width: 900px;
    margin: auto;
}
.whoWe-title {
    position: relative;
}
.whoWe-title::before {
    position: absolute;
    content: '';
    display: block;
    background: #f9d36a;
    height: 3px;
    width: 100px;
    bottom: -10px;
}
.whoWe-text {
    margin-bottom: 8px;
    line-height: 140%;
}
.whoWe-wrapper .top-section__btn {
    max-width: 330px;
    font-size: 19px;
    padding: 18px;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: rgb(47 47 47 / 5%) 0px 2px 0px;
}
.whoWe-wrapper .top-section__btn:hover {
    color: #ffffff;
}
.benefits_about {
    background: rgb(0 0 0 / 10%);
}
.container_benefits {
    background: none;
}
.benefits-title {
    text-align: center;
}
.benefits-text {
    text-align: center;
    max-width: 650px;
    margin: auto;
    margin-bottom: 15px;
}
.top-section_contact .container_top-section {
    padding: 30px 20px 60px;
}
.container_contact-content {
    max-width: 480px;
    margin-left: auto;
    width: 100%;
}
.contact-title {
    font-size: 42px;
    margin-bottom: 15px;
}
.container_contact-form {
    max-width: 650px;
    padding: 0 0 0 25px;
    margin-right: auto;
}
.contact-wrapper {
    display: flex;
    justify-content: space-between;
}
.contact-content {
    padding: 65px 35px 65px 15px;
    width: 45%;
    position: relative;
}
.top-form_contact {
    background: rgb(203 199 141 / 10%);
    padding: 65px 10px;
    width: 55%;
    max-width: none;
}
.top-form_contact .top-form__title {
    margin-top: 0;
    color: #f9d36a;
}
.top-form_contact .top-form__input {
    border: 1px solid #f9d36a;
}
.top-form_contact .btn {
    max-width: none;
    background: #ffffff;
    color: #f9d36a;
    border: 1px solid #f9d36a;
}
.top-form_contact .btn:hover {
    background: #f9d36a;
    color: #ffffff;
}
.map_contact {
    width: 100%;
}
.CTA_contact {
    padding: 50px 0;
}
.footer-item__hours_contact {
    margin-left: 30px;
    font-size: 16px;
    margin-top: -5px;
}
.footer-item__name::before, .footer-item__address::before, 
.footer-item__phone::before, .footer-item__email::before, 
.footer-item__hours::before {
    width: 20px;
    height: 20px;
}
/*.CTA-call {
    font-size: 22px;
    text-transform: uppercase;
    font-family: 'Nunito Sans', sans-serif;;
    font-weight: 700;
    color: #f9d36a;
    max-width: 500px;
    text-align: center;
    margin: 0 auto 20px;
}*/
.CTA-btn_phone {
    display: flex;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    padding: 20px;
    max-width: 600px;
    margin: auto;
    line-height: 110%;
}
.CTA-btn_phone br {
    display: none;
}
/*.CTA-btn_phone::before {
    content: '';
    display: block;
    background: url('../img/telephone-call.png') no-repeat;
    width: 30px;
    height: 30px;
    margin-right: 20px;
    background-size: cover;
}*/
.header_privacy {
    background: #3f3f3f;
    color: #ffffff;
}
.privacy {
    padding: 15px 0;
}
/* Shed and other Page start*/
.top-section_services {
    background-size: 38%;
    background-position: 98% 49%;
}
.top-section_services .top-section__content-wrapper {
    max-width: 726px;
}
.benefits_shed .benefits-item:not(:last-child) {
    border-right: 2px solid #5f3964;
}
.intro-content_shed {
    width: 55%;
}
.intro-bg_shed {
    width: 43%;
}
.serving_shed {
    background: #ffffff;
}
.serving_shed .serving-content__title {
    color: #212529;
}
/* House clean out Page start*/
.hauling-wrapper_1 {
    justify-content: center;
}
.hauling-wrapper_1 .hauling-item:not(:last-child) {
    margin-right: 35px;
}
/*Blog page start*/
.blog-item {
    padding-bottom: 17px;
    border-bottom: 0.5px solid rgba(217, 217, 217, 0.5);
}
.blog-item:not(:last-child) {
    margin-bottom: 30px;
}
.blog-item__button {
    max-width: 120px;
    padding: 3px 8px;
    margin-top: 30px;
    display: block;
    text-align: center;
    background: rgb(217, 217, 217);
    border-radius: 5px;
    transition: color 0.5s ease;
}
.blog-item__button:hover {
    color: #ffffff;
}
.blog-author {
    margin-bottom: 20px;
}
.blog-author__date span {
    text-decoration: underline;
}
.GBP-fort-pierce {
    margin-left: 25px;
}
.services-foreword {
    /*border: #000 1px solid;*/
    background: rgba(203, 199, 141, 0.1);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 10px;
    max-width: 520px;
    margin: auto;
    margin-bottom: 30px;
    margin-top: 35px;
    text-align: center;
}
.services-foreword__title {
    font-size: 36px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.services-foreword__icon {
    max-width: 65px;
    object-fit: cover;
    opacity: 0.6;
    margin-right: 20px;
}
/*Cleanout services*/
.intro-content__list {
    margin-left: 20px;
    list-style: disc;
}
.intro-content__list li {
    margin-bottom: 7px;
}
.container_intro_cleanoutServices {
    align-items: flex-start;
}
.intro-text_last_cleanoutServices.intro-text_last:after {
    background: linear-gradient(transparent, #fff);
}
/*Hot tub removal service page*/
.process {
    padding: 55px 0;
    background: linear-gradient(360deg, rgba(107, 107, 107, 1), rgba(107, 107, 107, 1), rgba(107 107 107 / 70%)), url(../img/hot-tub-removal-psl.jpg) no-repeat;
    background-size: cover;
    background-position: center 89%;
    color: #fff;
}
.process-title {
    text-align: center;
}
.process-text {
    max-width: 800px;
    margin: auto;
    text-align: center;
    margin-bottom: 9px;
}
.process-text_last {
    margin-top: 9px;
}
.process-wrapper {
    display: flex;
    justify-content: space-between;
}
.process-item {
    width: 32%;
    padding: 0 15px;
    border-right: #f9d36a 1px solid;
    display: flex;
}
.process-item:last-child {
    border: 0;
}
.process-item__number {
    font-size: 45px;
    margin-right: 10px;
    margin-top: 10px;
    font-family: 'Nunito Sans', sans-serif;;
}
.process-text strong {
    color: #f9d36a;
}
.process_mattress {
    padding: 55px 0;
    background: linear-gradient(360deg, rgba(107, 107, 107, 1), rgba(107, 107, 107, 1), rgba(107 107 107 / 70%)), url(../img/mattress-removal-port-st-lucie.jpg) no-repeat;
    background-size: cover;
    background-position: center 70%;
    color: #fff;
}
.process_construction {
    padding: 55px 0;
    background: linear-gradient(360deg, rgba(107, 107, 107, 1), rgba(107, 107, 107, 1), rgba(107 107 107 / 70%)), url(../img/construction-debris-removal-st-lucie-lg.jpg) no-repeat;
    background-size: cover;
    background-position: center 70%;
}
.process_dumpster {
    padding: 55px 0;
    background: linear-gradient(360deg, rgba(107, 107, 107, 1), rgba(107, 107, 107, 1), rgba(107 107 107 / 70%)), url(../img/dumpster-rental-port-st-lucie.jpg) no-repeat;
    background-size: cover;
    background-position: center 70%;
}

/*new*/
.about_step {
    /*background: linear-gradient(-90deg, rgba(0, 0, 0, 0.0), rgba(249, 211, 106, 0.5));*/
    background: linear-gradient(circle,#000000 0,#6a90f9 50%);
    background: radial-gradient(circle, rgba(106, 144, 249, 0.1), rgba(0, 0, 0, 0.10));
}
.about_step  .about-title {
    text-align: left;
}
.about_step .about-item {
    justify-content: space-between;
}
.about_step .about-item .about-item__left {
    margin-right: 25px;
}
.about-step {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}
.about-step__img {
   margin-right: 20px;
}
.about-step__img img {
    width: 130px;
    object-fit: cover;
}
.about-step__title {
    font-weight: 700;
}
.about-step__number {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #5f3964;
    display: block;
    text-transform: uppercase;
}
.about-btn_step {
    max-width: 250px;
    width: 100%;
    margin-top: 15px;
    display: block;
    font-size: 22px;
    border-radius: 5px;
}
/* Thank you */
.thankYou-wrapper {
    padding: 50px 20px;
    max-width: 800px;
    margin: auto;
    text-align: center;
    box-shadow: rgb(0 0 0 / 10%) 0px 1px 7px;
    margin-top: -55px;
    margin-bottom: 55px;
    background: #fff;
}
.thankYou-icon {
    width: 70px;
    margin-bottom: 10px;
}
.thankYou-title {
    font-size: 38px;
}
.thankYou-text {
    font-size: 21px;
    margin-bottom: 8px;
    margin-top: 3px;
}
.thankYou-ps {
    color: #a8a8a8;
    font-size: 16px;
}
.thankYou-btn {
    margin: 25px auto 0;
    max-width: 350px;
}
.thankYou-btn:hover {
    color: #fff;
}
/* Responsive */
@media (max-width: 1200px) {
    h2.title {
        font-size: 36px;
    }
    .container {
        max-width: 984px;
        padding: 0 18px;
        margin: 0 auto;
    }
    .header-logo {
        width: 160px;
    }
    .header-logo__img {
        width: 160px;
    }
    .header-menu__item {
        font-size: 14px;
        width: max-content;
    }
    .header-menu__item:not(:last-child) {
        margin-right: 23px;
    }
    .header-book {
        padding: 20px;
    }
    .container_top-section {
        padding: 140px 0 75px;
    }
    .top-section__content-wrapper {
        max-width: 560px;
    }
    .about-item {
        margin-bottom: 25px;
    }
    .services-item {
        padding: 20px 12px;
    }
    .services-item__img {
        width: 280px;
        height: 190px;
        margin-bottom: 12px;
    }
    h3.CTA-title {
        font-size: 45px;
    }
    .FAQ__title {
        font-size: 32px;
    }
    .PSL-item__bg img {
        height: 220px;
    }
    .PSL_fort-pierce .PSL-item__bg img  {
        width: 430px;
    }
    .PSL-item {
        margin-bottom: 5px;
    }
    .top-section_furniture {
        background-position: 85% 85%;
    }
    .container_furniture {
        padding: 110px 18px 60px;
    }
    .hauling-item {
        width: 24%;
    }
    .hauling-item__img {
        width: 100%;
    }
    .furniture-wrapper__title, .serving-content__title,
    .benefits-title {
        font-size: 30px;
    }
    .container_contact-content {
        max-width: 390px;
    }
    .container_contact-form {
        max-width: 520px;
    }
    .before-after_img {
        max-width: 380px;
    }
    .map-city {
        max-width: 440px;
    }
    .full-width-resp {
        width: 185%;
    }
    .full-width-resp_right {
        margin-left: -85%;
    }
}
@media (max-width: 991px) {
    .container {
        max-width: 728px;
        padding: 0 20px;
    }
    h2.title {
        font-size: 34px;
        margin-bottom: 25px;
    }
    .header nav {
        position: relative;
    }
    .menu-close {
        width: 27px;
        height: 27px;
        position: fixed;
        top: 35px;
        right: 26px;
        z-index: 1004;
        cursor: pointer;
    }
    .menu-close span {
        display: block;
        width: 35px;
        height: 3px;
        background: #ffffff;
        transform: rotate(45deg);
    }
    .menu-close span:last-child {
        transform: rotate(-45deg);
        margin-top: -3px;
    }
    .header-menu {
        display: none;
        transition: all 0.5s ease;
    }
    .header-menu.active {
        display: block;
        transition: all 0.5s ease;
    }
    .header-menu__items {
        position: fixed;
        top: 0;
        left: 0;
        flex-direction: column;
        justify-content: flex-start;
        padding: 35px 15px;
        flex-direction: column;
        background: #f9d36a;
        width: 100%;
        height: 69%;
        border-radius: 5px;
        box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
        z-index: 1003;
        padding-top: 12%;
        text-align: center;
    }
    .header-submenu {
        transform: translateX(-32%);
    }
    .menu-burger {
        display: block;
        cursor: pointer;
    }
    .menu-burger span {
        display: block;
        width: 35px;
        height: 3px;
        background: #212529;
    }
    .menu-burger span:not(:last-child) {
        margin-bottom: 6px;
    }
    .header-menu__item:not(:last-child) {
        margin-right: 0;
        margin-bottom: 30px;
    }
    .header-menu__item {
        font-size: 16px;
    }
    .header-info__phone {
        display: none;
    }
    .header-info__phone.header-info__phone_burger {
        display: block;   
        padding: 0;
    }
    .header-info__phone::before {
        display: none;
    }
    .top-section {
        background-size: 55%;
        background-position: center bottom;
    }
    .top-section__slider {
        margin: auto
    }
    .container_top-section {
        padding: 140px 0 312px;
    }
    .top-section__title {
        font-size: 51px;
        margin-bottom: 15px;
    }
    .top-form {
        margin: auto;
        max-width: 550px;
        margin-bottom: 20px;
    }
    .benefits {
        padding: 45px 0 40px;
    }
    .container_benefits {
        flex-wrap: wrap;
    }
    .benefits-item {
        width: 48%;
    }
    .benefits-item:last-child {
        width: 48%;
        margin: auto;
        margin-top: 15px;
    }
    .benefits_shed .benefits-item:nth-child(2), .benefits-item:nth-child(2) {
        border: none;
    }
    .about {
        padding: 40px 0;
    }
    .about-item__img {
        width: 70%;
    }
    .services-item {
        width: 48.5%;        
    }
    .services-item:nth-last-child(n+2) {
        margin-bottom: 25px;
    }
    .junk {
        flex-wrap: wrap;
        padding: 10px 25px 30px;
    }
    .junk-img {
        height: 350px;
    }
    .CTA-bg {
        width: 40%;
    }
    .CTA-content {
        width: 58%;
    }
    .CTA-btn span {
        font-size: 31px;
    }
    h3.CTA-title {
        font-size: 38px;
        margin-bottom: 30px;
    }
    .CTA::before, .CTA::after, .CTA-decor::after, .CTA-decor::before {
        width: 65px;
    }
    .CTA::after {
        right: 24%;
    }
    .CTA-decor::after {
        right: 13%;
    }
    .CTA-decor::before {
        right: 2%;
    }
    .testimonials-item__author {
        flex-wrap: wrap;
    }
    .testimonials-item__author-name {
        margin-left: 0;
        margin-top: 8px;
        width: 100%;
    }
    .FAQ {
        padding: 40px 0;
    }
    .FAQ__title {
        font-size: 30px;
    }
    .FAQ-item__top {
        padding: 15px 20px;
    }
    .FAQ-item__bottom {
        padding: 15px 65px 15px 20px;
        font-size: 15px;
    }
    .FAQ-item:not(:last-child) {
        margin-bottom: 17px;
    }
    .FAQ-item__title {
        font-size: 17px;
        max-width: 415px;
    }
    .PSL-item__bg img {
        height: 162px;
    }
    .PSL_fort-pierce .PSL-item__bg img  {
        width: 320px;
    }
    .PSL {
        padding: 40px 0;
    }
    .container_furniture {
        padding: 125px 18px 135px    ;
    }
    .top-section_furniture {
        background-size: 33%;
        background-position: 85% bottom;
    }
    .hauling-wrapper {
        flex-wrap: wrap;
    }
    .hauling-item {
        width: 48%;
    }
    .hauling-item:nth-child(n+3) {
        margin-top: 12px;
    }
    .whoWe {
        padding: 45px 0;
    }
    .map_contact {
        height: 320px;
    }
    #top-section_contact .top-section__slider {
        margin-left: 0;
    }
    #top-section_contact .top-section__title span {
        display: block;
    }
    .contact-wrapper {
        flex-wrap: wrap;
    }
    .contact-content {
        width: 100%;
        box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.05);
    }
    .contact-content {
        padding: 40px 80px;
        overflow: hidden;
    }
    .contact-title {
        font-size: 36px;
        margin-bottom: 10px;
    }
    .container_contact-content {
        max-width: 727px;
    }
    .top-form_contact {
        width: 100%;
        max-width: none;
        margin-bottom: 0;
    }
    .top-form__blog {
        width: 100%;
        margin-top: 20px;
    }
    .container_contact-form {
        max-width: 728px;
        margin: auto;
    }
    .CTA-call {
        font-size: 20px;
        max-width: 400px;
    }
    .CTA-btn_phone {
        font-size: 28px;
        max-width: 445px;
    }
    .hauling-wrapper_1 .hauling-item:not(:last-child) {
        margin-bottom: 10px;
    }
    .hauling-wrapper_1 .hauling-item {
        margin-right: 35px;
    }
    .note span {
        font-size: 38px;
        width: 150px;
        background-size: contain;
    }
    .note p {
        max-width: 440px;
    }
    .prepare-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }
    .prepare-wrapper img {
        margin-right: 0;
        margin-top: -50px;
        margin-bottom: 10px;
    }
    .container_map {
        flex-wrap: wrap;
    }
    .map-content {
        width: 100%;
        padding-bottom: 25px;
    }
    .container_map iframe {
        width: 100%;
        height: 400px;
    }
    .map-city {
        max-width: 100%;
        margin-left: 0;
    }
    .map-item:nth-child(1) {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .before-after_img {
        max-width: 350px;
    }
    .before-after .note::before, .note::after {
        width: 60px;
        height: 60px;
    }
    .note p {
        max-width: none;
    }
    .blog-wrapper {
        flex-wrap: wrap;
    }
    .container_blog .intro-content {
        width: 100%;
    }
    .intro-blog__img {
        width: 100%;
        height: 600px;
        margin-left: 0;
        margin-bottom: 5px;
        background-position: center;
    }
    .intro-blog__img_2 {
        margin-right: 0;
    }
    .intro-blog__img_smallHeight {
        height: 500px;
    }
    .intro-blog__img_smallHeight_2 {
        order: 1;
        margin-bottom: 20px;
    }
    .intro-infographic {
        margin: auto;
    }
    .full-width-resp {
        width: 100%;
    }
    .full-width-resp_right {
        margin-left: 0;
    }
    .container_blog .intro-content h2 {
        margin-bottom: 12px;
        margin-top: 17px;
    }
    .partners-wrapper {
        flex-wrap: wrap;
    }
    .partners-link {
        width: 27%;
        margin-right: 5%;
        margin-bottom: 10px;
    }
    .footer-wrapper {
        flex-wrap: wrap;
    }
    /*Blog*/
    .blog-author {
        margin-bottom: 12px;
    }
    .blog-item__button {
        margin-top: 12px;
    }
    /*Fort pierce*/
    .GBP-fort-pierce {
        margin-left: 0;
        margin-top: 20px;
    }
}
@media (max-width: 767px) {
    body {
        font-size: 15px;
    }
    .container {
       max-width: 727px;
       width: auto;
       padding: 0 20px; 
    }
    .btn {
        font-size: 18px;
    }
    h2.title {
        font-size: 30px;
        margin-bottom: 20px;
        text-align: center;
    }
    .header-menu__items {
        padding: 75px 0 15px;
    }
    .menu-close {
        top: 44px;
        right: 25px;
    }
    .top-form {
        max-width: none;
    }
    .top-form__title {
        font-size: 30px;
		color: #f9d36a;		
    }
    .top-section {
        padding-bottom: 215px;
        background-size: 60%;
    }
    .top-section__btn {
        width: 100%;
    }
    .container_top-section {
        flex-direction: column;
        padding-top: 125px;
    }
    .top-section__title {
        font-size: 42px;
        max-width: none;
        text-align: center;
    }
    .top-section__content-wrapper {
        max-width: 727px;
        width: auto;
        text-align: center;
    }
    .benefits-item__title {
        font-size: 20px;
        margin-bottom: 7px;
    }
    .about-item {
        flex-wrap: wrap;
    }
    .about-item__left, .about-item__bg {
        width: 100%;
    }
    .about-item__bg {
        margin-top: 15px;
    }
    .about-item__bg_bottom {
        order: 1;
    }
    .about-item__title,
    .testimonials-title {
        font-size: 25px;
        margin-bottom: 5px;
    }
    .services-item:nth-last-child(n+4) {
        margin-bottom: 15px;
    }
    .services-item__img {
        width: 100%;
    }
    .services-item__title {
        font-size: 20px;
        margin-bottom: 7px;
    }
    .CTA {
        padding: 30px 0 350px;
    }
    .container_CTA {
        flex-direction: column;
    }
    .CTA-content {
        width: 100%;
    }
    .CTA-btn {
        margin-top: 20px;
        padding: 10px 15px 15px;
    }
    .CTA-bg {
        width: 60%;
        margin-top: 15px;
    }
    .CTA::before, .CTA::after, .CTA-decor::after, .CTA-decor::before {
        width: 15%;
        height: 30%;
        right: 75%;
    }
    .CTA::after {
        right: 55%;
        height: 40%;
    }
    .CTA-decor::after {
        right: 35%;
        height: 50%;
    }
    .CTA-decor::before {
        right: 15%;
        height: 60%;
    }
    .testimonials-slider {
        padding: 0 40px 0 40px;
    }
    .slick-list {
        padding-left: 20px;
    }
    .testimonials-item__author {
        flex-wrap: nowrap;
    }
    .testimonials-item__author-name {
        margin-left: 10px;
        margin-top: 0px;
        width: fit-content;
    }
    .FAQ__title {
        font-size: 26px;
        margin-bottom: 15px;
    }
    .FAQ-item:not(:last-child) {
        margin-bottom: 14px;
    }
    .FAQ-item__top {
        padding: 10px 15px;
    }
    .FAQ-item__bottom {
        padding: 10px 65px 10px 15px;
    }
    .PSL-item__title {
        font-size: 20px;
        margin-bottom: 5px;
    }
    .bread-crumbs {
        margin-bottom: 30px;
    }
    .top-section_furniture {
        background-size: 45%;
        padding-bottom: 180px;
        background-position: center bottom;
    }
    .container_furniture {
        padding: 115px 20px 15px;
    }
    .top-section_furniture .top-section__btn {
        margin: auto;
    }
    .container_intro {
        flex-wrap: wrap;
    }
    .intro-content {
        width: 100%;
    }
    .intro-bg {
        width: 80%;
        text-align: center;
        margin: 15px auto 0;
    }
    .intro-bg_2 {
        order: 1;
    }
    .container_intro:first-child {
        margin-bottom: 25px;
    }
    #top-section_contact {
        background-size: 33%;
        padding-bottom: 60px;
        background-position: 94% bottom;
    }
    #top-section_contact .top-section__title span {
        display: none;
    }
    .furniture-wrapper__title, .serving-content__title,
    .benefits-title {
        font-size: 28px;
    }
    .hauling-wrapper_1 .hauling-item:not(:last-child), .hauling-wrapper_1 .hauling-item {
        margin-right: 0;
    }
    .hauling-title {
        font-size: 24px;
    }
    .note span {
        padding: 20px 25px 20px 35px;
        font-size: 34px;
    }
    .note p {
        max-width: 395px;
    }
    .before-after__imgs {
        flex-wrap: wrap;
    }
    .before-after_img {
        max-width: 100%;
    }
    .before-after_img {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .before-after__text {
        margin-top: 7px;
        margin-bottom: 20px;
    }
    .before-after__title {
        font-size: 26px;
        line-height: 120%;
    }
    .container_map iframe {
        height: 290px;
    }
    .footer-item:first-child, .footer-item_terms a {
        border: none;
    }
    .footer-item:nth-child(2) {
        order: 1;
        margin-left: 24%;
        margin-top: 15px;
    }
    .container_blog .intro-content h2 {
        margin-bottom: 7px;
        margin-top: 12px;
    }
    .blog-author {
        margin-bottom: 7px;
    }
    .blog-item__button {
        margin-top: 12px;
    }
    .blog-item:not(:last-child) {
        margin-bottom: 25px;
    }
}
@media (max-width: 702px) { 
    .services, .benefits, .testimonials, .about, .FAQ, .PSL, .intro, 
    .hauling, .serving, .whoWe, .linking, .before-after {
        padding: 30px 0;
    }
    h2.title {
        margin-bottom: 10px;
    }
    .PSL-item__bg img {
        height: 143px;
    }
    .PSL_fort-pierce .PSL-item__bg img {
        width: 100%;
    }
    .whoWe-title::before {
        height: 2px;
    }
    #top-section_contact {
        background: linear-gradient(360deg, rgba(10.02, 73.73, 61.18, 0.15), rgba(10.02, 73.73, 61.18, 0));
        padding-bottom: 40px;
    }
    #top-section_contact .container_top-section {
        padding-bottom: 0;
    }
    .container_contact-form {
        max-width: 727px;
    }
    .container_contact-form {
        padding: 0;
    }
    .top-form_contact {
        padding: 40px 10px;
    }
    .contact-title {
        font-size: 30px;
        margin-bottom: 7px;
    }
    .CTA-call {
        font-size: 18px;
        margin-bottom: 12px;
    }
    .CTA-btn_phone {
        font-size: 24px;
        padding: 16px;
    }
    .CTA-btn_phone::before {
        width: 25px;
        height: 26px;
    }
    .furniture, .prepare {
        padding: 30px 0;
    }
}
@media (max-width: 600px) { 
    h2.title {
        margin-bottom: 17px;
    }
    h2.top-section__title, .top-section__title {
        font-size: 38px;
    }
    .header-book {
        padding: 20px 5px;
        font-size: 23px;
    }
    .header.scrolled .header-book {
        padding: 5px;
        font-size: 20px;
    }
    .header.scrolled .header-logo {
        height: 45px;
        margin-top: -10px;
    }
    .top-section__text {
        font-size: 17px;
    }
    .testimonials-slider {
        padding: 0 25px 0 25px;
    }
    .slick-list {
        padding-left: 26px;
    }
    .serving {
        background: linear-gradient(360deg, rgba(0, 0, 0, 1), rgba(32.9, 22.4, 39.2, 0.9), rgba(0, 0, 0, 0.5)), url(../img/old-shed-demolition-removal-small.jpg) no-repeat;
        background-size: cover;
        background-position: center center;
    }
    .serving_shedPage .map-cities_column {
        width: 43%;
        margin-left: 30px;
        margin-bottom: 15px;
    }
    .footer-wrapper {
        flex-wrap: no-wrap;
        flex-direction: column;
    }
    .footer-item:nth-child(2) {
        margin-left: auto;
    }
    .footer-item {
        margin: auto;
    }
    .footer-item_terms {
        width: 35%;
        text-align: center;
        margin: auto;
        margin-top: 15px;
        justify-content: space-between;
        border-bottom: 2px solid #f9d36a;
    }
    .footer-item:first-child {
        width: 35%;
        text-align: center;
        margin: auto;
        padding-bottom: 3px;
        padding-right: 0;
        border-right: 0;
        border-bottom: 2px solid #f9d36a;
    }
    .footer-item_terms {
        margin-top: 12px;
    }
    .footer {
        padding-top: 25px;
    }
    .PSL-item {
        flex-direction: column;
    }
    .PSL-item__content {
        width: 100%;
        margin-bottom: 10px;
    }
    .PSL-item__bg {
        width: 80%;
    }
    .PSL-item__bg img {
        width: 100%;
        border: none;
        background-position: center;
    }
    .PSL-item__bg_2, .PSL-item__bg_4 {
        order: 1;
    }
    .footer-logo__img {
        width: 130px;
    }
    .contact-content {
        padding: 35px;
    }
    .CTA-btn_phone br {
        display: block;
    }
    .note {
        padding: 15px 25px;
        max-width: 435px;
    }
    .before-after .note::before, .note::after {
        width: 47px;
        height: 47px;
    }
    .note span {
        background: none;
        padding: 0;
        margin: auto;
        padding-right: 20px;
        width: 127px;
    }
    .CTA_Fort {
        background: linear-gradient(180deg, rgba(10.02, 73.73, 61.18, 0.7), rgba(10.02, 73.73, 61.18, 0.7)), url('../img/junk-removal-fort-pierce-small.jpg') no-repeat;
        background-size: cover;
        padding: 25px 0 35px;
        background-position: center center;
    }
    .header-book::before {
        width: 27px;
        height: 27px;
    }
    .container_blog {
        padding-bottom: 0;
    }
    .intro-blog__img {
        height: 500px;
    }
    .process {
        padding: 30px 0 15px;
        background: linear-gradient(360deg, rgba(107, 107, 107, 1), rgba(107, 107, 107, 1), rgba(107 107 107 / 70%)), url(../img/hot-tub-removal-psl-small.jpg) no-repeat;
        background-size: cover;
        background-position: center 89%;
        color: #fff;
    }
    .process-wrapper {
        flex-wrap: wrap;
    }
    .process-item {
        width: 100%;
        padding: 0 0 10px 0;
        border-bottom: #f9d36a 1px solid;
        border-right: none;
        margin-bottom: 20px;
    }
    .process_mattress {
        background: linear-gradient(360deg, rgba(107, 107, 107, 1), rgba(107, 107, 107, 1), rgba(107 107 107 / 70%)), url(../img/mattress-removal-port-st-lucie-small.jpg) no-repeat;
        background-size: cover;
        color: #fff;
    }
    .process_construction {
        padding: 55px 0;
        background: linear-gradient(360deg, rgba(107, 107, 107, 1), rgba(107, 107, 107, 1), rgba(107 107 107 / 70%)), url(../img/construction-debris-removal-st-lucie.jpg) no-repeat;
        background-size: cover;
        color: #fff;
    }
}
@media (max-width: 481px) {
    h2.title {
        margin-bottom: 10px;
    }
    .top-section__title {
        font-size: 36px;
    }
    .top-section__title {
        margin-bottom: 10px;
    }
    .header-book {
        font-size: 25px;
        letter-spacing: 2px;
        padding: 25px 10px;
    }
    .header-book::before {
        margin-right: 5px;
        width: 25px;
        height: 25px;
    }
    .header.scrolled .header-book::before {
        width: 17px;
        height: 17px;
    }
    .header.scrolled .header-book {
        padding: 10px 20px 5px;
    }
    .header-logo {
        width: 125px;
        height: 55px;
    }
    .header-logo__img {
        padding: 1px 20px 5px 5px;
    }
    .header.scrolled .header-logo {
        height: 37px;
    }
    .header-logo__img {
        width: 125px;
    }
    .top-form__title {
        margin: 15px 0 12px;
    }
    .top-form__blog .top-form__input {
        margin-bottom: 15px;
    }
    .top-form__blog {
        padding: 25px 12px;
    }
    .top-form__blog .top-form__title {
        margin-bottom: 22px;
    }
    .footer-logo__img {
        width: 115px;
    }
    .whoWe-title::before {
        bottom: -5px;
    }
    .contact-content {
        padding: 30px 17px;
    }
    .contact-title {
        font-size: 26px;
        margin-bottom: 3px;
    }
    #top-section_contact {
        padding-bottom: 20px;
    }
    .map_contact {
        height: 250px;
    }
    .note span {
        margin: auto;
    }
    .note::before, .note::after {
        width: 55px;
    }
    .prepare-wrapper img {
        max-width: 279px;
        margin-top: -30px;
    }
    .note {
        max-width: 401px;
    }
    .container_map iframe {
        height: 240px;
    }
    .top-section_about .container_top-section {
        padding: 90px 15px 15px;
    }
    .intro-blog__img {
        height: 370px;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .intro-blog__img_2 {
        margin-bottom: 5px;
    }
}
@media (max-width: 457px) {
    .header.scrolled .header-book {
        font-size: 19px;
    }
}
@media (max-width: 450px) {
    body {
        font-size: 14px;
    }
    .container {
        max-width: none;
        padding: 0 12px;
    }
    h2.title {
        font-size: 26px;
    }
    h2.top-section__title, .top-section__title {
        font-size: 30px;
    }
    .container_top-section {
        padding-top: 110px;
    }
    .header-logo__img {
        width: 130px;
    }
    .header-book  {
        font-size: 20px;
    }
    .header.scrolled .header-book {
        padding: 10px 20px 5px;
        font-size: 16px;
    }
    .top-section {
        padding-bottom: 170px;
    }
    .top-form__fields>div {
        width: 100%;
    }
    .benefits-item {
        width: 100% !important;
        text-align: center;
    }
    .benefits-item:not(:last-child) {
        border: none;
    }
    .benefits-item__title {
        text-align: center;
        margin: auto;
        font-size: 19px;
        margin-bottom: 2px;
    }
    .benefits-item__icon {
        margin: auto;
        margin-bottom: 9px;
    }
    .benefits-item:nth-child(2) {
        margin-top: 15px;
    }
    .intro-item {
        width: 100%;
    }
    .about-item__title,
    .testimonials-title {
        font-size: 22px;
        margin-bottom: 3px;
    }
    .serving {
        background: linear-gradient(360deg, rgba(0, 0, 0, 1), rgba(32.9, 22.4, 39.2, 0.9), rgba(0, 0, 0, 0.5)), url(../img/old-shed-removal-palm-beach-gardens-small.jpg) no-repeat;
        background-size: cover;
        background-position: center center;
    }
    .services-item:nth-last-child(n+2) {
        margin-bottom: 15px;
    }
    .services-item {
        width: 100%;
    }
    .services-item__img {
        margin-bottom: 9px;
    }
    .services-item__title {
        font-size: 19px;
        margin-bottom: 2px;
    }
    h3.CTA-title {
        font-size: 30px;
    }
    .testimonials-slider {
        padding: 0 10px 0 10px;
    }
    .slick-list {
        padding-left: 32px;
    }
    .FAQ__title {
        font-size: 23px;
    }
    .FAQ-item__title {
        max-width: 240px;
        font-size: 15px;
    }
    .FAQ-item__top {
        padding: 8px 10px;
    }
    .FAQ-item__bottom {
        font-size: 14px;
        padding: 8px 65px 8px 10px;
    }
    .partners-title {
        font-size: 19px;
    }
    .partners-wrapper {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .partners-link {
        margin-right: 0;
    }
    .partners-link:not(:first-child) {
        width: 48%;
    }
    .partners-link:nth-last-child(n+2) {
        margin-bottom: 10px;
    }
    .PSL-item__title {
        font-size: 19px;
        margin-bottom: 2px;
    }
    .PSL-text {
        margin-bottom: 2px;
    }
    .PSL-item__content {
        margin-bottom: 5px;
    }
    .top-section_furniture {
        padding-bottom: 139px;
    }
    .container_furniture {
        padding: 115px 20px 10px;
    }
    .bread-crumbs {
        margin-bottom: 17px;
    }
    .hauling-item {
        width: 100%;
    }
    .hauling-item:not(:last-child) {
        margin-bottom: 12px;
    }
    .hauling-item:nth-child(n+3) {
        margin-top: 0;
    }
    .hauling-text {
        margin-bottom: 10px;
    }
    .intro-bg {
        margin-top: 10px;
    }
    .intro-infographic img {
        max-width: 340px;
    }
    .map_contact {
        height: 200px;
    }
    .furniture-wrapper__title, .serving-content__title,
    .benefits-title {
        font-size: 24px;
    }
    .hauling-title {
        font-size: 21px;
    }
    .furniture-list__item {
        margin-bottom: 5px;
    }
    .note {
        max-width: 320px;
    }
    .note span {
        font-size: 28px;
        padding-right: 10px;
    }
}
@media (max-width: 429px) {
    .header-book {
        font-size: 19px;
        padding: 17px 5px;
    }
    .header.scrolled .header-logo {
        width: 115px;
    }
    .header-book::before {
        width: 23px;
        height: 23px;
    }
    .intro-blog__img {
        height: 320px;
    }
    .serving_shedPage .map-cities_column {
        width: 40%;
    }
    .CTA {
        padding-bottom: 245px;
    }
    .CTA-decor::before {
        height: 55%;
    }
    .CTA-decor::after {
        height: 45%;
    }
    .CTA::after {
        height: 35%;
    }
    .CTA::before {
        height: 25%;
    }
    .CTA-btn span {
        font-size: 28px;
    }
}
@media (max-width: 400px) {
    .header-logo {
        display: none;
    }
    .header-book {
        padding: 25px 15px;
    }
    .about-item {
        margin-bottom: 17px;
    }
    .about-item__bg {
        margin-top: 10px;
    }
    .testimonials-item__author {
        flex-wrap: wrap;
    }
    .testimonials-item__author-name {
        margin-top: 10px;
        margin-left: 0;
        width: 100%;
    }
    .CTA-btn span {
        font-size: 24px;
    }
    .CTA-decor::after {
        height: 40%;
    }
    .CTA-decor::before {
        height: 50%;
    }   
    .CTA::after {
        height: 30%;
    }
    .CTA::before {
        height: 20%;
    }
    .footer-item_terms {
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer-item__TOS, .footer-item__dis {
        width: 40%;
    }
    .footer-item_terms a {
        margin-right: 0;
        text-align: center;
    }
    .footer-item_terms a:last-child {
        margin-top: 5px;
    }
    .note {
        max-width: 290px;
    }
    .note span {
        font-size: 26px;
    }
    .container_intro:first-child {
        margin-bottom: 12px;
    }
}
@media (max-width: 356px) {
    body {
        font-size: 14px;
    }
    h2.title {
        margin-bottom: 7px;
    }
    .top-form__input, .top-form__textarea {
        padding: 10px 7px;
    }
    .header-logo {
        width: 102px;
        height: 57px;
    }
    .header-logo__img {
        width: 102px;
    }
    .btn {
        font-size: 16px;
        padding: 12px;
    }
    .top-section {
        padding-bottom: 120px;
    }
    .top-form__input, .top-form__textarea {
        padding: 7px 5px;
    }
    .PSL-item__bg img {
        height: 117px;
    }
    .note {
        padding: 11px 10px 15px 10px;
    }
    .note::before, .note::after {
        width: 50px;
        height: 50px;
    }
    .note span {
        padding-right: 10px;
    }
    .note {
        max-width: 260px;
    }
    .container_map iframe {
        height: 200px;
    }
    .before-after .note::before, .note::after {
        width: 40px;
        height: 40px;
    }
    .serving_shedPage .map-cities_column {
        margin-left: 20px;
    }
    .intro-blog__img {
        height: 250px;
    }
    .intro-infographic img {
        max-width: 270px;
    }
    h3.CTA-title {
        margin-bottom: 20px;
    }
    .footer-item_terms, .footer-item:first-child {
        width: 70%;
    }
}
@media (max-width: 310px) {
    .container {
        padding-left: 8px;
        padding-right: 8px;
    }
    .header-logo {
        width: 80px;
        height: 48px;
    }
    .header-logo__img {
        width: 80px;
    }
    .header-book {
        padding: 14px 5px;
    }
    .top-section {
        padding-bottom: 127px;
    }
    .benefits-item:nth-child(2), .benefits-item:last-child {
        margin-top: 10px;
    }
    .top-section_furniture {
        padding-bottom: 102px;
    }
    .note {
        max-width: 220px;
    }
}