/*
Theme Name: WP5 Default
Theme URI: 
Author: The Development team
Author URI: https://wordpress.org/
Description: A theme for WordPress 5.
Requires at least: WordPress 4.9.6
Version: 1.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: wp5default
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

WP5 Default is based on Underscores https://underscores.me/, (C) 2012-2018 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	box-sizing: border-box;
}

*,
::before,
::after {
	box-sizing: inherit;
}

body,html{
	width:100%;
}

body {
	font-family: 'Poppins', sans-serif;
	margin: 0 auto;
	width: 100%;
	min-width: 320px;
}

/* .container,
.entry-content > .wp-block-group div[class*="inner-container"] {
	width: 95%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0;
} */
.icon{display: flex; justify-content: space-between;}

@media screen and (max-width: 768px) {
	html {
		/* 60px height WP Responsive Menu */
		padding-top: 60px !important;
	}
}

/*
 * ================================
 * Layouts and Guttenberg Overrides
 * ================================
 */

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
	/* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.wp-block-column,
.blocks-gallery-item {
	margin: 0 !important;
}

.has-1-columns .wp-block-column {
	flex-basis: 100%;
}

.wp-block-gallery.is-cropped .blocks-gallery-item img {
	height: auto;
	width: auto;
	object-fit: contain;
}

.wp-block-image,
.wp-block-image figure {
	margin: 0;
}

img {
	display: block;
	transition: all .5s ease;
	object-fit: cover;
	-o-object-fit: cover;
	object-position: center;
	-o-object-position: center;
	height: auto;
}

/*
 * ====================
 * Typography
 * ====================
 */

@font-face {
	font-family: 'Handel Gothic';
	src: url(assets/fonts/Handel-Gothic.ttf) format("truetype"),
		 url(assets/fonts/Handel-Gothic.woff) format("woff"),
		 url(assets/fonts/Handel-Gothic.woff2) format("woff2");
	font-weight: normal;
}

a,
a:visited {
	text-decoration: none;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	text-decoration: none !important;
}

a:hover {}

a:focus {
	outline: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Handel Gothic', sans-serif;
	margin: 1rem 0;
	font-weight: 400;
}

h1 {
	font-size: 65px;
}

h2 {
	/* font-family: '', sans-serif; */
	color: #ED1F24;
	font-size: 60px;
}

h3 {
	/* font-family: '', sans-serif; */
	font-size: 40px;
}

h4 {
	font-size: 20px;
	letter-spacing: 3px;
}

p,
ul,
ol {
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	line-height: 1.2;
	/* color: ; */
}

dl,
dd {
	margin: 0;
}

.lead {
	font-size: 20px;
}

@media screen and (max-width: 768px) {
	h1 {
		font-size: 45px;
	}
	
	h2 {
		font-size: 40px;
	}
	
	h3 {
		font-size: 20px;
	}
	
	h4 {
		font-size: 18px;
	}
}

/*
 * ====================
 * Buttons
 * ====================
 */

.button {
	display: inline-block;
	position: relative;
	z-index: 1;
	overflow: hidden;
	padding: 15px;
	background: #ED1F24;
	color: #FFF;
	font-family: 'Handel Gothic', sans-serif;
	font-size: 15px;
	text-transform: uppercase;
	text-align: center;
	letter-spacing: 2px;
	border: 0;
	min-width: 200px;
}

.button-outline-white {
	background: none;
	border: 1px solid #FFF;
}

.button:hover {
	/* color: ; */
}

.button:after {
	content: "";
	background: #1F1F1F;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	transition: all .5s ease;
	transform: translateX(101%);
	z-index: -1;
}

.button:hover:after {
	transform: translateX(0%);
}
p.has-text-align-center.contact-btn a {
        border: 1px solid #fff !important;
        padding: 10px 20px;
        color: #FFF !important;
}

@media screen and (max-width: 600px) {
	.button {
		display: block;
		width: 100%;
	}
}

/*
 * ====================
 * Flexbox Classes
 * ====================
 */

.dflex {
	display: flex;
	display: -webkit-flex;
}

.sb-flex {
	justify-content: space-between;
	-webkit-justify-content: space-between;
}

.sa-flex {
	justify-content: space-around;
	-webkit-justify-content: space-around;
}

.cn-flex {
	justify-content: center;
	-webkit-justify-content: center;
}

.fe-flex {
	justify-content: flex-end;
	-webkit-justify-content: flex-end;
}

.align-start {
	align-items: flex-start;
	-webkit-align-items: flex-start;
}

.align-end {
	align-items: flex-end;
	-webkit-align-items: flex-end;
}

.align-center {
	align-items: center;
	-webkit-align-items: center;
}

/*
 * ====================
 * Forms 
 * ====================
 */

form p {
	margin: 0 0 10px !important;
	width: 100%;
}

form i,
form .hide {
	display: block;
	width: .1px;
	height: .1px;
	overflow: hidden;
}

form label {
	display: block;
	width: 100%;
}

form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
form textarea,
form select {
	font-family: inherit;
	/* font-size: ; */
	display: block;
	width: 100%;
	padding: 15px;
	border: 1px solid #EEE;
	margin: 10px 0;
}

form textarea {
	resize: none;
}

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

form .wrap label {
	flex-basis: 32%;
}

form input[type="submit"],
form button[type="submit"] {
	margin-top: 30px
}

/* Contact Form 7 error messages */
form label>span.wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

form.wpcf7-form span.wpcf7-not-valid-tip {
	position: absolute;
	right: 10px;
	bottom: 10px;
	font-size: 14px;
}

.contact-form-page {
        border: 10px solid #b20000;
        padding: 50px;
        background-color: #000000;
}

@media screen and (max-width: 550px) {
	form .wrap label {
		flex-basis: 100%;
	}
	.contact-form-page{
        padding: 20px !important;
	}
}

/* Home Form */

.home-form textarea {
	height: 120px;
}

