﻿/*
Theme Name: Trust Boilers
Theme URI: https://trustboilers.com
Description: WordPress theme built by <a href="http://www.hedleyenterprises.co.uk">hedley enterprises</a>. <strong>Web design</strong> starts with a coffee and a chat...
Version: 1 Build-0522
Author: <strong>hedley</strong> enterprises
Author URI: https://hedleyenterprises.co.uk

*/
:root {
	--main-color: #000000;
	--trust-bright-gold: #e8ae00;
	--trust-light-gold: #e0c585;
	--trust-sky-blue: #85cfec;
	--trust-andrew-blue: #1f398f;
	--trust-red: #af1b1a;
	--trust-grey: #a7a9ac;
  	--white: #ffffff;
  	--grey: rgba(157, 176, 197, 0.1);
  	--greydark: rgba(157, 176, 197, 0.2);
	--black: rgba(0, 0, 0, 0.2);
	--lightshadow: rgba(180, 180, 180, 0.1);
	--bold: 700;
	--boxshadow: 0 5px 24px;
	--border: 10px;
	--uppercase: uppercase;
}
html {
	scroll-behavior: smooth;
}
body {
	font-size:18px;
    font-family: 'Tinos', serif;
	margin:0;
	padding:0;
  	color: var(--main-color);
}
p::selection, h1::selection, h2::selection, h3::selection { background-color: #320101; color: #fff;}
p::-moz-selection, h1::-moz-selection, h2::-moz-selection, h3::-moz-selection { background-color: #320101; color: #fff; }

/* -------------------- Animation -------------------- */

section {
	opacity: 0;
}
.inverse, .show-menu {
	animation: fade-in 0.3s forwards 0.3s linear;
}
@keyframes fade-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/* -------------------- General Styles -------------------- */

.container {
	width: min(90%, 1600px);
	margin-inline: auto;
}
.easy-reading {
	width: min(90%, 900px);
	margin-inline: auto;
}
a {
  text-decoration: none;
}
p, .package-description li {
	line-height:1.6;
}
img {
	border-style: none;
}
.center {
	text-align:center;
}
.absol {
	position:relative;
}
h2 {
    font-size: 2rem;
}
h1,h2,h3, .page-title strong, .download-now {
	text-transform: uppercase;
}

/* -------------------- Padding and Margins -------------------- */
.down {
	margin-top:5em;
}
.drop {
	margin-top:3em;
}
.ptb {
	padding: 3em 0;
}
.bring-up {
	margin-top: -10em;
}
.pad-down {
	padding-top: 7em;
	padding-bottom: 2em;
}
.mini {
	margin-top: 1em;
}
/* -------------------- Background -------------------- */
.grey-background {
	background-color: var(--grey);
}
.greydark-background {
	background-color: var(--greydark);
}
.white-back {
	background-color: var(--white);
	padding: 2em;
	box-sizing: border-box;
	border-radius: var(--border);
	box-shadow: var(--boxshadow) var(--black);
}
hr {
	width: 200px;
	margin: 5em auto;
	border: dotted 2px var(--trust-bright-gold);
}
.easy-reading a {
	color: var(--trust-andrew-blue);
}
.easy-reading a:hover {
	color: var(--trust-bright-gold);
}
/* -------------------- Header -------------------- */
header {
    border-bottom: solid thin var(--black);
    box-shadow: var(--boxshadow) var(--black);
}
.logo-nav {
	display: grid;
    grid-template-columns: 1fr;
    align-items: center;
	margin-bottom: 1em;
	padding-top: 2em;
}
.trust-reviews {
	display: none;
}
.logo {
    text-align: center;
}
.logo img, .trust-reviews img, .slogan-image img, .welcome-section__image img {
    width: 100%;
    height: auto;
}
.trust-reviews img {
    max-width: 200px;
}
.logo img {
	max-width: 300px;
}
.top-contact ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}
.top-contact .big {
    font-size: 2.1rem;
}
.social-icons ul {
	margin: 0 0 .5em 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
}
.social-icons li {
	padding: .2em;
}
.social-icons img, .social-icons svg {
	width: 20px;
	height: auto;
}
.top-contact .social-icons ul {
	justify-content: center;
}
/* -------------------- Video -------------------- */
.video video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -10;
}
.modal iframe {
	width: 100%;
	height: 500px;
	border: solid 2px var(--trust-light-gold);
	border-radius: var(--border);
}
/* -------------------- Navigation -------------------- */
.navigation {
	display: none;
    grid-column: 1/-1;
}
nav {
    text-transform: var(--uppercase);
}
/* -------------------- Navigation Mobile -------------------- */
.navigation-mobile {
	width: 0;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
}
#navoverlay {
	background-color: var(--trust-andrew-blue);
	color: var(--white);
}
.close-btn {
	display: block;
}
.menu-btn {
	position: absolute;
	top: 0.5em;
	right: 0.5em;
	cursor: pointer;
	color: var(--white);
	background-color: var(--trust-red);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	outline: solid 2px var(--trust-light-gold);
	outline-offset: 2px;
	transition: background-color 0.5s ease-in-out;
}
.menu-btn:hover {
	background-color: var(--trust-andrew-blue);
}
.mobile {
	position: fixed;
	padding: 2em;
	width: calc(100vw - 4em);
	height: calc(100vh - 4em);
	z-index: 200;
	top: -200%;
}
.nav-icon-open, .nav-icon {
	width: 20px;
}
.close-btn {
	cursor: pointer;
	position: absolute;
	right: 0.5em;
	top: .5em;
	color: var(--white);
	background-color: var(--trust-light-gold);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	outline: solid 2px var(--trust-sky-blue);
	outline-offset: 2px;
	transition: background-color 0.5s ease-in-out;
}
.show-menu {
	opacity: 0;
	display: block;
}
ul.sub-menu {
	display:none;
}
.nav .sub-menu {
	margin-top: 20px;
	margin-bottom: 20px;
}
.nav .sub-menu li a {
	font-size: 20px;
	margin: 0;
	padding: 0;
	opacity: 0.8;
}
.nav .sub-menu li {
    margin: .5em 0;
}
.slideDown {
  display: block;
}
.menu-contents {
	display: flex;
	flex-wrap: wrap;
	height: 100vh;
}
.nav ul:nth-child(1) {
	font-size: 1.5rem;
}
.nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.nav ul:nth-child(3) {
	margin: 3em 0 0 0;
}
.nav ul, .contact-nav ul, .social-nav ul {
	flex-wrap: wrap;
}
.nav li, .contact-nav li, .social-nav li {
	width: 100%;
	margin-left: 0;
	margin-bottom: 15px;
}
.nav, .contact-nav, .social-nav {
	align-self: center;
	width: 100%;
	text-align: center;
}
.nav, .contact-nav {
	margin-bottom: 20px;
}
.nav li a, .contact-nav li a {
	color: var(--white);
}
.current_page_item a {
	font-weight: bold;
}
/* -------------------- Hamburger Icon -------------------- */
#Rectangle_27, #Rectangle_28, #Rectangle_29,
#Rectangle_30, #Rectangle_31, #Rectangle_32 {
	transition: all 0.5s ease-in-out;
}
#Rectangle_27 {
	transition: all 0.5s ease-in-out;
	transform: translate(334px, 30px);
}
#open-menu:hover #Rectangle_27 {
	transform: translate(332px, 30px);
}
#Rectangle_28 {
	transition: all 0.5s ease-in-out;
	transform: translate(334px, 36px);
}
#open-menu:hover #Rectangle_28 {
	transform: translate(326px, 36px);
}
#Rectangle_29 {
	transform: translate(334px, 42px);
}
#open-menu:hover #Rectangle_29 {
	transform: translate(316px, 42px);
}


