@import "thankyoupage.css";

/* ----- RESET ----- */

body {
  margin: 0;
  box-sizing: 0;
  scroll-behavior: smooth;
  background-color: #52a72b;
  padding: 0;
  width: 100%;
  position: relative;
}

html, body {
  overflow-x: hidden;
}

.hide{
	display: none;
}

#email{
  position: absolute;
  top: -9999px;
}

/* ----- NAVBAR ----- */

.nav-logo {
  width: 120px;
}

.nav-link {
  color: white;
}

.nav-link:hover,
.nav-link:active {
  color: #ffac54;
}

.navbar-collapse {
  background-color: #52a72b;
  padding: 1rem;
}

.navbar-toggler {
  filter: invert(97%) sepia(68%) saturate(979%) hue-rotate(314deg)
    brightness(105%) contrast(103%);
}



/* ----- SECTION 1 -------- */

.section-1{
  background-image:  linear-gradient(#58a1361e, #376d2526 ),url("../images/background.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #292325;
  height: 25rem;
position: relative;
}

.hero-text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-shadow: 2px 2px 5px #075919;
  text-align: center;
}

.hero-text>h1{
  font-weight: 800;
  font-size: 90px;
}

.hero-text>h2{
  font-weight: 600;
  font-size: 35px;
}

.btn{
  background-color: #ff9320;
  color: white;
  font-size: 20px;
  margin: 1rem;
  padding: 0.5rem;
  width: 15rem;
  border-radius: 10px;
  transition: 1s all;
  box-shadow: 0 0 4px #000000;
}

.btn:hover{
  background-color: #ffa84b;
  color: white;
}

/* ----- SECTION 2 ------- */

.section-2{
  display: flex;
  justify-content: center;
  background-color: #FCFCFC;
  color: #292325;
  padding: 1rem;
}

.section-2>h2{
  font-size: 50px;
  font-weight: 800;
  text-align: center;
  padding: 2rem 0;
}

.card {
  border: 0;
  box-shadow: 0 0 0 2px #ff9320, 8px 8px 0 0 #ff9320;
  margin: 1rem;
  margin-bottom: 3rem;
  padding: 1rem;
  border-radius: 0px;
  min-height: 23rem;
}

.col-card{
  height: fit-content;
}

.card-text {
  text-align: center;
  margin: 2rem 0;
}

.card-text>strong{
  font-size: 25px;
}

.card-body{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card img {
  width: 100px;
  height: 100px;
}

/* ----- SEPARATION -------- */

.separation{
  background-color: #52a72b;
  color: white;
  text-align: center;
  padding: 1rem;
}

.separation>h4{
  font-size: 25px;
}

/* ----- SECTION 3 -------- */

.section-3{
  background-color: #FCFCFC;
  color: #292325;
  padding: 3.5rem 0rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.s3-intro{
margin: 0 auto;
padding: 1.5rem 3rem;
font-size: 20px;
}

.s3-title-span{
  font-weight: 800;
  color: #ff7400;
  font-size: 48px;
}

.section-3>p{
font-size: 50px;
}

.s3-text{
  padding: 3rem;
}

.s3-txt{
  font-size: 20px;
}

.s3-benefit-numb{
  font-size: 30px;
  font-weight: 800;
  color:#ff7400;
}

.s3-benefit-txt{
  font-size: 30px;
  font-weight: 700;
}

/* ----- RADIO TO BUTTON -------- */

.answer-holder input[type="radio"] {
  opacity: 0;
  position: fixed;
  width: 0;
}

.answer-holder label {
  display: flex;
  justify-content: center;
  cursor: pointer;
  align-items: center;
  color: white;
  margin: 0.1rem;
  background-color: #52a72b;
  padding: 10px 20px;
  font-family: sans-serif, Arial;
  font-size: 16px;
  border-radius: 4px;
  width: 95%;
  transition: 1s;
}

.answer-holder input[type="radio"]:checked + label {
  background-color:#53b127;
}

.answer-holder input[type="radio"]:focus + label {
  border: 2px dashed #53b127;
}

.answer-holder label:hover {
  background-color: #68d137;
}

/* ----- FORM ------ */

.form-container {
  color: #12263a;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image:  linear-gradient(#81dc573d, #81dc573d), url("../images/foto-bck.jpeg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 1.5rem;
  height: 50rem;
}

#mainform{
  background-color: #fafcfff3;
  border-radius: 10px;
  padding: 2rem;
  width: 40rem;
}

.form-h2 {
  font-weight: 800;
  font-size: 38px;
  text-align: center;
}

.form-h3 {
  font-size: 13px;
  font-style: italic;
  text-align: center;
}

.step-title{
  font-weight: 600;
  margin-bottom: 2.5rem;
}

.step-title2{
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-title{
  font-weight: 800;
  font-size: 40px;
  text-align: center;
}

.form-subtitle{
  font-size: 16px;
  text-align: center;
  font-weight: 600;
}

#form-text{
  display: block;
}

.form-group {
  margin: 0.4rem;
}

.form-control{
  margin: 0.2rem;
  background-color: #edffe4;
  width: 95%;
  border: 1px solid #52a72b;
}

.form-control::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #232f3f47;
  opacity: 1; /* Firefox */
}