/* Contact Us Form */
.contact-form {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

/*
 * ====================
 * Menus
 * ====================
 */

/* Main Menu */
.main-navigation {}

.main-navigation ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.main-navigation ul li {}

.main-navigation ul li a {
	font-family: 'Handel Gothic', sans-serif;
	text-transform: uppercase;
	color: #1F1F1F;
	letter-spacing: 2px;
}

.main-navigation ul li a:hover,
.main-navigation .current-menu-item a,
.main-navigation .current_page_item a {
	color: #ED1F24;
}

/* Sub Menu */

.main-navigation ul>li>ul.sub-menu {
	display: block;
	position: absolute;
	background: #fff;
	margin-top: 50px;
	transition: all .4s linear;
	visibility: hidden;
	opacity: 0;
	width: 100%;
	max-width: 300px;
	box-sizing: border-box;
	z-index: 999;
	padding-top:10px;
}

.main-navigation ul>li:hover>ul.sub-menu {
	visibility: visible;
	opacity: 1;
	margin-top: 0;
}

.main-navigation ul>li>ul.sub-menu>li {
	display: block;
	margin-right: 0;
}

.main-navigation ul>li>ul.sub-menu>li>a {
	padding: 5px 10px;
	display: block;
	box-sizing: border-box;
	text-transform: capitalize;
}

.main-navigation ul>li>ul.sub-menu>li>a::before,
.main-navigation ul>li>ul.sub-menu>li>a::after {
	display: none;
}

.main-navigation ul>li>ul.sub-menu>li>a:hover {
	background: inherit;
}

.sub-menu li a{
	color:#1f1f1f !important;
}

.sub-menu li a:hover{
	color: #ED1F24 !important;
}

/* Sub Sub Menu */

.main-navigation ul>li>ul.sub-menu>li>ul.sub-menu {
	position: absolute;
	margin-left: 240px;
	margin-top: -48px !important;
	visibility: hidden !important;
	opacity: 0 !important;
}

.main-navigation ul>li>ul.sub-menu>li:hover>ul.sub-menu {
	margin-left: 200px;
	visibility: visible !important;
	opacity: 1 !important;
}

/* WP Responsive Menu Custom Styles */
@media screen and (max-width: 768px) {
	#wprmenu_bar {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	#wprmenu_bar .menu_title {
		width: 200px;
		top: 0 !important;
		line-height: 1 !important;
	}

	#wprmenu_bar .menu_title a {
		top: 0 !important;
		line-height: 1 !important;
	}

	#wprmenu_bar .menu_title img {
		width: 100%;
		max-width: 75px;
		height: auto;
	}
}

/* Footer Menu */
.footer-navigation {}

.footer-navigation ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: block;
	justify-content: space-between;
	align-items: center;
}

.footer-navigation ul li {}

.footer-navigation ul li a {
	color: #1F1F1F;
}

.footer-navigation ul li a:hover,
.footer-navigation .current-menu-item a,
.footer-navigation .current_page_item a {
	color: #555;
}

/* Social Menu */
.social-navigation {}

.social-navigation ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: block;
}

.social-navigation ul li {
	display: inline-block;
	margin-right: 10px;
}

.social-navigation ul li a {
	pointer-events: none;
}

.social-navigation ul li a svg {
	fill: #FFF;
}


/*
 * ====================
 * Header-Menu
 * ====================
 */
.dropbtn {
  background-color: rgb(0 0 0 / 0%);
  border: none;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fbfbfb;
    border-radius: 10px;
    min-width: 340px;
    box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);
    z-index: 199;
    margin: -25px 0 0 0;
}

.dropdown-content a {
  color: #c83933;
        padding: 12px 16px;
        list-style: none;
        display: block;
        font-size: 18px;
        font-weight: 500;
        line-height: 1;
}

.dropdown-content .menu-primary-menu-container ul {
        list-style: none;
}

.dropdown-content a:hover {background-color: #ddd;}

.dropdown:hover .dropdown-content {display: block;}

.dropdown:hover .dropbtn {background-color: rgb(0 0 0 / 0%);}

li#menu-item-21 ul .sub-menu{
	display: none;
}
li#menu-item-21 ul .sub-menu:hover .sub-menu li{display: block;}

@media screen and (max-width: 1024px) {
.dropdown {
/*         margin: -160px 460px 0 !important; */
	margin: -147px 390px !important;
	}
	.main-banner button.dropbtn {
        align-items: flex-end !important;
}
}
@media screen and (max-width: 800px) {
.dropdown {
        display: none;
	}
}
/*
 * ====================
 * Header-Menu-end
 * ====================
 */


/*
 * ====================
 * Header
 * ====================
 */

.site-header {}

/* .site-header .container {
	max-width: 1550px;
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
} */

.site-header .custom-logo {
	display: block;
	width: auto;
	height: auto;
	/* max-width: ; */
}

.site-header .main-navigation {
	flex-basis: 50%;
}

.site-header .header-phone {
	background: #ED1F24;
	padding: 22px;
	transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
}

.site-header .header-phone:hover {
	background: #ae171a;
}

.site-header .header-phone::before {
	content: url(assets/images/phone.png);
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
}

.site-header .header-phone a {
	color: #FFF;
	font-family: 'Handel Gothic';
	font-size: 25px;
}

@media screen and (max-width: 1200px) {
	.site-header .main-navigation {
		flex-basis: 60%;
	}
	
	.site-header .header-phone a {
		font-size: 18px;
	}
	.inner #content .site-main {
        min-height: 500px;
        padding: 40px 5px !important;
        width: 100% !important;
        margin: auto;
}
}

@media screen and (max-width: 990px) {
	.site-header .container {
		flex-wrap: wrap;
	}

	.site-header .main-navigation {
		flex-basis: 100%;
		order: 1;
		margin-top: 20px;
	}

	.site-header .main-navigation ul {
		justify-content: space-around;
	}
}

/*
 * ====================
 * Banner
 * ====================
 */

.site-banner {}

.site-banner .banner-image {
	display: block;
	width: 100%;
}

.main-banner button.dropbtn {
        color: #C83933;
        font-size: 45px;
        display: flex;
        align-items: center;
        font-family: 'Montserrat';
}

/*
 * ====================
 * Content
 * ====================
 */

.wp-block-columns {
	justify-content: space-between;
	margin: 0;
}

/* Home Page > Section 1 */
.section1 {
	padding: 80px 0;
}

.section1 .wwd-wrapper {
	margin-top: 80px;
}

.section1 .wwd-wrapper .wwd {
	padding: 60px 40px;
	border: 1px solid #D6D6D6;
}

.section1 .wwd-wrapper .wwd-logo figure {
	width: 70px;
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 30px; 
}

@media screen and (max-width: 1200px) {
	.section1 {
		padding: 20px 0;
	}
}

@media screen and (max-width: 768px) {
	.section1 .wwd-wrapper {
		margin-top: 20px;
	}

	.section1 .wwd-wrapper .wwd {
		flex-basis: 100% !important;
		margin: 10px 0 !important;
	}
}

/* Home Page > Section 2 */
.section2 {
	background: url(assets/images/24_7_bg.jpg) center no-repeat;
	background-size: cover;
	background-attachment: fixed;
	padding: 65px 0;
	color: #FFF;
}

.section2 h2 {
	color: #FFF;
}

