:root {
	--primary-color-custom-old: #00c600;
	--primary-color-custom: #00c552;
	--secondary-color-custom: #171d40;
}

.w-100 {
	width: 100% !important;
}

.d-none {
	display: none;
}

html:has(body.pace-running) {
	overflow: hidden;
}

body>.loader {
	background: url(https://alliancemarketinguk.quaidtech.net/wp-content/uploads/2026/02/light-logo.webp) var(--secondary-color-custom) no-repeat;
    background-size: 720px;
    background-position: center center;
}

body>.loader>.loader-inner {
    top: 65%;
}

body>.loader>.loader-inner::before {
	content: none;
}

#header > .container {
	width: 100%;
}

#header > .container #fixed-header {
	max-width: none;
}

#header > .container #fixed-header > .vc_row {
	padding: 0 20px;
}

#header .header-28-topbar .dt-custom-nav>.menu-item>.item-has-icon {
	display: flex;
	align-items: center;
}

#header .header-28-topbar .dt-custom-nav>.menu-item>.item-has-icon>.menu-item-icon.fa-rotate-90 {
	transform: rotate(0deg);
}

#header .header-28-topbar .dt-custom-nav>.menu-item>.item-has-icon.no-next-divider+.divider {
	display: none !important;
}

#header .sticky-wrapper {
	height: fit-content !important;
}

#header .sticky-wrapper .header-28 {
	flex-direction: row;
    flex-wrap: nowrap;
	background-color: rgb(255 255 255);
/* 	background-color: rgb(255 255 255 / 35%);
	backdrop-filter: blur(10px); */
	transition: all 0.5s cubic-bezier(0.45, 0.05, 0.55, 0.95);
	-webkit-transition: all 0.5s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

/* #header .sticky-wrapper.is-sticky .header-28 {
	background-color: rgb(255 255 255);
	backdrop-filter: blur(0px);
} */

#header .header-28 .header-logo-col {
	margin-bottom: 0 !important;
}

#header .header-28 div#dt-1505913242232-e64ea019-90fc ul.dt-primary-nav>li {
	padding: 22px 0px;
}

#header .header-28 div#dt-1505913242232-e64ea019-90fc ul.dt-primary-nav>li>a {
	padding: 6px 10px;
}

#header .header-28 div#dt-1505913242232-e64ea019-91fc ul.dt-primary-nav>li>a {
	padding: 0;
}

#header .header-28 .dt-primary-nav>.menu-item>.item-has-icon {
	font-size: 16px;
	font-weight: 600;
}

#header .header-28 .dt-primary-nav>.menu-item:not(.current_page_item)>.item-has-icon {
	color: var(--secondary-color-custom);
}

#header .header-28 .header-col-3>.vc_column-inner>.wpb_wrapper {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

#header .header-28 .header-icons.d-inline {
	display: inline-block;
}

#header .header-28 .header-icons.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner {
	width: 3.25em;
	height: 3.25em;
	display: flex;
	justify-content: center;
	align-items: center;
}

#header .header-28 .header-icons.vc_icon_element.vc_icon_element-outer:not(:last-of-type) .vc_icon_element-inner::before {
	content: '';
	width: 1px;
	height: 2.5em;
	position: absolute;
	right: 0;
	background-color: var(--secondary-color-custom);
}

.inner-wrapper #header .header-28 .existing-customer-wrapper>.vc_column-inner>.wpb_wrapper {
    width: fit-content;
	position: relative;
    float: right;
}

.inner-wrapper #header .header-28 .existing-customer-wrapper .existing-customer,
.inner-wrapper #header .header-28 .existing-customer-wrapper .existing-customer-sub-menu {
	color: #FFFFFF;
	font-weight: 600;
	margin-top: 0;
    text-align: center;
	will-change: transform;
	transition: transform 0.3s ease-in-out;
	user-select: none;
	z-index: 2;
}

.inner-wrapper #header .header-28 .existing-customer-wrapper .existing-customer-sub-menu {
	display: inline-flex;
    align-items: center;
    justify-content: space-evenly;
	width: 100%;
    padding: 6px 20px;
	font-size: 12px !important;
	background-color: var(--secondary-color-custom);
	position: absolute;
	top: -3px;
	left: 0;
    transform: translateY(5px);
	z-index: 1;
}

.inner-wrapper #header .header-28 .existing-customer-wrapper>.vc_column-inner>.wpb_wrapper:hover .existing-customer {
    transform: translateY(-15px);
}

.inner-wrapper #header .header-28 .existing-customer-wrapper>.vc_column-inner>.wpb_wrapper:hover .existing-customer-sub-menu {
    transform: translateY(27px);
}

/* Base dot */
.existing-customer-sub-menu .availability-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
    position: relative;
    transform-origin: center;
}

/* Green (Open) */
.existing-customer-sub-menu .availability-indicator.green {
    background: var(--primary-color-custom);
    animation: pulseGreen 1.8s ease-in-out infinite;
}

/* Red (Closed) */
.existing-customer-sub-menu .availability-indicator.red {
    background: #ff0000;
    animation: pulseRed 1.8s ease-in-out infinite;
}

/* Green breathing pulse */
@keyframes pulseGreen {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 197, 82, 0.4);
    }
    50% {
        transform: scale(1.15);
        box-shadow: 0 0 0 4px rgba(0, 197, 82, 0.15);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 197, 82, 0.4);
    }
}

/* Red breathing pulse */
@keyframes pulseRed {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4);
    }
    50% {
        transform: scale(1.15);
        box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.15);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4);
    }
}

.inner-wrapper #header-wrapper + #main {
    margin-top: 0;
}

