/*
Theme Name: Sydney Expert Electrician
Text Domain: sydneyexpertelectrician
Version: 1.1
Requires at least: 4.7
Requires PHP: 5.2.4
Description: Theme for Sydney Expert Electrician
Author: Fio
Author URI: https://wordpress.org/
Theme URI: https://wordpress.org/themes/sydneyexpertelectrician/
*/

* {
	box-sizing: border-box;
	margin: 0;
	font-family: "Open Sans", sans-serif;
	font-size: clamp(14px, 0.93vw, 20px);
	color: #222222;
}

body {
	position: relative;
	overflow-x: hidden;
}

a {
	text-decoration: none;
}

.permanent-marker {
	font-family: "Permanent Marker", sans-serif;
}

.text-yellow {
	color: #FAE974;
}

.text-white {
	color: #FFFFFF;
}

.text-gray {
	color: #484949;
}

.text-gold {
	color: #877E40;
}

.text-blue {
	color: #02296C
}

.text-center {
	text-align: center;
}

.weight-400 {
	font-weight: 400;
}

.weight-600 {
	font-weight: 600;
}

.weight-700 {
	font-weight: 700;
}

.weight-800 {
	font-weight: 800;
}

.uppercase {
	text-transform: uppercase;
}

.italic {
	font-style: italic;
}

.font-12,
.font-12 * {
	font-size: 12px;
}

.font-16,
.font-16 * {
	font-size: clamp(14px, 1.06vw, 20px);
}

.font-18,
.font-18 * {
	font-size: clamp(16px, 1.2vw, 24px);
}

.font-20,
.font-20 * {
	font-size: clamp(18px, 1.33vw, 24px);
}

.font-21,
.font-21 * {
	font-size: clamp(16px, 1.36vw, 26px);
}

.font-24,
.font-24 * {
	font-size: clamp(16px, 1.59vw, 30px);
}

.font-26,
.font-26 * {
	font-size: clamp(18px, 1.72vw, 32px);
}

.font-30,
.font-30 * {
	font-size: clamp(20px, 1.99vw, 42px);
}

.font-40,
.font-40 * {
	font-size: clamp(22px, 2.65vw, 54px);
}

.font-48,
.font-48 * {
	font-size: clamp(24px, 3.18vw, 56px);
}

.font-52,
.font-52 * {
	font-size: clamp(28px, 3.44vw, 92px);
	line-height: 1.2;
}

.font-96,
.font-96 * {
	font-size: clamp(46px, 6.35vw, 115px);
	line-height: 1.2;
}

.buttons-row {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: clamp(15px, 1.5vw, 30px);
	margin-bottom: 15px;
}

.buttons-row .button-container {
	width: 35%;
}

.button-container {
	max-width: 400px;
}

.button {
	padding: clamp(5px, 0.7vw, 15px) clamp(10px, 2vw, 25px);
	border-radius: clamp(5px, 0.7vw, 15px);
	display: flex;
	justify-content: center;
	text-align: center;
	width: 100%;
	white-space: nowrap;
}

.button-yellow,
.button-yellow-invert:hover {
	border: 1px solid #FAE974;
	background-color: #FAE974;
	color: #000D25;
	transition: background-color 0.5s ease, color 0.5s ease;
}

.button-yellow-invert,
.button-yellow:hover {
	border: 1px solid #FAE974;
	background-color: transparent;
	color: #FAE974;
	transition: background-color 0.5s ease, color 0.5s ease;
}

.button-blue,
.button-blue-invert:hover {
	border: 1px solid #02296C;
	background-color: #02296C;
	color: #FFFFFF;
	transition: background-color 0.5s ease, color 0.5s ease;
}

.button-blue-invert,
.button-blue:hover {
	border: 1px solid #02296C;
	background-color: transparent;
	color: #02296C;
	transition: background-color 0.5s ease, color 0.5s ease;
}

.button-container {
	min-width: 150px;
}

.button.call-button {
	position: relative;
	align-items: center;
	justify-content: space-between;
	padding: 0;
}

.call-button:before {
	content: "";
	height: 100%;
	width: 90%;
	background-color: #FAE974;
	border-radius: clamp(5px, 0.7vw, 15px);
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(0, -50%);

}

.call-button .icon-container {
	background-color: #3C381C;
    width: clamp(35px, 3vw, 60px);
    height: clamp(35px, 3vw, 60px);
    border-radius: 50%;
    display: flex;
    padding: 5%;
    transform: scale(1.3);
}

.button.call-button .call-button-text {
	padding: 0 10px;
	white-space: nowrap;
	position: relative;
}

img {
	object-fit: contain;
}

section.section {
	padding: clamp(40px, 5vw, 100px) 7%;
}

.grid {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: clamp(25px, 1.5vw, 40px);
}

.grid .grid-item {
	grid-column: span 1;
}

@media screen and (min-width: 750px) {
	.grid.grid-2 {
		grid-template-columns: repeat(2, 1fr);
	}

	.grid.grid-3 {
		grid-template-columns: repeat(3, 1fr);
	}

	.grid.grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.grid .grid-item.grid-item2 {
		grid-column: span 2;
	}

	.buttons-row {
		justify-content: flex-start
	}
}

@media screen and (min-width: 1024px) {
	.grid.grid-4 {
		grid-template-columns: repeat(4, 1fr);
	}
}

header {
	position: fixed;
	width: 100%;
	z-index: 10;
	top: 0;
}

.header-top {
	background-color: #021941;
	display: flex;
	justify-content: space-between;
	padding: 5px 7%;
	flex-wrap: wrap;
}

.header-top .header-top-left {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.header-top .header-top-left .header-top-left-item {
	display: flex;
	align-items: center;
	margin-right: clamp(10px, 1vw, 20px);
	font-size: 12px;
}

.header-top .header-top-left .header-top-left-item .header-top-left-icon {
	flex-shrink: 0;
	margin-right: 5px;
}

.header-top .header-top-left .header-top-left-item .header-top-left-item-text {
	display: none;
}

.header-top .header-top-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
}

.header-top .header-top-right .header-top-right-item {
	margin-left: clamp(10px, 1vw, 20px);
	display: flex;
}

.header-top .header-top-right .header-top-right-item:first-child {
	margin-left: 0;
}

