/* GLOBAL */ :root {
  --main-color: #7B1E7A;
  --main-color-light: #F1E8F1;
  --secondary-color: #F9564F;
  --secondary-color-light: #FFD9D8;
  --tertiary-color: #0C0A3E;
  --tertiary-color-light: #1F1C67;
  --quaternary-color: #F3C677;
  --close-color: #FF605C;
}
.text-p {
  color: var(--main-color);
}
.text-o {
  color: var(--secondary-color);
}
.text-b {
  color: var(--tertiary-color);
}
.navbar {
  transition: all .3s;
}
section {
  padding: 3em 10%;
  display: flex;
  align-items: center;
  min-height: 24rem;
}
button {
  border: none;
  padding: .8rem 2rem;
  border-radius: .8rem;
  transition: all .3s ease-in-out;
  box-shadow: 12px 12px 12px #00000033;
}
button:focus {
  outline: none;
  box-shadow: none !important;
}
btn:focus {
  outline: none;
  box-shadow: none !important;
}
.margin {
  margin: 4% 0rem;
}
.height-lg {
  min-height: 32rem;
}
.height-md {
  min-height: 24rem;
}
.height-sm {
  min-height: 16rem;
}
@media(min-width:768px) {
  .height-lg {
    min-height: 40rem;
  }
}
.button-admin {
  color: white;
  background-color: #1F1C67;
}
.button-admin:hover {
  color: #F9564F;
}
/* GLOBAL END */
/* IMAGES */
.svgContainer {
  width: 100%;
  height: 100%;
  position: relative;
}
.svg-bg {
  width: 72%;
  background-image: url(/assets/images/herobackground.svg);
  background-size: cover;
  height: 0;
  padding: 0;
  position: absolute;
  right: 0%;
  z-index: -1;
  bottom: -1%;
  padding-bottom: calc(100% * 2 / 4);
  height: 100%;
}
.imageWrapper {
  width: 72%;
  height: 0;
  position: relative;
  padding-bottom: 72%;
}
.imageAsset {
  width: 88%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin-right: auto;
  bottom: 0;
  margin-left: auto;
}
@media(min-width:768px) {
  .imageWrapper {
    width: 56%;
    padding-bottom: 56%;
  }
}
/* IMAGES END */
/* NAVBAR */
.active-link {
  color: var(--secondary-color) !important;
}
#navbar {
  background-color: var(--tertiary-color);
}
.navbar-nav {
 	height: 100vh;
	grid-gap: 2rem;
}
.nav-link {
  padding: 1.5rem 4rem;
  font-size: 1.3rem;
}
@media(min-width:768px) {
  .nav-link {
    padding: initial;
    font-size: initial;
  }
}
.nav-link, .dropdown-item {
  font-size: 1.5rem;
  color: var(--main-color-light);
  transition: all .3s ease-in-out;
}
.nav-link:hover {
  color: var(--secondary-color);
}
.dropdown-menu {
  background-color: var(--tertiary-color);
  border: none;
}
/* Define the shape and color of the hamburger lines */
.navbar-toggler span {
  display: block;
  background-color: var(--secondary-color);
  height: 3px;
  width: 25px;
  margin-top: 5px;
  margin-bottom: 5px;
  position: relative;
  left: 0;
  opacity: 1;
  transition: all 0.35s ease-out;
  transform-origin: center left;
}
/* top line needs a little padding */
.navbar-toggler span:nth-child(1) {
  margin-top: 0.3em;
}
/**
 * Animate collapse into X.
 */
/* top line rotates 45 degrees clockwise and moves up and in a bit to close the center of the X in the center of the button */
.navbar-toggler:not(.collapsed) span:nth-child(1) {
  transform: translate(15%, -33%) rotate(45deg);
}
/* center line goes transparent */
.navbar-toggler:not(.collapsed) span:nth-child(2) {
  opacity: 0;
}
/* bottom line rotates 45 degrees counter clockwise, in, and down a bit to close the center of the X in the center of the button  */
.navbar-toggler:not(.collapsed) span:nth-child(3) {
  transform: translate(15%, 33%) rotate(-45deg);
}
/**
 * Animate collapse open into hamburger menu
 */