.home-hero-section.vc_row.vc_row-fluid {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	padding-top: 60px;
    padding-bottom: 60px;
	background: url(https://alliancemarketinguk.quaidtech.net/wp-content/uploads/2026/01/home-hero-bg-lefts.webp) #000a3b no-repeat;
    background-size: 580px;
    background-position: center left 30px;
    background-attachment: scroll;
}

.home-hero-section .hero-img {
	margin-bottom: 0;
}

.home-hero-section .hero-img .vc_single_image-wrapper {
    height: 360px;
}

.home-hero-section .hero-img .vc_single_image-wrapper img {
	height: 100%;
    object-fit: contain;
	object-position: center;
}

.home-hero-section.option-two.new-option .home-suppliers-section { margin-top: 20px !important; }

.home-hero-section>.vc_column_container:first-child {
	padding: 0;
}

.dt-sc-dark-bg .home-about-section .dt-sc-title.with-dual-color.text-white .dt-sc-main-heading,
.home-icon--box-container .dt-sc-icon-box.type7 .icon-content h4 a,
.home-testimonials-section .dt-sc-title.script-with-sub-title.text-white h2.dt-sc-main-heading,
.home-testimonials-section .dt-sc-title.script-with-sub-title.text-white h3.dt-sc-sub-heading {
	color: #FFFFFF;
}

.home-hero-section .dt-sc-title.with-dual-color {
	width: 100%;
}

.home-hero-section .dt-sc-title.with-dual-color h2.dt-sc-main-heading {
	font-size: 45px;
	line-height: 56px;
	margin-bottom: 25px;
}

.dt-sc-title.with-dual-color h2.dt-sc-main-heading,
.dt-sc-title.script-with-sub-title h2.dt-sc-main-heading,
h2.dt-sc-main-heading.dt-sc-custom-simple-title {
	font-size: clamp(2rem,5vw,2.85rem) !important;
	line-height: 1.25em !important;
	letter-spacing: 0.25px;
}
	
.home-hero-section .dt-sc-title.with-dual-color+.wpb_text_column {
	color: #FFFFFF;
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 25px;
}

.home-hero-section h5.dt-sc-main-heading+.dt-sc-button {
	margin-top: 0;
}

.home-hero-section .dt-sc-button.prefer-a-callback--sticky {
	display: none;
	position: fixed;
	top: 150px;
	right: 0;
	padding: 13px 26px 11px 20px !important;
	background-color: #008035;
	box-shadow: 0 0 6px 0 rgb(234 234 234 / 15%);
	transform: translateX(150px);
	transition: transform 0.5s cubic-bezier(0.45, 0.05, 0.55, 0.95);
	-webkit-transition: transform 0.5s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.home-hero-section .dt-sc-button.prefer-a-callback--sticky:hover {
	transform: translateX(5px);
}

.home-hero-section .hero-step-process.backdrop-filter::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgb(0 0 0 / 35%);
	backdrop-filter: blur(5px);
	border-radius: 10px;
}

.home-hero-section.option-two .hero-step-process.backdrop-filter::before {
	background-color: rgb(255 255 255 / 90%);
}

.home-hero-section.option-two .home-suppliers-section {
    padding: 30px 20px !important;
    margin-top: 0 !important;
}

.home-hero-section.option-two .home-suppliers-section>.vc_column-inner>.wpb_wrapper {
	display: flex;
	flex-direction: column;
}

/* .home-hero-section .hero-step-process {
	max-height: 175px;
} */

.home-hero-section .hero-step-process {
	padding: 30px 0 !important;
    margin-top: 30px;
}

.home-hero-section .hero-step-process .process-boxes {
	justify-content: space-between;
}

.home-hero-section .hero-step-process .process-boxes.vc_column_container>.vc_column-inner,
.home-hero-section .hero-step-process .process-boxes>.vc_column_container>.vc_column-inner {
    flex-direction: row;
	justify-content: center;
    align-items: stretch;
}

.home-hero-section .hero-step-process .process-boxes.vc_column_container>.vc_column-inner>.wpb_wrapper,
.home-hero-section .hero-step-process .process-boxes>.vc_column_container>.vc_column-inner>.wpb_wrapper {
    display: flex;
	justify-content: center;
    align-items: center;
	position: static;
}

.home-hero-section .hero-step-process .process-boxes .dt-sc-icon-box.type3 {
	width: 95%;
/* 	height: -webkit-fill-available; */
	position: static;
	padding: 0;
	margin: 0;
	border-radius: 10px;
	box-shadow: none;
	-webkit-box-shadow: none;
}

.home-hero-section .hero-step-process .process-boxes .dt-sc-icon-box.type3:hover {
	background-color: transparent;
}

.home-hero-section .hero-step-process .process-boxes .dt-sc-icon-box.type3::after {
	background-color: #ffffff;
	left: auto;
	-webkit-mask-image: url(https://alliancemarketinguk.quaidtech.net/wp-content/uploads/2026/01/right-arrows.png);
	-webkit-mask-size: 24px;
}

.home-hero-section .hero-step-process .process-boxes .dt-sc-icon-box.type3.first::after {
    right: -5px;
}

.home-hero-section .hero-step-process .process-boxes .dt-sc-icon-box.type3.middle::after {
    right: -30px;
}

.home-hero-section .hero-step-process .process-boxes .dt-sc-icon-box.type3 .icon-wrapper {
    margin: 0 auto 10px;
}

.home-hero-section .hero-step-process .process-boxes .dt-sc-icon-box.type3 .icon-wrapper span {
	display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    padding: 16px;
    background-color: #ffffff;
    font-size: 40px;
    border-radius: 50%;
}

.home-hero-section .hero-step-process .process-boxes .dt-sc-icon-box.type3 .icon-wrapper span img {
	width: 40px;
    filter: none !important;
}

.home-hero-section .hero-step-process .process-boxes .dt-sc-icon-box.type3 .icon-content h4 {
	color: #ffffff;
    font-size: 14px;
    margin-bottom: 0;
}

.home-hero-section:not(.option-two)>.quote-cta-btn {
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
}

.home-hero-section>.quote-cta-btn .dt-sc-button {
	display: block;
    text-align: center;
}

.img-rounded-corner img {
	border-radius: 5px;
}

.home-about-section.bg-img>.vc_column-inner,
.home-about-section.bg-img>.vc_column-inner .wpb_text_column {
	position: relative;
}

.home-about-section.bg-img>.vc_column-inner::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	backdrop-filter: blur(5px);
	background-color: rgb(0 0 0 / 45%);
}

.home-about-section.justify-content-center>.vc_column-inner {
	align-items: center;
}

.home-about-section.promise-container .dt-sc-title.with-dual-color>.dt-sc-main-heading>strong {
	color: var(--secondary-color-custom);
}

.home-about-section .custom-list-style>li {
	list-style: none;
	position: relative;
	padding: 5px 0 0 25px;
}

.home-about-section .custom-list-style>li::before {
	content: "\f178";
	position: absolute;
	left: 0;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-style: normal;
	font-variant: normal;
}

.about-counters .dt-sc-counter.type3 {
    padding: 25px 30px 20px;
    background-color: rgba(255 255 255 / 10%);
    backdrop-filter: blur(2px);
    border-radius: 10px;
}

.about-counters .dt-sc-counter.type3 .icon-wrapper {
	top: 10px;
	right: -5px;
}

.about-counters .dt-sc-counter.type3 .icon-wrapper img {
	width: 85%;
}

.about-counters .dt-sc-counter.type3 .dt-sc-counter-number {
	line-height: 1em;
    margin-bottom: 10px;
}

.home-suppliers-section .trusted-suppliers-slider>.slick-slider {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.home-suppliers-section .trusted-suppliers-slider>.slick-slider>:is(.slick-prev, .slick-next) {
	width: 1.35em;
	height: 1.35em;
	color: rgb(255 255 255) !important;
	background-color: var(--secondary-color-custom);
	top: auto;
	margin-top: 0;
	border-radius: 50%;
	transform: none;
	-ms-transform: none;
	-webkit-transform: none;
}

.home-suppliers-section .trusted-suppliers-slider>.slick-slider>.slick-list {
/* 	margin: 0 25px; */
	margin: 0 5px;
}

.how-it-works .feature-boxes > .vc_column_container > .vc_column-inner > .wpb_wrapper {
	height: 100%;
}

.how-it-works .feature-boxes .dt-sc-icon-box.type1 {
	height: 100%;
	padding: 35px 35px;
	border-color: rgb(0 0 0 / 10%);
	border-radius: 10px;
	-webkit-box-shadow: 0 0 24px rgba(0 0 0 / 10%);
	-moz-box-shadow: 0 0 24px rgba(0 0 0 / 10%);
    box-shadow: 0 0 24px rgba(0 0 0 / 10%);
	-webkit-transition: box-shadow 0.3s ease;
    -moz-transition: box-shadow 0.3s ease;
    -o-transition: box-shadow 0.3s ease;
    -ms-transition: box-shadow 0.3s ease;
    transition: box-shadow 0.3s ease;
	will-change: transform;
}

.how-it-works .feature-boxes .dt-sc-icon-box.type1::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--secondary-color-custom);
    transform: translateX(100%);
	-webkit-transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.how-it-works .feature-boxes .dt-sc-icon-box.type1:hover::before {
    transform: translateX(0);
}

.how-it-works .feature-boxes .dt-sc-icon-box.type1:hover > .icon-wrapper *,
.how-it-works .feature-boxes .dt-sc-icon-box.type1:hover > .icon-content > p {
	color: #FFFFFF;
}

.how-it-works .feature-boxes .dt-sc-icon-box.type1 > .icon-content > h4 {
	color: var(--secondary-color-custom);
}

.how-it-works .feature-boxes .dt-sc-icon-box.type1:hover > .icon-content > h4 {
	color: var(--primary-color-custom);
}

.how-it-works .feature-boxes .dt-sc-icon-box.type1:hover > .icon-content > h4::before,
.how-it-works .feature-boxes .dt-sc-icon-box.type1:hover > .icon-content > h4::after {
	background-color: #FFFFFF;
}

.how-it-works .feature-boxes .dt-sc-icon-box.type1 > .icon-content > h5 {
	position: absolute;
    top: 32px;
    right: 30px;
    color: rgba(0 0 0 / 15%);
    font-size: 70px;
    font-weight: 700;
    line-height: 1em;
}

.how-it-works .feature-boxes .dt-sc-icon-box.type1:hover > .icon-content > h5 {
	color: rgb(255 255 255);
}

.how-it-works .feature-boxes .dt-sc-icon-box.type1:hover > .large-icon {
	color: rgba(255 255 255 / 5%);
}

.how-it-works .feature-boxes .dt-sc-icon-box.type1 > .icon-wrapper *,
.how-it-works .feature-boxes .dt-sc-icon-box.type1 > .icon-content > p,
.how-it-works .feature-boxes .dt-sc-icon-box.type1 > .icon-content > h4,
.how-it-works .feature-boxes .dt-sc-icon-box.type1 > .icon-content > h5,
.how-it-works .feature-boxes .dt-sc-icon-box.type1 > .large-icon {
	--hiw-color-transition: color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-transition: var(--hiw-color-transition);
    -moz-transition: var(--hiw-color-transition);
    -o-transition: var(--hiw-color-transition);
    -ms-transition: var(--hiw-color-transition);
    transition: var(--hiw-color-transition);
}

.how-it-works .feature-boxes .dt-sc-icon-box.type1:hover > .icon-wrapper *,
.how-it-works .feature-boxes .dt-sc-icon-box.type1:hover > .icon-content > p,
.how-it-works .feature-boxes .dt-sc-icon-box.type1:hover > .icon-content > h4,
.how-it-works .feature-boxes .dt-sc-icon-box.type1:hover > .icon-content > h5,
.how-it-works .feature-boxes .dt-sc-icon-box.type1:hover > .large-icon {
	transition-delay: 0.15s;
}

.how-it-works .feature-boxes .dt-sc-icon-box.type1 .icon-content h4::before,
.how-it-works .feature-boxes .dt-sc-icon-box.type1 .icon-content h4::after {
	--hiw-bgcolor-transition: width 0.6s linear, background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
	-webkit-transition: var(--hiw-bgcolor-transition);
    -moz-transition: var(--hiw-bgcolor-transition);
    -o-transition: var(--hiw-bgcolor-transition);
    -ms-transition: var(--hiw-bgcolor-transition);
    transition: var(--hiw-bgcolor-transition);
}

.wp-google-place.wp-place-center {
	text-align: center;
}

.wp-gr .wp-google-review {
	display: inline-flex;
	align-items: center;
}

.wp-gr .wp-google-review .wp-google-icon {
    width: 20px;
    height: 20px;
    margin: 0 6px 0 0;
}

.wp-gr .wp-google-review .wp-google-rating {
    color: var(--star-color, #fb8e28) !important;
    font-size: 20px;
    font-weight: 600;
    margin: 0 6px 0 0;
}

.wp-gr .wp-google-review .wp-google-stars.wp-stars {
	display: inline-flex;
    align-items: center;
    justify-content: space-between;
}

.wp-gr .wp-google-review .wp-google-stars .wp-star {
    width: 20px;
    height: 20px;
    fill: var(--star-color, #fb8e28);
    margin: 0 2px 0 0;
}

.wp-gr .wp-google-review .wp-google-based {
	margin: 0 0 0 6px;
}

.wp-gr .wp-google-wr>a {
	display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 20px;
	color: #fff;
    background: var(--btn-color, #1f67e7);
    border-radius: 25px;
    opacity: .9;
    outline: 0;
    text-shadow: 1px 1px 0 #888;
	margin: 10px 0 0 0;
    vertical-align: middle;
    white-space: nowrap;
    box-shadow: 0 0 2px rgba(0, 0, 0, .12), 0 2px 4px rgba(0, 0, 0, .24);
    user-select: none;
    transition: all .2s ease-in-out;
}

.wp-gr .wp-google-wr a:hover {
    opacity: .95;
    background: var(--btn-color, #1f67e7);
    box-shadow: 0 0 2px rgba(0, 0, 0, .12), 0 3px 5px rgba(0, 0, 0, .24);
}

.wp-gr .wp-google-wr a:active {
    opacity: 1;
    background: var(--btn-color,#1f67e7);
    box-shadow: none
}

.wp-gr .wp-google-wr>a svg {
	width: 20px;
    height: 20px;
    padding: 2px;
    background-color: #ffffff;
    border-radius: 50%;
    margin: 0 0 0 6px;
}

.home-testimonials-section .testimonial-carousel .slick-dotted.slick-slider {
    margin-bottom: 0;
    padding-bottom: 45px;
}

.home-testimonials-section .testimonial-carousel .slick-dotted.slick-slider .slick-prev,
.home-testimonials-section .testimonial-carousel .slick-dotted.slick-slider .slick-next {
	font-size: 24px;
	box-shadow: 0 0 15px 0 rgb(23 29 64 / 20%);
}

.home-testimonials-section .testimonial-carousel .slick-dotted.slick-slider .slick-prev {
    left: -40px;
}

.home-testimonials-section .testimonial-carousel .slick-dotted.slick-slider .slick-next {
    right: -40px;
}

.home-testimonials-section .testimonial-carousel .dt-sc-testimonial-wrapper {
	padding: 10px 0;
}

.home-testimonials-section .testimonial-carousel .dt-sc-testimonial.type3,
.single-testimonials-section .dt-sc-testimonial.type3 {
	display: flex;
    flex-direction: column;
	padding: 30px 35px;
	background-color: #FFFFFF;
	text-align: left;
	border: 1px solid #e5e5e5;
	--border-radius: 10px;
	border-radius: var(--border-radius);
	box-shadow: 2px 2px 10px 0 rgb(0 0 0 / 15%) !important;
}

.home-testimonials-section .testimonial-carousel .dt-sc-testimonial.type3 .dt-sc-testimonial-author,
.home-testimonials-section .testimonial-carousel .dt-sc-testimonial.type3 .dt-sc-testimonial-quote blockquote,
.single-testimonials-section .dt-sc-testimonial.type3 .dt-sc-testimonial-quote blockquote {
	order: 2;
}

.home-testimonials-section .testimonial-carousel .dt-sc-testimonial.type3 .dt-sc-testimonial-quote,
.home-testimonials-section .testimonial-carousel .dt-sc-testimonial.type3 .dt-sc-testimonial-quote .ratings,
.single-testimonials-section .dt-sc-testimonial.type3 .dt-sc-testimonial-quote .ratings {
	order: 1;
}

.home-testimonials-section .testimonial-carousel .dt-sc-testimonial.type3 .dt-sc-testimonial-author,
.single-testimonials-section .dt-sc-testimonial.type3 .dt-sc-testimonial-author {
	margin: 0;
}

.home-testimonials-section .testimonial-carousel .dt-sc-testimonial.type3 .dt-sc-testimonial-author::before {
	content: none;
}

.home-testimonials-section .testimonial-carousel .dt-sc-testimonial.type3 .dt-sc-testimonial-author>span {
    display: none;
	visibility: hidden;
	opacity: 0;
}

.home-testimonials-section .testimonial-carousel .dt-sc-testimonial.type3 .dt-sc-testimonial-author img,
.single-testimonials-section .dt-sc-testimonial.type3 .dt-sc-testimonial-author img {
    max-width: 72px;
}

.home-testimonials-section .testimonial-carousel .dt-sc-testimonial.type3 .dt-sc-testimonial-author cite,
.single-testimonials-section .dt-sc-testimonial.type3 .dt-sc-testimonial-author cite {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1em;
    margin-top: 0;
}

.home-testimonials-section .testimonial-carousel .dt-sc-testimonial.type3 .dt-sc-testimonial-author .testimonial-meta,
.single-testimonials-section .dt-sc-testimonial.type3 .dt-sc-testimonial-author .testimonial-meta {
	display: inline-flex;
    align-items: center;
}

.home-testimonials-section .testimonial-carousel .dt-sc-testimonial.type3 .dt-sc-testimonial-author .testimonial-meta svg,
.single-testimonials-section .dt-sc-testimonial.type3 .dt-sc-testimonial-author .testimonial-meta svg {
    width: 14px;
    height: 14px;
    margin: 0 6px 0 0;
    vertical-align: middle;
}

.home-testimonials-section .testimonial-carousel .dt-sc-testimonial.type3 .dt-sc-testimonial-quote,
.single-testimonials-section .dt-sc-testimonial.type3 .dt-sc-testimonial-quote {
	display: flex;
    flex-direction: column;
	position: static;
    line-height: 1.5em;
}

.home-testimonials-section .testimonial-carousel .dt-sc-testimonial.type3 .dt-sc-testimonial-quote .ratings,
.single-testimonials-section .dt-sc-testimonial.type3 .dt-sc-testimonial-quote .ratings {
	margin: 0 0 35px;
}

.home-testimonials-section .testimonial-carousel .dt-sc-testimonial.type3 .dt-sc-testimonial-quote .ratings::after,
.single-testimonials-section .dt-sc-testimonial.type3 .dt-sc-testimonial-quote .ratings::after {
	color: var(--star-color, #fb8e28);
	font-size: 16px;
}

.home-testimonials-section .testimonial-carousel .dt-sc-testimonial.type3 .dt-sc-testimonial-quote blockquote::before,
.single-testimonials-section .dt-sc-testimonial.type3 .dt-sc-testimonial-quote blockquote::before {
    content: '\f1b2';
	color: #FFFFFF;
    font-family: 'Material-Design-Iconic-Font';
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    position: absolute;
    top: 10px;
    right: 10px;
	left: auto;
    margin: auto;
    z-index: 10;
}

.home-testimonials-section .testimonial-carousel .dt-sc-testimonial.type3 .dt-sc-testimonial-quote blockquote,
.single-testimonials-section .dt-sc-testimonial.type3 .dt-sc-testimonial-quote blockquote {
	position: static;
}

.home-testimonials-section .testimonial-carousel .dt-sc-testimonial.type3 .dt-sc-testimonial-quote blockquote::after,
.single-testimonials-section .dt-sc-testimonial.type3 .dt-sc-testimonial-quote blockquote::after {
    content: "";
    display: block;
	width: 0;
    height: 0;
    position: absolute;
    right: 0;
    top: 0;
    --border-width: 75px;
    border-top: var(--border-width) solid #00C552;
    border-left: var(--border-width) solid transparent;
	border-top-right-radius: var(--border-radius);
    z-index: 9;
}

.home-testimonials-section .testimonial-carousel .dt-sc-testimonial.type3 .dt-sc-testimonial-quote blockquote q {
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.single-testimonials-section .dt-sc-testimonial.type3 .dt-sc-testimonial-author span {
    margin-bottom: 15px;
}

.single-testimonials-section .dt-sc-testimonial.type3 .dt-sc-testimonial-author cite {
	margin-bottom: 10px;
}

.single-testimonials-section .dt-sc-testimonial.type3 .dt-sc-testimonial-quote {
    margin: 0;
}

.single-testimonials-section .dt-sc-testimonial.type3 .dt-sc-testimonial-quote .ratings {
	margin: 0 0 45px;
}

.single-testimonials-section .dt-sc-testimonial.type3 .dt-sc-testimonial-quote blockquote::before {
    font-size: 48px;
    top: 22px;
    right: 14px;
}

.single-testimonials-section .dt-sc-testimonial.type3 .dt-sc-testimonial-quote blockquote::after {
    --border-width: 100px;
}

.single-testimonials-section .dt-sc-testimonial.type3 .dt-sc-testimonial-quote .testimonial-meta {
	order: 3;
    margin-top: 10px;
}

.single-testimonials-section .dt-sc-testimonial.type3 .dt-sc-testimonial-quote .testimonial-meta svg {
    width: 14px;
    height: 14px;
    margin: 0 6px 0 0;
    vertical-align: middle;
}

.home-icon--box-container .dt-sc-custom-icon-box>.vc_column-inner {
	align-items: stretch;
}

.home-icon--box-container .dt-sc-custom-icon-box>.vc_column-inner>.wpb_wrapper {
	height: 100%;
}

.home-icon--box-container .dt-sc-custom-icon-box>.vc_column-inner>.wpb_wrapper>.dt-sc-icon-box.type7 {
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.home-icon--box-container .dt-sc-icon-box.type7 .icon-content h4 {
	display: inline-block;
	font-weight: 600;
}

.home-icon--box-container .dt-sc-icon-box.type7:hover .icon-content h4::before {
	content: none;
}

.dt-skin-secondary-bg-opaque-8.br-10::before {
	border-radius: 10px;
}

.dt-sc-custom-services-carousel {
	padding-bottom: 0 !important;
	margin-bottom: 0 !important;
}

.home-services-section .dt-sc-image-caption.type9.dt-sc-custom-img-caption .dt-sc-image-content {
	bottom: 0 !important;
	transform: translateY(0);
	transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-services-section .dt-sc-image-caption.type9.dt-sc-custom-img-caption:hover .dt-sc-image-content {
	transform: translateY(100px);
}

.home-services-section .dt-sc-image-caption.type9.dt-sc-custom-img-caption .dt-sc-image-wrapper::before {
	height: 100% !important;
	background: #00c552cc;
	transform: scaleY(0);
    transform-origin: top;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-services-section .dt-sc-image-caption.type9.dt-sc-custom-img-caption:hover .dt-sc-image-wrapper::before {
	transform: scaleY(1);
}

.home-services-section .dt-sc-image-caption.type9.dt-sc-custom-img-caption .dt-sc-image-overlay h3 {
	font-weight: 600;
}

.home-services-section .dt-sc-image-caption.type9.dt-sc-custom-img-caption .dt-sc-image-overlay a {
    padding: 2px 30px 2px 10px;
    background-color: var(--secondary-color-custom);
    font-size: 14px;
    border-radius: 5px;
	transition: background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-services-section .dt-sc-image-caption.type9.dt-sc-custom-img-caption .dt-sc-image-overlay a:hover {
    background-color: var(--primary-color-custom);
	box-shadow: 0 0 15px 0 rgb(23 29 64 / 30%);
}

.home-services-section .dt-sc-image-caption.type9.dt-sc-custom-img-caption .dt-sc-image-overlay .download-btn {
    padding-right: 35px;
}

.home-services-section .dt-sc-image-caption.type9.dt-sc-custom-img-caption .dt-sc-image-overlay .download-btn::after {
	content: "\f019";
}

.home-faq-section .faq-accordion>h5.dt-sc-toggle-accordion {
    font-size: 22px;
}

.home-faq-section .faq-accordion>h5.dt-sc-toggle-accordion>a {
    line-height: 1.5em;
}

.home-faq-section .faq-accordion>h5.dt-sc-toggle-accordion:not(.active)>a {
	border-bottom-color: var(--secondary-color-custom);
}

.home-faq-section .faq-accordion>h5.dt-sc-toggle-accordion.active>a {
	border-bottom-color: var(--primary-color-custom);
}

.wp-singular .inner-wrapper .main-title-section-wrapper>.main-title-section-bg+.container {
	display: flex;
	justify-content: center;
	align-items: center;
}

.wp-singular .inner-wrapper .main-title-section-wrapper .main-title-section h1 {
	padding: 10px 30px;
	background: var(--secondary-color-custom);
    text-align: center;
	border-radius: 5px;
}

/* .wp-singular .inner-wrapper .main-title-section-wrapper.breadcrumb-right .main-title-section {
    text-align: center;
    width: 100%;
}

.wp-singular .inner-wrapper .main-title-section-wrapper .main-title-section h1 {
    display: inline-block;
    position: relative;
    background: transparent;
}

.wp-singular .inner-wrapper .main-title-section-wrapper .main-title-section h1::after {
    content: '';
    display: block;
    width: 65%;
    height: 4px;
    background: white;
    margin: auto;
    border-radius: 5px;
} */

.wp-singular .inner-wrapper .main-title-section-wrapper>.main-title-section-bg+.container>.breadcrumb {
	display: none !important;
}

/* .h2-custom-fs h2.dt-sc-main-heading {
	font-size: 40px;
} */

.about-intro-section .dt-sc-custom-decor-img {
	padding: 0 10px;
}

.about-intro-section .dt-sc-custom-decor-img:before {
    border-top: 0;
	border-radius: 5px;
	z-index: 1;
}

.about-intro-section .dt-sc-custom-decor-img img {
	border-radius: 5px;
}

.about-intro-section .dt-sc-custom-decor-img .dt-sc-custom-decor-content p {
	font-weight: 700;
}

.about-intro-section .dt-sc-custom-decor-img .dt-sc-custom-decor-content p strong {
	font-weight: 800;
}

.about-section .dt-sc-fancy-list.mb-0 {
	margin-bottom: 0;
}

.side-navigation-content ul.dt-sc-fancy-list {
    margin-bottom: 20px !important;
	margin-left: 15px;
}

.side-navigation-content ul.dt-sc-fancy-list li {
    line-height: 1.1em;
}

.about-services-section .dt-sc-image-caption.type3 {
	border-radius: 5px;
	--box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
	box-shadow: var(--box-shadow);
	-moz-box-shadow: var(--box-shadow);
	-webkit-box-shadow: var(--box-shadow);
}

.about-services-section .dt-sc-image-caption.type3:hover {
	--box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.35);
}

.about-services-section .dt-sc-image-caption.type3 .dt-sc-image-wrapper {
	width: 100%;
	height: 260px;
	border-radius: 5px;
}

.about-services-section .dt-sc-image-caption.type3 .dt-sc-image-wrapper img {
	height: 300px;
	object-fit: cover;
	object-position: center left;
	-webkit-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
}

.about-services-section .dt-sc-image-caption.type3:hover .dt-sc-image-wrapper img {
	object-position: center right;
	transform: none;
	-webkit-transform: none;
}

.about-services-section .dt-sc-image-caption.type3 .dt-sc-image-content {
	margin-top: 0;
	padding: 25px 20px;
}

.about-services-section .dt-sc-image-caption.type3 .dt-sc-image-content:before {
	content: '';
	display: block;
	width: auto;
	height: 70px;
	position: absolute;
	left: 0;
	right: 0;
	top: -68px;
	background-image: url(../../images/wave.png);
	background-repeat: no-repeat;
	background-size: contain;
	border-color: #ffffff;
	margin: auto;
	transform: scaleY(-1);
	z-index: -1;
}

.about-services-section .dt-sc-image-caption.type3 .dt-sc-image-title {
	margin-bottom: 10px;
}

.sidenav-sticky .side-navigation.type5 .side-nav-container {
	display: none !important;
}

.dt-sc-custom-bg {
	background-image: url(../../../uploads/2026/01/got-a-question.webp?id=19266);
    background-size: cover;
    margin: 0;
    border-radius: 5px;
}

.dt-sc-custom-bg > .wpb_column .vc_column-inner {
	padding: 0 !important;
}

.dt-sc-custom-bg > .wpb_column .vc_column-inner > .wpb_wrapper {
	padding: 25px !important;
	position: relative;
}

.dt-sc-custom-bg > .wpb_column::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgb(0 0 0 / 35%);
	backdrop-filter: blur(5px);
    border-radius: 5px;
}

.dt-sc-custom-bg > .wpb_column .vc_column-inner > .wpb_wrapper > .wpb_text_column {
	font-size: 15px;
	margin-bottom: 0 !important;
}

.dt-sc-custom-bg > .wpb_column .vc_column-inner > .wpb_wrapper > .wpb_text_column a {
	color: #ffffff;
	line-break: anywhere;
}

.dt-sc-custom-bg > .wpb_column .vc_column-inner > .wpb_wrapper > .wpb_text_column a:hover {
	color: var(--primary-color-custom);
}

.dt-sc-custom-bg > .wpb_column .vc_column-inner > .wpb_wrapper > .wpb_text_column i {
    margin-right: 8px;
}

.key-points-boxes .dt-sc-contact-info.type9 {
    padding-top: 32px;
	background: #eeeeee;
    border-radius: 6px;
    box-shadow: 0 0 10px 0 rgba(0 0 0 / 25%);
}

.key-points-boxes .dt-sc-contact-info.type9::before {
	border-radius: 6px;
}

.key-points-boxes .dt-sc-contact-info.type9 .cinfo-image {
	display: flex;
    justify-content: center;
}

.key-points-boxes .dt-sc-contact-info.type9 .cinfo-image img {
	width: 150px;
}

.dt-sc-contact-info.type9:hover .cinfo-image img {
    filter: drop-shadow(0 0 10px rgba(255 255 255 / 50%));
}

.key-points-boxes .dt-sc-contact-info.type9 h6 {
    font-weight: 500;
	margin-bottom: 0;
}

.business-energy--faq-section #faq-search-form {
	display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
	position: relative;
	margin-bottom: 0;
}

.business-energy--faq-section #faq-search-form .faq-search {
	display: block;
	width: 100%;
	padding: 15px 100px 15px 15px;
	color: rgb(0 0 0 / 75%);
	font-family: Poppins;
	font-size: 16px;
	border: 1px solid rgba(0 0 0 / 50%);
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.business-energy--faq-section #faq-search-form .faq-search:is(:focus, :active) {
	border-color: rgba(0 197 82 / 50%);
}

.business-energy--faq-section #faq-search-form .dt-sc-button {
	padding: 10px 30px;
	position: absolute;
	right: 8px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	margin-top: 0;
}

.business-energy--faq-section .alert {
	display: none;
	padding: 12px 15px;
    position: relative;
    text-align: start;
    margin-top: 20px;
    border-inline-start: 5px solid transparent;
}

.business-energy--faq-section .alert.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #e8c4c4;
}

.business-energy--faq-section .alert .alert-title {
    font-weight: 500;
    margin-left: 10px;
}

.business-energy--faq-section .faq-accordion>h5.dt-sc-toggle-accordion {
    font-size: 20px;
	font-weight: 500;
	margin-bottom: 15px;
}

.business-energy--faq-section .faq-accordion>h5.dt-sc-toggle-accordion>a {
	padding: 15px 50px 20px 0;
    line-height: 1.25em;
}

.business-energy--faq-section .faq-accordion>h5.dt-sc-toggle-accordion:not(.active)>a {
	border-bottom-color: var(--secondary-color-custom);
}

.business-energy--faq-section .faq-accordion>h5.dt-sc-toggle-accordion.active>a {
	border-bottom-color: var(--primary-color-custom);
}

.business-energy--faq-section .faq-accordion>h5.dt-sc-toggle-accordion::before {
    height: 22px;
    right: 10px;
}

.business-energy--faq-section .faq-accordion>h5.dt-sc-toggle-accordion::after {
    width: 22px;
}

.business-energy--faq-section .faq-accordion>.dt-sc-toggle-content {
    padding: 5px 0 15px 0px;
}

.business-energy--faq-section .faq-accordion mark {
	padding: 0 5px;
	color: inherit;
	background: #FFE58F;
	font-style: normal;
	border-radius: 3px;
}

.compare-reason-box .dt-sc-image-caption.type3>.dt-sc-image-wrapper>img {
	width: 100%;
	height: 100%;
	max-height: 400px;
	object-fit: cover;
	object-position: center center;
}

.how-it-works.complaints .feature-boxes .dt-sc-icon-box.type1 {
    height: auto;
}

.aio-icon-component.alert-box .aio-icon-box {
	border-radius: 5px;
}

.aio-icon-component.alert-box .aio-icon-box .aio-icon-header {
    padding: 10px 20px;
}

.aio-icon-component.alert-box .aio-icon-box .aio-icon-title {
	line-height: 1.5em;
	text-align: left;
}

.privacy-policy-mb { margin-bottom: 50px; }

.privacy-policy .contact-details .contact-item {
	display: inline-block;
	margin-bottom: 10px;
}

.privacy-policy .contact-details .contact-item::before {
	color: inherit;
	font-family: "Font Awesome 6 Free";
	font-size: 1em;
	font-weight: 900;
	margin-right: 15px;
}

.privacy-policy .contact-details .contact-item.contact-item--address::before { content: "\f5a0"; }

.privacy-policy .contact-details .contact-item.contact-item--phone::before { content: "\f095"; }

.privacy-policy .contact-details .contact-item.contact-item--email::before { content: "\f0e0"; }

.privacy-policy .wpb_content_element ul > li {
    list-style: none;
    position: relative;
    padding-left: 25px;
}

.privacy-policy .wpb_content_element ul>li::before {
	content: "\f0a9";
    position: absolute;
    left: 0;
    top: 0;
	color: var(--primary-color-custom);
	font-family: "Font Awesome 6 Free";
	font-size: 1.15em;
	font-weight: 900;
}

.privacy-policy .privacy-policy--subhead .dt-sc-main-heading {
	font-size: clamp(1.25rem,4vw,1.75rem);
	margin-bottom: 10px;
}

footer#footer .dt-sc-footer-social {
	border-radius: 5px 5px 0 0;
}

footer#footer .footer-20 .vc_column_container .vc_column-inner {
	align-items: stretch;
}

footer#footer .footer-20 .vc_column_container .vc_column-inner .wpb_wrapper {
	height: 100%;
}

footer#footer .footer-20 .dt-sc-footer-section {
	height: 100%;
	padding: 35px 25px;
}

footer#footer .dt-sc-footer-section .dt-sc-contact-info>ul {
	margin-bottom: 0;
}

footer#footer .membership-badge img {
	width: 150px;
}