@media screen and (max-width: 1200px) {
	.section2 {
		padding: 40px 0;
	}
}

/* Home Page > Section 3 */
.section3 {
	position: relative;
	padding: 120px 0;
}

.section3 .about-image img {
	position: absolute;
	top: 0;
	right: 0;
	width: 38%;
	height: 100%;
}

.section3 .about-text h3 {
	color: #ED1F24;
	margin: 50px 0;
}

.section3 .about-text p {
	line-height: 1.8;
}

.section3 .about-text .wcu::before {
	display: inline-flex;
	vertical-align: middle;
	justify-content: center;
	align-items: center;
	width: 70px;
	height: 70px;
	margin-right: 20px;
	background: #ED1F24;
	line-height: 1;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.section3 .about-text .wcu-1,
.section3 .about-text .wcu-2,
.section3 .about-text .wcu-3 {
	margin-bottom: 20px;
}

.section3 .about-text .wcu-1::before {
	content: url(assets/images/wcu_1.png);
}

.section3 .about-text .wcu-2::before {
	content: url(assets/images/wcu_2.png);
}

.section3 .about-text .wcu-3::before {
	content: url(assets/images/wcu_3.png);
}

@media screen and (max-width: 1200px) {
	.section3 {
		padding: 40px 0;
	}
}

@media screen and (max-width: 1024px) {
	.section3 .about-image img {
		position: relative;
		width: unset;
	}
}

@media screen and (max-width: 768px) {
	.section3 .about-text,
	.section3 .about-image {
		flex-basis: 100% !important;
	}
}

@media screen and (max-width: 600px) {
	.section3 .about-text {
		text-align: center;
	}

	.section3 .about-text .wcu::before {
		display: flex;
		margin: 0 auto;
	}

	.section3 .about-text .wcu strong {
		display: block;
	}
}

/* Home Page > Section 4 */
.section4 {
	color: #FFFF;
}

.section4.wp-block-group > div[class*="inner-container"] {
	max-width: 100%;
	width: 100%;
}

.section4 .section-image > * {
	height: 100%;
}

.section4 .section-image img {
	height: 100%;
}

.section4 .service-1 {
	padding-right: 10px;
}

.section4 .service-2 {
	padding-left: 10px;
}

.section4 .section-text {
	padding: 85px;
	background: #282828;
}

.section4 .section-text ul {
	columns: 2;
	list-style-image: url(assets/images/list-check.png);
}

.section4 .section-text ul li {
	padding: 17px 10px;
}

@media screen and (max-width: 1200px) {
	.section4 .section-text {
		padding: 40px;
	}
}

@media screen and (max-width: 1024px) {
	.section4 .service-1 {
		padding-right: 0;
	}

	.section4 .service-2 {
		padding-left: 0;
	}
}

@media screen and (max-width: 768px) {
	.section4 .section-image,
	.section4 .section-text {
		flex-basis: 100% !important;
	}
}

@media screen and (max-width: 600px) {
	.section4 .section-text ul {
		columns: 1;
	}
}

/* Home Page > Section 5 */
.section5 {
	padding: 50px 0;
}

.section5 .contact-wrapper {
	margin-top: 100px;
}

.section5 .contact-address,
.section5 .contact-phone,
.section5 .contact-email {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 70px;
}

.section5 .contact-address > div[class*="inner-container"],
.section5 .contact-phone > div[class*="inner-container"],
.section5 .contact-email > div[class*="inner-container"] {
	margin: 0 0 0 20px;
	width: unset;
}

.section5 .contact-address .label,
.section5 .contact-phone .label,
.section5 .contact-email .label {
	font-family: 'Handel Gothic', sans-serif;
	margin: 0;
}

.section5 .contact-address p,
.section5 .contact-phone a,
.section5 .contact-email a {
	margin: 0;
	color: #1F1F1F;
}

.section5 .contact-phone a {
	font-size: 25px;
}

.section5 .contact-address::before {
	content: url(assets/images/location.png);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 70px !important;
    height: 70px !important;
    background: #ED1F24;
    line-height: 1;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.section5 .contact-phone::before {
	content: url(assets/images/phone.png);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 70px !important;
    height: 70px !important;
    background: #ED1F24;
    line-height: 1;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.section5 .contact-email::before {
	content: url(assets/images/email.png);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 70px !important;
    height: 70px !important;
    background: #ED1F24;
    line-height: 1;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

@media screen and (max-width: 768px) {
	.section5 .contact-wrapper {
		margin-top: 20px;
	}
	.section5 .contact-wrapper .wp-block-column {
		flex-basis: 100% !important;
	}
}

@media screen and (max-width: 600px) {
	.section5 .contact-address,
	.section5 .contact-phone,
	.section5 .contact-email {
		justify-content: center;
		flex-wrap: wrap;
		text-align: center;
		margin-bottom: 20px;
	}

	.section5 .contact-address > div[class*="inner-container"], 
	.section5 .contact-phone > div[class*="inner-container"], 
	.section5 .contact-email > div[class*="inner-container"] {
		flex-basis: 100%;
		margin: 10px 0 0;
	}
}

/* Home Page > Section 6 */
.section6.wp-block-group > div[class*="inner-container"] {
	max-width: 100%;
	width: 100%;
}

.section6 figure {
	margin: 10px 5px;
}

.section6 figure img {
	height: 100%;
}

.section6 .image-before,
.section6 .image-after {
	position: relative;
}

.section6 .image-before figure {
	margin-left: 0;
}

.section6 .image-after figure {
	margin-right: 0;
}

.section6 .image-before figcaption,
.section6 .image-after figcaption {
	position: absolute;
	top: 50%;
	left: 50%;
	color: #FFF;
	font-family: 'Handel Gothic', sans-serif;
	font-size: 24px;
	letter-spacing: 3px;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}

.junk-removal {
	background-repeat: no-repeat;
	background-size: cover !important;
}
@media screen and (max-width: 768px) {
	.section6 .wp-block-column {
		flex-basis: 100% !important;
	}

	.section6 figure {
		margin: 0;
	}
}

/*
 * ====================
 * Footer
 * ====================
 */

.site-footer {}

.site-footer .site-info {
	background: #282828;
	padding: 30px 0;
	text-align: center;
}

.site-footer .site-info .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1550px;
}

.site-footer .site-info p,
.site-footer .site-info a {
	color: #FFF;
	margin: 5px 0;
}

.site-footer .site-info .copyright .techno img {
	display: inline-block;
	vertical-align: middle;
	max-width: 50px;
	margin-right: 10px;
}


@media screen and (max-width: 768px) {
	.site-footer .site-info .container {
		flex-wrap: wrap;
	}

	.site-footer .site-info .footer-logo {
		flex-basis: 100%;
	}

	.site-footer .site-info .footer-logo img {
		margin: 0 auto;
	}

	.site-footer .site-info .copyright {
		flex-basis: 100%;
	}

	.site-footer .site-info .social-navigation {
		flex-basis: 100%;
	}
}

/*
 * ====================
 * Inner Pages
 * ====================
 */
.inner #content{
	background-color: #222 !important;
        color: #FFF !important;
}

.inner #content .site-main {
	min-height: 500px;
	padding: 40px 0;
	width: 1400px;
	margin: auto;
}

.inner #content h1 {
	margin-bottom: 40px;
	text-align: center;
	color: #ED1F24;
}

