html {
    scroll-behavior: smooth;
}
*{
    box-sizing: border-box;
}
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 17px;
    line-height: 140%;
    font-weight: 400;
    padding: 0;
    margin: 0;
    color: #212529;
    letter-spacing: 0.02em;
}
h1, h2, h3, h4, h5, h6 {
    line-height: 140%;
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    font-weight: 700;
    margin: 0;
    padding: 0;
}
h2.title, h4.partners-title {
    font-size: 44px;
    line-height: 110%;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
}
p {
    margin: 0;
    padding: 0;
}
button {
    padding: 0;
    border: none;
}
.container {
    max-width: 1201px;
    padding: 0 15px;
    width: auto;
    margin: 0 auto;
}
.btn {
    font-size: 21px;
    font-weight: 400;
    color: #ffffff;
    text-shadow: 0-1px 0 rgba(255,255,255,.2);
    border-radius: 20px;
    border: 2px solid #69bfaf;
    background: #69bfaf;
    padding: 15px;
    display: block;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.5s ease;
}
.btn:hover {
    background: #212529;
    border: 2px solid #212529;
    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;
}
/*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*/
.padding {
    padding-bottom: 500px;
}
.header {
    padding: 20px 0;
    color: #212529;
    /*color: #69bfaf;*/
    border-bottom: 3px #69bfaf solid;  
    background: rgba(255, 255, 255, 0.95);; 
}
.header__wrapper {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header_privacy {
    background: #212529;
    color: #ffffff;
}
.header-logo {
    width: 150px;
    transition: all 0.5s ease;
}
.header-logo:hover {
    transition: all 0.5s ease;
    opacity: 0.8;
}
.header-logo__img {
    width: 150px;
    object-fit: cover;
}
.header-menu__items {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-menu__item:not(:last-child) {
    margin-right: 35px;
}
.header-menu__item {
    font-size: 16px;
    font-weight: 700;
    transition: all 0.2s ease-in-out;
    position: relative;
    cursor: pointer;
}
.header-menu__item.active::after {
    width: 100%;
}
.header-menu__item::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    content: '';
    width: 0;
    height: 2px;
    margin-top: 5px;
    background-color: #69bfaf;
    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: absolute;
    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: #69bfaf;
}
.header-submenu__item:not(:last-child) {
    margin-bottom: 10px;
}
.header-submenu__item.active {
    color: #69bfaf;
}
.header-info {
    display: flex;
}
.header-info__phone {
    display: flex;
    align-items: center;
    font-weight: 700;
    margin-left: 70px;
    justify-content: center;
    font-size: 25px;
    padding: 17px 20px;
    transition: opacity 0.5s ease;
    border-left: 2px solid #69bfaf;
}
.header-info__phone::before {
    content: '';
    display: block;
    background: url('../img/telephone-call1.png');
    width: 22px;
    height: 22px;
    background-size: cover;
    margin-right: 17px;
    margin-top: 3px;
}
.header-info__phone:hover {
    transition: opacity 0.5s ease;
    opacity: 0.8;
}
.header-info__phone_burger {
    display: none;
}
.menu-burger {
    display: none;
}
/*top section*/
.top-section {
    background: linear-gradient(180deg, rgba(12.94, 14.51, 16.08, 0.70), rgba(12.94, 14.51, 16.08, 0.50)), url('../img/finished-bathroom-remodeling-orlando-bg.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    color: #ffffff;
}
.container_top-section {
    padding: 120px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-section__content-wrapper {
    width: 935px;
}
.top-section__content {
    max-width: 100%;
}
.top-section__title {
    color: #fff !important;
    font-weight: 700;
    text-align: left;
    font-size: 72px;
    line-height: 109%;
    margin-bottom: 35px;
    width: 100%;
}
.top-section__btn {
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48%;
    font-size: 25px;
    padding: 22px;
    border-radius: 20px;
    margin-top: 55px;
    font-family: 'Saira', sans-serif;
    transition: all 0.5s ease;
}
.top-section__btn span {
    margin-right: 10px;
}
.top-section__btn::before {
    content: '';
    display: block;
    background: url('../img/telephone-call.png') no-repeat;
    width: 28px;
    height: 28px;
    background-size: cover;
    margin-right: 17px;
}
.CTA .top-section__btn::before {
    background: url('../img/telephone-call.png') no-repeat;
    width: 28px;
    height: 28px;
    background-size: cover;
}
.top-section__btn:hover {
    background: #69bfaf;
    border: 2px solid #69bfaf;
    color: #212529;
    opacity: 0.8;
    transition: all 0.5s ease;
}
/* AboutUs */
.aboutUs {
    padding: 55px 0;
    /*display: flex;*/
    background: #f8f9fa;
    position: relative;
}
.container_aboutUs {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.aboutUs-wrapper {
    padding: 0 0 0 15px;
    width: 60%;
}
.aboutUs-title {
    font-size: 52px;
    line-height: 110%;
    margin-bottom: 25px;
    display: block;
}
.aboutUs-text:not(:last-child) {
    margin-bottom: 7px;
}
.aboutUs-btn {
    background: transparent;
    color: #01091F;
    border: solid 2px #01091F;
    max-width: 200px;
    width: 100%;
    display: block;
    text-align: center;
    margin-top: 30px;
    font-weight: 700;
    font-size: 19px;    
    transition: all 0.5s ease;
}
.aboutUs-btn:hover {
    transition: all 0.5s ease;
    border: #00c2ff 2px solid;
    color: #00c2ff;
    background: transparent;
}
.about-wrapper__btn {
    color: #69bfaf;
    background: transparent;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    margin-top: 10px;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.5s ease;
}
.about-wrapper__btn:hover {
    opacity: 0.8;
    transition: opacity 0.5s ease;
}
.about-wrapper__btn::after {
    content: "";
    display: block;
    background: url('../img/arrow-down.png') no-repeat;
    background-size: contain;
    width: 20px;
    height: 12px;
    margin-top: 0px;
    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);
    margin-top: -3px;
}
.aboutUs-text_more {
    display: none;
}
.aboutUs-text_last {
    position: relative;
    display: block;
}
.aboutUs-text_last:after {
    position: absolute;
    top: 0px;
    background: linear-gradient(transparent, #f8f9fa);
    left: 0px;
    content: "";
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.aboutUs-text_last.active:after {
    display: none;
}
.aboutUs-text_more.active {
    display: block;
}
.top-form {
    color: #212529;
    margin-top: -20%;
    position: relative;
    background: rgba(232, 232, 232, 0.85);
    background: linear-gradient(rgba(232, 232, 232, 0.85), rgba(0, 127, 195, 0.1));
    border: 2px #fff solid;
    padding: 30px 25px 70px;
    width: 100%;
    max-width: 400px;
    position: relative;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    -moz-box-shadow: 0 30px 30px -24px rgba(0,0,0,.5);
    -webkit-box-shadow: 0 30px 30px -24px rgb(0 0 0 / 50%);
    box-shadow: 0 30px 30px -24px rgb(0 0 0 / 50%);
}
#top-form__home > .remarck, #top-form__contact > .remarck, 
.js-form > .remarck { 
    display:none; 
}
.top-form__fields {
    display: flex;
    color: #212529;
    flex-direction: column;
}
.top-form__title {
    color: #212529;
    font-size: 32px;
    line-height: 110%;
    font-weight: 700;
    text-align: center;
    margin: 10px 0 30px;
}
.top-form__title_contact {
    margin-bottom: 15px;
}
.top-form__input, .top-form__textarea {
    background-color: #ffffff;
    border-radius: 15px;
    border: none;
    border-bottom: 1px solid #ffffff;
    text-shadow: none;
    color: #212529;
    font-family: "Open Sans",sans-serif;
    font-weight: 300;
    padding: 10px 12px;
    margin-bottom: 12px;
    font-size: 16px;
}
.top-form__text_contact {
    text-align: center;
    margin-bottom: 12px;
}
.top-form__text_contact a {
    text-decoration-color: #69bfaf !important;
    text-decoration: underline;
}
.top-form__text_contact b {
    color: #69bfaf;
}
.top-form__textarea {
    border: 2px solid #ffffff;
}
.top-form__input::placeholder, .top-form__textarea::placeholder {
    color: #212529;
    opacity: 0.8;
}
.top-form__success {
    position: absolute;
    border-radius: 4px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
}
.top-form__success-content {
    position: absolute;
    max-width: 320px;
    width: 100%;
    padding: 10px;
    background: rgba(203, 199, 141, 0.9);
    text-align: center;
    margin-top: 10px;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: #000;
}
.top-form__success_contact .top-form__success-content {
    max-width: 350px;
    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: -17px;
}
/* Service */
.services {
    /*background: #938e8c22;*/
    padding: 55px 0;
}
.services-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}
.services-item {
    display: flex;
    flex-direction: column;
    padding: 20px 10px 15px;
    height: 550px;
    width: 31.5%;
    border-bottom: 4px solid #212529;
    transition: all 0.5s ease;
}
.services-item:hover {
    border-bottom: 4px solid #69bfaf;
    transition: all 0.5s ease;
}
.services-item__img {
    border: solid 1px #69bfaf;
    width: 340px;
    height: 200px;
    display: block;
    object-fit: cover;
    margin-bottom: 18px;
}
.services-item__text a, .FAQ-item__bottom a, .aboutUs-text a, 
.note-wrapper__text a {
    text-decoration: underline;
    color: #212529;
}
.services-item__title {
    font-size: 24px;
    color: #69bfaf;
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 120%;
}
@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;
}
/* Benefits */
.benefits {
    padding: 55px 0;
}
.container_benefits {
    padding: 60px 30px;
    background: linear-gradient(180deg, rgba(254, 254, 254, 0.55), rgba(254, 254, 254, 0.50)), url('../img/bathroom-retiling.jpg') no-repeat;
    background-size: cover;
    background-position: center center;
}
.benefits-title {
    color: #69bfaf;
    text-align: center;
}
.benefits-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.benefits-item {
    border: 2px solid #69bfaf;
    width: 48%;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.55);
    margin-bottom: 35px;
}
.benefits-item__title {
    font-size: 24px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.benefits-item__title::before {
    margin-right: 20px;
    content: '';
    display: block;
    background: #69bfaf;
    width: 20px;
    height: 20px;
    transform: rotate(45deg);
}
/* Testimonials */
.testimonials {
    padding: 55px 0;
}
.testimonials-title {
    text-align: center;
}
.testimonials-item {
    padding: 20px 15px;
    max-width: 800px;
    width: 100%;
    border: 2px solid #212529;
    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: cover;
    display: inline-block;
}
.star:not(:last-child) {
    margin-right: 8px;
}
.testimonials-item__author-name {
    color: #69bfaf;
    font-weight: 700;
    font-size: 20px;
    margin-left: 15px;
}
.testimonials-slider {
    position: relative;
    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 30%;
    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: #69bfaf;
}
/* FAQ */
.FAQ {
    padding: 50px 0;
    background: #f8f9fa;
}
.FAQ__title {
    text-align: center;
}
.FAQ-wrapper {
    max-width: 748px;
    margin: 0 auto;
}
.FAQ-item {
    border: 2px solid #69bfaf;
    box-sizing: border-box;
    border-radius: 2px;
}
.FAQ-item:not(:last-child) {
    margin-bottom: 20px;
}
.FAQ-item__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 26px 18px 25px;
    cursor: pointer;
}
.FAQ-item__title {
    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: #69bfaf;
}
.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;
    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.active, .faq-item__bottom.active {
    transition: all 0.5s ease;
    display: block;
}
/* Map */
.map-home {
    padding: 40px 0;
    color: #212529;
    background: linear-gradient(180deg, rgba(105, 191, 175, 0.80), rgba(105, 191, 175, 0.70)), url('../img/bathroom-remodeling-shower-liners.jpg') no-repeat;
    background-size: cover;
    background-position: center bottom;
}
.container_map-home {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.map-home__iframe_1 {
    margin-right: 20px;
}
.map-home-title {
    margin-top: 10px;
    line-height: 110%;
}
.map-wrapper {
    width: 48%;
}
.map-content {
    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 {
    background-color: #212529;
    width: 90%;
    margin-top: 25px;
    padding: 20px;
}
.map-btn:hover {
    color: #ffffff;
    opacity: 0.8;
}
/* Partners */
.partners {
    background: #f8f9fa;
    padding: 35px 0 50px;
}
.partners-title {
    text-align: center;
}
/*.partners-title::after {
    content: '';
    position: absolute;
    background-color: #69bfaf;
    background-color: #212529;
    width: 20%;
    height: 0.5px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}*/
.partners-wrapper{
    display: flex;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    margin-top: 30px;
    max-width: 1000px;
}
.partners-link {
    width: 15%;
    margin-right: 55px;
}
.partners-link_3 {
    width: 27%;
}
.partners-link img {
    width: 100%;
}
/* Footer */
.footer {
    padding: 50px 0 40px;
    background: #212529;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
}
.footer-wrapper {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
}
.footer-logo__img {
    width: 150px;
    object-fit: cover;
}
.footer-item__privacy {
    display: block;
}
.footer-item__title {
    font-size: 17px;
    margin-bottom: 10px;
    color: #00c2ff;
}
.footer-item:first-child {
    padding-right: 15px;
    border-right: 2px solid #69bfaf;
}
.footer-item_terms {
    display: flex;
    margin-left: 22px;
}
.footer-item_terms a {
    text-decoration: underline;
    text-decoration-color: #69bfaf;
    /*text-decoration-thickness: 2px;*/
    display: block;
    margin-right: 32px;
    transition: all 0.5s ease;
}
.footer-item_terms a:last-child {
    margin-right: 0;
}
.footer-item_terms a:hover {
    color: #69bfaf;
    transition: all 0.5s ease;
}
.footer-item__rights {
    padding-top: 15px;
    font-size: 14px;
    font-weight: 400;
    border-top: 1px solid #69bfaf7b;
    text-align: center;
    display: block;
}
.footer-item_terms a:hover {
    color: #ffffff;
    transition: all 0.5s ease;
}
.footer-item__address, .footer-item__phone, 
.footer-item__email, .footer-item__hours, .footer-item__name {
    display: flex;
    margin-bottom:7px;
}
.footer-item__address span {
    display: none;
}
.footer-item__name::before {
    content: '';
    display: block;
    background: url('../img/office.png') no-repeat;
    width: 16px;
    background-size: contain;
    margin-top: 1.3%;
    margin-right: 10px;
}
.footer-item__address::before {
    content: '';
    display: block;
    background: url('../img/address-1.png') no-repeat;
    width: 16px;
    background-size: contain;
    margin-top: 0.5%;
    margin-right: 10px;
}
.footer-item__phone::before {
    content: '';
    display: block;
    background: url('../img/telephone-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;
}
/* Page Services Start */
.bread-crumbs {
    font-size: 14px;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
}
.bread-crumbs__first {
    opacity: 0.8;
}
.bread-crumbs__line {
    display: block;
    margin: 0 10px;
    width: 20px;
    height: 1px;
    background: #ffffff;
}
.gallery {
    padding: 55px 0;
}
.top-section_services {
    background: linear-gradient(180deg, rgba(12.94, 14.51, 16.08, 0.70), rgba(12.94, 14.51, 16.08, 0.50)), url('../img/bathroom-retiling.jpg') no-repeat;
    background-size: cover;
    background-position: right center;
}
.top-section_services .container_top-section {
    padding-top: 40px;
}
.top-section_services+.aboutUs {
    padding: 65px 0 55px;
}
.top-section_services+.aboutUs .aboutUs-wrapper {
    width: 54%;
    padding: 0;
}
.top-section_services+.aboutUs .top-form {
    max-width: 448px;
    padding: 25px 25px 55px;
    margin-top: -23%;
}
.aboutUs-wrapper_services {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.aboutUs-advantages {
    margin-top: 25px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.aboutUs-item {
    width: 32%;
}
.aboutUs-item_ShTT {
    width: 45%;
}
.aboutUs-item__icon {
    height: 80px;
    display: block;
    object-fit: cover;
    margin: 0 0 8px;
    margin-left: 25%;
}
.aboutUs-item__title {
    font-size: 23px;
    margin-bottom: 5px;
    color: #212529;
}
.note {
    padding-top: 45px;
}
.note-wrapper {
    padding: 5px 25px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 0px 7px 1px rgb(0 0 0 / 10%);
    /*border: 2px solid #69bfaf;*/
}
.note-wrapper__left {
    width: 30%;
}
.note-wrapper__img {
    width: 60%;
    object-fit: cover;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.note-wrapper__content {
    width: 69%;
}
.note-wrapper__text:not(:last-child) {
    margin-bottom: 8px;
}
.gallery-title {
    color: #69bfaf;
    text-align: center;
}
.gallery-text {
    max-width: 850px;
    text-align: center;
    margin: 0 auto 15px;
}
.gallery-wrapper {
    max-width: 1201px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.gallery-wrapper a img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}
.gallery-wrapper a {
    width: 33%;
    transition: all 0.5s ease;
}
.gallery-wrapper a:hover {
    transition: all 0.5s ease;
    opacity: 0.8;
}
.fancybox-caption__body {
    display: none;
}
.gallery-wrapper_NoClick {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 10px;    
}
.gallery-wrapper_NoClick a img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.gallery-wrapper_NoClick a {
    position: relative;
    transition: all 0.5s ease;
}
.gallery-item__overlay {
    position: absolute;
    width: 100%;
    height: 0;
    background: rgba(105,191,175, 0.9);
    color: #ffffff;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    line-height: 120%;
    transition: all 0.5s ease;
}
.gallery-item__overlay span {
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
}
.gallery-wrapper_NoClick a:hover .gallery-item__overlay {
    transition: all 0.5s ease;
    height: 100%;
    display: block;
}
.gallery-wrapper_NoClick a:hover .gallery-item__overlay span {
    transition: all 0.5s ease;
    display: block;
}
.gallery-item_NoClick1 {
    grid-row-start: 1;
    grid-row-end: 3;
}
.gallery-item_NoClick3 {
    grid-row-start: 1;
    grid-row-end: 3;
    grid-column-start: 3;
    grid-column-end: 4;
}
.CTA {
    padding: 55px 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(105, 191, 175, 0.90), rgba(105, 191, 175, 0.80)), url('../img/bathroom-retiling.jpg') no-repeat;
    background-size: cover;
    background-position: center bottom;
}
.CTA .top-section__btn {
    margin: auto;
    color: #ffffff;
    background: #212529;
    background: rgba(12.94, 14.51, 16.08, 0.8);
    border: 2px solid #212529;
    font-size: 34px;
    padding: 30px;
    transition: opacity 0.5s ease;
}
.CTA .top-section__btn:hover {
    transition: opacity 0.5s ease;
    opacity: 0.9;
}
.CTA-text {
    max-width: 900px;
    margin: auto;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    line-height: 140%;
}
.CTA-text_2 {
    margin-top: 15px;
}
.CTA span {
    display: block;
    margin: 15px auto;
    text-align: center;
    font-weight: 700;
    font-size: 25px;
}
.CTA-title {
    text-align: center;
}
.CTA-btn {
    font-weight: 700;
    width: 48%;
    display: block;
    margin: auto;
    padding: 30px;
    background: rgba(12.94, 14.51, 16.08, 0.8);
    border: 2px solid #212529;
    font-size: 30px;
    font-family: 'Saira', sans-serif;
    transition: opacity 0.5s ease;
}
.CTA-btn:hover {
    transition: opacity 0.5s ease;
    opacity: 0.9;
}
.top-section_services2 {
    background: linear-gradient(180deg, rgba(12.94, 14.51, 16.08, 0.70), rgba(12.94, 14.51, 16.08, 0.50)), url('../img/bathroom-remodel-psl.jpg') no-repeat;
    background-size: cover;
    background-position: right 70px;
}
.top-section_services3 {
    background: linear-gradient(180deg, rgba(12.94, 14.51, 16.08, 0.70), rgba(12.94, 14.51, 16.08, 0.50)), url('../img/bathtub-in-bedroom-psl.jpg') no-repeat;
    background-size: cover;
    background-position: right center;
}
.top-section_services4 {
    background: linear-gradient(180deg, rgba(12.94, 14.51, 16.08, 0.70), rgba(12.94, 14.51, 16.08, 0.50)), url('../img/bathtub-refinish2.jpg') no-repeat;
    background-size: cover;
    background-position: right center;
}
.top-section_services5 {
    background: linear-gradient(180deg, rgba(12.94, 14.51, 16.08, 0.70), rgba(12.94, 14.51, 16.08, 0.50)), url('../img/new-vanity-top.jpg') no-repeat;
    background-size: cover;
    background-position: right bottom;
} 
.top-section_services6 {
    background: linear-gradient(180deg, rgba(12.94, 14.51, 16.08, 0.75), rgba(12.94, 14.51, 16.08, 0.55)), url('../img/white-bathroom-design.jpg') no-repeat;
    background-size: cover;
    background-position: right center;
}
.top-section_services2 .container_top-section, .top-section_services3 .container_top-section,
.top-section_services4 .container_top-section, .top-section_services5 .container_top-section, 
.top-section_services6 .container_top-section {
    padding-top: 40px;
}
/* Page Services End */
/* Contact&About page start */
.top-section_about .container_top-section {
    padding: 30px 15px 60px;
}
.top-section_about .bread-crumbs, .top-section_contact .bread-crumbs {
    margin-bottom: 30px;
}
.top-section_contact .container_top-section {
    padding: 30px 20px 60px;
}
.top-form_contact {
    margin-top: 0;
}
.container_contact {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.top-form_contact {
    width: 70%;
    max-width: none;
}
.contact-info {
    width: 28%;
}
.contact-info__title {
    font-size: 20px;
    font-weight: 700;
    color: #69bfaf;
    margin-bottom: 15px;
}
.contact-info__phone, .contact-info__address, .contact-info__email, .contact-info__hours, .contact-info__hours  {
    display: flex;
    font-weight: 600;
    align-items: center;
    margin-bottom: 10px;
}
.contact-info__phone::before, .contact-info__address::before, .contact-info__email::before, .contact-info__hours::before {
    content: '';
    display: block;
    background: url('../img/telephone-call1.png') no-repeat;
    background-size: cover;
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.contact-info__address {
    margin-bottom: 0;
}
.contact-info__address::before {
    background: url('../img/address.png') no-repeat;
    background-size: cover;
    width: 14px;
    height: 20px;
}
.contact-info__email::before {
    background: url('../img/email.png') no-repeat;
    background-size: contain;
    width: 19px;
    height: 14px;
}
.contact-info__hours::before {
    background: url('../img/clock-black.png') no-repeat;
    background-size: contain;
    width: 25px;
    height: 25px;
}
.map {
    padding: 50px 0;
    background: #92919132;
}
.map-bg {
    margin-bottom: 20px;
}
.specialty, .goal {
    padding: 30px 0 0;
}
.container_specialty, .container_goal {
    max-width: 1200px;
}
.specialty-wrapper, .goal-wrapper {
    max-width: 900px;
    display: flex;
    margin: auto;
    align-items: center;
    justify-content: space-between;
}
.goal {
    margin-bottom: 25px;
}
.specialty-header__icon, .goal-header__icon {
    width: 150px;
    height: 150px;
    margin: auto;
    display: block;
    opacity: 0.7;
    object-fit: cover;   
}
.specialty-content__title, .goal-content__title {
    text-align: center;
    color: #212529;
    color: #69bfaf;
    font-style: italic;
    font-weight: 500;
    width: 50%;
    font-size: 32px;
    margin: 0 auto 10px;
    padding-bottom: 5px;
    position: relative;
}
.specialty-content__title::after, .goal-content__title::after {
    content: '';
    position: absolute;
    background-color: #69bfaf;
    background-color: #212529;
    width: 20%;
    height: 0.5px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.specialty-content__text:not(:last-child), .goal-content__text:not(:last-child) {
    margin-bottom: 8px;
}
.specialty-content__text a {
    text-decoration: underline;
}
.goal-content__text a {
    text-decoration: underline;
}
/*Blog page start*/
.container_blog {
    padding: 0 30px;
    margin: auto;
}
.blog-bg {
    margin-left: 15px;
    box-shadow: -5px -5px 7px rgba(0, 0, 0, 0.3);
}
.blog-bg__img {
    max-width: 550px;
    height: max-content;
    object-fit: contain;
}
.blog-title {
    font-size: 26px;
    margin-bottom: 5px;
}
.container_blog .aboutUs-wrapper {
    padding-left: 0;
}
.container_blog:nth-child(2) {
    margin-top: 10px;
}
/* Contact&About Page end */
.privacy {
    padding: 15px 0;
}
.antispam {
    display:none;
}

/* 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: -125px;
    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;
}
@media (prefers-color-scheme: dark) {
    body {
        color: #eee;
        background: #333333;
    }
    .FAQ-item__bottom, .aboutUs-item__title,
    .services-item__text a, .FAQ-item__bottom a, .aboutUs-text a, .note-wrapper__text a {
        color: #eee;
    }
    .benefits-item {
        background: rgba(255, 255, 255, 0.15);
    }
    .aboutUs, .FAQ, .partners {
        background: rgba(21, 25, 29, 0.15);
    }
    .top-form {
        background: rgba(21, 25, 29, 0.5);
        box-shadow: 0 30px 30px -24px rgb(255 255 255 / 20%);
    }
    .top-form__input, .top-form__textarea {
        background: rgba(21, 25, 29, 0.5);
        color: #eee;
    }
    .top-form__input::placeholder, .top-form__textarea::placeholder {
        color: #eee;
    }
    .top-form__title {
        color: #eee;
    }
    .container_benefits {
        background: linear-gradient(180deg, rgba(21, 25, 29, 0.85), rgba(21, 25, 29, 0.80)), url(../img/white-bathroom-design.jpg) no-repeat !important;        
    }
    .header {
        background: rgba(255, 255, 255, 0.15);
        color: #eee;
    }
    .header-wrapper {
        background: #212529 ;
    }
    .header-logo__img {
        content: url("../img/logo-white.png");
    }
    .note-wrapper {
        box-shadow: 0px 0px 7px 5px rgb(255 255 255 / 20%);
    }
    .top-form__text_contact {
        color: #fff;
    }
    .aboutUs-text_last:after {
        background: linear-gradient(transparent, #2f2f2f);
    }
    .contact-info__phone::before {
        background: url(../img/telephone-call.png) no-repeat;
        background-size: cover;
        width: 20px;
        height: 20px;
    }
    .contact-info__email::before {
        background: url(../img/message.png) no-repeat;
        background-size: contain;
        width: 19px;
        height: 14px;
    }
    .contact-info__address::before {
        background: url(../img/address-1.png) no-repeat;
        background-size: cover;
        width: 14px;
        height: 20px;
    }
    .contact-info__hours::before {
        background: url('../img/clock.png') no-repeat;
        background-size: contain;
    }
}
/* Responsive */
@media (max-width: 1200px) {
    h2.title, h4.partners-title {
        font-size: 40px;
    }
    .container {
        max-width: 984px;
        padding: 0 18px;
        margin: 0 auto;
    }
    .header {
        padding: 17px 0;
    }
    .header-menu__item {
        font-size: 14px;
    }
    .header-menu__item:not(:last-child) {
        margin-right: 22px;
    }
    .header-info__google-img {
        width: 175px;
    }
    .header-info__phone {
        font-size: 14px;
    }
    .top-section {
        height: auto;
        padding-bottom: 50px;
    }
    .container_top-section {
        padding-top: 90px;
    }
    h2.top-section__title, .top-section__title {
        font-size: 60px;
        max-width: 595px;
    }
    .aboutUs-title {
        font-size: 47px;
    }  
    .map-wrapper {
        width: 48%;
    }
    .map-home__iframe {
        width: 51%;
    }
    .services-item:nth-child(n+7) {
        height: 585px;
    }
    .services-item__img {
        width: 285px;
        height: 165px;
    }
    .services-item__title {
        font-size: 23px;
        margin-bottom: 8px;
    }
    .container_benefits {
        padding: 50px 18px;
    }
    .aboutUs-item__title {
        font-size: 22px;
    }
    /* Contact page atart */
    .map-bg iframe {
        width: 980px;
    }
    .contact-info {
        width: 31%;
    }
    .top-form_contact {
        width: 68%;
    }
    /* Contact page end */
    .blog-wrapper {
        width: 100%;
    }
    .container_blog {
        flex-wrap: wrap;
    }
    .blog-bg {
        margin: 25px auto 10px;
    }
    .blog-bg__img {
        max-width: 100%;
        height: 750px;
    }
    
}
@media (max-width: 991px) {
    .container {
        max-width: 728px;
        padding: 0 20px;
    }
    h2.title, h4.partners-title {
        margin-bottom: 25px;
    }
    .header {
        padding: 15px 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: #69bfaf;
        width: 100%;
        height: 65%;
        border-radius: 5px;
        box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
        z-index: 1003;
        padding-top: 12%;
        text-align: center;
    }
    .header-submenu {
        transform: translateX(-32%);
    }
    .menu-burger {
        display: block;
        cursor: pointer;
    }
    .menu-burger span {
        display: block;
        width: 35px;
        height: 3px;
        background: #212529;
    }
    @media (prefers-color-scheme: dark) {
        .menu-burger span {
            background: #ffffff;
        }
    }
    .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;
        margin-left: 0;
    }
    .header-info__phone.header-info__phone_burger {
        display: block;   
        font-weight: 700;
        padding: 0;
    }
    .header-info__phone::before {
        display: none;
    }
    .top-section {
        padding-bottom: 150px;
    }
    .container_top-section {
        padding-top: 65px;
    }
    .top-section__slider {
        width: 100%;
    }
    .top-section__title {
        font-size: 51px;
        max-width: 715px;
        text-align: center;
    }
    .top-section__btn {
        width: 70%;
        margin-top: 37px;
        margin-left: auto;
        margin-right: auto;
    }
    .container_aboutUs {
        flex-wrap: wrap;
    }
    .top-form {
        margin: auto;
        margin-top: -23%;
        max-width: 505px;
        margin-bottom: 20px;
    }
    .aboutUs-wrapper, .top-section_services+.aboutUs .aboutUs-wrapper {
        order: 1;
        width: 100%;
    }
    .top-section__content-wrapper {
        width: 100%;
    }
    .services, .benefits, .testimonials {
        padding: 45px 0;
    }
    .services-item {
        width: 48%;
        height: 525px;
    }
    .services-item:nth-child(n+5) {
        height: 510px;
    }
    .services-item:last-child {
        height: 470px;
        margin: auto;
    }
    .benefits-item:nth-child(n+3) {
        margin-bottom: 0;
    }
    .container_benefits {
        padding: 45px 18px;
    }
    .slick-list {
        padding: 0 20%;
    }
    .FAQ {
        padding: 40px 0;
    }
    .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_map-home {
        flex-wrap: wrap;
    }
    .map-wrapper {
        width: 85%;
        margin: 0 auto 25px auto;
    }
    .map-btn {
        width: 97%;
    }
    .map-home__iframe {
        width: 100%;
    }
    /* Services page start */
    .bread-crumbs {
        margin-bottom: 50px;
    }
    .top-section_services .container_top-section {
        padding-top: 25px;
    }
    .top-section_services .top-section__title {
        text-align: center;
    }
    .aboutUs-advantages {
        flex-wrap: wrap;
    }
    .top-section_about+.aboutUs .aboutUs-title {
        text-align: center;
    }
    .aboutUs-item {
        width: 48%;
    }
    .aboutUs-item:last-child {
        margin: 12px auto 0;
    }
    .gallery-wrapper a {
        width: 49.5%;
    }
    .gallery-item_NoClick2 {
        grid-row-start: 1;
        grid-row-end: 2;
    }
    .gallery-item_NoClick3 {
        grid-row-start: 2;
        grid-row-end: 4;
        grid-column-start: 2;
        grid-column-end: 3;
    }
    .gallery-item_NoClick4 {
        grid-row-start: 3;
        grid-row-end: 4;
        grid-column-start: 1;
        grid-column-end: 2;
    }
    .CTA-btn {
        width: 70%;
    }
    /* Services page end */
    /* About page start */
    .top-section_about, .top-section_contact {
        padding-bottom: 90px;
    }
    .specialty-content__title, .goal-content__title {
        font-size: 28px;
    }
    /* About page end */
    /* Contact page start */
    .container_contact {
        flex-wrap: wrap;
    }
    .contact-info {
        width: 50%;
        order: 1;
    }
    .map-bg iframe {
        width: 728px;
        margin: auto;
    }
    .top-form_contact {
        max-width: none;
        width: 100%;
    }
    /* Contact page end */
    .blog-title {
        font-size: 22px;
    }
    .blog-bg {
        order: 1;
    }
    .top-section_blog {
        padding-bottom: 0;
    }
    .blog-bg__img {
        height: 700px;
    }
    .container_blog .aboutUs-wrapper {
        padding-left: 0;
    }
    .map-home__iframe_1 {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .map-home__iframe_2 {
        width: 100%;
    }
    .partners-wrapper {
        flex-wrap: wrap;
    }
    .partners-link {
        width: 27%;
        margin-right: 5%;
        margin-bottom: 10px;
    }
}
@media (max-width: 767px) {
    body {
        font-size: 15px;
    }
    .container {
       max-width: 727px;
       width: auto;
       padding: 0 20px; 
    }
    .btn {
        font-size: 18px;
    }
    h2.title, h4.partners-title {
        font-size: 32px;
        margin-bottom: 20px;
        text-align: center;
    }
    .header-menu__items {
        padding: 75px 0 15px;
    }
    .menu-close {
        top: 44px;
        right: 25px;
    }
    .aboutUs {
        padding: 45px 0 30px;
    }
    .top-form {
        max-width: none;
        margin-top: -25%;
    }
    .top-form__title {
        font-size: 28px;
    }
    .top-section {
        padding-bottom: 185px;
    }
    .top-section__btn {
        width: 100%;
    }
    .container_top-section {
        flex-direction: column;
        padding-top: 65px;
    }
    .top-section__title {
        font-size: 42px;
        max-width: none;
        text-align: center;
    }
    .top-section__slider {
        width: 100%;
    }
    .top-section__content-wrapper {
        max-width: 727px;
        width: auto;
        text-align: center;
    }
    .top-form__title {
        font-size: 30px;
    }
    .aboutUs-title {
        font-size: 38px;
    }
    .specialty-content__title, .goal-content__title {
        font-size: 26px;
    }
    .top-section_services+.aboutUs .top-form {
        margin-top: -25%;
        padding: 15px 20px 40px
    }
    .top-section_services+.aboutUs {
        padding: 45px 0;
    }
    .services-item {
        height: 440px;
    }
    .services-item:nth-child(n+5) {
        height: auto;
    }
    .container_benefits {
        padding: 40px 20px;
    }
    .note-wrapper {
        flex-wrap: wrap;
        padding: 15px 25px;
    }
    .note-wrapper__img {
        width: 45%;
    }
    .note-wrapper__left {
        margin-bottom: 10px;
    }
    .note-wrapper__left, .note-wrapper__content {
        width: 100%;
    }
    .gallery {
        padding: 45px 0;
    }
    .CTA-text {
        font-size: 22px;
    }
    .CTA .top-section__btn {
        font-size: 21px;
    }
    .CTA-btn {
        width: 100%;
    }
    .FAQ-item:not(:last-child) {
        margin-bottom: 14px;
    }
    .FAQ-item__top {
        padding: 10px 15px;
    }
    .FAQ-item__bottom {
        padding: 10px 65px 10px 15px;
    }
    .top-section_about {
        padding-bottom: 110px;
    }
    .top-section_about, .top-section_contact {
        padding-bottom: 85px;
    }
    h2.map-home-title {
        margin-top: 7px;
        text-align: left;
    }
    .map-bg iframe {
        width: 100%;
        height: 350px;
    }
    .map-btn {
        margin-top: 8px;
    }
    .top-section_blog {
        padding-bottom: 0;
    }
}
@media (max-width: 702px) { 
    .services, .benefits, .testimonials, .FAQ, .aboutUs_blog {
        padding: 35px 0;
    }
    h2.title, h4.partners-title {
        margin-bottom: 10px;
    }
    .services-item {
        width: 100%;
        height: auto;
    }
    .services-item__img {
        width: 100%;
        height: 180px;
    }
    .benefits-item:nth-last-child(n+2) {
        margin-bottom: 20px;
    }
    .top-form {
        padding: 15px 20px 40px;
    }
    .benefits-item {
        width: 100%;
    }
    .slick-list {
        padding: 0px 10%;
    }
    .map-home__iframe {
        height: 350px;
    }
    .aboutUs-item {
        width: 100%;
    }
    .aboutUs-item:nth-last-child(n+2) {
        margin-bottom: 8px;
    }
    .aboutUs-item:last-child {
        margin-top: 0;
    }
    .aboutUs-item__icon {
        margin: 0 auto 5px;
    }
    .aboutUs-item__title {
        text-align: center;
    }
}
@media (max-width: 600px) { 
    h2.title, h4.partners-title {
        font-size: 30px;
        margin-bottom: 17px;
    }
    h2.top-section__title, .top-section__title {
        font-size: 38px;
    }
    .top-section__text {
        font-size: 17px;
    }
    .partners-title::after {
        width: 35%;
    }
    .partners-wrapper {
        margin-top: 20px;
    }
    .footer-wrapper {
        flex-wrap: wrap;
    }
    .footer-item_terms {
        width: 100%;
        margin-top: 15px;
        margin-left: 0;
        justify-content: space-between;
    }
    .footer-item:first-child {
        margin: auto;
        padding-bottom: 7px;
        padding-right: 0;
        border-right: 0;
        border-bottom: 2px solid #69bfaf;
    }
    .footer {
        padding-top: 35px;
    }
    /* Services Page Start */
    .gallery-wrapper a {
        width: 100%;
    }
    /* Services Page End */
    .top-section {
        background: linear-gradient(180deg, rgba(12.94, 14.51, 16.08, 0.70), rgba(12.94, 14.51, 16.08, 0.50)), url(../img/finished-bathroom-remodeling-orlando-bg-small.jpg) no-repeat;
        background-size: cover;
        background-position: center center;
    }
    .container_benefits {
        background: linear-gradient(180deg, rgba(254, 254, 254, 0.55), rgba(254, 254, 254, 0.50)), url(../img/bathroom-retiling-small.jpg) no-repeat;
        background-size: cover;
        background-position: center center;
    }
    .map-home {
        padding: 30px 0;
        background: linear-gradient(180deg, rgba(105, 191, 175, 0.80), rgba(105, 191, 175, 0.70)), url(../img/bathroom-remodeling-shower-liners-small.jpg) no-repeat;
        background-size: cover;
        background-position: center center;
    }
    .map-home__iframe {
        margin-bottom: 0;
    }
    .top-section_services {
        background: linear-gradient(180deg, rgba(12.94, 14.51, 16.08, 0.70), rgba(12.94, 14.51, 16.08, 0.50)), url(../img/full-bathroom-remodel-small.jpg) no-repeat;
        background-size: cover;
        background-position: right center;
    }
    .top-section_services2 {
        background: linear-gradient(180deg, rgba(12.94, 14.51, 16.08, 0.70), rgba(12.94, 14.51, 16.08, 0.50)), url(../img/bathroom-remodel-psl-small.jpg) no-repeat;
        background-size: cover;
        background-position: center 50px;
    }
    .top-section_services3 {
        background: linear-gradient(180deg, rgba(12.94, 14.51, 16.08, 0.70), rgba(12.94, 14.51, 16.08, 0.50)), url(../img/bathtub-in-bedroom-psl-small.jpg) no-repeat;
        background-size: cover;
        background-position: right center;
    }
    .top-section_services4 {
        background: linear-gradient(180deg, rgba(12.94, 14.51, 16.08, 0.70), rgba(12.94, 14.51, 16.08, 0.50)), url(../img/bathtub-refinish2-small.jpg) no-repeat;
        background-size: cover;
        background-position: right center;
    }
    .top-section_services5 {
        background: linear-gradient(180deg, rgba(12.94, 14.51, 16.08, 0.70), rgba(12.94, 14.51, 16.08, 0.50)), url(../img/new-vanity-top-small.jpg) no-repeat;
        background-size: cover;
        background-position: right center;
    }
    .top-section_services6 {
        background: linear-gradient(180deg, rgba(12.94, 14.51, 16.08, 0.75), rgba(12.94, 14.51, 16.08, 0.55)), url(../img/white-bathroom-design-small.jpg) no-repeat;
        background-size: cover;
        background-position: right center;
    }
    .top-section_contact {
        background: linear-gradient(180deg, rgba(12.94, 14.51, 16.08, 0.75), rgba(12.94, 14.51, 16.08, 0.55)), url(../img/new-bathtub-vanity-small.jpg) no-repeat;
        background-size: cover;
        background-position: right center;
    }
    .CTA {
        background: linear-gradient(180deg, rgba(203, 199, 141, 0.90), rgba(203, 199, 141, 0.80)), url(../img/bathroom-retiling-small.jpg) no-repeat;
        background-size: cover;
        background-position: center bottom;
    }
    .contact-info {
        width: 100%;
    }
    .aboutUs-item__icon {
        height: 60px;
    }
    .top-section_blog {
        padding-bottom: 0;
    }
    .blog-bg__img {
        height: 550px;
    }
    .contact-info__hours::before {
        width: 19px;
    }
}
@media (max-width: 481px) {
    h2.title, h4.partners-title {
        margin-bottom: 10px;
    }
    .top-section__title {
        font-size: 36px;
    }
    .top-section__btn {
        padding: 15px;
        border-radius: 15px;
    }
    .top-form__input.error+.error {
        font-size: 12px;
    }
    .top-form {
        margin-top: -40%;
    }
    .specialty, .goal {
        padding: 12px 0 0;
    }
    .aboutUs-title {
        font-size: 34px;
    }
    .specialty-content__title, .goal-content__title {
        font-size: 24px;
        width: 100%;
    }
    .testimonials-title {
        padding: 0 18px;
    }
    .slick-list {
        padding: 0px 5%;
    }
    .top-section_about {
        padding-bottom: 85px;
    }
    .map-wrapper {
        width: 100%;
        margin: 0 auto 25px auto;
    }
    .top-section_services+.aboutUs .top-form {
        margin-top: -40%;
    }
    .services-item__title {
        font-size: 21px;
    }
    .aboutUs-item__title {
        font-size: 20px;
    }
    .note-wrapper {
        flex-wrap: wrap;
        padding: 10px 15px;
    }
    .note-wrapper__left {
        margin-bottom: 5px;
    }
    .note-wrapper__img {
        width: 50%;
    }
    .gallery-wrapper_NoClick {
        grid-template-columns: auto;
        grid-template-rows: auto auto auto auto;
    }
    .gallery-item_NoClick1 {
        grid-row-start: 1;
        grid-row-end: 2;
        grid-column-start: 1;
        grid-column-end: 2;
    }
    .gallery-item_NoClick2 {
        grid-row-start: 2;
        grid-row-end: 3;
        grid-column-start: 1;
        grid-column-end: 2;
    }
    .gallery-item_NoClick3 {
        grid-row-start: 3;
        grid-row-end: 4 !important;
        grid-column-start: 1;
        grid-column-end: 2;
    }
    .gallery-item_NoClick4 {
        grid-row-start: 4;
        grid-row-end: 5;
        grid-column-start: 1;
        grid-column-end: 2;
    }
    .CTA-text {
        font-size: 18px;
    }
    .blog-bg {
        margin-top: 15px;
    }
    .blog-bg__img {
        height: 410px;
    }
    .container_blog:nth-child(2) {
        margin-top: 0px;
    }
}
@media (max-width: 450px) {
    body {
        font-size: 14px;
    }
    .container {
        max-width: none;
        padding: 0 12px;
    }
    .container_benefits {
        padding: 30px 12px;
    }
    h2.title, h4.partners-title {
        font-size: 28px;
    }
    h2.top-section__title, .top-section__title {
        font-size: 30px;
    }
    .container_top-section {
        padding-top: 50px;
    }
    .header-logo__img {
        width: 130px;
    }
    .top-section {
        padding-bottom: 170px;
    }
    .top-form__title {
        font-size: 26px;
    }
    .gallery-wrapper a img {
        height: 220px;
    }
    .CTA {
        padding: 45px 0;
    }
    .CTA span {
        font-size: 20px;
    }
    .CTA .top-section__btn {
        padding: 24px;
    }
    .CTA-btn {
        padding: 24px;
    }
    .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;
    }
    .top-section_about, .top-section_contact {
        padding-bottom: 100px;
    }
    .top-section_contact {
        padding-bottom: 50px;
    }
    .map-content__item {
        width: 49.5%;
    }
    .map-content__item::before {
        margin-right: 6px;
        margin-top: 6px;
    }
    .map-home__iframe {
        height: 250px;
    }
    .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;
    }
    .top-section_blog {
        padding-bottom: 0;
    }
    .top-section_blog .container_top-section {
        padding-bottom: 15px;
    }
}
@media (max-width: 400px) {
    .top-form, .top-section_services+.aboutUs .top-form {
        margin-top: -46%;
    }
    .testimonials-item__author {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .testimonials-item__author-name {
        margin-left: 0;
        margin-top: 8px;
        width: 100%;
        text-align: center;
    }
    .blog-bg__img {
        height: 350px;
    }
    .blog-title {
        font-size: 19px;
    }
}
@media (max-width: 336px) {
    body {
        font-size: 14px;
    }
    h2.title, h4.partners-title {
        margin-bottom: 7px;
    }
    .top-form, .top-section_services+.aboutUs .top-form {
        margin-top: -51%;
        padding: 15px 10px 30px;
    }
    .top-form__input, .top-form__textarea {
        padding: 10px 7px;
    }
    .slick-list {
        padding: 0 3%;
    }
    .btn {
        font-size: 16px;
    }
    .top-section__btn::before {
        width: 20px;
        height: 20px;
    }
    .gallery-wrapper a img {
        height: 190px;
    }
    .CTA-text {
        font-size: 16px;
    }
    .CTA span {
        margin: 10px auto;
    }
    .map-content__item {
        width: 98%;
    }
    .map-content {
        margin-top: 7px;
    }
}
@media (max-width: 310px) {
    .container {
        padding-left: 8px;
        padding-right: 8px;
    }
    .top-form, .top-section_services+.aboutUs .top-form {
        padding: 15px 5px 20px;
    }
    .top-form__fields {
        max-width: 250px;
    }
    .note-wrapper {
        padding: 10px;
    }
    .blog-bg__img {
        height: 250px;
    }
}