footer#footer .footer-copyright-flex .wpb_wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

footer#footer .footer-copyright-flex .footer-copyright {
	width: fit-content;
	padding: 15px 0;
}

.mystickyelements-mobile-size-large.mystickyelements-position-mobile-bottom {
	height: 60px !important;
}

/* .mystickyelements-fixed ul li.mystickyelements-minimize {
	display: none !important;
} */

.mystickyelements-mobile-size-large.mystickyelements-position-mobile-bottom span.mystickyelements-minimize.minimize-position-left,
.mystickyelements-fixed ul li.mystickyelements-social-icon-li>.mystickyelements-social-icon,
.mystickyelements-fixed ul li.mystickyelements-social-icon-li>.mystickyelements-social-icon>a {
	height: 60px !important;
	line-height: 60px !important;
}

.mystickyelements-mobile-size-large.mystickyelements-position-mobile-bottom .element-minimize span.mystickyelements-minimize.minimize-position-left {
	height: 55px !important;
	line-height: 53px !important;
}

/* .mystickyelements-fixed ul li.mystickyelements-social-icon-li {
	width: 50% !important;
} */

.mystickyelements-fixed ul li.mystickyelements-minimize+li>.mystickyelements-social-icon {
	border-right: 1px solid #FFFFFF;
}