/* top line moves back to initial position and rotates back to 0 degrees */
.navbar-toggler span:nth-child(1) {
  transform: translate(0%, 0%) rotate(0deg);
}
/* middle line goes back to regular color and opacity */
.navbar-toggler span:nth-child(2) {
  opacity: 1;
}
/* bottom line goes back to initial position and rotates back to 0 degrees */
.navbar-toggler span:nth-child(3) {
  transform: translate(0%, 0%) rotate(0deg);
}
@media(min-width:768px) {
  .navbar-nav {
    height: initial;
  }
}

.phone-button{
	font-size: 1.2rem;
	color: var(--tertiary-color);
	background-color: #fff;
    padding: .5rem 1rem;
    border-radius: 2rem;
	text-align: center;
}


.phone-button:hover{
	color: var(--tertiary-color);
	background-color: var(--secondary-color);
}

/* NAVBAR END */
#form-cta .sub-header-sm-p {
  font-size: 1.8rem;
}
#form-cta .button-primary {
	display: block;
}
#form-cta a:hover {
	text-decoration: none;
}
@media(min-width: 992px) {
  #form-cta .button-primary {
    width: 80%;
	margin: 0 0 0 auto;
  }
}
@media screen and (max-width: 991px) {
	#form-cta .sub-header-sm-p {
		text-align: center;
	}
	#form-cta .button-primary {
		margin: 0 auto;
	}
}
/* FOOTER */
footer {
  background-color: var(--tertiary-color);
  color: white;
}
/* FOOTER END */
#hero-splash {
  margin-top: 6rem;
  padding: 0rem;
  overflow: hidden;
  min-height: 40rem;
	max-height: 50rem;
}
#hero-splash .imageAsset {
  margin-top: auto;
  margin-bottom: auto;
}
#hero-splash .header-copy {
  color: var(--tertiary-color);
}
#hero-splash .imageWrapper {
  min-width: 18rem;
  padding-bottom: 80%;
  width: 80%;
}
@media(min-width:768px) {
  #hero-splash .imageWrapper {
    width: 100%;
    max-width: 30rem;
    padding-bottom: 100%;
  }
}
.padding-col {
  padding: 3rem 10%;
}
.orbit-container {
  position: absolute;
}
/* TEXT */
.header-title {
  font-weight: 800;
  color: var(--secondary-color);
  max-width: 40rem;
}
.header-copy {
  font-size: 1.5rem;
  color: var(--main-color-light);
}
h3.header-copy {
	font-size: 2rem;
}
@media(min-width:768px) {
  #hero-splash .header-copy {
    max-width: 36rem;
  }
  .header-copy {
    max-width: 36rem;
  }
}
.sub-header-sm-p {
  color: var(--main-color);
  font-size: 2rem;
  font-weight: 700;
}
.sub-header-sm-o {
  color: var(--secondary-color);
  font-size: 2rem;
  font-weight: 700;
}
.copy {
  font-size: 1.5rem;
  color: black;
  font-weight: 300;
}
.copy-w {
  font-size: 1.25rem;
  color: white;
  font-weight: 300;
}
.banner-header-p {
  font-size: 2.6rem;
	line-height: inherit;
  font-weight: 800;
  color: var(--main-color);
  max-width: 36rem;
}
.banner-header-o {
  font-size: 2.6rem;
	line-height: inherit;
  font-weight: 800;
  max-width: 36rem;
  color: var(--secondary-color);
}
.banner-header-b {
  font-size: 2.6rem;
	line-height: inherit;
  font-weight: 800;
  max-width: 36rem;
  color: var(--tertiary-color);
}
@media(min-width:768px) {
  .banner-header-p {
    font-size: 3.2rem;
  }
  .banner-header-o {
    font-size: 3.2rem;
  }
  .banner-header-b {
    font-size: 3.2rem;
  }
}
blockquote {
  font-size: 1.1rem;
  font-weight: bold;
  max-width: 24rem;
}
@media(min-width:768px) {
  blockquote {
    font-size: 1.2rem;
  }
}
.quote-card .author {
  font-weight: 700;
  font-size: 1.5rem;
}
.list-item-header {
  font-size: 3rem;
	line-height: inherit;
  font-weight: 800;
  color: var(--secondary-color);
}
.list-item-copy {
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .list-item-header {
    font-size: 4rem;
  }
}
/* TEXT END */
/* BACKGROUNDS */
.background-light-o {
  background-color: var(--secondary-color-light);
}
.background-light-p {
  background-color: var(--main-color-light);
}
.background-dark-b {
  background-color: var(--tertiary-color);
}
/* BACKGROUNDS END */
/* BUTTONS */
.button-primary {
  background-color: var(--main-color);
  color: var(--main-color-light);
  font-weight: 700;
  font-size: 1.8rem;
}
.button-primary:hover {
  color: var(--secondary-color);
}
/* BUTTONS END */
/* ORBIT */
.ball {
  width: 5vw;
  height: 5vw;
  max-width: 2rem;
  max-height: 2rem;
  background-color: var(--secondary-color);
  left: 132px;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  top: -.5rem;
}
@media(min-width:768px) {
  .ball {
    top: 0;
  }
}
.orbit {
  content: "";
  position: absolute;
  border: solid 1px var(--secondary-color);
  width: 100%;
  height: 100%;
  max-width: 30rem;
  max-height: 30rem;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: auto;
  z-index: -1;
  margin-right: auto;
  border-radius: 50%;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -webkit-animation-name: orbit;
  -webkit-animation-duration: 12s;
  -moz-animation-duration: 12s;
}
.curved-orbit {
  bottom: -24% !important;
}
@-webkit-keyframes orbit {
  from {
    transform: rotate(0deg)
  }
  to {
    transform: rotate(360deg)
  }
}
/* ORBIT END */
/* ABOUT SECTION */
#about .imageWrapper {
  width: 100%;
  padding-bottom: 64%;
}
#about .imageWrapper .imageAsset {
  width: 100%;
  max-width: 56rem;
}
/* DEAIL SECTION */
.detail-block {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 2rem 0rem;
}
.detail-block img {
  position: absolute;
  right: 0;
  top: 0;
}
.detail-icon {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
}
#details .header-copy {
  max-width: 22rem;
  color: var(--tertiary-color)
}
#details {
  margin: 8% 0;
}
/* END */
/* SIDE BANNER 1 */
#side-banner-1 {
  padding: 0rem;
}
.side-banner-img {
  position: absolute;
  height: 100%;
  z-index: -1;
}
#side-banner-1 .side-banner-img {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  width: 100%;
  object-position: top;
  border-radius: 1rem;
  overflow: hidden;
}
@media(min-width:992px) {
  #side-banner-1 .side-banner-img {
    left: -2%;
    object-fit: initial;
    width: initial;
    object-position: initial;
    top: initial;
    transform: initial;
  }
}
#side-banner-1 .padding-col {
  padding: 3rem 0% 3rem 10%;
}
#side-banner-1 blockquote {
  color: var(--main-color-light);
}
#side-banner-1 .author {
  color: var(--main-color-light);
}
.quote-card {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 0rem 1rem;
}
#side-banner-1 .quote-card-wrap {
  background-color: var(--main-color);
  z-index: 9;
  position: absolute;
  width: 80%;
  max-width: 24rem;
  padding: 1rem;
  border-radius: 1rem;
  bottom: -32%;
  left: 16vw;
}
.quote-card-bg {
  position: absolute;
  z-index: 4;
}
#side-banner-1 .quote-card-bg {
  bottom: -42%;
  right: 30%;
}
@media(min-width:992px) {
  #side-banner-1 .quote-card-wrap {
    width: 50%;
    bottom: 8%;
  }
  #side-banner-1 .quote-card-bg {
    bottom: 4%;
    right: 8%;
    width: 50%;
  }
}
/* END */
/* SIDE BANNER 2 */
#side-banner-1, #side-banner-2 {
  padding: 0rem;
}
.side-banner-img {
  position: absolute;
  height: 100%;
}
#side-banner-2 .side-banner-img {
  object-fit: cover;
  width: 100%;
  object-position: top;
  border-radius: 1rem;
  overflow: hidden;
}
@media(min-width:992px) {
  #side-banner-2 .side-banner-img {
    right: -2%;
    object-fit: initial;
    width: initial;
    object-position: initial;
    top: initial;
    transform: initial;
  }
}
#side-banner-2 .padding-col {
  padding: 3rem 0% 3rem 10%;
}
#side-banner-2 blockquote {
  color: var(--secondary-color-light);
}
#side-banner-2 .author {
  color: var(--secondary-color-light);
}
.quote-card {
  position: relative;
  height: 100%;
  width: 100%;
}
#side-banner-2 .quote-card-wrap {
  background-color: var(--secondary-color);
  z-index: 9;
  position: absolute;
  width: 80%;
  max-width: 24rem;
  padding: 1rem;
  border-radius: 1rem;
  bottom: -32%;
  right: 16vw;
}
#side-banner-2 .quote-card-bg {
  bottom: -42%;
  right: 30%;
}
@media(min-width:992px) {
  #side-banner-2 .quote-card-wrap {
    width: 72%;
    bottom: -16%;
    right: 32%;
  }
  #side-banner-2 .quote-card-bg {
    bottom: -20%;
    width: 50%;
    right: 24%;
  }
}
/* END */
/* BANNER */
.banner-bg {
  position: absolute;
  object-fit: contain;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  top: -50%;
  width: 100%;
}
#banner {
  margin: 72% 0% 36% 0%;
  position: relative;
  overflow: hidden;
}
@media(min-width:768) {
  .banner-bg {
    top: initial;
    width: initial;
  }
}
@media (min-width: 992px) {
  #banner {
    margin: 16% 0%;
  }
}
@media(min-width:1200px) {
  #banner {
    margin: 12% 0;
  }
}
/* BANNER */
.outline-r {
  transform: rotateY(180deg);
}
#banner .imageAsset {
  max-width: 12rem;
}
#banner .imageWrapper {
  margin-top: 8%;
  width: 50%;
}
@media (min-width: 992px) {
  #banner .imageWrapper {
    margin-top: initial;
    width: 64%;
  }
}
/* END */
/* QUOTES BLOCK */
#quotes-list {
  margin: 36% 0;
}
.quote-container {
  min-height: 16rem;
}
@media (min-width: 768px) {
  #quotes-list {
    margin: 16% 0;
  }
  #quotes-list .text-o {
    left: -16%;
    top: -4rem;
  }
}
@media(min-width:992px) {
  #quotes-list .text-b {
    top: 8rem;
  }
}
/* QUOTES BLOCK*/
/* RECOMENDED LIFTS PAGE */
#stairlift-list {
  padding: 0rem;
  margin: 4% 0%;
  background-color: var(--main-color-light);
}
.lift-row {
  align-items: center;
  height: 100%;
}
.lift-row svg {
  transform: rotateY(180deg);
}
#recomended-splash {
  min-height: 40rem;
  background-color: var(--tertiary-color);
  margin-top: 3rem;
  overflow: hidden;
}
@media(min-width:768px) {
  #recomended-splash .header-title {
    font-size: 3.6rem;
    max-width: 32rem;
  }
}
#recomended-splash .imageWrapper {
  width: 100% !important;
  padding-bottom: 100% !important;
  max-width: 16rem;
}
.accordion {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 10px 10px 10px #0000000f;
  border: 1px solid #80808082;
}
.accordion .collapse .card-body {
  transition: all .3s ease-in-out;
  background-color: var(--main-color-light) !important;
  color: #7B1E7A !important;
}
.btn-link {
  font-weight: bold;
  color: var(--tertiary-color);
}
.btn-link:hover {
  text-decoration: none;
  color: var(--main-color);
}
.banner-circle {
  position: absolute;
  width: 72vw;
  height: 72vw;
  background-color: var(--tertiary-color-light);
  right: -20%;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-circle-inner {
  width: 60vw;
  height: 60vw;
  position: relative;
  border-radius: 100%;
  overflow: hidden;
}
.overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #0c0a3e42;
  z-index: 99;
}
.banner-circle-mobile {
  position: absolute;
  width: 50vw;
  height: 50vw;
  background-color: var(--tertiary-color-light);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  right: 0;
  left: 0;
  bottom: 2rem;
  min-width: 16rem;
  min-height: 16rem;
  max-height: 18rem;
  max-width: 18rem;
}
.banner-circle-mobile .banner-circle-inner {
  width: 42vw;
  height: 42vw;
  min-width: 14rem;
  min-height: 14rem;
  max-width: 16rem;
  max-height: 16rem;
}
.banner-circle-inner img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (min-width: 1500px) {
  .banner-circle-inner img {
    top: 6vw;
  }
}
.list-container {
  width: 100%;
  height: 100%;
}
.list-copy-wrap {
  max-width: 32rem;
  color: white;
}
#stairlift- .stairlift-wrapper .imageWrapper {
  width: 100%;
  padding-bottom: 0px;
}
#stairlift-blurb .imageWrapper {
  width: 72%;
  padding-bottom: 100%;
}
#stairlift-blurb .imageAsset {
  width: 100%;
  min-width: 4rem;
}
.blurb-copy-wrap h3 {
  max-width: 48rem;
}
#stairlift-list .stairlift-wrapper .imageAsset {
  width: 96%;
  left: -9vw;
  right: 0;
  max-width: 28rem;
  top: -4rem;
  min-width: 28rem;
  bottom: initial;
}
#stairlift-list .curved .stairlift-wrapper .imageAsset {
  min-width: 27rem;
}
.blue-block {
  width: 8%;
  min-width: 8rem;
  height: 100%;
  background-color: var(--tertiary-color);
  position: absolute;
  left: 0;
}
.mobile-stairlift-wrapper {
  margin-top: 8%;
}
.mobile-stairlift-wrapper .imageAsset {
  z-index: 9;
  margin-bottom: auto;
  margin-top: auto;
}
.mobile-stairlift-wrapper .imageAsset:first-child {
  bottom: 4%;
}
.mobile-stairlift-wrapper .orbit {
  z-index: 1;
}
.stairlift-link {
  font-weight: 600;
  font-size: 2rem;
  color: var(--quaternary-color);
  transition: all .3s ease-in-out
}
.stairlift-link:hover {
  text-decoration: none;
  color: var(--secondary-color);
}
.stairlift-row {
  margin-top: 12rem;
}
.stairlift-row:first-child {
  margin-top: 0%;
}
#stairlift-table {
  padding: 8rem 2%;
  overflow: hidden;
}
.table-container {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 10px 10px 10px #00000014;
  border: 1px solid #80808038;
}
table {
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
}
th {
  color: var(--tertiary-color);
}
.table .thead-dark th {
  color: #fff;
  background-color: var(--tertiary-color);
  border-color: var(--tertiary-color);
}
/* PAGE END */
/* STAIRLIFT OVERVIEW */
#overview-splash {
  background-color: var(--tertiary-color);
  min-height: 40rem;
  margin-top: 10%;
}
/*
#overview-blurb {
	padding: 3rem 10% 0;
}
*/
#overview-splash .row, #overview-blurb .row, #overview-lists .row, #form-cta .row {
	max-width: 1400px;
	margin: 0 auto;
}
.v2-stairlift-img {
	width: 100%;
	max-width: 500px;
	height: auto;
	padding: 1rem;
}
#overview-splash .imageWrapper {
  min-width: 16rem;
  padding-bottom: 100%;
}
#overview-splash .orbit {
  bottom: -3rem;
}
#overview-splash .ball {
  top: -2%;
}
#overview-splash .imageAsset {
  width: 100%;
}
#overview-splash .imageAsset:first-child {
  width: 88%;
}
@media (min-width: 768px) {
  #overview-splash .imageWrapper {
    min-width: 24rem;
  }
	#overview-blurb p, #overview-lists .col-lg-6 {
		padding: 0 2rem;
	}
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
	#overview-splash {
		margin-top: 5%;
	}
}
@media screen and (max-width: 400px) {
	#overview-blurb, #overview-lists {
		padding: 3rem 0 0;
	}
	#overview-splash {
		padding: 3rem 0;
	}
}
@media screen and (min-width: 1101px) {
  #overview-splash {
    	margin-top: initial;
  }
}
/*Stairlift image v2*/
@media screen and (min-width: 992px) {
	.stairlift-img-container {
		display: flex;
		justify-content: flex-end;
	}	
}
@media screen and (max-width: 991px) {
	.stairlift-img-container {
		display: flex;
		justify-content: center;
	}
}

