/* Fonts */
body {
	font-family: "Inter", sans-serif;
	padding: 0px;
	margin: 0px;
	height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Josefin Sans", sans-serif;
	line-height: 120%;
}

h1 {
	font-size: 48px;
}

h2 {
	font-size: 40px;
}

h3 {
	font-size: 34px;
}

h4 {
	font-size: 28px;
}

h5 {
	font-size: 24px;
}

h6 {
	font-size: 20px;
}

p, ul{
	font-size: 18px;
	line-height: 140%;
}

.f-sm {
	font-size: 16px;
	line-height: 140%;
}

.f-xs {
	font-size: 14px;
	line-height: 140%;
}

/* Font Weights */
.fw-100 {
	font-weight: 100;
}

.fw-200 {
	font-weight: 200;
}

.fw-300 {
	font-weight: 300;
}

.fw-400 {
	font-weight: 400;
}

.fw-500 {
	font-weight: 500;
}

.fw-600 {
	font-weight: 600;
}

.fw-700 {
	font-weight: 700;
}

/* Radius */
.rad-20 {
	border-radius: 20px;
}

/* Tokens */

.white {
	color: #FFFFFF;
}

/* Primary Blues */
.doger-blue {
	color: #2682FF !important;
}

.sonic-blue {
	color: #134E9E !important;
}

.dark-sky {
	color: #07A3DD !important;
}

.disco {
	color: #0ABCFE !important;
}

/* Primary Orages */
.red-stage {
	color: #D85900 !important;
}

.greek-orange {
	color: #DE6E00 !important;
}

.orange-juice {
	color: #FF7F00 !important;
}

/* Primary Black */
.carbon {
	color: #262626 !important;
}

.graphite {
	color: #444444 !important;
}

.lucky-gray {
	color: #777777;
}

.black-100 {
	color: #181818;
}

.black-90 {
	color: #303030;
}
.black-80 {
	color: #474747;
}

.black-70 {
	color: #5F5F5F;
}

.black-60 {
	color: #777777;
}

.black-50 {
	color: #929292;
}

.black-40 {
	color: #ADADAD;
}

.black-30 {
	color: #C9C9C9;
}

.black-20 {
	color: #E4E4E4;
}

.black-10 {
	color: #F1F1F1;
}

.black-5 {
	color: #F9F9F9;
}

/* Width */
.w-960 {
	max-width: 960px;
}

/* Button */

.btn-primary, .btn-secondary {
	border-radius: 100px;
	font-size: 18px;
	font-weight: 400;
	padding: 16px 24px;
	border-width: 2px;
	text-transform: uppercase;
}
.btn-primary {
	background-color: #2682FF;
	border-color: #2682FF;
	color: #FFFFFF;
}
.btn-secondary {
	border-color: #2682FF;
	background-color: #FFFFFF;
	color: #2682FF;
}
.btn-secondary:hover {
	background-color: #2682FF;
	border-color: #2682FF;
	color: #FFFFFF;
}
.btn-small {
	padding: 10px 18px;
}

/* Global */
a {
	text-decoration: none;
  transition: color 0.3s  ease;
}
button {
	transition: background-color 0.3s ease;
}