.mystickyelements-fixed ul li.mystickyelements-social-icon-li>.mystickyelements-social-icon>a {
	flex-direction: column;
	gap: 8px;
}

.mystickyelements-fixed ul li.mystickyelements-social-icon-li>.mystickyelements-social-icon>a>.mystickyelements-icon-below-text {
	width: fit-content;
	font-size: 13px !important;
}

.mystickyelements-fixed ul li.mystickyelements-social-icon-li>.mystickyelements-social-icon>a>i.fas.fa-pound-sign {
	font-size: 18px;
}

.mystickyelements-fixed ul li.mystickyelements-social-icon-li>.mystickyelements-social-icon>a>i.fas.fa-phone {
	font-size: 16px;
}

@media only screen and (min-width:1600px) {
	.home-hero-section.vc_row.vc_row-fluid {
		padding-top: 95px;
		padding-bottom: 95px;
		background-size: 600px;
		background-position: center left 80px;
	}
	
	.home-hero-section .hero-img .vc_single_image-wrapper {
		height: 380px;
	}
	
	#header .header-28 .header-icons.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner {
		width: 3.25em;
	}
}

@media only screen and (min-width: 1441px) and (max-width: 1680px) {
	.home-icon--box-container .dt-sc-custom-icon-box .dt-sc-icon-box.type7 .icon-content h4 {
		margin-bottom: 35px;
	}
	
	.home-icon--box-container .dt-sc-custom-icon-box .dt-sc-icon-box.type7:hover .icon-content p {
		-webkit-transform: translateY(15px);
		transform: translateY(15px);
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1440px) {
	.home-hero-section.vc_row.vc_row-fluid {
        background-size: 38%;
    }
	
	.home-hero-section .hero-img .vc_single_image-wrapper {
		height: 420px;
	}
	
	.home-hero-section .hero-step-process {
		padding: 25px 0 !important;
		margin-top: 20px;
	}

	.home-hero-section .hero-step-process .process-boxes .dt-sc-icon-box.type3::after {
		-webkit-mask-size: 22px;
	}

	.home-hero-section .hero-step-process .process-boxes .dt-sc-icon-box.type3 .icon-wrapper {
		margin: 0 auto 5px;
	}

	.home-hero-section .hero-step-process .process-boxes .dt-sc-icon-box.type3 .icon-wrapper span {
		width: 50px;
		height: 50px;
		padding: 10px;
	}

	.home-hero-section .hero-step-process .process-boxes .dt-sc-icon-box.type3 .icon-wrapper span img {
		width: 28px;
	}

	.home-hero-section .hero-step-process .process-boxes .dt-sc-icon-box.type3 .icon-content h4 {
		font-size: 12px;
		font-weight: 500;
	}
	
	.how-it-works .feature-boxes .dt-sc-icon-box.type1 {
		padding: 20px;
	}
	
	.how-it-works .feature-boxes .dt-sc-icon-box.type1 .icon-wrapper {
		margin: 0 0 10px;
	}
	
	.how-it-works .feature-boxes .dt-sc-icon-box.type1 .icon-wrapper span {
		font-size: 50px;
	}
	
	.how-it-works .feature-boxes .dt-sc-icon-box.type1 > .icon-content > h5 {
		top: 18px;
		right: 15px;
		font-size: 56px;
		font-weight: 700;
		line-height: 1em;
	}
	
	.how-it-works .feature-boxes .dt-sc-icon-box.type1 .icon-content h4 {
		font-size: 25px;
		padding-bottom: 15px;
		margin-bottom: 15px;
	}
	
	.how-it-works .feature-boxes .dt-sc-icon-box.type1 .icon-content p {
		font-size: 14px;
	}
	
	.home-icon--box-container .dt-sc-custom-icon-box .dt-sc-icon-box.type7 {
		padding: 80px 40px;
	}
	
    .home-icon--box-container .dt-sc-custom-icon-box .dt-sc-icon-box.type7:hover .icon-wrapper, .dt-sc-icon-box.type7:hover .icon-content h4 {
		transform: matrix(1, 0, 0, 1, 0, -40.5);
		-moz-transform: matrix(1, 0, 0, 1, 0, -40.5);
		-ms-transform: matrix(1, 0, 0, 1, 0, -40.5);
		-o-transform: matrix(1, 0, 0, 1, 0, -40.5);
		-webkit-transform: matrix(1, 0, 0, 1, 0, -40.5);
    }
	
	.home-icon--box-container .dt-sc-custom-icon-box .dt-sc-icon-box.type7:hover .icon-content p {
		-webkit-transform: translateY(50px);
		transform: translateY(50px);
	}
}

@media only screen and (min-width: 1201px) and (max-width: 1366px) {
	#header .dt-header-tpl .header-28 {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}

	#header .header-28.custom-col-6>.vc_column_container:first-child>.vc_column-inner div#dt-1768279353244-df816bbc-fb1b a img {
		width: 195px;
	}

	#header .header-28.custom-col-6>.vc_column_container:last-child>.vc_column-inner #dt-1505913242232-e64ea019-90fc {
		padding: 0 !important;
	}
}

