:root {
    --swiper-theme-color: #fa9b3f;
	--swiper-navigation-size: 32px;
}
*,
*:before,
*:after {
	box-sizing: border-box;
	margin: 0;
	padding: 0
}
*:focus {
	outline: none;
}
html{
	font-size: 20px;
	line-height: 31px;
}
body{
	font-family: 'Montserrat', sans-serif;
	color: #000;
	position: relative;
}
h1,
h2,
h3,
h4,
h5{
	margin: 0;
	font-family: 'Bree Serif', serif;
}
a{
	text-decoration: none;
}
ul{
	list-style: none;
	padding: 0;
	margin: 0;
}
img{
	max-width: 100%;
	height: auto;
	display: block;
	align-self: center;
}
select,
input,
textarea,
button[type="submit"]{
	appearance: none;
	border-radius: 0;
	outline: none;
}
input[type="submit"],
button {
	cursor: pointer;
	border: 0;
}
::placeholder {
	opacity: 1;
	line-height: normal;
}
main{
    overflow: hidden;
}
.container {
	width: 1410px;
	max-width: 100%;
	margin: 0 auto;
	padding: 0px 15px;
}
.default-content .container{
	width: 1030px;
}
.text-left {
	text-align: left;
}
.text-center {
	text-align: center;
}
.text-center-important {
	text-align: center !important;
}
.text-right {
	text-align: right !important;
}
.text-justify {
	text-align: justify;
}
.uppercase {
	text-transform: uppercase;
}
.capitalize {
	text-transform: capitalize;
}
.clickable {
	cursor: pointer;
}
.flex {
	display: flex;
}
.inline-flex {
	display: inline-flex;
}
.a-start {
	align-items: flex-start;
}
.a-center {
	align-items: center;
}
.a-end {
	align-items: flex-end;
}
.j-start {
	justify-content: flex-start;
}
.j-center {
	justify-content: center;
}
.j-end {
	justify-content: flex-end;
}
.j-between {
	justify-content: space-between;
}
.j-around {
	justify-content: space-around;
}
.j-evenly {
	justify-content: space-evenly;
}
.flex.wrap,
.inline-flex.wrap {
	flex-wrap: wrap;
}
.flex.column {
	flex-direction: column;
}
.flex>.half-third {
	flex-basis: 16.667%;
	flex-grow: 0;
	max-width: 16.667%;
}
.flex>.third {
	flex-basis: 33.333%;
	flex-grow: 0;
	max-width: 33.333%;
}
.flex>.half {
	flex-basis: 50%;
	flex-grow: 0;
}
.flex>.two-thirds {
	flex-basis: 66.667%;
	flex-grow: 0;
	max-width: 66.667%;
}
.flex>.full {
	flex-basis: 100%;
}
.button{
	display: block;
	font-weight: bold;
	background-color: #fa9b3f;
	transition: all .3s;
}
.button.flex{
	display: flex;
}
.button:hover{
	background-color: #e68425;
}
.gradient-text{
	background: -webkit-linear-gradient(top, rgba(54,201,155,1) 0%, rgba(54,201,155,1) 23%, rgba(41,166,156,1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.green-gradient{
	background: rgb(77,185,181);
	background: linear-gradient(127deg, rgba(77,185,181,1) 0%, rgba(54,202,155,1) 100%);
}
.wow:not(.wow-done){
    opacity: 0;
}

.mx-auto{
	margin-left: auto;
	margin-right: auto;
}
.fit{
	max-width: 100%;
}
.inline-block{
    display: inline-block;
}
.checkbox {
	position: relative;
	padding-left: 27px;
	cursor: pointer;
	font-size: 1em;
	user-select: none;
}
.checkbox + .checkbox{
	margin-left: 42px;
}
.checkbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.checkbox .checkmark {
	position: absolute;
	left: 0;
    height: 17px;
    width: 17px;
    background-color: #fff;
    border: 2px solid #ebebeb;
}
.checkbox:hover input ~ .checkmark {
	background-color: #fff;
}
.checkbox input:checked ~ .checkmark {
	background-color: #fa9b3f;
	border-color: #fa9b3f;
}
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}
.checkbox input:checked ~ .checkmark:after {
	display: block;
}
.checkbox .checkmark:after {
    left: 4px;
    top: 0px;
    width: 6px;
    height: 11px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button,
.product-cart-quantity input::-webkit-outer-spin-button,
.product-cart-quantity input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	-moz-appearance: none;
	margin: 0;
}
.disabled,
[disabled]{
	pointer-events: none;
}
.counter{
	color: #fff;
	border-radius: 50%;
	background-color: #fa9b3f;
	font-weight: 600;
}


.date.picker.disabled{
	pointer-events: none;
}
.datepicker{
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	line-height: 31px;
	font-weight: 500;
	background-color: transparent;
}
.datepicker--nav,
.datepicker--nav-title i{
	border: none;
	color: #333333;
	font-weight: 600;
}
.datepicker--nav-action,
.datepicker--cell.datepicker--cell-day {
    border-radius: 50%;
}
.datepicker--nav-action:hover,
.datepicker--nav-title:hover,
.datepicker--nav-title:hover i,
.datepicker--cell.-focus- {
    background: #29a69c;
	color: #fff !important;
}
.datepicker--cell.-selected-,
.datepicker--cell.-selected-.-current-{
	background-color: #fa9b3f;
	color: #fff;
	border-color: #fa9b3f;
}
.datepicker--cell.-current-{
	color: #39a192;
	border: 1px solid #39a192;
}
.datepicker--nav-action:hover path{
    stroke: #fff;
}
.datepicker--days-names{
	margin-top: 0;
    border-bottom: 1px solid #ececec;
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(250,250,250,1) 100%);
}
.datepicker--day-name{
	color: #333333;
	font-weight: 600;
}
.datepicker-inline .datepicker{
	margin: 0 auto;
	border: none;
}
.time-picker{
	margin-left: 40px;
	width: 190px;
}
/* Top Bar */
.top-bar{
	background-color: #39a192;
	position: relative;
	top: 0;
	border-bottom: 2px solid #f79c43;
	color: #fff;
	min-height: 65px;
	max-height: 200px;
	overflow: hidden;
	padding: 6px 60px 7px;
	transition: max-height .3s;
}
.top-bar.out{
	max-height: 0;
	min-height: inherit;
	padding: 0;
	border: none;
}
.top-bar-close{
	position: absolute;
	right: 42px;
	margin-right: -10px;
	z-index: 1;
}
.top-bar-close span{
	padding: 10px;
	display: block;
}
.top-bar-text a{
	color: #fff;
}

/* Side Nav */
.side-nav{
	position: fixed;
	background-color: #39a192;
	border-left: 2px solid #f79c43;
	height: 100vh;
	top: 0;
	right: -100%;
	z-index: 999;
	transition: right 0.3s ease-in-out;
	color: #fff;
}
.side-nav-on .side-nav{
	right: 0;
}
html.side-nav-on,
.side-nav-on body {
    overflow: hidden;
}
.sn-overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 99;
    pointer-events: none;
	background-color: rgba(255,255,255,0);
	transition: background-color 0.3s ease-in-out;
	overflow: auto;
}
.side-nav-on .sn-overlay{
    background-color: rgba(0,0,0,0.6);
	pointer-events: all;
}
.sn-inner{
	padding: 15px 40px;
}
.sn-header{
	margin-bottom: 20px;
}
.side-nav li{
	line-height: 24px;
}
.side-nav li.larger{
	line-height: 40px;
}
.side-nav a,
.side-nav span{
	color: #fff;
	font-size: 15px;
}
.side-nav li.larger > a,
.side-nav li.larger > span{
	font-size: 20px;
}
.side-nav .has-sub ul{
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s;
}
.side-nav .has-sub.sub-active ul{
    max-height: 100px;
    padding-bottom: 10px;
}
.side-nav .has-sub > span:after,
.side-nav .has-sub > a:after{
    content: '';
    display: inline-block;
    width: 14px;
    height: 8px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
	background-image: url(../images/down-carret.png);
    filter: brightness(0) invert(1);
    margin-left: 4px;
    vertical-align: middle;
    transition: transform .5s;
}
.side-nav .has-sub.sub-active > span:after,
.side-nav .has-sub.sub-active > a:after{
    transform: rotate(-180deg);
}
.side-nav .has-sub ul li{
    padding-left: 20px;
}