.section-header {
	margin-bottom: 64px;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

/* For Internet Explorer */
input[type=search]::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

.navbar {
	background-color: #FFFFFF;
	padding: 24px 0;
}

.navbar-collapse {
	justify-content: space-between;
}

.navbar-brand img {
	height: 42px;
}
.nav-link {
	font-size: 16px;
	font-weight: 400;
	text-transform: uppercase;
	color: #262626;
	padding: 0px !important;
	margin: 0 24px;
}
.nav-link:hover {
	color: #2682FF;
}

.footer {
	padding-bottom:80px;
}

.logo-footer {
	width: 180px;
	height: auto;
	margin-bottom: 18px;
}

.footer p {
	margin-bottom: 8px;
}

.footer ul {
	display: flex;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.footer ul li {
	margin: 0 12px 0 0;
	padding: 0;	
}

.footer ul li span{
	color: #ADADAD;
}

.footer ul li a {
	text-decoration: none;
	font-style: none;
	color: #262626;
}

.footer li, .footer p {
	font-size: 14px;
	font-weight: 300;
}

.footer a:hover {
	color: #2682FF;
}

.footer .newsletter {
	width: fit-content;
	margin-left: auto;
}
.footer h6 {
	margin-bottom: 24px;
	margin-left: 12px;
}

.footer input {
	width: 420px;
	border-radius: 100px;
	border: 0px;
	background-color: #F9F9F9;
	padding: 12px 0px 12px 24px;
}

.footer input:focus-visible {
	outline: none;
	box-shadow: inset 0 0 0 2px #2682FF;
}

.footer button {
	background-color: #2682FF;
	color: #FFFFFF;
	border: 0px;
	width: 72px;
	height: 48px;
	border-radius: 100px;
	padding: 12px 24px;
	margin-left: -72px;
	transition: background-color 0.3s, transform 0.3s ease;
	transform-origin: center;
}
.footer button img{
	width: 24px;
	height: 24px;
	margin: 0;
	transition: transform 0.3s ease;
	
}

.footer button:hover {
	background-color: #086AEE;
}
.footer button:hover img, .reviews button:hover img {
	transform: scale(1.3);
}

#btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  border-radius: 100px;
  background-color: #2682FF;
  border: 1px solid #2682FF;
  width: 42px;
  height: 42px;
  padding: 4px;
  transition: scale 0.7s ease;
}

#btn-back-to-top:hover {
	scale: 1.2;
}

#btn-back-to-top img {
	width: 24px;
	height: 24px;
}

.tick {
	padding-left: 0;
	margin-bottom: 20px;
}

.tick li {
  list-style: none;
	background-image: url('../icons/tick-01.png');
	background-repeat: no-repeat;
	background-position: left top 5px;
	background-size: 26px;
	padding: 6px 0px 6px 32px;
}

/* Accordion */
.accordion-flush>.accordion-item, .accordion-item {
	margin-bottom: 12px;
	background-color: #F9F9F9;
	border: solid 1px #F9F9F9;
	border-radius: 20px;
}

.accordion-button {
	background-color: #F9F9F9;
	border: solid 1px #F9F9F9;
	border-radius: 20px;
	box-shadow: none;
}

.accordion-button::after {
	background-image: url("../icons/arrow-up-01.png");
	background-size: 24px 24px;
	width: 24px;
	height: 24px;
	order: -1;
  margin-left: 0; 
  margin-right:0;
}

.accordion-button:not(.collapsed) {
	background-color: #F9F9F9;
	border: solid 1px #F9F9F9;
	box-shadow: none;
	color: #262626;
}

.accordion-button:not(.collapsed)::after {
	background-image: url("../icons/arrow-up-01-blue.png");
	background-size: 24px 24px;
	width: 24px;
	height: 24px;
}

.accordion-button h5 {
	margin: 0 0 0 10px;
	padding: 0;
}


/* Home page */
.call-out, .faqs, .reviews, .six-steps, .who, .process, .partners, .three-steps, .home-hero, .terms, .service-fees{
	margin-bottom: 128px;
}

.home-hero {
	height: 940px;
	background-image:
    url("../images/hero-left.png"), url("../images/hero-right.png");
  background-repeat: no-repeat, no-repeat;
  background-position: left -60px top 0px, right -480px top 0px;
  background-size: 540px, 1080px;
  margin-bottom: 0px;
}

.home-hero .content{
	max-width: 620px;
	height: 520px;
	text-align: center;
	margin: 0 auto;
	padding: 160px 0 0 0;
}
.home-hero h1 {
	margin-bottom: 80px;
}

.home-hero h5 {
	margin-bottom: 60px;
}

.terms-hero .content {
	text-align: center;
	margin: 0 auto;
	padding: 80px 0;
}

.three-steps {
	text-align: center;
	margin-top: -100px;
}
.three-steps h4 {
	margin-top: 28px;
}