@media only screen and (min-width: 1301px) and (max-width: 1366px) {
	#header .header-28 div#dt-1505913242232-e64ea019-90fc ul.dt-primary-nav>li>a {
		padding: 6px 8px;
		font-size: 15px;
	}
}

@media only screen and (min-width: 1201px) and (max-width: 1300px) {
	#header .header-28 div#dt-1505913242232-e64ea019-90fc ul.dt-primary-nav>li>a {
		padding: 6px 6px;
		font-size: 15px;
	}
}

@media only screen and (max-width: 1200px) {
	#header .header-28.custom-col-6 {
		padding-top: 2px !important;
		padding-bottom: 2px !important;
	}

	#header .header-28.custom-col-6>.vc_column_container>.vc_column-inner {
		padding: 0 !important
	}

	#header .header-28.custom-col-6>.vc_column_container:first-child>.vc_column-inner>.wpb_wrapper>.dt-logo-container:only-child {
		display: inline-block;
	}

	#header .header-28.custom-col-6>.vc_column_container:first-child>.vc_column-inner div#dt-1768279353244-df816bbc-fb1b a {
		margin: 0 !important;
	}

	#header .header-28.custom-col-6>.vc_column_container:first-child>.vc_column-inner div#dt-1768279353244-df816bbc-fb1b a img {
		width: 180px;
	}

	#header .header-28.custom-col-6>.vc_column_container:nth-child(2)>.vc_column-inner {
		align-items: flex-end;
	}

	#header .header-28.custom-col-6>.vc_column_container:nth-child(2)>.vc_column-inner .mobile-nav-container {
		padding: 0 !important;
	}

	#header .header-28.custom-col-6>.vc_column_container:nth-child(2)>.vc_column-inner div#dt-1505913242232-e64ea019-90fc-mobile .menu-trigger>i::before {
		color: var(--secondary-color-custom);
		font-size: 24px;
	}

	#header .header-28 .mobile-nav-container {
		margin: 0 !important;
	}

	#header .header-28 .header-icons {
		display: none !important;
	}
	
	.home-hero-section .hero-step-process.vc_column_container>.vc_column-inner {
		padding: 0 !important;
	}
	
	.home-hero-section .dt-sc-button.prefer-a-callback--sticky { display: block; }

	.home-testimonials-section .dt-sc-testimonial.type3 blockquote q {
		display: -webkit-box;
		-webkit-line-clamp: 8;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.home-hero-section.vc_row.vc_row-fluid {
        background-size: 38%;
    }
	
	.home-hero-section .hero-img .vc_single_image-wrapper {
		height: 380px;
	}
	
	.home-hero-section .dt-sc-title.with-dual-color h2.dt-sc-main-heading {
		margin-bottom: 15px;
	}
	
/* 	.dt-sc-title.with-dual-color h2.dt-sc-main-heading {
		font-size: 45px;
		line-height: 56px;
		margin-bottom: 15px;
	} */
	
	.home-hero-section .dt-sc-title.with-dual-color+.wpb_text_column {
		font-size: 20px;
		margin-bottom: 15px;
	}
	
	.home-hero-section .hero-step-process {
		padding: 25px 0 !important;
		margin-top: 20px;
	}

	.home-hero-section .hero-step-process .process-boxes .dt-sc-icon-box.type3::after {
		-webkit-mask-size: 22px;
	}

	.home-hero-section .hero-step-process .process-boxes .dt-sc-icon-box.type3 .icon-wrapper {
		margin: 0 auto 5px;
	}

	.home-hero-section .hero-step-process .process-boxes .dt-sc-icon-box.type3 .icon-wrapper span {
		width: 50px;
		height: 50px;
		padding: 10px;
	}

	.home-hero-section .hero-step-process .process-boxes .dt-sc-icon-box.type3 .icon-wrapper span img {
		width: 28px;
	}

	.home-hero-section .hero-step-process .process-boxes .dt-sc-icon-box.type3 .icon-content h4 {
		font-size: 12px;
		font-weight: 500;
	}
	
	.home-services-section.vc_row {
		padding: 0 30px;
	}
	
	.cta-section.vc_row {
		margin: 0 60px;
	}
}