/* Header nav */

body > nav .sticky-nav-wrapper{
	padding-top: 28px;
}
body.white-nav > nav{
	margin-bottom: -104px;
}
body > nav .container{
	width: 1380px;
}
nav .ham{
    height: 31px;
    position: relative;
	/*margin-left: 70px;*/
	margin-left: 30px;
}
nav .ham .ham-icon,
nav .ham .ham-icon:before,
nav .ham .ham-icon:after{
    height: 6px;
    background-color: #000;
	transition: all .3s ease-in-out;
}
nav .ham .ham-icon{
    width: 41px;
}
nav .ham .ham-icon:before,
nav .ham .ham-icon:after {
    content: '';
    width: 100%;
    position: absolute;
}
nav .ham .ham-icon:before{
	top: 0;
}
nav .ham .ham-icon:after {
	bottom: 0;
}
.side-nav-on nav .ham .ham-icon{
	background-color: transparent;
}
.side-nav-on nav .ham .ham-icon:before{
    transform: rotate(45deg);
    top: 11.5px;
}
.side-nav-on nav .ham .ham-icon:after {
    transform: rotate(-45deg);
    bottom: 13.5px;
}
.main-menu li{
	/*margin-right: 48px;*/
	margin-right: 30px;
}
.main-menu li:last-child{
	margin-right: 37px;
}
.main-menu a,
.main-menu span,
.main-menu .has-sub a{
	font-size: 17px;
	font-weight: bold;
	color: #000;
	transition: color .3s;
}
.main-menu .has-sub ul a{
    font-size: 12px;
    font-weight: 600;
}
.main-menu a:hover,
.white-nav .main-menu a:hover,
.main-menu span:hover,
.white-nav .main-menu span:hover,
.footer-menu a:hover,
.main-menu .has-sub a:hover,
.white-nav .main-menu .has-sub a:hover{
	color: #fa9b3f;
}
nav .cart-icon{
	position: relative;
}
nav .cart-icon .item-counter{
	width: 30px;
	height: 30px;
	position: absolute;
	top: -9px;
	right: -18px;
	font-size: 16px;
}
nav .cart-icon .item-counter:before{
	content: attr(data-count);
}
nav .cart-icon .item-counter[data-count="0"]{
	opacity: 0;
}
nav.stuck .ham .ham-icon,
nav.stuck .ham .ham-icon:before,
nav.stuck .ham .ham-icon:after,
.white-nav nav .ham .ham-icon,
.white-nav nav .ham .ham-icon:before,
.white-nav nav .ham .ham-icon:after{
    background-color: #fff;
}
nav.stuck .logo img,
nav.stuck .cart-icon img,
.white-nav nav .logo img,
.white-nav nav .cart-icon img{
	filter: brightness(0) invert(1);
}
.white-nav nav .cart-icon .minicart img{
	filter: none;
}
nav.stuck .main-menu a,
.white-nav .main-menu a,
.white-nav .main-menu span{
	color: #fff;
}
.white-nav .main-menu .has-sub ul a{
    color: #000;
}
.side-nav-on .white-nav nav .ham .ham-icon{
	background-color: transparent;
}
.main-menu .has-sub{
    position: relative;
}
.main-menu .has-sub > span,
.main-menu .has-sub > a{
    align-self: flex-end;
}
.main-menu .has-sub > span:after,
.main-menu .has-sub > a:after{
    content: '';
    display: inline-block;
    width: 14px;
    height: 8px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
	background-image: url(../images/down-carret.png);
    filter: brightness(0) invert(1);
    margin-left: 4px;
    vertical-align: middle;
}
.main-menu .has-sub:hover > span:after,
.main-menu .has-sub:hover > a:after{
    filter: none;
}
.main-menu .has-sub ul{
    position: absolute;
    z-index: 2;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.main-menu .has-sub:hover ul{
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.main-menu .has-sub ul:before{
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 15px 15px 15px;
    border-color: transparent transparent #ffffff transparent;
    margin: 0 auto;
}
.main-menu .has-sub ul li{
    text-align: center;
    line-height: 12px;
    padding: 12px 50px;
    background-color: #fff;
    margin: 0;
}
.main-menu .has-sub ul li:first-child{
    padding-top: 25px;
}
.main-menu .has-sub ul li:last-child{
    padding-bottom: 25px;
}
.main-menu .has-sub ul a{
    white-space: nowrap;
}

/* Minicart */

.minicart{
	position: absolute;
	right: -25px;
	font-size: 12px;
	padding-top: 25px;
	opacity: 0;
	transition: all .3s;
	cursor: default;
	pointer-events: none;
}
.minicart.animated{
	pointer-events: all;
}
.cart-icon:hover .minicart{
	opacity: 1;
	pointer-events: all;
	z-index: 9999;
}
.minicart-resp{
	position: relative;
	background-color: #fff;
	width: 300px;
}
.minicart-resp:after{
	content: '';
	display: block;
	width: 22.6px;
	height: 22.6px;
    border-width: 1px;
    border-color: #efefef;
    border-top-style: solid;
    border-left-style: solid;
	transform: rotate(45deg);
	background-color: #fff;
	position: absolute;
	top: -11px;
	right: 30px;
}
.mc-row{
    border-width: 1px;
    border-color: #efefef;
    border-top-style: solid;
    border-left-style: solid;
    border-right-style: solid;
	font-size: 1em;
	line-height: 1.5;
	padding: 30px 25px;
}
.mc-row:last-child{
    border-bottom-style: solid;
}
.mc-row .mc-image{
    width: 56px;
    height: 51px;
    flex-shrink: 0;
    flex-grow: 0;
    position: relative;
    border: 1px solid #f2f2f2;
    border-radius: 3px;
	margin-right: 24px;
	background-color: #fff;
}
.mc-row .mc-image .mc-counter{
	position: absolute;
	font-size: 13.5px;
	width: 25px;
	height: 25px;
	top: -10px;
	right: -10px;
}
.mc-row p{
	font-weight: 500;
}
.minicart .button{
	color: #fff;
	font-size: 1.33em;
	height: 40px;
	line-height: 40px;
	width: 100%;
}
/* Sticky Bar */

.sb-inner{
	position: relative;
	z-index: 3;
	box-shadow: 0px -3px 11px 0px rgba(0, 0, 0, 0.2);
}
.sb-inner.stuck,
.inner-sticky .sticky-bar{
	position: fixed;
	left: 0;
	width: 100%;
}
.inner-sticky .sticky-bar{
	bottom: -100%;
	transition: bottom .5s;
	background-color: #fff;
	z-index: 3;
}
.sb-inner.stuck,
.inner-sticky .sticky-bar.stuck{
	bottom: 0;
}
.sb-inner:before,
.sb-inner:after{
	content: '';
	display: block;
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	z-index: -1;
}
.sb-inner:before{
	left: 0;
	background-color: #4db9b5;
}
.sb-inner:after{
	right: 0;
	background-color: #fff;
}
.sb-inner .container{
	width: 100%;
}
.sb-inner .container  .flex{
	margin: 0 -15px;
}
.bar-item{
	flex-grow: 1;
	flex-shrink: 1;
	min-height: 105px;
	flex-basis: 33.333%;
	color: #fff;
}
.bar-item.bi-1{
	background-color: #4db9b5;
}
.bar-item.bi-2{
	background: linear-gradient(135deg, rgba(77,185,181,1) 22%,rgba(54,202,155,1) 100%);
	position: relative;
}
.bar-item.bi-2:before{
	content: '';
	display: block;
	width: 1px;
	height: calc(100% - 34px);
	position: absolute;
	left: 0;
	background-color: #3aa8a4;
}
.bar-item.bi-3{
	background-color: #fff;
	color: #000;
}
.bar-item.bi-3 small{
	text-decoration: underline;
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
}
.bar-item.bi-3.online p.uppercase{
	color: #0fdb00;
}
.bar-item.bi-3.offline img{
	filter: grayscale(1);
}
.bar-item.bi-3.offline p.uppercase{
	color: #a6a6a6;
}
.bar-item.bi-3.offline .sb-text p:last-child{
	display: none;
}
.bar-item .sb-icon{
	margin-right: 25px;
}

/* Inner header */

.inner-header{
	height: 400px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	color: #fff;
	font-size: 20px;
	padding-top: 3em;
}
.inner-header h1{
	font-size: 3em;
	line-height: 1.366;
}
.inner-header p{
	line-height: 1.4;
}
.inner-header p.big{
	margin-top: 10px;
	font-size: 25px;
}
.inner-header .button{
    width: 306px;
    height: 71px;
    line-height: 71px;
	margin-top: 1.75em;
	display: inline-block;
}

/* Testimonials */

.testiomonials{
	color: #fff;
	background-color: #39a192;
	padding: 45px 0 60px;
}
.testiomonials .star{
	margin: 0 5px;
}
.testiomonials .quote{
	width: 840px;
	max-width: 100%;
	margin: 20px auto 0;
}
.testiomonials .quote p{
	font-size: 32px;
	line-height: normal;
	margin-bottom: 20px;
}
.testiomonials .quote .who{
	font-size: 20px;
	font-weight: bold;
}

.testiomonials .swiper-container {
	overflow: visible;
}
.testiomonials .swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: -20px;
}

/* Lead Icons */

.lead-icons{
	width: 994px;
	max-width: 100%;
	margin: 0 auto;
}
.lead-icon{
    padding: 0 10px 14px;
    height: 163px;
    flex-basis: 222px;
	border: 1px solid #efefef;
	border-radius: 12px;
	margin: 0 12px 33px;
	background-color: #fff;
	transition: all .3s;
}
.lead-icon.coming-soon{
    position: relative;
    overflow: hidden;
}
.lead-icon.coming-soon:before{
    display: block;
    position: absolute;
    content: 'Coming Soon';
    color: #fff;
    background-color: #ed9e52;
    height: 30px;
    line-height: 30px;
    width: 140px;
    transform: rotate(35deg);
    top: 12px;
    right: -34px;
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    font-size: 11px;
    text-align: center;
}
.lead-icon:hover{
	box-shadow: 0px -5px 65px 0px rgba(0, 0, 0, 0.11);
	transform: translateY(-10px);
}
.lead-icon p{
	font-size: 14.5px;
	line-height: 19px;
}
.lead-icon .li-container {
	flex-grow: 1;
}
/* CTA */
@keyframes moveBubble {
	from {
		transform: translateY(0);
	}
	to {
		transform: translateY(-20px);
	}
}
.final-cta{
	padding-bottom: 155px;
	padding-top: 90px;
}
.final-cta .call-bubble{
	transform: translateY(0);
	animation-direction: alternate;
	animation-duration: 2s;
	animation-name: moveBubble;
	animation-iteration-count: infinite;
}
.final-cta .call-guy{
	margin-top: -6px;
}
.final-cta h2{
	font-weight: normal;
	margin-top: 22px;
	margin-bottom: 48px;
	line-height: normal;
	font-size: 60px;
}
.final-cta h2 span{
	font-weight: 600;
	font-size: 43px;
	display: block;
}
.final-cta a,
.final-cta .button{
	color: #fff;
	font-weight: bold;
	height: 95px;
	width: 410px;
	font-size: 38px;
}
.final-cta a span{
	margin-left: 33px;
}
/* Footer */

footer{
	padding-bottom: 140px;
}
footer .with-border{
	border-top: 1px solid #a9a9a9;
	padding-top: 54px;
}
.footer-social li + li{
    margin-left: 15px;
}
.footer-menu ul{
	width: 700px;
	max-width: 100%;
	margin-top: 25px;
	margin-bottom: 30px;
}
.footer-menu li{
	padding-left: 23px;
	margin-left: 20px;
	position: relative;
}
.footer-menu li:before{
	content: '';
	display: block;
	width: 3px;
	height: 18px;
	position: absolute;
	left: 0;
	background-color: #000;
}
.footer-menu li:first-child,
.footer-menu li:nth-child(6){
	padding-left: 0;
	margin-left: 0;
}
.footer-menu li:first-child:before,
.footer-menu li:nth-child(6):before{
	display: none;
}
.footer-menu a{
	font-size: 17px;
	color: #000;
	font-weight: 600;
	transition: color .3s;
}
.copyiright {
	font-size: 19px;
}
.fs-image{
	margin-right: 48px;
}

/* Popups */

html.popup-on,
.popup-on body {
    overflow: hidden;
}
.popup{
	position: fixed;
	top: 0;
	left: 0;
	height: calc(var(--vh, 1vh) * 100);
	width: 100%;
	z-index: 9;
}
.popup-overlay{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.67);
	z-index: -1;
	cursor: pointer;
}
.popup-inner{
	position: relative;
}
.popup-close,
.popup-not-interested{
	position: absolute;
	left: 0;
	width: 100%;
}