/* -------------------- Page Title / CTA -------------------- */
.page-title h1, .page-title h2, .page-title p {
	margin: 0;
}
/* -------------------- Slogan -------------------- */
.slogan {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 2em;
	z-index: 2;
}
.slogan h1 {
    font-weight: normal;
    text-align: center;
	color: var(--white);
}
.slogan-image img {
    max-width: 400px;
}

/* -------------------- Welcome Section -------------------- */
.welcome-section {
    display: grid;
    grid-template-columns: 1fr;
	grid-gap: 2em;
}
.welcome-section__title {
    grid-column: 1/-1;
}
.welcome-section__image img {
	max-width: 300px;
	background-color: var(--white);
	padding: 1em 1em 0 1em;
	border-radius: var(--border);
	box-shadow: var(--boxshadow) var(--lightshadow);
}
/* .welcome-section__image {
	display: flex;
	justify-content: center;
	align-self: flex-end;
	margin-top: 1em;
} */
.welcome-section__text {
    align-self: center;
}
.welcome-section__text ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}
.welcome-section__text li {
    padding: 1em;
    background-color: var(--white);
    box-shadow: var(--boxshadow) var(--lightshadow);
    border-radius: var(--border);
    width: 43%;
    flex-grow: 1;
    margin: 5px;
    border: solid thin var(--black);
}
/* -------------------- Trust Services Boxes -------------------- */
.trust-services__gird {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 2em;
	color: var(--main-color);
}
.trust-services__image {
	height: 300px;
	border-radius: var(--border);
}
.trust-services__boxes {
	background-color: var(--white);
	border-radius: var(--border);
	box-shadow: var(--boxshadow) var(--lightshadow);
}
.trust-services__boxes a {
	color: currentColor;
}

