/*
Theme Name: fuelogical
Author: Jason Wightman
*/


/* Color reference
-------------------------------------------------------
Black color: #222222 / color: rgba(34, 34, 34, 1.0);
Blue color: #194072 / color: rgba(25, 64, 114, 1.0);
Green color: #98cb53 / color: rgba(152, 203, 83, 1.0);
White color: #fcfcfc / color: rgba(254, 252, 255, 1.0);
*/

/* Fonts
----------------------------------------------- */
/*

// <weight>: Use a value from 100 to 900
// <uniquifier>: Use a unique and descriptive class name

.inter-<uniquifier> {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

*/

@font-face {
    font-family: 'Forehands Rounded';
    src: url('fonts/ForehandsRounded-Bold.woff2') format('woff2'),
		 url('fonts/ForehandsRounded-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */

html {
    font-size: 62.5%; 
    min-height: 100%;
    height: 100%;
    box-sizing: border-box;
}

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

#page {
	margin-bottom: 130px;
}

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

body {
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
	font-variation-settings: "wdth" 100;
	font-size: 1.6rem;
	line-height: 1.5;
	letter-spacing: -0.04rem;
	color: #222222;
	background-color: #fcfcfc;
}


h1, h2, h3, h4, h5, h6 {
    font-family: 'Forehands Rounded';
    font-weight: bold;
    font-style: normal;
	text-wrap: balance;
}

h1 {
	font-size: 4.2rem;
	line-height: 1;
	margin-bottom: 80px;
}

h2 {
	font-size: 3.5rem;
	line-height: 0.8;
	margin-bottom: 10px;
}

h3 {
	font-size: 2.8rem;
	line-height: 0.8;
	margin-bottom: 5px;
}

h4 {
	font-size: 2.4rem;
	line-height: 0.8;
	margin-bottom: 20px;
}

h6 {
	font-size: 2.2rem;
	line-height: 0.8;
	margin-bottom: 10px;
}

p {
	margin-bottom: 20px;
}

strong {
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
	font-variation-settings: "wdth" 100;
}

ul {
	padding-left: 13px;
}

ul li {
	padding-left: 5px;
}

ol {
	padding-left: 20px;
}

ol li {
    padding-left: 10px;
}


a {
	color: #222222;
	-ms-word-break: break-word;
	     word-break: break-word;
	text-decoration: none;
}

a:hover,
a:active,
a:focus {
	color: #98cb53;
}

/*.introduction-text {
	font-size: 2.0rem;
	line-height: 24px;
	font-weight: 700;
}*/

.dot-text {
	font-size: 1.4rem;
	line-height: 1.0;
}

.home-intro,
.page-intro {
	font-size: 2.0rem;
	line-height: 1.5;
}

.page-intro {
	margin-bottom: 40px;
}

@media (min-width: 768px) { 
	.page-intro {
		font-size: 3.2rem;
		margin-bottom: 80px;
	}
}

#small-print {
	font-size: 1.2rem;
	font-style: italic;
}

#small-print p {
	margin-bottom: 10px;
}



/* =Structure
----------------------------------------------- */


#page-content {
	background-color: #fcfcfc;
}

body #page {
	padding-top: 180px;
}

@media (min-width: 768px) { 
	body #page {
		padding-top: 250px;
	}
}


body.home #page {
	padding-top: 0;
}

img {
	width: 100%;
	height: auto;
}

/* Buttons */

button,
.button {
	background-color: transparent;
	border: 1px solid #98cb53;
	padding: 6px 20px;
	box-shadow: none;
	font-size: 1.3rem;
	line-height: 1;
	color: #98cb53;
	height: 30px;
	border-radius: 4px;
	
}

button a,
.button a {
	text-decoration: none;
		color: #98cb53;
}

button:hover,
.button:hover {
	background-color: #98cb53;
	color: #fcfcfc;
}

button:hover a,
.button:hover a {
	color: #fcfcfc;
}

svg#facebook-button {
	margin-left: 6px;
}

button:hover svg#facebook-button path,
.button:hover svg#facebook-button path{
	fill: #fcfcfc;
}


/* Animated Button */

.animated-button {
    text-align: center;
    align-items: center;
    padding: 0;
    text-decoration: none;
    display: flex;
    position: relative;
    overflow: visible;
	color: #222222;
	width: fit-content;
}