/* Loader */
@keyframes ldio-ipgit4kffc8 {
	0% {
		transform: rotate(0);
	}
	100% {
		transform: rotate(360deg);
	}
}
.ldio-ipgit4kffc8 div {
	box-sizing: border-box!important;
}
.ldio-ipgit4kffc8 > div {
	position: absolute;
	width: 72px;
	height: 72px;
	top: 14px;
	left: 14px;
	border-radius: 50%;
	border: 8px solid #000;
	border-color: #50b7b9 transparent #50b7b9 transparent;
	animation: ldio-ipgit4kffc8 1s linear infinite;
}
.ldio-ipgit4kffc8 > div:nth-child(2),
.ldio-ipgit4kffc8 > div:nth-child(4) {
	width: 54px;
	height: 54px;
	top: 23px;
	left: 23px;
	animation: ldio-ipgit4kffc8 1s linear infinite reverse;
}
.ldio-ipgit4kffc8 > div:nth-child(2) {
	border-color: transparent #34cc99 transparent #34cc99
}
.ldio-ipgit4kffc8 > div:nth-child(3) {
	border-color: transparent;
}
.ldio-ipgit4kffc8 > div:nth-child(3) div {
	position: absolute;
	width: 100%;
	height: 100%;
	transform: rotate(45deg);
}
.ldio-ipgit4kffc8 > div:nth-child(3) div:before,
.ldio-ipgit4kffc8 > div:nth-child(3) div:after {
	content: "";
	display: block;
	position: absolute;
	width: 8px;
	height: 8px;
	top: -8px;
	left: 24px;
	background: #50b7b9;
	border-radius: 50%;
	box-shadow: 0 64px 0 0 #50b7b9;
}
.ldio-ipgit4kffc8 > div:nth-child(3) div:after {
	left: -8px;
	top: 24px;
	box-shadow: 64px 0 0 0 #50b7b9;
}