@media only screen and (min-width: 1024px) and (max-width: 1199px) {
    .inner-wrapper #main :is(.container, .type5.tribe_events .container .container, .layout-boxed .vc_row .dt-sc-stretch-row-content) {
        width: 1024px !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.home-services-section.vc_row>.vc_column_container:last-child {
		margin-top: 25px;
	}
}

@media only screen and (min-width:1200px) {	
	#header .header-28 .header-logo-col.vc_col-lg-3 {
		width: 20%;
	}
	
	#header .header-28 .header-menu-col.vc_col-lg-6 {
		width: 60%;
	}
	
	#header .header-28 .header-col-3.vc_col-lg-3 {
		width: 20%;
	}
	
	#header .header-28 .header-icons.d-inline {
		font-size: 10px;
	}
	
	#header .header-28 .header-icons.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner {
		width: 2.5em;
	}
	
	.inner-wrapper #header .header-28 .existing-customer,
	.inner-wrapper #header .header-28 .existing-customer-sub-menu {
		font-size: 13px !important;
    	padding: 8px 12px;
	}
	
	#header .header-28 .header-col-3 .vc_row > .wpb_column:nth-child(2) .wpb_text_column {
		font-size: 10px !important;
		line-height: 1.125em !important;
	}
}

@media only screen and (min-width: 992px) {
	.home-hero-section>.quote-cta-btn {
        display: none !important;
    }
}