a.animated-button:hover,
a.animated-button:active {
	color: #222222;
}

.arrow-button-circle {
    border: 1px solid #222222;
    border-radius: 100%;
    padding: 1.5rem;
}

.arrow-button-wrapper {
    justify-content: center;
    align-items: center;
    display: flex;
    position: relative;
    overflow: hidden;
}

.arrow-button-text {
	font-size: 1.4rem;
	margin-right: 15px;
}

.arrow-icon.hover {
	position: absolute;
	transform: translate3d(-34px, 0, 0); 
	transition: transform 0.3s ease;
}

.animated-button:hover .arrow-icon.hover{
	transform: translate3d(0, 0, 0); 
}

.arrow-icon {
	width: 2.4rem;
	height: 2.2rem;
	transform: translate3d(0, 0, 0); 
	transition: transform 0.3s ease;
}

.animated-button:hover .arrow-icon{
	transform: translate3d(34px, 0, 0); 
}

.arrow-icon svg {
	vertical-align: top;
}


/* =Masthead
----------------------------------------------- */

.header {
	position: fixed;
	width: 100%;
    background: #fcfcfc;
	border: none;
	z-index: 100;
	top: 0;
}

.header .logo {
	text-align: center;
}

.header .logo svg {
	max-width: 220px;
}

@media (min-width: 768px) { 
	.header .logo svg {
		max-width: unset;
	}
}


#header-top {
	padding-top: 10px;
	padding-bottom: 8px;
	background-color: #98cb53;
	color: #fcfcfc;
	line-height: 1;
	height: 34px;
}

.header .opening-times-summary p {
	margin: 0;
	font-size: 13px;
	line-height: 1;
}

.header .opening-times-summary strong {
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
	font-variation-settings: "wdth" 100;
}

.header .opening-times-summary span {
	display: none;
}

@media (min-width: 768px) { 
	.header .opening-times-summary span {
		display: inline;
	}
}

.header .header-tel {
	font-size: 13px;
	line-height: 1;
	text-decoration: none;
	color: #fcfcfc;
}

.header ul.social-links {
	justify-content: flex-end;
}

.header ul.social-links li {
	margin-left: 10px;
	padding-left: 0;
}

#header-bottom {
	padding-top: 25px;
	padding-bottom: 25px;
}


/* =Main Navigation
----------------------------------------------- */

#main-nav a {
    font-family: 'Forehands Rounded';
    font-weight: bold;
    font-style: normal;
	font-size: 1.6rem;
	letter-spacing: 0.04rem;
	color: #222222;
	text-decoration: none;
}

#main-nav ul {
	display: flex;
    justify-content: center;
	margin-bottom: 0;
	line-height: 1;
	padding: 0;
}

#main-nav ul li {
    display: inline-block;
    margin: 0 0 0 35px;
	padding: 0;
	background: none;
}


/* menu onclick icon */

.plus-minus-toggle,
.mobile-plus-minus-toggle {
	cursor: pointer;
	position: relative;
	height: 12px;
	width: 12px;
	float: right;
	margin-left: 10px;
	top: 2px;
	z-index: 1;
}

.plus-minus-toggle:before,
.plus-minus-toggle:after,
.mobile-plus-minus-toggle:before,
.mobile-plus-minus-toggle:after {
	background: #233d4d;
	content: '';
	left: 0;
	position: absolute;
	transition: transform 500ms ease;
}

.plus-minus-toggle:before,
.mobile-plus-minus-toggle:before {
	height: 2px;
	width: 12px;
	top: 5px;
}

.plus-minus-toggle.collapsed:after,
.mobile-plus-minus-toggle.hidden:after {
	transform: scaleY(1);
}

.plus-minus-toggle:after,
.mobile-plus-minus-toggle:after {
	height: 12px;
	width: 2px;
	left: 5px;
	transform: scaleY(0);
	transition: transform 0.25s ease-in-out;
}

.main-menu li:hover .plus-minus-toggle,
.mobilemenu li:hover .mobile-plus-minus-toggle {
	opacity: 1;
}