.ldio-ipgit4kffc8 > div:nth-child(4) { border-color: transparent; }
.ldio-ipgit4kffc8 > div:nth-child(4) div {
	position: absolute;
	width: 100%;
	height: 100%;
	transform: rotate(45deg);
}
.ldio-ipgit4kffc8 > div:nth-child(4) div:before,
.ldio-ipgit4kffc8 > div:nth-child(4) div:after {
	content: "";
	display: block;
	position: absolute;
	width: 8px;
	height: 8px;
	top: -8px;
	left: 15px;
	background: #34cc99;
	border-radius: 50%;
	box-shadow: 0 46px 0 0 #34cc99;
}
.ldio-ipgit4kffc8 > div:nth-child(4) div:after {
	left: -8px;
	top: 15px;
	box-shadow: 46px 0 0 0 #34cc99;
}
.loadingio-spinner-double-ring-dvb9f4g23ue {
	width: 100px;
	height: 100px;
	display: inline-block;
	overflow: hidden;
	background: none;
}
.ldio-ipgit4kffc8 {
	width: 100%;
	height: 100%;
	position: relative;
	transform: translateZ(0) scale(1);
	backface-visibility: hidden;
	transform-origin: 0 0;
}
.ldio-ipgit4kffc8 div {
	box-sizing: content-box;
}
/* Breadcrumb */
.breadcrumb{
	font-size: 14px;
	color: #a6a6a6;
	padding: 18px 0;
	text-transform: uppercase;
}
.breadcrumb a{
	text-decoration: underline;
	color: #a6a6a6;
}
.breadcrumb .sep{
	color: #39a192;
	margin: 0 5px;
}

/* Default Content */
.default-content {
	font-size: 18px;
	padding-bottom: 70px;
}
.default-content h1{
	font-size: 2.77em;
	line-height: 1.64;
	margin-bottom: 0.3em;
}
.default-content p,
.default-content ul{
	line-height: 1.66;
}
.default-content p,
.default-content li{
	margin-bottom: 1.66em;
}
.default-content p:last-child{
	margin-bottom: 0;
}
.default-content p.large-text{
	font-size: 1.22em;
	line-height: 1.63;
	font-weight: 600;
	margin-bottom: 2em;
}
.default-content ul{
	list-style: disc;
	padding-left: 3.88em;
}
.default-content a{
	text-decoration: underline;
	color: #4db9b5;
}
.default-content a:hover{
	color: #fa9b3f;
}