.inner #content p, ul{
	line-height:30px;
}

.inner #content ul li a{
/* 	color:#1f1f1f; */
	color: #FFF;
}

.inner #content p a{
	color:#1f1f1f;
	font-weight:bold;
}

.inner #content p a:hover{
	color:#ED1F24;
}

.inner #content ul li a:hover{
	color:#ED1F24;
}

.page-id-483 #content {
	padding: 0;
}

.page-id-483.inner #content .site-main {
	max-width: 100%;
	padding: 0;
	width: 100%;
}

.average .container {
	max-width: 1327px;
	margin: auto;
}

.average .container h2 {
	font-size: 50px;
	line-height: 130%;
	font-weight: 800;
	color: #C63933;
	font-family: "Poppins", sans-serif;
}

.average .container p {
	font-size: 21px;
	font-weight: 300;
	line-height: 180%;
	letter-spacing: 0.03em;
	font-family: "Poppins", sans-serif;
}

.page-id-483 .cost {
	background-repeat: no-repeat !important;
	background-position: top center !important;
}

.page-id-483 .cost .container {
	max-width: 1522px;
	margin: auto;
}

.pricing {
	max-width: 1720px;
	margin: auto;
}

.pricing h2 {
	color: #fff;
	font-weight: 600;
	font-size: 40px;
	line-height: 130%;
	font-family: "Poppins", sans-serif;
}

.truck .container {
	max-width: 1520px;
	margin: auto;
}

.truck .container h3 {
	font-size: 26px;
	color: #fff;
	line-height: 120%;
	letter-spacing: 0.065em;
	padding-bottom: 23px;
	font-weight: 900;
	margin: 0;
	font-family: "Poppins", sans-serif;
}

.truck .container  ul  {
	margin: 0;
	padding-left: 25px;
}

.truck .container  ul li {
	font-size: 21px;
	font-weight: normal;
	line-height: 120%;
	color: #fff;
	padding-bottom: 10px;
	font-family: "Poppins", sans-serif;
}

.removal {
	max-width: 1327px;
	margin: auto;
}

.removal h2 {
	font-size: 50px;
	color: #C63933;
	line-height: 130%;
	padding-bottom: 26px;
	font-family: "Poppins", sans-serif;
}

.volume.container {
	max-width: 1520px;
	margin: auto;
}

.fixr {
	text-align: center;
}

.fixr .container {
	max-width: 1313px;
	margin: auto;
}

.fixr h3 {
	font-size: 24px;
	font-weight: 300;
	line-height: 120%;
	color: #fff;
	position: relative;
	font-family: "Poppins", sans-serif;
	padding: 25px 0 15px;
}

.fixr h4 {
	font-size: 24px;
	color: #fff;
	font-weight: 700;
	font-family: "Poppins", sans-serif;
}

