@font-face {
  font-family: 'open-sans-regular';
  src: url('../fonts/OpenSans-Regular.ttf');
}

@font-face {
  font-family: 'open-sans-medium';
  src: url('../fonts/OpenSans-Medium.ttf');
}

@font-face {
  font-family: 'open-sans-semi-bold';
  src: url('../fonts/OpenSans-SemiBold.ttf');
}

@font-face {
  font-family: 'open-sans-extra-bold';
  src: url('../fonts/OpenSans-ExtraBold.ttf');
}

/***************************************/

nav {
  z-index: 2 !important;
  position: absolute;
  width: 100% !important;
  background: transparent;
}

nav a {
  cursor: pointer;
  text-decoration: none;
  color: white !important;
  font-family: 'open-sans-regular';
}
/*LOGO STYLES*/
nav a img {
  max-width: 350px;
  height: auto;
}

nav a:hover {
  opacity: 0.5;
}

/******************************************/

#banner {
  height: 100vh;
  color: white !important;
  background: transparent;
  z-index: 4 !important;
}

#banner h1 {
  font-size: 65px;
  font-weight: 500;
  font-family: 'open-sans-medium';
}

.slider-arrow {
  z-index: 10 !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.slider-arrow img {
  width: 18px;
  height: 18px;
}

#left-arrow {
  left: 70px;
}

#right-arrow {
  right: 70px;
}

.slider-arrow:hover {
  opacity: 0.85;
  cursor: pointer;
}

.swiper {
  position: absolute !important;
  top: 0 !important;
  z-index: 5 !important;
  width: 100%;
  height: 100vh;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: #ddd;
}

#slider-1 {
  background-image: url('../img/slider_1.jpg');
  background-size: cover;
}

#slider-2 {
  background-image: url('../img/slider_2.jpg');
  background-size: cover;

}

#slider-3 {
  background-image: url('../img/slider_3.jpg');
  background-size: cover;

}

/******************************************/

#about-us {
  background-color: #4AC44F;
}

#about-us h2 {
  font-family: "open-sans-extra-bold";
}

#about-us p {
  font-family: "open-sans-regular";
}

#about-us img {
  max-width: 50%;
}

/****************************************/

#how-it-works h2 {
  font-family: 'open-sans-extra-bold';
  color: #4AC44F;
}

#how-it-works p {
  font-family: 'open-sans-semi-bold';
  color: black;
}

#how-it-works .how-it-works-icon {
  max-width: 110px;
  max-height: 110px;
  width: auto;
  height: auto;
  margin: 0 auto 15px;
  object-fit: contain;
}



/****************************************/

footer {
  margin-top: 100px;
  padding-top: 80px;
  background-color: #F4F4F4;
  background-image: url("https://remedtest.com/remed_global/assets/media/footer_background.png");
  background-position: right;
  background-size: contain;
  background-repeat: no-repeat;

}


footer h3 {
  font-family: "open-sans-extra-bold";
  font-size: 22px;
}

footer p {
  font-size: 15px;
  font-family: 'open-sans-regular';

}

footer .footer-logo {
  max-height: 60px;
  width: auto;
}


footer a:hover {
  opacity: 0.5;
}

#contact-form {
  margin-top: -150px;
  margin-bottom: 25px;
  background-color: #ffffff;
  box-shadow: 0px 0px 13px #00000029;
  border-radius: 14px;
  padding: 45px 30px 45px 30px;

}

.submit-button {
  background-color: #003f8c;
  color: #fff;
  font-family: "open-sans";
  margin-top: 5px;
  border-radius: 5px;
  width: 100%;
  border: solid 1px #003f8c;
}

.submit-button:hover {
  background-color: #fff;
  color: #003f8c;
}
.submit-button:disabled {
  filter: grayscale(100%);   /* makes it look greyed out */
  cursor: not-allowed;       /* block cursor */
  opacity: 0.5;
  pointer-events: none;  
}
/*********************************************/
.debug {
  border: solid red 1px;
}

.white-line {
  width: 125px;
  height: 5px;
  border-radius: 3px;
  background-color: #ffffff;
  margin-bottom: 25px;
  margin-left: 3px;
}

.green-line {
  width: 125px;
  height: 5px;
  border-radius: 3px;
  background-color: #4AC44F;
  margin-bottom: 25px;
  margin-left: 3px;
}