.form-control:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #232f3f47;
}

.form-control::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #232f3f47;
}

.check {
  padding-left: 1rem;
  margin-top: 0.5rem;
}

.return{
  color: #12263a46;
  font-weight: 600;
  cursor: pointer;
  width: fit-content;
  padding: 1rem 2rem;
  border-radius: 13px;
  margin-top: 1rem;
  transition: 1s;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
}

.termstext{
  font-size: 4px;
  text-align: justify;
}

.options{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-btn{
  background-color: #ff7400;
  border: 0;
  border-radius: 10px;
  padding: 0.5rem;
  cursor: pointer;
  transition: 1s;
  color: white;
}

.form-btn:hover{
  background-color: #e27705;
}

.progress{
  border-radius: 100px;
  background-color: #bdc9c9;
  margin: 1rem;
}

.progress-bar {
  background-color: #81dc57;
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
  border-radius: 100px;
}

.p-txt>h3{
font-size: 20px;
font-weight: 800;
}

.p-txt{
  margin-top: -1.5rem;
}

.progress-text1{
  width: 100%;
  text-align: left;
}

.progress-text2{
  width: 100%;
  text-align: center;
}

.progress-text3{
  width: 100%;
  text-align: right;
}

.errormsg{
  color: rgb(255, 169, 169);
  background-color: rgba(237, 170, 181, 0.325);
  margin: 0.5rem;
  border-radius: 20px;
  width: fit-content;
}

#termstext>label{
  font-size: 10px;
  color: #12263ab1;
  padding-top: 0.5rem;
}

#termstext>label>a{
  color: #12263a;
}

.bttn{
background-color: #81dc57;
color: white;
width: 8rem;
border-radius: 10px;
cursor: pointer;
padding: 0.5rem;
text-align: center;
font-weight: 600;
margin-top: 1.5rem;
transition: 1s all;
}

.bttn:hover{
  background-color: #56c522;
}

/* ----- FOOTER ------ */

.footer {
  color: #ffffff;
  background-color: #52a72b;
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer>p>a{
  color: #f1faee;
}

/* Realised by */

.really{

  border: 2px solid #ccc;
  border-radius: 10px;
  background-color: #f7f7f7;
  padding: 1.5em;
  color: #999;
  width: 50%;
  /*max-width: 800px;*/
  min-height: 500px;
  position: fixed;
  top: 10%;
  left: 50%;
  margin-left: -25%;
  transform: scale(0, 0);
  transition: all 0.5s ease;
  z-index: 9;
  overflow:hidden;
  /*margin: auto;*/
}

.reallyactive{
  transform: scale(1, 1);
  /*position: fixed;*/
}

#realisedbybox{
  margin-top: 20px;
  overflow-y: scroll;
  max-height: 400px;
}

#realisedby img {
  max-width: 200px;
}

#realisedbyclose {
  float: right;
  margin-right: 15px;
}

.fa-window-close{
  border: 0;
  border-radius: 5px;
  color: #f1faee;
  background-color: #ff97a7;
  font-weight: 800;
}

/* ----- MEDIA QUERYS ------ */


/* mid-screen */

@media (max-width: 991px) {
  .form-container{
    display: flex;
    justify-content: center;

  }

.form-horizontal{
width: 90%;
}

}
@media (max-width: 767px) {

#navbar{
  height: 4rem;
}
  #navbar > img {
    width: 6rem;
  }