.fixr h3::after {
	content: "";
	position: absolute;
	background: #fff;
	width: 29px;
	height: 2px;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

.page-id-483 .schedule {
	max-width: 1521px;
	margin: -125px auto 0;
}

.page-id-483 .schedule h3 {
	margin: 0 0 45px!important;
	font-size: 40px !important;
	font-weight: 300 !important;
	color: #C73933 !important;
	line-height: 120% !important;
	padding-bottom: 21px !important;
	position: relative !important;
	font-family: "Poppins", sans-serif !important;
}

.page-id-483 .schedule h3::after {
	content: "";
	width: 43px;
	height: 4px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto !important;
	background: #C73933 !important;
}

.page-id-483 .schedule p {
	font-size: 21px;
	font-weight: 400;
	line-height: 160%;
	letter-spacing: 0.065em;
	max-width: 1319px;
	margin: auto;
	padding-bottom: 42px;
	font-family: "Poppins", sans-serif;
}

.page-id-483 .schedule a {
	font-size: 21px;
	font-weight: 600;
	line-height: 120%;
	letter-spacing: 0.1em;
	width: 100%;
	max-width: 520px;
	height: 71px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Poppins", sans-serif;
	background: #C73933 !important;
	margin: auto;
	color: #fff;
}
/* Gallery Page */
/* Photo Gallery Pop-up (Light Theme) */
.spider_popup_wrap {
	background: rgba(255, 255, 255, 0.8) !important;
}


/*
 * ====================
 * Blog Page
 * ====================
 */

.blog-container {
	padding-right: 5%;
	flex-basis: 65%;
}

.blog-list article {
	padding: 20px;
	box-sizing: border-box;
	border: 1px solid #535353;
	transition: all .3s linear;
}

.blog-list article:not(:last-of-type) {
	margin-bottom: 40px;
}

.blog-list article:hover {
	box-shadow: 0px 0px 20px #1F1F1F;
}

.blog-title h2 a {
	font-size: 30px;
	margin: 0 0 20px;
	color: #111;
}

.blog-header {
	margin-bottom: 10px;
	align-items: flex-end;
	-webkit-align-items: flex-end;
}

.blog-header p {
	margin: 0;
	font-size: 18px;
}

.blog-header p span {
	font-style: italic;
}

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

.blog-image img {
	transition: all .5s linear;
	max-width: 500px !important;
	height: auto !important;
}

.blog-container .button {
	padding: 10px 20px;
	font-size: 13px;
	margin-top: 10px;
}

.pagination-n {
	text-align: right;
	margin-top: 15px;
}

.pagination-n a {
	padding: 2px 10px;
	background: #0F3A6F;
	color: #FFF;
}

.pagination-n .current {
	padding: 2px 10px;
	background: #6A7A64;
	color: #FFF;
}

@media screen and (max-width: 800px) {
	.blog-wrap {
		flex-direction: column;
		-webkit-flex-direction: column;
	}

	.blog-container {
		margin-bottom: 30px;
		padding-right: 0;
		text-align: center;
	}
}

@media screen and (max-width: 500px) {
	.blog-header {
		flex-direction: column;
		-webkit-flex-direction: column;
	}

	.blog-header p,
	.blog-header h2 {
		width: 100%;
		text-align: center;
	}

	.blog-list article {
		text-align: center;
	}

	.blog-header h2 {
		font-size: 30px;
	}

	.blog-container .button {
		margin-top: 20px;
	}
}

/*
 * ==========================
 * Search and Error Page Form
 * ==========================
 */

.sidebar form,
.error-404 form {
	position: relative;
	max-width: 700px;
	margin: 10px auto;
}

.sidebar input[type="search"],
.error-404 input[type="search"] {
	width: 100%;
	padding: 5px 10px;
}

.sidebar input[type="submit"],
.error-404 input[type="submit"] {
	background: linear-gradient(to bottom, #FFF, #ccc);
	border: 1px solid #1F1F1F;
	position: absolute;
	padding: 6px;
	right: 0;
	top: 0;
}

.sidebar .widget:not(:nth-of-type(1)) {
	background: rgba(255, 255, 255, .5);
	border-bottom: 1px solid #CCC;
	padding-bottom: 20px;
	margin-bottom: 20px;
	padding: 10px 20px;
}

.sidebar input[type="submit"],
.error-404 input[type="submit"] {
	transition: all .4s linear;
}

.sidebar input[type="submit"]:hover,
.error-404 input[type="submit"]:hover {
	box-shadow: 0px 0px 20px #1F1F1F;
}

/*
 * ====================
 * Search Page
 * ====================
 */
.page-description {
	text-align: center;
	font-size: 25px;
	font-weight: 700;
	margin-bottom: 40px;
	display: block;
}

.page-description::after {
	content: ' "';
}

.page-description::before {
	content: '" ';
}

.search article {
	padding: 20px;
	border: 1px solid #1F1F1F;
	margin-bottom: 30px;
	display: block;
	transition: all .5s linear;
}

.search article:hover {
	box-shadow: 0px 0px 20px #1F1F1F;
}

.search article:last-of-type {
	margin-bottom: 0;
}

.search article h2 a {
	margin: 0 0 20px;
	font-size: 35px;
	color: #111;
}

.search-con {
	padding-right: 5%;
	flex-basis: 65%;
}

@media screen and (max-width: 800px) {
	.search-wrap {
		flex-direction: column;
		-webkit-flex-direction: column;
	}

	.search-con {
		margin-bottom: 30px;
		padding-right: 0;
		text-align: center;
	}
}

/*
 * ====================
 * Error Page
 * ====================
 */

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

.cta {
	display: none;
}

@media screen and (max-width: 850px) {
	.cta {
		background: #ED1F24 url(assets/images/phonecall.png) no-repeat center center;
		border-top-left-radius: 40px;
		border-bottom-left-radius: 40px;
		bottom: 10px;
		display: block;
		height: 80px;
		position: fixed;
		right: 0;
		text-decoration: none;
		text-indent: -9999em;
		width: 100px;
		z-index: 999;
	}

	.grecaptcha-badge {
		bottom: 95px !important;
	}
}

/******* HOME V2 ********/
@font-face {
  font-family: Aero;
  src: url(assets/fonts/Aero.ttf);
}
@font-face {
  font-family: Badgrunge;
  src: url(assets/fonts/BADGRUNGE.ttf);
}
@font-face {
  font-family: Eurostile;
  src: url(assets/fonts/eurostile-bold.ttf);
}

/* .page-id-396 .site-banner,.page-id-396 #masthead,.page-id-396 .site-footer{
	display: none !important;
} */


.page-id-396 p {
	line-height: 200%;
}

h1, h2{
	font-family: Badgrunge;
	text-align: center;
}
h1{
	color:white;
}
h2{color: #C73933;}

.checked{
	color: yellow;
}
a.btn {
    font-size: 18px;
    color: white !important;
    font-family: 'Poppins';
    letter-spacing: 2px;
    background: linear-gradient(173deg, rgba(205,50,50,1) 0%, rgb(151 25 25) 0%, rgb(255 0 0) 100%);
    width: 100% !important;
    max-width: 400px;
    display: block;
    font-weight: 200 !important;
    text-align: center;
    padding: 25px;
    border-radius: 20px;
    margin: 80px 0 0 0;
}
.flex {
    display: flex;
    justify-content: space-between;
}
#header{
    background: url(https://www.totaljunkandbulkdisposal.com/wp-content/uploads/2022/09/banner.fw_.png) no-repeat;
    background-size: cover;
}
#header h1 {
    color: white !important;
    font-family: Badgrunge;
    font-size: 160px;
    text-align: left !important;
    line-height: 70%;
    text-shadow: 8px 8px 8px #000000;
	letter-spacing: 2px;
}
#header .left {
    max-width: 1200px;
}
#header .right {
    margin-top: -130px;
}
#header .top {
    max-width: 1700px;
    margin: 190px auto 0 auto;
}
#header .middle {
    max-width: 1000px;
    margin: -100px 220px 0 auto;
}
#header .bottom h2 {
    font-size: 130px;
    text-align: right !important;
    max-width: 500px;
    line-height: 70%;
}
#header .bottom a span {
    color: #C73933;
    font-size: 80px;
    font-family: 'Badgrunge';
    margin: 0 20px;
}

#header .bottom a {
    color: white;
    font-size: 30px;
    font-family: Montserrat;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}
#header .bottom {
    width: 100%;
    max-width: 1800px;
    margin: 0 0 20px auto;
}
#first-section .flex p {
	max-width: 750px;
    font-size: 18px;
}
#first-section .flex {
    align-items: center;
}
#first-section h2 {
    font-size: 100px;
}
#first-section .left {
    max-width: 820px;
    margin-left: 10%;
}
#first-section .right {
    max-width: 700px;
}
#first-section .flex .flex {
    max-width: 300px;
    align-items: center;
}
#first-section .btn {
    max-width: 300px;
	margin-top: 20px;
}

#second-section h1 {
    font-size: 150px;
}
#second-section p {
    font-size: 20px;
    font-family: 'Poppins';
    font-weight: 900;
    letter-spacing: 1px;
}

#second-section h1 {
    color: white !important;
}
#second-section {
    background: url(https://www.totaljunkandbulkdisposal.com/wp-content/uploads/2022/09/Untitled-8.fw_.png) no-repeat;
    color: white;
    text-align: center;
	line-height: 600%;
	background-size:cover;
	padding: 90px 0;
	z-index: 2;
    position: relative;
}

#second-section a.btn {
    margin: 30px auto;
    font-family: 'Montserrat';
    font-weight: 600 !important;
    background: linear-gradient(173deg, rgb(0 0 0) 0%, rgb(16 16 16) 0%, rgb(0 0 0) 100%);
}
#third-section .services p {
    font-size: 20px;
    color: #3F3E38;
    font-weight: 900;
    font-family: 'Poppins';
    line-height: 130%;
}

