/* ----- RESET + FONTS ----- */

@font-face {
  font-family: 'Nunito Sans';
  src: url('../fonts/NunitoSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Nunito Sans';
  src: url('../fonts/NunitoSans-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

*{
margin: 0;
padding: 0;
}

body {
  box-sizing: 0;
  scroll-behavior: smooth;
  font-family: 'Nunito Sans' !important;
  font-weight: 400;
  font-style: normal;
  width: 100%;
}

a{
  text-decoration: none;
  color: black;
}

html, body {
  overflow-x: hidden;
}

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

.security-img{
  max-width: 280px;
}

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

.navbar{
  background-color: rgb(39, 31, 90);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
}

.navbar>p{
  font-size: 20px;
  font-weight: 800;
  color: white;
}

.hero-image {
  background-image: linear-gradient(rgba(57, 134, 255, 0.5), rgba(79, 68, 210, 0.5)), url("../images/background.webp");  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 1rem;
}

.hero-text {
  text-align: center;
  font-size: 50px;
  color: rgb(255, 255, 255);
}

.main-section{
  background-color: rgba(244, 244, 244, 0.27);
  padding-bottom: 3rem;
}

.section-title{
  font-size: 25px;
  font-weight: 400;
  padding: 0.3rem 0;
  text-transform: capitalize;
}

.separation{
  background-color: rgba(214, 214, 214, 0.454);
  width: 1px;
  height: 12rem
}

.comp-container{
  margin: auto;
  width: 60%;
  max-width: 1200px;
  margin-bottom: 2rem;
  height: 100%;
}

.comp-container-style{
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  border: 1px solid rgb(240, 240, 240);
  background-color: white;
  border-radius: 15px;
  display: flex;
  align-items: center; 
  transition: 0.3s all;
}

.comp-container-pro{
  display: flex;
  align-items: center;
}

.pro-container{
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  border: 3px solid rgb(25, 150, 25);

  border-radius: 15px;
  margin: auto;
  margin-top: 30px;
  width: 60%;
  max-width: 1200px;
  margin-bottom: 2rem;
  height: 100%;
  transition: 0.3s all;
}

.pro-container-bottom {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  border: 3px solid rgb(40, 172, 213);
  border-radius: 15px;
  margin: auto;
  width: 60%;
  max-width: 1200px;
  margin-bottom: 2rem;
  height: 100%;
  transition: 0.3s all;
}

.ribbon-wrapper-green {
  width: 85px;
  height: 88px;
  overflow: hidden;
  position: absolute;
  margin-top: -3px;
  margin-left: -3px;
}

.ribbon-green {
    font: bold 15px Sans-Serif;
    color: #fff;
    text-align: center;
    text-shadow: rgba(255,255,255,0.5) 0px 1px 0px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    position: relative;
    padding: 3px 0;
    left: -29px;
    top: 15px;
    width: 120px;
    background-color: #8dc735;
       background-image: -webkit-linear-gradient(top, #8dc735, #649a12);
    background-image: -moz-linear-gradient(top, #BFDC7A, #8EBF45);
    background-image: -ms-linear-gradient(top, #BFDC7A, #8EBF45);
    background-image: -o-linear-gradient(top, #BFDC7A, #8EBF45);
    color: #fff;
    -webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
    box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
}

.ribbon-green:after,
.ribbon-green:after{
  content: "";
  border-top: 3px solid #6e8900;   
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  position:absolute;
  bottom: -3px;
}
.ribbon-green:before{
  right: 0;
}
.ribbon-green:after{
  left: 0;
}

.comp-container-style:hover{
  box-shadow: rgba(22, 159, 18, 0.594) 0px 10px 50px; 
}

.pro-container:hover{
  box-shadow: rgba(22, 159, 18, 0.594) 0px 10px 50px; 
}

.pro-container-bottom:hover{
  box-shadow: rgba(18, 140, 159, 0.594) 0px 10px 50px; 
}

.comp-mobile1, .comp-mobile2{
  display: none;
}

.comp-logo, .comp-logo2{
  position: relative;
}

.comp-number{
  position: absolute;
  top: -100%;
  left: 0;
  color: rgb(175, 175, 175);
  width: fit-content;
  height: fit-content;
  padding: 0.3rem;
  padding-left: 0.6rem;
  border-radius: 3px 0px 0px 0px;
}

.comp-logo>img{
  max-width: 150px;
  width: 99%;
  height: 99%;
  object-fit: contain;
}

.comp-rating, .comp-rating2{
text-align: center;
margin: 0 1rem;
width: 10rem;
}

.rating-title{
  font-size: 20px;
  font-weight: 800;
  color: rgb(25, 150, 25);
  width: 100%;
  margin:auto;
}

.rating-title-bottom {
  font-size: 20px;
  font-weight: 800;
  color: rgb(40, 172, 213);
  width: 100%;
  margin:auto;
}

.rating-number{
  font-size: 40px;
  font-weight: 900;
}

.rating-txt{
  color: rgb(177, 177, 177);
  font-size: 13px;
  font-style: italic;
}

.comp-txt, .comp-txt2{
  display: flex;
  flex-direction: column;
  width: 50%;
}

.comp-txt{
  padding-bottom: 1rem;
}

.comp-txt>h3{
  font-size: 20px;
  font-weight: 900;
  margin: 0.5rem;
  padding-left: 1rem
}

.comp-txt>p{
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 90%;
  margin-bottom: 5px;
  margin-left: 1rem;
}

.comp-button{
  padding: 0 0.5rem;
  margin: auto;
}

.quote-btn{
  width: 10rem;
  background-color: rgb(25, 150, 25);
  color: white;
  padding: 0.5rem;
  border-radius: 15px;
  border: 0;
  font-size: 22px;
  transition: 1s all;
  cursor: pointer;
}

.quote-btn:hover{
  background-color:  rgb(9, 96, 9);
}

.quote-btn-bottom:hover{
  background-color:  rgb(9, 96, 9);
}

.container-top{
  background-color: rgb(25, 150, 25);
  color: white;
  border-radius: 10px 10px 0px 0px;
}

.container-top-bottom {
  background-color: rgb(40, 172, 213);
  color: white;
  border-radius: 10px 10px 0px 0px;
}

.container-top>p{
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.container-top-bottom>p{
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.quote-btn-bottom {
  width: 10rem;
  background-color: rgb(40, 172, 213);
  color: white;
  padding: 0.5rem;
  border-radius: 15px;
  border: 0;
  font-size: 22px;
  transition: 1s all;
  cursor: pointer;
}

.container-bottom{
  display: flex;
  gap: 15px;
  background-color: #eaeaea;
  border-radius: 0px 0px 10px 10px;
  padding: 1rem;
}

.cont-bottom{
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer{
background-color: rgb(39, 31, 90);
padding: 1.5rem 0.5rem;
color: white;
text-align: center;
}

@media (max-width: 1205px) {
  .comp-container{
    width: 85%;
  }

  .pro-container{
    width: 85%;
    margin-bottom: 0.7rem;
    margin-top: 0.7rem;
  }

  .pro-container-bottom{
    width: 85%;
  }

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


  .navbar{
padding: 0.4rem 0.3rem;
  }

  .navbar>img{
    width: 90px;
  }

  .navbar>p{
    font-size: 12px;

  }

  .hero-text{
    font-size: 25px;
  }

  .hero-image{
    padding: 1.5rem;
  }

  .comp-container{
    width: 95%;
    margin-bottom: 0.7rem;
  }

  .comp-container-style{
    border: 1px solid rgba(128, 128, 128, 0.244);
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  }

  .comp-container-style:hover{
    box-shadow: rgba(5, 164, 29, 0.563) 0px 2px 8px;
  }

  .section-title{
    font-size: 20px;
  }

  .comp-logo, .comp-rating, .comp-txt, .comp-button{
    display: none;
  }

  .comp-mobile1, .comp-mobile2{
    display: block;
  }

  .comp-mobile{
    position: relative;
  }

  .rating-title{
    font-size: 14px;
    width: 100%;
  }
  
  .rating-title-bottom{
    font-size: 14px;
    width: 100%;
  }

  .rating-number{
    font-size: 27px;
  }

  .rating-txt{
    font-size: 10px;
  }

  .comp-rating2 {
    margin: 0 0.5rem;
    width: 6.5rem;
  }

  .comp-txt2{
    width: 100%;
    padding-left: 1rem
  }

  .separation{
    display: none;
  }

  .comp-txt2>h3{
    margin-bottom: 0.3rem;
    font-size: 17px;
  }

  .comp-txt2>p{
    font-size: 10px;
    width: 94%;
  }

  .comp-txt2>p>img{
    width: 13px;
  }

  .quote-btn{
    margin-top: 1rem;
    padding: 0.5rem;
    font-size: 18px;
    width: 12rem;
  }

  .quote-btn-bottom {
    margin-top: 1rem;
    padding: 0.5rem;
    font-size: 18px;
    width: 12rem;
  }

  .container-top > p {
    font-size: 10px;
  }

  .separator-mobile{
    width: 1px;
    background-color: rgb(233, 233, 233);
    height: 12rem;
  }

  .ribbon-wrapper-green {

  }

  .comp-number {
    top: -16px;
    left: -22px;
  }

  .container-bottom{
    flex-direction: column;
  }

  .pro-container{
    width: 95%;
    margin-bottom: 0.7rem;
    margin-top: 0.7rem;
  }

  .pro-container-bottom{
    width: 95%;
  }

  .cont-bottom>p{
    font-size: 12px;
  }

}

@media (max-width: 907px){
  .ribbon-wrapper-green{

  }
}

@media (max-width: 775px){
  .ribbon-wrapper-green{

  }
}

@media (max-width: 702px){

  .security-img{
    max-width: 200px;
  }

  .ribbon-green{
    padding: 0;
  }
}

@media (max-width: 409px){
  .ribbon-wrapper-green{

  }

}


/* ---------------------------------------------------- STYLES POPUPS --------------------------------------------- */

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

/* Loader */

.thankyouloader {
	background-image: url("images/loader.gif");
	background-repeat: no-repeat;
	/*background-size: contain;*/
	background-position: center;
	background-color: #FFFBFA;
	width: 100%;
	height: 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;
  padding: 2rem;
}

.thanks-span>img{
  width: 100px;
  height: 100px;
}



/* 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: #5F0AFF;
  border:0;
  color: #FFFBFA;
  font-size: 20px;
  margin: auto;
  padding: 0.5rem;
  width: 100%;
  border-radius: 10px;
  transition: 1s all;
}

.contact-btn:hover{
  background-color: #3d00ae;
  color: #FFFBFA;
}


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

.form-control{
  margin-bottom: 0.5rem;
  width: 100%;
  padding: 0.5rem;
  border-radius: 5px;
  border: 1px solid gray;
}


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


#bclose {
  border: 0;
background: none;
}

/* Thank you */


#thankyoubg {

  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  min-height: 100%;
  overflow-y: scroll;
  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%;
}

#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;
  	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;
  overflow-y: scroll;
  height: 100%;
}

.web{
	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 QUERYS ------ */


/* mid-screen */

@media (max-width: 767px) {

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

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

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

    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;
    
    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: auto;
    margin-right: auto;
    margin-top: 0px;
    padding: 10px;
    z-index: 10;
    height: auto;
    
    transition: all 0.5s ease;
  }

  #contactform{
    width: 100%;
  }

} 


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


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

}