.trust-services__title, .trust-services__description {
	padding: 0 1em;
}
.trust-services__description {
	padding: 0 1em;
}
/* -------------------- FAQ -------------------- */
.Hide-Website-Url {
	display: none;
}
summary {
    padding: 1em 0 0.5em 0;
    cursor: pointer;
    outline: none;
    color: var(--main-color);
    margin-top: 1em;
	border-bottom: solid thin var(--black);
	font-size: 1.5rem;
	font-weight: var(--bold);
}
/* details p {
	padding-bottom: 2em;
	padding-left: 1.5em;
} */
/* details > summary {
	list-style: none;
} */
details[open] summary {
    border-bottom: solid thin var(--trust-andrew-blue);
}
details[open] p {
	animation-name: comein;
	animation-duration: 500ms, 200ms;
	animation-delay: 0ms, 500ms;

}
@keyframes comein {
	0% {
	  opacity: 0;
	}
	  100% {
		  opacity: 1;
	}
}
/* -------------------- Services Boxes -------------------- */
.services-boxes {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
	grid-gap: 0.5em;
	margin-top: 2em;
}
.news-boxes {
	display: flex;
	justify-content: center;
	gap: 1em;
	margin-bottom: 1em;
	flex-wrap: wrap;
}
.services-box {
	border: solid 2px var(--white);
	background-color: var(--white);
	border-radius: var(--border);
	overflow: hidden;
}
.services-box__image {
	height: 350px;
	overflow: hidden;
}
.services-box__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: inline-block;
}
.services-box__text {
	padding: 1em;
	color: var(--main-color);
	font-size: 18px;
}
.services-box__text h3 {
	font-weight: normal;
}
.services-box__button, .play-button {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.services-box__button p {
    margin: 0;
}
.services-box__button, .play-button {
	color: var(--white);
    text-transform: var(--uppercase);
	border: solid 4px var(--trust-light-gold);
	background-color: var(--trust-red);
	box-shadow: 0 0.5em 1em var(--lightshadow);
	transition: border 0.1s ease-in-out;
}
/* .services-boxes .services-box:nth-child(1) .services-box__button {
	border: solid 4px var(--trust-light-gold);
	background-color: var(--trust-andrew-blue);
}
.services-boxes .services-box:nth-child(3) .services-box__button {
	border: solid 4px var(--trust-light-gold);
	background-color: var(--trust-bright-gold);
} */
.services-box:hover .services-box__button {
	background-color: var(--trust-sky-blue);
	border: solid 4px var(--trust-andrew-blue);
}
.services-box a:hover .play-button {
	background-color: var(--trust-andrew-blue);
}
/* -------------------- Boiler Graphic -------------------- */

.boiler-svg svg {
	width: 100%;
	height: auto;
	max-width: 449px;
}
.boiler-image img {
	width: 200px;
}
/* -------------------- Provide -------------------- */
.provide-options {
	background-color: var(--white);
	border-radius: var(--border);
	overflow: hidden;
	transition: 
		box-shadow 300ms ease-in-out, 
		outline 300ms ease-in-out;
}
.provide-options:nth-child(3), .services-box:nth-child(3) {
	grid-column: 1/-1;
}
.provide-options a {
	color: var(--main-color);
}
.provide-options #Ellipse_4 {
	transition: fill 300ms ease-in-out;
}
.provide-options:hover #Ellipse_4 {
	fill: var(--trust-bright-gold);
}
.provide-options:hover {
	box-shadow: var(--boxshadow) var(--black);
	outline: solid thin var(--trust-light-gold);
}
.provide-options__image {
    background-size: cover;
    background-position: center;
    height: 300px;
	transition: filter 300ms ease-in-out;
}
.provide-options:hover .provide-options__image {
	filter: grayscale(1);
}
.provide-options__title {
    display: grid;
    padding: 20px;
    grid-gap: 10px;
    grid-template-columns: 2fr 41px;
    font-weight: var(--bold);
	text-transform: uppercase;
}
.provide-options .arrow-button {
    align-self: center;
}
/* -------------------- Reviews -------------------- */
.trust-reviews-section, .download-guide-grid, .home .download-guide-grid {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 1em;
}
.trust-reviews-section__title {
	grid-column: 1/-1;
}
.play-button {
	padding:1em;
	border-radius: 50%;
	height: 50px;
	width: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
}
#play-button-base {
	fill: var(--white);
}
#play-button {
	fill: var(--trust-red);
}
.playbutton:hover #play-button {
	fill: var(--trust-andrew-blue);
}
/* -------------------- Team -------------------- */
.team-grid {
	display: grid;
	grid-gap: 30px;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	margin-bottom: 6em;
}
.team {
	border-radius: 10px;
	border: solid thin var(--lgrey);
	background-color: var(--white);
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.team:hover {
	box-shadow: 0 0 1em var(--black);
}
.team__image {
	width: 150px;
	height: 150px;
	margin: 3em auto auto auto;
	background-color: var(--main-color);
	border-radius: 50%;
	box-shadow: 0 0.5em 1em var(--black);
	background-size: cover;
	background-position: center;
}
.team__name {
	text-align: center;
}
.team__name h2 {
	border-bottom: solid thin var(--trust-light-gold);
	display: inline-block;
	margin: 20px 0 5px 0;
	color: var(--trust-andrew-blue);
	font-size: 1.5rem;
}
.team__name p {
	margin: 0;
	font-size: 10pt;
}
.team__bio {
	padding: 0 30px 30px 30px;
}
.team-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 150px;
	background-image: url('images/team-background.jpg');
	background-size: cover;
	background-position: center;
	z-index: -1;
}