#third-section .services h2 {
    font-size: 100px;
	text-align: left;
}
#third-section .services {
    max-width: 900px;
    margin: 0 0 0 auto;
}
#third-section {
    background: url(https://www.totaljunkandbulkdisposal.com/wp-content/uploads/2022/09/JUNK-REMOVAL.fw_.png) no-repeat;
    background-size: cover;
	margin-top: -120px;
	padding: 100px 0;
}
#pg-gb396-6316b80068e4a-0, #pg-gb396-6316b80068e4a-1, #pg-gb396-6316b80068e4a-2, #pl-gb396-6316b80068e4a .so-panel,#pg-gb396-6316c10b548e2-0, #pg-gb396-6316c10b548e2-1, #pg-gb396-6316c10b548e2-2, #pg-gb396-6316c10b548e2-3, #pl-gb396-6316c10b548e2 .so-panel {
    margin-bottom: 0 !important;
}
#pg-gb396-6316c4fe37bd7-3{margin:0 !important}
#third-section ul {
    column-count: 2;
    list-style-image: url(https://www.totaljunkandbulkdisposal.com/wp-content/uploads/2022/09/Untitled-25.fw_.png);
}

#third-section ul li {
    font-size: 20;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 20px;
}
#third-section .flex {
    max-width: 520px;
}

#third-section a.btn {
    margin: 0;
    max-width: 250px;
}
#third-section .flex .black {
    background: linear-gradient(173deg, rgb(0 0 0) 0%, rgb(16 16 16) 0%, rgb(0 0 0) 100%);
}

#fourth-section {
    background: url(https://www.totaljunkandbulkdisposal.com/wp-content/uploads/2022/09/Untitled-14.fw_.png) no-repeat !important;
    background-size: cover !important;
	padding: 20px 6%;
}

#fourth-section .simpleParallax {
	display: none;
}

#fourth-section h2 {
    text-align: center;
    font-size: 100px;
}

#fourth-section p {
    color: white;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
	font-family: "Poppins", sans-serif;
}

#fourth-section h3 {
    max-width: 460px;
    font-size: 70px;
    color: #FFCC00;
    text-align: right;
    font-family: sans-serif;
    font-weight: 900;
	line-height: 90%;
}
#fourth-section .bottom .yellow-truck {
    max-width: 1000px;
    width: 100%;
}

#fourth-section .bottom {
    margin: 20px auto;
    max-width: 1600px;
}
#fourth-section .bottom .yellow-truck {
    max-width: 700px;
    height: 400px;
    width: 100%;
    box-sizing: border-box;
}

#fifth-section{
	background: linear-gradient(173deg, rgba(205,50,50,1) 0%, rgb(151 25 25) 0%, rgb(255 0 0) 100%);
	padding: 50px 0 10px 0;
}

#fifth-section h1{
	color:white !important;
	font-size: 120px;
    margin-bottom: 40px;
}

#fifth-section h4 {
    color: white;
    text-align: center;
    font-family: 'Montserrat';
    font-weight: 100 !important;
    margin-bottom: -20px;
}


#fifth-section .flex {
    max-width: 100px;
    margin: -40px auto 0 auto;
}

#fifth-section span {
    font-weight: 800 !important;
    letter-spacing: 1px;
    font-style: initial;
}

/* #fifth-section p.quote:before {
    content: '';
    background: url(https://www.totaljunkandbulkdisposal.com/wp-content/uploads/2022/09/Untitled-15.fw_.png) no-repeat;
    position: absolute;
    width: 100%;
    height: 100px;
    left: 330px;
    margin-top: -30px;
} */

#fifth-section p {
    color: white;
    font-size: 18px;
    text-align: center;
    max-width: 1050px;
    margin: 25px auto;
    font-style: italic;
    font-family: 'Montserrat';
}

#fifth-section h3 {
    color: white;
    text-align: center;
    font-weight: 100 !important;
    font-family: 'Montserrat';
    margin-top: -50px;
    font-size: 25px;
}

#sixth-section .flex {
    max-width: 1150px;
    margin: 0 auto;
}

#sixth-section {
/*     padding: 50px 0 210px 0; */
	padding: 0;
}

.new-form {
    background: black;
    border: 13px solid red;
    max-width: 1400px;
    padding: 50px 5%;
    margin: -170px auto 0 auto;
}

.new-form .flex {
    justify-content: space-between !important;
    column-gap: 20px;
}

.new-form p {
    color: white;
    text-align: center;
    letter-spacing: 2px;
    font-family: 'Montserrat';
}

.new-form input.wpcf7-form-control.wpcf7-text, .new-form textarea {
    background: #333333;
    border: none !important;
    color: white !important;
}

.new-form h1 {
    margin: 0 !important;
    font-family: aero;
    color: white !important;
    letter-spacing: 2px;
}

input.wpcf7-form-control.wpcf7-submit.btn {
    display: block;
    margin: 30px auto 0 auto;
    padding: 20px;
    max-width: 250px;
    width: 100%;
    border-radius: 50px;
    background: linear-gradient(0deg, rgba(210,155,155,1) 2%, rgba(168,13,13,1) 38%, rgba(235,163,163,1) 100%);
    color: white;
    font-size: 17px;
    letter-spacing: 1px;
    font-family: 'Poppins';
}

.page-id-483 #footer {
	border-top: none;
	padding-top: 0;
}

#footer {
    background: url(https://www.totaljunkandbulkdisposal.com/wp-content/uploads/2022/09/footer.fw_.png) no-repeat;
    background-size: cover;
    padding: 50px 0;
	border-top: 13px solid red;
}

#footer h3 {
    font-family: 'Aero';
    text-align: center;
    color: white;    
	font-size: 60px;
	margin-bottom: 80px;
    margin-top: 70px;
}

#footer .lower a.phone {
    font-size: 24px;
    letter-spacing: 4px;
}
#footer .lower a {
    color: white;
    font-size: 17px;
}
#footer .lower span {
    font-size: 16px;
    color: white;
    font-weight: 500;
    margin-top: 30px;
    display: block;
    /* font-family: 'Century Gothic'; */
}

#footer .flex.lower {
    max-width: 1200px;
    margin: 0 auto;
}

.nav a {
    color: white;
    font-size: 17px;
    font-weight: 600;
    font-family: 'Montserrat';
}

.nav {
    display: flex;
    justify-content: space-around;
    background: black;
    padding: 40px 20%;
    margin-top: 50px;
}

