/*
Theme Name: Towing
Author: Edgedigital
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

:root {
    --color-yellow: #f9f9f9;
    --color-black: #000;
    --font-primary: "Open Sans", sans-serif;
    --font-custom: "Lalezar", sans-serif;
	--sd-color-accent: #ff7a10;
}

.font-title {
    font-family: var(--font-custom);
}

.text-yellow {
    color: var(--color-yellow);
}
.text-black {
    color: var(--color-black);
}
.text-white {
    color: #fff;
}

.bg-yellow {
    background-color: var(--color-yellow);
}
.bg-black {
    background-color: var(--color-black);
}
.bg-white {
	background-color: #fff;
}
.bg-gray {
	background-color: #f1f1f1;
}
.bg-blue{
	background-color: #026EA8;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: #000;
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.5;
}
@media (max-width: 767px) {
    body {
        font-size: 16px;
    }
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: var(--font-custom);
	font-weight: 400;
	line-height: 1;
    /*margin: 0;*/
}
p,
ul {
    margin-top: 0;
    margin-bottom: 10px;
}
p:last-child,
ul:last-child {
    margin-bottom: 0;
}

.h1 {
    font-size: 70px;
}
.h2 {
    font-size: 36px;
}
.h3 {
    font-size: 30px;
}
.h4 {
    font-size: 24px;
}
.h5 {
    font-size: 32px;
}
@media (max-width: 767px) {
    .h1 {
        font-size: 36px;
    }
    .h2 {
        font-size: 30px;
    }
    .h3 {
        font-size: 24px;
    }
    .h4 {
        font-size: 20px;
    }
    .h5 {
        font-size: 32px;
    }
}

a {
    color: inherit;
    text-decoration: none;
    transition: .2s;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mt-0 {
    margin-top: 0;
}
.mb-0 {
    margin-bottom: 0;
}
.mt-10 {
    margin-top: 10px;
}
.mb-10 {
    margin-bottom: 10px;
}
.mt-20 {
    margin-top: 20px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mt-30 {
    margin-top: 30px;
}
.mb-30 {
    margin-bottom: 30px;
}

.pt-10 {
    padding-top: 10px;
}
.pb-10 {
    padding-bottom: 10px;
}
.pt-20 {
    padding-top: 20px;
}
.pb-20 {
    padding-bottom: 20px;
}
.pt-30 {
    padding-top: 30px;
}
.pb-30 {
    padding-bottom: 30px;
}

.font-bold {
    font-weight: 700;
}
.font-medium {
    font-weight: 500;
}

.container {
    max-width: 1200px;
    padding-left: 15px;
	padding-right: 15px;
    margin-left: auto;
	margin-right: auto;
}

.flex {
	display: flex;
}
.items-center {
	align-items: center;
}
.justify-between {
	justify-content: space-between;
}

.relative {
    position: relative;
}
.absolute {
    position: absolute;
}

.square {
    padding-top: 100%;
}

.inset-0 {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

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

.uppercase {
	text-transform: uppercase;
}

.full-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.topbar{
	background:#026EA8;
}
.header {
	border-bottom: 10px solid #fff;
}
@media (max-width: 767px) {
	.header img {
		width: 200px;
	}
}

.menu {
	list-style: none;
	padding-left: 0;
	font-weight: 700;
}
.menu li {
	display: inline-block;
	margin: 0 20px;
}
.submenu {
	position: absolute;
	padding-left: 0;
	background-color: #026EA8;
	color: #fff;
	padding-top: 10px;
	padding-bottom: 10px;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	transition: .2s;
}
.menu > li:hover > .submenu {
	opacity: 1;
	visibility: visible;
}
.submenu li {
	display: block;
	margin-left: 0;
	margin-right: 0;
}
.submenu li a {
	display: block;
	padding: 5px 20px;
}
.submenu li a:hover {
	color: var(--color-yellow);
	background-color: var(--sd-color-accent);
}

@media (max-width: 767px) {
	.header .flex {
		flex-direction: column;
	}
	.menu li {
		margin: 0 10px;
	}
}

.banner {
	padding-top: 80px;
	padding-bottom: 80px;
}
.banner-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	grid-row-gap: 30px;
}
.banner-content {
	width: 66.67%;
}
.banner-form {
	width: 33.33%;
}
.banner h1 {
	line-height: 1;
}
.banner-img {
	height: 100%;
}
.banner-img:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, .35);
}
.banner-title {
	position: absolute;
	color: #fff;
	text-align: center;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	margin: 0;
	font-size: 70px;
}
.button {
	display: inline-block;
	font-family: var(--font-custom);
    font-size: 30px;
    line-height: 1;
	padding: 20px 30px 15px;
	background-color: var(--sd-color-accent);
	color: #FFF;
}
@media (max-width: 767px) {
	.banner {
		padding-top: 80px;
		padding-bottom: 40px;
	}
	.banner-content,
	.banner-form {
		width: 100%;
	}
	.banner-title {
		font-size: 54px;
	}
	.button {
		font-size: 24px;
	}
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}
.gallery-item {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.gallery-content {
	padding: 0 30px;
	margin-bottom: 20px;
}
.small {
	font-size: 14px;
}
.gallery-button {
	margin-top: auto;
	text-align: center;
}
.gallery-button a {
	display: inline-block;
	background-color: #ff7a10;
	color: #fff;
	padding: 10px 20px;
}
@media (max-width: 767px) {
    .gallery {
        grid-template-columns: repeat(1, 1fr);
    }
	.gallery-content {
		font-size: 24px;
	}
}

@media (min-width: 768px) {
    .cols-2 {
        columns: 2;
    }
    .cols-3 {
        columns: 3;
    }
    .cols-4 {
        columns: 4;
    }
    .cols-5 {
        columns: 5;
    }
}

.green-mark {
    list-style: none;
}
.green-mark li:before {
    content: "\f005";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--color-yellow);
    margin-right: 10px;
}

