/* CSS Document */
/*FLEX CONTAINER TO PUSH FOOTER DOWN*/
.flex-container {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
html {
  position: relative;
}
main {
  flex-grow: 1;
}
header, main, footer {
  flex-shrink: 0;
}
body, html, main {
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
blockquote {
  font-family: raleway, sans-serif;
}
a:hover {
  text-decoration: none;
  underline: none;
  opacity: 0.85;
}
/*SWUP page transitions*/
.transition-fade {
  transition: 0.4s;
  opacity: 1;
}
html.is-animating .transition-fade {
  opacity: 0;
}
ul {
  margin: 0;
  padding: 0;
}
.submit-btn {
  width: 100%;
}
button {
  border-radius: 16px;
  display: inline-block;
  border: none;
  padding: 1rem 2rem;
  margin: 0;
  text-decoration: none;
  background: #0069ed;
  color: #ffffff;
  font-family: sans-serif;
  font-size: 1rem;
  cursor: pointer;
  text-align: center;
  transition: background 250ms ease-in-out, transform 150ms ease;
  -webkit-appearance: none;
  -moz-appearance: none;
}
button:hover, button:focus {
	background: #246069;
}
button:focus {
  outline: 1px solid #fff;
  outline-offset: -4px;
}
button:active {
  transform: scale(0.99);
}
/*COLORS*/
.bg-gradient {
  background: linear-gradient(113.75deg, #FBAB7E -0.25%, #F7CE68 65.28%);
}
.bg-blue {
  background: #124B54;
}
.bg-grey {
  background: #F5F5F5;
}
.text-blue {
  color: #124B54;
}
.text-black {
  color: #000000;
}
.text-faded {
  color: rgba(0, 0, 0, 0.65);
}
.text-faded-white {
  color: rgba(255, 255, 255, 0.8)
}
.text-white {
  color: white;
}
/*STYLES*/
* {
  font-style: normal;
}
.h1 {
  font-weight: 600;
  font-size: 70px;
  line-height: 111.1%;
  /* or 78px */
  letter-spacing: 0.015em;
}
.h2 {
  font-size: 36px;
  line-height: 123.1%;
  /* or 44px */
  letter-spacing: -0.03em;
}
@media (max-width: 1024px) {
  .h1 {
    font-size: 48px;
    line-height: 111.1%;
    /* or 78px */
    letter-spacing: 0.015em;
  }
  .h2 {
    font-size: 28px;
    line-height: 123.1%;
    /* or 44px */
    letter-spacing: -0.03em;
  }
  .h3 {
    font-size: 23px;
    line-height: 112.6%;
    /* or 29px */
    letter-spacing: -0.03em;
  }
}
.h3 {
  font-size: 26px;
  line-height: 112.6%;
  /* or 29px */
  letter-spacing: -0.03em;
}
.h4 {
  font-size: 18px;
  line-height: 112.6%;
}
.link {
  font-size: 16px;
  line-height: 21px;
}
.p {
  font-size: 18px;
  line-height: 175.4%;
  font-family: raleway, sans-serif;
  font-style: normal;
}
.bold {
  font-weight: bold
}
a {
  color: inherit !important;
  font-family: raleway, sans-serif;
  font-weight: 600;
}
.playfair {
  font-family: playfair-display, serif;
  font-weight: 700;
  font-style: normal;
}
.raleway {
  font-family: raleway, sans-serif;
  font-style: normal;
}
.raleway .bold {
  font-weight: 600;
}

.relative {
	position: relative;
}

.absolute {
	position: absolute;
}

/* BUTTONS*/
.button-primary {
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
.button-secondary {
  border-radius: 16px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border: 2px solid rgba(0, 0, 0, 0.43);
  box-sizing: border-box;
  max-width: 455px;
}
.button-secondary-white {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.43);
  box-sizing: border-box;
  max-width: 255px;
}
/*MAIN*/
/*HEADER*/
.navbar {
  min-height: 60px !important;
}
.nav-item {
  position: relative;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 21px;
}
.nav-item::after {
  position: absolute;
  content: "";
  background: linear-gradient(113.75deg, #FBAB7E -0.25%, #F7CE68 65.28%);
  height: 2px;
  width: 0;
  bottom: 3px;
  right: 0;
  transition: 0.25s;
}
.nav-item:hover::after {
  width: 100%;
}
ul .nav-item:not(:last-child) {
  margin-right: 35px;
}
.navbar-toggler .navbar-toggler-icon {
  background-image: url("assets/toggle.svg") !important;
}
.navbar-toggler:focus, .navbar-toggler:active, .navbar-toggler-icon:focus {
  outline: none;
  box-shadow: none;
}
/*STAIRS VECTOR*/
.navbar img {
  position: absolute;
  left: 50px;
  bottom: 0px;
  height: 70px;
  width: 310.16px;
}
@media (max-width: 1059px) {
  .navbar img {
    display: none;
  }
}
@media (max-width: 992px) {
  ul .nav-item:not(:last-child) {
    margin-right: 0;
  }
  .navbar ul {
    text-align: right;
    float: right;
    padding-top: 1.5rem;
  }
  .nav-item::after {
    background: #124B54;
  }
}
.navbar-item {
  margin: 0;
  color: white !important;
  width: 100%;
  padding: 15px 40px;
  padding-right: 40px;
  float: right;
  text-align: right;
}
/*FOOTER*/
footer {
  position: relative;
}
.footer {
  position: relative;
  width: 100%;
  padding: 1rem;
  margin: 0;
}
.footer li:not(:last-child) {
  margin-right: 35px;
}
.footer-img {
  position: absolute;
  bottom: 0;
  left: 200px;
}
.footer_logo {
	height: 50px;
	width: 50px;
}

.hero_wrapper {
  position: relative;
  height: 100%;
}
.hero_content {
  min-height: 523px;
}
.hero_blue {
  min-height: 208px;
}
.hero_img_flex {
  position: absolute;
  display: flex;
  justify-content: space-around;
  bottom: 0px;
  height: 340px;
  width: 100%;
  pointer-events: none;
}
.hero_img_lg {
  height: 100%;
}
.hero_img_sm {
  position: absolute;
  height: 90%;
  bottom: 0px;
}
.hero_chair_1 {
  left: 75px;
}
.hero_chair_2 {
  right: 60px;
}
@media (max-width: 992px) {
  .hero_img_flex {
    position: relative;
    display: block;
    height: inherit;
  }
  .hero_img_lg {
    display: block;
    margin: auto;
    width: 60%;
  }
  .hero_img_sm {
    display: none;
  }
  .hero_blue {
    min-height: 0px;
  }
  .hero_content {
    text-align: center;
    height: 100%;
  }
  .hero_content .h1 {
    font-size: 3rem;
    ;
  }
  .hero_content .h2 {
    font-size: 1.6rem;
  }
}
/*ABOUT US CTA*/
.about-us-cta {
  width: 45%;
  text-align: center;
}
.about-us-cta a img {
  margin-left: 10px;
  transition: 0.5s;
}
.translate-x-15 {
  transform: translateX(15px);
}
@media (max-width: 992px) {
  .about-us-cta {
    width: 80%;
    text-align: left;
  }
}
/*PRODUCT FEATURES*/
.product_row {
  position: relative;
  max-width: 1440px;
}
.product_row_img_1 {
  max-height: 400px;
}
.product_header_sub {
  font-style: normal;
  font-size: 18px;
  line-height: 172.4%;
  text-transform: uppercase;
}
.products_divider {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 150px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0.6) 0%, rgba(255, 255, 255, 0) 100%);
}
.gradient-circle-vector {
  position: absolute;
  bottom: -120px;
  left: -140px;
  transition: 1s;
  animation-timing-function: ease-out
}
.gradient-circle-vector2 {
  position: absolute;
  bottom: -120px;
  right: -190px;
  transition: 1s;
}
.translate-right-50 {
  transform: translateX(90px);
}
.translate-left-50 {
  transform: translateX(-90px);
}
.product_features {
  position: relative;
}
@media (max-width: 992px) {
  .gradient-circle-vector {
    display: none;
  }
  .products_content {
    max-width: 500px;
  }
  .gradient-circle-vector2 {
    display: none;
  }
  .product_features {
    background: linear-gradient(113.75deg, #FBAB7E -0.25%, #F7CE68 65.28%);
  }
  .scale-translate-focus {
    transform: none;
  }
}
.testimonial-width {
  width: 50%;
}
.after-care-img {
  display: block;
}
@media (max-width: 1440px) {
  .testimonial-width {
    width: 100%;
    padding: 1rem 1.5rem;
  }
  .after-care-img {
    display: none;
    ;
  }
}
/*Consultation CTA*/
.consultation-cta {
  margin: 0;
}
.consultation-img {
  max-height: 327px;
}
/*HOMEPAGE ANIMATIONS*/
.scale-translate-focus {
  transform: translateY(-15px) translateX(-45px) scale(1.2);
}
/*//////////////////////////////////////////////////////////////////////*/
/*/////////////////////////////////////////CURVED STAIRLIFT PRODUCT PAGE*/
/*//////////////////////////////////////////////////////////////////////*/
/*HEADER INFO*/
.header_info p {
  width: 50%;
}
.curved_hero_wrapper {
  position: relative;
  overflow-x: hidden;
  width: 100%;
}
/*HERO IMAGE*/
.curved_hero {
  max-height: 575px;
  transform: translateX(0%);
}
.slash {
  position: absolute;
  top: 20%;
  left: 50%;
  animation: productSlideSlash;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out
}
@keyframes productSlideSlash {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(-45%);
  }
}
/*HERO COPY*/
.hero_copy {
	max-width: 900px;
  width: 100%;
}
.hero_copy a {
  position: relative;
}
.hero_copy a {
  max-width: 255px;
}
.curved_features {
  margin-left: 80px;
}
.curved_mobile_banner {
  max-height: 300px;
  width: 100%;
}
.curved_mobile_img {
  max-height: 155px;
}
.curved_mobile_img_hero {
  max-height: 350px;
  transform: translateX(5%);
}
.curved_mobile_banner {
  max-height: 300px;
  width: 100%;
}
.straight_mobile_img {
  max-height: 155px;
}
.straight_hero {
  max-height: 350px;
}
.hero_copy a {
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .curved_features {
    transform: translateX(0%);
    overflow-x: hidden;
  }
  .hero_copy {
    width: 100%;
  }
  .header_info p {
    width: 100%;
  }
  .curved_features {
    margin-left: 0px;
  }
}
.hr {
  height: 1px;
  opacity: 0.7;
  width: 100%;
  color: black;
}
/*STRAIGHT OUTDOOR STAIRLIFTS PAGE*/
.compare_img {
  margin-left: 15px;
  height: 294px;
}
.compare_item {
  max-width: 300px;
}
/*AFTER CARE SERVICE*/
.col-container {
/*  display: flex;*/
  width: 100%;
}

@media(min-width: 900px) {
	.col-container {
		display: block;
	}
}
 
.myCol {
  flex: 1;
}
.center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.service {}
.service_mobile_img {
  max-width: 400px;
  width: 100%;
}
@media (min-width: 1440px) {
  .review_illustration {
    width: calc(100vw / 2);

    top: 0;
    left: 0;
  }
}
@media (max-width: 1024px) {
  .service {
    margin-left: 0px;
  }
}
/*REVIEWS SECTION*/
.review_mobile_banner {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
}
/*REVIEWS SECTION*/
 
.review_illustration {
  width: calc(100vw  / 2.5);
  max-width:700px;
  max-height: 600px;
}

.review_content {
	max-width: 500px;
}
.review_content a {
  position: relative;
  max-width: 355px;
  min-width: 300px;
}
.review_border {
  position: absolute;
  top: 120px;
  right: 200px;
}
@media (max-width: 1328px) {
  .review_border {
    display: none;
  }
}
/*	TESTIMONIALS*/
.testimonias-window-item {
  width: 28%;
}
.testimonial-wrapper {
  overflow-y: scroll;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto 100px auto;
  width: 1440px;
  height: 400px;
}
@media only screen and (max-width: 991px) {
  .testimonias-window-item {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
  }
  .testimonial-wrapper {
    display: none;
    height: 100%;
  }
}
.about_header {
  position: relative;
  height: 550px;
}
.about_header_1_img {
  position: absolute;
  right: 10%;
  top: 0px;
  height: 550px;
  z-index: -1;
}
.about_info_panel_1 {
  position: absolute;
  top: 120px;
  left: 0;
  width: 50%;
  border-radius: 16px;
  -webkit-box-shadow: -3px 3px 48px -4px rgba(0, 0, 0, 0.31);
  -moz-box-shadow: -3px 3px 48px -4px rgba(0, 0, 0, 0.31);
  box-shadow: -3px 3px 48px -4px rgba(0, 0, 0, 0.31);
}
.about_info_panel_2 {
  position: absolute;
  top: 120px;
  right: 0;
  width: 50%;
  border-radius: 16px;
  -webkit-box-shadow: -3px 3px 48px -4px rgba(0, 0, 0, 0.31);
  -moz-box-shadow: -3px 3px 48px -4px rgba(0, 0, 0, 0.31);
  box-shadow: -3px 3px 48px -4px rgba(0, 0, 0, 0.31);
}
.about_info {
  max-width: 450px;
}
.about_mobile {
  background: url('assets/mobile_banner.png');
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}
.about_header_2 {
  position: relative;
  height: 550px;
}
.about_header_img_2 {
  position: absolute;
  left: 10%;
  top: 0px;
  height: 550px;
  z-index: -1;
}
@media only screen and (max-width: 901px) {
  .about_header {
    display: none;
  }
  .about_header_2 {
    display: none;
  }
}
/*ABOUT COPY*/
.about_copy {
  position: relative;
  min-height: 800px;
  background-color: #124B54;
  color: white;
}
.about_copy_header {
  transition: 1s;
  position: absolute;
  top: 30%;
  left: 5%;
  ;
  width: 900px;
  z-index: 2;
}
.about_copy_header h2 {
  font-style: normal;
  font-size: 70px;
  line-height: 111.1%;
  /* or 78px */
  letter-spacing: 0.015em;
}
.about_copy_header p {
  font-style: normal;
  font-size: 28px;
  line-height: 123.1%;
  /* or 44px */
  letter-spacing: -0.03em;
}
.about_copy_img {
  display: block;
  margin-left: auto;
  width: 75%;
}
@media only screen and (max-width: 1200px) {
  .about_copy {
    position: relative;
    background: white;
    color: black;
  }
  .about_copy_header {
    position: relative;
    top: inherit;
    left: inherit;
    width: 95%;
    display: block;
    margin-top: -55px;
    margin-left: auto;
    margin-right: auto;
    z-index: 2;
    text-align: center;
    background-color: white;
    opacity: 0.8;
    padding: 1rem 2rem;
    font-size: 1em;
    font-weight: bold;
    -webkit-box-shadow: -1px -1px 16px 3px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: -1px -1px 16px 3px rgba(0, 0, 0, 0.1);
    box-shadow: -1px -1px 16px 3px rgba(0, 0, 0, 0.1);
  }
  .about_copy_header h2 {
    font-style: normal;
    font-size: inherit;
    line-height: 111.1%;
    font-size: 2rem;
    /* or 78px */
    letter-spacing: 0.015em;
  }
  .about_copy_header p {
    font-style: normal;
    font-size: inherit;
    line-height: 123.1%;
    /* or 44px */
    letter-spacing: -0.03em;
  }
  .about_copy_img {
    position: relative;
    width: 100%;
    right: inherit;
    top: inherit;
  }
  .about_copy a {
    border: 2px solid rgba(0, 0, 0, 0.43);
  }
}
/*ABOUT ANIMATION CLASSES*/
.translate2s {
  transform: translateY(25px);
}
.translateUp2s {
  transform: translateY(-25px);
}
.about_img {
  max-width:  500px;
}
.translateRight {
  transform: translateX(35px);
}
/*CONTACT*/
.about_mobile {
  display: none;
}
.contact_panel {
  position: relative;
}
.contact_header {
  position: absolute;
  right: 0;
  top: -25px;
  width: 80%;
  height: 100px
}
.contact_form {
  width: 85%;
  display: block;
  margin: 0 auto;
  min-height: 600px;
}
.contact_panel img {
  width: 100%;
  min-width: 500px;
}
.contact_form_head {
  font-size: 2rem;
  font-weight: bold;
  max-width: 450px;
}
@media only screen and (max-width: 998px) {
  .contact_mobile {
    display: block !important;
  }
  .contact_panel {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .contact_panel img {
    width: 100%;
    min-width: 0;
    max-width: 538px;
    display: block;
    margin: 0 auto;
  }
  .contact_header {
    position: relative;
    right: inherit;
    top: inherit;
    width: 100%;
  }
  .contact_panel form {
    position: relative;
    width: 100%;
    z-index: 2;
    display: block;
    margin: 0 auto;
  }
  .contact_form_head {
    font-size: 2rem;
    font-weight: bold;
  }
}
/*PRODUCTS PAGE*/
.products_img_hero {
  max-height: 400px !important;
  margin-bottom: -17px;
  margin-left: 20px;
}
.products_hero p {
  max-width: 550px;
}
.blue-border {
  width: 100%;
  height: 15px;
}
.vertical-break {
  background: linear-gradient(180deg, rgba(196, 196, 196, 0) 0%, #999999 50.1%, rgba(255, 255, 255, 0) 102.38%);
  height: 150px;
  width: 2px;
}
.awards p {
  max-width: 200px;
}
.navbar-nav li:hover .dropdown-menu {
  display: block;
}
.service_content {
  max-width: 800px;
  margin: 0 auto;
}
.service_aftercare_desktop {
  width: 100%;
  max-width: 550px;
}
.form-group input {
  padding: 1.2rem;
  border-radius: 32px;
}
.testimonial_header {
	min-height: 50vh;
	height: 100%;
	margin-right: 200px;
}

@media (max-width: 992px) {
	.testimonial_header {
		display: block;
	min-height: 0;
	height: 100%;
	margin: 0 auto;
	}
}
