/*
Theme Name: Qdog Fuel
Description: Warm Thoughts Theme
Version: 2.0
Template Author: Josh Hong
Site Author: Kevin Bell 
*/









/* NOT USED Animations */
.animation-bounce {
	animation: animation-bounce 4s infinite;
}
@keyframes animation-bounce {
	0%, 50%, 100% {
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	50% {
		-moz-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}
}
.animate-line-div {
	animation: animation-wave-frames-exit 8s infinite forwards;
}
.animate-lines {
    position: absolute;
    height: 0px;
    top: 70px;
    border-bottom: 1px solid #000;
    animation: increase .75s infinite;
    animation-fill-mode: forwards;
	animation-delay:3s; 
}
.animate-lines2 {
    position: absolute;
    height: 0px;
    top: 55px;
    border-bottom: 1px solid #000;
    animation: increase2 1.5s infinite;
    animation-fill-mode: forwards;
	animation-delay:4s; 
}

@keyframes increase {
    0% {
		right: -200px;
		width: 0px;
	}
	60% {
		width: 40px;
		right:0px;
	}
	100% {
        width: 0px;
		right:40px;
    }
	
}
@keyframes increase2 {
    0% {
		right: -160px;
		width: 0px;
	}
	60% {
		width: 50px;
		right:0px;
	}
	100% {
        width: 0px;
		right:50px;
    }
}


.animation-wave2 {
	height:90px;
	position: relative; 
	animation-iteration-count: 1;
	animation: animation-wave-frames 3s forwards, animation-wave-frames-exit 8s infinite forwards;
}
@keyframes animation-wave-frames {
	20%, 80%, 90%, 100% {
		transform: translateY(10px);
	}
    0%, 30%, 85%, 95% {
        transform: translateY(-10px);
    }
    from {
        left: -50%;
    }
    to {
        left: 100%;
    }
}
@keyframes animation-wave-frames-exit {
	0%, 100% {
		transform: translateY(20px);
	}
	25% {
		transform: translateX(-20px);
	}
	50% {
		transform: translateY(-20px);
	}
	75% {
		transform: translateX(20px);
	}
}

/*END ANIMATIONS NOT USED*/

.roboto-thin {
	font-family: "Roboto", sans-serif;
	font-weight: 100;
	font-style: normal;
  }
  
  .roboto-light {
	font-family: "Roboto", sans-serif;
	font-weight: 300;
	font-style: normal;
  }
  
  .roboto-regular {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-style: normal;
  }
  
  .roboto-medium {
	font-family: "Roboto", sans-serif;
	font-weight: 500;
	font-style: normal;
  }
  
  .roboto-bold {
	font-family: "Roboto", sans-serif;
	font-weight: 700;
	font-style: normal;
  }
  
  .roboto-black {
	font-family: "Roboto", sans-serif;
	font-weight: 900;
	font-style: normal;
  }
  
  .roboto-thin-italic {
	font-family: "Roboto", sans-serif;
	font-weight: 100;
	font-style: italic;
  }
  
  .roboto-light-italic {
	font-family: "Roboto", sans-serif;
	font-weight: 300;
	font-style: italic;
  }
  
  .roboto-regular-italic {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-style: italic;
  }
  
  .roboto-medium-italic {
	font-family: "Roboto", sans-serif;
	font-weight: 500;
	font-style: italic;
  }
  
  .roboto-bold-italic {
	font-family: "Roboto", sans-serif;
	font-weight: 700;
	font-style: italic;
  }
  
  .roboto-black-italic {
	font-family: "Roboto", sans-serif;
	font-weight: 900;
	font-style: italic;
  }
  

  
/* Root
====================================*/
:root {
	--default: #000000; /*Font*/
	--primo: #0f2750; /*Blue*/
	--secondo: #c1272d; /*Red*/
	--terzo: #fff200; /*Yellow*/
	--quarto: #4dc7f5; /*Cyan*/
	--cinco: #1a4285; /*Lighter Blue*/
	--seies: #163772; /*Middle Bleu */
	--ffamily: "Roboto Slab", serif;
}


/* Global Styles
====================================*/

html, body {
	overflow-x: hidden;
}

body {
	color: var(--default);
	font-family: var(--ffamily);
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
	font-family: "Roboto", sans-serif;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
	margin-bottom: 1rem;
}
h1, .h1 {
	color: var(--secondo);
	font-size: 44px;
	line-height: 60px;
	font-weight: 700;
	font-family: "Roboto Slab", serif;
}
h2, .h2 {
	color: var(--cinco);
	font-size: 36px;
	line-height: 40px;
	font-weight: 700;
	font-family: "Roboto Slab", serif;
}
h3, .h3 {
	color: #000;
	font-size: 28px;
	line-height: 38px;
	font-weight: 700;
	font-family: "Roboto Slab", serif;
}
h4, .h4 {
	color: var(--secondo);
	font-size: 24px;
	font-weight: 700;
}
h5, .h5 {
	color: #000;
	font-size: 22px;
	font-weight: 600;
	font-family: "Roboto Slab", serif;
}
a {
	color: inherit;
	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: '\f0a9';
	font-family: "FontAwesome";
	color: var(--terzo);
	font-size: 7em;
	opacity: .2;
	position: absolute;
	margin-left: -20px;
}

.alignleft {
	float: left;
	margin: 0 2rem 2rem 0;
}
.alignright {
	float: right;
	margin: 0 0 2rem 2rem;
}
.aligncenter {
	display: block;
	margin: auto;
}

.small-text {
	font-size: 12px;
}
.med-text {
	font-size: 24px;
	line-height: 34px;
}
.large-text {
	font-size: 32px;
	line-height: 42px;
}
.super-large-text {
	font-size: 40px;
	line-height: 50px;
}
.bomb-large-text {
	font-size: 50px;
	line-height: 60px;
}
.extra-large-text {
	font-size: 60px;
	line-height: 70px;
}

.text-shadow {
	text-shadow: 1px 1px 3px #333;
}

.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;
}
[class^="img-overlay-"] {
	position: absolute;
}
.img-overlay-full {
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}
.img-overlay-center {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.img-overlay-center-left {
	top: 50%;
	left: 10%;
	transform: translate(0%, -50%);
}
.img-overlay-center-right {
	top: 50%;
	right: 10%;
	transform: translate(0%, -50%);
}
.img-overlay-top-center {
	top: 0;
	left: 0;
	right: 0;
}
.img-overlay-top-left {
	top: 0;
	left: 10%;
}
.img-overlay-top-right {
	top: 0;
	right: 10%;
}
.img-overlay-bottom-center {
	bottom: 5%;
	left: 0;
	right: 0;
}
.img-overlay-bottom-left {
	bottom: 5%;
	left: 10%;
}
.img-overlay-bottom-right {
	bottom: 5%;
	right: 10%;
}

/* Buttons
==================*/

.btn {
	border: none;
	border-radius: 0;
	font-weight: 700;
	padding: 8px 20px 8px 20px;
	text-shadow: none;
	text-transform: uppercase;
	transition: 0.4s;
}
.btn-primo {
	background-color: var(--cinco);
	color: #fff !important;
}
.btn-primo:hover, .btn-primo:active, .btn-primo:focus {
	background-color: var(--quarto);
	color: #fff !important;
}
.btn-secondo {
	background-color: var(--secondo);
	color: #fff !important;
}
.btn-secondo:hover, .btn-secondo:active, .btn-secondo:focus {
	background-color: #fff;
	color: #000 !important;
}
.btn-terzo {
	background-color: var(--terzo);
	color: #000000 !important;
}
.btn-terzo:hover, .btn-terzo:active, .btn-terzo:focus {
	background-color: #fff;
	color:  #000000 !important;
}

.btn-quarto {
	background-color: var(--quarto);
	color: #fff!important;
	border-radius: 15px;
}
.btn-quarto:hover, .btn-quarto:active, .btn-quarto:focus {
	background-color: var(--secondo);
	color: #ffffff !important;
	border-radius: 15px;
}

.btn-quarto-why {
	background-color: var(--cinco);
	color: #fff!important;
	border-radius: 15px;
}
.btn-quarto-why:hover, .btn-quarto-why:active, .btn-quarto-why:focus {
	background-color: #fff;
	color: #000 !important;
	border-radius: 15px;
}

.btn-cinco {
	background-color: var(--secondo);
	color: #fff !important;
	font-size: 14px;
}
.btn-cinco:hover, .btn-cinco:active, .btn-cinco:focus {
	background-color: var(--primo);
	color: #fff !important;
	font-size: 14px;
	
}


.btn-seis {
	background-color: var(--secondo);
	color: #fff !important;
	border-radius: 15px; 
	padding: 10px;
}
.btn-seis:hover, .btn-seis:active, .btn-seis:focus {
	background-color: var(--primo);
	color: #fff !important;
}

/* 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;
}


/* Breadcrumbs
====================================*/

.breadcrumbs a {
	color: #000 !important;
	text-decoration: none;
}
.breadcrumbs {
	color: #000;
}


/* Header
====================================*/

header a {
	text-decoration: none;
}



/* Content
====================================*/

.content a {
	color: blue;
}
.content ul li {
	padding-left: 0.5rem;
}
.content ul li::marker {
	content: "\f00c";
	color: var(--primo);
	font: var(--fa-font-solid);
}


/* Footer
====================================*/

footer a {
	text-decoration: none;
}


/* Pagination
====================================*/

.pagination {
	margin: 3rem 0;
}
.page-numbers {
	border: 1px solid var(--primo);
	padding: 10px 10px;
	text-decoration: none;
}


/* Post
====================================*/

.post {
	padding-bottom: 3rem;
}
.post h3 {
	margin: 1rem 0;
}
.post img {
	display: inline-block;
}


/* Responsive CSS
====================================*/

@media (width < 576px) {
	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 (width < 992px) {
	.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
====================================*/
.headerbtn {
	font-size: 14px;
	padding: 8px 25px;
	width: -webkit-fill-available;
}

.header-nav-bkd {
		background-color: var(--seies);
		border-bottom: 5px solid var(--secondo);
}

.hp-blue-bkd {
	background-color: var(--primo);
	border-top: 5px solid var(--quarto);
}

.bg-footer-box {
	border-radius: 10px;
}

.teal-hp-box {
	border: 2px solid var(--quarto);
	border-radius: 10px;
	padding: 10px;
	/*width: 65%;*/
	margin: auto;
	margin-top: -90px;
	display: grid;
	z-index: 2;
    position: relative;
}
.border-white {
	border:3px solid #fff;
}

.pricing-large-text {
	font-size: 2rem;
	display: flex; 
	color: var(--secondo);
	align-items: center;
	justify-content: space-between;
	font-weight: 900; 
}

.carousel-inner {
    position: relative;
    width: 100%;
    padding: 200px;
    overflow: hidden;
}


.hp-cr-grey {
	background-color: #dfdfdf;
}

.cr-grey {
	background-color: #f9f9fa;
}

.rounded-img {
	border-radius: 10px;
}

.bac {
	position: absolute;
	top: 0;
	right: 3%;
	margin-top: -50px;
}

.checkmark::before {
	content: "\2713"; 
	margin-right: 8px;
	color: var(--primo);
}

.hide-markers ul li::marker {
	display: none;
  }

.h3-terzo {
	color: var(--terzo);
	margin-bottom: 0 !important;
}

.h3-primo {
	color: var(--primo);
	font-size: 22px;
	margin-bottom: 0px !important;
}

.btn-teal {
	background-color: none;
}

.btn-teal:hover, .btn-teal:active, .btn-teal:focus {
	background-color: none;
}

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.h3-contactcta {
	color: var(--primo);
	font-size: 28px;
	margin-bottom: 0px !important;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 {
	text-align:center;
}

/* Home - 5 */
.home-5 {
	background: url('images/bg-home-5.jpg');
	background-size: cover;
	background-position: center;
	padding: 60px 0;
}
.home-5 h3 {
	font-family: 'Roboto Slab', serif;
}
.home-5 .container {
	position: relative;
}

/* Home - 5 */
.home-5 h3 {
	font-size: 49px;
	line-height: 56px;
}
.home-5 .btn {
	font-size: 20px;
	margin-top: 15px;
}

/* Home - 5 */
.home-5 .q-dog {
	width: 475px;
}


@media only screen and (min-width: 992px) {
.home-5 .container>div[class^="col-"]:first-child {
	padding-right: 35px;
  }
}


@media only screen and (min-width: 992px) and (max-width: 1199px) {
.home-5 .q-dog {
	width: 350px;
  }
}


@media only screen and (min-width: 1200px) {
.home-5 .q-dog {
	position: absolute;
	top: -120px; left: -360px;
  }
}

/* Animations */
.animation-bounce {
	animation: animation-bounce 4s infinite;
}
@keyframes animation-bounce {
	0%, 50%, 100% {
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	50% {
		-moz-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}
}

/* Custom Styles Responsive CSS
====================================*/

@media (width > 1200px) {
	.logo {
		margin-bottom: -100px;
		z-index: 1000;
		position: relative;
	}
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 {
		text-align:end;
	}
}
@media (max-width: 992px) {
    #carouselExample {
      display: none;
    }
  }
@media (max-width: 768px) {
    .carousel-inner {
      width: 100%;
    }
    .carousel-item {
      height: auto;
      padding: 20px;
    }
  }

@media (min-width: 601px) {
  .responsive-text {
    font-size: 80px;
  }
}
@media (max-width: 600px) {
  .responsive-text {
    font-size: 30px;
  }
}

@media (width < 576px) {
	.bac {
		right: -2%;
		margin-top: -35px;
	}
}

@media (min-width: 768px) {
	.browsersedge {
		bottom: 20px;
		right: 0;
		position: fixed;
	}
	.browsersedge a {
		text-decoration: none;
	}
}

@media only screen and (max-width: 768px) {
.teal-hp-box {
	margin-top: 90px;
  }
}


/* Vimeo */

.video-container {
    position: relative;
    width: 75%; 
    padding-bottom: 42.25%;
    margin: 0 auto; 
	text-align: left;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
