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

*{
  margin: 0;
  box-sizing: 0;
  padding: 0;
}

body {
  scroll-behavior: smooth;
  background-color: #2b1ccf;
  width: 100%;
  position: relative;
}

html, body {
  overflow-x: hidden;
}

#display{
  padding-bottom: 0.5rem;
}

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

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

.navbar{
  height: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  background-color: #2b1ccf;
  width: 100%;
  padding: 0 2rem;
}

.nav-logo{
  width: 120px;
}

.title{
  padding: 0.5rem;
  color: white;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 0.6rem;
  text-align: center;
}

.high{
  color:#2b1ccf;
}

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

.main-content{
  background-image:  linear-gradient(#0c132e50, #0d184168 ),url("../images/background0.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 103%;
  padding: 3.5rem 0;
  min-height: 85vh;
  height: fit-content;
}

.side-txt{
  color: white;
  padding: 3rem 7rem;
  text-shadow: rgba(0, 0, 0, 0.512) 1px 0 10px;
}

.side-txt>h1{
  font-size: 70px;
  font-weight: 800;
}

.side-txt>h3{
  font-size: 30px;
}

.form-horizontal{
  background: rgba(255, 255, 255, 0.692);
  box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
  backdrop-filter: blur( 6.5px );
  -webkit-backdrop-filter: blur( 6.5px );
  border: 1px solid rgba(255, 255, 255, 0.813);
  width: 90%;
  height: 80%;
  margin: auto;
  padding-bottom: 1rem;
}

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

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

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

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

.answer-holder  {
  display: flex;
  justify-content: flex-start;
  cursor: pointer;
  align-items: center;
  color: #12263a;
  gap: 10px;
  background-color: #ebebeb;
  padding: 10px 20px;
  margin: 5px;
  font-family: sans-serif, Arial;
  font-size: 16px;
  border-radius: 4px;
  transition: 1s;
  text-align: center;
}

.answer-holder:hover {
  background-color: #a0a2e48c;
  box-shadow: rgba(12, 16, 101, 0.4) 0px 2px 4px, rgba(10, 12, 88, 0.435) 0px 7px 13px -3px, rgba(32, 14, 114, 0.415) 0px -3px 0px inset;
}

.answer-holder>label{
  text-align: left;
}

.item-active {
  background-color:#2b1ccf57;
}


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

#mainform>fieldset{
  width: 65%;
  margin: auto;
}

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

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

#fieldaddress, #fieldcity{
  background-color: rgb(195, 195, 195) !important;
  cursor: not-allowed;
}

.hold-title>h2{
  text-align: center;
}

.step-title{
  font-weight: 600;
  font-size: 25px;
  margin-bottom: 1rem;
}

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

.form-title{
  font-weight: 600;
  font-size: 22px;
  text-align: center;
}

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

.title4{
  margin-bottom: 0.5rem;
}

#form-text{
  display: block;
}

.form-group {
  margin: 0.4rem;
}


.form-control{
  margin: 0.2rem;
  background-color: #e4e9ff;
  width: 100%;
  border: 1px solid #2b1ccf;
}

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

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

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

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

.birthdate{
  display: flex;
  align-items: center;
  padding-left: 1rem;
}

.return{
  color: #00000059;
  font-weight: 600;
  cursor: pointer;
  width: fit-content;
  padding: 1rem 0.5rem;
  margin-bottom: 3rem;
  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;
}

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

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

.form-check-7>label{
  font-size: 13px;
  padding-top: -1rem;
}


.next-btn{
  width: 100%;
  border-radius: 10px;
  background-color: #ff7400;
  color: white;
  font-size: 18px;
  text-align: center;
  padding: 0.4rem;
  cursor: pointer;
  transition: 1s all;
  margin: 1rem 0;
}

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

.progress{
  border-radius: 1px;
  background-color: #8a8a8a;
  width: 100%;
  margin-bottom: 1rem;
}

.progress-bar {
  background-color: #2b1ccf;
}

.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: 1px;
}

.p-txt>h3{
font-size: 17px;
font-weight: 600;
}

.p-txt>h1{
  font-weight: 800;
  font-size: 38px;
}

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

#step-1, #step-2, #step-3, #step-4, #step-5, #step-6{
padding: 0 2rem;
}

.title5{
margin-bottom: 0;
}

.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(255, 68, 68);
  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: #2b1ccf;
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer>p>a{
  color: white;
}


/* 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;
  /*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: 600;
  padding: 0.1rem 0.3rem;
}

/* Loader */

.thankyouloader {
	background-image: url("images/loader.gif");
	background-repeat: no-repeat;
	/*background-size: contain;*/
	background-position: center;
	background-color: white;
	width: 100%;
}

.loader {
	background-image: url("images/loader.gif"); 
	width: 30px;
	height: 30px;
	/*border: 1px solid grey;*/
	/*border-radius: 5px;*/
	z-index: 10;
	/*position: relative;
	top: 50%;
	left: 50%;*/
	background-repeat: no-repeat;
	background-size: contain;
	max-width: 30px;
	max-height: 30px;
	float: left;
}

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

.logo-loading{
  margin-top: 1.5rem;
}

.highlight {
  border-radius: 1em 0 1em 0;
  background-image: linear-gradient(
    -100deg,
    rgba(17, 255, 0, 0.3),
    rgba(0, 255, 38, 0.7) 95%,
    rgba(0, 255, 47, 0.1)
  );
}


.loader-svg {
  color: green;
  font-size: 45px;
  text-indent: -9999em;
  overflow: hidden;
  width: 1em;
  height: 1em;
  margin:5rem;
  border-radius: 50%;
  position: relative;
  transform: translateZ(0);
  animation: mltShdSpin 1.7s infinite ease, round 1.7s infinite ease;
}