.section-1{
  height:30rem;
}

.section-3{
  padding: 2rem 0;
}

.s3-intro>h1{
  font-size: 35px;
}
.s3-text{
  padding: 1rem 3rem;
}
.hero-text>h2{
  font-size: 25px;
  width: auto;
}

  .form-container{
    height: fit-content;
  }

  .really{
    border: 2px solid #ccc;
    border-radius: 10px;
    background-color: #f7f7f7;
    padding: 1.5em;
    color: #999;
    width: 80%;
    /*max-width: 800px;*/
    min-height: 500px;
    position: fixed;
    top: 10%;
    left: 30%;
    margin-left: -20%;
    transform: scale(0, 0);
    transition: all 0.5s ease;
    overflow:hidden;
    /*margin: auto;*/
  }

  .reallyactive{
    transform: scale(1, 1);
    /*position: fixed;*/
  }

}

/* mobile */

@media (max-width: 575px) {

  .form-container {
    margin: 0;
    padding: 1rem;
    height: fit-content;
  }

  .really{
    border: 2px solid #ccc;
    border-radius: 10px;
    background-color: #f7f7f7;
    padding: 1.5em;
    color: #999;
    width: 100%;
    /*max-width: 800px;*/
    min-height: 500px;
    position: fixed;
    top: 10%;
    left: 0;
    margin-left: 0;
    transform: scale(0, 0);
    transition: all 0.5s ease;
    overflow:hidden;
    /*margin: auto;*/
  }

  .reallyactive{
    transform: scale(1, 1);
    /*position: fixed;*/
  }

  .card{
    min-height: fit-content;
  }
}

/* Contact Form */


.contactform {
  padding: 20px 40px;
  color: #999;
  position: fixed;
  top: 10%;
  margin-left: 35%;
  margin-right: 35%;
  margin-top: 0px;
  padding: 10px;
  z-index: 10;
  height: auto;
  
  transform: scale(0, 0);
  transition: all 0.5s ease;
}


@media screen and (max-width: 1400px){

  .contactform {
    border: 2px solid #ccc;
    border-radius: 10px;
    background-color: #f7f7f7;
    padding: 20px 40px;
    color: #999;
    position: fixed;
    top: 10%;
    margin-left: 30%;
    margin-right: 30%;
    margin-top: 0px;
    padding: 10px;
    z-index: 10;
    height: auto;
    
    transform: scale(0, 0);
    transition: all 0.5s ease;
  }

} 

@media screen and (max-width: 1024px){

  .contactform {
    border: 2px solid #ccc;
    border-radius: 10px;
    background-color: #f7f7f7;
    padding: 20px 40px;
    color: #999;
    position: fixed;
    top: 10%;
    margin-left: 25%;
    margin-right: 25%;
    margin-top: 0px;
    padding: 10px;
    z-index: 10;
    height: auto;
    
    transform: scale(0, 0);
    transition: all 0.5s ease;
  }

} 

@media screen and (max-width: 768px){

  .contactform {
    border: 2px solid #ccc;
    border-radius: 10px;
    background-color: #f7f7f7;
    padding: 20px 40px;
    color: #999;
    position: fixed;
    top: 10%;
    margin-left: 20%;
    margin-right: 20%;
    margin-top: 0px;
    padding: 10px;
    z-index: 10;
    height: auto;
    
    transform: scale(0, 0);
    transition: all 0.5s ease;
  }

} 


@media screen and (max-width: 425px){

  .contactform {
    border: 2px solid #ccc;
    border-radius: 10px;
    background-color: #f7f7f7;
    padding: 20px 40px;
    color: #999;
    position: fixed;
    top: 10%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    padding: 10px;
    z-index: 10;
    height: auto;
    
    transform: scale(0, 0);
    transition: all 0.5s ease;
  }


} 

.contactactive{
  transform: scale(1, 1);
  position: fixed;
}


#xclose {
  /*position: fixed;*/
  padding: 5px;
  margin: 0 5px 10px 0;
  background-color: #ececec;
  border: 1px solid #c5c5c5;
  width: 26px;
}

#contacterr {
  margin-top: 10px;
  margin-bottom: 10px;
  color: red;
}

#bclose {
  line-height: 1em;
  border-radius: 0;
  padding: 4px 0;
  font-size: 18pt;
}