/* Contact Icons */
.contact-icons{
	padding-top: 35px;
	font-size: 20px;
}
.ci-box{
	margin: 20px 0;
}
.ci-box-1,
.ci-box-3{
	flex: 1;
	padding: 0 30px;
}
.ci-box-2{
	position: relative;
	flex-basis: 540px;
}
.ci-box-2:before,
.ci-box-2:after{
	content: '';
	display: block;
	position: absolute;
	width: 1px;
	height: 100px;
	background-color: #a9a9a9;
	top: 50%;
	margin-top: -50px;
}
.ci-box-2:before{
	left: 0;
}
.ci-box-2:after{
	right: 0;
}
.ci-box .ci-image{
	flex-grow: 1;
	margin-bottom: 1em;
}
.ci-box .ci-image img{
	align-self: flex-end;
}
.ci-box .ci-text{
	line-height: 1.4;
}
.ci-box .green{
	font-weight: bold;
	font-size: 1.2em;
	color: #4db9b5;
}
.ci-box a{
	font-weight: 600;
	color: #000;
}
.ci-box a:hover{
	text-decoration: underline;
}
.ci-box .clickable{
	font-weight: 500;
}
/* FAQ rotator */
.faq-rotator {
	font-size: 36px;
}
.fr-heading{
	padding-top: 90px;
}
.fr-heading h1{
	font-size: 1.22em;
	line-height: 1.23;
}
.fr-carousel{
	width: 785px;
	max-width: 100%;
	height: 500px;
	padding: 40px 100px;
	background-color: #fff;
	font-size: 1em;
	margin: 0 auto;
}
.fr-carousel .swiper-container{
	height: 100%;
	position: relative;
}
.fr-carousel .swiper-container:before,
.fr-carousel .swiper-container:after{
	content: '';
	display: block;
	height: 140px;
	width: 100%;
	position: absolute;
	left: 0;
	z-index: 2;
}
.fr-carousel .swiper-container:before{
	background: linear-gradient(to top, rgba(255,255,255,0) 0%,rgba(255,255,255,0.8) 74%,rgba(255,255,255,1) 100%);
	top: 0;
}
.fr-carousel .swiper-container:after{
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,0.8) 74%,rgba(255,255,255,1) 100%);
	bottom: 0;
}
.fr-carousel a{
	color: #000;
	line-height: 1.2777;
}
.fr-carousel .swiper-slide.swiper-slide-active  + .swiper-slide a{
	text-decoration: underline;
}

/* Alternate blocks */

.alternate-blocks{
	position: relative;
	z-index: 1;
	font-size: 20px;
}
.alternate-blocks .half{
	flex-shrink: 0;
	max-width: 50%;
}
.ab-row.green-gradient{
	padding: 96px 0 86px;
	color: #fff;
	margin: -60px 0 -40px;
	z-index: -1;
	position: relative;
}
.ab-row .ab-text{
	padding: 40px 55px 60px 0;
	line-height: 1.5em;
}
.ab-row.green-gradient .ab-text{
	order: 2;
	padding: 40px 0 60px 55px;
}
.ab-row:first-child .ab-text{
	padding-top: 0;
}
.ab-row:last-child .ab-text{
	padding-bottom: 0;
}
.ab-row .ab-text h3{
	font-size: 2em;
	margin-bottom: 1em;
}
.ab-row .ab-text p{
	width: 575px;
	max-width: 100%;
}
.ab-row .ab-text .button{
	color: #fff;
	width: 185px;
	height: 70px;
	line-height: 70px;
	margin-top: 40px;
}
.ab-row .ab-image{
	padding-left: 22px;
}
.ab-row.green-gradient .ab-image{
	padding-left: 15px;
	padding-right: 22px;
}

/* Product list */
.product-list{
	flex-basis: calc(25% - 30px);
	flex-shrink: 0;
	flex-grow: 0;
	border: 1px solid #f3f3f3;
	border-radius: 10px;
	padding: 0 24px 30px;
	margin: 28px 15px;
	justify-content: center;
	min-height: 400px;
	transition: all .3s;
	font-size: 16px;
    color: #000;
    position: relative;
}
.product-list:hover{
	box-shadow: 0px -5px 65px 0px rgba(0, 0, 0, 0.11);
	transform: translateY(-10px);
}
.pl-inner {
    align-items: center;
    justify-content: flex-end;
}
.pl-image {
    flex-grow: 1;
    align-items: center;
}
.pl-details {
    font-size: 1em;
    line-height: 1.5;
}
.pl-name{
    font-weight: bold;
}
.pl-price {
    font-weight: 600;
}
.pl-button{
	margin-top: 17px;
}
.pl-button .button{
    font-weight: bold;
    color: #fff;
    font-size: 0.875em;
    width: 140px;
    height: 40px;
    line-height: 40px;
}
.pl-button.product-page{
	margin-top: 0px;
	margin-left: 20px;
}

.savings-bubble-container {
	position: absolute;
    top: 5px;
    right: 5px;
}

.savings-bubble {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	color: #fff;
	font-size: 22px;
    line-height: 1;
}
.savings-bubble .bubble-save {
	font-weight: 500;
}

.savings-bubble .bubble-save-amount {
	font-size: 1.27em;
	font-weight: 700;
}
.savings-bubble .bubble-save-amount sup{
    font-size: 60%;
}

/* Cart & Checkout */

.cart-contents {
	padding: 40px 25px 20px 0;
}

.cart-contents h1, .cart-summary h1 {
	padding-bottom: 40px;
	border-bottom: 1px solid #c2c2c2;
}

a.site-url, .cart-contents a.site-url {
	color: #39a192;
	font-weight: 600;
}

table.cart-table, div.cart-table-flex {
	width: 100%;
}

table.cart-table th, div.cart-table-flex.cart-table-header {
	color: #a6a6a6;
	font-size: 16.5px;
	font-weight: bold;
	text-transform: uppercase;
}

table.cart-table td, div.cart-table-flex {
	font-size: 17.5px;
}

table.cart-table th, table.cart-table td, div.cart-table-flex {
	padding: 25px 15px 25px 0;
	text-align: left;
}

table.cart-table td a.cart-product-name, div.cart-table-flex a.cart-product-name {
	color: #000;
}

table.cart-table td a.cart-product-name img, div.cart-table-flex a.cart-product-name img {
	float: left;
	margin-right: 15px;
}

table.cart-table td a.removeFromCart, div.cart-table-flex a.removeFromCart {
	display: inline-block;
	margin-top: 15px;
	color: #a6a6a6;
}

