@import "thankyoupage.css";

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

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

html,
body {
  overflow-x: hidden;
}

.hide {
  display: none;
}

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

#navbar {
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
  padding: 0 2rem;
}

#navbar > img {
  width: 5rem;
}

#navbar > h2 {
  font-size: 22px;
  color: #030a10;
}


/* ----- MAIN CONTAINER ---- */

.main-container{
  background-image: linear-gradient(#302f5387, #3a495846),
    url("../images/background-3.jpg");
    background-position-x: 80%;
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 27rem;
  padding: 2rem;
}

.section-1-mobile{
  display: none;
}

.highlight {
  display: inline;
  padding: 0.25em 0;
  background: #ffc107;
  color: #ffffff;
  box-shadow: 0.5em 0 0 #ffc107, -0.5em 0 0 #ffc107;
}
.s1-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left: 1rem;
}
.s1-box-content {

  color: white;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;

}

.s1-box-content > p {
  text-align: left;
  margin-bottom: 0;
}
.s1-logo {
  width: 40px;
  padding: 0.2rem;
}

.top-btn {
  display: none;
}

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

.section-1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: -4rem;
}

.s-1-text {
  color: #fafcff;
  text-shadow: #12263a 1px 0 10px;
  padding: 0.5rem 2rem;
  margin-bottom: 3rem;
}

.s1-h1 {
  font-weight: 800;
  font-size: 50px;
  border-left: 10px solid rgb(0, 255, 174);
  padding-left: 1rem;
  margin-top: 1rem;
}

.s1-h2 {
  font-size: 22px;
  font-style: italic;
  padding: 1.5rem 0rem;
}

.s1-h3 {
  font-size: 20px;
}

.s1-span{
  background-color: rgb(0, 255, 174);
  color: black;
  text-shadow: none;
  padding: 0 5px;
}

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

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

.answer-holder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap:10px;
  cursor: pointer;
  align-items: center;
  color: #12263a;
  margin: 0.1rem;
  background-color: #ebebeb;
  box-shadow: rgba(0, 0, 0, 0.208) 0px 2px 4px, rgba(0, 0, 0, 0) 0px 7px 13px -3px, rgba(0, 0, 0, 0.076) 0px -3px 0px inset;
  /*box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.1) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.02) 0px 2px 1px, rgba(0, 0, 0, 0.02) 0px 4px 2px, rgba(0, 0, 0, 0.02) 0px 8px 4px, rgba(0, 0, 0, 0.02) 0px 16px 8px, rgba(0, 0, 0, 0.02) 0px 32px 16px;*/
  padding: 10px 20px;
  font-family: sans-serif, Arial;
  font-size: 16px;
  border-radius: 4px;
  width: 60%;
  transition: 1s;
}

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

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

.answer-holder:hover {
  background-color: #bbbbbba7;
}

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

.form-container {
  background-color: #fafcffda;
  color: #12263a;
  height: 48rem;
  padding: 2rem;
  border-radius: 20px;
}

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

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

.step-title {
  font-weight: 600;
  margin-bottom: 2.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-text-mobile{
  display: none;
}

.form-group {
  margin: 0.4rem;
}

.form-control {
  margin: 0.2rem;
  background-color: #f1f1f1;
  width: 95%;
}

.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;
  justify-content: space-around;
  align-items: center;
  gap:20px;
}

.form-btn {
  background-color: rgb(0, 255, 174);
  border-bottom: 3px solid rgb(0, 125, 85);
  color: black;
  border: 0;
  border-radius: 10px;
  padding: 0.5rem;
  cursor: pointer;
  transition: 1s;
}

.form-btn:hover {
  background-color: rgb(0, 179, 122);
}

.progress {
  border-radius: 100px;
  background-color: #c4c4c4;
  margin: auto;
  height: 0.7rem;
  width: 80%;
}

.progress-bar {
  background-color: rgb(115, 255, 211);
}

.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{
  text-align: center;
}

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

.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, 131, 131);
  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;
  font-weight: 650;
}


.st-4{
  margin-top: -1rem;
}

#fieldbirthdate{
  display: flex;
  align-items: center;
  width: 96%;
}

.birthdate{
  padding-left: 0.3rem;
  font-size: 1rem;
}

.conditions{
  font-size: 13px;
}

.pp-link{
  color:#12263a;
  font-weight: 600;
}

.pp-link:hover{
  color:#12263a;
}


.next-btn{
  background-color: #12263a;
  color: white;
  padding: 0.5rem 2rem;
  border-radius: 10px;
  cursor:pointer;
  text-align: center;
  margin-top: 1rem;
  transition: 1s all;
}

.next-btn:hover{
background-color:#030a10 ;}

/*  ----- THANK YOU PAGE ------ */

#thankyou {
  font-weight: 800;
  font-size: 40px;
  text-align: center;
}

#thankyou > span {
  font-size: 30px;
  font-style: italic;
  font-weight: 500;
}

.thank-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

/* ----- MORE INFO ------ */

.separacion {
  background-color: #12263a;
  color: #fafcff;
  font-size: 22px;
  font-weight: 600;
  padding: 0.5rem;
  text-align: center;
}

.section-container{
  background-color: #f1f1f1;
}

.section-2 {
  padding: 3rem;
  display: flex;
  align-items: center;
}

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

.s2-h4 {
  font-weight: 800;
  font-size: 40px;
  text-align: center;
  padding-bottom: 1.5rem;
}

.s2-p {
  font-size: 18px;
  text-align: justify;
  margin: 0 auto;
  max-width: 60rem;
  padding: 2rem 0;
}

