/*
Theme Name: WilsonOilAndPropane
Description: Warm Thoughts Theme
Version: 1.5
Template Author: 
Site Author: 
*/


/* Root
====================================*/
:root {
	--default: #292b2c; /*Font*/
	--primo: #0053a0; /*Blue*/
	--secondo: #5f7cba; /*Light Blue*/
	--terzo: #024381; /*Dark Blue*/
	--quarto: #3cb3f3; /*Sky Blue*/
	--quinto: #ffd51d; /*Yellow*/
	--ffamily: 'Prompt', sans-serif;
}


/* Global Styles
====================================*/

body {
	color: var(--default);
	font-family: var(--ffamily);
	font-size: 18px;
	line-height: 26px;
	font-weight: 400;
	overflow-x: hidden;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
	margin-bottom: 1rem;
}
h1, .h1 {
	color: var(--primo);
	font-size: 36px;
	line-height: 46px;
	font-weight: 400;
}
h2, .h2 {
	color: var(--secondo);
	font-size: 30px;
	line-height: 34px;
	font-weight: 400;
}
h3, .h3 {
	color: var(--primo);
	font-size: 26px;
	line-height: 28px;
	font-weight: 400;
}
h4, .h4 {
	color: var(--secondo);
	font-size: 22px;
	font-weight: 400;
}
h5, .h5 {
	color: var(--primo);
	font-size: 20px;
	font-weight: 400;
}
a {
	color: #3366cc;
	text-decoration: none;
}
img {
	max-width: 100%;
	height: auto;
}
hr {
	border-top: 2px solid var(--primo);
	margin-top: 0;
}
mark {
	padding: 0;
}
ul li,
ol li {
	padding: 0.5rem 0;
}

blockquote {
	border-left: 5px solid var(--secondo);
	margin: 1rem 0;
	padding: 2rem 2rem 1rem 2rem;
	position: relative;
}
blockquote p {
	font-size: 18px;
	line-height: 26px;
	font-style: italic;
}
blockquote p:before {
	content: '\f10d';
	font-family: "FontAwesome";
	color: var(--primo);
	font-size: 7em;
	opacity: .2;
	position: absolute;
	margin-left: -20px;
}

.alignleft {
	float: left;
	margin: 0 2rem 2rem 0;
}
.alignright {
	float: right;
	margin: 0 0 0 2rem;
}
.aligncenter {
	display: block;
	margin: auto;
}

.small-text {
	font-size: 12px;
}
.med-text {
	font-size: 22px;
	line-height: 30px;
}
.large-text {
	font-size: 28px;
	line-height: 38px;
}
.super-large-text {
	font-size: 36px;
	line-height: 46px;
}
.bomb-large-text {
	font-size: 50px;
	line-height: 60px;
}
.extra-large-text {
	font-size: 60px;
	line-height: 70px;
}

.text-shadow {
	text-shadow: 2px 2px 4px #555;
}