table.cart-table td.product-cart-quantity span, div.flex div.product-cart-quantity span {
    width: 25px;
    height: 25px;
    color: #000;
    text-align: center;
    line-height: 28px;
    font-size: 20px;
}

table.cart-table td.product-cart-quantity input, div.flex div.product-cart-quantity input {
    width: 40px;
	height: 37px;
    text-align: center;
    border: 1px solid #c2c2c2;
    border-radius: 2px;
    color: #000;
    font-weight: 600;
    font-size: 17px;
    margin: 0 4px;
}

.cart-success div.flex.cart-table-flex {
	border-top: 1px solid #c2c2c2;
}

.cart-summary {
	padding: 40px 25px 20px 25px;
	background-color: #fafafa;
}

.cart-summary button.button, button.form-button {
	width: 100%;
	margin: 25px 0;
	padding: 20px;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
}
button.button.form-button[disabled]{
    background-color: #b9b9b9;
}
.cart-summary button.button.update-cart {
	padding: 15px;
	background-color: #39a192;
}

table.cart-summary-table td {
	width: 100%;
}

table.cart-summary-table td {
	padding: 25px 0;
	text-align: left;
}

table.cart-summary-table td.summary-total {
	border-top: 1px solid #c2c2c2;
}

.cart-mastec {
	font-size: 1.2em;
	font-weight: 500;
}
.cart-mastec img{
    margin-left: 30px;
}
.checkout-fields {
}

.checkout-fields .form-field {
    margin: 0 22px 22px 0;
    flex-basis: calc(50% - 22px);
}

.checkout-fields .form-field.full {
    flex-basis: calc(100% - 22px);
}

.checkout-fields .form-field.medium {
    flex-basis: calc(33% - 22px);
}

.checkout-fields .form-field.small {
    flex-basis: calc(17% - 22px);
}

.checkout-fields .form-field.shipping-address-check {
	margin-top: 5px;
}

.checkout-fields .form-field label:not(.flex) {
    display: block;
}

.checkout-fields .form-field label.label-for-checkbox {
    position: relative;
    top: -5px;
    display: inline-block;
}

.checkout-fields .form-field input, .checkout-fields .form-field select {
	width: 100%;
    height: 56px;
    padding: 0 10px;
    border: 1px solid #c2c2c2;
    border-radius: 12px;
    transition: all .3s;
    font-size: 17.5px;
    font-weight: 500;
    text-align: left;
    color: #181818;
}