@media only screen and (min-width: 768px) and (max-width:1199px) {
	.how-it-works .feature-boxes>.vc_column_container:is(:first-child, :nth-child(2)) {
		margin-bottom: 25px;
	}
}

@media only screen and (min-width: 768px) {
	body>.loader {
    	background-size: 720px;
	}
	
	.home-icon--box-container .dt-sc-icon-box.type7:hover .icon-content h5 {
		transform: matrix(1, 0, 0, 1, 0, -40.5);
		-moz-transform: matrix(1, 0, 0, 1, 0, -40.5);
		-ms-transform: matrix(1, 0, 0, 1, 0, -40.5);
		-o-transform: matrix(1, 0, 0, 1, 0, -40.5);
		-webkit-transform: matrix(1, 0, 0, 1, 0, -40.5);
	}
	
	.home-testimonials-section .testimonials-view-btn {
		width: 30%
	}
}

@media only screen and (max-width: 991.99px) {
	.home-hero-section.vc_row.vc_row-fluid {
        padding-top: 50px;
        padding-bottom: 50px;
        background-size: 40%;
        background-position: top 30px left 10px;
    }
	
	.home-hero-section .hero-img .vc_single_image-wrapper {
		height: 300px;
	}
	
	.home-hero-section .dt-sc-title.with-dual-color+.wpb_text_column {
		font-size: 18px;
		margin-bottom: 15px;
	}
	
	.home-hero-section .dt-sc-title.with-dual-color+.wpb_text_column+.dt-sc-button,
	.home-hero-section .dt-sc-title.with-dual-color+.wpb_text_column+.dt-sc-button+.wpb_text_column {
		display: none;
	}
	
	.home-hero-section .hero-step-process {
		padding: 25px 0 !important;
		margin: 50px auto 0;
	}

	.home-hero-section .hero-step-process .process-boxes .dt-sc-icon-box.type3::after {
        bottom: 0;
        transform: none;
        -moz-transform: none;
        -webkit-transform: none;
		-webkit-mask-size: 22px;
	}

	.home-hero-section .hero-step-process .process-boxes .dt-sc-icon-box.type3 .icon-wrapper {
		margin: 0 auto 5px;
	}

	.home-hero-section .hero-step-process .process-boxes .dt-sc-icon-box.type3 .icon-wrapper span {
		width: 50px;
		height: 50px;
		padding: 10px;
	}

	.home-hero-section .hero-step-process .process-boxes .dt-sc-icon-box.type3 .icon-wrapper span img {
		width: 28px;
	}

	.home-hero-section .hero-step-process .process-boxes .dt-sc-icon-box.type3 .icon-content h4 {
		font-size: 12px;
		font-weight: 500;
	}
	
	.home-hero-section>.quote-cta-btn {
		margin-left: auto;
		margin-right: auto;
	}
}

@media only screen and (max-width:820px) {
	.home-testimonials-section .testimonial-carousel .slick-dotted.slick-slider .slick-prev {
		left: -5px;
	}

	.home-testimonials-section .testimonial-carousel .slick-dotted.slick-slider .slick-next {
		right: -5px;
	}
}

