:root {
    --main: #ae58c0;
    --sec: #f5f5f5;
    
    --radius: 20px;
    --shadow: 1px 1px 7px 0px rgba(0, 0, 0, 0.13), 0px 0px 2px 0px rgba(0, 0, 0, 0.05);
}

.site-header, .site-footer, .sub-header, .footer-widgets, .sidebar-primary {
    display: none;
}

.site-inner>.wrap {
    width: 100%;
    max-width: 100%;
}

.content-sidebar-wrap>.content {
    width: 100%;
}

.wrap {
    width: min(1200px, 100% - 4rem);
    max-width: 100%;
}

/* padding */

.pad {
    padding-block: 100px;
}

@media(max-width: 1024px) {
    .pad {
        padding-block: 70px;
    }
}

@media(max-width: 768px) {
    .pad {
        padding-block: 40px;
    }
}

/* backgrounds */

.octane-background {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.octane-background img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.octane-content {
    position: relative;
}

/* header */
.landing-header {
    padding-block: 20px;
}

.landing-header>.wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

.landing-header>.wrap::before, .landing-header>.wrap::after {
    content: none;
}

.header-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.main-logo  {
    width: 100%;
    max-width: 190px;
}

.header-phone {
    display: block;
    color: black;
    font-size: 23px;
    padding: 7px 20px;
    transition: .3s;
}

.header-phone:hover {
    color: var(--main);
    transform: translatey(-5px);
}

.header-phone i {
    margin-right: 10px;
    color: var(--main);
}

@media(max-width: 768px) {
    .landing-header>.wrap {
        justify-content: center;
    }

    .header-phone {
        font-size: 18px;
    }

    .main-logo {
        max-width: 150px;
    }
}



/* links */

.main-link {
    background: var(--main);
    color: white;
    padding: 15px 50px;
    font-size: 25px;
    border-radius: calc(var(--radius) / 2);
    transition: .4s;
    font-weight: bold;
}

.center-link {
    margin-inline: auto;
    display: block;
    width: fit-content;
}

.main-link:hover {
    color: white;
    background: var(--main);
    opacity: .7;
}

@media(max-width: 1024px) {
    .main-link {
        font-size: 18px;
        padding: 12px 45px;
    }
}

@media(max-width: 768px) {
    .main-link {
        font-size: 16px;
        padding: 10px 40px;
    }
}


/* titles */

.main-subtitle {
    font-size: 16px;
    color: var(--main);
    background: white;
    box-shadow: var(--shadow);
    font-weight: 600;
    width: fit-content;
    padding: 15px;
    border-radius: calc(var(--radius) / 2);
    text-transform: capitalize;
    display: block;
}

.main-title {
    font-size: 35px;
    color: black;
    font-weight: bold;
    text-wrap: balance;
}

.center-title {
    text-align: center;
    margin-inline: auto;
}

@media(max-width: 768px) {
    .main-title {
        font-size: 25px;
    }

    .main-subtitle {
        margin-inline: auto;
    }
}

/* ============================== hero */

.hero {
    position: relative;
}

.hero-content {
    margin-block: 50px;
    background: white;
    border-radius: var(--radius);
    padding: 40px 20px;
}

.hero .ti-header {
    width: 100%;
    pointer-events: none;
}

.hero-subtitle {
    color: var(--main);
    font-size: 23px;
    font-weight: 600;
    margin: 0;
}

.hero-title {
    color:black;
    font-size: 43px;
    text-wrap: balance;
    font-weight: 600;
}

.hero-stats {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 20px;
}

.stat-text {
    font-size: 18px;
    line-height: 1.3;
}

/* hero image */

.hero-image img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@media(max-width: 1024px) {
    .hero-subtitle {
        font-size: 18px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero .ti-header {
        width: fit-content;
    }
}

@media(max-width: 768px) {
    .hero .octane-background {
        position: relative;
        aspect-ratio: 16 / 9;
        width: 100%;
    }

    .hero-content {
        margin: 0;
        max-width: 100%;
        border-radius: 0;
    }

    .hero .wrap {
        width: 100%;
        max-width: 100%;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-stats {
        gap: 10px;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
    }

    .stat-text {
        font-size: 14px;
    }
}

/* form reviews */

.form-section {
    background: var(--sec);
}

.form-flex {
    display: flex;  
    align-items: center;
    gap: 50px;
}

.form-flex::before, .form-flex::after {
    content: none;
}

.form, .form-reviews {
    width: 50%;
}

.form {
    background: white;
    border-radius: var(--radius);
	padding: 20px;
    box-shadow: var(--shadow);
	margin: 20px;
}

.form p {
    margin: 0;
}

.form iframe {
    width: 100%;
    border: 0;
    height: 100%;
}

.form input[type="button"] {
	background: var(--main);
	border-radius: var(--radius);
}

.form input[type="button"]:hover {
	background: #c68ad3;
}

@media(max-width: 1024px) {
    .form-flex {
        flex-direction: column;
        gap: 30px;
    }

    .form, .form-reviews {
        width: 100%;
    }

	.form {
		margin-inline: 0px;
	}
}

@media(max-width: 768px) {
	.form {
		margin: 0;
	}
}



/* protect */

.protect-flex {
    display: flex;
    gap: 50px;
}

.protect-flex::before, .protect-flex::after {
    content: none;
}

.protect-image, .protect-text {
    width: 50%;
}

.protect-image {
    position: relative;
}

.protect-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 5px;
}

.protect-text p, .protect-text li {
    font-size: 18px;
    color: black;
}

/* lists */

.protect-text ul {
    padding-left: 30px;
    margin-bottom: 30px;
}

.protect-text ul li {
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
}

.protect-text ul li::before {
    content: "\f192";
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    color: var(--main);
}

@media(max-width: 1024px) {
    .protect-flex {
        flex-direction: column;
        gap: 30px;
    }

    .protect-image, .protect-text {
        width: 100%;
    }

    .protect-image {
        aspect-ratio: 5 / 3;
    }

    .protect-image img {
        max-height: 100%;
    }
    
}

@media(max-width: 768px) {
    .protect-text p, .protect-text li {
        font-size: 16px;
        text-align: left;
    }
}


/* recommend / benefits */

.recommend {
    background: var(--sec);
}

.recommend-text {
    text-align: center;
    font-size: 18px;
    color:black;
}

.rec-flex {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.benefit-text {
    width: 50%;
    flex-grow: 1;
}

.benefit-title {
    font-weight: bold;
    color: black;
    font-size: 24px;
}

.benefit-text p {
    margin: 0;
    font-size: 16px;
    color: black;
}

/* benefits */

.benefits {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 30px;
    background: white;
    padding: 30px;
    border-radius: calc(var(--radius) / 2);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.ben-images {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: space-between;
    position: relative;
}

.ben-images img {
    height: 50%;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.benefit-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180px;
    height: 180px;
    transform: translate(-50%, -50%);
}

@media(max-width: 1024px) {
    .rec-flex {
        flex-direction: column;
    }

    .ben-images, .benefits {
        width: 100%;
    }
}

@media(max-width: 768px) {
    .benefit-badge {
        width: 120px;
        height: 120px;
    }

    .benefit-title {
        font-size: 20px;
    }

    .benefit {
        flex-direction: column;
    }

    .benefit-text {
        width: 100%;
    }

    .benefit-text p {
        line-height: 1.3;
    }
}



/* how / steps */

.how-text {
    text-align: center;
    color: black;
}

.steps {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.step {
    width: 350px;
    flex-grow: 1;
    background: var(--sec);
    border-radius: var(--radius);
}

.step-num {
    background: var(--main);
    color: white;
    padding: 10px;
    margin-left: 15px;
    width: fit-content;
    border-radius: 0 0 5px 5px;
}

.step-title {
    font-weight: bold;
    color: black;
    font-size: 24px;
}

.step-text {
    padding: 15px;
}

.step-text p {
    font-size: 16px;
    margin: 0;
}

@media(max-width: 768px) {
    .step-title {
        font-size: 20px;
    }
    
    .step-text p {
        line-height: 1.3;
    }
}



/* quality */

.quality {
    background: var(--sec);
}

.quality-image {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.quality-image img {
    max-width: 526px;
    width: 100%;
    object-fit: contain;
}

.quality-info {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.info-item {
    background: white;
    font-size: 20px;
    color: black;
    padding: 20px 40px;
    border-radius: calc(var(--radius) * 5);
    width: 40%;
    flex-grow: 1;

    display: flex;
    gap: 10px;
    align-items: center;
}

.info-item i {
    color: var(--main);
}

@media(max-width: 1024px) {
    .info-item {
        font-size: 18px;
        text-align: left;
    }
}

@media(max-width: 768px) {
    .info-item {
        font-size: 16px;
        text-align: left;
        width: 100%;
    }
}


/* ita */

.ita-flex {
    display: flex;
    gap: 50px;
    align-items: center;
}

.ita-flex::before, .ita-flex::after {
    content: none;
}

.ita .main-title {
    font-size: 25px;
}

.ita-image, .ita-text {
    width: 50%;
}

.ita-image img {
    width: 100%;
    object-fit: contain;
}

@media(max-width: 1024px) {
    .ita-flex {
        flex-direction: column!important;
    }

    .ita-image, .ita-text {
        width: 100%;
    }

    .ita-image {
        max-width: 400px;
    }
}

@media(max-width: 768px) {
    .ita-text p {
        font-size: 16px;
        line-height: 1.3;
    }
}

/* reviews */
.reviews {
    background: var(--sec);
}

/* ita 2 */
.ita-2, .ita-3 {
    background: black;
    color: white;
}

.ita-2 .main-title, .ita-3 .main-title {
    color: white;
}

.ita-2 .ita-flex {
    flex-direction: row-reverse;
}


/* before and after images */

.ba-gallery {
	display: flex;
	gap: 10px;
	justify-content: center;
	flex-wrap: wrap;
}

.comparison {
  display: block;
  position: relative;
  border-radius: var(--radius);
  aspect-ratio: 16 / 9;
  max-width: 900px;
  overflow: hidden;
  height: 300px;
  width: 30%;
	flex-grow: 1;
}

.comparison-image {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.comparison-image.exhibit-a {
  z-index: 1;
  clip-path: inset(0 50% 0 0);
  transition: clip-path;
}

.comparison-image img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

.handle {
  appearance: none;
  position: absolute;
  z-index: 2;
  margin: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  cursor: grab;
}

.separator {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 4px;
  background-color: #fff;
  z-index: 3;
  transform: translateX(-50%);
  pointer-events: none;
}

.handle::-webkit-slider-thumb {
  appearance: none;
  width: 10px;
  height: 70px;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 0 0.5em #000;
}

.handle::-moz-range-thumb {
  width: 0.5em;
  height: 4em;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 0 0.5em #000;
}

/* style reset */

.comparison {
	text-align: left;
}

.comparison input, .comparison input:active, .comparison input:focus, .comparison input:focus-within, .comparison input:focus-visible {
	border: 0;
	text-align: left;
}

@media(max-width: 1024px) {
	.ba-gallery {
		flex-direction: column;
		align-items: center;
	}

	.comparison {
		width: 100%;
		height: auto;
		max-width: 500px;
	}
}


/* areas */

.areas-list {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 30px;
}

.city-name {
	color: black;
	font-size: 18px;
	padding: 10px 30px;
	box-shadow: var(--shadow);
	border-radius: calc(var(--radius) * 3);
}

.city-name i {
	color: var(--main);
}

.areas-map iframe {
	width: 100%;
	border-radius: var(--radius);
	border: 0;
}

@media(max-width: 768px) {
	.areas-list {
		gap: 10px;
	}
	
	.city-name {
		font-size: 14px;
		padding: 10px;
	}
}


/* compare */

.compare-header {
	display: flex;
	justify-content: flex-end;
	gap: 5px;
}

.blank-cell {
	width: 50%;
	flex-grow: 1;
}

.compare-cell {
	width: 300px;

	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px;
}

.compare-header .compare-cell {
	height: 100px;
	border-radius: 15px 15px 0 0;
	border-bottom: 0;
	padding: 0;
	overflow: hidden;
}

.them-cell {
	background: #e4e4e4;
}

.compare-items {
	border-radius: var(--radius) 0 var(--radius) var(--radius);
}

.compare-row {
	display: flex;
	border-bottom: 2px solid black;
	gap: 5px;
}

.compare-row:last-of-type .compare-cell {
	border-radius: 0 0 10px 10px;
}

.compare-row:last-of-type {
	border-bottom: 0px;
}

.compare-item {
	flex-grow: 1;
	flex-shrink: 1;
	width: 50%;
	padding: 10px;
	font-size: 18px;
	font-weight: bold;
}

.compare-cell i {
	font-size: 30px;
}

.compare-cell.us-cell {
	background: var(--main);
	color: white;
}

.compare-cell.them-cell p {
	margin: 0;
	font-size: 20px;
	font-weight:bold;
	color:black;
}

.compare-header img {
	width: 100%;
	height: 100%;
	background: var(--main);
}

@media(max-width: 1024px) {
	.compare-cell {
		width: 150px;
	}

	.compare-item {
		text-align: left;
		font-size: 16px;
	}
}

@media(max-width: 768px) {
	.compare-header .compare-cell {
		height: 75px;
	}

	.compare-cell.them-cell p {
		font-size: 16px;
	}
}

@media(max-width: 500px) {
	.compare-cell {
		width: 90px;
	}

	.compare-item {
		font-size: 14px;
		line-height: 1.3;
	}

	.compare-cell i {
		font-size: 20px;
	}
}


/* faq */

.faq .wrap {
	position: relative;
}

.faq .main-title {
	text-shadow: 0 0 20px rgba(255,255,255,1), 0 0 30px rgba(255,255,255,1);
}

.faq-flex {
	display: flex;
	position: relative;
	gap: 50px;
}

.faq-image {
	position: absolute;
	top: 50%;
	left: -50px;
	height: calc(100% + 40px);
	width: 50%;
	transform: translatey(-50%);
}

.faq-image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.faq-left {
	width: 400px;
}

.faq-right {
	width: 30%;
	flex-grow: 1;
}


/* accordion */
.faq .accordion-list .accord-title {
	color: black;
	font-weight: bold;
	font-size: 22px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	padding: 20px;
	border: 0px;
}

.faq ul.accordion-list li {
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	background: white;
}

.faq ul.accordion-list li h3.accord-title:after {
	color: var(--main);
	font-size: 30px;
	top: initial;
	left: initial;
	position: relative;
	display:block;
	content: "\f13a";
	font-weight: 900;
	font-family: "Font Awesome 6 Free";
}

.faq ul.accordion-list li.active h3.accord-title:after {
	content: "\f139"
}

.faq ul.accordion-list .panel {
	padding: 20px;
	padding-top: 0;
	margin: 0;
	width: 100%;
}

.faq ul.accordion-list .panel p {
	color: black;
}

@media(max-width: 1024px) {
	.faq-flex {
		flex-direction: column;
		gap: 20px;
	}

	.faq-left, .faq-right {
		width: 100%;
	}

	.faq-image {
		display: none;
	}

	.faq .accordion-list .accord-title {
		font-size: 18px;
	}
}