.checkout-fields .form-field input.is-invalid, .checkout-fields .form-field select.is-invalid {
    border-color: #dc3545;
	padding-right: calc(1.5em + .75rem);
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

.checkout-fields .form-field input[type="checkbox"], .checkout-fields .form-field input[type="radio"] {
	display: none;
	width: 0;
	height: 0;
	margin: 0;
	padding: 0;
	border-width: 0;
}

.checkout-fields .form-field input[type="radio"].checkout-availability-date {
	display: inline-block;
	width: 1px;
	height: 1px;
	margin: 0;
	padding: 0;
	opacity: 0;
}

.checkout-fields .form-field input[type="checkbox"] + label,
.checkout-fields input[type="checkbox"] + span.check,
.checkout-fields .form-field input[type="radio"] + label {
	display: inline-block;
	width: 25px;
    height: 25px;
    padding: 0;
    border: 1px solid #c2c2c2;
    border-radius: 12px;
    transition: all .3s;
    font-size: 17.5px;
    font-weight: 500;
    text-align: left;
    color: #828282;
}

.checkout-fields .form-field input[type="checkbox"] + label:after,
.checkout-fields input[type="checkbox"] + span.check:after,
.checkout-fields .form-field input[type="radio"] + label:after {
    content: ' ';
    display: inline-block;
    font-size: 1.6em;
}

.checkout-fields .form-field input[type="checkbox"]:checked + label:after,
.checkout-fields input[type="checkbox"]:checked + span.check:after,
.checkout-fields .form-field input[type="radio"]:checked + label:after {
    content: '✔';
    display: inline-block;
    font-size: 1.6em;
}

.checkout-fields .form-field span.invalid-feedback {
	width: 100%;
    margin-top: .25rem;
    font-size: 80%;
    color: #dc3545;
}

.checkout-fields .checkout-fields-terms {
	flex-basis: calc(100% - 40px);
	margin-left: 15px;
}

.error-message {
	margin-bottom: 40px;
    color: #dc3545;
}

.success-text {
	width: 100%;
	padding-bottom: 40px;
}

/* New stuff */
.no-show {
	display: none;
}

.width-auto {
	width: auto !important;
}

.padding-left-40 {
	padding-left: 40px !important;
}

.border-top-line {
	border-top: 1px solid #c2c2c2;
}

.line-height-80 {
	line-height: 80px;
}

h1.page-title {
	padding: 40px 0;
}

.products-header h1 {
	font-size: 1.9em;
}

.pl-button .product-list-fake-button {
	width:140px;
	height: 40px;
	line-height: 40px;
}

.text-orange {
	color: #fa9b3f;
}

img.credit-card-icon {
	display: inline-block;
	width: 24%;
	max-width: 66px;
	margin-top: 5px;
}

/* Blog posts - list */

article.blog-post-list .blog-thumb{
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    display: block;
}
article.blog-post-list h4{
    font-size: 30px;
    line-height: normal;
    margin-bottom: 32px;
}
article.blog-post-list a{
    color: #000;
}
article.blog-post-list p{
    font-size: 18px;
    line-height: normal;
}
.blog-post article a{
	text-decoration: underline;
	color: #4db9b5;
}

/* Responsive */
@media screen and (max-width: 1400px){
	.main-menu li{
		margin-right: 30px;
	}
	nav .cart-icon{
		margin-right: 10px;
	}
}
@media screen and (max-width: 1199px){
	.main-menu li{
		margin-right: 15px;
	}
	nav .ham{
		margin-left: 20px;
	}
    .main-menu li:last-child{
        margin-right: 25px;
    }
    .main-menu a,
    .main-menu span{
        font-size: 14px;
    }
	.top-bar{
    	padding: 6px 50px 7px;
	}
	.bar-item{
		font-size: 16px;
		line-height: 20px;
	}
	.bar-item.bi-3 small{
		font-size: 13px;
		line-height: 13px;
	}
	.final-cta h2{
		font-size: 50px;
		margin-bottom: 40px;
	}
	.final-cta h2 span{
		font-size: 38px;
	}
	.final-cta a,
	.final-cta .button {
		height: 80px;
		width: 350px;
		font-size: 33px;
	}
	.final-cta a span {
		margin-left: 25px;
	}
	.footer-menu ul{
		width: 590px;
		margin-top: 20px;
		margin-bottom: 20px;
	}
	.footer-menu a,
	.footer-seal{
    	font-size: 16px;
		line-height: 28px;
	}
	.footer-seal > .flex{
		justify-content: flex-end;
	}
	.fs-image{
		flex-basis: 90px;
		margin-right: 35px;
	}
	.copyiright{
		font-size: 15px;
	}
	.ci-box-2{
		flex-basis: 360px;
	}
	.alternate-blocks{
		font-size: 16px;
	}
	.ab-row.green-gradient{
		padding: 66px 0 56px;
		margin: -40px 0 -20px;
	}
	.ab-row .ab-text{
		padding: 20px 40px 40px 0
	}
	.ab-row.green-gradient .ab-text{
		padding: 20px 0 40px 40px;
	}
	.ab-row .ab-text .button{
		height: 55px;
		line-height: 55px;
		margin-top: 20px;
	}
}
@media screen and (min-width: 992px){
	.mobile-cart {
		display: none !important;
	}
}
@media screen and (max-width: 991px){
	.desktop-cart {
		display: none !important;
	}
	div.flex.cart-table-flex {
		border-bottom: 1px solid #c2c2c2;
	}
	div.flex.cart-table-flex.cart-table-header {
		border-bottom-width: 1px;
	}
	div.flex.cart-table-flex .third .third {
		flex-basis: 100%;
		flex-grow: 0;
		max-width: 100%;
		text-align: right;
	}
	div.flex.cart-table-flex .two-thirds {
		flex-basis: 50%;
		flex-grow: 0;
		max-width: 50%;
	}
	div.flex.cart-checkout, div.flex.cart-payment {
		display: block;
	}
	div.flex.cart-checkout .two-thirds,
    div.flex.cart-payment .two-thirds,
    .cart-success div.flex .two-thirds,
    div.felx .cart-summary.third {
		flex-basis: 100%;
		flex-grow: 0;
		max-width: 100%;
	}
	div.flex.cart-checkout div.flex.checkout-fields,
    div.flex.cart-payment div.flex.checkout-fields {
		display: block;
	}

	.top-bar{
    	padding: 6px 0px 7px;
	}
	.top-bar-close{
		right: 10px;
	}
	.main-menu{
		display: none;
	}
	.bar-item{
		flex-direction: column;
		text-align: center;
	}
	.bar-item .sb-icon{
		width: 25px;
		margin-right: 0;
		margin-bottom: 10px;
	}
	.testiomonials .quote p {
		font-size: 24px;
		margin-bottom: 10px;
	}
	.testiomonials .quote .who{
		font-size: 15px;
	}
	.final-cta {
		padding-bottom: 80px;
		padding-top: 60px;
	}
	footer .with-border{
		flex-wrap: wrap;
		justify-content: center;
	}
	footer .footer-left{
		order: 2;
		text-align: center;
		max-width: 100%;
	}
	.footer-social {
		margin-top: 30px;
	}
	.footer-menu ul{
		justify-content: center;
	}
	footer .footer-right{
		flex-basis: 100%;
	}
	.footer-seal > .flex{
		justify-content: center;
	}
	.contact-icons{
		font-size: 17px;
	}
	.ci-box-1,
	.ci-box-2,
	.ci-box-3{
		padding: 0 15px;
	}
	.ci-box-2{
		flex-basis: auto;
	}
	.faq-rotator{
		font-size: 32px;
	}
	.fr-carousel{
		height: 450px;
	}
	.ab-row.green-gradient {
		padding: 25px 0;
		margin: -10px 0 -10px;
	}
	.ab-row .ab-text{
		padding: 25px 15px 25px 0;
	}
	.ab-row.green-gradient .ab-text{
		padding: 25px 0 25px 15px;
	}
	.ab-row .ab-text h3{
		margin-bottom: 0.5em;
	}
	.ab-row .ab-image{
		padding-left: 15px;
	}
	.ab-row.green-gradient .ab-image{
		padding-left: 0;
		padding-right: 15px;
	}
	.ab-row .ab-text .button {
		height: 45px;
		line-height: 45px;
		margin-top: 20px;
	}
	.product-list{
		flex-basis: calc(33.33% - 30px);
	}
}
@media screen and (max-width: 767px){
	.sticky-bar .container{
		padding: 0;
	}
	.bar-item{
		font-size: 13px;
		line-height: 17px;
		padding: 0 10px;
	}
	.bar-item.bi-3 small {
		font-size: 9px;
		line-height: 9px;
	}
	.testiomonials .quote p {
		font-size: 20px;
		margin-bottom: 10px;
	}
	.testiomonials .quote .who{
		font-size: 14px;
	}
	.final-cta h2{
		font-size: 45px;
		margin-bottom: 35px;
	}
	.final-cta h2 span{
		font-size: 28px;
	}
	.final-cta a,
	.final-cta .button {
		height: 70px;
		width: 330px;
		font-size: 28px;
	}
	.final-cta a span {
		margin-left: 20px;
	}
	.footer-menu ul{
		width: 570px;
	}
	.footer-menu li {
		padding-left: 14px;
		margin-left: 13px;
	}
	.footer-menu li:before{
		width: 2px;
	}
	.default-content{
		font-size: 16px;
	}
	.inner-header{
		font-size: 17px;
	}
	.inner-header .button{
		width: 280px;
		height: 60px;
		line-height: 60px;
	}
	.contact-icons{
		font-size: 16px;
	}
	.contact-icons > .container > .flex{
		flex-wrap: wrap;
	}
	.ci-box-1,
	.ci-box-2,
	.ci-box-3{
		flex: 0;
		flex-basis: 50%;
	}
	.ci-box-2:after{
		width: 0;
	}
	.faq-rotator{
		font-size: 28px;
	}
	.fr-carousel{
		padding: 40px 30px;
	}
	.fr-carousel .swiper-slide a br{
		display: none;
	}
	.alternate-blocks{
		font-size: 15px;
	}
	.ab-row.green-gradient{
		margin: 55px 0 30px;
		padding: 55px 0 30px;
	}
	.alternate-blocks .ab-row > .container > .flex{
		flex-direction: column;
	}
	.alternate-blocks .half{
		flex-basis: auto;
		max-width: 100%;
	}
	.alternate-blocks .half.ab-image{
		justify-content: center;
	}
	.ab-row .ab-text,
	.ab-row:first-child .ab-text,
	.ab-row:last-child .ab-text,
	.ab-row.green-gradient .ab-text{
		padding: 25px 0;
	}
	.ab-row .ab-image{
		padding-left: 0;
	}
	.product-list{
		flex-basis: calc(50% - 30px);
	}
	.pl-name br.show{
		display: block !important;
	}
	.pl-name br{
		display: none;
	}
	.inner-header p.big{
		font-size: 20px;
	}
}
@media screen and (min-width: 568px){
	.mobile{
		display: none !important;
	}
}
@media screen and (max-width: 567px){
	.desktop{
		display: none !important;
	}
	body > nav{
		position: relative;
		z-index: 2;
	}
	body > nav .sticky-nav-wrapper{
		padding-top: 25px;
		transition: background-color .3s;
	}
	body.white-nav > nav {
		margin-bottom: -63px;
	}
	body > nav.stuck .sticky-nav-wrapper,
	body.white-nav > nav.stuck .sticky-nav-wrapper{
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		background-color: #39a192;
		padding-top: 12px;
		padding-bottom: 13px;
		z-index: 3;
	}
	nav .ham{
	    height: 24px;
		margin-left: 30px;
	}
	nav .ham .ham-icon,
	nav .ham .ham-icon:before,
	nav .ham .ham-icon:after{
		height: 4px;
	}
	nav .ham .ham-icon{
		width: 34px;
	}
	nav .logo{
		flex-basis: 150px;
	}
	nav .cart-icon{
		flex-basis: 34px;
		flex-shrink: 0;
	}
	nav .cart-icon .item-counter{
		width: 22px;
		height: 22px;
		top: -6px;
		right: -12px;
		font-size: 14px;
	}
	.bar-item{
		min-height: 62px;
	}
	.bar-item .sb-icon {
		width: 30px;
		margin-bottom: 0;
	}
	.bar-item .sb-text {
		display: none;
	}
	.lead-icon{
		text-align: center;
		flex-basis: calc(50% - 24px);
	}
	.testiomonials{
		padding-bottom: 45px;
	}
	.testiomonials .star{
		flex-basis: 30px;
	}
	.final-cta {
		padding-bottom: 70px;
		padding-top: 45px;
	}
	.final-cta h2{
		font-size: 40px;
		margin-bottom: 30px;
	}
	.final-cta h2 span{
		font-size: 18px;
	}
	footer{
		padding-bottom: 70px;
	}
	footer .with-border{
		padding-top: 45px;
	}
	.footer-seal {
		font-size: 15px;
		line-height: 26px;
	}
	.footer-menu a{
		font-size: 13px;
		line-height: 26px;
	}
	.footer-menu ul{
		width: 350px;
	}
	.footer-menu li,
	.footer-menu li:nth-child(5){
		padding-left: 10px;
		margin-left: 10px;
	}
	.footer-menu li:before{
		left: -1px;
		height: 13px;
	}
	.footer-menu li:first-child{
		padding-left: 10px;
	}
	.footer-menu li:nth-child(2){
		padding-right: 10px;
	}
	.footer-menu li:nth-child(3),
	.footer-menu li:last-child{
		padding-left: 0;
		margin-left: 0;
	}
	.footer-menu li:nth-child(3):before,
	.footer-menu li:last-child:before{
		display: none;
	}
	.footer-menu li:nth-child(5):before{
		display: block;
	}
	.footer-menu li:last-child{
		flex-basis: 100%;
		justify-content: center;
	}
	.copyiright {
		font-size: 12px;
		line-height: normal;
	}
	.default-content{
		font-size: 14px;
		padding-bottom: 50px;
	}
	.inner-header{
		height: 240px;
		font-size: 12px;
	}
	.inner-header .button{
		width: 220px;
		height: 40px;
		line-height: 40px;
		margin-top: 1em;
	}
	.ci-box-1,
	.ci-box-2,
	.ci-box-3{
		flex-basis: 100%;
		padding: 25px 0;
		margin: 0;
	}
	.ci-box-2:before,
	.ci-box-2:after{
		height: 1px;
		width: 150px;
		top: inherit;
		margin-top: inherit;
		right: inherit;
		left: 50%;
		margin-left: -75px;
	}
	.ci-box-2:before{
		top: 0;
	}
	.ci-box-2:after{
		bottom: 0;
	}
	.faq-rotator{
		font-size: 20px;
	}
	.fr-carousel{
		padding: 40px 15px;
		height: 400px;
	}
	.product-list{
		/*flex-basis: calc(100% - 30px);
		margin: 15px;
		max-height: 350px;*/
		flex-basis: calc(50% - 15px);
		padding: 0 15px 15px;
		font-size: 14px;
		margin: 7.5px;
		max-width: calc(50% - 15px);
	}
	.time-picker{
		margin-left: 0;
		margin-top: 40px;
	}
    article.blog-post-list .blog-thumb{
        margin-bottom: 10px;
    }
    article.blog-post-list h4{
        font-size: 24px;
        margin-bottom: 20px;
    }
    article.blog-post-list p{
        font-size: 16px;
    }
    .savings-bubble{
        width: 62px;
        height: 62px;
        font-size: 17px;
    }
}
@media screen and (max-width: 320px){
	.lead-icon{
		height: 135px;
		margin: 0 12px 15px;
		justify-content: space-evenly;
	}
	.lead-icon:before,
	.lead-icon:after {
		content: '';
		display: block;
	}
	.lead-icon p {
		font-size: 12.5px;
		line-height: 13px;
	}
	.final-cta h2{
		font-size: 30px;
		margin-bottom: 30px;
	}
	.final-cta h2 span{
		font-size: 15px;
	}
	.final-cta a,
	.final-cta .button {
		height: 60px;
		width: 280px;
		font-size: 24px;
	}
	.final-cta a img{
		width: 36px;
	}
	.footer-menu li,
	.footer-menu li:nth-child(5) {
		padding-left: 5px;
		margin-left: 5px;
	}
	.footer-menu a {
    	font-size: 12px;
	}
	.footer-seal{
		font-size: 13px;
	}
	.fs-image{
		margin-right: 20px;
	}
	.inner-header{
		font-size: 10px;
	}
	.default-content{
		font-size: 13px;
	}
	.alternate-blocks {
		font-size: 12px;
	}
}