/*!
Theme Name: StarlitDevs
Theme URI: http://underscores.me/
Author: StarlitDevs
Author URI: https://starlitdevs.com/
Description: This is a custom theme
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: starlitdevs
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

StarlitDevs is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/



:root {
	--color-white-color: #fff;
	--color-black-color: #111;
	--color-text-color: #1a1a51;
	--colo-primary-color: #e6fdf6;
	--primary-font: "Poppins", sans-serif;
	--secondary-font: "Golos Text", sans-serif;
}

body {
	font-family: var(--primary-font);
	color: var(--color-text-color);
	font-size: 14px;
	line-height: 1.5;  
	overflow-x: hidden;
}
html, body {
	scroll-padding-top: 150px;
}

a {
	text-decoration: none;
}

p {
	margin: 0;
	font-weight: 300;
}

h2, h3, h4 {
	font-family: var(--secondary-font);
	margin: 0;
}

img {
	width: 100%;
	height: auto;
}

.container {
	max-width: 1328px;
    padding: 0 24px;
    margin-left: auto;
    margin-right: auto;
}

.py-100 {
	padding-top: 100px;
	padding-bottom: 100px;
}

.pt-90 {
	padding-top: 90px;
}

.pb-80 {
	padding-bottom: 80px;
}


/* Header style */


.header {
    padding: 40px 0;
    background: var(--color-white-color);
    position: sticky;
    top: 0;
    left: 0;
    z-index: 8;
}

.logo a, 
.footer-logo a, 
.social-icon a {
    display: block;
}

.mobile-button {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 9;
    border: none;
    background: transparent;
}

.mobile-button span {
    width: 30px;
    height: 3px;
    background-color: var(--color-black-color);
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-button.active span:nth-child(1) {
  transform: rotate(-45deg) translateY(12px) translateX(-7px);
}

.mobile-button.active span:nth-child(2) {
  opacity: 0;
}

.mobile-button.active span:nth-child(3) {
  transform: rotate(45deg) translateY(-6px);
}

.btn, 
.btn-outline {
	background-image: linear-gradient( 15deg, rgb(106,255,203) 0%, rgb(57,188,188) 44%, rgb(0,101,170) 100%);
	padding: 20px 36px;
	line-height: 1;
	color: var(--color-white-color);
	border-radius: 35px;
	height: 54px;
	border: none;
	font-size: 12px;
	letter-spacing: 4px;
	text-transform: uppercase;
    text-align: center;
}

.input-item .btn:hover, 
.btn:hover {
	background-image: linear-gradient( 35deg, rgb(106,255,203) 0%, rgb(57,188,188) 44%, rgb(0,101,170) 80%);
	color: var(--color-text-color);
}

.btn-outline {
	background: transparent;
	border: 1px solid var(--color-black-color);
	color: var(--color-text-color);
}

.btn-outline:hover {
	background-image: linear-gradient( 35deg, rgb(106,255,203) 0%, rgb(57,188,188) 44%, rgb(0,101,170) 80%);
	color: var(--color-white-color);
	border: none;
	padding: 21px 37px;
}

.button-area {
	gap: 15px;
}

.mobile-menu {
    position: absolute;
    top: 0;
    background: var(--colo-primary-color);
    height: 100vh;
    width: 100%;
    transition: left 0.5s ease-in-out;
    z-index: 10;
    padding-top: 70px;
}

.mobile-menu .button-area a{
    width: 85%;
}

button.close {
    height: 35px;
    width: 35px;
    background: transparent;
    border: none;
    border-radius: 50%;
    margin-top: 30px;
    color: var(--color-black-color);
    position: absolute;
    right: 24px;
    top: -10px;
}

button.close:focus, 
button.close:hover {
    background-color: red;
    color: var(--color-white-color);
}

.left-0{
    left: 0;
}

.left-80{
    left: -100%;
}


/* Hero section style */


.banner-text h1 {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.banner-area {
	padding-top: 35px;
}

.banner-area::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--colo-primary-color);
  width: 100%;
  height: 130px;
  border-radius: 50px 50px 0 0;
  z-index: -1;
}