.three-steps p {
	max-width: 320px;
	margin: 0 auto;
}

.three-steps h2, .partners h2 {
	margin-bottom: 64px;
}

.three-steps img {
	width: 180px;
}

.partners .carousel-item {
	margin-right: 20px;
}

.partners h2 {
	margin-bottom: 48px;
}

.partners .logo_items img {
	height: 60px;
	margin: 0px 32px;
}

.call-out h1, .call-out h5 { 
	margin-bottom: 32px;
}

#accordionProcess .accordion-button:after {
	display: none;
}

#accordionProcess button {
	padding: 22px 20px 20px 20px;
}

#accordionProcess .accordion-body {
	padding-left: 30px;
	padding-top: 0px;
}

.accordion-button:not(.collapsed) {
	color: #0a58ca;
}

/* Reviews */

.offset-left-20 {
	margin-left: 20px;
}

.offset-left-40 {
	margin-left: 40px;
}

.reviews p {
	margin-bottom: 0;
}

.reviews .col {
	position: relative;
}

.reviews .actions-block {
	position: absolute;
	top: 30px;
	right: 0;
}


.reviews button, .process button {
	position: relative;
	width: 38px;
	height: 38px;
	border-radius: 100px;
	box-shadow: none;
	stroke: none;
	border: 1px solid #F1F1F1;
	background-color: #F1F1F1;
	margin: auto 0 0 12px;
}

.reviews button:hover, .process button:hover {
	border: 1px solid #E4E4E4;
	background-color: #E4E4E4;
}

.reviews button img, .process button img {
	width: 18px;
	height: 18px;
	margin: 0;
	transition: transform 0.3s ease;
}

.reviews .carousel-item img {
	width: auto;
	height: auto;
}

.reviews .card-left {
	height: 320px;
	position: relative;
	padding-left: 32px;
}

.reviews .card-left p {
	height: auto;
}

.reviews .signature span {
	display: block;
}

.reviews .signature {
	bottom: 0;
	left: 32px;
	position: absolute;
	font-weight: bold;
}

/* Who */
.card-style {
	background-color: #F9F9F9;
	border: solid 10px #FFF;
	border-radius: 20px;
	box-shadow: none;
	padding: 40px;
	height: 340px;
	position: relative;
}

.who .card-style ul {
	bottom: 20px;
	left: 20px;
	position: absolute;
}

/* Process */
#processCarousel img {
	max-width: 220px;
	max-height: 220px;
}
#processCarousel .card-left {
	width: 270px;
}

.process p {
	margin-bottom: 0px;
	padding-bottom: 0px;
}

  .carousel-item {
    transition: transform 2s ease-in-out;
  }
  .carousel-fade .active.carousel-item-start,
  .carousel-fade .active.carousel-item-end {
    transition: opacity 0s 2s;
  }

.process .card-style {
	position: relative;
}

.process .card-left {
	width: 200px;
}

.process .card-style img {
	position: absolute;
	top: 20px;
	right: 20px;
}

.terms .row {
	margin-bottom: 32px;
}

/* Who is who */
.warranty {
	background-image:
    url("../images/provider-hero.png"),url("../images/provider-bg.png");
  background-repeat: no-repeat, no-repeat;
  background-position: right 15px bottom 0px, right 0px top 0px;
  background-size: 170px, 250px;
}
.tip-top {
	background-image:
    url("../images/hvac-tech.png"),url("../images/hvac-bg.png");
  background-repeat: no-repeat, no-repeat;
  background-position: right 15px bottom 0px, right 0px top 0px;
  background-size: 170px, 250px;
}

/* Logo carousel */
@keyframes slides {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 0px 0px;
  white-space: nowrap;
  position: relative;
}

.logos:before, .logos:after {
  position: absolute;
  top: 0;
  content: '';
  width: 250px;
  height: 100%;
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255,255,255,0), rgb(255, 255, 255));
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255,255,255,0), rgb(255, 255, 255));
}

.logo_items {
  display: inline-block;
  animation: 48s slides infinite linear;
}