/*#main-navigation li a {
	display: inline-block;
    text-decoration: none;
    line-height: 1;
}

#main-navigation .glyphicon {
	display: none;
}

#main-navigation li a {
	color: #282828;
}

#main-navigation li > a:hover,
#main-navigation li > a:active,
#main-navigation li > a:focus,
#main-navigation li.active > a,
#main-navigation li.current-menu-item > a,
#main-navigation li.current-menu-ancestor > a,
#main-navigation li.current-menu-parent > a,
#main-navigation .dropdown-menu > li > a:hover,
#main-navigation .dropdown-menu > li > a:active,
#main-navigation .dropdown-menu > li > a:focus,
#main-navigation .dropdown-menu > li.active > a,
#main-navigation .dropdown-menu > li.active > a:hover,
#main-navigation .dropdown-menu > li.active > a:focus {
	color: #98cb53;
}

#main-navigation .open > a,
#main-navigation .open > a:hover,
#main-navigation .open > a:focus {
	color: #FFF !important;
	background-color: #98cb53;
}

#main-navigation .dropdown-menu {
	margin-top: 1px;
	background: #FFF;
	border: none;
	-webkit-box-shadow: 0px 2px 5px 0px rgba(50, 50, 50, 0.5);
	-moz-box-shadow:    0px 2px 5px 0px rgba(50, 50, 50, 0.5);
	box-shadow:         0px 2px 5px 0px rgba(50, 50, 50, 0.5);
}

#main-navigation > li > .dropdown-menu li {
	border-bottom: none;
}

#main-navigation > li > .dropdown-menu li a {
    font-family: 'Forehands Rounded';
    font-weight: bold;
    font-style: normal;
	font-size: 20px;
	text-transform: uppercase;
	width: 100%;
}*/


/*------------------------------------*\
	Submenu Desktop
\*------------------------------------*/


#main-nav .sub-menu:before {
	height: 350px;
	width: 100vw;
	background-color: rgba(252,252,252,0.9);
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0%;
	z-index: -1;
}

#main-nav .sub-menu:after {
	height: 350px;
	width: 100vw;
	background-color: rgba(252,252,252,0.9);
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 100%;
}

#main-nav ul li.menu-item-has-children .sub-menu {
    display: none;
}

#main-nav ul li .sub-menu {
    margin-top: 29px;
	text-align: left;
	padding: 0;
	position: absolute;
	margin-left: 0;
	transition: .4s ease;
}

#main-nav ul li .sub-menu li {
	display: block;
	color: #222222;
	width: 100%;
	padding: 15px 0;
	margin: 0;
	white-space: nowrap;
	box-sizing: border-box;
}

#main-nav ul li .sub-menu li:first-child {
	padding-top:30px
}



/* Navigation Mobile
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Hamburger */

/*.hamburger {
	display: none;
}

@media screen and (max-width: 1000px) {
    .hamburger {
        padding: 0;
        cursor: pointer;
        transition-property: opacity, filter;
        transition-duration: 0.15s;
        transition-timing-function: linear;
        overflow: visible; 
        display: block;
		height: 18px;
    }
}*/

    .hamburger {
        padding: 0;
        cursor: pointer;
        transition-property: opacity, filter;
        transition-duration: 0.15s;
        transition-timing-function: linear;
        overflow: visible; 
        display: block;
		height: 18px;
        /*position: absolute;
        top: 47px;
        right: 5.35%;
        z-index: 200;*/
    }

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
	background-color: #98cb53;
	}

.hamburger-box {
	width: 22px;
	height: 18px;
	display: inline-block;
	position: relative; 
}

.hamburger-inner {
	display: block;
	top: 50%;
	margin-top: -2px; 
}

.hamburger-inner, 
.hamburger-inner::before,
.hamburger-inner::after {
    width: 22px;
    height: 2px;
    background-color: #98cb53;
    border-radius: 1px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; 
}
  
.hamburger-inner::before, 
.hamburger-inner::after {
    content: "";
    display: block; 
}
  
.hamburger-inner::before {
    top: -6px; 
}
  
.hamburger-inner::after {
    bottom: -6px; 
}

/* Spin */

.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); 
}
  
.hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; 
}
  
.hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); 
}
  
.hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; 
}
  
.hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); 
}



/* :::::::::::::::::::::::::::::

MOBILE  MENU

::::::::::::::::::::::::::::: */


#mobile-nav {
    font-family: 'Forehands Rounded';
    font-weight: bold;
    font-style: normal;
	font-size: 1.6rem;
	letter-spacing: 0.04rem;
	line-height: 1;
}

