html {
    scroll-behavior: smooth;
}
*{
    box-sizing: border-box;
}
body {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    line-height: 140%;
    font-weight: 400;
    padding: 0;
    margin: 0;
    color: #333333;
    background: #F0EDE5;
    letter-spacing: 0.02em;
}
h1, h2, h3, h4, h5, h6 {
    line-height: 140%;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-weight: 700;
    margin: 0;
    padding: 0;
}
h2.title {
    font-size: 36px;
    line-height: 100%;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
}
h3.title {
    font-size: 30px;
} 
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: 24px;
    font-weight: 500;
    text-transform: uppercase;
    color: #ffffff;
    display: block;
    text-shadow: 0-1px 0 rgba(255,255,255,.2);
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    background: #7B3F00;
    max-width: 680px;
    width: 100%;
    padding: 15px;
    cursor: pointer;
    text-align: center;
    transition: all 0.5s ease;
}
.btn:hover {
    background: #5A3921;
    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 #3D94F2;
    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;
    z-index: 2;
    overflow: hidden;
    width: 100%;
    transition: all 0.5s ease;
    box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2);
    background: #F0EDE5; 
}
.header.scrolled {
    top: 0;
    z-index: 1002;
    transition: all 0.5s ease;
}
.header.scrolledDown {
    top: 7px;
}
.header.scrolled .header-logo {
    height: 100px;
    width: 130px;
    margin-top: -47px;
    transition: all 0.5s ease;
}
.header.scrolled .header-logo__img {
    transition: all 0.5s ease;
    padding: 0px 25px 5px 15px;
}
.header.scrolled .header-book {
    padding: 8px;
    font-size: 20px;
}
.header.scrolled .header-book::before {
    width: 21px;
    height: 20px;
}
.header.scrolled .header-menu__item {
    font-size: 15px;
    transition: all 0.5s ease;
}
.header.scrolled .header_right {
    padding-bottom: 8px;
}
.header.scrolled  .header-top {
    margin-bottom: 5px;
}
.header-top {
    padding-top: 5px;
    display: flex;
    margin-left: auto;
    align-items: center;
    justify-content: flex-end;
    border-bottom: 1px solid #5A3921;
    margin-bottom: 10px;
}
.social-media {
    margin-right: 20px;
}
.social-media img {
    width: 20px;
    height: 20px;
}
.header__wrapper {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header_right {
    width: 70%;
    padding-bottom: 17px;
    position: relative;
}
.header-logo {
    width: 145px;
    height: 120px;
    transition: all 0.5s ease;
}
.header-logo:hover {
    transition: all 0.5s ease;
    opacity: 0.8;
}
.header-logo__img {
    padding: 4px 25px 7px 15px;
    width: 155px;
    object-fit: cover;
    transition: all 0.5s ease;
}
.header-menu__items {
    margin-left: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header-menu__item:not(:last-child) {
    margin-right: 55px;
}
.header-menu__item:nth-last-child(2) {
    margin-right: 0;
}
.header-menu__item {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    position: relative;
    cursor: pointer;
    transition: all 0.5s ease;
}
.header-menu__item.active::after {
    width: 100%;
    background: #D9BF77;
}
.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: #D9BF77;
    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-menu {
   /* background: #D9BF77;*/
    color: #7B3F00;
    font-weight: 700;
}
.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: #D9BF77;
}
.header-submenu__item:not(:last-child) {
    margin-bottom: 10px;
}
.header-submenu__item.active {
    color: #5A3921;
}
.header-info {
    display: flex;
}
.header-info__phone {
    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;
    justify-content: center;
    align-items: center;
	font-size: 21px;
    letter-spacing: 3px;
	font-weight: 700;
    height: 100%;
    max-width: 320px;
    padding: 8px 8px 10px;
    margin-left: 25px;
    margin-bottom: 10px;
    border-radius: 5px;
    background: #D9BF77;
    color: #ffffff;
    transition: all ease 0.5s;
}
.header-book::before {
    content: '';
    display: block;
    margin-right: 19px;
    width: 22px;
    height: 21px;
    background: url('../img/telephone-call.png') no-repeat;
    transition: all ease 0.5s;
    background-size: cover;
}
.header-book:hover {
    color: #ffffff;
    background: #5A3921;
    transition: all ease 0.5s;
}
.header-book:hover::before {
    transition: all ease 0.5s;
    background-size: cover;
}
.menu-burger {
    display: none;
}
/*top section*/
.top-section {
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.70), rgba(0, 0, 0, 0)), url('../img/painters-bg\ \(2\).jpg') no-repeat;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.70), rgba(0, 0, 0, 0)), url('../img/painters-bg-1.jpg') no-repeat;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.70), rgba(0, 0, 0, 0)), url('../img/painters-bg-1.1.webp') no-repeat;
    background-size: cover;
    color: #ffffff;
    background-position: center 35%;
}
/*.top-section::before {
    content: "";
    background: url('../img/painting.png') no-repeat;
    background-size: contain;
    width: 500px;
    height: 500px;
    display: block;
    position: absolute;
    top: 0;
    left: -10px;
}*/
.container_top-section {
    padding: 130px 0 15px;
    z-index: 1;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-section__content-wrapper {
    max-width: 805px;
    padding: 80px 0;
    width: auto;
}
.top-section__title {
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    text-align: left;
    font-size: 62px;
    line-height: 115%;
    margin-bottom: 35px;
    width: 100%;
}
.top-section__title span {
    display: block;
}
.top-section__text {
    color: #fff;
    font-size: 22px;
}
.top-form_wrapper {
    padding: 25px 15px 35px;
    background: rgba(217,191,119, 0.5);
    width: 32%;
    position: absolute;
    border-radius: 10px;
    right: 5%;
    top: 40%;
}
.top-form_wrapper_about {
    position: static;
}
.top-form {
    color: #454545;
    position: relative;
    width: 100%;
    max-width: 680px;
}
.top-form__fields {
    display: flex;
    flex-wrap: wrap;
    color: #454545;
    justify-content: space-between;
}
.top-form__title {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-size: 28px;
    line-height: 110%;
    font-weight: 700;
    margin:  0 0 20px 0;
}
.top-form__fields>div {
    width: 48%;
    position: relative;
}
.top-form__input {
    width: 100%;
    background-color: #ffffff;
    border-radius: 5px;
    border: none;
    border-bottom: 1px solid #ffffff;
    text-shadow: none;
    color: #212529;
    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: 0.5;
}
.top-form__success {
    position: absolute;
    border-radius: 4px;
    padding: 5px 15px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #e4c0be4b;
    display: none;
}
.top-form__success-content {
    position: absolute;
    width: 90%;
    padding: 30px;
    background: rgba(0, 0, 0, 1);
    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;
}

.top-form__input.error {
    padding-bottom: 10px;
}
.top-form__input.error+.error {
    font-size: 15px;
    color: #cc3a26;
    text-align: left;
    margin-top: -35px;
}
#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-item {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-content: center;
}
.benefits-item__title {
    font-size: 22px;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
.benefits-item__icon {
    margin-left: 25%;
    height: 80px;
    width: 80px;
    object-fit: cover;
    margin-bottom: 9px;
}
.benefits-item__icon_1 {
    height: 77px;
}
.benefits-title {
    text-align: center;
}
.benefits-text {
    text-align: center;
    max-width: 650px;
    margin: auto;
    margin-bottom: 15px;
}
.benefits-wrapper {
    display: flex;
    justify-content: space-between;
}
.benefits-item {
    width: 24%;
}
.benefits-item__title {
    line-height: 110%;
}
.benefits-item__title span {
    margin-left: 8px;
}
.intro-text:not(:last-child) {
    margin-bottom: 7px;
}
.intro-item {
    margin-left: 18px;
    list-style: disc;
    margin-bottom: 5px;
}
/* Contacts */
.contacts {
    padding: 50px 0;
    background: #ececec;
}
.contacts-wrapper {
    margin: auto;
    max-width: 1100px;
    display: flex;
    justify-content: space-between;
}
.contacts-item {
    display: flex;
    width: 49%;
    align-items: center;
    padding: 20px 25px;
    background: #fff;
}
.contacts-item__icon {
    max-width: 110px;
    margin-right: 20px;
}
.contacts-item__content {
    text-align: center;
}
.contacts-item__btn {
    max-width: 250px;
    width: 100%;
    margin: 10px auto 0;
    box-shadow: rgb(0 0 0 / 30%) 0px 1px 7px;
}
.contacts-item__btn:hover {
    color: #fff;
}
/* About */
.about {
    padding: 55px 0;
}
.about-wrapper {
    max-width: 1050px;
    margin: auto;
}
h2.about-title, .about-title {
    margin-right: 20px;
    text-align: start;
    line-height: 140%;
    font-size: 42px;
    text-transform: uppercase;
}
.about-wrapper__paragraph {
    width: 60%;
}
.intro-text b {
    color: #D9BF77;
}
.intro-text  span {
    font-weight: 700;
}
.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: 63%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.about-item__title, .junk-content__title, .important-content__title, .steps-title, .testimonials-title {
    font-size: 30px;
    margin-bottom: 12px;
}
.about-item__text:not(:last-child) {
    margin-bottom: 7px;
}
/*Process*/
.process {
    padding: 55px 0;
}
.process-title {
    text-align: center;
}
.process-item {
    flex-direction: column;
    width: 32%;
    box-shadow: rgb(0 0 0 / 10%) 0px 1px 7px;
    padding: 15px 20px;
    margin-right: 15px;
    text-align: center;
    background: #ececec;
}
.process-item__title {
    color: #D9BF77;
    margin-bottom: 8px;
    margin-top: 5px;
}
.process-item__icon {
    width: auto;
    object-fit: contain;
    height: 110px;
}
.process-item__icon_2 {
    height: 100px;
}
.process-wrapper {
    position: relative;
    padding: 0 50px 0 50px;
    min-width: 0;
    width: 100%;
}
.process-item.slick-slide {
    left: 0;
}
.slick-track {
    display: flex;
}
.slick-track .slick-slide {
    height: auto;
}
.process-wrapper .slick-list {
    padding: 0;
    position: relative;
    overflow: hidden;
}
.process-wrapper .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
}
.process-wrapper .slick-dots li:not(:last-child) {
    margin-right: 20px;
}
.process-wrapper .slick-dots button {
    font-size: 0;
    background-color: #212529;
    border-radius: 50%;
    width: 7px;
    height: 7px;
    cursor: pointer;
}
.process-wrapper .slick-dots .slick-active button {
    background-color: #D9BF77;
}
.process-wrapper .slick-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 1000000;
    font-size: 0;
    width: 20px;
    height: 40px;
    cursor: pointer;
    z-index: 1000;
}
.process-wrapper .slick-arrow.slick-prev {
    left: 2px;
    background: url('../img/arrow-down.png') 0 0 / 100% no-repeat;
    transform: rotate(90deg);
    transition: all 0.5s ease;
}
.process-wrapper .slick-arrow.slick-prev:hover, .testimonials-slider .slick-arrow.slick-next:hover {
    opacity: 0.8;
    transition: opacity 0.5s ease;
}
.process-wrapper .slick-arrow.slick-next {
    right: 5px;
    background: url('../img/arrow-down.png') 0 0 / 100% no-repeat;
    transform: rotate(-90deg);
    transition: opacity 0.5s ease;
}
.process-wrapper .slick-arrow.slick-next:hover {
    opacity: 0.8;
    transition: opacity 0.5s ease;
}
/* Service */
.services {
    position: relative;
    background: #ececec;
    padding: 55px 0;
}
.services::before, .services::after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.2;
    background: url(../img/curves.png) no-repeat;
    background-size: contain;
}
.services::after {
    transform: rotate(180deg);
    z-index: -1;
}
.services-title {
    color: #D9BF77;
    text-align: center;
}
.services-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.services-item {
    cursor: pointer;
    width: 32%;
    height: 205px;
    background: #ececec;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    cursor: default;
    position: relative;
    transition: all 0.5s ease;
}
.services-item:nth-last-child(n+4) {
    margin-bottom: 25px;
}
.services-item__img {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 205px;
    object-position: top center;
    display: block;
    object-fit: cover;
    object-position: center bottom;
    margin-bottom: 18px;
    transition: all 0.5s ease;
}
.services-item__content {
    cursor: pointer;
    position: absolute;
    padding: 10px;
    height: 0;
    display: none;
    width: 100%;
    top: 41%;
    text-align: center;
    transform: translateY(-50%);
    transition: all 0.5s ease;
}
.services-item__title {
    font-family: 'Raleway', sans-serif;
    position: absolute;
    text-align: center;
    bottom: 0;
    font-size: 23px;
    text-transform: uppercase;
    width: 100%;
    height: 100%;
    padding: 15px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: rgb(90 57 33 / 70%);
    background: rgb(0 0 0  / 50%);
    text-decoration: underline;
    text-decoration-color: #D9BF77;
    font-weight: 600;
    line-height: 120%;
    transition: all 0.5s ease;
}
.services-item:hover .services-item__img {
    height: 0;
    width: 100%;
    transition: all 0.5s ease;
}
.services-item:hover .services-item__content {
    height: auto;
    display: block;
    transition: all 0.5s ease;
}
.services-item:hover .services-item__title {
    display: none;
    transition: all 0.5s ease;
}
.services-item__text a, .junk-content__text a,
.steps-item__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;
}
.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;
}
.choose {
    padding: 55px 0;
}
.choose-title, .choose-text {
    text-align: center;
    max-width: 70%;
    margin: auto;
}
.choose-wrapper {
    margin-top: 20px;
    display: flex;
    align-items: start;
    justify-content: space-between;
}
.choose-img {
    width: 40%;
    object-fit: contain;
    margin-right: 15px;
}
.choose-list__item {
    list-style: disc;
}
.choose-list__item span {
    font-weight: 600;
}
.choose-content {
    width: 58%;
}
/* CTA */
.CTA {
    padding: 29px 0;
    background: rgba(10.02, 73.73, 61.18, 0.3);
}
h3.CTA-title {
    text-align: center;
    font-size: 55px;
    margin-bottom: 37px;
}
.CTA-btn {
    margin: auto;
    max-width: 350px;
    font-size: 18px;
    font-weight: 600;
    padding: 25px;
    box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1);
}
.CTA-btn span {
    letter-spacing: 3px;
    display: block;
    margin-top: 9px;
    font-size: 37px;
}
.CTA-btn:hover {
    color: #ffffff;
}
.CTA-btn_services {
    margin-top: 37px;
    max-width: 424px;
}
.container_CTA {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.CTA-content {
    width: 65%;
}
.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;
    width: 100%;
    background: #ececec;
    border-left: 2px solid #D9BF77;
    /*  
    border-left: 3px solid #D9BF77;
    border-style: double;
    border-top: 0;
    border-bottom: 0;
    border-right: 0;
    */
    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: #7B3F00;
    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: #D9BF77;
}
.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-left.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;
    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;
    background: #ececec;
}
.FAQ__title {
    text-align: center;
    font-size: 34px;
    margin-bottom: 20px;
}
.FAQ__title {
    max-width: 60%;
    margin: 0 auto 20px;
}
.FAQ-wrapper {
    max-width: 748px;
    margin: 0 auto;
}
.FAQ-item {
/*    border: 2px solid #D9BF77;
  */  box-sizing: border-box;
    border-radius: 2px;
    background: #fff;
    border-radius: 10px;
}
/*.FAQ-item:nth-child(2n+2) {
    border: 2px solid #454545;
}*/
.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: #454545;
    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: #D9BF77;
}
/*.FAQ-item:nth-child(2n+2) .FAQ-item__plus span {
    background: #454545;
}*/
.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(90,57,33, 0.3);
    border-radius: 0px 0px 10px 10px;
    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__bottom.active, .faq-item__bottom.active {
    transition: all 0.5s ease;
    display: block;
}

