/*!
Theme Name: Lattice Perth
Theme URI: https://starlitdevs.com/
Author: Starlit Devs
Author URI: https://starlitdevs.com/
Description: Custom Wordpress 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: lattice
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.

Lattice Perth 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{
	--primary-color: #e41731;
	--secondery-color: #5e2970;
	--white-color: #ffffff;
    --black-color: #292929;
	--section-bg: #f6ebeb;
}
body{
	-webkit-font-smoothing: antialiased; /* Chrome, Safari */
	-moz-osx-font-smoothing: grayscale; /* Firefox */
	margin: 0;
	padding: 0;
	font-family: 'Area Normal', sans-serif;
	line-height: 1.8;
	font-size: 18px;
	font-weight: 400;
	color: var(--black-color);
}
.btn {
	font-size: 18px;
	padding: 18px 30px;
	font-weight: 600;
	border-radius: 4px;
	border: none;
	color: var(--white-color);
	background-color: var(--primary-color);
	transition: all .4s ease-out;
	text-transform: uppercase;
	letter-spacing: 2px;
	line-height: 1;
}
.btn:hover{
	background-color: var(--secondery-color);
	color: var(--white-color);
}
.btn-secondery {
	background-color: var(--secondery-color);
	color: var(--white-color);
}
.btn-secondery:hover {
	background-color: var(--primary-color);
	color: var(--white-color);
}
h1, h2, h3, h4, h5, h6{
	margin: 0;
	padding: 0;
	font-weight: 400;
}
.f-18 h1 {
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 5px;
	text-transform: uppercase;
	line-height: 1;
	padding: 10px 20px;
	border-radius: 4px;
	margin-bottom: 30px;
	border: 1px solid var(--black-color);
	display: inline-block;
}
h1, .f-46 h2, .h1 {
	font-size: 46px;
	line-height: 1.3;
}
h2{
	font-size: 30px;
	line-height: 1.3;
}
h3{
	font-size: 18px;
	font-weight: 600;
	line-height: 1.2;
}
h1 b, h1 strong, h2 b, h2 strong {
	font-weight: 700;
	color: var(--primary-color);
}
p{
	margin: 0;
}
p:not(:last-child){
	margin-bottom: 16px;
}
img{
	max-width: 100%;
	height: auto;
}
ul, ol {
	margin: 0;
	padding: 0;
}
a{
	text-decoration: none;
	transition: .4s;
}
a:focus{
	outline: none;
}
textarea, input, select {
	box-sizing: border-box;
	width: 100%;
	border: 1px solid;
	border-radius: 6px;
	padding: 10px 20px !important;
	color: var(--black-color);
	background: transparent;
	font-size: 16px;
}
input, select {
	height: 50px;
}
input:focus, textarea:focus{
	outline: none;
}
input::placeholder, textarea::placeholder, select {
    color: var(--black-color);
	opacity: 1;
}
.bg {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.section-bg{
	background-color: var(--section-bg);
}
.p-100{
	padding: 100px 0;
}
.pt-100{
	padding-top: 100px;
}
.pb-100{
	padding-bottom: 100px;
}
.p-85{
	padding: 85px 0;
}
.pt-85{
	padding-top: 85px;
}
.pb-85{
	padding-bottom: 85px;
}
.container {
	transition: .4s;
	max-width: 1312px;
	padding: 0 24px;
	margin-left: auto;
	margin-right: auto;
}
.card-btn {
	margin-top: 36px;
}
.rounded-10 {
	border-radius: 10px;
	overflow: hidden;
}

/* Header */
.header-sec {
	left: 0;
	right: 0;
	top: 0;
	z-index: 99;
	padding: 36px 0;
	position: fixed;
	background-color: var(--white-color);
	transition: .2s;
}
.header-sec.sticky-active {
	padding: 20px 0;
}
.header-logo {
	margin-right: 10px;
	transition: .4s all ease;
	width: 180px;
}
.header-logo svg {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.admin-bar .header-sec {
	top: 32px;
}
.h-btn {
	gap: 75px;
	display: flex;
	margin-left: 60px;
	flex: 1;
}
.slicknav_nav a:hover{
	background: none;
}
.menu-trigger-wrap {
	display: none;
}

/* main-menu */
.main-menu {
	flex: 1;
}
.main-menu > ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	justify-content: space-between;
	gap: 35px;
}
.main-menu ul li {
	display: inline-block;
	position: relative;
}
.main-menu ul li a {
	color: var(--black-color);
	font-size: 18px;
	padding: 10px 20px;
	font-weight: 400;
	display: block;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 3px;
	border-radius: 4px;
	transition: .4s;
}
.main-menu ul li a:hover {
	background-color: var(--section-bg);
}
.main-menu ul li ul {
	position: absolute;
	width: 310px;
	background: var(--white-color);
	text-align: left;
	left: 0;
	top: 100%;
	opacity: 0;
	visibility: hidden;
	transition: .4s all ease;
	box-shadow: 0 0 5px rgba(0, 0, 0, .1);
	margin-left: 0;
	border-radius: 4px;
	overflow: hidden;
}
.main-menu ul li ul li {
	display: block;
}
.main-menu > ul > li.menu-item-has-children::before {
	content: "";
	position: absolute;
	height: 10px;
	width: 14px;
	right: 16px;
	background-image: url("data:image/svg+xml,%3Csvg width='14' height='10' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 7.4L0 1.4L1.4 0L6 4.6L10.6 0L12 1.4L6 7.4Z' fill='%231D1B20'/%3E%3C/svg%3E%0A");
	background-repeat: no-repeat;
	background-size: contain;
	top: 50%;
	transform: translateY(-50%);
	transition: .4s;
}
.main-menu > ul > li.menu-item-has-children:hover::before {
	transform: rotate(-180deg);
	top: calc(50% - 4px);
}
.main-menu > ul > li.menu-item-has-children a{
	padding-right: 36px;
}
.main-menu > ul > li.menu-item-has-children:hover::before {
	transform: rotate(-180deg);
}
.main-menu ul > li:hover > ul {
	opacity: 1;
	visibility: visible;
}
.main-menu ul li ul li a {
	display: block;
	padding: 18px 30px !important;
	font-size: 14px;
	color: var(--black-color);
	border-radius: 0;
}
.main-menu ul li ul li ul {
	left: 100%;
	top: 0;
}
.main-menu > ul > li ul li.menu-item-has-children::before {
	font-family: 'FontAwesome';
	content: '\f105';
	position: absolute;
	right: 10px;
	top: 50%;
	color: var(--primary-color);
	font-weight: 500;
	transform: translateY(-50%);
}
.main-menu ul li ul li a:hover{
	color: var(--primary-color);
}
.main-menu ul.sub-menu > li.current_page_item > a {
	color: var(--primary-color);
}


/* mmenu */
.mm-page {
	min-height: unset;
}

.mm-menu {
	display: none;
}
.modal-backdrop.show {
	opacity: .92;
}
.menu-trigger {
	display: none;
}
/* contact */
.field-space {
	padding-bottom: 12px;
	padding-left: 6px;
	padding-right: 6px;
}
.contact-input textarea {
	height: 160px;
	border-radius: 6px;
}
.wpcf7-form-control.wpcf7-submit.has-spinner {
	max-width: 160px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 2px;
	transition: .4s;
	border-radius: 6px;
	border: none;
	background: var(--primary-color);
	color: var(--white-color);
	margin-top: 20px;
	display: flex;
	margin-left: auto;
}
.wpcf7-form-control.wpcf7-submit.has-spinner:hover{
	background-color: var(--secondery-color);
}
.wpcf7-spinner {
	display: none;
}
.contact-shortcode p {
	margin-bottom: 0;
}



.contact-form-area::before {
	content: "";
	position: absolute;
	background-color: var(--secondery-color);
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	opacity: .9;
}
.contact-title h2, .contact-title strong, .contact-title b {
	color: var(--white-color);
}
.contact-form-wrap h2 {
	font-size: 23px;
	margin-bottom: 60px;
}
.pb-12 {
	padding-bottom: 20px;
}
.contact-form-wrap {
	padding: 70px;
}
.map-responsive {
	overflow: hidden;
	padding-bottom: 55%;
	position: relative;
	height: 0;
}
.map-responsive iframe {
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	position: absolute;
	border-radius: 10px;
}
.location span {
	display: inline-block;
	border-bottom: 1px solid var(--primary-color);
	margin-top: 30px;
}
.contact-title {
	margin-bottom: 60px;
}
.contact-details a {
	color: var(--black-color);
}
.contact-details a:hover {
	color: var(--primary-color);
}
.location {
	margin-top: 35px;
}
.contact-details p {
	line-height: 2;
}
.contact-form-area::after {
	content: "";
	position: absolute;
	background-color: var(--white-color);
	height: 150px;
	width: 100%;
	bottom: 0;
	left: 0;
}
.contact-form-area .container {
	z-index: 2;
}
.contact-form-area {
	background-position: bottom;
}

/* default page */
.single-content h2, .single-content h3, .single-content h4, .single-content h5, .single-content h6 {
	margin-bottom: 16px;
	margin-top: 30px;
}
.single-content h4{
	font-size: 20px;
}
.single-content h5{
	font-size: 18px;
}
.single-content h6{
	font-size: 17px;
}
.wp-block-image {
	margin: 24px 0;
}
.single-content img {
	width: 100%;
	border-radius: 16px;
}
.single-content ul li {
	margin-bottom: 3px;
	text-align: start;
}
.wp-block-list {
	margin-bottom: 20px;
}
.single-content ul {
	margin-bottom: 16px;
}
/* banner */
.banner-area::before {
	content: "";
	position: absolute;
	background-color: var(--section-bg);
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	opacity: .9;
}
.banner-content {
	padding-top: 120px;
	padding-bottom: 120px;
}
.banner-img img {
	height: 100%;
	object-fit: cover;
	border-radius: 50% 50% 10% 10% / 45% 45% 0% 0%;
}
.banner-img {
	position: absolute;
	height: 102%;
	width: 50%;
	right: 12px;
	bottom: -100px;
}
.banner-content h2 {
	margin-bottom: 24px;
}
/* service-child */
.service-child-cover {
	padding: 80px 70px;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
}
.service-child-name {
	background-color: var(--black-color);
	padding: 20px;
}
.sc-thumb-img img {
	width: 100%;
	aspect-ratio: 1/.95;
	object-fit: cover;
	transition: 1s;
}
.sc-list-content:hover .sc-thumb-img img {
	transform: scale(1.2);
}
.sc-link::after {
	content: "";
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
}
/* img with text */
.img-with-text {
  max-width: 510px;
}
.img-with-text h2 {
  margin-bottom: 24px;
}
.text-img img {
	height: 100%;
	object-fit: cover;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
.text-img {
  width: 50%;
  margin-top: -100px;
}
.img-with-text {
  padding-bottom: 70px;
  padding-top: 120px;
}
/* customised */
.customised-img {
  width: 50%;
}
.customised-content {
  width: 50%;
  padding: 60px;
}
.customised-content h2 {
  margin-bottom: 24px;
}
.customised-img img {
	height: 100%;
	object-fit: cover;
}
.gallery-img img {
	width: 100%;
	aspect-ratio: 1/.67;
	object-fit: cover;
}
.gallery {
	padding-bottom: 65px;
}
/* faq */
.question {
	padding: 17px 0; 
	background: transparent;
	cursor: pointer;
}
.answer {
	display: none;
	padding-bottom: 20px;
}
.question h4 {
	font-weight: 600;
	font-size: 18px;
	line-height: 1;
}
.faq-item {
	border: 1px solid var(--black-color);
	padding: 0 20px;
}
.faq-item:not(:last-child) {
	margin-bottom: 16px;
}
.faq-title {
	margin-bottom: 50px;
}
.answer li {
	list-style: inside;
}
/* review */
.review-img {
	width: 45%;
	padding-right: 70px;
}
.review-content {
	width: 55%;
	padding-top: 70px;
	padding-bottom: 150px;
}
.review-cover {
	padding: 0 80px;
}
.review-title strong, .review-title b {
	color: var(--white-color);
}
.review-title {
	margin-bottom: 32px;
	border-bottom: 1px solid var(--section-bg);
	padding-bottom: 40px;
}
.review-img img {
	height: 100%;
	object-fit: cover;
	border-radius: 10% 10% 50% 50% / 0% 0% 40% 40%;
}
.review-cover::before {
	content: "";
	position: absolute;
	background-color: var(--secondery-color);
	height: calc(100% - 85px);
	width: 100%;
	top: 0;
	left: 0;
	border-radius: 10px;
}
.splide__arrow:disabled {
	opacity: 1 !important;
}
.splide__arrow {
	background: transparent;
	opacity: 1 !important;
	height: 22px;
	width: 22px;
	top: calc(50% - 45px);
}
.splide__arrow--prev {
	left: -35px;
}
.splide__arrow--next {
	right: -35px;
}
.review-star img {
  width: 180px;
}
.review-star {
  display: flex;
  flex-direction: column;
  position: absolute;
  background-color: rgba(246, 235, 235, .9);
  padding: 20px 60px 20px 30px;
  left: 0;
  top: 52%;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
/* footer */
.footer-area {
  padding-top: 80px;
  padding-bottom: 70px;
}
.footer-logo {
  width: 180px;
  margin-bottom: 30px;
}
.footer-link a, .footer-text a, .footer-menu ul li a {
  color: var(--black-color);
}
.footer-link a:hover, .footer-text a:hover, .footer-menu ul li a:hover {
  color: var(--primary-color);
}
.footer-text span, .footer-menu span {
  display: block;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 30px;
}
.footer-menu ul {
  list-style: none;
}
.copyright-area {
  border-top: 1px solid var(--section-bg);
  padding-top: 36px;
  margin-top: 70px;
}
.seo-logo {
	width: 61px;
}
/* about template */
.ab-img.banner-img {
  right: unset;
  left: 0;
}
.ab-content {
  width: 50%;
  margin-left: auto;
  padding-left: 100px;
}
.ab-banner-content {
	margin-top: 36px;
}
.page-id-22 .service-child-cover {
	border-top-left-radius: 0;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 0;
}
/* services */
.service-banner-content {
  width: 50%;
  padding: 80px;
  padding-right: 20px;
}
.service-banner-img {
  width: 50%;
}
.service-banner-content::before {
  content: "";
  position: absolute;
  background-color: var(--section-bg);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: .9;
}
.service-banner-content * {
  position: relative;
}
.service-banner-content h1 {
	margin-bottom: 24px;
}
.service-banner-img img {
	height: 100%;
	object-fit: cover;
	aspect-ratio: 1/.5;
}
.service-content-wrap {
	max-width: 612px;
	margin-left: auto;
	width: 100%;
}
.options-title {
	margin-bottom: 40px;
}
.our-work-title h2 {
	margin-bottom: 20px;
}
.our-work-cover, .page-id-26 .service-child-cover {
	border-top-right-radius: 10px !important;
	border-top-left-radius: 10px !important;
}
.splide__pagination__page.is-active {
	transform: scale(1);
	opacity: 1 !important;
}
.splide__pagination__page {
	background: #fff;
	height: 10px;
	width: 10px;
	opacity: .7;
}
.splide__pagination {
	bottom: 40px;
}
.gallery_slider .splide__pagination__page {
	background: var(--primary-color);
	opacity: .3;
}
.gallery_slider .splide__pagination {
	bottom: 0;
}
.gallery_slider {
	padding-bottom: 40px;
}
.gallery_slider .gallery-img img {
	aspect-ratio: 1/.57;
}
/* contact-page */
.contact-us-area .contact-title h1 {
	margin-bottom: 20px;
}
.contact-us-area .contact-title strong, .contact-us-area .contact-title b {
	color: var(--primary-color);
}
.contact-us-area::before {
	content: "";
	position: absolute;
	background-color: var(--section-bg);
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	opacity: .9;
}








/* 404 */
.error-404 h1 {
	font-size: 200px;
	line-height: 1;
}
/* responsive */
@media all and (max-width: 1399.98px){
.h-btn {
	gap: 46px;
	margin-left: 50px;
}
.main-menu > ul {
	gap: 30px;
}
.img-with-text {
	padding-top: 100px;
}
.splide__arrow--prev {
	left: -20px;
}
.splide__arrow--next {
	right: -20px;
}
.review-cover {
	padding: 0 50px;
}
.review-img {
	padding-right: 50px;
}
.ab-content {
	padding-left: 60px;
}
.service-banner-content {
	padding: 60px;
}


}

@media all and (max-width: 1199.98px){
h1, .f-46 h2, .h1 {
	font-size: 42px;
}
.h-btn {
	gap: 20px;
	margin-left: 20px;
}
.main-menu > ul {
	gap: 0;
}
.main-menu ul li a {
	font-size: 14px;
}
.service-child-cover {
	padding: 60px 40px;
}
.img-with-text {
	padding-top: 80px;
	padding-bottom: 50px;
}
.customised-content {
	padding: 48px;
}
.review-text {
	font-size: 16px;
}
.review-img {
	width: 50%;
	padding-right: 30px;
}
.review-cover {
	padding: 0 30px;
}
.review-content {
	width: 50%;
	padding-top: 30px;
	padding-bottom: 120px;
}
.contact-form-wrap {
	padding: 40px;
}
.contact-form-wrap h2 {
	margin-bottom: 40px;
}
.map-responsive {
	padding-bottom: 70%;
}
.ab-content {
	padding-left: 30px;
}
.ab-content.banner-content {
	padding-bottom: 80px;
	padding-top: 80px;
}
.service-banner-content {
	padding: 60px 24px;
}

}

@media all and (max-width: 991.98px){
h1, .f-46 h2, .h1 {
	font-size: 40px;
}
.mb-call-btn {
	height: 56px;
	width: 56px;
	justify-content: center;
	align-items: center;
	background-color: var(--secondery-color);
	border-radius: 100px;
	color: var(--white-color);
	transition: .4s all;
}
.mb-call-btn:hover {
	background-color: var(--primary-color);
}
.img-with-text {
	padding-top: 40px;
	padding-bottom: 0;
	max-width: 100%;
}
.text-img {
	width: 100%;
}
.customised-content {
	padding: 30px;
}
.review-cover {
	padding: 0 20px;
	flex-direction: column;
}
.review-img {
	width: 100%;
	padding-right: 60px;
	padding-left: 60px;
}
.review-content {
	width: 100%;
	padding-top: 40px;
	padding-bottom: 100px;
}
.review-img img {
  aspect-ratio: 1;
}
.review-star {
  top: 24%;
}
.review-cover::before {
  height: 100%;
}
.splide__arrow--prev {
	left: 0;
}
.splide__arrow--next {
	right: 0;
}
.splide__arrow svg {
	fill: #fff;
}
.pb-12 {
	padding-bottom: 12px;
}
.contact-form-wrap {
	padding: 40px 20px;
}
.map-responsive {
	padding-bottom: 75%;
}
.ab-content.banner-content {
	padding-bottom: 50px;
	width: 100%;
	padding-left: 0;
}
.about-banner {
	flex-direction: column-reverse;
}
.page-id-22 .service-child-cover {
	border-top-right-radius: 0;
	border-bottom-left-radius: 0;
}
.service-banner-img, .service-banner-content {
	width: 100%;
}
.service-banner-content {
	padding: 60px 20px 40px 20px;
}
.service-content-wrap {
	max-width: 100%;
}


	/* m-menu */
	.menu-close-btn {
		position: absolute;
		top: 14px;
		right: 10px;
		z-index: 9;
		font-size: 18px;
		display: flex;
		align-items: center;
	}
	.menu-close-btn i:hover{
		color: var(--primary-color);
	}
	.mm-navbar__title span::before {
		content: "Back to ";
	}
	.mm-navbar__title span{
		text-transform: uppercase;
		font-size: 14px;
		font-weight: bold;
		color: var(--secondery-color) !important;
	}
	.mm-panel ul li a {
		font-size: 14px;
		color: var(--black-color) !important;
		text-transform: uppercase;
		font-weight: 400;
		letter-spacing: 3px;
	}
	.mm-navbar .btn {
		color: var(--secondery-color) !important;
		font-weight: bold;
	}
	.mm-navbar .btn:hover {
		color: var(--primary-color) !important;
	}
	.mm-navbars--bottom {
		border-top: none;
	}
	.mm-menu {
		z-index: 100;
		display: block;
	}
	.mm-wrapper__blocker.mm-blocker.mm-slideout{
		z-index: 99;
	}
	.mm-panels {
		background: var(--white-color);
	}
	.menu--just-title a {
		border-top: 0 solid #EAEAEA;
		padding-top: 0 !important;
	}
	.mm-navbar__title {
		text-transform: uppercase;
		font-size: 16px;
		letter-spacing: 1.6px;
	}
	.mm-listitem__text {
		font-size: 15px;
	}
	.mm-menu {
		--mm-size: 100%;
		--mm-color-background: var(--white-color);
	}
	.menu-close-btn {
		position: absolute;
		right: 10px;
		z-index: 9;
		font-size: 18px !important;
		color: var(--secondery-color) !important;
		top: 15px;
	}
	.menu-close-btn {
		font-size: 14px;
	}
	.mm-navbar__title span {
		display: none;
	}
	.mm-panel--opened .mm-navbar__title span {
		display: block;
		font-size: 0;
	}
	#menu .mm-navbar .mm-navbar__title span {
		display: none;
	}
	.mm-navbar .btn {
		color: var(--white-color) !important;
	}
	.mm-panel .mega-menu {
		position: relative !important;
	}
	.mm-panels .sub-menu li a {
		padding: 15px 20px !important;
	}
	.menu-trigger{
		display: block;
	}
	.menu-trigger a {
		flex-direction: column;
		row-gap: 6px;
		position: relative;
		z-index: 999;
		cursor: pointer;
		background-color: var(--primary-color);
		border-radius: 10px;
		height: 56px;
		width: 56px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.menu-trigger span {
		display: block;
		height: 3px;
		width: 26px;
		background-color: var(--white-color);
		border-radius: 0;
	}
	.main-menu {
		display: none;
	}
	.mm-panel ul li.menu-btn a{
		color: var(--white-color) !important;
	}
	.menu-btn {
		margin: 20px;
		text-align: center;
	}
	.mm-panel ul li.menu-btn a:hover{
		background-color: var(--primary-color) !important;
	}
	.mm-panel ul li.menu-btn-primary a{
		background-color: var(--primary-color) !important;
	}
	.mm-panel ul li.menu-btn-primary a:hover{
		background-color: var(--secondery-color) !important;
	}
	.menu-btn::after{
		display: none;
	}
	.h-btn {
		gap: 16px;
		flex: unset;
	}
	/* menu-end */

	.banner-img {
	position: unset;
	height: 100%;
	width: 100%;
	margin-bottom: -100px;
}
.banner-img img {
	aspect-ratio: 1 /.8;
}
.service-child-cover {
	border-radius: 0;
}
.header-sec {
	padding: 20px 0;
}
.banner-content {
	padding-top: 80px;
	padding-bottom: 60px;
}
.splide__arrow {
	top: 60%;
}


}

@media all and (max-width: 782px){
	.admin-bar .header-sec {
		top: 46px;
	}
}

@media all and (max-width: 767.98px){
body, .f-18 h1{
	font-size: 16px;
}
h1, .f-46 h2, .h1 {
	font-size: 32px;
}
h2 {
	font-size: 28px;
}
.header-logo {
	width: 140px;
}
.mb-call-btn, .menu-trigger a {
	height: 50px;
	width: 50px;
}
.menu-trigger span {
	width: 24px;
}
.mb-call-btn svg {
	width: 26px;
	height: 26px;
}
.h-btn {
	gap: 12px;
}
.p-100{
	padding: 60px 0;
}
.pt-100{
	padding-top: 60px;
}
.pb-100{
	padding-bottom: 60px;
}
.p-85{
	padding: 60px 0;
}
.pt-85{
	padding-top: 60px;
}
.pb-85{
	padding-bottom: 60px;
}
.service-child-cover {
	padding: 60px 20px 40px 20px;
}
.banner-content {
	padding-bottom: 50px;
}
.banner-img img {
	aspect-ratio: 1;
}
.text-img {
	margin-top: -60px;
}
.text-img img {
	aspect-ratio: 1/.95;
	border-bottom-left-radius: 6px;
  	border-bottom-right-radius: 6px;
}
.customised-preferences-area {
	padding-bottom: 60px;
}
.customised-cover {
	flex-direction: column;
}
.customised-img, .customised-content {
	width: 100%;
}
.customised-content {
	padding: 30px 20px;
}
.rounded-10 {
	border-radius: 6px;
}
.gallery {
	padding-bottom: 40px;
}
.faq-title {
	margin-bottom: 40px;
}
.review-img {
	padding-right: 0;
	padding-left: 0;
}
.review-img img {
	aspect-ratio: 1/1.2;
}
.review-star {
	top: 12%;
	padding: 16px 20px 16px 20px;
}
.review-star img {
	width: 130px;
}
.review-title {
	margin-bottom: 26px;
	padding-bottom: 30px;
}
.contact-title {
	margin-bottom: 40px;
}
.contact-form-wrap h2 {
	margin-bottom: 24px;
}
.location span {
	margin-top: 20px;
}
.contact-details {
	margin-bottom: 40px;
}
.contact-details p {
	line-height: 1.8;
}
.location {
	margin-top: 30px;
}
.map-responsive {
	padding-bottom: 60%;
}
.copyright-area {
  flex-direction: column;
}
.seo-logo-wrapp {
	flex-direction: column;
	gap: 12px !important;
}
.footer-logo {
	margin-left: auto;
	margin-right: auto;
}
.footer-area {
	padding: 60px 0;
}
.footer-text span, .footer-menu span {
	font-size: 16px;
	margin-bottom: 12px;
	margin-top: 36px;
}
.copyright-area {
	margin-top: 40px;
}
.ab-content.banner-content {
	padding-bottom: 40px;
}
.banner-img {
	margin-bottom: -60px;
}
.service-banner-img img {
	aspect-ratio: 1/.9;
}
.gallery_slider {
	padding-bottom: 20px;
}
.error-404 h1 {
	font-size: 100px;
}


}

@media (max-width: 600px) {
	.admin-bar .header-sec.sticky-active {
		top: 0;
	}
}

@media (max-width: 576.98px) {
.btn {
	font-size: 13px;
	padding: 18px 20px;
}
	.card-btn .btn {
		flex: 1;
	}
	.card-btn {
	gap: 10px !important;
}

}