#mobile-nav.visible {
	display: block;
	text-align: left;
	padding-top:30px;
	position: fixed;
	width: 100vw;
	z-index: 100;
	top: 111px;
	bottom: 0;
	background-color: #fcfcfc;
	height: 100vh;
}

#mobile-nav {
	height: 0;
	overflow: hidden;
}

#mobile-nav ul {
	list-style: none;
    margin-top: 0;
	margin-bottom: 0;
    padding-left: 0;
}

#mobile-nav ul li {
	margin-left: 0;
	padding: 12px 0;
	margin-bottom: 0;
	background: none;
}

#mobile-nav ul li:before {
	content: none;
}

#mobile-nav ul li a {
	color: #222222;
}

#mobile-nav li.menu-item-has-children .sub-menu {
    display: none;
}

#mobile-nav li .sub-menu {
    display: block;
}

#mobile-nav ul li .sub-menu li {
    padding: 12px 0;
    margin: 0;
}

#mobile-nav ul li .sub-menu li:first-child {
    padding-top: 24px;
}

#mobile-nav #mobile-menu-home {
	padding-left: 15px;
}








/* =New Social Links
----------------------------------------------- */

ul.social-links {

    list-style: none;
    padding: 0 !important;
    margin: 0;
	display: flex;

}

/*#footer ul.social-links {
	justify-content: center;
}*/

#footer #instagram-footer,
#footer #linkedin-footer {
	margin-left: 10px;
}

ul.social-links li a {
    display: inline-block;
    text-align: center;
}




/* * * * * * * * * * * * * * * * * * 

Page Animations

* * * * * * * * * * * * * * * * * */


.animatable {
  /* initially hide animatable objects */
  visibility: hidden;

  /* initially pause animatable objects their animations */
  animation-play-state: paused;
}

/* show objects being animated */
.animated {
  visibility: visible;

  animation-fill-mode: both;
  animation-duration: 1s;
  animation-play-state: running;
}

