@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@500;700&display=swap');
/* GLOBALS */
* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  margin: 0px;
}
main {
  position: relative;
  min-height: 100vh;
  align-items: center;
  overflow: hidden;
  display: flex;
  flex: 1 0 auto; /* grow shrink basis */
  flex-direction: column;
  justify-content: center;
  /*  text-align: center;*/
}
section {
  padding: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 24rem;
}
header {
  display: inline;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}
/*NavBar*/
.nav {
  background-color: white;
}
.nav img {
  width: 39px;
  height: auto;
  display: inline;
}
.nav > .nav-header {
  display: inline;
}
.nav > .nav-header > .nav-title {
  display: inline-block;
  font-size: 22px;
  color: #fff;
  padding: 10px 10px 10px 10px;
}
.nav > .nav-btn {
  display: none;
}
.nav > .nav-links {
  display: inline;
  /*  float: right;*/
  font-size: 18px;
}
.nav > .nav-links > li {
  display: inline;
  padding: 13px 10px 13px 10px;
  text-decoration: none;
  color: #293C4B;
  transition: all .3s ease-in-out;
}
.nav > .nav-links > li:last-child {
  float: right;
}
.nav > .nav-links > li:last-child:hover {
  border-bottom: none !important;
}
.nav > .nav-links > li:hover {
  border-bottom: 5px solid #F2A241;
}
.nav > .nav-links > li:active {
  border-bottom: 5px solid #F2A241;
}
.nav > #nav-check {
  display: none;
}
.nav .button {
  display: inline;
  background-color: #293C4B;
  width: 176px;
  height: 35px;
  border-radius: 52px;
  color: white;
  /*  font-family: 'Raleway', sans-serif;*/
  font-weight: 500;
  font-size: 17px;
  line-height: 16.44px;
  padding: 10px;
}
.nav .nav-button {
  display: inline;
  float: right;
}
@media (max-width:600px) {
  .nav {
    display: block !important;
  }
  .nav > .nav-btn {
    display: inline-block;
    position: absolute;
    right: 0px;
    top: 0px;
    margin-top: 10px;
  }
  .nav > .nav-btn > label {
    /*
    display: inline-block;
    width: 50px;
    height: 50px;
*/
    padding: 13px;
    row-gap: 5px;
    transition: all .3s ease-in-out;
  }
  .nav > .nav-btn > label:hover, .nav #nav-check:checked ~ .nav-btn > label {
    background-color: #E8FCFA;
  }
  .nav > .nav-btn > label > span {
    width: 25px;
    height: 3px;
    background-color: black;
    border-radius: 10px;
  }
  .nav > .nav-links {
    display: block;
    width: 100%;
    background-color: white;
    height: 0px;
    transition: all 0.3s ease-in;
    overflow-y: hidden;
    top: 50px;
    left: 0px;
    text-align: -webkit-center;
  }
  .nav > .nav-links > li:last-child {
    float: none;
  }
  .nav > .nav-links > li {
    display: table;
  }
  .nav > #nav-check:not(:checked) ~ .nav-links {
    height: 0px;
  }
  .nav > #nav-check:checked ~ .nav-links {
    height: calc(100vh - 50px);
    overflow-y: auto;
  }
}
/*End-NavBar*/
/* Hero */
#hero {
  background-color: #293C4B;
  padding-top: 4rem;
  width: 100%;
  overflow: hidden;
  justify-content: center;
  align-items: flex-start;
  align-items: center;
}
#hero img {
  width: 450px;
}
.hero-main-text {
  font-family: 'Playfair Display', serif;
  color: #F2A241;
  font-style: normal;
  font-weight: 700;
  line-height: 63px;
  padding: 40px 0px;
  text-align: left;
}
.hero-text {
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-weight: 700;
  line-height: 63px;
  width: 610px;
}
.hero-1 {
  font-size: 55px;
  color: white;
}
.hero-2 {
  font-size: 55px;
  color: #F2A241;
}
#hero button {
  width: 260px;
  height: 96px;
  border-radius: 58px;
  font-family: 'Raleway', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  line-height: 27px;
}
#hero .button {
  width: 260px;
  height: 66px;
  border-radius: 58px;
  font-family: 'Raleway', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  text-align: center;
}
#hero button div {
  padding: 0px 40px;
}
#hero button p {
  font-family: 'Raleway';
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: #293C4B;
}
#hero button h3 {
  font-family: 'Raleway';
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  line-height: 24px;
  text-align: center;
  color: #293C4B;
}
/*form styles*/
.modal-content {
  background-color: #fefefe;
}
#modalForm input[type=text], select, textarea {
  height: 45px !important;
  padding: 12px !important; /* Some padding */
  border: 1px solid #ccc !important; /* Gray border */
  border-radius: 4px !important; /* Rounded borders */
  box-sizing: border-box !important; /* Make sure that padding and width stays in place */
  margin-top: 6px !important; /* Add a top margin */
  margin-bottom: 16px !important; /* Bottom margin */
  resize: vertical !important; /* Allow the user to vertically resize the textarea (not horizontally) */
  background-color: white !important;
}
#modalForm select:invalid {
  color: gray;
}
/* Style the submit button with a specific background color etc */
#modalForm input[type=submit] {
  color: #293C4B;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  margin: 50px 0;
  width: 260px;
  height: 50px;
  background: #F2A241;
  border-radius: 50px;
  cursor: pointer;
  transition: all .3s ease-in-out;
}
/* When moving the mouse over the submit button, add a darker green color */
#modalForm input[type=submit]:hover {
  background-color: #293C4B;
  color: white;
}
#modalForm input[type=submit]: {
  background-color: #293C4B;
  color: white;
}
#modalForm input select {
  border-radius: .5rem;
  border: solid 2px #7C7C7C;
  padding-left: 5px;
}
/*End- Modal form*/
#comapreForm {
  margin: 50px auto;
  text-align: center;
  position: relative;
}
#comapreForm fieldset {
  background: white;
  background-color: white;
  border-style: solid;
  border-width: 20px;
  border-image: linear-gradient(#F2A241, #FADAB3) 1;
  box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  padding: 20px 30px;
  box-sizing: border-box;
  margin: 0 10%;
  position: relative;
}
/*Hide all except first fieldset*/
#comapreForm fieldset:not(:first-of-type) {
  display: none;
}
/*inputs*/
#comapreForm input, #comapreForm textarea {
  padding: 7px;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin-bottom: 10px;
  width: 100%;
  box-sizing: border-box;
  font-family: montserrat;
  color: #2c3e50;
  font-size: 13px;
}
/*buttons*/
#comapreForm .action-button {
  width: 100px;
  background: #27ae60;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 1px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px;
  transition: all .3s ease-in-out;
}
#comapreForm .action-button:hover, #comapreForm .action-button:focus {
  box-shadow: 0 0 0 2px white, 0 0 0 3px #27ae60;
}
/*headings*/
.fs-title {
  font-size: 15px;
  text-transform: uppercase;
  color: #2c3e50;
  margin-bottom: 10px;
}
.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: 25%;
  float: left;
  position: relative;
}
#progressbar li:before {
  content: counter(step);
  counter-increment: step;
  width: 20px;
  line-height: 20px;
  display: block;
  font-size: 10px;
  color: #333;
  background: white;
  border-radius: 3px;
  margin: 0 auto 5px auto;
}
/*progressbar connectors*/
#progressbar li:after {
  content: "";
  width: 100%;
  height: 2px;
  background: #F2A241;
  position: absolute;
  left: -50%;
  top: 9px;
  z-index: -1; /*put it behind the numbers*/
}
#progressbar li:first-child:after {
  /*connector not needed before the first step*/
  content: none;
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before, #progressbar li.active:after {
  background: #27ae60;
  color: white;
}
#myModal .button {
  border: 3px solid #494949;
  border-radius: 10px;
  width: 215px;
  background: white;
  cursor: pointer;
}
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 56px;
  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.7); /* Black w/ opacity */
}
/* 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 */
}
/* The Close Button */
.close {
  background: white;
  border-radius: 50px;
  /* color: #aaa; */
  float: right;
  font-size: 28px;
  font-weight: bold;
  width: 40px;
  height: 44px;
  text-align: center;
  transition: all .3s ease-in-out;
}
.close:hover, .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.modal-container {
  padding: 6px 32px;
}
#myModal input:focus {
  background-color: #F2A241;
  color: #293C4B;
  outline: none;
}
/* Style the form */
#regForm {
  background-color: #ffffff;
  margin: 50px auto;
  width: 70%;
  min-width: 300px;
}
/* Style the input fields */
input {
  padding: 10px;
  width: 100%;
  font-size: 17px;
  font-family: Raleway;
  border: 1px solid #aaaaaa;
}
/* Mark input boxes that gets an error on validation: */
input.invalid {
  background-color: #ffdddd;
}
/* Hide all steps by default: */
.tab {
  display: none;
}
.tab h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
  text-align: center;
  padding-bottom: 20px;
}
.tab button {
  background-color: white !important;
  width: 216px !important;
  height: 32px !important;
  border: 2px solid black;
  align-content: center;
  border-radius: 6px !important;
  font-family: "Raleway" !important;
  font-style: normal !important;
  text-align: center !important;
  color: #293C4B !important;
  padding: 10px 0px !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn button {
  background-color: white !important;
  width: 216px !important;
  height: 32px !important;
  border: 2px solid black;
  align-content: center;
  border-radius: 6px !important;
  font-family: "Raleway" !important;
  font-style: normal !important;
  text-align: center !important;
  color: #293C4B !important;
  padding: 10px 0px !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Make circles that indicate the steps of the form: */
.step {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbbbbb;
  border: none;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
}
/* Mark the active step: */
.step.active {
  opacity: 1;
}
/* Mark the steps that are finished and valid: */
.step.finish {
  background-color: #04AA6D;
}
/*End-Modal*/
/* FOOTER */
footer {
  padding: 20px 40px;
  padding: 2rem;
}
footer input {
  width: 350px;
  border: 2px solid #DCDCDC;
  border-radius: 12px !important;
  height: 50px !important;
  padding: 12px !important;
  box-sizing: border-box !important; /* Make sure that padding and width stays in place */
  margin-top: 6px !important;
  margin-bottom: 16px !important;
  resize: vertical !important; /* Allow the user to vertically resize the textarea (not horizontally) */
  background-color: white !important;
}
.footerlink {
  font-weight: bold;
  color: black;
  text-decoration: none;
  font-size: large;
}
#about h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: calc(30px + 0.6vw);
  line-height: 40px;
  padding-bottom: 40px;
}
#about p {
  font-family: "Raleway";
  font-weight: 500px;
  font-size: calc(14px + 0.6vw);
  text-align: center;
}
#stairlifts h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 45px;
  line-height: 40px;
  padding-bottom: inherit;
}
#stairlifts h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: #293C4B;
}
#stairlifts h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #293C4B;
}
#stairlifts h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  color: #293C4B;
}
#stairlifts h7 {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  color: #293C4B;
}
#stairlifts h8 {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #293C4B;
}
#stairlifts img {
  position: absolute;
}
#stairlifts div.features {
  background: linear-gradient(#F2A241 1.41%, #F2A241 1.41%, #F2A241 20.99%, #FADAB3 97.79%);
  border-radius: 20px;
  padding-top: 200px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 25px;
  margin-top: 90px;
  box-shadow: 0px 3px 10px 1px #888888;
  max-width: 286px;
}
#stairlifts button {
  width: 183px;
  height: 46.45px;
  background: #293C4B;
  border-radius: 50px;
  color: white;
  margin-bottom: 20px;
}
/* Slide Show*/
#reviews h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 18px;
  line-height: 29px;
}
#reviews h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 17px;
  height: 32;
}
#reviews img {
  position: relative;
}
ul.slides {
  display: block;
  position: relative;
  height: 340px;
  width: auto;
  margin: 0;
  padding: 0;
  overflow: hidden;
  list-style: none;
  border-radius: 50px;
}
.slides * {
  user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}
