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: #000;
    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: #001E4C;
    max-width: 680px;
    width: 100%;
    padding: 15px;
    cursor: pointer;
    text-align: center;
    transition: all 0.5s ease;
}
.btn:hover {
    background: #242454;
    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 #001E4C;
    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: 65px;
    width: 185px;
    margin-top: -3px;
    transition: all ease 0.5s;
}
.header.scrolled .header-logo__img {
    padding: 0px 25px 5px 15px;
}
.header.scrolled .header-book {
    padding: 8px 25px;
    font-size: 20px;
    border-radius: 0;
    transition: all ease 0.5s;
}
.header.scrolled .header-book::before {
    width: 25px;
    height: 25px;
    transition: all ease 0.5s;
}
.header.scrolled  .header-menu__item:not(:last-child) {
    font-size: 12px;
}
.header.scrolled .header__wrapper_top {
    padding: 0;
    transition: all ease 0.5s;
}
.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: #242454;
    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: #242454;
}
.header-submenu__item:not(:last-child) {
    margin-bottom: 10px;
}
.header-submenu__item.active {
    color: #7097d6;
}
.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;
}
.container_header__wrapper_top {
    display: flex;  
}
.header__wrapper_top {
    background-color: #242454;
    padding: 15px;
    transition: all ease 0.5s;
}
.header-book {
    display: flex;
    align-items: center;
    font-family: 'Nunito Sans', sans-serif;;
	font-size: 22px;
    letter-spacing: 3px;
	font-weight: 900;
    justify-content: center;
    margin-left: auto;
    margin-right: 20px;
    max-width: 320px;
    width: 100%;
    height: 100%;
    padding: 10px 12px;
    border-radius: 5px;
    color: #fff;
    background: #57CB5A;
    transition: all ease 0.5s;
}
.header-book_2 {
    margin-left: 0;
}
.header-book::before {
    content: '';
    display: block;
    margin-right: 12px;
    width: 30px;
    height: 30px;
    background: url('../img/telephone-call.png') no-repeat;
    background-size: cover;
    transition: all ease 0.5s;
}
.header-book_1 {
    cursor: pointer;
}
.header-book_1::before {
    content: '';
    display: block;
    margin-right: 12px;
    width: 30px;
    height: 30px;
    background: url('../img/estimate.png') no-repeat;
    background-size: cover;
    transition: all ease 0.5s;
}
.header-book:hover {
    color: #fff;
    background: #242454;
    transition: all ease 0.5s;
}
.menu-burger {
    display: none;
}
/*top section*/
.top-section {
    background: linear-gradient(270deg, rgba(36, 33, 84, 0.2), rgba(36, 36, 84, 0.4), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 1)), url('../img/dumpster-rental.jpg') no-repeat;
    background: linear-gradient(270deg, rgba(36, 33, 84, 0.2), rgba(36, 36, 84, 0.4), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9)), url('../img/dumpster-rental-psl.jpg') no-repeat;
    background-size: cover;
    background-position: center;
}
.container_top-section {
    padding: 220px 0 75px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-section__content {
    display: flex;
}
.top-section__content-wrapper {
    max-width: 600px;
    width: auto;
}
.top-section__title {
    color: #000000;
    color: #fff;
    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: #000;
    color: #fff;
}
.top-form {
    border: 2px solid #242454;
    padding: 25px 20px 35px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 5px;
    color: #000000;
    position: relative;
    margin-left: 15px;
    width: 100%;
    max-width: 480px;
}
.top-form__fields {
    display: flex;
    flex-wrap: wrap;
    color: #000000;
    justify-content: space-between;
}
.top-form__title {
    color: #242454;
    border-radius: 10px;
    font-size: 30px;
    line-height: 110%;
    font-weight: 800;
    margin-bottom: 15px;
}
.top-form__fields>div {
    width: 48%;
    position: relative;
}
.top-form__input {
    width: 100%;
    background-color: rgba(255, 255, 255, 1);
    border: 1px solid #242454;
    border-radius: 3px;
    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; 
}
/* Dumpsters */
.dumpsters {
    padding: 55px 0;
}
.dumpsters-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.dumpsters-item {
    width: 32%;
    margin-bottom: 25px;
    text-align: center;
}
.dumpsters-item__img {
    max-width: 370px;
    border: 5px solid #57CB5A;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 5px;
    width: 100%;
}
/* Benefits */
.container_benefits {
    display: flex;
    justify-content: space-between;
}
.benefits {
    padding: 25px 0;
}
.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%;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-content: center;
    box-shadow: 0px 1px 7px rgba(0, 30, 76, 0.2);
}
.benefits-item__title {
    color: #000000;
    font-size: 22px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.benefits-item__icon {
    height: 80px;
    width: 80px;
    object-fit: cover;
    margin-bottom: 10px;
}

/*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: #242454 3px solid;
}
.intro-item span {
    color: #242454;
    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;
    max-width: 500px;
    margin-bottom: 40px;
}
.about-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}
.about-item_1 {
    margin-top: 12px;
}
.about-item:last-child {
    margin-bottom: 0px;
}
.about-item__left, .about-item__bg {
    width: 38%;
}
.about-item__left {
    width: 55%;
}
.about-item__bg_bottom img {
    margin-left: 11%;
}
.about-item__img {
    width: 100%;
    display: block;
    border-radius: 5px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 1px 0px 10px 0px rgba(0,0,0,0.5);
}
.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: #001E4C;
    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;
}
/* Steps */
.steps {
    background: #242454;
    padding: 55px 0;
}
.steps-pretitle {
    display: block;
    text-align: center;
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #57CB5A;
}
h2.steps-title {
    text-align: center;
    color: #fff;
    padding-bottom: 15px;
    position: relative;
    margin-bottom: 30px;
}
.steps-title::before {
    content: '';
    display: block;
    position: absolute;
    height: 1.5px;
    width: 100px;
    background: #57CB5A;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.steps-wrapper {
    display: flex;
    justify-content: space-between;
}
.step {
    width: 32%;
    padding: 0 0 10px 0;
    border-radius: 10px;
    background: #E5E5E5;
    text-align: center;
}
.step__pretitle {
    padding: 15px;
    display: block;
    width: 100%;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 10px 10px 0 0;
    color: #57CB5A;
    background: #242454;
    border: 1px solid #E5E5E5;
}
.step__title {
    margin-top: 15px;
    font-size: 25px;
    margin-bottom: 10px;
}
.step__title, .step__text {
    padding: 0 15px;
    display: block;
}
/*DumpsterSize*/
.dumpsterSize {
    padding: 55px 0;
}
.dumpsterSize-wrapper__title {
    text-align: center;
}
.dumpsterSize-wrapper__text {
    max-width: 900px;
    margin: auto;
    margin-bottom: 8px;
}
.dumpsterSize-options {
    max-width: 1150px;
    margin: auto;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.dumpsterSize-option {
    width: 31%;
    padding: 10px 15px;
    margin-top: 20px;
    margin-left: 20px;
    border-left: #242454 solid 3px;
    box-shadow: 1px 0px 10px 0px rgba(0,0,0,0.5);
}
.dumpsterSize-option:nth-child(3n+1) {
    margin-left: 0;
}
.dumpsterSize-option__title {
    color: #57CB5A;
}
.dumpsters__img {
    max-width: 350px;
    width: 100%;
}
.step_dumpsters {
    width: 24%;
}
/* 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: #001E4C;
    margin-bottom: 10px;
    font-weight: 800;
    line-height: 120%;
}
.services-btn {
    margin: auto;
    margin-top: 25px;
    max-width: 270px;
}
.services-btn:hover {
    color: #ffffff;
}
/* CTA */
.CTA {
    color: #fff;
    padding: 75px 0;
    background: linear-gradient(270deg, rgba(36, 33, 84, 0.2), rgba(36, 36, 84, 0.4), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9)), url(../img/dumpster-rental-psl.jpg) no-repeat;
    background-size: cover;
    background-position: left center;
    background-attachment: fixed;
}
h3.CTA-title {
    font-size: 55px;
    margin-bottom: 25px;
}
h3.CTA-title::after {
    content: '';
    display: block;
    background: #fff;
    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 #001E4C;
    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: #001E4C;
    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: #242454;
}
.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: #001E4C;
}
.FAQ-wrapper {
    max-width: 748px;
    margin: 0 auto;
}
.FAQ-item {
    border-bottom: 3px solid #57CB5A;
    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;
    background: rgba(36, 36, 84, 0.2);
    cursor: pointer;
}
.FAQ-item__title {
    color: #000000;
    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: #57CB5A;
}
.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(36, 36, 84, 0.5);
    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;
}
/* 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 {
    background: rgb(0 0 0 / 10%);
}
.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: 40%;
    margin-left: 20px;
}
.map-cities__item {
    margin-bottom: 3px;
}
.map-btn {
    margin-top: 45px;
    width: 90%;
}
.map-cities__item {
    list-style: disc;
}
/* Footer */
.footer {
    padding: 40px 0 30px;
    background: #000000;
    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 #242454;
    border-left: 2px solid #242454;*/
}
.footer-item__privacy {
    display: block;
}
.footer-item:first-child {
    padding-right: 15px;
    border-right: 2px solid #242454;
}
.footer-item_terms a {
    padding: 15px;
    border-left: 2px solid #242454;
    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 #24245455;
    text-align: center;
    display: block;
}
/* Page Services Start */
.bread-crumbs {
    font-size: 15px;
    color: #fff;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}
.bread-crumbs__first {
    opacity: 0.8;
}
.bread-crumbs__line {
    display: block;
    margin: 0 10px;
    width: 20px;
    height: 1px;
    background: #fff;
}
.intro {
    background: rgba(0, 0, 0, 0.1);
    padding: 55px 0;
}
.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.7em;
}
.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: #242454 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;
}
.furniture-services {
    padding: 55px 0;
}
.furniture-wrapper__text:not(:last-child) {
    margin-bottom: 8px;
}
.furniture-wrapper {
    max-width: 1000px;
    margin: auto;
}
.furniture-wrapper__title {
    text-align: center;
}
.furniture-wrapper__text {
    margin: auto;
    display: block;
}
.furniture-wrapper .furniture-wrapper__text_2 {
    margin-bottom: 12px;
    text-align: center;
}
.furniture-items {
    display: flex;
    justify-content: space-between;
}
.furniture-item {
    width: 48%;
    box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1);
}
.furniture-item__title {
    padding: 15px;
    color: #ffffff;
    border-radius: 7px 7px 0 0;
    background: #001E4C;
    margin-bottom: 10px;
}
.furniture-item__text {
    padding: 15px;
}
/*end blog*/
.intro-bg {
    width: 37%;
}
.intro-bg__img {
    width: 100%;
}
.intro-content__title {
    color: #000000;
}
.intro-content__text:not(:last-child) {
    margin-bottom: 1em;
}
.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;
    box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.3);
}
.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_before-after {
    max-width: 900px;
}
.container_map iframe {
    width: 50%;
}
.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_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: #242454;
    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;
}
.new-line {
    display: block;
    width: 100%;
}
.note {
    display: flex;
    justify-content: space-between;
    padding: 25px 15px 25px 45px;
   /* background-color: #242454;
    */max-width: 800px;
    border: #242454 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: #000000;
}
.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: #242454;
}
.hauling-item__title {
    font-size: 18px;
    color: #242454;
    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-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: 200px 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: #242454;
    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: 390px;
    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(0 0 0 / 10%);
    padding: 65px 10px;
    width: 55%;
    max-width: none;
}
.top-form_contact .top-form__title {
    margin-top: 0;
    color: #242454;
}
.top-form_contact .top-form__input {
    border: 1px solid #242454;
}
.top-form_contact .btn {
    max-width: none;
    background: #ffffff;
    color: #242454;
    border: 1px solid #242454;
}
.top-form_contact .btn:hover {
    background: #242454;
    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: #242454;
    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: #000000;
    color: #ffffff;
}
.privacy {
    padding: 180px 0 45px;
}
/* Shed and other Page start*/
.top-section_services .container_top-section {
    padding: 140px 20px 65px;
}
.top-section_services .top-form__title {
    margin-top: 0;
}
.top-section_services .top-section__content-wrapper {
    max-width: 726px;
}
.benefits_shed .benefits-item:not(:last-child) {
    border-right: 2px solid #001E4C;
}
.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: #242454 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: #242454;
}
.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: #001E4C;
    display: block;
    text-transform: uppercase;
}
.about-btn_step {
    max-width: 250px;
    width: 100%;
    margin-top: 15px;
    display: block;
    font-size: 22px;
    border-radius: 5px;
}
/* Responsive */
@media (max-width: 1200px) {
    h2.title {
        font-size: 36px;
    }
    .container {
        max-width: 984px;
        padding: 0 18px;
        margin: 0 auto;
    }
    .header-logo {
        width: 160px;
        height: 65px;
    }
    .header-logo__img {
        width: 155px;
        height: 58px;
    }
    .header-menu__item {
        font-size: 14px;
        width: max-content;
    }
    .header-menu__item:not(:last-child) {
        margin-right: 23px;
    }
    .header-book {
        padding: 9px;
    }
    .container_top-section {
        padding: 175px 0 75px;
    }
    .top-form {
        max-width: 450px;
    }
    .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;
    }
    .hauling-item {
        width: 24%;
    }
    .hauling-item__img {
        width: 100%;
    }
    .serving-content__title,
    .benefits-title {
        font-size: 30px;
    }
    .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: #242454;
        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__slider {
        margin: 0 auto 15px;
    }
    .container_top-section {
        padding: 175px 0 52px;
        flex-wrap: wrap;
    }
    .top-section__title {
        font-size: 51px;
        margin-bottom: 15px;
    }
    .top-form {
        margin: auto;
        max-width: 550px;
        margin-bottom: 20px;
    }
    .dumpsters-item {
        width: 48%;
    }
    .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;
    }
    .services-item {
        width: 48.5%;        
    }
    .services-item:nth-last-child(n+2) {
        margin-bottom: 25px;
    }
    .CTA-bg {
        width: 40%;
    }
    .CTA-content {
        width: 58%;
    }
    .CTA-btn span {
        font-size: 31px;
    }
    h3.CTA-title {
        font-size: 38px;
        margin-bottom: 30px;
    }
    .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;
    }
    .map_contact {
        height: 320px;
    }
    #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;
    }
    .top-section_services .top-section__content-wrapper {
        max-width: 400px;
    }
    /*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: #242454;		
    }
    .top-section__btn {
        width: 100%;
    }
    .container_top-section {
        flex-direction: column;
        padding-top: 165px;
        padding-bottom: 20px;
    }
    .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 30px;
    }
    .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;
    }
    .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;
    }
    .bread-crumbs {
        margin-bottom: 30px;
    }
    .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 {
        padding-bottom: 30px;
        background-position: 94% bottom;
    }
    #top-section_contact .top-section__title span {
        display: none;
    }
    .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;
    }
    .top-section_services .top-section__content {
        flex-wrap: wrap;
    }
    .top-section_services .container_top-section {
        padding-bottom: 25px;
    }
}
@media (max-width: 702px) { 
    .services, .benefits, .testimonials, .about, .FAQ, .steps, .intro, 
    .hauling, .serving, .dumpsterSize, .dumpsters, .before-after, .furniture-services {
        padding: 30px 0;
    }
    .header-book {
        font-size: 19px;
    }
    h2.title {
        margin-bottom: 10px;
    }
    .whoWe-title::before {
        height: 2px;
    }
    #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;
    }
}
@media (max-width: 600px) { 
    h2.title {
        margin-bottom: 17px;
    }
    h2.top-section__title, .top-section__title {
        font-size: 38px;
    }
    .header-book {
        margin-right: 0;
        padding: 7px 5px;
        font-size: 18px;
        letter-spacing: 1px;
    }
    .header-book::before {
        width: 22px;
        height: 22px;
        margin-right: 5px;
    }
    .header-book_1 {
        margin-right: 12px;
    }
    .header.scrolled .header-book {
        padding: 5px;
        font-size: 18px;
    }
    .header.scrolled .header-logo {
        height: 45px;
        margin-top: -2px;
    }
    .top-section {
        background: linear-gradient(0deg, rgba(36, 33, 84, 0.2), rgba(36, 36, 84, 0.4), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9)), url(../img/dumpster-rental-psl-small.jpg) no-repeat;
        background-size: cover;
        background-position: bottom center;
    }
    .top-section__text {
        font-size: 17px;
    }
    .steps-wrapper {
        flex-wrap: wrap;
    }
    .step {
        width: 100%;
        margin-bottom: 25px;
    }
    .dumpsterSize-option {
        width: 48%;
    }
    .dumpsterSize-option:nth-child(3n+1) {
        margin-left: 15px;
    }
    .dumpsterSize-option:nth-child(2n+1) {
        margin-left: 0;
    }
    .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;
    }
    .services-item {
        width: 100%;
    }
    .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 #242454;
    }
    .footer-item:first-child {
        width: 35%;
        text-align: center;
        margin: auto;
        padding-bottom: 3px;
        padding-right: 0;
        border-right: 0;
        border-bottom: 2px solid #242454;
    }
    .footer-item_terms {
        margin-top: 12px;
    }
    .footer {
        padding-top: 25px;
    }
    .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 {
        background: linear-gradient(270deg, rgba(0, 30, 76, 1), rgba(0, 0, 0, 0.5)), url(../img/junk-removal-couch-armchair-small.jpg);
        background-size: cover;
        background-position: left center;
    }
    .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: #242454 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;
    }
    .furniture-items {
        flex-wrap: wrap;
    }
    .furniture-item {
        width: 100%;
        margin-bottom: 15px;
    }
    .furniture-item__text {
        padding-top: 5px;
    }
}
@media (max-width: 481px) {
    h2.title {
        margin-bottom: 10px;
    }
    .top-section__title {
        font-size: 36px;
    }
    .top-section__title {
        margin-bottom: 10px;
    }
    .header__wrapper_top {
        padding: 10px 0;
    }
    .header.scrolled .header__wrapper_top {
        padding: 0;
    }
    .header-logo__img {
        width: 170px;
    }
    .header-book_1 {
        display: none;
    }
    .header-book_2 {
        margin: auto;
    }
    .header.scrolled .header-book::before {
        width: 23px;
        height: 23px;
    }
    .header.scrolled .header-book {
        padding: 7px 20px;
    }
    .header-logo {
        width: 125px;
        height: 55px;
    }
    .header-logo__img {
        padding: 1px 20px 5px 5px;
    }
    .header.scrolled .header-logo {
        height: 37px;
    }
    .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;
    }
    .dumpsterSize-option {
        margin-left: 10px;
    }
    .footer-logo__img {
        width: 115px;
    }
    .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: 160px;
    }
    .header-logo__img {
        width: 130px;
        height: 50px;
    }
    .header.scrolled .header-logo__img {
        width: 145px;
    }
    .header-book  {
        font-size: 20px;
    }
    .top-form__title {
        font-size: 22px;
    }
    .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;
    }
    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;
    }
    .dumpsterSize-option, .dumpsters-item {
        width: 100%;
    }
    .dumpsterSize-option, .dumpsterSize-option:nth-child(3n+1) {
        margin-left: 0;
    }
    .dumpsters__img {
        max-width: 400px;
    }
    .step__title {
        font-size: 19px;
        margin-top: 5px;
    }
    .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;
    }
    .bread-crumbs {
        margin-bottom: 17px;
    }
    .intro-bg {
        margin-top: 10px;
    }
    .intro-infographic img {
        max-width: 340px;
    }
    .map_contact {
        height: 200px;
    }
    .serving-content__title,
    .benefits-title {
        font-size: 24px;
    }
    .hauling-title {
        font-size: 21px;
    }
    .note {
        max-width: 320px;
    }
    .note span {
        font-size: 28px;
        padding-right: 10px;
    }
}
@media (max-width: 429px) {
    .header-book {
        font-size: 19px;
        padding: 7px 5px;
    }
    .header.scrolled .header-logo {
        width: 115px;
    }
    .header-book::before {
        width: 23px;
        height: 23px;
    }
    .top-section_about .top-section__btn {
        margin-top: 10px;
    }
    .intro-blog__img {
        height: 320px;
    }
    .serving_shedPage .map-cities_column {
        width: 40%;
    }
    .CTA-btn span {
        font-size: 28px;
    }
}
@media (max-width: 400px) {
    .header-logo__img, .header-logo {
        height: 50px;
    }
    .header-logo__img {
        width: 137px;
    }
    .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;
    }
    .btn {
        font-size: 16px;
        padding: 12px;
    }
    .top-form__input, .top-form__textarea {
        padding: 7px 5px;
    }
    .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-book {
        padding: 14px 5px;
    }
    .benefits-item:nth-child(2), .benefits-item:last-child {
        margin-top: 10px;
    }
    .note {
        max-width: 220px;
    }
}