.distancing {
  margin-top: 100px;
}

.cleaning-first{
    background-image: url(../img/bg/first-bg.webp);
    background-size: cover;
    
    padding-bottom: 360px;
}

.cleaning-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
    text-transform: uppercase;

    &.with-bg {
        background-color: #007CFB;
        color: white;
        border: none;
    }
    &.with-white {
        background-color: white;
        color: #007CFB;
        border: none;
    }
    &.with-border {
        border: 1px solid #007CFB;
        color: #007CFB;
        background: white;
    }
    &.with-hero {
        border: 1px solid #007CFB;
        color: black;
        background: none;
    }

    transition: all 0.2s ease;
    &:hover {
        background-color: #82CC09;
        border-color: #82CC09;
        color: black;
    }
}

.cleaning-h1 {
    font-size: 60px;
    font-weight: 900;
    color: #001857;
    line-height: 1.15;
}
.title-h2 {
    font-size: 44px;
    font-weight: 800;
    color: #001857;
    line-height: 1.15;
    text-wrap: balance;
    /* max-width: 60%; */

    margin: 0;
    margin-bottom: 30px;
}
.title-20 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.4;
    color: #001857;
    transition: all 0.2s ease;

    margin: 0;
}
.text-16 {
    font-size: 16px;
    line-height: 1.4;
    color: black;
    transition: all 0.2s ease;

    margin: 0;
}
.text-20 {
    font-size: 20px;
    line-height: 1.4;
    color: #001857;

    margin: 0;
}

.cleanin-hero-title {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.1;
    color: #007CFB;

    span {
        font-size: 40px;
    }
}

.cleaning-second {
    margin-top: -260px;
}
.cleaning-card {
    display: flex;
    flex-direction: column;

    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 27px 0 rgba(18, 57, 172, 0.08);
    background: #fff;
    position: relative;

    a {
        position: absolute;
        inset: 0;
        z-index: 5;
    }
    .title-20 {
        margin-bottom: 8px;
    }
    .cleaning-btn {
        width: fit-content;
        margin-top: 30px;
        position: relative;
        z-index: 10;
    }

    &:last-child {
        background-color: #1239ac;

        .title-20,
        .text-16 {
            color: white;
        }
    }

    transition: all 0.2s ease;
    &:hover {
        background: rgba(0, 124, 251, 0.04);
        box-shadow: unset;
        .title-20 {
            color: #007CFB;
        }
        .text-16 {
            color: black;
        }
    }
}

.results-slider {
    height: 350px;
    padding-bottom: 30px !important;

    .swiper-pagination {
        width: fit-content !important;
    }
    .swiper-pagination-bullet-active {
        width: 30px;
        border-radius: 50px;
        background-color: #1239AC;
    }
}
.result-slide {
    /* height: 350px; */
    border-radius: 10px;
    overflow: hidden;

    position: relative;
    img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
.result-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 5;

    padding: 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 4px;

    font-size: 16px;
    color: #1239AC;
    line-height: 1.4;
    margin: 0;
}

.cleaning-fourth {
    background-image: url(../img/bg/blue-bg.webp);
    background-size: cover;

    padding-block: 100px;
}

.fiveth-card {
    counter-increment: card-counter;
    &::before {
        content: counter(card-counter, decimal-leading-zero);
        font-size: 44px;
        font-weight: bold;
        color: #80bdfd;
    }
}

.cleaning-f-wrapper {
    background-image: url(../img/bg/light-bg.webp);
    background-size: cover;

    padding: 60px;
    border-radius: 10px;

    margin-bottom: 100px;
}
.cleaning-f-inner {
    grid-column: 2;
}

.cleaning-form {
	display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
    background-color: #e8f6fe;
    border-radius: 20px;

	.wpcf7-form-control {
		width: 100%;
	    padding: 12px 20px;
	    border: 0;
	    border-radius: 10px;
	    font-size: 16px;
		border: 1px solid white;

		&:focus {
			border-color: #007cfb;
		}
	}

	.wpcf7-spinner {
		display: none;
	}
}

@media (max-width: 767px) {
    .cleaning-h1 {
        font-size: 36px;
        font-weight: 900;
        color: #001857;
        line-height: 1.15;
    }
    .title-h2 {
        font-size: 28px;
        font-weight: 800;
        color: #001857;
        line-height: 1.15;
        text-wrap: balance;
    }
    .text-20 {
        font-size: 18px;
    }
    .cleanin-hero-title {
        font-size: 18px;

        span {
            font-size: 24px;
        }
    }

    .cleaning-card {
        .cleaning-btn {
            width: 100%;
        }
    }
    .cleaning-btn {
        width: 100%;
    }

    .cleaning-f-wrapper {
        padding: 60px 20px 0;
    }

    .distancing {
        margin-top: 70px;
    }
    .cleaning-fourth {
        padding-block: 70px;
    }
    .cleaning-f-wrapper {
        margin-bottom: 70px;
    }
}