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

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

html, body {
  overflow-x: hidden;
}

.hide{
	display: none;
}

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

#navbar {
  background-color: #12263a;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: -0.5rem;
  position: relative;
  width: 100%;
  height: 5.5rem;
  margin-bottom: -7rem;
  padding-left: 1rem;
  transition: top 2s;
  z-index: 20;
}

#navbar > img {
  width: 8rem;
}

.nav{
  background-color: #12263a;
  height: 5.5rem;
}


  /* 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;
	}
	
	@media screen and (max-width: 650px){
	
	  .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;
		z-index: 9;
		overflow:hidden;
		/*margin: auto;*/
	  }
	
	  .reallyactive{
		transform: scale(1, 1);
		/*position: fixed;*/
	  }
	
	}
	
	@media screen and (max-width: 450px){
	
	  .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;*/
	  }
	
	}
  
  /* LOADER */
  
  .spinner {
	  color: original;
	  display: inline-block;
	  position: relative;
	  width: 80px;
	  height: 80px;
	}
	.spinner div {
	  transform-origin: 40px 40px;
	  animation: spinner 1.2s linear infinite;
	}
	.spinner div:after {
	  content: " ";
	  display: block;
	  position: absolute;
	  top: 3px;
	  left: 37px;
	  width: 6px;
	  height: 18px;
	  border-radius: 20%;
	  background: #12263a;
	}
	.spinner div:nth-child(1) {
	  transform: rotate(0deg);
	  animation-delay: -1.1s;
	}
	.spinner div:nth-child(2) {
	  transform: rotate(30deg);
	  animation-delay: -1s;
	}
	.spinner div:nth-child(3) {
	  transform: rotate(60deg);
	  animation-delay: -0.9s;
	}
	.spinner div:nth-child(4) {
	  transform: rotate(90deg);
	  animation-delay: -0.8s;
	}
	.spinner div:nth-child(5) {
	  transform: rotate(120deg);
	  animation-delay: -0.7s;
	}
	.spinner div:nth-child(6) {
	  transform: rotate(150deg);
	  animation-delay: -0.6s;
	}
	.spinner div:nth-child(7) {
	  transform: rotate(180deg);
	  animation-delay: -0.5s;
	}
	.spinner div:nth-child(8) {
	  transform: rotate(210deg);
	  animation-delay: -0.4s;
	}
	.spinner div:nth-child(9) {
	  transform: rotate(240deg);
	  animation-delay: -0.3s;
	}
	.spinner div:nth-child(10) {
	  transform: rotate(270deg);
	  animation-delay: -0.2s;
	}
	.spinner div:nth-child(11) {
	  transform: rotate(300deg);
	  animation-delay: -0.1s;
	}
	.spinner div:nth-child(12) {
	  transform: rotate(330deg);
	  animation-delay: 0s;
	}
	@keyframes spinner {
	  0% {
		opacity: 1;
	  }
	  100% {
		opacity: 0;
	  }
	}
	
	.loaderbg {
	  background-color: #c1c1c18a;
	  height: 100%;
	  width: 100%;
	  z-index: 1;
	  position: absolute;
	}
	
	.thanks-span {
	  display: flex;
	  flex-direction: column;
	  justify-content: center;
	  align-items: center;
	}
	
	#thankyouloader-txt {
	  text-align: center;
	  position: absolute;
	  top: 50%;
	  left: 50%;
	  transform: translate(-50%, -50%);
	  font-size: 20px;
	  color: green;
	}
	
	#loader-txt {
	  background-image: rgba(0, 128, 0, 0.115);
	  border-radius: 10px;
	  padding: 1rem;
	  width: 150%;
	}
	
	#loader-txt > h1 {
	  font-weight: 800;
	  color: white;
	}
	
	#loader-txt > h4 {
	  color: black;
	}
	
	.logo-loading {
	  margin-top: 1.5rem;
	}
	
	.highlight {
	  border-radius: 1em 0 1em 0;
	  background-image: linear-gradient(
		-100deg,
		rgba(4, 0, 255, 0.2),
		rgba(39, 93, 111, 0.7) 95%,
		rgba(0, 8, 255, 0.1)
	  );
	}
	
	@keyframes round {
	  0% {
		transform: rotate(0deg);
	  }
	  100% {
		transform: rotate(360deg);
	  }
	}
	
	@media screen and (max-width: 610px) {
	  .loader-svg {
		margin: 0;
		margin-top: 15rem;
		margin-bottom: 5rem;
	  }
	
	  #loader-txt > h4 {
		font-size: 15px;
	  }
	}
	
	@media screen and (max-width: 425px) {
	  #thankyouloader-txt {
		top: 40%;
	  }
	}
  
  /* Thank you */
  
  #thankyoubg {
  
	  position: fixed;
	  top: 0;
	  bottom: 0;
	  left: 0;
	  right: 0;
	  width: 100%;
	  min-height: 100%;
	  z-index: 9;
	  background-color: rgba(0, 0, 0, 0.4);
	  overflow:hidden;
	
	}
	
	#thankyoubox {
	
	  border: 2px solid #ccc;
	  border-radius: 10px;
	  background-color: #f7f7f7;
	  padding: 10px;
	  color: #999;
	  width: 100%;
	  max-width: 800px;
	  min-height: 500px;
	  position: fixed;
	  top: 10%;
	  left: 30%;
	  margin-top: 0px;
	  z-index: 10;
	  height: auto;
	  opacity: 1;
	  -webkit-transition: opacity 1000ms linear;
	  transition: opacity 1000ms linear;
	  background-image: url('../images/thankyou-bg.jpg');
	  background-size: cover;
	  background-position: -80px;
	
	}
	
	#thankyoutxt {
	  margin-left: 60%;
	  text-align: center;
	  padding-top: 25%;
	}
	
	#thankyoutxt1 {
	  color: #ea740e;
	}
	
	#thankyouhr {
	  background-color: #d20f1d;
	  height: 5px;
	  width: 50%;
	  margin: 10px auto 10px auto;
	}
	
	.thanks-page{
		max-width: 900px;
		width: 100%;
		margin: auto;
		border: 1px solid #c2c2c2;/* Este border se quitará cuando se haga en popup*/
		background-color: #f4f4f5; 
		position: fixed;
		  top: 5%;
		  left: 50%;
		transform: translateX(-50%);
		  margin-top: 0px;
		  z-index: 10;
		  min-height: 80vh;
		  opacity: 1;
		  -webkit-transition: opacity 1000ms linear;
		  transition: opacity 1000ms linear;
	}
	
	.info-thanks{
		padding: 25px 40px;
	}
	
	
	.text{
		font-size: 1.2rem;
		line-height: 1.4rem;
		color: #4D4D4D;
		text-align: center;
	}
	
	.text h1{
		font-size: 2.5em ;
		font-weight: bold;
		color: #0091A9;
	}
	
	.text h4{
		font-size: 1.2em;
		font-weight: bold;
		margin-bottom: 30px;
	}
	
	.text span{
		font-size: 1em;
		font-weight: lighter;
	}
	
	.line{
		height: 6px !important;
		width: 45%;
		margin: 0 auto 20px;
		color: #0091A9;
		border-radius: 2px;
		opacity: 100%;
	}
	
	.more-webs{
		width: 100%;
		margin: 20px auto 30px;
	
	}
	
	.web{
		width: 30%;
		background-color:#fff;
		border: solid 1px #c2c2c2;
		text-align: center;
		margin: 0 auto;
		padding: 25px;
	}
	
	.web li{
		text-align: left;
	}
	
	.web img{
		max-width: 70px;
		width: 100%; 
	}
	
	.list{
		height: 180px;
		margin-top: 20px;
	}
	
	.hide{
		display: none;
	}
	
	
	.btn-thanks{
		max-width: 200px;
		width: 100%;
		text-align: center;
		font-family: "Open Sans", sans-serif;
		padding: 10px;
		font-size: 1em;
		color: #ffffff;
		background-color: #e68016;
		border-radius: 5px;
		margin: auto;
		margin-bottom: 10px;
		border: 0;
	}
	
	.btn-thanks:hover{
		background-color: #d9580b;
		color: #ffffff;
	
	}
	
	
	@media screen and (max-width: 750px){
	
		#thankyoubg{
			overflow: scroll;
		}
	
		.thanks-page{
			top: 0;
			position: absolute;
			min-height: 100vh;
		}
	
		.web{
			max-width: 450px;
			width: 100%;
			margin: auto;
			margin-bottom: 25px;
	
		}
	
		.list{
			height: initial;
	
		}
	
		.text h1{
			font-size: calc(2.0rem + .8vw);
		}
	
		.text h4{
			font-size: calc(1.0rem + .5vw);
			margin-bottom: 10px;
		}
	
		.text span{
			font-size: calc(0.8rem + .3vw);
	
		}
	}
  
	/*  ----- 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;
	  }

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

.section-1{
  background-image: linear-gradient(#12263a87, #12263a46),
    url("../images/background2.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 27rem;
}

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

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

.s-1-text {
  color: #fafcff;
  text-shadow: #12263a 1px 0 10px;
  padding: 0rem 3rem;
  text-align: center;
}

.s1-h1 {
  font-weight: 800;
  font-size: 70px;
}

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

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

/* ----- 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: #12263a;
  margin: 0.1rem;
  background-color: #eaf9f9;
  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:#a8dadc;
}

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

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

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


.form-container {
  background-color: #fafcff;
  color: #12263a;
  height: 48rem;
  padding: 2rem;
}

.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;
}

.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: #eaf9f9;
  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;
}

.btn-form {
  width: 2rem;
  height: 3rem;
  font-size: 20px;
  background-color: #a8dadca7;
  color: #12263a;
  border: 0;
  border-radius: 10px;
  margin-top: 1rem;
  margin-left: -0.7rem;
  transition: 1s all;
}

.btn-form:hover{
    background-color: #12263a;
    color: #a8dadc;
}

.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: #a8dadc;
  border: 0;
  border-radius: 10px;
  padding: 0.5rem;
  cursor: pointer;
  transition: 1s;
}

.form-btn:hover{
  background-color: #12263a;
  color: #a8dadc;
}

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

.progress-bar {
  background-color: #a8dadc;
}

.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;
}

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

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

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

.errormsg, #contacterr{
  color: rgb(254, 69, 69);
  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;
}

/*  ----- 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-2 {
  background-color: #eaf9f9;
  padding: 3rem;
  display: flex;
  align-items: center;
}

.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-bottom: 2rem;
}

.s2-txt{
  padding: 2rem;
}

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

}

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

.footer {
  color: #f1faee;
  background-color: #12263a;
  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;

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

  .s1-h1{
    padding: 2rem;
  }

  .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: 4rem;
}
  #navbar > img {
    width: 6rem;
  }

  .nav{
    height: 5rem;
  }

  .s1-h1 {

    font-size: 55px;
    padding: 1rem 0rem;
  }

  .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%;
    /*max-width: 800px;*/
    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;
    /*margin: auto;*/
  }

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

}

/* mobile */

@media (max-width: 575px) {

  .section-1 {
    padding: 2rem;
  }

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

  .s1-h1 {
    font-size: 42px;
    padding: 0rem;
    text-align: center;
    width: auto;
  }

  .s1-h2 {
    text-align: center;
    width: auto;
    font-size: 15px;
    padding: 0rem 1rem;
  }

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

  .section-2 {
    padding: 0rem;
    border-top: #12263a7c 3px solid;
  }

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

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

  .s2-p {
    font-size: 16px;
    padding: 1rem;
  }

  .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;*/
  }
}

/* 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;
  }


} 

.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;
}

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