/* CSS Animations (extracted from http://glifo.uiparade.com/) */
@keyframes fadeIn {
  0%,
  60% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  60% {
    transform: translateX(20px);
  }
  80% {
    transform: translateX(-5px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  60% {
    transform: translateX(-20px);
  }
  80% {
    transform: translateX(5px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes moveUp {
  0% {
    transform: translateY(80px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes fadeBgColor {
  0%,
  70% {
    background: none;
  }
  100% {
    background: #464646;
  }
}

.animated.animationDelay {
  animation-delay: 0.4s;
}
.animated.animationDelayMed {
  animation-delay: 1.2s;
}
.animated.animationDelayLong {
  animation-delay: 1.6s;
}
.animated.fadeBgColor {
  animation-name: fadeBgColor;
}
.animated.bounceIn {
  animation-name: bounceIn;
}
.animated.bounceInRight {
  animation-name: bounceInRight;
}
.animated.bounceInLeft {
  animation-name: bounceInLeft;
}
.animated.fadeIn {
  animation-name: fadeIn;
}
.animated.fadeInDown {
  animation-name: fadeInDown;
}
.animated.fadeInUp {
  animation-name: fadeInUp;
}
.animated.moveUp {
  animation-name: moveUp;
}



/* * * * * * * * * * * * * * * * * * 

Generic

* * * * * * * * * * * * * * * * * */

/*.intro {
	padding-bottom: 130px;
}*/

.dot-wrapper {
	height: 34px;
	margin-bottom: 20px;
}

.dot {
	width: 6px;
	height: 6px;
	background-color: #98cb53;
	margin-right: 10px;
	border-radius: 100%;
}

.line-break {
	height: 1px;
	background-color: rgba(34, 34, 34, 0.2);
}

@media (min-width: 768px) { 
	.make-sticky {
		position: -webkit-sticky;
		position: sticky;
		top: 200px;
	}
}


.outer-border {
	border-top: 4px Solid #194072;
	border-radius: 60px 0;
	border-left: 3px Solid #194072;
	padding: 5px 0 0 3px;
}

.inner-border{
	border-top: 4px Solid #98cb53;
	border-radius: 55px 0;
	border-left: 3px Solid #98cb53;
	overflow: hidden;
}

/* Image enlarge */

.grow img {
  transform: scale(1);
  transition: transform 0.4s ease;
}

.grow img:hover {
  transform: scale(1.1);
}


/* * * * * * * * * * * * * * * * * * 

Home Page

* * * * * * * * * * * * * * * * * */

/* Video Banner */

.homepage-banner {
	position: relative;
	height: calc(100vh - 131px);
	margin-top: 131px;
	border-bottom-left-radius: var(--radius, 0px);
	border-bottom-right-radius: var(--radius, 0px);
	transition: border-radius 0.15s linear;
	overflow: hidden;
	max-height: 800px;
}

/*.home-video:before {
	content: "";
	background-color: red;
	width: 100%;
	height: 100%;
	display: block;
}*/

.home-video {
	position: absolute;
	object-fit: cover;
	height: 100%;
	width: 100%;
	max-height: 800px;
}

#video-text-outer {
	height: calc(100vh - 131px);
	max-height: 800px;
}

#video-text-inner {
	z-index: 1;
	position: relative;
	text-align: center;
}

#banner-svg {
	margin-bottom: 40px;
	opacity: 0;
	-webkit-animation: fading 1s cubic-bezier(0.6, 0.2, 0.4, 0.8) forwards;
	animation: fading 1s cubic-bezier(0.6, 0.2, 0.4, 0.8) forwards;	
}

#banner-svg svg {
	width: 100%;
}

.homepage-banner h1 {
	color: #fcfcfc;
	font-size: 2.6rem;
	margin-bottom: 20px;
	text-wrap: balance;	
	opacity: 0;
	-webkit-animation: fading 2s cubic-bezier(0.6, 0.2, 0.4, 0.8) forwards;
	animation: fading 2s cubic-bezier(0.6, 0.2, 0.4, 0.8) forwards;
}

.homepage-banner p {
    font-family: 'Forehands Rounded';
    font-weight: bold;
    font-style: normal;
	text-wrap: balance;
	font-size: 1.8rem;	
	color: #fcfcfc;
	margin-bottom: 0;
	opacity: 0;
	-webkit-animation: fading 3s cubic-bezier(0.6, 0.2, 0.4, 0.8) forwards;
	animation: fading 3s cubic-bezier(0.6, 0.2, 0.4, 0.8) forwards;
}

@-webkit-keyframes fading {
  0% {
    filter: blur(10px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}

@keyframes fading {
  0% {
    filter: blur(10px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}


/* Slider */

/*.slide-img {
	width: 100vw;
	height: 100vh;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
*/

/* Intro */

.intro-home {
	padding-top: 100px;
	padding-bottom: 130px;
}

.intro-home .animated-button {
	margin-top: 60px;
}


/* Featured Products */

.featured-products {
	padding-top: 20px;
	padding-bottom: 130px;
}

.product-home-info {
	margin-top: 20px;
}

.featured-products .animated-button {
	margin-top: 20px;
}

.featured-products article > a:hover + .product-home-info a {
	color: #98cb53;
}

/* Latest News */

.latest-news {
	padding-top: 20px;
}

#news-home-button {
	margin-bottom: 40px;
}

#news-home-img {
	padding-top: 10px;
}

#news-home-img .grow {
	border-radius: 40px 0;
	overflow: hidden;
}

@media (min-width: 768px) { 
	#news-home-img .grow {
		border-radius: 80px 0;
	}
}

.news-home-info {
	margin-top: 20px;
}

.news-home-info #news-title {
	margin-bottom: 0;
}

#news-home-img > a:hover + .news-home-info a {
	color: #98cb53;
}

.latest-news .animated-button {
	margin-top: 60px;
}

@media (min-width: 768px) { 
	.latest-news .animated-button {
		margin-top: 0;
	}
}


/* * * * * * * * * * * * * * * * * * 

About

* * * * * * * * * * * * * * * * * */

.page-about #page {
	margin-bottom: 0;
}

@media (min-width: 992px) {
	h1.make-sticky {
		margin-bottom: 20px;
	}
}

.range-shot {
	margin-top: 80px;
	border-radius: 20px 20px 0 0;
	overflow: hidden;
}

@media (min-width: 768px) { 
	.range-shot {
		margin-top: 130px;
	}
}


.reveal-image img {
    transform: scale(0);
    opacity: 0;
    transition: transform 1.6s ease, opacity 1.6s ease;
    transform-origin: center;
}

.reveal-image.revealed img {
    transform: scale(1);
    opacity: 1;
}

/* * * * * * * * * * * * * * * * * * 

The Technology

* * * * * * * * * * * * * * * * * */

.page-the-technology #page {
	margin-bottom: 0;
}