.nav-lower {
    background: linear-gradient(0deg, rgba(168,13,13,1) 2%, rgba(172,12,12,1) 42%, rgba(255,0,0,1) 100%);
    padding: 20px;
    text-align: center;
    color: white;
    letter-spacing: 4px;
    font-weight: 100 !important;
    font-size: 17px;
    font-family: 'Century Gothic';
}
	
@media screen and (max-width: 1200px){
	
	a.btn{
		max-width: 250px;
		font-size: 12px;
		padding: 15px;
		margin: 50px 0 0 0;
	}
	#header .top {
		max-width: 1000px;
	}
	#header h1{
		font-size:90px;
	}
	#header .right img {
    	max-width: 260px;
	}
	#header .middle img {
    	max-width: 300px;
	}
	#header .middle {
    	max-width: 500px;
    	margin: -100px 220px 0 auto;
	}
	#header .bottom {
    	width: 100%;
    	max-width: 1000px;
    	margin: 0 auto 20px auto;
	}
	#header .bottom a{
		font-size:20px;
	}
	#header .bottom a span {
    	font-size: 60px;
	}
	#header .bottom h2 {
    	font-size: 90px;
    	text-align: right !important;
    	max-width: 500px;
    	color: white;
		text-shadow: 8px 8px 8px #000000;
	}
	#first-section .right {
    	max-width: 500px;
    	width: 100%;
	}
	#first-section .left {
    	max-width: 520px;
    	margin-left: 5%;
	}
	#first-section .right img {
    	max-width: 500px;
	}
	#first-section h2 {
    	font-size: 60px;
    	line-height: 80%;
	}
	#first-section .flex .flex img {
    	max-width: 250px;
	}
	#first-section .btn {
    	max-width: 230px;
	}
	#second-section{
		line-height: 200%;
	}
	#second-section h1 {
    	font-size: 90px;
	}
	#third-section{
		background-size: 100% 100%;
	}
	#third-section .services {
    	max-width: 600px;
	}
	#third-section .services h2 {
    	font-size: 80px;
	}
	#third-section .services p {
    	font-size: 17px;
	}
	#third-section ul li {
    	font-size: 15px;
    	font-weight: 900;
    	margin-bottom: 10px;
	}
	#third-section a.btn {
    	margin: 0;
    	max-width: 170px;
	}
	#third-section .flex {
    	max-width: 350px;
	}
	#fourth-section h2 {
    	font-size: 80px;
	}
	#fourth-section h3{
		font-size: 40px;
		max-width: 260px;
	}
	#fourth-section p {
    	font-size: 15px;
	}
	.flex.middle img {
    	max-width: 200px;
	}
	#fourth-section .bottom img {
    	max-width: 400px;
    	height: 300px;
	}
	#fourth-section .bottom .yellow-truck {
    	max-width: 500px;
    	height: 250px;
	}
	#fifth-section h1 {
    	color: white !important;
    	font-size: 90px;
	}
	#fifth-section p {
    	font-size: 14px;
    	max-width: 750px;
	}
	#fifth-section p.quote:before{
		left:160px;
	}
	#sixth-section .flex img {
    	max-width: 200px;
	}
	#sixth-section .flex {
    	max-width: 850px;
    	margin: 0 auto;
	}
	.new-form {
    	max-width: 860px;
    	padding: 30px 5%;
	}
	#footer .flex.lower img {
    	max-width: 300px;
	}

	#footer .flex.lower {
    	max-width: 900px;
    	margin: 0 auto;
	}
	.nav a {
    	font-size: 12px;
	}
	
	.nav-lower p {
    	font-size: 12px;
	}

	#panel-gb483-631bf39756a33-0-0-0> .panel-widget-style {
		padding: 40px 10px !important;
	}

	.average .container p {
		font-size: 16px !important;
	}

	#panel-gb483-631bf39757313-0-0-0> .panel-widget-style {
		padding: 30px 0 0 !important;
	}

	#pg-w631be53a6f516-0> .panel-row-style {
		padding-bottom: 20px !important;
	}

	.truck {
		padding: 40px 10px !important;
		text-align: center;
	}

	.truck .container ul li {
		text-align: left;
	}

	.truck .container {
		flex-direction: column !important;
		align-items: center !important;
	}

	#panel-w631be53a6f516-2-0-0> .panel-widget-style {
		padding: 30px 10px !important;
	}
	#panel-gb483-631bf4618b913-0-0-0> .panel-widget-style,
	#panel-w631be53a6f516-4-0-0> .panel-widget-style {
		padding: 30px 10px !important;
	}
	#panel-gb483-631bf43774f09-0-0-0> .panel-widget-style,
	#panel-w631beeeb0ff10-0-0-0> .panel-widget-style {
		padding: 30px 10px !important;
	}

	.average .container h2,
	.removal h2 {
		font-size: 40px;
	}

	.pricing h2,
	.page-id-483 .schedule h3 {
		font-size: 30px !important;
	}
}
	


@media screen and (max-width:1024px){
	
	#header .top {
    	display: block;
		margin: 20px auto 0 auto;
	}
	#header h1 {
    	font-size: 50px;
    	text-align: center !important;
	}
	#header .right img {
    	max-width: 260px;
    	display: block;
   	 	margin: 50px auto;
	}
	a.btn {
    	margin: 40px auto;
    	display: block;
	}
	#header .middle {
    	max-width: 500px;
    	width: 100%;
    	margin: 0px auto 0 auto;
	}
	#header .middle img {
    	max-width: 200px;
	}
	#header .right img {
    	max-width: 260px;
    	display: block;
    	margin: 170px auto 0 auto;
	}
	#header .bottom {
		display: block;
		max-width: 600px;
	}
	#header .bottom a {
    	justify-content: space-around;
    	max-width: 500px;
    	margin: 0 auto;
	}
	#first-section .flex {
    	display: block;
	}
	#first-section .left {
    	max-width: 820px;
    	margin: 10px auto;
    	/* margin-left: 5%; */
    	width: 100%;
    	text-align: center;
	}
	#first-section .flex p {
    	max-width: initial;
	}
	#first-section .flex .flex {
    	max-width: fit-content;
    	align-items: center;
    	margin: 0 auto;
	}
	#first-section .right {
    	display: none;
	}
	#second-section h1 {
    	font-size: 60px;
	}
	#second-section{
		padding:30px 0;
	}
	#second-section p {
    	font-size: 15px;
    	line-height: 25px !IMPORTANT;
	}
	#third-section {
    	background: none;
	}
	#third-section .services {
    	max-width: 800px;
    	margin: 0 auto !important;
	}
	.flex.middle {
    	display: block;
	}
	.flex.middle img {
    	max-width: 200px;
    	display: block;
    	margin: 0 auto;
	}
	#fourth-section h3 {
    	text-align: center;
    	margin: 0 auto;
	}
	#fourth-section .bottom {
    	margin: 20px auto;
    	max-width: 1600px;
    	display: block;
	}
	#fourth-section .bottom img {
    	display: block;
    	margin: 0 auto;
	}
	#fifth-section p.quote:before{
		display:none;
	}
	.new-form .flex {
		display: block;
	}
	textarea.wpcf7-form-control.wpcf7-textarea {
    	margin: 40px 0;
	}
}

