/*reset*/ 
* {
	transition: all 0.3s ease-in-out;
}
:root {
  font-size: 18px;
}
html,
body {
 height: 100%;
 position: relative;
}
a, a:focus, a:visited, a:hover {
  color: inherit;
  text-decoration: none;
}
p, h5, h4, h3, h2, h1 {
  margin: 0;
}
/*
::selection {
	background: #DA9940;
}
::-moz-selection {
	background: #DA9940;
}
*/
img {
  user-select: none;
  touch-action: manipulation;
}
/*utility classes*/
main {
  transition: background .5s, filter .5s;
	min-height: 100vh;
}
#FreeQuote {
	background: #00584C;
    background-image: url(https://www.transparenttextures.com/patterns/iron-grip.png);
    background-repeat: repeat;
}
.center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.unfocused {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.23);
  filter: blur(2px) brightness(70%);
}
.break {
  height: calc(25px + (100vw/35));
  max-height: 75px;
}
.overflow-restrict {
  max-width: 1440px;
  margin: 0 auto;
  overflow-x: hidden;
}
.overflow-restrict-lg {
  max-width: 1600px;
  /*	max-width: 1792px;*/
  margin: 0 auto;
}
.row.display-flex {
  display: flex;
  flex-wrap: wrap;
}
.row.display-flex > [class*='col-'] {
  flex-grow: 1;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
/*colors*/
.bg-green {
  background: #00584C;
  background-image: url("https://www.transparenttextures.com/patterns/iron-grip.png");
  background-repeat: repeat;
}
.bg-purple {
  background: #EEEEFA;
}
.bg-blue {
  background: rgb(96, 147, 224);
}
.text-green {
  color: #00584C;
}
.text-blue {
  color: #6093E0;
}
.text-white {
  color: white;
}
.text-gold {
  color: #DAA22A;
}
.text-grey {
  color: rgba(154, 154, 154, 1.00);
}
.btn {
  background: #6093E0;
  padding: 13px 50px;
  color: white !important;
  border-radius: 84px;
  text-align: center;
  transition: 250ms;
  white-space: nowrap;
  border: transparent;
  outline: none;
  user-select: none;
}
.btn-sm {
  background: #6093E0;
  padding: 10px 50px;
  color: white !important;
  border-radius: 84px;
  text-align: center;
  transition: 250ms;
  white-space: nowrap;
  border: transparent;
  outline: none;
  user-select: none;
}
.btn:hover, .btn-sm:hover {
  box-shadow: 0 20px 30px -11px rgb(31 35 65 / 37%);
  transform: translate(0px, -3px);
}
.quote.active {
  background-color: #6093E0;
  color: white;
}
/*responsive text*/
/*minimum size*/
p {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
}
h1 {
  font-family: 'Source Serif Pro', serif;
  font-size: 2rem;
}
h2, h3 {
  font-family: 'Source Serif Pro', serif;
  margin-bottom: 6px;
  font-size: 1.4rem;
}
h4, h5 {
  font-family: 'Source Sans Pro', sans-serif;
  margin-bottom: 6px;
  font-size: 1.2rem;
}
/*responsive size*/
@media (min-width: 905px) {
  h1 {
    font-size: 4vw;
  }
}
/*max size*/
@media (min-width: 1440px) {
  h2, h3, h4, h5 {
    font-size: 24px;
  }
  h1 {
    font-size: 61px;
  }
}
.text-underline {
  border-bottom: 1px solid black;
}
.link {
  font-family: 'Antonio', sans-serif;
}
.bold {
  font-weight: 500;
  font-weight: 600;
}
/*navbar*/
nav {
  width: 100%;
  z-index: 9000;
  position: sticky;
  top: 0;
  background-color: white;
}
.logo {
  height: 35px;
  user-select: none;
}
nav ul {
  margin: 0;
  padding: 0;
}
.nav-item {
  transition: color 100ms;
  display: block;
  text-decoration: none;
  white-space: nowrap;
  font-size: 18px;
  margin-right: 45px;
  /*	padding: 5px 15px;*/
}
.nav-item a {
  padding: 5px 15px;
}
.nav-item:last-child {
  margin-right: 0px;
/*  padding: 13px 0px;*/
}
.nav-item:hover {
  color: rgba(130, 130, 130, 1.00);
}
.nav-item:not(:last-child) {
  margin-right: 45px;
}
a .nav-cta {
  border: 2px #6093E0 solid;
  padding: 5px 20px;
  border-radius: 32px;
}
li .nav-cta {
  border: 2px #6093E0 solid;
  padding: 5px 20px;
  border-radius: 32px;
}
.nav-item.active {
  /*	background: rgba(0, 87, 75, 0.05);*/
  padding-bottom: 4px;
  border-bottom: 2px solid #00574B;
  border-radius: 8px;
}
.nav-item:nth-child(n+5).active {
  padding-bottom: 0px;
  border-bottom: none;
  border-radius: none;
}
.slideInNav {
  top: 0;
  left: 0;
  position: fixed;
  height: 100vh;
  color: white;
  display: none;
  z-index: 10000;
}
.slideInNav ul {
  padding: 50px 75px 0 50px;
}
.slideInNav .nav-item:not(:last-child) {
  margin-bottom: 20px;
}
.slideInNav ul .active {
  color: yellow;
  font-weight: 700;
}
@media (max-width: 1000px) {
  /*
	.logo {
		height: 25px;
	}
*/
  .nav-item:not(:last-child) {
    margin: 5px;
  }
  .nav-item {
    font-size: 16px;
    margin-right: 1px;
    /*		margin-bottom: 20px;*/
  }
  .nav-item {
    margin-right: 0;
  }
  /*
	.nav-item.active {
		color: #DAA22A;
		background: none;
		border-bottom: none;
	}
*/
  /*
	a .nav-cta {
		border: none;
		padding: 5px 15px;
		border-radius: 0;
	}
*/
}
/*hero*/
.hero_content {
  max-width: 640px;
  margin-left: -1vw;
}
input {
  -webkit-transition: background 250ms;
  -o-transition: background 250ms;
  transition: background 250ms;
  /*	background: cadetblue;*/
  color: black;
  padding: 5px 15px;
  border-radius: 32px;
  outline: none;
  border: 2px solid #6093E0;
  margin: 1% 0;
  width: 47%;
}
@media (max-width: 1400px) {
  input {
    width: 100%;
  }
}
::-webkit-input-placeholder {
  color: grey;
}
::-moz-placeholder {
  color: grey;
}
:-ms-input-placeholder {
  color: grey;
}
::-ms-input-placeholder {
  color: grey;
}
::placeholder {
  color: grey;
}
/*
input:hover {
	background: #ABABAB;
}
*/
input:focus, input:active {
  background: white;
  border: 2px solid cadetblue;
  color: rgb(8, 86, 76);
}
input:focus::-webkit-input-placeholder {
  color: #ABABAB;
}
/*about */
.angle_desc {
  height: 100px;
  width: 100%;
  background: #EEEEFA;
  clip-path: polygon(0 0, 100% 100%, 100% 100%, 0% 100%);
}
.about .small {
  opacity: 0.7;
}
.angle_asc {
  height: 100px;
  width: 100%;
  background: #EEEEFA;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}
/*cards*/
.home_cards {
  background: url('/assets/images/feature1.jpg');
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
  background-size: cover !important;
  transition: background 400ms;
  position: relative;
  width: 90%;
  margin: 0 auto;
  flex: 1;
}
.home_cards .overlay {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  z-index: 2;
}
.home_cards > div {
  color: white;
  z-index: 3;
  width: 33.3%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.review_btn {
  border: 1px solid lightgrey;
  border-radius: 4px;
  padding: 5px 15px;
}
.home_cards .hover_elem {
  z-index: 2;
  background: rgba(0, 0, 0, 0.85);
  transform: translateX(0);
  transition: transform 200ms;
  transition-timing-function: ease-in-out;
  position: absolute;
  top: 0;
  bottom: 0;
}
.home_cards .underline {
  background: #6093E0;
  width: 0px;
  height: 10px;
  border-radius: 8px;
  margin-bottom: 15px;
  transition: width 400ms;
}
.home_cards .underline.active {
  width: 150px;
}
.mobile-cards {
  border-bottom: 1px solid white;
  color: white;
  margin: 0px 15px;
}
/*end cards*/
.review_wrapper {
  max-width: 482px;
  margin: 0 auto;
  padding-bottom: 240px;
  display: block;
}
@media (max-width: 768px) {
  .review_wrapper {
    padding-bottom: 20px;
  }
}
.review_content {
  transform: translateX(40%);
}
.iphone {
  z-index: 100;
  top: -120px;
  left: -320px;
}
.iphone-dec {
  height: 300px;
  top: -120px;
  left: -250px;
  opacity: 30%;
  z-index: -1;
}
.hero_accred_items img {
  min-height: 100px;
  width: calc(90px + 1.6vw);
  filter: invert(1);
  opacity: 0.7;
}
@media (max-width: 768px) {
  .review_content {
    position: relative;
    display: block;
    transform: none;
    max-width: 300px;
    margin: 0 auto;
    /*    z-index: 101;*/
  }
  .iphone {
    z-index: 100;
    top: -240px;
    left: -320px;
    display: none;
  }
  .iphone-dec {
    position: absolute;
    height: 300px;
    top: -150px;
    left: -130px;
    opacity: 30%;
    z-index: -1;
  }
}
/*stars*/
.stars_wrapper {
  margin-top: 80px;
}
.stars_content {
  max-width: 450px;
}
.star {
  width: 45px;
  margin-left: 3px;
}
@media (max-width: 768px) {
  .star {
    width: 20px;
  }
}
.stars-dec {
  opacity: 30%;
  height: 200px;
  top: -25px;
  left: -120px;
  z-index: -1;
}
.stars-stairlift {
  height: 500px;
  top: auto;
  right: -50%;
  z-index: 1;
}
/*faq cta*/
.faq_content {
  color: white;
}
@media (max-width: 992px) {
  .faq_wrapper img {
    max-width: 300px;
  }
  .faq_content {
    color: black !important;
  }
}
.green_bar {
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.white-gradient {
  background: linear-gradient(90deg, #EEEEFA 0%, #EEEEFA 36.99%, #FFFFFF 36.99%, #FFFFFF 100%);
  text-align: right;
}
.quote_content {
  max-width: 500px;
}
/*faq*/
.contact_panel {
  border-radius: 8px;
}
/* testimonials */
.testimonials_header {
  min-height: 60vh;
  overflow: hidden;
}
@media (max-width: 768px) {
  .testimonials_header {
    max-height: none;
    overflow: auto;
  }
}
.testimonials .item {
  background: white;
  border-radius: 16px;
  width: 350px;
  height: 350px;
  margin: 25px 0;
  box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.15);
}
.item .grey {
  font-weight: 200;
  color: grey;
  font-size: 0.8rem;
  margin: 0;
}
.item .name {
  font-weight: bold;
  margin: 0;
}
.item p {
  font-size: 0.9rem;
  margin: 0;
}
.testimonials > div {
  transition: transform 55s;
}
.transformUp {
  transform: translateY(-350px) !important;
}
.transformDown {
  transform: translateY(0px) !important;
}
.testimonials_title {
  font-size: 2rem;
}
.contact .title {
  font-size: 1.8rem;
}
.contact .wrapper {
  border-radius: 16px;
}
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 5; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
  padding-top: 30px;
}
/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
  text-align: center;
  align-items: center;
  max-width: 700px;
}
.modal-content .btn {
  width: fit-content;
  font-size: 18px;
  color: white;
}
/* The Close Button */
.modalClose {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.modalClose:hover, .modalClose:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
@media (min-width: 769px) {
  .d-mdd-none {
    display: none;
  }
}
@media (min-width: 767px) {
  .d-mdd-block {
    display: block;
  }
}
footer a {
  font-size: calc(10px + 0.6vw);
}
.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}
/*Page Transtion*/
.fadeSiteIn {
  animation: fadeSiteIn 0.2s ease-out forwards; /* [1] */
}
main.fadeSiteOut {
  animation: fadeSiteOut 0.2s ease-out forwards; /* [2] */
}
@keyframes fadeSiteIn { /* [1] */
  from {
    opacity: 0;
    filter: blur(0);
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    filter: blur(1);
    transform: scale(1);
  }
}
@keyframes fadeSiteOut { /* [2] */
  from {
    opacity: 1;
    filter: blur(1);
    transform: scale(1);
  }
  to {
    opacity: 0;
    filter: blur(0);
    transform: scale(0.99);
  }
}