.header-main {
	background-color: #FAE974;
	display: flex;
	justify-content: space-between;
	padding-left: 7%;
}

.header-main .nav-bar-main {
	display: flex;
	align-items: center;
}

.header-main .header-logo {
	display: flex;
    width: clamp(120px, 12.5vw, 300px);
}

.header-main .header-logo img {
	width: 100%;
	object-fit: contain;
}

.header-main .header-main-right {
	display: flex;
	justify-content: space-between;
	flex-grow: 1;
	max-width: 35vw;
}

.header-fast-response {
	position: relative;
	display: flex;
	width: 100%;
	align-items: center;
	padding: 0 0 0 7%;
}

.header-fast-response .fast-response-content{
	position: relative;
	z-index: 2;
	background-color: #021941;
	padding: clamp(5px, 1vw, 10px);
	border-radius: 5vw;
	display: none;
}

.header-fast-response.header-fast-response-home .fast-response-content .fast-response-text {
	color: #6AD7F8;
	margin-left: clamp(5px, 0.7vw, 10px);
}

.header-fast-response .fast-response-content .fast-response-text {
	margin-left: clamp(5px, 0.7vw, 10px);
}

.header-fast-response .fast-response-image {
	position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center left;
}

header.header-home .header-main {
	background-color: #6AD7F8;
}

header .navigation {
	display: flex;
	padding-left: 0;
}

header .navigation li {
	position: relative;
	margin: 0 20px;
	line-height: 1.5;
	list-style: none;
}

header .navigation li.dropdown .navigation-parent {
	cursor: pointer;
}

header .navigation li.dropdown .navigation-parent:after {
	content: "\276F";
	transform: rotate(90deg);
	color: #524D27;
	margin-left: 10px;
}

header .navigation li.dropdown .navigation-parent:hover:after {
	content: "\276F";
	transform: rotate(90deg);
	color: #1F1D0F;
	margin-left: 10px;
}

header .navigation li.dropdown .navigation-parent.active:after {
	content: "\276F";
	transform: rotate(90deg);
	color: #1F1D0F;
	margin-left: 10px;
}

header .navigation div.dropdown-items {
	position: absolute;
	z-index: 5;
	min-width: 200%;
    display: none;
    margin-top: 10px;
}

header .navigation li.dropdown .navigation-parent.active ~ div.dropdown-items {
	display: block;
}

header .navigation .dropdown-item {
	color: inherit;
	text-align: left;
	font-size: 14px;
	font-weight: 500;
	background: #6AD7F8;
    transition: background 0.5s;
    padding: clamp(5px, 0.6vw, 10px) clamp(10px, 1vw, 20px);
}

header.header-home .navigation .dropdown-item {
	background: #FAE974;
}

header .navigation .dropdown-item:hover {
	color: #002C5B;
	background: #F6FF7F;
}

header .navigation li a,
header .navigation li span {
	display: flex;
	align-items: center;
	text-align: center;
	font-weight: 400;
	text-transform: uppercase;
	padding: 7px 0;
	color: #524D27;
}

header .navigation li a:hover,
header .navigation li.active a.navigation__item,
header .navigation li span:hover {
	color: #1F1D0F;
	font-weight: 700;
}

.header-main .header-call {
	position: fixed;
	background-color: #02296C;
	bottom: 0;
	right: 0;
	width: 100vw;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(10px, 0.8vw, 20px) 7%;
}

.header-main .header-call .header-call-icon-container {
	background-color: #FAE974;
	width: clamp(50px, 10vw, 80px);
    height: clamp(50px, 10vw, 80px);
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-main .header-call .header-call-icon-container img {
	width: 60%;
	object-fit: contain;
}

.header-home .header-main .header-call .header-call-icon-container {
	background-color: #6AD7F8;
}

.header-main .header-call .header-call-number {
	white-space: nowrap;
	margin-left: clamp(10px, 1vw, 25px);
	font-size: clamp(24px, 4vw, 42px);
}

@media screen and (min-width: 750px) {

	.header-fast-response .fast-response-content {
		transform: translate(-30%);
		display: flex;
		align-items: center;
	}

	.header-fast-response .fast-response-text {
		white-space: nowrap;
	}

	.header-top .header-top-left .header-top-left-item .header-top-left-item-text {
		display: flex;
	}
}

@media screen and (min-width: 1024px) {
	.header-main .header-call {
		position: relative;
		width: 45%;
		padding-left: 0;
		justify-content: flex-start;
	}

	.header-fast-response {
		width: fit-content;
	}

	.header-main .header-call .header-call-icon-container {
		width: clamp(30px, 5vw, 60px);
    	height: clamp(30px, 5vw, 60px);
    	transform: translate(-50%, 0);
	}

	.header-main .header-main-right {
		max-width: 50vw;
		justify-content: flex-end;
	}
	.header-main .header-call .header-call-number {
		transform: translate(-10%, 0);
		margin-left: 0;
		font-size: clamp(16px, 1.59vw, 30px);
	}

}

@media screen and (min-width: 1251px) {
	.header-main .header-main-right {
		max-width: 35vw;
	}
}

@media screen and (max-width: 1250px) {
	
	header.header-home .navigation .dropdown-item {
		background: #6AD7F8;
	}

	header .navigation li {
		width: 100%;
	}

	header .navigation li .navigation__item {
		padding: 10px 0;
	}

	header .header__navigation-button {
    	display: flex;
    	justify-content: center;
    	height: 45px;
    }

    .line1, .line2, .line3 {
		margin: 5px;
		background-color: #021941;
		width: 40px;
		height: 5px;
		display: block;
		position: relative;
		opacity: 1.0;
		border-radius: 15%;
		transition: all .3s;
	}

	.line1 {
		margin-top: 10px;
	}

	.line3 {
		margin-bottom: 10px;
	}

    #navigation-toggle.active .line1 {
		transform: rotate(270deg);
		opacity: 0.0;
		height: 3px;
	}

	#navigation-toggle.active .line2 {
		transform: rotate(45deg);
		top: 1px;
		height: 3px;
	}

	#navigation-toggle.active .line3 {
		transform: rotate(-45deg);
		top: -7px;
		height: 3px;
	}

	#navigation-toggle {
		z-index: 5;
		cursor: pointer;
		transition: background-position .3s;
		transform: scale(0.7);
	}

	header #navigation-list {
		background: #FAE974;
		top: 65px;
		width: 100vw;
		transition: all 0.5s ease-in-out;
		z-index: 50;
		padding: 0;
		display: none;
	}

	header.header-home #navigation-list {
		background: #6AD7F8;
	}

    header #navigation-list.active {
        right: 0;
        top: 100%;
        padding: 30px 7%;
        position: absolute;
        display: flex;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    header .navigation div.dropdown-items {
    	position: relative;
    	background: transparent;
    	border: none;
    	padding: 0;
    }

    header .navigation .dropdown-item {
    	font-weight: 500;
    	font-size: 14px;
    	background: transparent;
    	padding-left: 15px;
    }

   header .navigation .dropdown-item:hover {
   		background: transparent;
   		color: #F6FF7F;
   }
}