#overview-lists .header-copy {
  color: var(--tertiary-color);
}
.image-container {
  bottom: initial;
  z-index: 9;
}
.overview-list {
  list-style: none;
  padding-inline-start: .2rem;
  padding: 1rem 0rem;
}
.overview-list li {
  display: flex;
  align-items: center;
  margin-bottom: .5rem;
  font-size: 1.2rem;
  grid-gap: 10px;
}
@media screen and (min-width: 992px) {
	.list-container {
		display: flex;
	}
}
.dot {
  max-width: 1rem;
  max-height: 1rem;
  background-color: var(--secondary-color);
  border-radius: 100%;
  margin-right: .5rem;
  padding: 0rem;
  min-width: 1rem;
  min-height: 1rem;
}
.sub-body {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.sub-body .bg-container {
  width: 50%;
  position: absolute;
  right: -1%;
}
.sub-body .bg-container .imageWrapper {
  width: 100%;
}
.sub-body .bg-container .imageWrapper .imageAsset {
  width: 100%;
  position: absolute;
  right: 0;
  top: -2%;
  z-index: 0;
  bottom: 0;
}
/* STAIRLIFT OVERVIEW END */
/* CUSTOMER SERVICE */
.accordion button {
  width: 100%;
  height: 100%;
  box-shadow: none;
}
.section-break {
  width: 100%;
  height: 3rem;
}
.stroke-rounded {
  stroke-linecap: round;
  width: 100%;
  height: 2rem;
}
#home-survey {
  overflow: hidden;
}
/* CUSTOMER SERVICE END*/
/* INFO OVERVIEW */
.cta-link {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--secondary-color);
  transition: all .3s ease-in-out;
}
.cta-link:hover {
  text-decoration: none;
  color: var(--main-color);
  font-size: 1.7rem;
}
/* INFO OVERVIEW END */
/* BLOGS PAGE */
#blog-list .card-body {
  color: white;
  background-color: var(--tertiary-color);
}
.blog-card {
  margin: 4% 2%;
  box-shadow: 10px 10px 16px #00000017;
  overflow: hidden;
  border-radius: 2rem;
}
.blog-card .button-primary {
  font-size: 1.2rem;
  padding: .5rem 1rem;
  transition: all .3s ease-in-out;
  margin-top: 2rem;
}
.blog-link:hover {
  text-decoration: none;
}
.title {
  color: var(--secondary-color);
}
.card-image-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 20rem;
}
.card-title {
  min-height: 8rem;
  text-overflow: ellipsis;
  color: var(--secondary-color) !important;
  font-weight: bold;
}
.card-img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.color-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #7b1e792d;
}
.card-img-overlay {
  height: 30%;
}
.card-img-overlay .btn-sm {
  border-radius: 8rem !important;
  background-color: var(--secondary-color);
  border: none;
  color: var(--secondary-color-light);
  font-weight: bold;
}
.card-text {
  display: block;
  display: -webkit-box;
  max-width: 100%;
  height: 6rem;
  margin: 0 auto;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-nav {
  margin-top: 1rem;
}
.blog-nav h3 {
  font-size: 1rem;
}
@media (min-width: 768px) {
  .blog-nav h3 {
    font-size: 1.6rem;
  }
}
.blog-credits-wrap {
  color: white;
}
/* BLOGS PAGE END */
/* BLOG ARTICLE PAGE */
.blog-copy {
  font-size: 1.25rem;
  color: black;
  font-weight: 300;
  max-width: 45rem;
}
/* CONTACT PAGE */
.contact-form input, textarea, select {
  width: 100%;
  padding: 2% 0;
  text-indent: .75rem;
  min-height: 60px;
  margin: .6rem;
  border: 1px solid #000;
  border-radius: 1rem;
}
.contact-label {
	font-size: 1.4rem;
	margin: .6rem 0 0 .6rem;
}
.contact-form input:focus, textarea:focus, select:focus {
  outline: none;
}
#contact {
  min-height: 60rem;
  padding: 0rem;
  position: relative;
	margin-top: 5rem;
}
.contact-new {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.blog-arrow:hover {
  color: var(--secondary-color);
}
#loading-div-parent {
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#loading-div {
  width: 150px;
  height: 150px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* CONTACT PAGE END */
/* MODAL FORM */
.button-card {
  width: 50vw;
  height: 50vw;
  background-color: var(--tertiary-color);
  max-width: 15rem;
  max-height: 15rem;
  padding: 0px;
  margin-bottom: 1rem;
}
.button-card-row {
  margin-top: 4%;
}
.question-info {
  text-align: left;
  list-style: none;
  position: absolute;
  right: 0;
  background-color: var(--main-color-light);
  padding: 4% 1rem 4% 4%;
  border-radius: 1rem 0rem 0rem 1rem;
}
.question-info li {
  margin: 1rem 0rem;
}
.button-card-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.button-card-container .imageAsset {
  margin-left: initial;
  margin-right: initial;
  width: 100%;
  max-height: 6rem;
}
.button-card-container .imageWrapper {
  padding-bottom: initial;
}
.button-card-container p {
  color: var(--secondary-color);
  font-weight: bold;
  margin-bottom: 0;
  width: 100%;
}
@media(min-width:768px) {
  .button-card {
    width: 30vw;
    height: 30vw;
    margin-bottom: initial;
  }
  .button-card-container .imageAsset {
    max-height: 8rem;
  }
}
.modal-content {
  background-color: transparent;
}
.modal-content .header-copy {
  color: var(--tertiary-color-light);
}
.modal-dialog {
  max-width: none !important;
  padding: 4%;
}
.tab-content {
  min-height: 36rem !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
}
#smartwizard {
  display: flex;
  justify-content: center;
  align-items: center;
}
#smartwizard .nav {
  display: none;
}
.toolbar-bottom {
  display: none;
}
.tab-pane {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}
.wizard-content-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
input[type=radio] {
  border: 0px;
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
}
input[type='radio']:checked {
  background-color: var(--secondary-color) !important;
}
.radio-answer-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 36rem;
}
.radio-wrap {
  display: flex;
  align-items: center;
  width: 80%;
  max-width: 22rem;
}
.radio-wrap p {
  font-weight: bold;
  font-size: 1.6rem;
}
.radio-label {
  font-weight: bolder;
  font-size: 20px;
}
.button-input {
  border: none;
  box-shadow: none;
  border-radius: 0px;
  padding: 1rem;
  border-radius: 2rem;
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0.8rem 0rem;
  width: 100%;
  transition: all .3s ease-in-out;
}
.button-input:hover {
  background-color: var(--quaternary-color);
  padding: 1.2rem;
}
#customerDetails .button-input:hover {
  width: 100% !important;
}
#customerDetails button {
  width: 100%;
}
#customerDetails .padding-col {
  padding: 1rem 10%;
}
#comapreForm {
  text-align: center;
  position: relative;
  border: 8px solid var(--border-color);
  border-radius: 0.5rem;
  transition: all .2s ease-in-out;
}
#comapreForm fieldset {
  background: white;
  border: 0 none;
  border-radius: 0px;
  box-sizing: border-box;
  width: 100%;
  border: 8px solid black;
  border-radius: 1rem;
  position: relative;
}
.modal-content {
  border: none;
}
/*Hide all except first fieldset*/
#comapreForm fieldset:not(:first-of-type) {
  display: none;
}
/*inputs*/
#comapreForm textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 0px;
  margin-bottom: 10px;
  width: 100%;
  box-sizing: border-box;
  font-family: montserrat;
  color: #2C3E50;
  font-size: 13px;
}
#comapreForm input:focus, #comapreForm textarea:focus {
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline-width: 0;
  transition: All 0.5s ease-in;
  -webkit-transition: All 0.5s ease-in;
  -moz-transition: All 0.5s ease-in;
  -o-transition: All 0.5s ease-in;
}
/*buttons*/
#comapreForm .action-button {
  width: 100px;
  background: #ee0979;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 25px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px;
}
#comapreForm .action-button:hover, #comapreForm .action-button:focus {
  box-shadow: 0 0 0 2px white, 0 0 0 3px #ee0979;
}
#comapreForm .action-button-previous {
  width: 100px;
  background: #C5C5F1;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 25px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px;
}
#comapreForm .action-button-previous:hover, #comapreForm .action-button-previous:focus {
  box-shadow: 0 0 0 2px white, 0 0 0 3px #C5C5F1;
}
/*headings*/
.fs-title {
  font-size: 18px;
  text-transform: uppercase;
  color: #2C3E50;
  margin-bottom: 10px;
  letter-spacing: 2px;
  font-weight: bold;
}
.fs-subtitle {
  font-weight: normal;
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
}
/*progressbar*/
#progressbar {
  margin-bottom: 30px;
  overflow: hidden;
  /*CSS counters to number the steps*/
  counter-reset: step;
}
#progressbar li {
  list-style-type: none;
  color: white;
  text-transform: uppercase;
  font-size: 9px;
  width: 33.33%;
  float: left;
  position: relative;
  letter-spacing: 1px;
}
#progressbar li:before {
  content: counter(step);
  counter-increment: step;
  width: 24px;
  height: 24px;
  line-height: 26px;
  display: block;
  font-size: 12px;
  color: #333;
  background: white;
  border-radius: 25px;
  margin: 0 auto 10px auto;
}
/* Not relevant to this form */
.dme_link {
  margin-top: 30px;
  text-align: center;
}
.dme_link a {
  background: #FFF;
  font-weight: bold;
  color: var(--tertiary-color);
  border: 0 none;
  border-radius: 25px;
  cursor: pointer;
  padding: 5px 25px;
  font-size: 12px;
}
.answerWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.answerWrap .button-secondary {
  min-width: 8rem;
  font-size: 1rem;
}
.formQuestion {
  text-align: left;
  padding: 1rem;
  font-size: 3rem;
}
#stairCount .imageWrapper {
  padding-bottom: 60% !important;
}
.fieldset-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.text-field {
  width: 100%;
  margin: .6rem 0rem;
}
.modal-body {
  padding: 0rem;
}
#zipcode .answerWrap {
  justify-content: center;
}
#zipcode {
  padding-bottom: 0rem;
}
#zipcode input, #customerDetails input, select {
  width: 100%;
  padding: 2%;
  min-height: 60px;
  border: 1px solid #000;
  border-radius: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  #zipcode .answerWrap .text-field {
    width: 56%;
  }
  
  #zipcode .answerWrap .text-field {
    height: 4rem;
  }
  #zipcode .answerWrap button {
    margin-top: 0rem;
  }
}
#customerDetails .question-wrap .formQuestion {
  text-align: center;
}
#thanks .question-wrap .formQuestion {
  text-align: center;
}
#thanks .header-copy {
  color: var(--main-color-light);
}
#thanks {
  background: var(--tertiary-color) !important;
}
#thanks .imageAsset {
  max-width: 16rem;
}
#thanks .imageWrapper {
  width: 50%;
}
#stairType {
  padding: 4rem 0rem;
}
#stairType .imageWrapper {
  padding-bottom: 60% !important;
}
#stairType .fieldset-bg {
  width: auto;
  height: 25%;
}
@media (min-width: 768px) {
  #stairType .fieldset-bg {
    width: auto;
    height: 100%;
  }
}
#stairLocation .fieldset-bg {
  width: 50%;
  height: 100%;
  object-fit: cover;
}
.closeForm {
  width: 5rem;
  height: 5rem;
  background-color: var(--close-color);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: .5rem solid black;
  z-index: 9;
  right: -2%;
  top: -4%;
  position: absolute;
}
.closeForm svg {
  width: auto;
  height: auto;
}
.previousField svg {
  width: auto;
  height: auto;
}
.previousField {
  width: 5rem;
  height: 5rem;
  background-color: var(--main-color-light);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: .5rem solid black;
  z-index: 9;
  left: -2%;
  bottom: -4%;
  position: absolute;
}
/* MODAL FORM END */
/* ADDITIONAL ANIMATIONS */
.wave {
  animation: sway1 6s infinite;
  transform-origin: 50% 100% 0;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -webkit-animation-name: sway1;
  -webkit-animation-duration: 6s;
  -moz-animation-duration: 6s;
}
.wv-2 {
  animation-delay: 2s;
}
.wv-3 {
  animation-delay: 2.5s;
}
@keyframes sway1 {
  0% {
    transform: translate(-8%);
  }
  50% {
    transform: translate(6%);
  }
  100% {
    transform: translate(-8%);
  }
}
/* ADDITIONAL ANIMATIONS END */
/* TERMS AND CONDITION */
#generic-banner {
  background-color: var(--tertiary-color);
  min-height: 40rem;
  overflow: hidden;
  position: relative;
}
#generic-banner .imageContainer {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#generic-banner .imageWrapper {
  width: 100%;
}
#generic-banner .imageAsset {
  width: 100%;
  bottom: initial;
}
#generic-content .copy-wrap {
  max-width: 50rem;
}
/* TERMS AND CONDITION END*/
.error-block {
  display: block;
  border-radius: .8rem;
  padding: 1.3rem;
  position: absolute;
  min-width: 20rem;
}
.error-postal {
  border-radius: .8rem;
  width: 100%;
}
.error-modal {
  margin-top: 15px;
  border-radius: 1rem;
}
#success-div {
  align-items: center;
}
/* LOGO */
.navbar-brand img {
	width: 100%; 
  	max-width: 8rem !important;
	height: auto;
}
.footer-logo img {
  max-width: 12rem;
}