.page-the-technology .intro img {
    border-radius: 80px 0;
    margin-top: 30px;
    margin-bottom: 50px;
}

/* * * * * * * * * * * * * * * * * * 

Products

* * * * * * * * * * * * * * * * * */

.page-products #page {
	margin-bottom: 0;
}
/*.card {
  position: sticky;
  top: 300px;
  transform-origin: center top;
  margin: 0.5em;
  height: 300px;
}*/

.product-range {
	padding-top: 150px;
	padding-bottom: 150px;
	background-color: #222222;
}

.product-range .dot-text {
	color: #fcfcfc;
}

.product-cat-border {
	border-radius: 40px 0;
	overflow: hidden;
	aspect-ratio: 4/3;
	padding: 20px;
	background-color: #2b2b2b;
}

.product-cat-border:hover {
	background-color: rgba(152, 203, 83, 1.0);
}



.product-cat-icon {
	width: 60px;
}

.product-cat-info #product-title {
	margin-bottom: 0;
	color: #fcfcfc
}

.product-info {
	margin-top: 20px;
}

#product-title {
	font-family: 'Forehands Rounded';
    font-weight: bold;
    font-style: normal;
	font-size: 2.0rem;
	letter-spacing: 0.04rem;
	line-height: 1;
	margin-bottom: 60px;
}

.term-in-tank-solutions .line-break,
.term-in-line-solutions .line-break,
.term-fuel-tank-in-tank-solutions .line-break,
.term-fuel-tank-in-line-solutions .line-break,
.term-coming-soon .line-break {
	margin-top: 130px;
}

.term-coming-soon .animated-button {
	padding-right: calc(var(--bs-gutter-x) * .5);
	padding-left: calc(var(--bs-gutter-x) * .5);
	margin-top: 40px;
	margin-bottom: 20px;
}

.term-coming-soon #page {
	margin-bottom: 0;
}

/*.product-intro-small {
	margin-bottom: 130px;
}*/


/* * * * * * * * * * * * * * * * * * 

Products Single

* * * * * * * * * * * * * * * * * */

.category-products {
	padding-top: 80px;
}

/*.single-product-image {
	margin-bottom: 80px;
}*/

.single-product-image img {
	border-radius: 60px 0 60px 0;
}

#single-product-info {
	margin-top: 100px;
}

.single-product-headings {
	font-family: 'Forehands Rounded';
	font-weight: bold;
	font-style: normal;
	font-size: 1.4rem;
	letter-spacing: 0.04rem;
	margin-bottom: 10px;
}

.single-product-headings.size,
.single-product-headings.price {
	padding-top: 20px;
}

#cc,
#cc-title,
#no-units,
#no-units-title {
	padding-bottom: 5px;
	margin-bottom: 5px;
	border-bottom: 1px solid rgba(34, 34, 34, 0.2);
}

#cc-title,
#no-units-title {
	border-bottom: 1px solid rgba(34, 34, 34, 1.0);
}

#no-units,
#no-units-title {
	text-align: center;
}

.product-description #small-print {
	padding-top: 80px;
}

.product-description .animated-button {
	margin-top: 40px;
}


.page-installation-guide .animated-button {
	margin-top: 60px;
}

/* * * * * * * * * * * * * * * * * * 

News Archive

* * * * * * * * * * * * * * * * * */

.news {
	margin-top: 80px;
}

.news-archive-outer {
	border-radius: 60px 0;
	overflow: hidden;	
}

.news-info {
	margin-top: 20px;
}

#news-date {
	margin-bottom: 5px;
	font-size: 1.4rem;
	line-height: 1;
}

#news-title {
	font-family: 'Forehands Rounded';
    font-weight: bold;
    font-style: normal;
	font-size: 2.0rem;
	letter-spacing: 0.04rem;
	line-height: 1;
	margin-bottom: 40px;
	text-wrap: balance;
}


/* * * * * * * * * * * * * * * * * * 

News Single

* * * * * * * * * * * * * * * * * */

.single-news .news-description h1 {
    margin-bottom: 30px;
}

.single-news .news-description .make-sticky {
    margin-bottom: 20px;
}