/* -------------------- Download Guide -------------------- */
.gold-background {
	background-color: var(--trust-light-gold);
}
.lightblue-background {
	background-color: var(--trust-sky-blue);
}
.download-guide {
	padding: 2em;
	align-self: center;
}
.inner .download-guide:nth-child(2) {
	background-color: var(--trust-light-gold);
}
.inner .download-guide-grid {
	background-color: var(--grey);
}
.download-guide__title h2 {
	color: var(--trust-red);
	margin: 0;
}
.download-guide__image {
	max-width: 500px;
	margin-inline: auto;
}
.download-guide img {
    width: 100%;
    height: auto;
    max-width: 500px;
}
.download-now {
	position: absolute;
	right: 20px;
	background: var(--trust-andrew-blue);
	color: var(--white);
	width: 150px;
	height: 150px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	outline-offset: 5px;
	outline: solid thin var(--trust-andrew-blue);
}
.download-now p {
	line-height: 1;
	padding: 2em;
}
/* -------------------- Download Guide Homepage -------------------- */
.home .download-guide-grid {
	background-color: var(--grey);
	padding: 5em 0;
}
.home .download-guide:nth-child(2) {
	grid-column: 1;
	grid-row: 1;
}
.home .download-guide:nth-child(1) {
	width: min(90%, 800px);
	margin-inline: auto;
}
.home .download-guide {
    padding: 0;
}
.home .download-guide__title h2, .home .download-guide__title h3 {
	text-align: center;
}
.home .download-guide__title h2 {
	font-size: 2.5em;
}
.home .move-right {
	text-align: center;
}
/* -------------------- Enquiry Form -------------------- */
.enquiry-form-grid {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 30px;
	padding: 2em;
	background-color: var(--white);
	border-radius: var(--border);
	box-sizing: border-box;
}
.contact-page .enquiry-form-grid {
	margin-top: 5em;
}
.enquiry-form__details form {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.enquiry-logo {
	text-align: center;
}
.enquiry-logo img, .enquiry-logo svg {
	width: 200px;
}
/* .enquiry-form__input:nth-child(3),
.enquiry-form__input:nth-child(4) {
	width: 100%;
} */
.enquiry-form-grid .long {
	width: 100%;
}
.enquiry-form__title {
	margin-bottom: 4em;
}
.enquiry-form__input textarea,
.enquiry-form__input input,
.enquiry-form__input select {
	width: 100%;
}
.enquiry-form__input {
	width: 100%;
	margin-bottom: 1em;
}
.move-right {
	align-self: center;
	text-align: left;
}
.enquiry-form__input textarea, .enquiry-form__input input, .enquiry-form__input select {
	width: 100%;
	border: solid thin var(--trust-andrew-blue);
	padding: 10px;
	box-sizing: border-box;
	border-radius: 5px;
	transition: all 0.5s ease-in-out;
}
.enquiry-form__input textarea {
	height: 50px;
}
.enquiry-form__input textarea:focus {
	height: 100px;
	background-color: var(--trust-light-gold);
	border: solid thin var(--main-color);
	color: var(--trust-andrew-blue);
	box-shadow: 0 .5em 1em var(--black);
}

input[type=text]:focus,
input[type=email]:focus {
	background-color: var(--trust-light-gold);
	border: solid thin var(--main-color);
	color: var(--trust-andrew-blue);
	box-shadow: 0 .5em 1em var(--black);
}
input[type="submit"] {
	color: var(--white);
	background-color: var(--trust-light-gold);
	width: 200px;
	border-radius: 10px;
	cursor: pointer;
	padding: 1.2em;
	border: solid 4px var(--trust-red);
	text-transform: uppercase;
	color: var(--main-color);
}
label {
	font-weight: var(--bold);
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
	background-color: #ffb900;
	border-radius: 10px;
}
.wpcf7-not-valid-tip {
	background-color: pink;
	padding: 0.5em;
	border-radius: 10px;
	margin-top: 1em;
}
.wpcf7 form.sent .wpcf7-response-output {
	background-color: #38883f;
	border-radius: 10px;
}
/* -------------------- Overview List -------------------- */
.overview ul {
	margin: 2em 0;
	padding: 0;
}
.overview ul li {
	margin-bottom: 1em;
	list-style-type: none;
	padding: 0.25em 0 0 2.5em;
	position: relative;
}
.overview ul li:before {
	content: " ";
	display: block;
	border: solid 0.8em var(--trust-bright-gold);
	border-radius: 0.8em;
	height: 0;
	width: 0;
	position: absolute;
	left: 0.5em;
	top: 40%;
	margin-top: -0.5em;
}
.overview ul li:after {
	content: " ";
	display: block;
	width: 0.3em;
	height: 0.6em;
	border: solid var(--white);
	border-width: 0 0.2em 0.2em 0;
	position: absolute;
	left: 1em;
	top: 40%;
	margin-top: -0.2em;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
/* -------------------- Credentials -------------------- */
.credentials {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
	align-items: center;
	justify-content: center;
	grid-gap: 2em;
	text-align: center;
	padding: 2em 0;
}
.credentials-logos img {
	width: 100%;
	height: auto;
	max-width: 300px;
}
.credentials-logos img {
	width: 100%;
	height: auto;
}
/* -------------------- Fan -------------------- */
#Fan-spin {
	transform-origin: center;
	transform-box: fill-box;
	animation: fan 0.3s infinite 0.3s linear;
}

@keyframes fan {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

/* -------------------- Packages -------------------- */
.package-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	grid-gap: 20px;
	grid-column: 1/-1;
	margin-bottom: 5em;
}
.packages {
	border: solid thin var(--black);
	padding: 20px;
	border-radius: 10px;
	background-position: left bottom;
	background-repeat: no-repeat;
	display: grid;
	background-color: var(--white);
}
.packages:hover {
	box-shadow: 0 0 1em var(--black);
}
.selected {
	border: none;
	box-shadow: 0 0 1em var(--black);
}
.package-title h2,
.package-title h3, .best p {
	margin: 0;
	text-align: center;
}
.package-title p {
	text-transform: uppercase;
	font-weight: bold;
}
.package-price {
	text-align: center;
	color: var(--trust-andrew-blue);
}
.package-price strong {
	font-size: 2rem;
}
.package-title h2 {
	color: var(--main-color);
	font-size: 1.5rem;
}
.package-line {
	width: 100px;
	border-top: solid 1px var(--black);
	margin: auto;
}
.package-description {
	padding: 2em 1em 4em 1em;
}
.package-description ul, .additional-payments-options ul, .bullets ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.packages-button {
	align-self: flex-end;
}
.packages-terms {
	margin-top: 1em;
}
.noselect {
	opacity: 0.2;
}
.best {
	position: absolute;
	width: 80px;
	height: 80px;
	background-color: var(--green);
	display: flex;
	overflow: hidden;
	border-radius: 50%;
	right: -20px;
	top: -20px;
	padding: 2px;
	box-sizing: border-box;
}
.best p {
	font-weight: bold;
	align-self: center;
	line-height: 1;
}
.package-intro {
	grid-row: 1;
}
.packages hr {
	width: 200px;
	margin: 3em auto;
	border-color: var(--black);
}
.additional-payments-options {
	background-color: var(--lgrey);
	padding: 50px;
}
.additional-payments-options li {
	margin-bottom: 1em;
}
.additional-payments-options li a {
	display: block;
	text-align: center;
	background-repeat: no-repeat;
	background-position: center left;
	padding: 10px;
	border-radius: 5px;
	color: var(--white);
	background-color: var(--trust-andrew-blue);
}
.packages-badge img {
	width: 100%;
	height: auto;
	max-width: 200px;
}
.package-form {
	padding: 1em 0;
	background-color: var(--white);
	border-radius: var(--border);
	text-align: center;
	box-shadow: var(--boxshadow) var(--black);
	border: solid thin var(--trust-sky-blue);
}
.plan-style .package-price p {
	margin: 0;
}
.plan-style .package-price {
	margin-bottom: 2em;
}
/* -------------------- Gallery -------------------- */
.gallery, .grid, .links {
	display: flex;
	flex-wrap: wrap;
}
.space {
	justify-content: space-between;
}
.gallery-item {
	float: left;
	width: 20%;
	flex-grow: 1;
	margin: 5px;
}
.gallery-item img {
	width: 100%;
	height: auto;
}
.gallery-item img:hover {
	opacity: 0.6;
}
/* -------------------- Banner -------------------- */
.feature-section {
    background-color: var(--trust-grey);
    overflow: hidden;
    z-index: 1;
    padding: 5em 0;
}
.home .feature-section {
    display: flex;
}
.home .slogan {
	align-self: center;
}
.feature-banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.google_map iframe {
	width: 100%;
	border-radius: var(--border);
	box-shadow: var(--boxshadow) var(--black);
}
/* -------------------- Boiler Installation -------------------- */
.blue-white {
	background-image: linear-gradient( to bottom, var(--white), var(--white), var(--trust-andrew-blue), var(--trust-andrew-blue), var(--trust-andrew-blue) );
}
.boiler-installation-grid {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 50vh;
}
.boiler-installation__intro {
    display: flex;
    background-color: var(--white);
}
.boiler-installation__intro-text {
	align-self: flex-end;
	padding: 2em;
}
.boiler-installation__description {
    align-self: center;
    padding: 40px;
    color: var(--white);
}
.boiler-installation__image {
	background-position: center;
	background-size: cover;
	min-height: 50vh;
}
.boiler-image svg {
	width: 100%;
	height: auto;
	max-width: 400px;
}
/* -------------------- Button -------------------- */
.btn a, .services-box__button, .trust-services__description a {
	display: inline-block;
	min-width: 150px;
	text-align: center;
	padding: 1em;
	border-radius: var(--border);
}
.btn-outline a, .trust-services__description a {
	color: var(--main-color);
    text-transform: var(--uppercase);
	border: solid 4px var(--trust-red);
	background-color: var(--trust-light-gold);
	box-shadow: 0 0.5em 1em var(--lightshadow);
	transition: border 0.1s ease-in-out;
}
.btn a:hover, button:hover, .trust-services__description a:hover {
	background-color: var(--trust-sky-blue);
	border: solid 4px var(--trust-andrew-blue);
}
.quote-button a {
    display: block;
    text-align: center;
    padding: 1em 0;
    color: var(--main-color);
    text-transform: var(--uppercase);
    background-color: var(--trust-light-gold);
    font-weight: var(--bold);
}
.quote-button a:hover {
	background-color: var(--trust-bright-gold);
}
/* -------------------- Cookie Notice -------------------- */

.cookie-notice {
    width: min(80%, 470px);
    z-index: 50;
    box-sizing: border-box;
    position: fixed;
    bottom: 5%;
    left: 50%;
    max-width: 500px;
    background: var(--white);
    border: solid thin var(--black);
    box-shadow: var(--box-shadow) var(--black);
    transform: translateX(-50%);
    border-radius: 10px;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1em;
    align-items: center;
    padding: 1em;
    opacity: 0;
    animation: fade-in .3s forwards 2s linear;
}
.cookie-notice p {
    margin: 0;
}
.cookie-notice a {
	color: var(--main-color);
}
.cookie-notice-header {
	font-weight: bold;
}
.cookie-notice button {
	display: inline-block;
	min-width: 150px;
	text-align: center;
	border-radius: 50px;
	padding: 10px;
	outline: solid thin var(--trust-andrew-blue);
	outline-offset: 5px;
	background-color: var(--trust-andrew-blue);
	border: none;
	font-weight: bold;
	color: var(--white);
	cursor: pointer;
}
.cookie-notice button:hover {
	outline: solid thin var(--trust-light-gold);
	outline-offset: 5px;
	background-color: var(--trust-light-gold);
}
.grecaptcha-badge {
	opacity: 0;
}
/* -------------------- Google Reviews -------------------- */
.google-reviews__image {
	margin-top: -40px;
}
.google-reviews__image img {
	width: 100%;
	height: auto;
	max-width: 300px;
}
.google-reviews__stars {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: -40px;
	margin-bottom: 40px;
}
.google-reviews ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
}
/* -------------------- Footer -------------------- */
footer {
    color: var(--white);
    background-color: var(--main-color);
	padding: 3em 0;
	z-index: 1;
	position: relative;
}
footer ul {
    margin: 0 0 2em 0;
    padding: 0;
    list-style: none;
}
footer h3 {
    text-transform: uppercase;
}
footer a {
    color: var(--white);
}
footer a:hover {
	color: var(--trust-grey);
}
.footer-grid {
	display: grid;
	grid-gap: 30px;
	grid-template-columns: 1fr;
	text-align: center;
}
.footer-logos {
	align-self: flex-end;
}
.footer-logos img {
	max-width: 100px;
	width: 100%;
}
.footer-pipes {
	position: absolute;
	right: 0;
	top: 10%;
	height: 150px;
	z-index: -1;
	transform: rotate(-180deg);
}
.footer-pipes svg {
	width: auto;
	height: 100%;
}
.finance-banner img {
	width: 100%;
	height: auto;
}
.copyright {
	font-size: 12px;
	margin-top: 3em;
	border-top: solid thin var(--trust-sky-blue);
	grid-column: 1/-1;
}
.copyright p:nth-child(1) {
    font-weight: 700;
}