ul.slides input {
  display: none;
}
.slide-container {
  display: block;
}
.slide-image {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 0px 100px;
  top: 0;
  opacity: 0;
  transition: all .3s ease-in-out;
}
.carousel-controls {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  font-size: 100px;
  line-height: 600px;
  color: #fff;
}
.carousel-controls label {
  display: none;
  position: absolute;
  padding: 0 20px;
  opacity: 0;
  transition: opacity .2s;
  cursor: pointer;
}
.slide-image:hover + .carousel-controls label {
  opacity: 0.5;
}
.carousel-controls label:hover {
  opacity: 1;
}
.carousel-controls .prev-slide {
  color: black;
  width: 49%;
  text-align: left;
  left: 0;
  top: -150px;
}
.carousel-controls .next-slide {
  color: black;
  width: 49%;
  text-align: right;
  right: 0;
  top: -150px;
}
.carousel-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  z-index: 99;
  text-align: center;
}
.carousel-dots .carousel-dot {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: darkgrey;
  opacity: 0.5;
  margin: 10px;
}
input:checked + .slide-container .slide-image {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1s ease-in-out;
}
input:checked + .slide-container .carousel-controls label {
  display: block;
}
input#img-1:checked ~ .carousel-dots label#img-dot-1, input#img-2:checked ~ .carousel-dots label#img-dot-2, input#img-3:checked ~ .carousel-dots label#img-dot-3, input#img-4:checked ~ .carousel-dots label#img-dot-4, input#img-5:checked ~ .carousel-dots label#img-dot-5, input#img-6:checked ~ .carousel-dots label#img-dot-6 {
  opacity: 1;
}
input:checked + .slide-container .nav label {
  display: block;
}
/*End-SlideShow*/
#get-prices {
  background: #293C4B;
  height: 331px;
  width: 100%;
  background-image: url("/assets/photos/Stairs-Vector(large).png");
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  justify-content: flex-end;
  align-items: center;
  padding: 30px 23%;
}
#get-prices img {
  width: 100%;
}
#get-prices h1 h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}
#get-prices h1 {
  font-family: 'Playfair Display', serif;
  color: #F2A241;
  font-size: 35px;
}
#get-prices h2 {
  font-family: 'Playfair Display', serif;
  color: white;
  font-size: 28px;
}
#get-prices button {
  border-radius: 50px;
  font-weight: 700;
  width: 260px;
  height: 83px;
  font-family: 'Raleway', sans-serif;
  font-size: 24px;
  line-height: 25px;
}
.call {
  color: white;
  transition: all .3s ease-in-out;
}
.call:hover {
  background: white;
  color: #293C4B;
}
/*CAROUSEL*/
@keyframes heartbeat {
  0% {
    transform: scale(0);
  }
  25% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
body {
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  height: 1200px;
}
#blog {
  justify-self: center;
}
#blog h1 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
}
#articles h1 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
}
/*	Carousel*/
.slider-container {
  position: relative;
  margin: 0 auto;
  width: 570px;
  height: 400px;
  top: -45px;
}
.slider-container .bullet-container {
  position: initial !important;
  padding-top: 123px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-container .bullet-container .bullet {
  margin-right: 30px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: gray;
  opacity: 0.5;
}
.slider-container .bullet-container .bullet:last-child {
  margin-right: 0px;
}
.slider-container .bullet-container .bullet.active {
  opacity: 1;
}
.slider-container .slider-content {
  position: relative;
  left: 50%;
  top: 50%;
  width: 70%;
  height: 70%;
  transform: translate(-50%, -50%);
}
.slider-container .slider-content .slider-single {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: z-index 0ms 250ms;
}
.slider-container .slider-content .slider-single .slider-single-image {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.2);
  transition: 500ms cubic-bezier(0.17, 0.67, 0.55, 1.43);
  transform: scale(0);
  opacity: 0;
}
.slider-container .slider-content .slider-single .slider-single-download {
  position: absolute;
  display: block;
  right: -22px;
  bottom: 12px;
  padding: 15px;
  color: #333333;
  background-color: #fdc84b;
  font-size: 18px;
  font-weight: 600;
  font-family: "karla";
  border-radius: 5px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  transition: 500ms cubic-bezier(0.17, 0.67, 0.55, 1.43);
  opacity: 0;
}
.slider-container .slider-content .slider-single .slider-single-download:hover, .slider-container .slider-content .slider-single .slider-single-download:focus {
  outline: none;
  text-decoration: none;
}
.slider-container .slider-content .slider-single .slider-single-title {
  text-align: center;
  padding-top: 9px;
  display: block;
  float: center;
  font-size: 16px;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  color: #293C4B;
  transition: 500ms cubic-bezier(0.17, 0.67, 0.55, 1.43);
  opacity: 0;
  line-height: 21px !important;
}
.slider-container .slider-content .slider-single .slider-single-likes {
  display: block;
  float: right;
  margin: 16px 20px 0 0;
  transition: 500ms cubic-bezier(0.17, 0.67, 0.55, 1.43);
  opacity: 0;
}
.slider-container .slider-content .slider-single .slider-single-likes i {
  font-size: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  color: #ff6060;
  transition: 500ms cubic-bezier(0.17, 0.67, 0.55, 1.43);
  transform: scale(0);
}
.slider-container .slider-content .slider-single .slider-single-likes p {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  color: #ffffff;
}
.slider-container .slider-content .slider-single .slider-single-likes:hover, .slider-container .slider-content .slider-single .slider-single-likes:focus {
  outline: none;
  text-decoration: none;
}
.slider-container .slider-content .slider-single.preactivede .slider-single-image {
  transform: translateX(-50%) scale(0);
}
.slider-container .slider-content .slider-single.preactive {
  z-index: 1;
}
.slider-container .slider-content .slider-single.preactive .slider-single-image {
  opacity: 0.3;
  border-radius: 50px;
  transform: translateX(-25%) scale(0.8);
}
.slider-container .slider-content .slider-single.preactive .slider-single-download {
  transform: translateX(-150px);
}
.slider-container .slider-content .slider-single.preactive .slider-single-title {
  transform: translateX(-150px);
}
.slider-container .slider-content .slider-single.preactive .slider-single-likes {
  transform: translateX(-150px);
}
.slider-container .slider-content .slider-single.proactive {
  z-index: 1;
}
.slider-container .slider-content .slider-single.proactive .slider-single-image {
  opacity: 0.3;
  border-radius: 50px;
  transform: translateX(25%) scale(0.8);
}
.slider-container .slider-content .slider-single.proactive .slider-single-download {
  transform: translateX(150px);
}
.slider-container .slider-content .slider-single.proactive .slider-single-title {
  transform: translateX(150px);
}
.slider-container .slider-content .slider-single.proactive .slider-single-likes {
  transform: translateX(150px);
}
.slider-container .slider-content .slider-single.proactivede .slider-single-image {
  transform: translateX(50%) scale(0);
}
.slider-container .slider-content .slider-single.active {
  z-index: 2;
}
.slider-container .slider-content .slider-single.active .slider-single-image {
  opacity: 1;
  border-radius: 50px;
  transform: translateX(0%) scale(1);
}
.slider-container .slider-content .slider-single.active .slider-single-download {
  opacity: 1;
  transition-delay: 100ms;
  transform: translateX(0px);
}
.slider-container .slider-content .slider-single.active .slider-single-title {
  opacity: 1;
  transition-delay: 200ms;
  transform: translateX(0px);
}
.slider-container .slider-content .slider-single.active .slider-single-likes {
  opacity: 1;
  transition-delay: 300ms;
  transform: translateX(0px);
}
.slider-container .slider-content .slider-single.active .slider-single-likes i {
  animation-name: heartbeat;
  animation-duration: 500ms;
  animation-delay: 900ms;
  animation-interation: 1;
  animation-fill-mode: forwards;
}
.slider-container .slider-left {
  position: absolute;
  display: block;
  right: 100%;
  top: 50%;
  color: black;
  transform: translateY(-50%);
  padding: 10px 15px;
  border: 2px solid #293C4B;
  border-radius: 50px;
  margin-right: -2px;
  cursor: pointer;
  transition: all .3s ease-in-out;
}
.slider-container .slider-right {
  position: absolute;
  display: block;
  left: 104%;
  top: 50%;
  color: #293C4B;
  transform: translateY(-50%);
  padding: 10px 15px;
  border: 2px solid #293C4B;
  border-radius: 50px;
  margin-left: -2px;
  cursor: pointer;
  transition: all .3s ease-in-out;
}
.slider-container .slider-left:hover {
  color: white;
  background: #293C4B;
}
.slider-container .slider-right:hover {
  color: white;
  background: #293C4B;
}
.slider-container .not-visible {
  display: none !important;
}
#FAQ {
  padding: 0 10%;
}
#FAQ h1 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
}
#FAQ .container {
  margin-top: 20px;
}
#FAQ .container h2 {
  position: relative;
  width: 23rem;
  color: hotpink;
  margin: 20px 0;
}
#FAQ .container h2::after {
  position: absolute;
  content: '';
  width: 67px;
  height: 2px;
  right: 5px;
  background-color: hotpink;
  bottom: 0;
}
#FAQ .accordion {
  width: 100%;
  padding: 0 5px;
  border-bottom: 2px solid #3D3D3D;
  cursor: pointer;
  display: flex;
  margin: 10px 0;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}