@media screen and (max-width:768px){
	div#first-section {
    	padding: 0 5%;
	}
	#third-section {
    	padding: 40px 0;
	}
	#third-section .services {
    	text-align: center;
	}
	#third-section ul {
    	list-style-image: none;
    	list-style-type: none;
	}
	#third-section .flex {
    	margin: 0px auto;
	}
	#sixth-section .flex {
    	margin: 0 auto;
    	display: block;
	}
	#sixth-section .flex img {
    	max-width: 400px;
    	display: block;
    	margin: 10px auto;
    	width: 100%;
	}
	#footer .flex.lower {
    	max-width: 900px;
   	 	margin: 0 auto;
    	display: block;
	}
	#footer .flex.lower{
		text-align: center;
	}
	#footer .flex.lower img {
    	margin: 10px auto;
	}
	#footer .nav{
/* 		padding: 40px 5%; */
		padding: 20px 0 !important;
        flex-direction: column !important;
        text-align: center !important;
        font-size: 30px !important;
	}
}

@media screen and (max-width: 400px){
	#third-section ul li{
		text-align: left;
	}
	#third-section ul {
    	list-style-image: none;
   	 	list-style-type: disc;
    	column-count: 1;
	}
	#fifth-section h1 {
    	line-height: 70px;
	}
}


/* price page */
.page-id-564 #header {
        background: url(https://www.totaljunkandbulkdisposal.com/wp-content/uploads/2022/10/TotalJunkPricePagebanner.jpg) no-repeat;
        background-size: cover;
}
.page-id-564 #header h1 {
        color: white !important;
        font-family: Badgrunge;
        font-size: 220px;
        text-align: left !important;
        line-height: 70%;
        text-shadow: 8px 8px 8px #000000;
        letter-spacing: 2px;
}
.page-id-564 .left h3 {
        color: #FFF;
        font-family: 'Montserrat';
        font-weight: 900;
        font-size: 49px;
}
.page-id-564 #header .bottom a span {
        color: #C73933;
        font-size: 80px;
        font-family: 'Badgrunge';
        margin: 0 20px;
}
.page-id-564 .bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
}
.page-id-564  .bottom h3 {
        text-align: right;
        font-family: 'Montserrat';
        font-weight: 800;
        font-size: 30px;
}
.page-id-564 .gif {
        width: 50px;
        height: 50px;
        bottom: 20px;
        position: relative;
        animation: mymove 5s infinite;
}
@media screen and (max-width:1024px){
	.page-id-564 #header h1, .page-id-564 .left h3 {
		text-align: center !important;
	}
	.page-id-564 .bottom h2, .page-id-564 .bottom h3{
        text-align: center !important;
	}
	.page-id-564 #header .bottom a span {
        font-size: 50px !important;
	}
	.page-id-564 #header .bottom a, #header .bottom a  {
        flex-direction: column;
	}
}



/* SUSPENSION */
.suspension {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    text-align: center;
}

.suspension-inner {
    position: absolute;
    top: 60px;
    left: 50%;
    width: 95%;
    max-width: 800px;
    max-height: 90%;
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
    padding: 20px 20px 90px;
    border: 20px solid #FFF;
    background: url(https://www.totaljunkandbulkdisposal.com/wp-content/uploads/2024/07/accent_top_left.png) top left no-repeat, url(https://www.totaljunkandbulkdisposal.com/wp-content/uploads/2024/07/accent_bottom_right.png) bottom right no-repeat, url(https://www.totaljunkandbulkdisposal.com/wp-content/uploads/2024/07/notice_bg.png) center no-repeat;
    background-color:#F5F5F5;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.suspension-inner .techno-logo { margin: auto; }

.suspension-inner h2.heading {
    font-family: sans-serif;
    font-size: 60px;
    font-weight: 700;
    color: #EA1A34;
}

.suspension-inner h3 {
    font-family: sans-serif;
    font-size: 30px;
    color: #EA1A34;
}

.suspension-inner .domain-name {
    background: #E6E6E6;
    padding: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.suspension-inner .domain-name strong {
    color: #043D76;
    font-size: 26px;
}

.suspension-inner p {
    font-size: 16px;
    max-width: 630px;
    margin-left: auto;
    margin-right: auto;
    color: #444444;
}

.suspension-inner .contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 700px;
    margin: 20px auto 40px;
}

.suspension-inner .contact-info .phone {
    position: relative;
    width: 40%;
    padding-left: 50px;
    text-align: left;
}

.suspension-inner .contact-info .email {
    position: relative;
    width: 60%;
    padding-left: 50px;
    text-align: left;
}

.suspension-inner .contact-info .phone .icon,
.suspension-inner .contact-info .email .icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.suspension-inner .contact-info .phone .icon::before {
    content: url(https://www.totaljunkandbulkdisposal.com/wp-content/uploads/2024/07/phone.png);
}

.suspension-inner .contact-info .email .icon::before {
    content: url(https://www.totaljunkandbulkdisposal.com/wp-content/uploads/2024/07/email.png);
}

.suspension-inner .contact-info .phone a {
    display: block;
    color: #444;
    font-weight: 700;
    font-size: 22px;
}

.suspension-inner .contact-info .email a {
    display: block;
    color: #444;
    font-weight: 700;
    font-size: 16px;
}

@media screen and (max-width: 1024px) {
    .suspension-inner {
        overflow-x: hidden;
        overflow-y: scroll;
    }

    .suspension-inner h2.heading {
        font-size: 30px;
    }

    .suspension-inner h3 {
        font-size: 20px;
    }
}

@media screen and (max-width: 781px) {

    .suspension-inner .contact-info {
        flex-wrap: wrap;
    }

    .suspension-inner .contact-info .phone,
    .suspension-inner .contact-info .email {
        width: 100%;
        text-align: center;
        padding-left: 0;
        margin: 10px 0;
    }

    .suspension-inner .contact-info .phone .icon,
    .suspension-inner .contact-info .email .icon {
        position: relative;
        transform: none;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
}
}









	
}