.banner {
	position: relative;
	min-height: calc(100vh - 60px);
	background-color: #021941;
}

.banner.banner-inner {
	min-height: 40vh;
}

.banner .banner-bg-main {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
}

.banner .banner-bg-main-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.banner .banner-bg-main:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(to right, rgba(0, 13, 37, 1) 0%, rgba(0, 13, 37, 0.7) 50%, rgba(0, 13, 37, 0.6) 100%);
	z-index: 2;
}

.banner.banner-suburb .banner-bg-main:before {
	background: linear-gradient(to top, rgba(0, 13, 37, 1) 0%, rgba(0, 13, 37, 0.7) 50%, rgba(0, 13, 37, 0.6) 100%);
}

.banner .banner-bg-right {
	display: none;
}

.banner .banner-main-content {
	position: relative;
	z-index: 3;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 0 7%;
	min-height: calc(100vh - 60px);
}

.banner.banner-inner .banner-main-content {
	min-height: 40vh;
}

.banner .banner-main-content .banner-content-left {
	padding: clamp(40px, 4vw, 80px) 0;
	padding-bottom: 0;
	width: 100%;
}

.banner .banner-main-content .banner-content-right {
	position: relative;
	display: flex;
	align-items: flex-end;
	width: 100%;
}

.banner.banner-inner .banner-main-content .banner-content-right {
	display: flex;
	justify-content: center;
}

.banner .banner-main-content .banner-content-right .banner-content-right-main-image {
	width: 100%;
	object-fit: contain;
}

.banner.banner-inner .banner-main-content .banner-content-right .banner-content-right-main-image {
	width: 70%;
}

.banner .banner-main-content .banner-content-right .banner-content-right-greviews {
	position: absolute;
	width: 35%;
	object-fit: contain;
	bottom: 15%;
	right: 5%;
}

.banner .banner-list {
	margin: clamp(25px, 2vw, 50px) 0;
}

.banner .banner-list .banner-list-item {
	display: flex;
	margin: clamp(15px, 1vw, 30px) 0;
}

.banner .banner-list .banner-list-item .icon-container {
	width: clamp(40px, 4vw, 90px);
    height: clamp(50px, 5vw, 90px);
    flex-shrink: 0;
    margin-right: 10px;
}

.banner .banner-list .banner-list-item .icon-container img {
	width: 100%;
	object-fit: contain;
}

.banner .banner-list .banner-list-item .banner-list-item-text {
	margin-top: 0.5em;
}

.banner .banner-text {
	margin: clamp(20px, 1.5vw, 50px) 0;
	line-height: 1.7;
}

.banner .banner-van {
	position: absolute;
	right: 0;
	bottom: 0;
	transform: translate(0, 20%);
	z-index: 4;
	width: 90%;
}

@media screen and (min-width: 750px) and (orientation: landscape) {
	.banner .banner-bg-main {
		width: 85vw;
	}
	.banner .banner-bg-main-img {
		object-position: bottom right;
	}

	.banner.banner-inner .banner-bg-main,
	.banner.banner-suburb .banner-bg-main {
		width: 75%;
	}

	.banner.banner-inner .banner-bg-main-img,
	.banner.banner-suburb .banner-bg-main-img {
		object-position: top right;
		clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
	}

	.banner.banner-suburb .banner-bg-main-img {
		object-position: top left;
	}

	.banner .banner-bg-right {
		display: block;
		position: absolute;
		right: 0;
		top: 0;
		width: 45%;
		height: 100%;
		object-fit: cover;
	}

	.banner .banner-main-content .banner-content-left {
		width: 45%;
		padding-bottom: clamp(40px, 4vw, 80px);
		display: flex;
		flex-flow: column;
		justify-content: center;
	}


	.banner .banner-main-content .banner-content-right {
		width: 55%;
	}

	.banner.banner-inner .banner-main-content .banner-content-left,
	.banner.banner-inner .banner-main-content .banner-content-right {
		width: 50%;
	}

	.banner.banner-inner .banner-main-content .banner-content-left {
		display: flex;
		flex-flow: column;
		justify-content: center;
	}

	.banner.banner-inner .banner-main-content .banner-content-right {
		padding: clamp(40px, 2.5vw, 60px) 0;
	}

	.banner .banner-bg-main:after {
		content: "";
		height: 100%;
		width: clamp(30px, 3.5vw, 100px);
		background-color: #FAE974;
		position: absolute;
		right: 11%;
		bottom: 0;
		transform: translate(0, 0%) skew(24deg, 0);
		z-index: 2;
	}

	.banner.banner-inner .banner-bg-main:after,
	.banner.banner-suburb .banner-bg-main:after {
		width: clamp(80px, 7vw, 150px);
		transform: translate(0, 0%) skew(-24deg, 0);
		right: 0;
	}

	.banner.banner-suburb .banner-bg-main:after {
		width: clamp(80px, 10vw, 250px);
		right: 7%;
	}

	.banner .buttons-row {
		justify-content: flex-start;
	}

	.banner .banner-bg-main:before {
		background: linear-gradient(to right, rgba(0, 13, 37, 1) 0%, rgba(0, 13, 37, 0.7) 50%, rgba(0, 13, 37, 0) 100%);
	}

	.banner .banner-main-content .banner-content-right .banner-content-right-main-image {
		width: 95%;
	}

	.banner.banner-inner .banner-main-content .banner-content-right .banner-content-right-main-image {
		width: 50%;
	}

	.banner .banner-van {
		width: 45%;
	}
}

