html {
    scroll-behavior: smooth;
}
*{
    box-sizing: border-box;
}
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 140%;
    font-weight: 400;
    padding: 0;
    margin: 0;
    color: #333333;
    letter-spacing: 0.02em;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    line-height: 140%;
    font-weight: 700;
    margin: 0;
    padding: 0;
}
h2.title {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    line-height: 110%;
    font-weight: 700;
    margin-bottom: 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: 18px;
    font-weight: 400;
    color: #ffffff;
    display: block;
    text-shadow: 0-1px 0 rgba(255,255,255,.2);
    border-radius: 5px;
    background: #23861D;
    max-width: 680px;
    width: 100%;
    padding: 15px;
    cursor: pointer;
    text-align: center;
    transition: all 0.5s ease;
}
.btn:hover {
    opacity: 0.8;
    color: #fff;
    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%;
}

/*header*/
.header {
    position: fixed;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    transition: all 0.5s ease;
    color: #000000ff;
    box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2);
    background: #ffffff; 
    transition: all 0.5s ease;
}
.header.scrolled {
    top: 0;
    z-index: 1002;
    transition: all 0.5s ease;
}
.header.scrolledDown {
    top: 7px;
    transition: all 0.5s ease;
}
.header.scrolled .header-logo {
    transition: all 0.5s ease;
}
.header.scrolled .header-logo__img {
    width: 60px;
    transition: all 0.5s ease;
}
.header.scrolled .header-book {
    padding: 8px 15px;
    font-size: 20px;
    transition: all 0.5s ease;
}
.header.scrolled .header-book::before {
    width: 20px;
    height: 20px;
    transition: all 0.5s ease;
}
.header__wrapper {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-logo {
    margin-top: -5px;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    padding: 8px 15px 0;
    transition: all 0.5s ease;
}
.header-logo:hover {
    transition: all 0.5s ease;
    opacity: 0.8;
}
.header-logo__img {
    width: 85px;
    object-fit: cover;
    transition: all 0.5s ease;
}
.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 {
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 600;
    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%);
    content: '';
    width: 0;
    height: 3px;
    background-color: #23861D;
    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: #23861D;
}
.header-submenu__item:not(:last-child) {
    margin-bottom: 10px;
}
.header-submenu__item.active {
    color: #23861D;
}
.header-info {
    display: flex;
}
.header-info__phone {
    font-size: 17px;
    padding: 22px;
    border-radius: 20px;
    transition: opacity 0.5s ease;
}
.header-info__phone_burger {
    display: none;
}
.header-book {
    display: flex;
    align-items: center;
	font-size: 23px;
    letter-spacing: 2px;
	font-weight: 600;
    padding: 22px 17px;
    border-radius: 4px;
    background: #23861D;
    color: #ffffff;
    transition: all ease 0.5s;
}
.header-book::before {
    content: '';
    display: block;
    margin-right: 12px;
    width: 27px;
    height: 27px;
    background: url('../img/telephone-call.png') no-repeat;
    background-size: cover;
    transition: all 0.5s ease;
}
.header-book:hover {
    color: #ffffff;
    transform: scale(1.05);
    transition: all ease 0.5s;
}
.menu-burger {
    display: none;
}
/*top section*/
.top-section {
    /*this*/background: linear-gradient(90deg, rgba(46, 46, 46, 0.55), rgba(46, 46, 46, 0.8)), url('../img/Untitled\ design\ \(6\).jpg') no-repeat;
    /*or this*/background: linear-gradient(90deg, rgba(46, 46, 46, 0.7), rgba(46, 46, 46, 0.85)), url('../img/cape-coral-bg.jpg') no-repeat;
    background-size: cover;
    background-position: right center;
    background-attachment: fixed;
    height: 100vh;
}
.container_top-section {
    padding: 170px 0 75px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-section__content {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.top-section__content-wrapper {
    max-width: 680px;
    margin-top: 70px;
    width: auto;
}
.top-section__title {
    color: #fff;
    text-decoration-line: 2px;
    font-size: 53px;
    line-height: 109%;
    margin-bottom: 35px;
    position: relative;
    display: inline-block;
}
.top-section__title span {
    display: block;
}
/*.top-section__title::after {
    content: '';
    position: absolute;
    left: 62px;
    bottom: -22px;
    width: 85%;
    height: 75px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='10' viewBox='0 0 100 10'><path d='M0,5 Q5,0 10,5 T20,5 T30,5 T40,5 T50,5 T60,5 T70,5 T80,5 T90,5 T100,5' stroke='%2300803a' fill='transparent' stroke-width='3' stroke-linecap='round'/></svg>") repeat-x;
    background-size: 100%;
    animation: waveMove 10s linear infinite;
} 
@keyframes waveMove {
  from { background-position-x: 0; }
  to { background-position-x: 40px; }
}*/
.top-section__text {
    color: #fff;
}
.top-form {
    color: #000000ff;
    position: relative;
    width: 100%;
    max-width: 450px;
    padding: 8px 15px 15px;
    /*background: rgba(45, 45, 45, 0.1);
    border: 1px solid #fff;
    border-radius: 5px;*/
}
.top-form__fields {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.top-form__title {
    color: #23861D;
    text-shadow: #333 0px 0px 15px;
    font-size: 23px;
    text-transform: uppercase;
    line-height: 110%;
    font-weight: 700;
    margin: 5px 0 15px;
}
.top-form__input {
    width: 100%;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 5px;
    border: none;
    border-bottom: 1px solid #ffffff;
    text-shadow: none;
    color: #000000ff;
    font-weight: 300;
    padding: 10px 12px;
    margin-bottom: 17px;
    font-size: 16px;
}
.top-form__textarea {
    border: 2px solid #ffffff;
}
.top-form__input::placeholder, .top-form__textarea::placeholder {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #000000ff;
    opacity: 0.5;
}
.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;
}
.top-form__fields>.top-form__options {
    width: 100%;
    margin-bottom: 17px;
}
.top-form__options-title {
    display: block;
}
.top-form__options-title, .top-form__option {
    color: #fff;
    margin-bottom: 5px;
    font-size: 15px;
}
.top-form__option  {
    background: #fff;
    color: #333;
    padding: 5px 8px 5px 5px;
    border-radius: 5px;
    margin-right: 15px;
}
.top-form__input.error+label.error, label.error {
    font-size: 15px;
    color: #cc3a26;
    text-align: left;
    margin-top: -17px;
}
.top-form__option {
    position: relative;
}
.top-form__option label.error {
    position: absolute;
    bottom: -19px;
    width: 200%;
}
#services {
    outline: none;
}
#top-form__home > .remarck, #top-form__contact  > .remarck { 
    display:none; 
}
.top-form__note {
    color: #ffffff7c;
    font-size: 14px;
    margin-top: 15px;
    line-height: 110%;
}
/* About */
.about, .whyChoose, .FAQ {
    padding: 55px 0;
    background: rgb(46 46 46 / 10%);
}
h2.about-title {
    text-align: center;
    margin-bottom: 40px;
}
.about-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}
.about-item:last-child {
    margin-bottom: 0px;
}
.about-item__left, .about-item__bg {
    width: 50%;
}
.about-item__img {
    width: 90%;
    box-shadow: 0 0 5px 0 rgb(0 0 0 / 50%);
    border-radius: 5px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.about-item__title, .testimonials-title {
    font-size: 30px;
    margin-bottom: 12px;
}
.about-item__text:not(:last-child) {
    margin-bottom: 7px;
}
/* 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(46, 46, 46, 0.1);
    display: flex;
    flex-direction: column;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 2px rgb(0 0 0 / 10%);
    padding: 0 0 25px 0;
    width: 32%;
    transition: all 0.5s ease;
    cursor: default;
}
.services-item:nth-last-child(n+4) {
    margin-bottom: 25px;
}
.services-item__img {
    width: 100%;
    height: 200px;
    border-bottom: #fff 2px solid;
    display: block;
    object-fit: cover;
    margin-bottom: 18px;
}
.services-item__title {
    font-size: 22px;
    padding: 0 15px;
    margin-bottom: 10px;
    font-weight: 800;
    line-height: 120%;
}
.services-item__text {
    padding: 0 15px;
}
.services-item:hover {
    transform: scale(1.03);
    border-bottom: #23861D 1px solid;
    transition: all 0.5s ease;
}
.services-item__text a, .whoWe-text a, .contact-content__text a, .about-item__left a, .dontTake-text a  {
    text-decoration: underline;
    cursor: pointer;
    position: relative;
}
.services-btn {
    margin: auto;
    margin-top: 25px;
    font-weight: 700;
    max-width: 270px;
}
.services-btn:hover {
    color: #ffffff;
}
.services-subtitle {
    text-align: center;
    font-size: 28px;
    margin: 25px auto 10px;
}
.services ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 10px;
    height: 5px;
}
.services ::-webkit-scrollbar-thumb {
    background: #23861D; 
    border-radius: 10px;
}
.services ::-webkit-scrollbar {
    height: 4px;              /* height of horizontal scrollbar ← You're missing this */
    border: 1px solid #d5d5d5;
}
/* whyChoose */
.whyChoose {
    background: linear-gradient(90deg, rgba(46, 46, 46, 0.1), rgba(46, 46, 46, 0.1)), url(../img/bg1.jpg) no-repeat;
    background-position: center bottom;
    background-size: 80%;
}
.whyChoose-title {
    text-align: center;
}
.whyChoose-text {
    text-align: center;
    line-height: 140%;
    max-width: 1000px;
    margin: auto;
}
.whyChoose-wrapper {
    margin-top: 35px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.whyChoose-item {
    width: 48%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.whyChoose-item span {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: #23861D;
    width: 70px;
    height: 70px;
    font-size: 22px;
    font-weight: 700;
    border-radius: 50%;
}
.whyChoose-item div {
    width: 85%;
    margin-left: 10px;
}
.whyChoose-item__title {
    margin-bottom: 10px;
}
/*CTA*/
.cta {
    background: linear-gradient(90deg, rgba(46, 46, 46, 0.93), rgba(46, 46, 46, 0.9), rgba(45, 99, 59, 0.9), rgb(45, 99, 59)), url(../img/junk-removal-cape-coral-fl.jpg) no-repeat;
    color: #fff;
    padding: 55px 0;
    background-size: cover;
    background-position: center 55%;
}
h2.cta-title {
    font-size: 48px;
    line-height: 110%;
    max-width: 820px;
    margin-bottom: 20px;
}
.cta-btns {
    display: flex;
    justify-content: space-between;
    width: 58%;
    margin-top: 40px;
}
.cta-btn {
    width: 48%;
}
.cta-btn_1 {
    background: transparent;
    border: 2px solid #fff;
}
.cta-btn_1:hover {
    background: #23861D;
    border: #23861D 2px solid;
}
.cta-btn_2:hover {
    color: #fff;
}
/* Testimonials */
.testimonials {
    padding: 55px 0;
}
.testimonials-title {
    text-align: center;
}
.testimonials-text {
    max-width: 800px;
    text-align: center;
    margin: auto;
    margin-bottom: 25px;
}
.testimonials-item {
    padding: 20px;
    border-radius: 5px;
    max-width: 500px;
    width: 100%;
    background: rgb(46 46 46 / 10%);
    margin-left: 25px;
    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: #23861D;
    font-weight: 600;
    font-size: 18px;
    text-decoration: underline;
    margin-left: 15px;
}
.testimonials-slider {
    position: relative;
    padding: 0 50px 0 70px;
    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: 25px auto 0;
}
.testimonials-slider .slick-dots li:not(:last-child) {
    margin-right: 20px;
}
.testimonials-slider .slick-dots button {
    font-size: 0;
    background-color: #000000ff;
    border-radius: 50%;
    width: 7px;
    height: 7px;
    cursor: pointer;
}
.testimonials-slider .slick-dots .slick-active button {
    background-color: #23861D;
}
.testimonials-slider .slick-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 1000000;
    font-size: 0;
    width: 50px;
    height: 50px;
    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;
}
.FAQ__title {
    text-align: center;
    font-size: 34px;
    margin-bottom: 20px;
}
.FAQ-wrapper {
    max-width: 748px;
    margin: 0 auto;
}
.FAQ-item {
    border: 2px solid #23861D;
    box-sizing: border-box;
    border-radius: 15px;
}
.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: #333333;
    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: #23861D;
}
.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(58, 168, 87, 0.1);
    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__bottom.active, .faq-item__bottom.active {
    transition: all 0.5s ease;
    display: block;
}
/*map*/
.map {
    padding: 40px 0;
    background: linear-gradient(90deg, rgba(46, 46, 46, 0.1), rgba(46, 46, 46, 0.1)), url(../img/bg2.jpg) no-repeat;
    background-size: 63%;
    background-position: 7% bottom;
}
.map-title {
    text-align: center;
    margin-bottom: 1.2em;
}
.map-text {
    max-width: 850px;
    margin: auto;
}
.container_map {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.map-text {
    margin-bottom: 10px;
}
.map iframe {
    width: 44%;
}
.map-wrapper {
    width: 54%;
}
.container_map iframe {
    margin-left: 20px;
    margin-top: 25px;
}
.map-item:nth-child(1) {
    margin-right: 5px;
}
/*DontTake*/
.dontTake {
    padding: 55px 0;
}
.dontTake-wrapper {
    max-width: 900px;
    margin: auto;
}
.dontTake-text {
    margin-bottom: 5px;
}
.dontTake-text span {
    font-weight: 700;
}
.dontTake-list {
    list-style: disc;
    margin: 10px 0 10px 20px;
}
.dontTake-list span {
    font-weight: 700;
}
/* Footer */
.footer {
    padding: 40px 0 30px;
    background: #333333;
    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;
}
.footer-item__privacy {
    display: block;
}
.footer-item:first-child {
    padding-right: 15px;
    border-right: 2px solid #23861D;
}
.footer-item_terms a {
    padding: 15px;
    border-left: 2px solid #23861D;
    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:first-child {
    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 #23861D55;
    text-align: center;
    display: block;
}
/* Page Services Start */
.bread-crumbs {
    color: #fff;
    font-size: 15px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}
.bread-crumbs__first {
    color: #d2d2d2bc;
}
.bread-crumbs__line::before {
    content: ">";
    background-size: cover;
    display: block;
    margin: -10px 7px 0 20px;
    font-size: 18px;
    width: 20px;
    height: 10px;
}
.top-section_inner {
    height: auto;
}
.top-section_inner .top-section__content-wrapper {
    margin-top: 0;
}
.container_inner {
    padding: 120px 20px 65px;
}
.top-section_inner {
    background-size: cover;
    background-position: center bottom;
}
.top-section_inner .top-section__btn {
    max-width: 330px;
    font-size: 19px;
    padding: 18px;
    border-radius: 10px;
    box-shadow: rgba(47, 47, 47, 0.05) 0px 2px 0px;
}
.map {
    padding: 25px 0;
}
.container_map {
    display: flex;
    justify-content: space-between;
}
.map-content {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.map-content__item {
    width: 15%;
    line-height: 110%;
    text-align: center;
    cursor: pointer;
    transition: transform 0.5s ease;
}
.map-content__item:hover {
    transition: transform 0.5s ease;
    transform: scale(1.05);
}
.map-content__item:not(:last-child) {
    margin-right: 30px;
}
.map-content__item::before {
    content: '';
    display: block;
    margin-bottom: 3px;
    width: 15px;
    height: 22px;
    background: url('../img/address-1.png') no-repeat;
    background-size: contain;
    margin-left: 50%;
}
.map-content_home {
    flex-wrap: wrap;
}
.map-content_home .map-content__item {
    margin-bottom: 15px;
}
/* Contact&About page start */
.whoWe {
    padding: 55px 0;
}
.whoWe-wrapper {
    max-width: 900px;
}
.whoWe-title {
    position: relative;
}
.whoWe-title::before {
    position: absolute;
    content: '';
    display: block;
    background: #23861D;
    height: 3px;
    width: 100px;
    bottom: -10px;
}
.whoWe-text {
    margin-bottom: 8px;
    line-height: 140%;
}
.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: #64816c;
    color: #ffffff;
    width: 45%;
    position: relative;
}
.top-form_contact {
    padding: 65px 10px;
    width: 55%;
    max-width: none;
}
.top-form_contact .top-form__title {
    margin-top: 0;
    color: #23861D;
    text-shadow: none;
}
.top-form_contact .top-form__input, .top-form_contact .top-form__option {
    border: 1px solid #23861D;
}
.top-form_contact .top-form__options-title {
    color: #333333;
}
.top-form_contact .btn {
    max-width: none;
    background: #ffffff;
    color: #23861D;
    border: 1px solid #23861D;
}
.top-form_contact .btn:hover {
    background: #23861D;
    color: #ffffff;
}
.map_contactPage {
    padding: 0;
}
.map_contactPage .map_contact {
    width: 100%;
}
.footer-item_contactPage {
    margin-top: 15px;
    padding-top: 15px;
    border-top: #fff solid 1px;
}
.footer-item_contactPage>div {
    font-size: 16px;
}
.header_privacy {
    background: #333333;
    color: #ffffff;
}
.privacy {
    padding: 15px 0;
}
.container_privacy {
    padding: 90px 0;
}
/* Shed and other Page start*/

.top-form_contact {
    padding: 30px 50px 45px 40px;
}
/* Thank you */
.thankYou-wrapper {
    padding: 50px 20px;
    max-width: 800px;
    margin: auto;
    text-align: center;
    box-shadow: rgb(0 0 0 / 10%) 0px 1px 7px;
    margin-top: -55px;
    margin-bottom: 55px;
    background: #fff;
}
.thankYou-icon {
    width: 70px;
    margin-bottom: 10px;
}
.thankYou-title {
    font-size: 38px;
}
.thankYou-text {
    font-size: 21px;
    margin-bottom: 8px;
    margin-top: 3px;
}
.thankYou-ps {
    color: #a8a8a8;
    font-size: 16px;
}
.thankYou-btn {
    margin: 25px auto 0;
    max-width: 350px;
}
.thankYou-btn:hover {
    color: #fff;
}
.about_inner .about-item {
    justify-content: space-between;
}
.about_inner .about-item__bg  {
    width: 37%;
}
.about_inner .about-item__img  {
    width: 100%;
}
.about_inner .about-item__left {
    width: 60%;
}
.about-item__subtitle {
    margin: 10px 0 8px;
}
.about-item_list {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 8px;
}
.about-item_list span {
    font-weight: 700;
}
.process {
    padding: 50px 0;
}
.process-wrapper {
    display: flex;
    justify-content: space-between;
}
.process-item {
    background: rgb(46 46 46 / 10%);
    padding: 12px;
    border-radius: 5px;
    border: #23861D 1px solid;
    box-shadow: 0px 1px 3px rgb(0 0 0 / 20%);
    width: 24%;
    text-align: center;
    transition: all 0.5s ease;
}
.process-item:hover {
    transform: scale(1.03);
    transition: all 0.5s ease;
}
.process-item h3 {
    color: #23861D;
}
.process-item span {
    margin: 0 auto 15px;
}
.process-item img {
    max-width: 75px;
    opacity: 0.3;
}
.links-wrapper {
    display: flex;
    justify-content: space-between;
}
.links-item {
    width: 30%;
}
.img-container {
    display: flex;
    justify-content: space-between;
}
.img-container img {
    width: 48%;
}
/* Responsive */
@media (max-width: 1200px) {
    h2.title {
        font-size: 36px;
    }
    .container {
        max-width: 984px;
        padding: 0 18px;
        margin: 0 auto;
    }
    .header-logo {
        width: 187px;
    }
    .header-menu__item {
        font-size: 18px;
        width: max-content;
    }
    .header-menu__item:not(:last-child) {
        margin-right: 23px;
    }
    .container_top-section {
        padding: 140px 0 75px;
    }
    .top-section__content-wrapper {
        max-width: 560px;
    }
    .top-form__options-title {
        font-size: 16px;
    }
    .about-item {
        margin-bottom: 25px;
    }
    .services-item {
        padding: 20px 12px;
    }
    .services-item__img {
        width: 280px;
        height: 190px;
        margin-bottom: 12px;
    }
    .FAQ__title {
        font-size: 32px;
    }
    .top-section_furniture {
        background-position: 85% 85%;
    }
    .container_furniture {
        padding: 110px 18px 60px;
    }
    .container_contact-content {
        max-width: 390px;
    }
    .container_contact-form {
        max-width: 520px;
    }
}
@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: #23861D;
        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;
        margin-left: 0;
    }
    .header-menu__item.active::after {
        background: #333;
        height: 1px;
    }
    .header-submenu {
        transform: translateX(-32%);
    }
    .header-menu__item_more:hover .header-submenu {
        background: rgb(45, 45, 45);
    }
    .menu-burger {
        display: block;
        cursor: pointer;
    }
    .menu-burger span {
        display: block;
        width: 35px;
        height: 3px;
        background: #000000ff;
    }
    .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;
        font-weight: 600;
    }
    .header-info__phone::before {
        display: none;
    }
    .top-section {
        height: auto;
    }
    .top-section__slider {
        margin: auto
    }
    .top-section__content {
        flex-wrap: wrap;
    }
    .top-section__content-wrapper {
        margin-top: 0;
        max-width: 100%;
    }
    .container_top-section {
        padding: 140px 0 40px;
    }
    .top-section__title {
        font-size: 51px;
        margin-bottom: 15px;
    }
    .top-form {
        margin: 25px auto 0;
        max-width: 550px;
        margin-bottom: 20px;
    }
    .about {
        padding: 40px 0;
    }
    .about-item {
        flex-wrap: wrap;
    }
    .about-item__left, .about-item__bg {
        width: 100%;
    }
    .about-item__bg {
        margin-top: 20px;
    }
    .about-item__img {
        width: 100%;
    }
    .services-item {
        width: 48.5%;        
    }
    .services-item:nth-last-child(n+3) {
        margin-bottom: 25px;
    }
    .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;
    }
    .container_furniture {
        padding: 125px 18px 135px    ;
    }
    .top-section_furniture {
        background-size: 33%;
        background-position: 85% bottom;
    }
    .map-wrapper {
        width: 100%;
    }
    .map-content__item {
        width: 12%;
    }
    .map-content__item:not(:last-child) {
        margin-right: 20px;
    }
    .map-content {
        margin-top: 22px;
    }
    .whoWe {
        padding: 45px 0;
    }
    .map_contact {
        height: 320px;
    }
    #top-section_contact .top-section__slider {
        margin-left: 0;
    }
    #top-section_contact .top-section__title span {
        display: block;
    }
    .contact-wrapper {
        flex-wrap: wrap;
    }
    .contact-content {
        width: 100%;
        box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2);
    }
    .contact-content {
        padding: 40px 114px;
        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;
    }
    .container_contact-form {
        max-width: 728px;
        margin: auto;
    }
    .container_map {
        flex-wrap: wrap;
    }
    .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;
    }
    .container_map iframe {
        margin-left: 0;
    }
    .footer-wrapper {
        flex-wrap: wrap;
    }
}
@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;
        height: auto;
    }
    .header-logo {
        width: 183px;
    }
    .header.scrolled .header-logo {
        width: 175px;
    }
    .menu-close {
        top: 44px;
        right: 25px;
    }
    .top-form {
        max-width: none;
    }
    .top-form__title {
		color: #23861D;		
    }
    .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;
    }
    .about-item {
        flex-wrap: wrap;
    }
    .about-item__left, .about-item__bg {
        width: 100%;
    }
    .about-item__bg {
        margin-top: 15px;
    }
    .about-item__title, .testimonials-title {
        font-size: 25px;
        margin-bottom: 12px;
    }
    .services-item:nth-last-child(n+4) {
        margin-bottom: 15px;
    }
    .services-item__img {
        width: 100%;
    }
    .services-item__title {
        font-size: 20px;
        margin-bottom: 7px;
    }
    .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;
    }
    .cta-btns {
        margin-top: 25px;
        width: 100%;
    }
    .cta-text {
        text-align: center;
    }
    .bread-crumbs {
        margin-bottom: 30px;
    }
    .map-content {
        flex-wrap: wrap;
    }
    .map-content__item {
        width: 22%;
    }
    .map-content__item:not(:last-child) {
        margin-right: 15px;
    }
    .map-content__item:nth-child(n+5) {
        margin-top: 10px;
    }
    .map-content__item::before {
        margin-left: 42%;
    }
    .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;
    }
    .top-section_inner {
        padding-bottom: 45px;
        background-position: bottom;
        background-size: auto;
    }
    .whoWe-title::before {
        left: 50%;
        transform: translateX(-50%);
    }
    .about_inner .about-item {
        flex-wrap: wrap;
    }
    .about_inner .about-item__left {
        width: 100%;
    }
    .about_inner .about-item__bg {
        width: 75%;
        margin: 10px auto 0;
    }
    .process-wrapper {
        flex-wrap: wrap;
    }
    .process-item {
        width: 49%;
    }
    .process-item:nth-last-child(n+3) {
        margin-bottom: 10px;
    }
}
@media (max-width: 702px) { 
    .services, .testimonials, .about, .FAQ, .whyChoose, 
    .whoWe, .map, .dontTake {
        padding: 30px 0;
    }
    h2.title {
        margin-bottom: 15px;
    }
    .whoWe-title::before {
        height: 2px;
    }
    .container_contact-form {
        max-width: 727px;
    }
    .container_contact-form {
        padding: 0;
    }
    .top-form_contact {
        padding: 20px 10px 40px;
    }
    .contact-title {
        font-size: 30px;
        margin-bottom: 7px;
    }
}
@media (max-width: 600px) { 
    h2.title {
        margin-bottom: 17px;
    }
    h2.top-section__title, .top-section__title {
        font-size: 38px;
    }
    .top-section {
        /*or this*/background: linear-gradient(90deg, rgba(46, 46, 46, 0.7), rgba(46, 46, 46, 0.85)), url('../img/cape-coral-bg-small.jpg') no-repeat;
        background-size: cover;
        background-position: right center;
        background-attachment: fixed;
    }
    .top-section__text {
        font-size: 17px;
    }
    .top-form__options-title {
        display: block;
    }
    .top-form__option {
        margin-left: 0;
    }
    .whyChoose {
        background-position: center;
        background-size: 115%;
    }
    .whyChoose-wrapper {
        margin-top: 25px;
    }
    .whyChoose-item {
        width: 100%;
        margin-bottom: 25px;
    }
    .whyChoose-item__title {
        margin-bottom: 5px;
    }
    .cta {
        background: linear-gradient(90deg, rgba(46, 46, 46, 0.93), rgba(46, 46, 46, 0.9), rgba(45, 99, 59, 0.9), rgb(45, 99, 59)), url(../img/junk-removal-cape-coral-fl-small.jpg) no-repeat;
        background-size: cover;
        background-position: center 55%;
    }
    .testimonials-slider {
        padding: 0 25px 0 25px;
    }
    .testimonials-slider .slick-arrow.slick-next, .testimonials-slider .slick-arrow.slick-prev {
        display: none !important;
    }
    .slick-list {
        padding-left: 26px;
    }
    h2.junk-content__title {
        margin-bottom: 10px;
    }
    .map {
        background-position: 5% top;
        background-size: 127%;
    }
    .map iframe {
        width: 100%;
    }
    .map iframe {
        margin-top: 10px;
    }
    .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 #23861D;
    }
    .footer-item:first-child {
        width: 35%;
        text-align: center;
        margin: auto;
        padding-bottom: 3px;
        padding-right: 0;
        border-right: 0;
        border-bottom: 2px solid #23861D;
    }
    .footer-item_terms {
        margin-top: 12px;
    }
    .footer {
        padding-top: 25px;
    }
    .footer-logo__img {
        width: 130px;
    }
    .contact-content {
        padding: 35px 60px;
    }
    .footer-item_contactPage {
        margin-top: 15px;
    }
    .top-form_contact .top-form__title {
        font-size: 24px;
    }
}
@media (max-width: 530px) {
    .header-logo {
        padding: 7px 4px 0;
        width: 173px;
    }
    .header.scrolled .header-logo {
        width: 140px;
    }
    .header-book {
        padding: 16px 12px;
        font-size: 21px;
    }
    .header-book::before {
        width: 22px;
        height: 22px;
    }
    .header.scrolled .header-logo {
        width: 165px;
    }
}
@media (max-width: 481px) {
    h2.title {
        margin-bottom: 10px;
    }
    .top-section__title {
        font-size: 36px;
    }
    .top-section__title {
        margin-bottom: 10px;
    }
    .header-book {
        padding: 12px 8px;
    }
    .header-book::before {
        margin-right: 5px;
        width: 25px;
        height: 25px;
    }
    .header.scrolled .header-book::before {
        width: 22px;
        height: 22px;
    }
    .header.scrolled .header-book {
        padding: 14px 10px;
    }
    .header-logo {
        width: 90px;
        height: 57px;
    }
    .header-logo__img {
        width: 55px;
    }
    .header.scrolled .header-logo {
        width: 155px;
    }
    .top-form__title {
        font-size: 21px;
        margin: 15px 0 12px;
    }
    .services-item:nth-last-child(n+2) {
        margin-bottom: 15px;
    }
    .services-item {
        width: 100%;
    }
    .services-item__img {
        margin-bottom: 9px;
    }
    .services-item__title {
        font-size: 19px;
        margin-bottom: 2px;
    }
    .footer-logo__img {
        width: 115px;
    }
    .whoWe-title::before {
        bottom: -5px;
    }
    .contact-content {
        padding: 30px 17px;
    }
    .contact-title {
        font-size: 26px;
        margin-bottom: 3px;
    }
    #top-section_contact {
        padding-bottom: 20px;
    }
    .map_contact {
        height: 250px;
    }
    .container_map iframe {
        height: 240px;
    }
    .top-section_about .container_top-section {
        padding: 90px 15px 15px;
    }
    .linking iframe {
        height: 240px;
    }
    .process-item {
        width: 100%;
    }
    .process-item:not(:last-child) {
        margin-bottom: 10px;
    }
}
@media (max-width: 457px) {
    .header.scrolled .header-book {
        font-size: 19px;
    }
    .header.scrolled .header-logo {
        width: 147px;
    }
    .about_inner .about-item__bg {
        width: 95%;
    }
}
@media (max-width: 450px) {
    body {
        font-size: 14px;
    }
    .container {
        max-width: none;
        padding: 0 12px;
    }
    h2.title {
        font-size: 26px;
    }
    .header.scrolled .header-book {
        padding: 10px 20px 5px;
        font-size: 17px;
    }
    h2.top-section__title, .top-section__title {
        font-size: 30px;
    }
    .container_top-section {
        padding-top: 110px;
    }
    .top-form__option {
        display: inline-block;
    }
    .about-item__title, .testimonials-title {
        font-size: 22px;
        margin-bottom: 3px;
    }
    .testimonials-text {
        margin-bottom: 12px;
    }
    .whyChoose-item {
        margin-bottom: 15px;
    }
    .whyChoose-item span {
        width: 45px;
        height: 45px;
    }
    .testimonials-slider {
        padding: 10px 10px 0 0;
    }
    .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;
    }
    .cta-btns {
        flex-wrap: wrap;
    }
    .cta-btn {
        width: 100%;
    }
    .cta-btn_2 {
        margin-top: 18px;
    }
    .bread-crumbs {
        margin-bottom: 17px;
    }
    .map_contact {
        height: 200px;
    }
}
@media (max-width: 432px) {
    .header-book {
        letter-spacing: 0;
    }
    .header.scrolled .header-logo {
        width: 115px;
    }
    .header-book::before {
        width: 23px;
        height: 23px;
    }
    .top-form__option label.error {
        bottom: -55px;
        left: 0;
    }
}
@media (max-width: 400px) {
    .header-logo {
        display: none;
    }
    .header-book {
        padding: 18px 15px;
    }
    .top-form__option {
        font-size: 14px;
    }
    .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%;
    }
    .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;
    }
    .container_intro:first-child {
        margin-bottom: 12px;
    }
}
@media (max-width: 356px) {
    body {
        font-size: 14px;
    }
    h2.title {
        margin-bottom: 7px;
    }
    .top-form__input, .top-form__textarea {
        padding: 10px 7px;
    }
    .header-logo {
        width: 102px;
        height: 57px;
    }
    .header-logo__img {
        width: 102px;
    }
    .btn {
        font-size: 16px;
        padding: 12px;
    }
    .top-form__input, .top-form__textarea {
        padding: 7px 5px;
    }
    .container_map iframe {
        height: 200px;
    }
    .footer-item_terms, .footer-item:first-child {
        width: 70%;
    }
    .footer-item_contactPage .footer-email {
        overflow-x: hidden;
    }
    .footer-item__hours::before {
        width: 22px;
    }
}
@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;
    }
    footer {
        overflow-x: hidden;
    }
}