/*

	Author:				hedleyenterprises.co.uk - web design starts with a coffee and a chat...
	Description:	CSS Stylesheet for Desktop Devices


*/

/* -------------------- 800 -------------------- */

@media all and (min-width: 55em) {
/* -------------------- Navigation -------------------- */
.navigation {
	display: flex;
    justify-content: center;
}
.menu-btn {
	display: none;
}
.navigation-mobile {
	display: none;
}
.logo-nav {
    grid-template-columns: 200px 1fr 200px;
	margin-bottom: 0;
}
.trust-reviews {
	display: block;
}
.top-contact .social-icons ul {
    justify-content: flex-end;
}
.top-contact ul {
    text-align: right;
}
.logo img {
    max-width: 400px;
}
/* -------------------- Drop-Down -------------------- */
.sub-menu {
	margin-top: -5px;
}
nav ul ul {
	display: none;
}
nav ul li:hover > ul {
	display: block;
	z-index: 10;
	border-radius: 0 10px 10px 10px;
	overflow: hidden;
}
nav ul {
	padding: 0px 5px 0px 5px;
	list-style: none;
	position: relative;
	margin: .5em 1em;
}
nav ul:after {
	content: ""; clear: both; display: block;
}
nav ul li {
	float: left;
}
nav ul li:hover {
	background-color: var(--trust-andrew-blue);
	border-radius: 5px;
}
nav ul li:hover a {
	color: #fff;
}
nav ul li a {
	display: block;
	padding: 10px;
	color: var(--main-color);
	text-decoration: none;
}
nav ul ul {
	background: var(--trust-andrew-blue); border-radius: 0px; padding: 0;
	position: absolute; top: 100%;
}
nav ul ul li {
	float: none;
	position: relative;
}
nav ul ul li a {
	padding: 10px;
	color: var(--lgrey);
	font-weight: normal!important;
}
nav ul ul li a:hover {
	background: var(--trust-sky-blue);
	color: var(--white);
}
nav ul ul ul {
	position: absolute; left: 100%; top:0;
}
ul.sub-menu {
	margin: -5px 0 0 0;
	width: 50%;
}
.feature-section {
	min-height: 60vh;
}
.trust-reviews-section, .download-guide-grid {
	grid-template-columns: 1fr 1fr;
}
.enquiry-form__input {
	width: 48%;
}
.provide-options:nth-child(3), .services-box:nth-child(3) {
	grid-column: 3;
}
}


/* -------------------- 1200 -------------------- */

@media all and (min-width: 75em) {
.logo-nav {
	grid-template-columns: 300px 2fr 300px;
}

.boiler-installation-grid {
    grid-template-columns: 2fr 1fr 2fr;
}
.blue-white {
	background-image: linear-gradient( to right, var(--white), var(--white), var(--trust-andrew-blue), var(--trust-andrew-blue), var(--trust-andrew-blue) );
}
.boiler-installation-grid {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}
.footer-grid {
	grid-template-columns: 1fr 1fr 1fr;
	text-align: left;
}
.trust-services__gird {
	grid-template-columns: 1fr 1fr;
}
.provide-options {
	width: 30%;
}
}

/*

	Author:				hedleyenterprises.co.uk - web design starts with a coffee and a chat...
	Description:	CSS Stylesheet for Desktop Devices with bigger screens


*/


@media all and (min-width: 1900px) {

}