/*.logos:hover .logo_items {
  animation-play-state: paused;
}*/

.logo_items img{
  height: 100px;
}


/* How it works */
.how-it-works-hero {
	margin: 64px auto 180px auto;
}

.how-it-works-hero .left-side {
	max-width: 480px;
}

.how-it-works-hero .left-side h1 {
	margin-bottom: 32px;
}

.how-it-works-hero .left-side p {
	margin-bottom: 48px;
}

.how-it-works-hero .quote {
	position: absolute;
	background: rgba(255,255,255,0.9);
	padding: 20px 20px 10px 25px;
	border: none;
	border-radius: 20px;
	max-width: 400px;
	margin: -220px 0 0 -80px;
	z-index: 100;
	-moz-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
}

.how-it-works-hero img {
	width: 480px;
	height: auto;
}

.how-sections {
	margin-bottom: 128px;
}


/* FAQs */
.faqs .accordion, .faqs-page .accordion {
	margin-bottom: 32px;
}

.faqs-page {
	margin-top:100px;
	margin-bottom: 128px;
}

.faqs-page .accordion-flush>.accordion-item, .accordion-item {
	margin-bottom: 24px;
}

/* Contact Us */
.contact-us {
	margin-top: 100px;
	margin-bottom: 128px;
}

.contact-item {
	margin-bottom: 48px;
}

.contact-item div {
	vertical-align:top;
	display: inline-block;
}

.contact-item img {
	display: block;
	width: 52px;
	height: 52px;
	margin-right: 24px;
}
.contact-item p {
	display: inline-block;
	width: 210px;
}

/* Claim */
.claim{
	margin-top: 100px;
  height: 60%;
  text-align: right;
}

.claim-box {
  padding: 20px;
  border-radius: 20px;
  background-color: #F9F9F9;
}

.claim input {
	display: block;
	width: 100%;
	border-radius: 100px;
	border: 1px solid #C9C9C9;
	background-color: #FFFFFF;
	padding: 12px 0px 12px 24px;
	margin-bottom: 24px;
}

.claim input:focus-visible {
	outline: none;
	box-shadow: inset 0 0 0 2px #2682FF;
}

.claim h4 {
	margin-bottom: 24px;
}

.claim h4, .claim span {
	text-align: left;
}

.claim span {
	font-size: 16px;
	line-height: 180%;
	display: block;
}

.claim a {
	text-align: right;
	margin-top: 24px;
}

.claim-status {
	margin-top: 100px;
  text-align: center;
  margin-bottom: 128px;
}

.claim-status p {
	max-width: 480px;
	margin: 0 auto 0 auto;
}

.informational {
	background-color: #ECF4FF;
	border-radius: 20px;
	width: 580px;
	margin: 0 auto 64px auto;
	padding: 20px;
}

.claim-status .action a {
	margin: 0 auto;
}

.claim-status .action span {
	display: block;
	margin-top: 32px;
}
#phoneError {
	color: red;
	margin-bottom: 15px;
}


/* Responsive */
@media (max-width: 1720px) {
	.home-hero {
		height: 940px;
    background-image: url(../images/hero-left.png), url(../images/hero-right.png);
    background-repeat: no-repeat, no-repeat;
    background-position: left -120px top 0px, right -580px top 0px;
    background-size: 540px, 1080px;
    margin-bottom: 0px;
	}
}

@media (max-width: 1560px) {
	.home-hero {
		height: 940px;
    background-image: url(../images/hero-left.png), url(../images/hero-right.png);
    background-repeat: no-repeat, no-repeat;
    background-position: left -220px top 0px, right -680px top 0px;
    background-size: 540px, 1080px;
    margin-bottom: 0px;
	}
}

@media (max-width: 1400px) {
	#processCarousel img {
		max-width: 190px;
	}
	.process .card-left {
		width: 240px;
	}
}

@media (max-width: 1300px) {
	.home-hero {
		height: 940px;
    background-image: url(../images/hero-left.png), url(../images/hero-right.png);
    background-repeat: no-repeat, no-repeat;
    background-position: left -320px top 0px, right -780px top 0px;
    background-size: 540px, 1080px;
    margin-bottom: 0px;
	}
}