.single-news .news-description {
	margin-bottom: 130px;
}

.single-news .news-description h3 {
    padding-top: 30px;
}

.single-news .news-description img {
    border-radius: 80px 0;
    margin-top: 30px;
    margin-bottom: 50px;
}

.single-news .news-description img + h3 {
	padding-top: 0;
}


.single-news .news-description ul {
	list-style-type: none;
    padding-left: 14px;
}

.single-news .news-description ul li:before {
	content: "•";
	margin-left: -14px;
	position: absolute;
}

.single-news .news-description ol {
    margin-left: 18px;
}

.single-news .news-description ol li {
    padding-left: 5px;
}

/* Other Stories */

.other-news-slider .slick-track {
	margin-left: 0;
	margin-right: 0;
}

@media (min-width: 768px) {

	.other-news-slider .slick-slide {
		margin-right: 30px;
	}

	.other-news-slider .slick-list {
		margin-right:-30px;
	}
}

#news-image-wrap img {
	border-radius: 60px 0;	
}

/* * * * * * * * * * * * * * * * * * 

Sales Page

* * * * * * * * * * * * * * * * * */

#sales-form {
	margin-top: 80px;
	margin-bottom: 80px;
}

#sales-form form p {
	font-size: 1.3rem
}

#sales-form form .form-small  {
	font-size: 1.1rem;
}

@media (min-width: 576px) { 
	#sales-form form p {
		font-size: 1.4rem
	}

	#sales-form form .form-small  {
		font-size: 1.2rem;
	}
}

@media (min-width: 992px) { 
	#sales-form form p {
		font-size: 1.6rem
	}

	#sales-form form .form-small  {
		font-size: 1.3rem;
	}
}

.order-details {
	margin-top: 80px;
}

.order-quantity {
	margin-bottom: 20px;
}

.order-quantity .col-3.col-md-2 {
	text-align: center;
}


.made-to-order {
	margin-bottom: 30px;
}

/* * * * * * * * * * * * * * * * * * 

Contact Page

* * * * * * * * * * * * * * * * * */

.contact-details {
	font-size: 2.0rem;
	line-height: 1;
	color: #222222;
	/*margin-bottom: 2.0rem;*/
}

.contact-details p {
	margin-bottom: 2.0rem;
}

.contact-details a {
	line-height: 1.6;
}

.contact-details #forward {
	display: none;
}

.contact-details ul.social-links {
	margin-top: 20px;
	margin-bottom: 100px;
}

.contact-details ul.social-links li {
	margin-right: 10px;
	padding-left: 0;
}

.page-contact form .row {
	margin-bottom: 40px;
}




/* * * * * * * * * * * * * * * * * * 

FORMS

* * * * * * * * * * * * * * * * * */

form p {
  color: #222222;
}

input[type="text"],
input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7-textarea {
	padding: 6px 0px;
	background-color: transparent;
	border: none;
	border-bottom: 1px solid rgba(34, 34, 34, 0.2);
	box-shadow: none;
	box-sizing: border-box;
	margin-bottom: 30px;
	width: 100%;
	height: 25px;
}

.wpcf7-textarea {
	min-height: 250px;
	resize: none;
	margin-bottom: 10px;
}

form,
form p {
	margin-bottom: 0;
}


input[type="text"]:focus,
input[type="email"]:focus {
	border: none;
	border-bottom: 1px solid #222222;

}

input[type="submit"] {
	color: #98cb53;
	font-size: 14px;
	border: 0;
	padding: 0;
	background-color: transparent;
}

.wpcf7-submit:hover {
	color: #fcfcfc !important;
}

.wpcf7-spinner {
  display: none !important;
  visibility: hidden !important;
}

div.wpcf7 .ajax-loader {
	display: none;
}


.wpcf7-turnstile {
	margin-bottom: 30px;
}


/* * * * * * * * * * * * * * * * * * 

FOOTER

* * * * * * * * * * * * * * * * * */



#footer {
	position: relative;
	margin-top: 0;
	padding-top: 40px;
	text-align: left;
	color: #fcfcfc;
	background-color: #194072;
	z-index: unset;
	padding-bottom: 30px;
}


#footer .strapline,
#footer .patent {
	margin-top: 40px;
	font-family: 'Forehands Rounded';
	font-weight: bold;
	font-style: normal;
	font-size: 1.8rem;
	letter-spacing: 0.04rem;
}