.container {
	max-width: 1700px;
	margin: 0 auto;
}

.our-services {
	background-color: #FAE974;
}

.our-services .services-grid {
	margin-top: clamp(25px, 2vw, 50px);
}

.our-services .services-item {
	display: flex;
    align-items: flex-start;
}

.our-services .icon-container {
	background-color: #02296C;
	width: clamp(80px, 16vw, 300px);
    flex-shrink: 0;
    border-radius: clamp(10px, 1vw, 20px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3vw 2vw;
}

.our-services .icon-container img {
	width: clamp(50px, 6.7vw, 140px);
}

.our-services .text-container {
	margin-left: clamp(10px, 1vw, 20px);
}

.our-services .text-container .service-title,
.other-services .text-container .service-title {
	position: relative;
	padding-bottom: 10px;
    margin-bottom: 10px;
}

.our-services .text-container .service-title:after,
.other-services .text-container .service-title:after  {
    content: "";
    height: 3px;
    width: 30%;
    background-color: #FFFFFF;
    position: absolute;
    left: 0;
    bottom: 0;
}

.special-offer-container-white {
	position: relative;
    width: 86%;
    margin: 0 auto;
    margin-top: -50px;
    padding: clamp(15px, 1.5vw, 40px);
    box-shadow: 0px 15px 16px rgba(0, 0, 0, 0.08);
    background-color: #FFFFFF;
    margin-bottom: clamp(40px, 5vw, 100px);
    z-index: 3;
}

.special-offer-container-blue {
	position: relative;
	padding-top: clamp(15px, 1vw, 30px);
}

.special-offer-container-blue:before {
	content: "";
	width: 100%;
	height: 60%;
	background-color: #021941;
	top: 0;
	left: 0;
	border-radius: 0 0 clamp(15px, 2vw, 50px) clamp(15px, 2vw, 50px);
	display: block;
	position: absolute;
}

.special-offer-container-blue .coupons-flex {
	position: relative;
	padding-bottom: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.special-offer-container-blue .coupons-flex .coupons-flex-heading {
	margin: 1em 0;
	text-align: center;
}

.special-offer-container-blue .coupons-flex .coupons-flex-heading,
.special-offer-container-blue .coupons-flex .special-offer-coupons {
	width: 100%;
}

@media screen and (min-width: 750px) and (orientation: landscape) {
	.special-offer-container-blue .coupons-flex .coupons-flex-heading {
		width: 18%;
		text-align: left;
	}

	.special-offer-container-blue .coupons-flex .special-offer-coupons {
		width: 80%;
	}
}

@media screen and (min-width: 750px) {
	.special-offer-container-white {
		width: 80%;
	}
}

.special-offer-coupons .coupon {
	display: flex;
}

.special-offer-coupons .coupon .coupon-image {
	width: 100%;
	object-fit: contain;
}

section.section.reasons.reasons-tilted {
	padding-top: 0;
}

.reasons .reasons-content {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
}

.reasons .reasons-content::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	bottom: 0;
	right: 0;
	background-color: #021941;
	z-index: -1;
	border-radius: clamp(15px, 1.5vw, 30px);
}

.reasons .reasons-left {
	width: 70%;
	display: flex;
	align-items: flex-end;
	flex-shrink: 0;
	order: 2;
	margin: 0 auto;
}

.reasons .reasons-left img {
	width: 100%;
	object-fit: contain;
}

.reasons .reasons-main,
.reasons .reasons-right {
	width: 100%;
	padding: clamp(20px, 1.5vw, 40px);
}

.reasons .reasons-main {
	order: 1;
	padding-top: clamp(30px, 5vw, 120px);
}

.reasons .reasons-main .reasons-text {
	margin: 10px 0 15px 0;
	line-height: 1.5;
}

.reasons .reasons-right {
	order: 3;
	padding-top: 0;
}


@media screen and (min-width: 1024px) {

	section.section.reasons.reasons-tilted {
		padding-bottom: 0;
	}

	.reasons .reasons-left {
		order: 1;
		width: 30%;
		margin: unset;
		margin-left: clamp(-50px, -5vw, -100px);
	}

	.reasons .reasons-main {
		order: 2;
	}

	.reasons .reasons-main,
	.reasons .reasons-right {
		width: 35%;
		padding-top: clamp(80px, 5vw, 120px);
	}

	.reasons .reasons-content::before {
		height: 90%;
		
	}

	.reasons.reasons-tilted .reasons-content::before {
		-webkit-mask-image: url("assets/img/tilted-mask.svg");
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		-webkit-mask-size: cover;
		mask-image: url("assets/img/tilted-mask.svg");
		mask-repeat: no-repeat;
		mask-position: center;
		mask-size: cover;
		border-radius: 0;
	}
}

.reasons .reasons-content .reasons-items {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.reasons .reasons-content .reasons-items .reasons-item {
	width: 46%;
	display: flex;
	margin: 10px 0;
}

.reasons .reasons-content .reasons-items .reasons-item .icon-container {
	flex-shrink: 0;
	width: clamp(30px, 3.5vw, 50px);
	height: clamp(30px, 3.5vw, 50px);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
}

.reasons .reasons-content .reasons-items .reasons-item .icon-container img {
	width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.reasons .form-container {
	border-radius: clamp(15px, 1.5vw, 30px);
}

.form-container {
	background-color: #FFFFFF;
	padding: clamp(20px, 1.5vw, 40px);
}

.form-container .wpcf7,
.form-container .wpcf7 form {
	width: 100%;
}

.form-container .wpcf7-spinner {
	position: absolute;
}

.form-container br {
	display: none;
}

.form-container .wpcf7 form .wpcf7-response-output {
	border: none;
	text-align: center;
}

.form-container .contact-form-text {
	margin: 5px 0;
}

.form-container .contact-form-main {
	margin-top: clamp(15px, 1.5vw, 25px);
}

form label {
	display: none;
}

form .form__field {
	margin: 10px 0;
	width: 100%;
}

form input,
form textarea,
form select {
	background-color: #EAE4E4;
	padding: 10px;
	border-radius: 5px;
	width: 100%;
	border: none;
}

form select {
	-webkit-appearance: none;
}

form .form__field_submit {
	display: flex;
	justify-content: flex-end;
}

.reasons form .form__field_submit {
	display: flex;
	justify-content: center;
}

form .form__field_submit input {
	width: fit-content;
	padding: clamp(5px, 0.7vw, 15px) clamp(10px, 2vw, 25px);
	text-transform: uppercase;
	color: #FFFFFF;
	background-color: #02296C;
	text-align: center;
	font-weight: 700;
	cursor: pointer;
}

section.section.emergency-cta {
	padding-top: 0;
	padding-bottom: 0;
}

.emergency-cta .emergency-cta-inner {
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap-reverse;
    padding: clamp(20px, 2vw, 40px);
    padding-top: clamp(40px, 4vw, 80px);
}

.emergency-cta .emergency-cta-inner .image-container,
.emergency-cta .emergency-cta-inner .text-container {
	width: 100%;
}

.emergency-cta .emergency-cta-inner .image-container img {
	width: 100%;
	object-fit: contain;
}

.emergency-cta .emergency-cta-inner .emergency-cta-heading {
	line-height: 1.2;
	text-align: center;
}

.emergency-cta .emergency-cta-inner .emergency-cta-background {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #021941;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
}

.emergency-cta .emergency-cta-inner .buttons-row {
	margin: clamp(25px, 2vw, 50px) 0;
	justify-content: center;
}

@media screen and (min-width: 750px) {

	.emergency-cta .emergency-cta-inner .emergency-cta-heading {
		text-align: left;
	}
	.emergency-cta .emergency-cta-inner .image-container {
		width: 52%;
	}

	.emergency-cta .emergency-cta-inner .text-container {
		width: 45%;
	}

	.emergency-cta .emergency-cta-inner {
		padding-left: 0;
	}

	.emergency-cta .emergency-cta-inner .buttons-row {
		justify-content: flex-start;
	}
}

section.section.image-with-text-right-full {
	padding-right: 0;
}

section.section.image-with-text-right-full .text-container {
	padding-right: 7%;
}

.image-with-text-right-full .image-container .bg-container {
	background-color: #021941;
	-webkit-mask-image: url("assets/img/about-mask.svg");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: cover;
	mask-image: url("assets/img/about-mask.svg");
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: cover;
	position: absolute;
	width: 100%;
    height: 90%;
    bottom: 0;
}

.image-with-text-right-full .floating-boxes {
	position: absolute;
	width: 100%;
	height: 100%;
	display: none;
}

@media screen and (min-width: 1200px) {
	.image-with-text-right-full .floating-boxes {
		display: block;
	}
}

.image-with-text-right-full .floating-boxes .box {
	background-color: #FAE974;
	padding: clamp(10px, 1vw, 20px);
	border-radius: clamp(10px, 1vw, 20px);
	display: flex;
	align-items: center;
	width: 35%;
	min-width: 150px;
	position: absolute;
}

.image-with-text-right-full .floating-boxes .box1 {
	top: 40%;
	left: 0;
}

.image-with-text-right-full .floating-boxes .box2 {
	bottom: 5%;
	left: 5%;
}

.image-with-text-right-full .floating-boxes .box3 {
	right: 5%;
	top: 50%;
}

.image-with-text-right-full .floating-boxes .box .box-heading {
	line-height: 1.2;
}

.image-with-text-right-full .floating-boxes .box .icon-container {
	flex-shrink: 0;
	width: clamp(30px, 3vw, 50px);
	height: clamp(30px, 3vw, 50px);
	display: flex;
	margin-right: clamp(5px, 1vw, 15px);
}

.image-with-text-right-full .floating-boxes .box .icon-container img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.image-with-text .image-with-text-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.image-with-text .image-with-text-inner .text-container,
.image-with-text .image-with-text-inner .image-container {
	width: 100%;
	position: relative;
}

.image-with-text .image-with-text-inner .text-container .image-with-text-heading {
	line-height: 1.2;
}

.image-with-text .image-with-text-inner .text-container .main-text {
	line-height: 1.7;
}

.image-with-text .image-with-text-inner .text-container .main-text p {
	margin: 1em 0;
}

.image-with-text .image-with-text-inner .image-container.image-container-coupon-bottom-left {
	display: flex;
	justify-content: flex-end;
}

.image-with-text .image-with-text-inner .image-container.image-container-coupon-bottom-right,
.image-with-text .image-with-text-inner .image-container.image-container-stats-bottom-right {
	display: flex;
	justify-content: flex-start;
}

.image-with-text .image-with-text-inner .main-image-container-80 {
	display: flex;
	width: 80%;
	padding-top: 50%;
	position: relative;
}

.image-with-text .image-with-text-inner .main-image-container-90 {
	display: flex;
	width: 90%;
	padding-top: 60%;
	position: relative;
}

.image-with-text .image-with-text-inner .main-image-container {
	margin-top: 1em;
}

.image-with-text .image-with-text-inner .image-with-boxes {
	display: flex;
	justify-content: flex-end;
}

.image-with-text .image-with-text-inner .main-image-container img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

.image-with-text .image-with-text-inner .coupon-container {
	position: absolute;
	width: 40%;
	min-width: 200px;
	background-color: #FAE974;
	-webkit-mask-image: url("assets/img/coupon-mask.svg");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: cover;
	mask-image: url("assets/img/coupon-mask.svg");
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: cover;
	text-align: center;
	padding: clamp(15px, 1vw, 30px);
}

.image-with-text .image-with-text-inner .image-container-46 .coupon-container {
	width: 55%;
}

.image-with-text .image-with-text-inner .coupon-container .coupon-text-center {
	position: relative;
	width: fit-content;
	margin: 0 auto;
}

.image-with-text .image-with-text-inner .coupon-container .coupon-text-center .currency {
	position: absolute;
    top: 0;
    left: 0;
    transform: translate(-100%);
}

.image-with-text .image-with-text-inner .stats-container {
	position: absolute;
	width: 85%;
	min-width: 170px;
	background-color: #FAE974;
	bottom: 10%;
	right: 0;
	clip-path: polygon(0 0, 100% 0, 93% 100%, 0% 100%);
	display: flex;
	align-items: center;
	text-align: center;
}

.image-with-text .image-with-text-inner .stats-container .stats {
	padding: clamp(10px, 1vw, 30px) clamp(20px, 2vw, 50px);
	position: relative;
}

.image-with-text .image-with-text-inner .stats-container .stats .top {
	line-height: 1.2;
}

.image-with-text .image-with-text-inner .stats-container .stats1:after {
	content: "";
	height: 80%;
	width: 1px;
	position: absolute;
	top: 50%;
	transform: translate(50%, -50%);
	background-color: #021941;
	right: 0;
}

.image-with-text .image-with-text-inner .image-container-coupon-bottom-left .coupon-container {
	left: 0;
	bottom: 10%;
}

.image-with-text .image-with-text-inner .image-container-coupon-bottom-right .coupon-container {
	right: 0;
	bottom: 0;
	transform: translate(0, 15%);
}

@media screen and (min-width: 750px) {
	.image-with-text .image-with-text-inner .main-image-container {
		margin-top: 0;
	}

	.image-with-text .image-with-text-inner.image-with-text-inner-invert {
		flex-flow: row-reverse;
	}
	.image-with-text .image-with-text-inner .text-container.text-container-35 {
		width: 35%;
	}

	.image-with-text .image-with-text-inner .text-container.text-container-50 {
		width: 50%;
	}
	.image-with-text .image-with-text-inner .image-container.image-container-60 {
		width: 60%;
	}

	.image-with-text .image-with-text-inner .image-container.image-container-46 {
		width: 46%;
	}

	section.section.image-with-text-right-full .text-container {
		padding-right: 0;
	}

}

.seo-content .seo-content-heading {
	line-height: 1.2;
}

.seo-content .seo-content-text {
	line-height: 1.7;
	margin: 1.5em 0;
}

.seo-content .seo-content-text:last-child {
	margin-bottom: 0;
}

.seo-content .seo-content-text p {
	margin: 1em 0;
}

.seo-content .seo-content-text p:last-child {
	margin-bottom: 0;
}

.seo-content ul,
.seo-content ol {
	margin-block-start: 0.5em;
    padding-inline-start: 20px;
}

@media screen and (min-width: 750px) {
	.seo-content .seo-content-heading {
		width: 60%;
	}
}

.individual-service .individual-service-top-inner {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.individual-service .individual-service-heading {
	line-height: 1.2;
}

.individual-service .individual-service-heading,
.individual-service .individual-service-top .text-container {
	width: 100%;
}

.individual-service .individual-service-top .text-container {
	margin-top: clamp(15px, 1vw, 30px);
	line-height: 1.7;
}

@media screen and (min-width: 750px) {
	.individual-service .individual-service-heading {
		width: 45%;
	}
	.individual-service .individual-service-top .text-container {
		width: 50%;
		margin-top: 0;
	}
}

section.section.individual-service-bottom {
	position: relative;
	padding-top: 0;
}

.individual-service-bottom:before {
	content: "";
	width: 100%;
	height: 90%;
	position: absolute;
	left: 0;
	bottom: 0;
	background-color: #FAE974;
}

@media screen and (min-width: 750px) {
	.individual-service-bottom:before {
		height: 80%;
	}
}

.individual-service-bottom-content {
	position: relative;
	display: grid;
}

.individual-service-bottom-content .individual-service-bottom-item {
	position: relative;
	padding: clamp(20px, 2vw, 50px);
    padding-bottom: clamp(70px, 6vw, 140px);
}

.individual-service-bottom-content .individual-service-bottom-item .heading {
	line-height: 1.4;
	margin: 0.5em 0;
}

.individual-service-bottom-content .individual-service-bottom-item .bg-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #021941;
	-webkit-mask-image: url("assets/img/individual-service-bottom-item-mask.svg");
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		-webkit-mask-size: cover;
		mask-image: url("assets/img/individual-service-bottom-item-mask.svg");
		mask-repeat: no-repeat;
		mask-position: center;
		mask-size: cover;
}


.individual-service-bottom-content .individual-service-bottom-item .icon-container,
.individual-service-bottom-content .individual-service-bottom-item .text-container {
	position: relative;
}

.individual-service-bottom-content .individual-service-bottom-item .icon-container {
	width: 25%;
	padding-top: 25%;
	position: relative;
}

.individual-service-bottom-content .individual-service-bottom-item .icon-container img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	position: absolute;
	top: 0;
	left: 0;
}

.individual-service-bottom-content .individual-service-bottom-item .text-container p {
	line-height: 1.5;
}

.why-choose-us .why-choose-us-inner {
	position: relative;

}

.why-choose-us .why-choose-us-inner .bg-container {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #02296C;
	border-radius: clamp(15px, 1.5vw, 30px);
	left: 0;
	bottom: 0;
	overflow: hidden;
}

.why-choose-us .why-choose-us-inner .why-choose-us-inner-content {
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.why-choose-us .why-choose-us-inner .text-container,
.why-choose-us .why-choose-us-inner .image-container {
	width: 100%;
}

.why-choose-us .why-choose-us-inner .text-container {
	padding: clamp(20px, 2vw, 50px);
}

.why-choose-us .why-choose-us-inner .text-container .why-choose-us-text {
	line-height: 1.7;
}

.why-choose-us .why-choose-us-inner .text-container .why-choose-us-text p {
	margin: 1em 0;
}

.why-choose-us .why-choose-us-inner .image-container {
	padding: 0 clamp(20px, 2vw, 50px);
	position: relative;
	display: flex;
	align-items: flex-end;
}

.why-choose-us .why-choose-us-inner .image-container .main-image-container {
	display: flex;
	align-items: flex-end;
}

.why-choose-us .why-choose-us-inner .image-container .main-image-container img {
	width: 100%;
	object-fit: contain;
	margin: 0 auto;
}

.why-choose-us .why-choose-us-inner .button-container {
	width: fit-content;
	margin-top: 2.5em;
}

.why-choose-us .why-choose-us-inner .floating-boxes {
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	display: none;
}

.why-choose-us .why-choose-us-inner .floating-boxes .box {
	position: absolute;
	background-color: #FFFFFF;
	border-radius: clamp(15px, 1vw, 20px);
	padding: clamp(15px, 1.5vw, 30px);
	width: 45%;
}

.why-choose-us .why-choose-us-inner .floating-boxes .box.box1 {
	left: 5%;
    top: 40%;
}

.why-choose-us .why-choose-us-inner .floating-boxes .box.box2 {
	right: 5%;
    top: 40%;
}

.why-choose-us .why-choose-us-inner .floating-boxes .box.box3 {
    left: 0;
    bottom: 15%;
}

.why-choose-us .why-choose-us-inner .floating-boxes .box.box4 {
	right: 5%;
    bottom: 10%;
}

.why-choose-us .why-choose-us-inner .bg-container:after {
	content: "";
    display: block;
    position: absolute;
    width: 85%;
    padding-top: 85%;
    border-radius: 50%;
    background-color: #FAE974;
    bottom: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    transform: translate(0, 30%);
    
}

@media screen and (min-width: 750px) {
	.why-choose-us .why-choose-us-inner .bg-container {
		height: 90%;
	}

	.why-choose-us .why-choose-us-inner .bg-container:after {
		right: clamp(40px, 4vw, 100px);
		left: unset;
		margin-left: unset;
		margin-right: unset;
	    width: 50%;
	    padding-top: 50%;
	    transform: translate(0, -30%);
	}

	.why-choose-us .why-choose-us-inner .text-container {
		width: 35%;
		padding-top: clamp(40px, 15%, 120px);
        padding-bottom: clamp(40px, 15%, 120px);
	}
	.why-choose-us .why-choose-us-inner .image-container {
		width: 65%;
	}

	.why-choose-us .why-choose-us-inner .image-container .main-image-container img {
		width: 75%;
	}

	.why-choose-us .why-choose-us-inner .floating-boxes .box {
		width: 40%;
		min-width: 180px;
	}

	.why-choose-us .why-choose-us-inner .floating-boxes {
		display: block;
	}
}

.complete-services.complete-services-suburb {
	background-color: #FAE974;
}

.complete-services .complete-services-top {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.complete-services .complete-services-top .complete-services-heading,
.complete-services .complete-services-top .text-container {
	width: 100%;
}

.complete-services .complete-services-top .text-container {
	margin-top: clamp(15px, 1vw, 30px);
}

.complete-services .complete-services-top .complete-services-heading {
	line-height: 1.2;
}

.complete-services .complete-services-top .text-container {
	line-height: 1.7;
}

.circles-grid {
	margin-top: clamp(25px, 3.5vw, 60px);
}

.circles-grid .circle {
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	position: relative;
	overflow: hidden;
}

.circles-grid .circle .image-container {
	width: 100%;
	padding-top: 52%;
	position: relative;
	overflow: hidden;
}

.circles-grid .circle .text-container {
	width: 100%;
	padding-top: 48%;
	background-color: #02296C;
	position: relative;
}

.circles-grid .circle .text-container .circle-text {

}

.circles-grid .circle .text-container .circle-text-inner {
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	width: 75%;
}

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

.complete-services .free-quote-container {
	display: flex;
	justify-content: space-between;
	padding: 0 clamp(15px, 1vw, 25px);
	position: relative;
}

.complete-services .free-quote-container .free-quote-text {
	line-height: 1.2;
	margin-top: 1em;
	margin-bottom: 0.5em;
}

.complete-services .free-quote-container .button-container {
	width: 60%;
}

.complete-services .free-quote-container .bg-container {
	position: absolute;
	background-color: #0E1A30;
	width: 100%;
	height: 90%;
	left: 0;
	bottom: 0;
	border-radius: clamp(15px, 1.5vw, 25px);

}

.complete-services.complete-services-service-page .free-quote-container {
	margin-top: clamp(5px, 1vw, 30px);
}
.complete-services.complete-services-service-page .free-quote-container .bg-container {
	background-color: #02296C;
		-webkit-mask-image: url("assets/img/get-free-quote-mask.svg");
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		-webkit-mask-size: cover;
		mask-image: url("assets/img/get-free-quote-mask.svg");
		mask-repeat: no-repeat;
		mask-position: center;
		mask-size: cover;
}

.complete-services .free-quote-container .text-container {
	width: 55%;
	position: relative;
	padding-left: clamp(15px, 1vw, 25px);
	padding-bottom: clamp(15px, 1vw, 25px);
	display: flex;
	flex-flow: column;
	justify-content: center;
}

.complete-services .free-quote-container .image-container {
	width: 40%;
	display: flex;
	align-items: flex-end;
	position: relative;
}

.complete-services.complete-services-service-page .free-quote-container .text-container {
	margin-left: 15%;
}
.complete-services.complete-services-service-page .free-quote-container .image-container {
	margin-right: -10%;
}

.complete-services .free-quote-container .image-container img {
	width: 100%;
	object-fit: contain;
}

@media screen and (min-width: 750px) {
	.complete-services.complete-services-suburb .complete-services-top .complete-services-heading {
		width: 45%;
	}
	.complete-services .complete-services-top .complete-services-heading-container {
		width: 50%;
	}
	.complete-services.complete-services-suburb .complete-services-top .text-container {
		width: 40%;
		margin-top: 0;
	}

	.complete-services.complete-services-service-page .free-quote-container {
		width: 45%;
		transform: translate(0, -10%);
	}
}

.other-services .other-services-inner {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.other-services .other-services-heading {
	width: 100%;
	line-height: 1.2;
}

.other-services .other-services-container {
	margin-top: clamp(25px, 2vw, 50px);
	width: 100%;
}

.other-services .other-services-container .text {
	line-height: 1.7;
}

@media screen and (min-width: 750px) {
	.other-services .other-services-heading {
		width: 25%;
	}
	.other-services .other-services-container {
		margin-top: 0;
		width: 72%;
	}
}

.other-services .services-item {
	background-color: #02296C;
	border-radius: clamp(15px, 1.5vw, 30px);
	padding: clamp(20px, 2vw, 40px);
	height: 100%;
}

.other-services .services-item .icon-container {
	width: 30%;
	margin-top: clamp(25px, 1.5vw, 35px);
	margin-bottom: clamp(10px, 0.7vw, 20px);
}

.other-services .owl-stage {
	display: flex;
}

.faq .faq-inner {
	background-color: #021941;
	border-radius: clamp(15px, 1.5vw, 30px);
	padding: clamp(20px, 3vw, 60px) clamp(15px, 2vw, 30px);
}

.faq .faq-top-text {
	margin: 0.5em auto;
}

.faq .faq-columns {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: clamp(25px, 2vw, 50px);
}

.faq .faq-columns .faq-column {
	width: 100%;
}

@media screen and (min-width: 750px) {

	.faq .faq-top-text {
		width: 60%;
	}
	.faq .faq-columns {
		padding: 0 5%;
	}
	.faq .faq-columns .faq-column {
		width: 48%;
	}
}

.faq-item {
	margin-bottom: clamp(15px, 1vw, 25px);
	background-color: #02296C;
	padding: 0 1.5em;
	border-radius: 15px;
	position: relative;
}

.faq-item:before {
	content: "";
	width: clamp(5px, 0.5vw, 8px);
	height: 80%;
	background-color: #FAE974;
	border-radius: 2vw;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(0, -50%);
}

.faq-question {
	width: 100%;
	text-align: left;
	padding: 1.5em 0;
	border: none;
	outline: none;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	}

.faq-question .question {
	margin: 0;
	max-width: 80%;
}

.faq-toggle {
  position: relative;
  width: 16px;
  height: 16px;
  display: inline-block;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  background-color: #fff;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.faq-toggle::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item.active .faq-toggle::after {
  transform: translateY(-50%) rotate(0deg);
}


.faq-answer {
	display: none;
	padding: 0 0 1em 0;
	margin-top: -2px;
}

.faq-answer p {
	margin-top: 0;
}

.form-with-map-inner {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	box-shadow: 0px 3px 6px rgba(0,0,0,0.16);
	border-radius: clamp(15px, 1.5vw, 30px);
	position: relative;
	overflow: hidden;
}

.form-with-map-inner .map-container,
.form-with-map-inner .form-container {
	width: 100%;
}

.form-with-map-inner .map-container {
	border-bottom: clamp(5px, 0.5vw, 10px) solid #FAE974;
	position: relative;
	display: flex;
}

.form-with-map-inner .map-container .contact-items {
	position: absolute;
	left: 5%;
	bottom: 5%;
	background-color: #021941;
	padding: clamp(15px, 1.5vw, 40px);
	border-radius: clamp(15px, 1.5vw, 30px);
	max-width: 90%;
}

.form-with-map-inner .map-container .contact-items .contact-item {
	flex-wrap: wrap;
}

.form-with-map-inner .form-container {
	padding: clamp(20px, 2.5vw, 80px);
}

@media screen and (min-width: 750px) {
	.form-with-map-inner .map-container {
		border-bottom: none;
		border-right: clamp(5px, 0.5vw, 10px) solid #FAE974;
	}

	.form-with-map-inner .map-container,
	.form-with-map-inner .form-container {
		width: 50%;
	}

}

.contact-items .contact-item {
	display: flex;
	margin: 5px 0;
}

.contact-items .contact-item:not(:first-child) {
	align-items: center;
}

.contact-items .contact-item .icon-container {
	width: clamp(16px, 1.59vw, 30px);
	height: clamp(16px, 1.59vw, 30px);
	flex-shrink: 0;
	margin-right: clamp(5px, 0.7vw, 10px);
}

.contact-items .contact-item .icon-container img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.service-areas {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.service-areas .service-areas-left,
.service-areas .service-areas-right {
	width: 100%;
	flex-shrink: 0;
}

.service-areas .service-areas-right {
	margin-top: 20px;
}

#map {
	width: 100%;
	height: 100%;
	min-height: 300px;
	position: relative;
	overflow: hidden;
	border-radius: 15px;
}

.form-with-map-inner #map {
	border-radius: 0;
}

.testimonials-section .owl-stage {
	padding: 10px;
	display: flex;
}

.testimonials-section .owl-stage .owl-item {
	padding: 5px;
}

.testimonials-section .testimonials-items {
	padding-top: 10px;
}

.testimonials-section .testimonials-items .testimony {
	background-color: #F2F2F2;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
	border-radius: clamp(10px, 1vw, 20px);
	display: flex;
	flex-flow: column;
	justify-content: space-between;
	height: 100%;
	color: #484646;
}

.testimonials-section .testimonials-items .testimony .testimony-top {
	padding: clamp(15px, 1.5vw, 30px);
}

.testimonials-section .testimonials-items .testimony .stars-container {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-top: 5px;
}

.testimonials-section .testimonials-items .testimony .stars-container img {
	width: clamp(25px, 1.7vw, 45px);
	height: clamp(25px, 1.7vw, 45px);
	margin-right: 5px;
}

.testimonials-section .testimonials-items .testimony .testimony-main {
	background-color: #FFFFFF;
	border-radius: clamp(10px, 1vw, 20px);
	padding: clamp(15px, 1.5vw, 30px);
	padding-bottom: clamp(25px, 1.8vw, 35px);
	margin-top: 5px;
	flex-grow: 1;
}


@media screen and (min-width: 650px) {
	.service-areas .service-areas-left {
		width: 28%;
	}
	.service-areas .service-areas-right {
		width: 70%;
		margin-top: 0;
	}
}

footer {
	background-color: #021941;
	padding: clamp(40px, 5vw, 100px) 7%;
	padding-bottom: 100px;
}

footer .footer-columns {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: clamp(20px, 2.2vw, 50px);
}

footer .footer-columns .footer-column {
	width: 100%;
}

footer .footer-columns .footer-column .button-container {
	margin-bottom: 1.5em;
	max-width: 200px;
}

footer .footer-columns .footer-column .button-container .call-button {
	width: fit-content;
}

footer .footer-columns .footer-column .footer-column-heading {
	margin-bottom: 1em;
}

footer .footer-columns .footer-column ul {
	padding-left: 0;
	list-style: none;
}

footer .footer-columns .footer-column ul li {
	margin: 10px 0;
}

footer .footer-columns .footer-column .footer-logo-container {
	width: 60%;
	display: flex;
	margin-bottom: 15px;
}

footer .footer-columns .footer-column .footer-logo-container img {
	width: 100%;
	object-fit: contain;
}

footer .footer-columns .footer-column .footer-text {
	line-height: 1.7;
}

@media screen and (min-width: 750px) {
	footer .footer-columns .footer-column {
		width: 45%;
	}
}

@media screen and (min-width: 1024px) {
	footer {
		padding-bottom: clamp(40px, 5vw, 100px);
	}
}

@media screen and (min-width: 1250px) {
	footer .footer-columns .footer-column {
		width: fit-content;
		max-width: 22%;
	}
}