#FAQ .accordion i {
  color: black;
  transition: all .5s ease-in;
}
#FAQ .accordion .fa-minus {
  display: none;
}
#FAQ .active, .accordion:hover {
  background-color: #293C4B;
  color: white;
  transition: all .5s ease-in;
  border: 2px solid #dddddd;
}
#FAQ .active .fa-minus {
  display: block;
}
#FAQ .active .fa-plus {
  display: none;
}
#FAQ .accordion h5 {
  font-size: 20px;
  margin: 0;
  color: #001733;
  padding-left: 5px;
  text-align: left;
}
#FAQ .active i, #FAQ .active h5, #FAQ .accordion:hover i, #FAQ .accordion:hover h5 {
  color: white;
}
#FAQ .panal {
  padding: 0 15px;
  border-left: 1px solid #293C4B;
  margin-left: 25px;
  font-size: 14px;
  text-align: justify;
  overflow: hidden;
  transition: all .5s ease-in;
  max-height: 0;
}
/*	Form formating*/
#contact {
  background: #E8FCFA;
  color: black;
  min-height: 40rem;
  width: 100%;
}
#contact h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: calc(30px + 0.6vw);
  ;
  line-height: 40px;
}
#contact h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: calc(14px + 0.6vw);
  line-height: 24px;
}
#contact h3 {
  font-size: calc(14px + 0.6vw);
}
#contact input[type=text], select, textarea {
  height: 45px !important;
  padding: 12px !important; /* Some padding */
  border: 1px solid #ccc !important; /* Gray border */
  border-radius: 4px !important; /* Rounded borders */
  box-sizing: border-box !important; /* Make sure that padding and width stays in place */
  margin-top: 6px !important; /* Add a top margin */
  margin-bottom: 16px !important; /* Bottom margin */
  resize: vertical !important; /* Allow the user to vertically resize the textarea (not horizontally) */
  background-color: white !important;
}
select:invalid {
  color: gray;
}
/* Style the submit button with a specific background color etc */
input[type=submit] {
  color: #293C4B;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  margin: 50px 0px 10px 0px;
  width: 260px;
  height: 50px;
  background: #F2A241;
  border-radius: 50px;
  cursor: pointer;
  transition: all .3s ease-in-out;
}
/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: #293C4B;
  color: white;
}
input select {
  border-radius: .5rem;
  border: solid 2px #7C7C7C;
  padding-left: 5px;
}
.container {
  border-radius: 5px;
  padding: 20px;
}
#contact button {
  color: white;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  margin: 50px 0;
  width: 260px;
  height: 50px;
  background: #F2A241;
  border-radius: 50px;
}
.thankyou {
  background-color: #293C4B;
  font-weight: 700;
  padding: 14px 25px;
  border-radius: 50px;
  color: white;
}
#validationModal {
  display: none;
}
.readMore {
  background: #293C4B;
  margin-top: 2rem;
  transition: all .2s ease-in-out;
}
.readMore:hover {
  background: #005197;
}
/*Footer*/
footer {
  background: #293C4B;
  padding: 20px 100px;
  color: white;
  display: flex;
  justify-content: center;
  width: 100%;
  bottom: 0;
  position: relative;
}
footer .back-top {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 18px;
  align-items: center;
}
footer .material-icons {
  font-size: 50px;
}
footer .social {
  width: 30px;
}
footer .links {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 24px;
}
footer h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 53px;
  text-align: center;
  color: #F2A241;
}
footer h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  text-align: center;
}
footer p {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: #293C4B;
}
footer h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  text-align: center;
  color: #293C4B;
}
footer input[type=submit] {
  font-family: 'Raleway', sans-serif !important;
  font-weight: 700 !important;
  font-size: 24px !important;
  width: 260px !important;
  height: 50px !important;
  background: #F2A241 !important;
  border-radius: 50px !important;
  justify-content: center !important;
  text-decoration: none !important;
}
/*End-Footer*/