@media (max-width: 1200px) {
		/* Process */
	.process img {
		height: 180px;
		width: auto;
	}
	.process h3 {
		font-size: 28px;
	}
	.process h3 span {
		font-size: 18px;
		line-height: 12px;
	}
	.reviews .card-left {
		height: 380px;
	}
}

@media (max-width: 1120px) {
	.home-hero .content {
		padding-top: 80px;
		max-width: 480px;
	}
	.home-hero {
		height: 940px;
    background-image: url(../images/hero-left.png), url(../images/hero-right.png);
    background-repeat: no-repeat, no-repeat;
    background-position: left -320px top 0px, right -780px top 0px;
    background-size: 540px, 1080px;
    margin-bottom: 0px;
	}
}

@media (max-width: 1040px) {
	.home-hero .content {
		padding-top: 80px;
		max-width: 480px;
	}
	.home-hero {
		height: 940px;
    background-image: url(../images/hero-left.png), url(../images/hero-right.png);
    background-repeat: no-repeat, no-repeat;
    background-position: left -320px top 0px, right -780px top 0px;
    background-size: 540px, 1080px;
    margin-bottom: 0px;
	}
}

@media (max-width: 991px) {

	/* Shared */
	.navbar {
		padding: 12px 0;
	}

	.navbar-collapse {
		margin-bottom: 40px;
	}
	.accordion-button:focus {
		box-shadow: none;
	}

	.faqs-page, .claim, .claim-status, .contact-us, .how-sections {
		margin-top: 64px;
	}

	/* Navigation */
	.navbar .container {
		width: 100%;
		max-width: 100%;
	}
	.navbar-toggler {
		border: 0;
		outline: none;
	}
	.navbar-toggler:focus {
		box-shadow: none;
	}
	#navbarSupportedContent {
		text-align: center;
		border-top: 1px solid #ddd;
		margin-top: 20px;
		padding-top: 12px;
	}
	#navbarSupportedContent li {
		margin: 20px;
	}

	.home-hero h1 {
		margin-bottom: 40px;
	}

	/* Footer */
	.footer ul {
		display: inline-flex;
	}
	.footer .newsletter {
		width: 100%;
		text-align: center;
		margin: 0 auto 80px auto;
	}

	/* Home Hero */
	.home-hero {
		width: 100%;
		height: auto;
		background-image: url("../images/hero-mobile.png");
		background-position: center top -200px;
	  background-repeat: no-repeat;
	  background-size: 100% auto !important;
	  margin-bottom: 0px;
	  padding: 0 !important;
	}

	.home-hero .content {
		height: auto;
		position: relative;
		width: 100%;
		max-width: 100%;
	}

	.home-hero .copy {
		background-image:
    linear-gradient(0deg, transparent 0%, white 0%),
    linear-gradient(90deg, #f42b03 100%);
		width: 100%;
		margin-top: 0px;
		background-color: #FFFFFF;
		padding: 30px 20px 20px 0;
	}

	.gradient-box {
	  height: 50px;
	  margin-top: 220px;
	  /* Fades from opaque red (alpha 1) to transparent red (alpha 0) */
	  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
	}

	.three-steps {
		margin-top: 64px;
		text-align: left;
	}

	.three-steps p {
		margin-left: 0;
		margin-right: auto;
		text-align: left;
	}

	.three-steps h2, .partners h2 {
		margin-bottom: 32px;
	}

	/* FAQs */
	.faqs-page {
		margin-top: 64px;
	}
	.faqs-page h2 br {
		display: none;
	}
	.faqs-page h2 {
		margin-bottom: 64px;
	}

	/* Status */
	.informational {
		width: 100%;
	}

	/* Contact us */
	.contact-us img {
		margin: 20px auto;
	}
	.contact-item {
		margin-bottom: 20px;
	}

	/* Claim */
	.claim-box {
		width: 100%;
	}

	/* How it works */
	.how-it-works-hero {
		margin-bottom: 64px;
		margin-top: 24px;
	}
	.how-it-works-hero img {
		width: 100%;
		height: auto;
	}
	.how-sections {
		margin-bottom: 64px;
	}
	.how-sections h2 {
		margin-bottom: 20px;
	}
	.how-sections img {
		margin-bottom: 20px;
	}
	.service-fees {
		margin-bottom: 80px;
	}
	.reviews-mobile h2, .reviews-mobile p, .reviews-mobile span {
		padding-left: 20px;
		padding-right: 20px;
	}
	.reviews-mobile span {
		display: block;
		font-weight: bold;
	}
	.reviews .carousel-item img {
		padding: 0 20px;
		margin-bottom: 30px;
	}
	.reviews .card-left {
		height: 200px;
	}
	.faqs h2 {
		margin-bottom: 30px;
	}
	.faqs br {
		display: none;
	}
}