.banner-text {
    padding-top: 40px;
}

.banner-text h2 {
    font-size: 56px;
    margin-bottom: 30px;
	line-height: 1.1;
	letter-spacing: -0.1px;
}

.banner-text p {
    margin-bottom: 40px;
}

.banner-img {
    position: absolute;
    top: 35px;
    right: 0;
    text-align: center;
}

.banner-img img {
    object-fit: contain;
    object-position: right top;
    max-height: 1070px;
    max-width: 740px;
}

.gap-80 {
	gap: 50px;
}

.banner-icon {
    width: 135px;
    height: 135px;
    display: inline-grid;
    place-items: center;
    background: var(--colo-primary-color);
    border-radius: 50%;
}

.banner-icon img {
    max-height: 55px;
    max-width: 37px;
}

.icon-item-wrapper {
    width: 33.33%;
}

.icon-item {
    padding-right: 30px;
}

.banner-icons-part .icon-item-wrapper:nth-child(2) .icon-item {
    padding-left: 30px;
    padding-right: 30px;
}

.banner-icons-part .icon-item-wrapper:nth-child(3) .icon-item {
    padding-right: 0;
    padding-left: 30px;
}

.icon-item h4 {
	font-size: 17px;
	font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.5px;
}

.banner-icons-part {
    max-width: 580px;
    width: 100%;
}


/* Service section style */


.services {
	background-color: var(--colo-primary-color);
	border-radius: 0 0 50px 50px;
    overflow: hidden;
}

.services.py-100{
	padding-top: 0;
}

.service-content-carousel {
    overflow: visible;
}

.services-title {
	margin-bottom: 65px;
}

h2 {
    font-size: 42px;
	font-weight: 400;
    margin-bottom: 44px;
    line-height: 1.1;
}

.gap-20 {
	row-gap: 20px;
}

.content-img img {
	object-fit: cover;
    object-position: center;
    border-radius: 44px;
    aspect-ratio: 1.3;
}

.content-title {
	position: absolute;
    bottom: 35px;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: inline-flex;
    justify-content: center;
	max-width: 340px;
    background: var(--color-white-color);
    border-radius: 35px;
}

.content-title h4 {
    padding: 15px 0;
    font-size: 20px;
    font-weight: 500;
	line-height: 1;
}

.img-with-text-img {
    width: 57%;
}

.img-with-text-text {
    width: 39%;
}

.img-with-text-img img {
    max-height: 385px;
    object-fit: cover;
    object-position: bottom;
    border-radius: 200px;
}

.commercial-title,
.spectacular-results-title {
	margin-bottom: 44px;
}

.commercial-title h2, 
.spectacular-results-title h2,
.cta-title h2 {
    margin-bottom: 30px;
}

.commercial-title p {
	line-height: 1.9;
    padding-right: 55px;
}

.spectacular-results-content {
    padding-right: 70px;
}

.spectacular-results-title p {
	line-height: 1.9;
}

.before-slide-content img, 
.after-slide-content img {
    border-radius: 100%;
    object-fit: cover;
    aspect-ratio: 1;
}

.gap-50 {
	gap: 50px;
}