@media only screen and (max-width: 767px) {
	.remove-br-sm br {
		display: none !important
	}

	#header .header-28-topbar.header-container {
		display: none !important;
	}
	
    #header .header-28.custom-col-6>.vc_column_container:first-child>.vc_column-inner div#dt-1768279353244-df816bbc-fb1b a img {
        width: 165px;
    }
	
	.home-hero-section.vc_row.vc_row-fluid {
		width: 100%;
		max-width: 100%;
        padding: 50px 20px !important;
        background-size: 40%;
        background-position: top 50px left 10px;
    }
	
	.home-hero-section .hero-img .vc_single_image-wrapper {
		height: 260px;
	}
	
	.home-hero-section.vc_row>.vc_col-xs-8 {
		width: 60%;
		margin-bottom: 0;
	}
	
	.home-hero-section.vc_row>.vc_col-xs-4 {
		width: 40%;
		margin-bottom: 0;
	}
	
	.home-hero-section .dt-sc-title.with-dual-color h2.dt-sc-main-heading {
		font-size: clamp(1.5rem,5vw,2.5rem) !important;
    	margin-bottom: 10px;
	}
	
	.home-hero-section .dt-sc-title.with-dual-color+.wpb_text_column {
        margin-bottom: 0;
    }
	
	.home-hero-section .hero-step-process {
		padding: 20px 10px !important;
		margin: 10px auto 0;
	}
	
	.home-hero-section .hero-step-process .process-boxes>.vc_column_container {
		width: 33.33333333%;
		margin-bottom: 0;
	}

	.home-hero-section .hero-step-process .process-boxes .dt-sc-icon-box.type3::after {
		-webkit-mask-size: 16px;
	}
	
	.home-hero-section .hero-step-process .process-boxes .dt-sc-icon-box.type3.first::after {
		right: -16px;
	}
	
	.home-hero-section .hero-step-process .process-boxes .dt-sc-icon-box.type3.middle::after {
		right: -18px;
	}

	.home-hero-section .hero-step-process .process-boxes .dt-sc-icon-box.type3 .icon-wrapper span {
		width: 40px;
		height: 40px;
		padding: 5px;
	}

	.home-hero-section .hero-step-process .process-boxes .dt-sc-icon-box.type3 .icon-wrapper span img {
		width: 22px;
	}

	.home-hero-section .hero-step-process .process-boxes .dt-sc-icon-box.type3 .icon-content h4 {
		font-size: 10px;
	}
	
	.home-hero-section.option-two .home-suppliers-section {
		padding: 25px 35px !important;
	}
	
	.home-hero-section.option-two .home-suppliers-section .dt-sc-title.with-dual-color {
		text-align: center;
		margin-bottom: 15px !important;
	}
	
	.home-hero-section .dt-sc-button.prefer-a-callback--sticky {
		top: 115px;
		padding: 8px 26px 7px 13px !important;
	}
	
	.home-hero-section .dt-sc-button.prefer-a-callback--sticky>span {
		margin-right: 6px;
	}
	
	.dt-sc-empty-space.hide_on_xs { display: none; }
	
	.about-counters .dt-sc-counter.type3 .icon-wrapper {
		right: -20px;
	}
	
	.about-counters .dt-sc-counter.type3 .icon-wrapper img {
		width: 75%;
	}
	
	.wpb_text_column.wpb_content_element {
		font-size: 14px !important;
		line-height: 1.5em;
	}
	
	.how-it-works .feature-boxes > .vc_column_container > .vc_column-inner {
		padding-left: 0;
		padding-right: 0;
	}
	
	.how-it-works .feature-boxes .dt-sc-icon-box.type1 {
		padding: 20px;
	}
	
	.how-it-works .feature-boxes .dt-sc-icon-box.type1 .icon-wrapper {
		margin: 0 0 10px;
	}
	
	.how-it-works .feature-boxes .dt-sc-icon-box.type1 .icon-wrapper span {
		font-size: 50px;
	}
	
	.how-it-works .feature-boxes .dt-sc-icon-box.type1 > .icon-content > h5 {
		top: 18px;
		right: 15px;
		font-size: 56px;
		font-weight: 700;
		line-height: 1em;
	}
	
	.how-it-works .feature-boxes .dt-sc-icon-box.type1 .icon-content h4 {
		font-size: 25px;
		padding-bottom: 15px;
		margin-bottom: 15px;
	}
	
	.how-it-works .feature-boxes .dt-sc-icon-box.type1 .icon-content p {
		font-size: 14px;
	}

	.home-suppliers-section .vc_row.vc_inner .vc_column-inner>.wpb_wrapper {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: space-between;
		align-items: center;
		gap: 10px;
	}
	
	.wp-gr .wp-google-review {
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.wp-gr .wp-google-review .wp-google-based {
		display: block !important;
		margin: 0;
	}
	
	.home-testimonials-section .testimonial-carousel .dt-sc-testimonial.type3 {
		margin-bottom: 0;
	}

	.home-testimonials-section .dt-sc-testimonial.type3 blockquote q {
		-webkit-line-clamp: 5;
	}
	
	.home-testimonials-section .testimonials-view-btn {
		width: 75%
	}

	.home-services-section.dt-service-grid-rsp-style>.vc_column_container:not(:last-child) {
		margin-bottom: 0;
	}

	.home-services-section.dt-service-grid-rsp-style>.vc_column_container>.vc_column-inner>.wpb_wrapper {
		padding: 0 15px;
	}
	
	.home-services-section .dt-sc-image-caption.type9 .dt-sc-image-content h3 {
		font-size: 18px;
	}

	.home-icon--box-container .vc_row.vc_inner>.dt-sc-custom-icon-box.dt-sc-dark-bg:nth-child(3) .dt-sc-icon-box.type7 {
		background-color: var(--secondary-color-custom);
	}

	.home-icon--box-container .vc_row.vc_inner>.dt-sc-custom-icon-box.dt-sc-dark-bg:nth-child(3) .dt-sc-icon-box.type7:hover {
		background-color: rgba(23,29,64, 0.8);
	}

	.home-icon--box-container .vc_row.vc_inner>.dt-sc-custom-icon-box.dt-sc-dark-bg:last-child .dt-sc-icon-box.type7 {
		background-color: var(--primary-color-custom);
	}

	.home-icon--box-container .vc_row.vc_inner>.dt-sc-custom-icon-box.dt-sc-dark-bg:last-child:hover .dt-sc-icon-box.type7 {
		background-color: rgba(0, 197, 82, 0.8);
	}

	.home-icon--box-container .dt-sc-custom-icon-box .dt-sc-icon-box.type7 {
		padding: 50px 30px;
	}
	
	.home-faq-section .vc_custom_1767880830938 {
		padding-right: 35px !important;
		padding-left: 35px !important;
	}
	
	.home-faq-section .faq-accordion>h5.dt-sc-toggle-accordion {
		font-size: 16px;
	}
	
	.home-faq-section .faq-accordion>h5.dt-sc-toggle-accordion::before {
		height: 16px;
		right: 7px;
	}
	
	.home-faq-section .faq-accordion>h5.dt-sc-toggle-accordion::after {
		width: 16px;
	}
	
	.home-faq-section .faq-accordion>h5.dt-sc-toggle-accordion>a {
		padding: 10px 25px 10px 0;
	}
	
	.home-faq-section .faq-accordion>.dt-sc-toggle-content {
		padding: 10px 0 10px 0px;
	}
	
	.cta-section.vc_row {
		margin: 0 !important;
	}
	
	.cta-section>.vc_column_container>.vc_column-inner {
		padding-left: 15px !important;
		padding-right: 15px !important;
	}
	
	.dt-sc-button.medium {
    	font-size: 14px !important;
	}

	.compare-reason-box .dt-sc-image-caption.type3 {
		margin-bottom: 0;
	}

	.compare-reason-box .dt-sc-image-caption.type3>.dt-sc-image-content>.dt-sc-image-title {
		margin-bottom: 0;
	}
	
	.compare-reason-box .dt-sc-image-caption.type3>.dt-sc-image-content>p {
		font-size: 14px;
		line-height: 1.75em;
	}
	
	.sidenav-sticky .side-navigation.type5 {
		display: none !important;
	}
	
	.contact-feature-boxes .dt-sc-contact-info.type6>*:not(h6, .zmdi) {
		font-size: 14px;
		word-wrap: break-word;
	}
	
	.aio-icon-component.alert-box .aio-icon-box .aio-icon-title {
		font-size: 13px;
	}
	
	footer#footer>.container>.footer-20 .dt-sc-footer-social {
		padding: 8px;
	}
	
	footer#footer .footer-20 .dt-sc-footer-section {
		padding: 20px 10px;
	}
	
	footer#footer .footer-20 .dt-sc-footer-section>.vc_column_container {
		margin-bottom: 0;
	}
	
	footer#footer>.container>.footer-20 .footer-20-widget>.vc_column-inner>.wpb_wrapper>.vc_row.vc_inner>.vc_column_container>.vc_column-inner>.wpb_wrapper {
		padding: 0 20px;
		text-align: left;
	}

	footer#footer>.container>.footer-20 .dt-sc-footer-section .dt-sc-contact-info a {
		word-wrap: break-word;
	}

	footer#footer .footer-copyright-flex .wpb_column {
		margin-top: 20px;
	}

	footer#footer .footer-copyright-flex .wpb_wrapper:has(.footer-copyright) {
		flex-direction: column;
	}

	footer#footer .footer-copyright-flex .footer-copyright {
		padding: 5px 0;
		font-size: 14px;
	}
}

@media only screen and (max-width: 480px) {
	body>.loader {
		background-size: 320px;
	}
	
	body>.loader>.loader-inner {
		top: 60%;
	}

	.home-hero-section.vc_row.vc_row-fluid {
        padding: 30px 15px !important;
        background-size: 35%;
        background-position: top 30px left 10px;
    }
	
	.home-hero-section .hero-img .vc_single_image-wrapper {
		height: 150px;
	}
	
	.home-hero-section.vc_row>.vc_col-xs-8>.vc_column-inner {
		padding: 0 !important;
	}
	
	.home-hero-section .dt-sc-title.with-dual-color h2.dt-sc-main-heading {
		font-size: clamp(1.35rem,5vw,2.5rem) !important;
    	margin-bottom: 5px;
	}
	
	.home-hero-section .hero-step-process {
		padding: 20px 10px !important;
		margin: 10px auto 0;
	}
	
	.home-hero-section .hero-step-process .process-boxes>.vc_column_container:not(:last-child) {
		width: 50%;
	}
	
	.home-hero-section .hero-step-process .process-boxes>.vc_column_container:last-child {
		width: 100%;
		margin-top: 20px;
	}

	.home-hero-section .hero-step-process .process-boxes .dt-sc-icon-box.type3::after {
		-webkit-mask-size: 16px;
	}
	
	.home-hero-section .hero-step-process .process-boxes .dt-sc-icon-box.type3.first::after {
		right: -10px;
	}
	
	.home-hero-section .hero-step-process .process-boxes .dt-sc-icon-box.type3.middle::after {
		top: 125px;
        right: 70px;
        -webkit-mask-image: url(https://alliancemarketinguk.quaidtech.net/wp-content/uploads/2026/01/arrow.png);
        transform: scaleY(-1) rotate(90deg);
        -moz-transform: scaleY(-1) rotate(90deg);
        -webkit-transform: scaleY(-1) rotate(90deg);
	}

	.home-hero-section .hero-step-process .process-boxes .dt-sc-icon-box.type3 .icon-wrapper span {
		width: 40px;
		height: 40px;
		padding: 5px;
	}

	.home-hero-section .hero-step-process .process-boxes .dt-sc-icon-box.type3 .icon-wrapper span img { width: 22px; }

	.home-hero-section .hero-step-process .process-boxes .dt-sc-icon-box.type3 .icon-content h4 { font-size: 10px; }
	
	.home-hero-section .wpb_text_column.wpb_content_element {
		font-size: 12px !important;
	}
	
	.about-intro-section .dt-sc-custom-decor-img img { height: 480px !important; }
	
	.dt-sc-title.script-with-sub-title .dt-sc-sub-heading { line-height: 1.5em; }
	
	.business-energy--faq-section #faq-search-form .faq-search { padding: 12px 58px 12px 12px; }

	.business-energy--faq-section #faq-search-form .dt-sc-button { padding: 8px 15px; }
}

@media only screen and (min-width: 320px) and (max-width: 480px) {
	body>.loader { background-size: 320px; }
	.container { width: 320px !important; }
	#header>.container, #footer>.container { width: 100% !important; }
}

@media only screen and (max-width: 319.98px) {
	body>.loader { background-size: 280px; }
	.container { width: 280px !important; }
	#header>.container, #footer>.container { width: 100% !important; }
}