#footer .patent {
	margin-top: 30px;
}

.footer-title {
	font-family: 'Forehands Rounded';
	font-weight: bold;
	font-style: normal;
	font-size: 1.4rem;
	letter-spacing: 0.04rem;	
}

#footer-contact,
#footer-products {
	padding-right: 40px;
}

#footer-contact,
#footer-products,
#footer-company {
	font-size: 14px;
}

#footer-contact a {
	color: #fcfcfc;
	text-decoration: none;
}

#footer-links {
	font-size: 14px;
}

#menu-products li,
#menu-company li {
	margin-bottom: 10px;
}

.footer-menu {
	padding-left: 0;
}

.footer-menu li {
	list-style: none;
	padding-left: 0;
}

.footer-menu a {
	color: #fcfcfc;
	text-decoration: none;
}

#footer .line-break {
	background-color: rgba(252, 252, 252, 0.2);
	margin-top: 40px;
}

#footer-signoff {
	margin-top: 30px;
}

#footer-signoff a {
	color: #fcfcfc;
}

#footer p.copyright {
	margin-bottom: 0;
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-variation-settings: "wdth" 100;
	font-size: 12px;
	line-height: 21px;
}

#footer p.copyright a {
    text-decoration: none;
}

#footer-signoff #accreditations{
	text-align: left;
	margin-bottom: 30px;
}

@media (min-width: 768px) { 
	#footer-signoff #accreditations{
		text-align: right;
		margin-bottom: 0;
	}
}

#footer-signoff #accreditations img {
    width: auto;
    height: 100px;
    max-width: 100px;
	margin-right: 20px;
}

#footer-signoff #accreditations img:last-of-type {
	margin-right: 0;
}





/* * * * * * * * * * * * * * * * * * 

404 Page

* * * * * * * * * * * * * * * * * */


body.error404 #page {
	padding-top: 125px;
}

.FourOFour {
	height: calc(100vh - 125px);
}


/* 404 Text */

#error-text {
	text-align: center;
	margin: 50px 0 0 0;
}

@media (min-width: 768px) {
	#error-text {
	text-align: center;
	margin: auto 0 auto 0;
	}
}

#error-text #fof {
	font-size: 1.6rem;
	font-weight: 600;
	margin-bottom: 3rem;
}

#error-text h1 {
	font-size: 10rem;
	margin-bottom: 2.2rem;
}

#error-text p {
	font-size: 1.8rem;
	margin-bottom: 3rem;	
}


/* Face */

.face {
  display: block;
  width: 12em;
  height: auto;
}

@media (min-width: 768px) {
	.face {
	  width: 20em;
	}
}

.face g {
	stroke: #98cb53;
}
	
.face__eyes, .face__eye-lid, .face__mouth-left, .face__mouth-right, .face__nose, .face__pupil {
  animation: eyes 1s 0.3s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
.face__eye-lid, .face__pupil {
  animation-duration: 4s;
  animation-delay: 1.3s;
  animation-iteration-count: infinite;
}
.face__eye-lid {
  animation-name: eye-lid;
}
.face__mouth-left, .face__mouth-right {
  animation-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
}
.face__mouth-left {
  animation-name: mouth-left;
}
.face__mouth-right {
  animation-name: mouth-right;
}
.face__nose {
  animation-name: nose;
}
.face__pupil {
  animation-name: pupil;
}

/* Animations */
@keyframes eye-lid {
  from, 40%, 45%, to {
    transform: translateY(0);
  }
  42.5% {
    transform: translateY(17.5px);
  }
}
@keyframes eyes {
  from {
    transform: translateY(112.5px);
  }
  to {
    transform: translateY(15px);
  }
}
@keyframes pupil {
  from, 37.5%, 40%, 45%, 87.5%, to {
    stroke-dashoffset: 0;
    transform: translate(0, 0);
  }
  12.5%, 25%, 62.5%, 75% {
    stroke-dashoffset: 0;
    transform: translate(-35px, 0);
  }
  42.5% {
    stroke-dashoffset: 35;
    transform: translate(0, 17.5px);
  }
}
@keyframes mouth-left {
  from, 50% {
    stroke-dashoffset: -102;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes mouth-right {
  from, 50% {
    stroke-dashoffset: 102;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes nose {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(0, 22.5px);
  }
}