@media (max-width: 767px) {
	.call-out, .faqs, .reviews, .six-steps, .who, .process, .partners, .three-steps, .home-hero, .terms {
		margin-bottom: 64px;
	}
	.three-steps {
		margin-top: 64px;
	}

	.partners-carousel-inner .carousel-item > div {
		display: none;
	}
	.partners-carousel-inner .carousel-item > div:first-child {
		display: block;
	}
	.home-hero {
		background-position: center top -70px;
	}
	.gradient-box {
		margin-top: 300px;
	}
	.home-hero h1 {
		font-size: 32px;
		margin-bottom: 30px;
	}
	h2 {
		font-size: 32px;
	}
	.home-hero h5 {
		font-size: 22px;
		margin-bottom: 30px;
	}
	.three-steps h2, .partners h2 {
		margin-bottom: 36px;
		text-align: center;
	}
	.three-steps {
		text-align: left;
	}
	.three-steps h4 {
		margin-top: 12px;
	}

	/* Who & What */
	.who h2, .who p{
		text-align: center;
	}
	.who p {
		margin-bottom: 60px;
	}
	.card-style {
		height: 280px;
	}
	.warranty {
		background-image: url(../images/provider-hero.png), url(../images/provider-bg-mobile.png);
		background-size: 140px, 250px;
		background-position: left 15px bottom 0px, left 0px top 0px;
		padding-left: 230px;
		margin-bottom: 30px;
	}
	.warranty ul {
		left: 220px !important;
	}
	.tip-top {
		background-size: 140px, 250px;
		background-position: right 15px bottom 0px, right 0px top 0px;
	}
	.warranty h5 {
		max-width: 200px;
	}

	/* Six Steps */
	.six-steps .section-header{
		margin-bottom: 20px;
	}

	/* Reviews */
	.reviews {
		margin-bottom: 32px;
	}
	.reviews .section-header {
		margin-bottom: 20px;
	}
	#reviewsCarousel .carousel-item img{
		margin-bottom: 24px;
		padding: 0 20px;
	}

	/* FAQs */
	.faqs br {
		display: none;
	}
	.faqs h2 {
		margin-bottom: 24px;
	}
	.footer {
		padding-bottom: 40px;
	}
}

.partners-carousel-inner .carousel-item.active,
.partners-carousel-inner .carousel-item-next,
.partners-carousel-inner .carousel-item-prev {
	display: flex;
}

/* medium and up screens */
@media (min-width: 768px) {

	.partners-carousel-inner .carousel-item-end.active,
	.partners-carousel-inner .carousel-item-next {
		transform: translateX(20%);
	}

	.partners-carousel-inner .carousel-item-start.active, 
	.partners-carousel-inner .carousel-item-prev {
		transform: translateX(-20%);
	}
}

.partners-carousel-inner .carousel-item-end,
.partners-carousel-inner .carousel-item-start { 
	transform: translateX(0);
}

@media (max-width: 480px) {
	.footer {
		padding-bottom: 0px !important;
	}
	.footer input {
		position: relative;
		width: 100%;
	}
	.footer button {
		position: absolute;
	}
}