.bottombar {
    font-size: 16px;
    padding-left: 35px;
    padding-right: 35px;
}

.call-now {
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: var(--color-yellow);
    padding: 10px;
    color: var(--color-black);
	font-family: var(--font-custom);
    font-size: 28px;
	font-weight: 700;
    text-align: center;
}
@media (max-width: 767px) {
    .call-now {
        display: block;
    }
    
    .bottombar {
        margin-bottom: 62px;
    }
}

.cta-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	grid-row-gap: 20px;
}

.feature {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	grid-column-gap: 60px;
	grid-row-gap: 30px;
}
.feature-item {
	width: calc(33.33% - 40px);
}
.feature-2 {
	text-align: center;
}
@media (min-width: 768px) {
	.feature-1 {
		text-align: right;
	}
}
@media (max-width: 767px) {
	.feature-item {
		width: 100%;
	}
	.feature-2 {
		order: 1;
	}
}

input:focus-visible,
textarea:focus-visible {
	outline: none;
}

.footer-wrap {
	display: flex;
	flex-wrap: wrap;
	grid-row-gap: 30px;
	justify-content: space-between;
	max-width: 650px;
	margin-left: auto;
	margin-right: auto;
}
.footer-content,
.footer-hours {
	width: calc(50% - 15px);
}
@media (max-width: 767px) {
	.footer-content,
	.footer-hours {
		width: 100%;
	}
}
.contact-form-inner {
	padding: 30px;
	background-color: var(--color-yellow);
	box-shadow: 0 0 20px 0 rgba(3, 15, 39, .07);
}
.contact-form label {
	display: block;
	width: 100%;
	font-weight: 700;
}
.wpcf7-form-control-wrap {
	display: block;
	width: 100%;
	margin-top: 10px;
}
.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap textarea {
	padding: 10px 15px;
    font-family: var(--font-primary);
    font-size: 16px;
    border: 1px solid #cecece;
    border-radius: 3px;
    background-color: #fff;
    color: #666;
    width: 100%;
}
.wpcf7-form-control-wrap textarea {
    height: 120px;
}
.button-field input {
    width: auto;
    display: inline-block;
    padding: 10px 20px;
	font-family: var(--font-primary);
    font-size: 16px;
	line-height: 1.5;
	text-transform: uppercase;
    border: none;
    background-color: var(--sd-color-accent);
    color: #FFF;
    transition: .2s;
    cursor: pointer;
}
.wpcf7-spinner {
	position: absolute;
}

.about-wrap {
	display: flex;
	flex-wrap: wrap;
	grid-row-gap: 30px;
	align-items: center;
	justify-content: space-between;
}
.about-content,
.about-image {
	width: calc(50% - 15px);
}
@media (max-width: 991px) {
	.contact-content,
	.contact-form,
	.about-content,
	.about-image {
		width: 100%;
	}
}

.page-banner {
	height: 800px;
}
@media (max-width: 767px) {
	.page-banner {
		height: 400px;
	}
}

.owl-theme .owl-nav {
	font-size: 60px;
	line-height: 1;
}
.owl-theme .owl-nav [class*=owl-]:hover {
	background: inherit;
	color: inherit;
}

.brands {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	grid-gap: 20px;
}
@media (max-width: 767px) {
	.brand {
		width: 100%;
		text-align: center;
	}
}

.mobile-button {
	display: none;
	margin-left: auto;
	font-size: 30px;
}
@media (max-width: 767px) {
	.mobile-button {
		display: block;
	}
}

.mobile-overlay {
	opacity: 0;
	visibility: hidden;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 9999;
	transition: all ease 0.3s;
}
.mobile-open .mobile-overlay {
	opacity: 1;
	visibility: visible;
}
.mobile-overlay .close {
	position: absolute;
	top: 57px;
	right: 17px;
	color: #fff;
	font-size: 30px;
	line-height: 1;
}
.mobile-menu {
	position: fixed;
	z-index: 9999;
	top: 0;
	left: -300px;
	width: 300px;
	max-width: 100%;
	height: 100%;
	padding-bottom: 50px;
	overflow-x: hidden;
	overflow-y: auto;
	background-color: var(--color-yellow);
	color: #000;
	transition: .2s;
}
.mobile-open .mobile-menu {
	left: 0;
}
.mobile-logo {
	position: relative;
	padding: 25px;
}
@media (max-width: 767px) {
	.menu {
		display: block;
	}
	.menu > li {
		margin: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		display: block;
		position: relative;
	}
	.menu > li > a {
		padding: 10px 25px;
		display: block;
	}
	.menu > li.menu-item-has-children > a:after {
		content: "\f105";
		font-family: "Font Awesome 5 Free";
		font-weight: 900;
		position: absolute;
		top: 10px;
		right: 20px;
	}
	.menu > li.menu-item-has-children.open > a:after {
		content: "\f107";
	}
	.submenu {
		position: static;
		visibility: visible;
		opacity: 1;
		width: 100%;
		padding: 0;
		background-color: transparent;
		color: #000;
		box-shadow: none;
		max-height: 0;
		overflow: hidden;
		transition: .5s;
	}
	.submenu li a {
	    padding: 10px 40px;
	}
	.submenu li a:hover {
	    color: #000;
	}
	.open .submenu {
		max-height: 1000px;
	}
	
	.header .menu,
	.header .button {
	    display: none;
	}
	
	.mobile-header {
	    display: flex;
	    align-items: center;
	    justify-content: space-between;
	    width: 100%;
	}
}