/*Map*/
.map-home {
    background: #ececec;
    border-top: #D9BF77 1px solid;
    padding: 45px 0;
}
.container_map-home {
    display: flex;
}
.map-wrapper {
    width: 48%;
}
.map-content__text a {
    font-weight: 800;
    text-decoration: underline;
}
.map-link {
    margin-left: auto;
}
.map-content {
    max-width: 600px;
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
}
.map-content__item {
    width: 48%;
    display: flex;
    align-items: flex-start;
}
.map-content__item::before {
    content: '';
    display: block;
    margin-right: 8px;
    margin-top: 10px;
    background: #01091F;
    width: 5px;
    height: 5px;
    border-radius: 50%;
}
.map-content__item:not(:last-child) {
    margin-bottom: 8px;
}
.map-content__link {
    display: inline-block;
    transition: all 0.5s ease;
}
.map-content__link::after {
    content: '';
    width: 0px;
    height: 1px;
    display: block;
    background: #01091F;
    transition: 300ms;
}
.map-content__link:hover::after {
    width: 100%;
}
.map-home__iframe {
    width: 50%;
}
#mapDiv .gm-style>div:nth-child(2) {
    position: static !important;
}
.map-btn {
    width: 70%;
    margin-top: 25px;
    padding: 20px;
    background: #D9BF77;
}
.map-btn:hover {
    color: #ffffff;
    opacity: 0.8;
}
/* Footer */
.footer {
    padding: 40px 0 30px;
    background: #D9BF77;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
}
.footer-wrapper {
    display: flex;
    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 #D9BF77;
    border-left: 2px solid #D9BF77;*/
}
.footer-item__title {
    font-size: 22px;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}