.color-default { color: var(--default); }
.color-primo { color: var(--primo); }
.color-secondo { color: var(--secondo); }
.color-terzo { color: var(--terzo); }
.color-quarto { color: var(--quarto); }
.black { color: #333; }
.white, .white a { color: #fff !important;}

.bg-default { background-color: var(--default); }
.bg-primo { background-color: var(--primo); }
.bg-secondo { background-color: var(--secondo); }
.bg-terzo { background-color: var(--terzo); }
.bg-quarto { background-color: var(--quarto); }
.bg-gray { background-color: #f0f0f0; }
.bg-white { background-color: #fff; }



/* Image Overlay
==================*/

.img-overlay {
	position: relative;
}
.img-overlay-none {
	position: absolute;
}
.img-overlay-full {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}
.img-overlay-center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.img-overlay-center-left {
	position: absolute;
	top: 50%;
	left: 0px;
	transform: translate(0%, -50%);
}
.img-overlay-center-right {
	position: absolute;
	top: 45%;
	right: 15%;
}
.img-overlay-top-center {
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	z-index: 2;
}
.img-overlay-top-left {
	position: absolute;
	top: 0px;
	left: 200px;
}
.img-overlay-top-right {
	position: absolute;
	top: 0px;
	right: 200px;
}

.img-overlay-bottom-left {
	position: absolute;
	bottom: 20px;
	left: 200px;
}
.img-overlay-bottom-right {
	position: absolute;
	bottom: 20px;
	right: 200px;
}

/* Buttons
==================*/

.btn {
	border: none;
	border-radius: 0;
	font-weight: 700;
	padding: 10px 15px;
	text-shadow: none;
	text-transform: uppercase;
	transition: 0.4s;
}
.btn-primo {
	background-color: var(--primo);
	color: #fff !important;
}
.btn-primo:hover, .btn-primo:active, .btn-primo:focus {
	background-color: var(--primo);
	color: #fff !important;
}
.btn-secondo {
	background-color: var(--secondo);
	color: #fff !important;
}
.btn-secondo:hover, .btn-secondo:active, .btn-secondo:focus {
	background-color: #415b93;
	color: #fff !important;
}
.btn-terzo {
	background-color: var(--terzo);
	color: #fff !important;
}
.btn-terzo:hover, .btn-terzo:active, .btn-terzo:focus {
	background-color: var(--terzo);
	color: #fff !important;
}
.btn-quarto {
	background-color: var(--quarto);
	color: #fff !important;
}
.btn-quarto:hover, .btn-quarto:active, .btn-quarto:focus {
	background-color: var(--quarto);
	color: #fff !important;
}

/* Model Section */

/* App Section  */

.app {
	background-color: #ffe383;
	padding-top: 25px;
}


/* Zip Input
==================*/

.zipinput {
	border: 1px solid #585858;
	box-shadow: none;
	color: #585858;
	max-width: 180px;
	padding: 6px 10px;
	outline: none;
	text-align: center;
}
.zipinput::placeholder {
	color: #585858;
}

/* DivTable
==================*/

.divTable{
	display: table;
	width: 100%;
}
.divTableRow {
	display: table-row;
}
.divTableHeading {
	background-color: #EEE;
	display: table-header-group;
}
.divTableCell, .divTableHead {
	border: 1px solid #999999;
	display: table-cell;
	padding: 3px 10px;
}
.divTableHeading {
	background-color: #EEE;
	display: table-header-group;
	font-weight: bold;
}
.divTableFoot {
	background-color: #EEE;
	display: table-footer-group;
	font-weight: bold;
}
.divTableBody {
	display: table-row-group;
}


/* Breadcrumbs
====================================*/

.breadcrumbs {
	color: #999;
	font-size: 14px;
}
.breadcrumbs a {
	color: #999999 !important;
	text-decoration: none;
}


/* Header
====================================*/

header a {
	text-decoration: none;
}
header .logo {
	display: block;
	margin: auto;
}


/* Content
====================================*/

.content a {
	color: #3366cc;
	font-weight: 700;
}
.content ul li {
	padding-left: 0.5rem;
}
.content ul li::marker {
	content: "\f7e4";
	color: var(--primo);
	font: var(--fa-font-solid);
}
.rounded-box {
	background-color: #f2f2f2; 
	padding: 20px; 
	border-radius: 10px;
	max-width: 100%;
	margin: 10px;
}
.rounded-box p {
	font-size: 16px;
	color: #333;
}

/* Footer
====================================*/

footer a {
	text-decoration: none;
}


/* Pagination
====================================*/

.pagination {
	margin: 3rem 0;
}
.page-numbers {
	border: 1px solid var(--secondo);
	padding: 5px 10px;
	text-decoration: none;
}


/* Post
====================================*/

.post {
	padding-bottom: 3rem;
}
.post h3 {
	margin: 1rem 0;
}
.post img {
	display: inline-block;
}


/* Responsive CSS
====================================*/

@media (max-width: 575px) {
	h1, .h1 {
		font-size: 32px;
		line-height: 42px;
	}
	h2, .h2 {
		font-size: 26px;
		line-height: 36px;
	}
	h3, .h3 {
		font-size: 22px;
		line-height: 30px;
	}
	.super-large-text {
		font-size: 36px;
		line-height: 46px;
	}
	.bomb-large-text {
		font-size: 40px;
		line-height: 50px;
	}
	.extra-large-text {
		font-size: 40px;
		line-height: 50px;
	}
}

@media (min-width: 576px) {
	.post img {
		float: right;
		margin-left: 1rem;
	}
}

@media (min-width: 768px) {
	.li-cols-2,
	.li-cols-3 {
		columns: 2;
		column-gap: 40px;
	}
}

@media (max-width: 991px) {
	.alignright, .alignleft {
		display: block;
		float: none;
		margin: 0 auto 1rem auto;
	}
}

@media (min-width: 1200px) {
	.li-cols-3 {
		columns: 3;
		column-gap: 40px;
	}
}


/* Custom Styles
====================================*/

.footer h4 {color:#00ade6;}
.padding-custom {
	padding: 20px; 
}
.bg-blue-gradient {
	background-image: url('images/banner-child-about-us.jpg');
	background-size:cover;
}
.bg-inner-banner {
	background-repeat: no-repeat;
	background-size: cover;
	height: 20px;
}
*[class^="bg-hero"] {
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 300px;
}
*[class^="bg-hero"] .btn {
	font-size: 24px;
	font-weight: 400;
	padding: 1rem 2rem;
	max-width: 100%;
}

.bg-hero-summer {
	background-image: url('images/hero-1-propane.jpg');
	background-position: center;
}
.bg-hero-winter {
	background-image: url('images/hero-1-propane-winter.jpg');
	background-position: center;
}
.bg-hero-2 {
	background-image: url('images/hero-2-heating-oil.jpg');
	background-position: left center;
}
.bg-hero-3 {
	background-image: url('images/hero-3-hvac-services.jpg');
	background-position: center;
}
.bg-hero-4 {
	background-image: url('images/hero-4-autogas.jpg');
	background-position: left center;
}
.bg-sky {
	background-image: url('images/bg-sky.jpg');
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.bg-wood {
	background-image: url('images/bg-wood.jpg');
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.bg-pavement {
	background-image: url('images/bg-pavement.jpg');
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.bg-service-area {
	background-image: url('images/bg-service-area.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.logo-banner {
	background: linear-gradient(to right, #024381 50%, #fff);
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.neg-top {
	margin-top: -100px;
	position: relative;
	z-index: -1;
}
.faq {
	background-color: #bfe5ee;
	padding: 15px 30px;
	text-align: center;
}
.card-header {
	background-color: #0099bb;
	color: #fff;
}
.card-title a {
	color: #fff;
}
.career-columns {
	column-count: 2;
	column-gap: 40px;
}
.btnwrap {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 10%;
	text-align: center;
}
.btnborder {
	position: relative;
}
.btnborder:before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: -9999px;
	border-top: 4px solid #fff;
	border-bottom: 4px solid #fff;
	padding-left: 99999px;
	padding-right: 99999px;
}
.btnborder:after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: -9999px;
	left: 0;
	border-left: 4px solid #fff;
	border-right: 4px solid #fff;
	padding-top: 99999px;
	padding-bottom: 99999px;
}
.btn-quinto {
	background-color: var(--quinto);
	color: var(--primo) !important;
}
.btn-quinto:hover, .btn-quinto:active, .btn-quinto:focus {
	background-color: var(--quinto);
	color: var(--primo) !important;
}

/* Our Team
==================*/

.team-member,
.team-img {
	position: relative;
	overflow: hidden;
}
.team-img img {
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	overflow: hidden;
	width: 100%;
}
.overlay {
	background-color: rgba(20,20,20,.7);
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.team-details {
	opacity: 0;
	position: absolute;
	top: 25%;
	left: 0;
	padding: 5%;
	overflow: hidden;
	width: 100%;
	z-index: 2;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	font-size: 10px;
	line-height: 18px;
}
.team-details p {
	color: #fff;
}
.team-img:hover .team-details {
	opacity: 1;
	margin-top: -80px;
}
.team-img:hover .overlay {
	opacity: 1;
}
.team-title {
	margin: 20px 0 8px;
}


/* Service Plan
==================*/

.SP-header {
	color: #fff;
	font-size: 24px;
	padding: 1rem 1.5rem;
}
.SP-elite {
	background: #5790c7;
}
.SP-premier {
	background: #01539f;
}
.SP-economy {
	background: #3cb3f3;
}
.SP-header span {
	font-weight: 700;
	font-size: 32px;
	line-height: 38px;
}
.accordion .card {
	border-bottom: 1px solid #999;
	border-right: 1px solid #999;
	border-left: 1px solid #999;
	border-radius: 0;
}
.accordion .card .card-header {
	background: #f0f0f0;
	padding: 1rem 1.5rem;
}
.accordion .card h5 {
	color: #000;
	font-size: 1rem;
	font-weight: 700;
}
.accordion .card-body {
	border-top: 1px solid #999;
	padding: 1rem 1.5rem;
}
.accordion ul {
	padding-left: 20px;
}
.accordion li {
	line-height: 20px;
	margin-bottom: 5px;
}
.accordion .fa {
	color: #000;
	float: right;
}
.accordion .collapsed .fa-caret-down {
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
}
.accordion .btn-warning {
	box-shadow: none;
	margin: 10px 0;
}
ul.prices {
	padding: 0;
}
ul.prices li {
	border-top: 2px solid #000;
	clear: both;
	line-height: 20px;
	list-style: none;
	margin: 0;
}
ul.prices li:first-child {
	border: none;
}
ul.prices li::marker {
	content: '' !important;
}
ul.prices li div {
	display: table-cell;
	padding: 5px 0;
	width: 100%;
	vertical-align: middle;
}


/* Custom Styles Responsive CSS
====================================*/

@media (hover:none) {
	.bg-sky,
	.bg-wood,
	.bg-pavement {
		background-attachment: scroll;
	}
}
@media (min-width: 768px) {
	*[class^="bg-hero"] {
		min-height: 660px;
	}
	*[class^="bg-hero"] .btn {
		font-size: 40px;
		padding: 2rem;
		width: 450px;
	}
	.btnwrap {
		left: auto;
		right: 15%;
		bottom: 15%;
	}
}

@media (min-width: 1200px) {
	.logo-banner {
		justify-content: normal;
	}
	.header-phone {
		position: absolute;
		top: -30px;
		font-size: 26px;
	}
}

@media (min-width: 992px) {
	.app-phone {
		background-image: url(images/app.png);
		background-position:top right;
		background-repeat: no-repeat;
	}
})