.spectacular-results::before {
	content: '';
	display: inline-block;
	position: absolute;
	top: -100px;
	left: 0;
	background-image: url('assets/images/before-after-star.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 166px;
    width: 79px;
}

.before-after-content {
    gap: 20px;
}

.before-slide-content, 
.after-slide-content {
    position: relative;
    width: 50%;
}

.before-slide-content::after, 
.after-slide-content::after {
    content: 'Before';
    display: inline-grid;
    place-items: center;
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    margin: auto;
    width: 125px;
    background: white;
    font-size: 17px;
    font-weight: 500;
    padding: 12px 0;
    border-radius: 25px;
}

.after-slide-content::after {
	content: 'After';
}

.promise-title h2 {
    margin-bottom: 70px;
}

.before-after-pagination,
.promise-pagination, 
.reviews-pagination,
.services-pagination {
	margin-top: 80px;
}

.services-pagination {
	margin-top: 40px;
}

.swiper-pagination-bullet {
    height: 10px;
    width: 10px;
    background: #0aefa1;
}


.swiper-pagination-bullet-active {
    background-image: linear-gradient( 15deg, rgb(106,255,203) 0%, rgb(57,188,188) 44%, rgb(0,101,170) 100%);
}

button.navigate-btn {
    border: none;
    background: transparent;
}

.navigation-wrapper {
    max-width: 1430px;
    margin: auto;
}

.before-after-navigation-prev, 
.before-after-navigation-next, 
.promise-navigation-prev, 
.promise-navigation-next, 
.reviews-navigation-prev, 
.reviews-navigation-next {
    position: absolute;
    top: -100px;
    bottom: 0;
    height: 48px;
    width: 48px;
    margin: auto;
    left: 0;
    z-index: 1;
}

.promise-navigation-prev, 
.promise-navigation-next {
	top: 0;
}

.reviews-navigation-prev, 
.reviews-navigation-next {
	top: 30px;
}

.before-after-navigation-next, 
.promise-navigation-next,
.reviews-navigation-next {
    right: 0;
    left: auto;
}

.our-promise::before {
	content: '';
	display: inline-block;
	position: absolute;
	top: -90px;
	left: -10px;
	background-image: url('assets/images/promise-gradient-before.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 472px;
    width: 239px;
}

.promise-title::before {
	content: '';
	display: inline-block;
	position: absolute;
	top: -60px;
	right: 0;
	background-image: url('assets/images/promise-star.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 68px;
    width: 68px;
}


/* CTA section style */


.cta {
	position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.cta-wrapper {
    width: calc(100vw + 200px);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1280px;
}

.cta-img {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
    overflow: hidden;
    border-radius: 220px;
	padding-top: 95px;
	padding-bottom: 95px;
}

.cta-title {
	z-index: 1;
    max-width: 742px;
    width: calc(100vw - 48px);
}

.cta-title p {
    line-height: 1.9;
    color: var(--color-white-color);
	margin-bottom: 30px;
}

.cta-title h2 {
    line-height: 1;
    color: var(--color-white-color);
}

.cta-title .btn {
    background-color: var(--color-white-color);
    background-image: unset;
    color: var(--color-black-color);
    border: 1px solid var(--color-white-color);
}

.cta-title .btn:hover {
    background: transparent;
    color: var(--color-white-color);
}

.cta-title .btn-outline {
    border: 1px solid var(--color-white-color);
    color: var(--color-white-color);
}

.cta-title .btn-outline:hover {
    background-image: unset;
    background-color: var(--color-white-color);
    color: var(--color-black-color);
    transition: all .3s ease-in;
}

.cta-img::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: linear-gradient( 36deg, rgb(106,255,203) 0%, rgb(57,188,188) 43%, rgb(0,101,170) 100%);
    height: 100%;
    width: 100%;
	opacity: .8;
}

.cta-bg::before, 
.cta-bg::after {
	content: '';
	display: block;
    position: absolute;
    bottom: 0;
    z-index: -1;
}

.cta-bg::after {
    background-image: linear-gradient( 36deg, rgb(106,255,203) 0%, rgb(57,188,188) 43%, rgb(0,101,170) 100%);
    margin: auto;
    border-radius: 9999px;
	opacity: .4;
    inset: -60px;
}

.cta-bg::before {
    background-image: linear-gradient( 36deg, rgb(106,255,203) 0%, rgb(57,188,188) 43%, rgb(0,101,170) 100%);
    margin: auto;
    border-radius: 9999px;
    z-index: -2;
	opacity: .3;
    inset: -120px;
}


/* Reviews section style */


.reviews-title {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
	margin-bottom: 80px;
}

.reviews-title h2 {
    margin-bottom: 0;
}

.reviews-slide-content {
    padding: 40px;
    background: var(--colo-primary-color);
    border-radius: 35px;
	display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 50px;
}

.reviews-text {
    line-height: 1.9;
}

.star svg {
    height: 20px;
    width: 20px;
}

.name {
	display: inline-grid;
	place-items: center;
	background: white;
	border-radius: 30px;
	padding: 14px 20px;
}

.name h4 {
    font-size: 15px;
    font-weight: 500;
}


/* Contact Section style */


.contact {
	padding-top: 75px;
	padding-bottom: 75px;
	background-color: var(--colo-primary-color);
	border-radius: 50px;
}

.contact-tile {
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: center;
    background-image: linear-gradient(36deg, rgb(106, 255, 203) 0%, rgb(57, 188, 188) 43%, rgb(0, 101, 170) 100%);
    padding: 120px 65px;
    border-radius: 9999px;
    position: relative;
    z-index: 1;
}

.title-icon img {
    width: 24px;
}

.icon-box {
    text-align: center;
	color: var(--color-white-color);
}

.title-icon {
    background: var(--color-white-color);
    width: 68px;
    height: 68px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    margin-bottom: 24px;
}

.title-text h2 {
    color: var(--color-white-color);
    margin-bottom: 20px;
}

.form-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.input-item input,
.input-item select, 
.input-item textarea {
    width: 100%;
    border: none;
    background: var(--color-white-color);
    padding: 20px 40px;
    border-radius: 9999px;
}

.input-item textarea {
    border-radius: 25px;
}

.input-item input:focus, 
.input-item select:focus, 
.input-item textarea:focus {
    outline: none;
}

.input-item .btn {
	width: 195px;
	margin-top: 20px;
    background-image: linear-gradient( 15deg, rgb(106,255,203) 0%, rgb(57,188,188) 44%, rgb(0,101,170) 100%);
    color: var(--color-white-color);
}

select[name="select-811"] {
    appearance: none;
    -moz-appearance: none;
    background: url('assets/images/arrow.png');
    background-repeat: no-repeat;
    background-position-x: 93%;
    background-position-y: 23px;
    background-color: var(--color-white-color);
    background-size: 14px;
    color: #777;
}
input::placeholder, textarea::placeholder, select {
    color: #1a1a51;
	opacity: 1;
}
.contact-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.contact-left-item {
    width: 50%;
    position: relative;
}

.contact-right-item {
    width: 50%;
}

.contact-bg-wrapper{
    padding-right: 225px;
    padding-left: 72px;
}
.contact-bg {
    position: relative;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.contact-bg::before, 
.contact-bg::after {
	content: '';
	display: block;
    position: absolute;
    --before-inset: -150px;
    --after-inset: -75px;
}

.contact-bg::after {
    background-image: linear-gradient( 36deg, rgb(106,255,203) 0%, rgb(57,188,188) 43%, rgb(0,101,170) 100%);
    margin: auto;
    border-radius: 9999px;
	opacity: .4;
	inset: var(--after-inset);
}

.contact-bg::before {
    background-image: linear-gradient( 36deg, rgb(106,255,203) 0%, rgb(57,188,188) 43%, rgb(0,101,170) 100%);
    margin: auto;
    border-radius: 9999px;
	opacity: .3;
	inset: var(--before-inset);
}

.contact-wrapper::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -175px;
    right: 0;
    background-image: url('assets/images/contact-star.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 168px;
    width: 168px;
}


/* FAQS-style */


.faq {
    padding-top: 130px;
    padding-bottom: 130px;
    position: relative;
}

.faq::before {
    position: absolute;
    top: 150px;
    right: 0;
    bottom: 0;
    margin: auto;
    display: block;
    content: '';
    height: 385px;
    width: 192px;
    background-image: url('assets/images/faq-before.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 630px;
}

.faq-accordion-item {
    padding: 22px;
    background-color: var(--colo-primary-color);
    border-radius: 30px;
}

.dropdown h5 {
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 0;
    font-family: var(--secondary-font);
}

.accordion-collapse-content {
    margin-top: 24px;
    display: none;
}
.accordion-collapse-content ul {
	margin-top: 10px;
}
.accordion-collapse-content li {
	font-weight: 300;	
	line-height: 1.5;
}
.accordion-collapse-content li:not(:last-child) {
	margin-bottom: 7px;
}
.faq-accordion-item h4 {
	cursor: pointer;
}
.accordion-collapse-content p {
    line-height: 1.9;
}


/* Footer-style */


.footer-links {
    margin-bottom: 75px;
}

.footer-logo {
    margin-right: 30px;
}

.description {
    margin: 0 60px;
}

.social-icon {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 8px;
}

.social-icon svg {
    width: 28px;
    height: 28px;
}

.social-icon a {
    color: var(--color-black-color);
}

.social-icon a:hover {
    color: #28a3b7;
}

.description p {
    line-height: 1.9;
}

.link h6 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 38px;
}

.link a {
    color: var(--color-text-color);
    word-wrap: break-word;
}

.footer-bottom {
    padding-top: 46px;
    padding-bottom: 46px;
    background-color: var(--colo-primary-color);
    border-radius: 45px 45px 0 0;
}

.footer-bottom span {
    margin-left: 24px;
    margin-right: 24px;
}

.copyright-text p {
    display: inline-block;
}

.seo-image img {
    max-height: 54px;
}
/* sagors-edit */
.header.sticky-active {
	padding: 24px 0;
}
.header {
	transition: .4s;
}
.name {
	font-size: 15px;
	font-weight: 500;
	font-family: var(--secondary-font);
}
.footer-contact-link {
	font-size: 14px;
	font-weight: 500;
	font-family: var(--secondary-font);
	margin-bottom: 24px;
}
.faq h4 {
	font-size: 18px;
}
select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M12 14.5a.74.74 0 0 1-.53-.22L8 10.78a.75.75 0 0 1 1-1.06l3 3l3-3a.75.75 0 0 1 1 1.06l-3.5 3.5a.74.74 0 0 1-.5.22'/%3E%3C/svg%3E") !important;
	background-repeat: no-repeat !important;
	background-position: calc(100% - 20px) 50% !important;
}




/* Responsive-style */
@media (max-width: 1399.98px) {
	.banner-area::before {
		height: 115px;
	}
    .banner-text h2{
        font-size: 48px;
		margin-bottom: 28px;
    }
	.banner-text p{
		margin-bottom: 28px;
	}
	.gap-80{
		gap: 40px;
	}
    .banner-img img{
        max-width: 700px;
    }
    .icon-item{
        padding-right: 15px;
    }
    .banner-icons-part .icon-item-wrapper:nth-child(2) .icon-item{
        padding-left: 15px;
        padding-right: 15px;
    }
    .banner-icons-part .icon-item-wrapper:nth-child(3) .icon-item {
        padding-left: 15px;
    }
    .content-img img{
        border-radius: 30px;
    }
    .content-title{
        max-width: 290px;
        border-radius: 20px;
    }
    .content-title h4{
        font-size: 18px;
    }
    .services-title{
        margin-bottom: 44px;
    }
    h2{
        margin-bottom: 32px;
    }
    .promise-navigation-prev, 
    .promise-navigation-next{
        top: 40px;
    }
    .commercial-title, 
    .spectacular-results-title{
        margin-bottom: 30px;
    }
    .spectacular-results-content{
        padding-right: 20px;
    }
    .py-100{
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .before-after-pagination, 
    .promise-pagination, 
    .reviews-pagination, 
    .services-pagination{
        margin-top: 60px;
    }
    .reviews-title{
        margin-bottom: 55px;
    }
    .contact{
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .contact-bg-wrapper {
        padding-right: 180px;
        padding-left: 107px;
    }
    .contact-bg::before, 
    .contact-bg::after {
        --before-inset: -130px;
        --after-inset: -65px;
    }
    .contact-tile{
        padding: 120px 35px;
    }
    .faq-accordion-item{
        border-radius: 16px;
    }
    .description {
        margin: 0 40px;
    }
}

@media (max-width: 1199.98px) {
	 .banner-area::before {
		height: 450px;
	  }
	.banner-text{
        text-align: center;
        padding-top: 0;
    }
    .gap-80{
        gap: 60px
    }
    .banner-icons-part {
        padding-bottom: 60px;
        margin: auto;
    }
    .banner-img{
        position: unset;
    }
	.banner-images{
		width: 75%;
  		margin: auto;
	}
    .banner-text h2 {
        font-size: 48px;
    }
    .banner-icons-part .col-4:nth-child(2) .icon-item {
        padding-left: 15px;
        padding-right: 15px;
    }
    .banner-icons-part .col-4:nth-child(3) .icon-item {
        padding-left: 15px;
    }
	.services.py-100{
		padding-top: 50px;
	}
    .services-title {
        text-align: center;
    }
    .img-with-text-text .btn,
    .img-with-text-text .btn-outline{
        padding: 20px 26px;
    }
    .spectacular-results-content {
        padding-right: 0;
    }
    .spectacular-results-title {
        text-align: center;
    }
    .before-after-navigation-prev{
        left: 0;
    }
    .before-after-navigation-next{
        right: 0;
    }
    .before-slide-content, 
    .after-slide-content{
        width: 40%;
    }
    .promise-title h2 {
        margin-bottom: 40px;
    }
    .before-after-navigation-prev, 
    .before-after-navigation-next, 
    .promise-navigation-prev, 
    .promise-navigation-next {
        top: 130px;
    }    
    .reviews-navigation-prev, 
    .reviews-navigation-next {
        top: 45px;
    }
    .reviews-title {
        justify-content: center;
        margin-bottom: 45px;
    }
    .contact{
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .contact-bg-wrapper {
        padding-right: 148px;
        padding-left: 87px;
    }
    .contact-bg::before, 
    .contact-bg::after {
        --before-inset: -110px;
        --after-inset: -55px;
    }
    .contact-tile {
        padding: 100px 0px;
    }
    .contact-bg {
        max-width: 236px;
        width: 100%;
    }
    .navigation-wrapper {
        max-width: 1130px;
    }
    .footer-logo{
        margin-right: 0;
    }
    .description {
        margin: 0 30px;
    }
}

@media (max-width: 991.98px) {
    .header{
        padding: 30px 0;
    }
    .header .button-area {
        gap: 10px;
    }
    .header .button-area a {
    padding: 20px 25px;
    }
    .banner-text h1 {
        margin-bottom: 24px;
    }
    .banner-text h2 {
        font-size: 44px;
    }
    .banner-text p{
        margin-bottom: 30px;
    }
	.banner-images{
		width: 85%;
	}
    .service-content-item .content-title {
        max-width: 250px;
    }
    .img-with-text-img, 
    .img-with-text-text {
        width: 100%;
    }
    .gap-80 {
        gap: 50px;
    }
    .img-with-text-text .btn, 
    .img-with-text-text .btn-outline {
        padding: 20px 36px;
    }
    .commercial-title h2, 
    .spectacular-results-title h2, 
    .cta-title h2{
        margin-bottom: 25px;
    }
    .commercial-title {
        text-align: center;
    }
    .commercial-title p {
        padding-right: 0;
    }
    .reviews {
        padding-bottom: 300px;
    }
    .reviews-title {
        justify-content: center;
        text-align: center;
        gap: 20px;
        margin-bottom: 40px;
    }
    .reviews-text {
        text-align: center;
    }
    .contact-wrapper {
        flex-direction: column;
        gap: 205px;
    }
    .contact-tile {
        padding: 100px 38px;
    }
    .contact-left-item {
        width: 100%;
    }
    .contact-bg-wrapper{
        padding-right: 0;
        padding-left: 0;
    }
    .contact-bg::before, 
    .contact-bg::after{
        --before-inset: -140px;
        --after-inset: -70px;
    }
    .contact-bg::after {
        inset: var(--after-inset);
    }
    .contact-bg::before {
        inset: var(--before-inset);
    }
    .contact-right-item {
        width: 100%;
    }
    .input-item input, .input-item select, .input-item textarea{
        border-radius: 18px;
        padding: 15px 30px;
    }
    .input-item .btn {
        border-radius: 9999px;
    }
    select[name="select-811"]{
        background-position-x: 96%;
        background-position-y: 18px;
    }
    .input-item:last-child {
        text-align: center;
    }
    .input-item:last-child span {
        display: none;
    }
    .contact-wrapper::after {
        bottom: -150px;
    }
    .contact-bg {
        max-width: 288px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        margin-top: -120px;
    }
    .faq {
        padding-top: 100px;
        padding-bottom: 75px;
    }
    .footer-links {
        text-align: center;
        margin-bottom: 50px;
    }
    .link h6 {
        margin-bottom: 24px;
    }
    .footer-logo, 
    .description {
        margin: 0;
    }
    .footer-logo {
        margin: auto;
        max-width: 268px;
    }
    .social-icon {
        justify-content: center;
    }
    .footer-bottom span {
        margin-left: 16px;
        margin-right: 16px;
    }
    .footer-bottom{
        border-radius: 30px 30px 0 0;
        padding-top: 35px;
        padding-bottom: 35px;
    }
}

@media (max-width: 767.98px) {
	.banner-area::before{
		display: none;
	}
    .banner-img {
        padding: 0 30px;
    }
	.banner-images{
		width: 100%;
	}
    .banner-text h2 {
        font-size: 36px;
    }
	.services {
	  border-radius: 30px;
	}
    .services.py-100 {
        padding-top: 66%;
        margin-top: -60%;
    }
    .services-title {
        margin-bottom: 40px;
    }
    h2 {
        font-size: 36px;
        margin-bottom: 26px;
    }
    h2 br {
        display: none;
    }
    .we-do-commercial {
        padding-bottom: 60px;
    }
    .commercial-title, 
    .spectacular-results-title {
        margin-bottom: 30px;
    }
    .before-slide-content, 
    .after-slide-content {
        margin: auto;
        width: 70%;
    }
    .promise-section-wrapper {
        overflow: hidden;
    }
    .promise-title::before {
        display: none;
    }
    .our-promise::after {
        content: '';
        display: inline-block;
        position: absolute;
        top: 0;
        right: 0;
        background-image: url('assets/images/promise-star.png');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 68px;
        width: 68px;
    }
    .promise-carousel {
        overflow: visible;
    }
    .before-after-pagination, 
    .promise-pagination, 
    .reviews-pagination, 
    .services-pagination {
        margin-top: 40px;
    }
    .reviews-carousel {
        overflow: visible;
    }
    .reviews {
        overflow: hidden;
        padding-top: 60px;
    }
    .reviews-title {
        margin-bottom: 35px;
    }
    .reviews.py-100 {
        padding-bottom: 230px;
    }
    .contact-wrapper{
        gap: 190px;
    }
    .contact-right-item {
        width: 100%;
    }
    .contact-bg {
        margin-top: -100px;
    }
    section.faq {
        padding-top: 85px;
    }
    .contact-wrapper::after{
        width: 100px;
        height: 100px;
        bottom: -108px;
    }
    .py-100, 
    .faq {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .cta-img.py-100{
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .logo, 
    .footer-logo {
        max-width: 220px;
    }
    .footer-links{
        margin-bottom: 40px;
    }
    .footer-bottom{
        padding-top: 30px;
    }
    .footer-bottom p {
        text-align: center;
        line-height: 1.9;
    }
    .copyright-text {
        display: flex;
        flex-direction: column;
    }
    .copyright-text span {
        display: none;
    }
	html, body {
		scroll-padding-top: 120px;
	}	
	
	
	
}

@media (max-width: 575.98px) {
    .header {
        padding: 20px 0;
    }
    h2, 
    .commercial-title h2, 
    .spectacular-results-title h2, 
    .cta-title h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }
    .logo, 
    .footer-logo {
        max-width: 180px;
    }
    .banner-text h1 {
        font-size: 11px;
        margin-bottom: 20px;
    }
    .banner-text h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    .gap-80 {
        gap: 40px;
    }
    .banner-icons-part {
        gap: 30px;
    }
    .icon-item-wrapper:nth-child(2){
        width: 29%;
        margin: 0 12px;
    }
    .banner-icon {
        width: 90px;
        height: 90px;
    }
    .icon-item {
        padding-right: 0;
    }
    .banner-icons-part .icon-item-wrapper:nth-child(2) .icon-item {
        padding-left: 0;
        padding-right: 0;
    }
    .banner-icons-part .icon-item-wrapper:nth-child(3) .icon-item {
        padding-left: 0;
    }
    .icon-item h4 {
        font-size: 12px;
    }
    .banner-icon img {
        max-width: 27px;
    }
    .services {
        border-radius: 24px;
    }
    .services-title, 
    .commercial-title, 
    .spectacular-results-title {
        margin-bottom: 28px;
    }
    .img-with-text.py-100 {
        padding-top: 50px;
    }
    .services.py-100 {
        padding-bottom: 50px;
    }
    .before-slide-content::after, 
    .after-slide-content::after {
        width: 110px;
        padding: 5px 0;
        bottom: 30px;
    }
    .gap{
        gap: 38px !important;
    }
    .promise-title h2 {
       margin-bottom: 30px;
    }
    .our-promise::before {
        top: -60px;
        left: -30px;
        height: 400px;
        width: 200px;
    }
    .our-promise::after {
        top: 10px;
        right: 0;
        height: 50px;
        width: 50px;
    }
    .cta-wrapper {
        width: calc(100vw + 350px);
    }
    .cta-img.py-100 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    ._cta-img {
        background-size: unset;
    }
    .cta-bg::before {
        inset: -100px;
    }
    .cta-bg::after {
        inset: -50px;
    }
    .reviews-title {
        margin-bottom: 30px;
        gap: 20px;
    }
    .reviews-slide-content {
        padding: 28px;
        border-radius: 20px;
        gap: 30px;
    }
    .name {
        border-radius: 12px;
        padding-block: 12px;
    }
    .name h4 {
        font-size: 14px;
    }
    .faq-accordion-item {
        padding: 18px;
        border-radius: 12px;
    }
    .contact-wrapper::after {
        bottom: -100px;
        height: 90px;
        width: 90px;
    }
    .content-title {
        border-radius: 12px;
        bottom: 20px;
        text-align: center;
    }
    .content-title h4 {
        font-size: 14px;
        padding: 12px 0;
    }
    .content-img img {
        border-radius: 20px;
    }
    .content-title {
        width: 200px;
    }
    .contact-wrapper {
        gap: 130px;
    }
    .contact-bg {
        width: 65%;
        margin-top: -130px
    }
     .contact-bg::before, .contact-bg::after {
        --before-inset: -80px;
        --after-inset: -40px;
    }
    select[name="select-811"] {
        background-position-y: 14px;
        background-size: 12px;
    }

    .faq::before {
        display: none;
    }
    .faq-accordion {
        gap: 12px;
    }
    .contact-tile {
        padding: 90px 15px;
    }
    .input-item input, 
    .input-item select, 
    .input-item textarea {
        padding: 10px 20px;
        border-radius: 10px;
    }
    .input-item:last-child input{
        margin-top: 10px;
        display: inline-block;
    }
    .footer-links {
        margin-bottom: 30px;
    }
    .footer-bottom {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}
@media all and (max-width: 782px){
	.admin-bar .header {
		top: 46px;
	}
}
@media (max-width: 600px) {
	.admin-bar .header.sticky-active {
		top: 0;
	}
}

@media (max-width: 466.98px) {
    .button-area {
        flex-direction: column;
    }
    .before-after-navigation-prev, 
    .before-after-navigation-next, 
    .promise-navigation-prev, 
    .promise-navigation-next, 
    .reviews-navigation-prev, 
    .reviews-navigation-next {
        top: 265px;
    }
}