.s2-pp{
  font-size: 20px;
  font-weight: 800;
}

.s2-divider1{
  border-bottom: 5px solid rgb(0, 255, 174);
  width: 150px;
  margin-top: -1rem;
  margin:auto;
}

.s2-divider{
  border-bottom: 5px solid rgb(0, 255, 174);
  width: 150px;
  margin-top: -1rem;
}

.s2-box-container{
  padding: 1.5rem 5rem;
}

.s2-box{
border: 1px solid rgb(227, 227, 227);
height: 10rem;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap:10px;
}

.s2-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.s2-img {
  max-width: 600px;
  margin: 0 auto;
}

.s2-btn {
  background-color: rgb(0, 255, 174);
  border-bottom: 4px solid rgb(0, 125, 85);
  color: black;
  font-size: 25px;
  padding: 0.5rem 3rem;
  border-radius: 20px;
  cursor: pointer;
  text-align: center;
  width: fit-content;
  transition: 1s all;
  border-bottom: 3px solid #26672e;
  margin-top: 1rem;
}

.s2-btn:hover {
  background: rgb(0, 141, 96);
}

.s2-btn-mobile {
  display: none;
  background-color: rgb(0, 255, 174);
  border-bottom: 3px solid rgb(0, 125, 85);
  color: black;
  font-size: 25px;
  padding: 0.5rem 3rem;
  border-radius: 20px;
  cursor: pointer;
  text-align: center;
  width: fit-content;
  transition: 1s all;
  margin: auto;
  margin-bottom: 1rem;
}

.s2-btn-mobile:hover {
  background: rgb(0, 130, 89);
}

.f-link {
  text-decoration: none;
  color: white;
}

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

.footer {
  color: #f1faee;
  background-color: #7fbfcc;
  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%;
  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;
}

.reallyactive {
  transform: scale(1, 1);
}

#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) {

  #navbar > h2{
    font-size: 15px;
  }

  .form-container {
    display: flex;
    justify-content: center;
  }
  .s-1-text {
    padding: 2rem 0rem;
  }

  .s1-h2 {
    padding: 0rem 2rem;
  }

  .s1-h3 {
    padding: 1rem 0rem;
  }

  .form-horizontal {
    width: 90%;
  }

  .s2-img {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  #navbar {
    height: 3rem;
  }
  #navbar > img {
    width: 4rem;
  }

  .nav {
    height: 5rem;
  }

  .s1-h1 {
    font-size: 55px;
  }

  .s-1-text {
    margin: 0 auto;
    width: auto;
  }

  .s1-h2 {
    font-size: 20px;
  }

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

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

  .reallyactive {
    transform: scale(1, 1);
  }
}

/* Mobile */

@media (max-width: 575px) {
  #navbar {
    padding: 0;
  }

  #navbar > h2 {
    width: 220px;
    text-align: right;
    padding-right: 1rem;
  }

  .section-1{
    display: none;
  }

  .section-1-mobile{
    display: block;
  }

  .main-container{
    background-image: linear-gradient(#0c0a4387, #12263abd),
    url("../images/background-3.jpg");
  }

  .opt-1{
    color: rgb(155, 155, 155);
  }

  .s1-logo {
    width: 25px;
  }
  .s1-box-content {
    width: auto;
  }

  .s1-box {
    padding-bottom: 0.5rem;
  }

  .s1-box-content > p {
    font-size: 13px;
  }
  .section-1 {
    padding: 0;
  }

  .s-1-text {
    padding: 1rem 0rem 0rem 0rem;
  }

  .top-btn {
    display: block;
    width: auto;
    padding: 0.5rem;
    margin: 1rem 0;
    text-shadow: none;
  }

  .s2-btn {
    width: auto;
    padding: 0.5rem;
  }

  .s1-h1 {
    font-size: 30px;
    padding: 0rem 1rem;
    width: auto;
    margin-top: 2rem;
  }

  .s1-h2 {
    width: auto;
    font-size: 15px;
    padding: 0.5rem 1rem;
  }

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

  .birthdate{
    font-size: 14px;
  }
  .section-2 {
    padding: 0rem;
    padding-top: 1rem;
  }

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

  .s2-txt {
    padding: 1.5rem 0rem;
    max-width: 300px;
    text-align: justify;
    margin: 0 auto;
  }

  .s2-h4{
    font-size: 30px;
  }

  .s2-p {
    font-size: 16px;
    padding: 0.5rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
  }

  .s2-btn-mobile{
    display: block;
  }

  .s2-btn{
    display: none;
  }

  .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;
    z-index: 9;
    overflow: hidden;
    /*margin: auto;*/
  }

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

  .calltime {
    margin-top: 0.5rem;
  }

  .s-legend {
    width: fit-content;
    font-size: 12px;
    padding-right: 0.5rem;
  }

  .sel-calltime {
    margin-right: 0.5rem;
  }

  .sel-calltime > input {
    margin-right: 0.2rem;
    font-size: 12px;
  }

  #navbar > h2 {
    font-size: 11px;
  }

  #form-text-mobile{
    display: block;
  }

  #form-text{
    display: none;
  }

  .form-title{
    font-size: 29px;
    padding-bottom: 0.4rem;
  }
}

/* Contact Form */

.contactform {
  border: 2px solid #ccc;
  border-radius: 10px;
  background-color: #f7f7f7;
  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;
  }

  #navbar > img {
    margin-top: -0.5rem;
    padding-left: 0.5rem;
  }

  .section-1 {
    background-position-y: 0%;
  }
}

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

#xclose {
  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;
}