.footer-item:first-child {
    padding-right: 15px;
    border-right: 2px solid #7B3F00;
}
.footer-item_terms a {
    padding: 15px;
    border-left: 2px solid #7B3F00;
    font-weight: 600;
    display: block;
    transition: all 0.5s ease;
    color: #000;
}
a.footer-item__privacy {
    display: block;
    color: #fff;
}
.footer-item_terms a:hover {
    color: #ffffff;
    transition: all 0.5s ease;
}
.footer-item__address, .footer-item__phone, 
.footer-item__email, .footer-item__hours {
    display: flex;
    margin-bottom:7px;
}
.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-call.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: 2px solid #D9BF7755;
    text-align: center;
    display: block;
}
/* Page Contact us Start */
.contact-us {
    padding: 160px 0 50px;
    background: #ececec;
}
.contact-us__title {
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 10px;
    text-align: center;
    font-size: 62px;
}
.contact-us__subtitle {
    color: #D9BF77;
    font-size: 24px;
    max-width: 70%;
    text-align: center;
    font-weight: 700;
    display: block;
    margin: auto;
    margin-top: 18px;
    margin-bottom: 30px;
}
.contact-us__wrapper {
    max-width: 1070px;
    margin: auto;
}
.top-form__contact-us {
    max-width: 1070px;
    margin: auto;
    /*background: linear-gradient(360deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.03));
    */padding: 20px 35px 45px;
    align-items: flex-start;
    height: fit-content;
    /*box-shadow: 0px 3px 15px rgb(0 0 0 / 10%);*/
    position: sticky;
}
.contact-us .top-form__title {
    margin-top: 0;
}
.top-form__btn_contact-us {
    margin: auto;
    width: 100%;
    max-width: 200px;
    margin-left: 0;
    background: #fff;
    color: #D9BF77;
    border: #D9BF77 solid 2px;
    margin-top: 20px;
}
.map iframe {
    width: 100%;
}
.map-content_contact {
    transform: translateX(-80%);
}
.map-content_contact h2.title {
    margin-bottom: 40px;
}
.map-content_contact .contacts-item__btn_map {
    margin-top: 50px;
}
/* Page Services Start */
.bread-crumbs {
    font-size: 15px;
    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: #D9BF77;
}
.top-section__content {
    max-width: 630px;
    margin-left: 7%;
}
.top-section__wrapper {
    display: flex;
    justify-content: space-between;
}
.intro {
    padding: 55px 0;
}
.container_intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.intro-content {
    width: 60%;
}
.intro-bg {
    width: 37%;
}
.intro-bg__img {
    width: 100%;
}
.intro-content__title {
    color: #454545;
}
.intro-content__text:not(:last-child) {
    margin-bottom: 1em;
}
.intro-content__text b {
    color: #D9BF77;
}
.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;
}
.contacts-item__btn_map {
    margin-left: 0;
    margin-right: auto;
    margin-top: 20px;
}
/* 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: #D9BF77;
    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(203 199 141 / 10%);
}
.container_benefits {
    background: none;
}
.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;
    background: #D9BF77;
    color: #ffffff;
    width: 45%;
    position: relative;
}
.contact-content::after {
    content: '';
    position: absolute;
    display: block;
    background: url('../img/circle.png') no-repeat;
    background-size: contain;
    width: 700px;
    height: 300px;  
    left: 0%;
    top: 8%;
    opacity: 0.2;
}
.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: #D9BF77;
}
.top-form__btn {
    box-shadow: 0px 1px 7px rgba(255, 255, 255, 0.3);
}
.top-form_contact .top-form__input {
    border: 1px solid #D9BF77;
}
.top-form_contact .btn {
    max-width: none;
    background: #ffffff;
    color: #D9BF77;
    border: 1px solid #D9BF77;
}
.top-form_contact .btn:hover {
    background: #D9BF77;
    color: #ffffff;
}
.CTA_contact .CTA-bg {
    text-align: center;
}
.CTA_contact .CTA-bg img {
    width: 400px;
}
.CTA_contact .CTA-content {
    width: 80%;
    margin: auto;
}
.CTA_contact .CTA-bg {
    display: none;
}
.CTA_contact .CTA-title {
    text-align: center;
}
.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: #454545;
    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;
}
.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;
}
/*Page About Start*/
.about_about-page {
    background: none;
    color: #000;
}
.top-section_about {
    padding: 145px 0 40px;
}
h2.about-title, .about-title {
    width: 64%;
}
/*Page Furniture Start*/
h2.about-title_furniture {
    width: 90%;
}
/*About page start*/
/*.about_about-page {
    background: #ececec;
}*/
.about_about-page .about-wrapper__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.about_about-page .about-wrapper__paragraph {
    margin-top: -12px;
}
.about-wrapper__img {
    max-width: 430px;
    margin-right: 30px;
    border: 2px solid #cc3a26;
    object-fit: contain;
}
.intro-text_more {
    display: none;
}
.intro-text_last {
    position: relative;
    display: block;
}
.intro-text_last:after {
    position: absolute;
    top: 0px;
    background: linear-gradient(transparent, #ececec);
    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: #D9BF77;
    background: transparent;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    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-down-blue.png') no-repeat;
    background-size: contain;
    width: 22px;
    height: 12px;
    margin-left: 10px;
}
.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(180deg);
}
/*Blog Start*/
.blog-title {
    font-size: 42px;
}
.about-title_blog {
    color: #000;
    margin-bottom: 15px;
    text-transform: inherit;
}
.about_about-page_2-blog {
    background: #fff;
}
.about_about-page_2-blog .intro-text_last:after {
    background: linear-gradient(transparent, #fff);
}
.blog-author {
    margin-bottom: 20px;
}
.blog-author__date span {
    text-decoration: underline;
}
.partners {
    padding: 25px 0;
}
.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;
}
/* Responsive */
@media (max-width: 1200px) {
    h2.title {
        font-size: 36px;
    }
    .container {
        max-width: 984px;
        padding: 0 18px;
        margin: 0 auto;
    }
    .header-logo {
        height: 115px;
    }
    .header-menu__item {
        font-size: 14px;
        width: max-content;
    }
    .header-menu__item:not(:last-child) {
        margin-right: 23px;
    }
    .header-book {
        font-size: 20px;
    }
    .top-form_wrapper {
        right: 1%;
    }
    .container_top-section {
        padding: 140px 0 5px;
    }
    .top-section__content {
        margin-left: 5%;
    }
    .top-section__content-wrapper {
        max-width: 640px;
    }
    .about-item {
        margin-bottom: 25px;
    }
    .services-item__title {
        font-size: 18px;
    }
    h3.dropOff-item__title {
        font-size: 20px;
    }
    .footer-item__title {
        font-size: 19px;
    }
    .footer-wrapper {
        flex-wrap: wrap;
    }
    .map-content {
        max-width: 490px;
        padding-left: 20px;
        margin-bottom: 15px;
    }
    .map-content__text {
        width: 90%;
    }
    .map-link {
        width: 69%;
    }
    .map-link img {
        width: 100%;
    }
    h3.CTA-title {
        font-size: 45px;
    }
    .FAQ__title {
        font-size: 32px;
    }
    .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;
    }
    .full-width-resp {
        width: 185%;
    }
    .full-width-resp_right {
        margin-left: -85%;
    }
    /*Page Contact Start*/
    .map-content_contact {
        margin-bottom: 0;
        transform: translateX(-55%);
    }
}
@media (max-width: 991px) {
    .container {
        max-width: 728px;
        padding: 0 20px;
    }
    h2.title {
        font-size: 34px;
        margin-bottom: 25px;
    }
    h3.title {
        font-size: 26px;
    }
    .header-logo {
        height: 111px;
    }
    .header-logo__img {
        padding-top: 0;
    }
    .header-top {
        margin-bottom: 0;
    }
    .header_right {
        padding-bottom: 0;
    }
    .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: #D9BF77;
        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%);
    }
    .header_right {
        display: flex;
        align-items: center;
        background: #fff;
        color: #D9BF77;
    }
    .header_right::before {
        background: none;
    }
    .header_right::after {
        background: none;
    }
    .header-top {
        max-width: 100%;
    }
    .menu-burger {
        display: block;
        margin-left: 40px;
        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-position: center bottom;
    }
    .top-section::before {
        display: none;
    }
    .top-form__title {
        font-size: 25px;
        margin-top: 10px;
    }
    .top-form_wrapper {
        width: 100%;
        position: static;
    }
    .top-section__wrapper {
        margin: auto;
        flex-wrap: wrap;
    }
    .top-section__content-wrapper {
        padding: 35px 0;
        max-width: none;
    }
    .container_top-section {
        padding: 140px 0 45px;
    }
    .top-section__title {
        font-size: 51px;
        margin-bottom: 15px;
    }
    .top-form {
        margin: auto;
        max-width: 550px;
        margin-bottom: 20px;
    }
    .about-wrapper__paragraph {
        width: 100%;
    }
    .contacts-wrapper {
        flex-wrap: wrap;
    }
    .contacts-item {
        flex-wrap: wrap;
    }
    .contacts-item__icon {
        margin-right: auto;
        margin-left: auto;
        height: 120px;
        object-fit: contain;
        margin-bottom: 7px;
    }
    .contacts-item__content {
        margin: auto;
        width: 100%;
    }
    .contacts-item__text {
        max-width: 205px;
        margin: auto;
    }
    .benefits {
        padding: 45px 0 40px;
    }
    .container_benefits {
        flex-wrap: wrap;
    }
    .benefits-wrapper {
        flex-wrap: wrap;
    }
    .benefits-item {
        width: 48%;
    }
    .benefits-item:nth-child(n+3) {
        width: 48%;
        margin: auto;
        margin-top: 15px;
    }
    .about {
        padding: 40px 0;
    }
    .about-item__img {
        width: 70%;
    }
    .services-item {
        width: 48.5%;        
    }
    .services-item:last-child {
        margin-left: auto;
        margin-right: auto;
    }
    .services-item:nth-last-child(n+2) {
        margin-bottom: 25px;
    }
    .choose-title, .choose-text {
        max-width: 100%;
    }
    .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;
    }
    .contact-content {
        width: 100%;
        box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2);
    }
    .contact-content {
        padding: 40px 114px;
        overflow: hidden;
    }
    .contact-title {
        font-size: 36px;
        margin-bottom: 10px;
    }
    .container_contact-content {
        max-width: 727px;
    }
    .contact-content::after {
        top: -7%;
    }
    .top-form_contact {
        width: 100%;
        max-width: none;
        margin-bottom: 0;
    }
    .prepare-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }
    .prepare-wrapper img {
        margin-right: 0;
        margin-top: -50px;
        margin-bottom: 10px;
    }
    .dontTake-title {
        margin-top: 35px;
        margin-bottom: 5px;
    }
    .container_map {
        flex-wrap: wrap;
    }
    .container_map iframe {
        width: 100%;
        height: 400px;
    }
    .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;
    }
    .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;
    }
    .dropOff-text {
        text-align: start;
    }
    .dropOff-item {
        width: 100%;
        margin-left: 18px;
    }
    .footer-wrapper {
        flex-wrap: wrap;
    }
    .footer-item {
        text-align: center;
        width: 100%;
        border: 0;
    }
    .footer-item:first-child {
        border: 0;
        padding-right: 0;
    }
    .footer-item__address, .footer-item__phone, .footer-item__email, .footer-item__hours {
        justify-content: center;
        margin-bottom: 2px;
    }
    .footer-item:not(:last-child) {
        margin-bottom: 20px;
    }
    .footer-item__title {
        margin-bottom: 5px;
    }
    .footer-item_terms a {
        border: 0;
        padding: 0;
    }
    /*Page Contact Us*/
    .contact-us__title {
        font-size: 51px;
    }
    .contact-us__subtitle {
        font-size: 30px;
    }
    .contact-us__subtitle {
        margin-bottom: 30px;
    }
    .top-form__contact-us {
        padding-bottom: 20px;
    }
    .container_map-home {
        flex-wrap: wrap;
    }
    .map-home__iframe, .map-wrapper {
        width: 100%;
    }
    .map-wrapper {
        margin-bottom: 35px;
    }
    .map-content_contact {
        margin: auto;
        transform: translateX(0);
    }
    
    /*Page About start*/
    h2.about-title, .about-title {
        width: 80%;
    }
    /*Shed removal page start*/
    .about_about-page_2 .about-wrapper__content {
        flex-wrap: wrap;
        justify-content: center;
    }
    .about-wrapper__img {
        max-width: 100%;
        margin-bottom: 20px;
        margin-right: 0;
    }
    .about_about-page_2 .about-wrapper__paragraph {
        width: 100%;
    }
    .blog-title {
        font-size: 32px;
    }
}
@media (max-width: 767px) {
    body {
        font-size: 16px;
    }
    .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-top {
        border: none;
    }
    .header-menu__items {
        padding: 75px 0 15px;
    }
    .header-logo {
        margin-top: -21px;
        height: 97px;
    }
    .header-logo__img {
        width: 140px;
    }
    .header-book {
        font-size: 21px;
        margin-bottom: 0;
    }
    .header.scrolled .header-logo {
        height: 90px;
    }
    .social-media {
        display: none;
    }
    .menu-close {
        top: 44px;
        right: 25px;
    }
    .top-form {
        max-width: none;
    }
    .top-form_wrapper {
        width: 100%;
    }
    .top-form__title {
        font-size: 30px;
		color: #D9BF77;		
    }
    .top-section__content-wrapper {
        padding-bottom: 15px;
    }
    .top-section__wrapper {
        padding-bottom: 45px;
    }
    .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-wrapper__content {
        flex-wrap: wrap;
    }
    h2.about-title, .about-title {
        width: 100%;
    }
    .about-wrapper__paragraph {
        width: 100%;
        margin-bottom: 15px;
    }
    .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, .junk-content__title, .important-content__title, 
    .steps-title, .testimonials-title {
        font-size: 25px;
        margin-bottom: 5px;
    }
    .process-wrapper {
        flex-wrap: wrap;
    }
    .process-item {
        width: 49%;
    }
    .process-item:last-child {
        margin: 15px auto 0;
    }
    .process-item__icon {
        height: 90px;
    }
    .process-item__icon_2 {
        height: 80px;
    }
    .services-item, .services-item__img {
        height: 170px;
    }
    .services-item__title {
        padding: 10px;
    }
    .services-item:nth-last-child(n+4) {
        margin-bottom: 15px;
    }
    .services-item__img {
        width: 100%;
    }
    h2.junk-content__title, h2.tidying-title, h2.important-content__title {
        margin-bottom: 10px;
    }
    .CTA {
        padding: 30px 0;
    }
    .container_CTA {
        flex-direction: column;
    }
    .CTA-content {
        width: 100%;
    }
    .CTA-btn {
        margin: auto;
        padding: 20px 30px;
    }
    .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;
    }
    .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;
    }
    .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;
    }
    .dropOff-text {
        font-size: 16px;
        margin-bottom: 7px;
    }
    .dropOff-item {
        font-size: 16px;
        margin-bottom: 5px;
        margin-left: 0px;
    }
    .footer-item:first-child, .footer-item_terms a {
        border: none;
    }
    .footer-item:nth-child(2) {
        order: 1;
        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;
    }
    /*Page contact start*/
    .contact-us__title {
        font-size: 42px;
    }
    /*Page about start*/
    .blog-author {
        margin-bottom: 7px;
    }
}
@media (max-width: 702px) { 
    .services, .benefits, .testimonials, .about, .contacts, .intro, 
    .hauling, .serving, .whoWe, .linking, .process, .dontTake, .dropOff {
        padding: 30px 0;
    }
    h2.title {
        margin-bottom: 10px;
    }
    .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_right {
        padding-bottom: 0;
    }
    .header-top {
        margin-left: 0;
        border-bottom: none;
    }
    .header.scrolled .header-book {
        padding: 8px;
        font-size: 19px;
    }
    .header.scrolled .header-logo {
        height: 65px;
        margin-top: -8px;
    }
    .header-book {
        margin-left: 10px;
        font-size: 20px;
    }
    .menu-burger {
        margin-left: 25px;
    }
    .top-section {
        background: linear-gradient(360deg, rgba(0, 0, 0, 0.70), rgba(0, 0, 0, 0)), url('../img/painters-bg-1.1-small.webp') no-repeat;
        background-size: cover;
        background-position: center;
    }
    .top-section__wrapper {
        padding-bottom: 15px;
    }
    .top-section__content {
        margin-left: 0;
    }
    .top-section__content-wrapper {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .top-section__text {
        font-size: 17px;
    }
    .top-form__title {
        font-size: 25px;
        margin-bottom: 15px;
        margin-top: 5px;
    }
    .testimonials-slider {
        padding: 0 25px 0 25px;
    }
    .slick-list {
        padding-left: 26px;
    }
    h2.junk-content__title, h2.tidying-title, h2.important-content__title {
        margin-bottom: 10px;
    }
    h3.title {
        font-size: 24px;
    }
    .services-item {
        width: 100%;
    }
    .services-item, .services-item__img {
        height: 200px;
    }
    .choose-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }
    .choose-content, .choose-img {
        width: 100%;
        margin-right: 0;
    }
    .choose-content {
        margin-left: 10px;
    }
    .footer-wrapper {
        flex-wrap: no-wrap;
        flex-direction: column;
    }
    .footer-item:nth-child(2) {
        margin-left: auto;
    }
    .footer-item {
        margin: auto;
    }
    .footer-item:not(:last-child) {
        margin-bottom: 0;
    }
    .footer-item_terms {
        margin-top: 12px;
    }
    .footer {
        padding-top: 25px;
    }
    .footer-logo__img {
        width: 130px;
    }
    .contact-content {
        padding: 35px 60px;
    }
    .CTA-btn_phone br {
        display: block;
    }
    .before-after .note::before, .note::after {
        width: 47px;
        height: 47px;
    }
    .note span {
        background: none;
        padding: 0;
        margin: auto;
        padding-right: 20px;
        width: 127px;
    }

    .header-book::before {
        width: 27px;
        height: 27px;
    }
    .container_blog {
        padding-bottom: 0;
    }
    .intro-blog__img {
        height: 500px;
    }
    .contact-us {
        padding-bottom: 30px;
    }
    .contact-us__title {
        font-size: 38px;
    }
    .contact-us__subtitle {
        font-size: 25px;
        margin-bottom: 15px;
    }
    .map-content_contact h2.title {
        margin-bottom: 20px;
    }
    .map-content_contact .contacts-item__btn_map {
        margin-top: 30px;
    }
    .map-home__iframe {
        height: 300px;
    }
    .map-btn {
        margin: 20px auto 0;
    }
    h3.dropOff-item__title {
        font-size: 20px;
    }
    .blog-title {
        font-size: 26px;
    }
}
@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: 19px;
        letter-spacing: 1px;
    }
    .header-book::before {
        margin-right: 5px;
        width: 25px;
        height: 25px;
    }
    .header.scrolled .header-book::before {
        width: 17px;
        height: 17px;
    }
    .header.scrolled .header-book {
        padding: 5px 20px;
    }
    .header-logo {
        width: 100px;
        height: 70px;
    }
    .header-logo__img {
        width: 121px;
    }
    .top-form__title {
        margin: 15px 0 12px;
    }
    .dontTake-item {
        margin-top: 7px;
    }
    .tidying {
        padding: 30px 0;
    }
    .footer-logo__img {
        margin-bottom: 10px;
        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;
    }
    .note span {
        margin: auto;
    }
    .note::before, .note::after {
        width: 55px;
    }
    .prepare-wrapper img {
        max-width: 279px;
        margin-top: -30px;
    }
    .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;
    }
    .contacts-item__icon {
        height: 100px;
    }
    .top-form__btn_contact-us {
        margin: auto;
    }
    .contact-us {
        padding-top: 110px;
    }
    .dropOff-item {
        padding: 12px;
    }
    h3.dropOff-item__title {
        padding-bottom: 0;
    }
}
@media (max-width: 457px) {
    .header.scrolled .header-book {
        font-size: 19px;
    }
}
@media (max-width: 450px) {
    .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.scrolled .header-book {
        padding: 7px;
        font-size: 17px;
    }
    .header.scrolled .header-logo {
        width: 90px;
    }
    .top-section {
        padding-bottom: 25px;
    }
    .contacts-item {
        width: 100%;
        padding: 5px 25px 20px;
    }
    .contacts-item:first-child {
        margin-bottom: 15px;
    }
    .top-form__fields>div {
        width: 100%;
    }
    .benefits-item {
        width: 100% !important;
        text-align: center;
    }
    .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, .junk-content__title, .important-content__title, 
    .steps-title, .testimonials-title {
        font-size: 22px;
        margin-bottom: 3px;
    }
    .process-wrapper {
        padding: 0 20px;
    }
    .process-item {
        width: 100%;
        padding: 10px;
    }
    .process-wrapper .slick-arrow.slick-prev {
        left: -12px;
    }
    .process-wrapper .slick-arrow.slick-next {
        right: 0px;
    }
    .process-item__icon {
        height: 75px;
    }
    .services-item__img {
        margin-bottom: 9px;
    }
    .services-item__title {
        font-size: 17px;
    }
    .steps-item {
        width: 100%;
        padding-top: 50px;
    }
    .steps-item, .steps-item:nth-child(n+4) {
        margin-top: 58px;
    }
    .steps-item:nth-child(2n+1) {
        margin-right: 0px;
    }
    .steps-item__number {
        top: -26%;
    }
    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;
    }
    .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;
    }
    .furniture-wrapper__title, .serving-content__title,
    .benefits-title {
        font-size: 24px;
    }
    .hauling-title {
        font-size: 21px;
    }
    .furniture-list__item {
        margin-bottom: 5px;
    }
    .note span {
        font-size: 28px;
        padding-right: 10px;
    }
    .dontTake-item {
        width: 100%;
    }
    .footer-item__title {
        font-size: 17px;
    }
    .footer-item__hours {
        display: flex;
        flex-direction: column;
    }
    .footer-item__hours span {
        display: block;
    }
    .contact-us__title {
        font-size: 30px;
    }
    .contact-us__subtitle {
        font-size: 20px;
    }
    .top-form__contact-us {
        padding: 20px;
    }
    .dropOff-item__wrapper_3 svg {
        width: 22px;
        height: 22px;
    }
    .dropOff-item__address {
        width: 340px;
    }
    .top-section_about {
        padding: 100px 0 40px;
    }
    .map-home__iframe {
        height: 200px;
    }
}
@media (max-width: 429px) {
    .header-book {
        font-size: 19px;
        padding: 10px 7px;
    }
    .header-book::before {
        width: 23px;
        height: 23px;
    }
    .intro-blog__img {
        height: 320px;
    }
}
@media (max-width: 400px) {
    .header-logo {
        display: none;
    }
    .header-book {
        padding: 15px 15px;
    }
    .header-top {
        margin-left: 0;
    }
    .menu-burger {
        margin-left: auto;
    }
    .header_right {
        width: 100%;
    }
    .about-item {
        margin-bottom: 17px;
    }
    .about-item__bg {
        margin-top: 10px;
    }
    .process-wrapper {
        padding: 0 18px;
    }
    .process-wrapper .slick-arrow.slick-next {
        right: -2px;
    }
    .process-wrapper .slick-arrow.slick-prev {
        left: -7px;
    }
    .testimonials-item__author {
        flex-wrap: wrap;
    }
    .testimonials-item__author-name {
        margin-top: 10px;
        margin-left: 0;
        width: 100%;
    }
    .steps-item:last-child {
        margin-top: 65px;
    }
    .CTA-btn span {
        font-size: 24px;
    }
    .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 span {
        font-size: 26px;
    }
    .container_intro:first-child {
        margin-bottom: 12px;
    }
}
@media (max-width: 356px) {
    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-form__input, .top-form__textarea {
        padding: 7px 5px;
    }
    .process-wrapper {
        padding: 0 9px;
    }
    .process-wrapper .slick-arrow.slick-prev {
        display: none;
    }
    .process-wrapper .slick-arrow.slick-next {
        right: 0;
    }
    .container_map iframe {
        height: 200px;
    }
    .before-after .note::before, .note::after {
        width: 40px;
        height: 40px;
    }
    .intro-blog__img {
        height: 250px;
    }
    .intro-infographic img {
        max-width: 270px;
    }
    .footer-item_terms, .footer-item:first-child {
        width: 70%;
    }
    .dropOff-item__address {
        width: 260px;
    }
}
@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;
    }
    .process-wrapper {
        padding: 0 7px;
    }
    .process-wrapper .slick-arrow.slick-next {
        right: 2px;
    }
    .benefits-item:nth-child(2), .benefits-item:last-child {
        margin-top: 10px;
    }
    .steps-item__number {
        top: -20%;
    }
    .dropOff-item__address {
        width: 211px;
    }
    .dropOff-item__site {
        width: 211px;
        overflow-x: hidden;
    }
}