@keyframes mltShdSpin {
  0% {
    box-shadow: 0 -0.83em 0 -0.4em,
    0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
    0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  5%,
  95% {
    box-shadow: 0 -0.83em 0 -0.4em, 
    0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 
    0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  10%,
  59% {
    box-shadow: 0 -0.83em 0 -0.4em, 
    -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, 
    -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
  }
  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em,
     -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, 
     -0.749em -0.34em 0 -0.477em;
  }
  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em,
     -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, 
     -0.82em -0.09em 0 -0.477em;
  }
  100% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 
    0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}

@keyframes round {
  0% { transform: rotate(0deg) }
  100% { transform: rotate(360deg) }
}
 


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

  #thankyouloader-txt {
    top: 40%;
  }

} 

#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);
}

#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%;
}

.thanks-page{
	max-width: 900px;
	width: 100%;
	margin: auto;
  border-radius: 20px;
	background-color: #f4f4f5; 
	position: fixed;
  	top: 5%;
  	left: 50%;
	transform: translateX(-50%);
  	margin-top: 0px;
  	z-index: 10;

  	opacity: 1;
  	-webkit-transition: opacity 1000ms linear;
  	transition: opacity 1000ms linear;
}

/* Postcode */

.postcoderesult{
  margin-top:  5px;
  margin-bottom:  5px;
  }
  
  .postcodemsg{
  /*display: none;*/
  height: 0;
  transform: scaleY(0);
  transition: height 2s;
  transition-timing-function: ease-in;
  }
  
  .postcodemsgactive{
  /*display: block;*/
  /*height: auto;*/
  color: #0f8d3b;
  /*padding-top: 1em;*/
  /*padding-bottom: 1em;*/
  font-size: 1em;
  }
  
  .msgactive{
  transform: scaleY(1);
  height: auto;
  /*font-size: 1em;*/
  }

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


/* mid-screen */

@media (max-width: 991px) {

.form-container{
width: 90%;
}

}

@media (max-width: 917px){
  .lateral-navbar{
    display: none;
  }

  #mainform>fieldset{
    width: 80%;
    margin: auto;
  }
}

@media (max-width: 767px) {

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

.more-webs{
	height:100%;
	overflow-y: scroll;
	padding-bottom:5rem;
}


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

  .navbar{
    flex-direction: column;
  }
  .navbar > p {
    padding: 0;
    font-size: 10px;
    margin-right: 0;
    margin: auto;
  }
  
  .nav-logo{
    margin-left: 0;
    margin-top: 4px;
    width: 90px;
  }

}

/* mobile */

@media (max-width: 575px) {

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

  .hero-text>h1{
    font-size: 60px;
  }

  .hero-text>h2{
    font-size: 18px;
  }

  .btn{
    width: 18rem;
  }

  .section-2>h2{
    font-size: 35px;
    padding: 0.5rem 0;
  }

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

  .s3-title-span{
    font-size: 40px;
  }

  .s3-intro>h1 {
    font-size: 25px;
}

.s3-benefit-txt {
  font-size: 25px;
}

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

.section-1{
  display: none;
}

.content{
  flex-direction:column-reverse;
}
.card-text>strong{
  font-size: 22px;
}
.card-text{
  font-size: 14px;
}


.errormsg, #contacterr{
font-size: 14px;
}

.form-title{
  font-size: 34px;
}

.form-subtitle{
  font-size: 13px;
}

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

.p-txt > h3 {
  font-size: 18px;
}

.p-txt>p{
  font-size: 13px;
}

.step-title{
  font-size: 19px;
  text-align: center;
}

#mainform{
  width: 95%;
  padding: 0;
}

#mainform>fieldset{
  width: 90%;
  padding: 0;
}

#step-1, #step-2, #step-3, #step-4, #step-5, #step-6{
  padding: 0 1rem;
  }

  #form-text{
    margin-top: 0.2rem;
  }

  .s4{
 
  }

  .s4>.answer-holder{
    max-width: 100px;
    margin: 0.1rem;
    align-items: center;
    justify-content: flex-start;
  }

  .s4>.answer-holder>img{
    width: 50px;
  }

  .s4>.answer-holder>label{
    font-size: 15px;
  text-align: center;
  }

}

/* 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;
  max-width: 500px;
  
  transform: scale(0, 0);
  transition: all 0.5s ease;
}

#contactform{
  width: 95%;
}

.contact-btn{
  background-color: #ff9320;
  border:0;
  color: white;
  font-size: 20px;
  margin: auto;
  padding: 0.5rem;
  width: 100%;
  border-radius: 10px;
  transition: 1s all;
}

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


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

  .side-txt{
    color: white;
    padding: 3rem 3rem;
    text-shadow: rgba(0, 0, 0, 0.512) 1px 0 10px;
  }
  
  .side-txt>h1{
    font-size: 55px;
    font-weight: 800;
  }
  
  .side-txt>h3{
    font-size: 30px;
  }

} 

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

  .side-txt{
    padding: 0 1.5rem;
  }
  
  .side-txt>h1{
    font-size: 25px;
  }
  
  .side-txt>h3{
    font-size: 16px;
    margin-bottom: 1rem;
  }
  .p-txt>h1{
    font-size: 28px;
  }

  .nav-logo {
    width: 70px;
}

} 


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

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

  #contactform{
    width: 100%;
  }

  .thanks-page{
    padding-bottom: 20rem;
    height: 100%;
  }

  .main-content{
    padding: 0.5rem;
    min-height: auto;
  }


} 

.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;
  border: 0;
  margin-bottom: 0.5rem;
}

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

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

	}
}

