@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap%27');


:root {
  /* Font size variables */
  --small: 12px;
  --medium: 14px;
  --large: 18px;
  
  
  --main-green: #7ab460;
  
  --form-width: 100%;

}


*,
*:before,
*:after {
  /*box-sizing: border-box;*/
  margin: 0;
  padding: 0;
}




body {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
}

input,
button, 
textarea {
  border: none;
  outline: none;
  background: none;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
}

.subtitle{
    color:#a1a1a1;
    margin-bottom: 60px;
}

@media (max-width: 992px) {

  .subtitle{
    margin-bottom: 10px;
} 

} 



.row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 20px;
     align-items: start;
}

.image-header{
 height:33vh;
 position: relative;
 background-size:cover;
 width: 100%;
 background-position: center;
}

.image-right{
 background-size:cover;
 background-position: center;
 height: 100%;
}

.col-3 {
    grid-column: span 3!important;
}

.col-8 {
    grid-column: span 8!important;
}

.col-md-12 {
    grid-column: span 12!important;
}

.col-12 {
    grid-column: span 12!important;
}

@media (min-width: 992px) {
    .col-md-7 {
        grid-column: span 7!important;
    }
  .col-md-5 {
        grid-column: span 5!important;
    }
 
  .col-md-6 {
        grid-column: span 6!important;
    }
 
 .image-header{
  display:none;
 }

 .title {
  margin: 73px auto 0;
 }

}

@media (max-width: 992px) {


 .col-md-7 {
 grid-column: span 12;
 }
 .col-md-5 {
 grid-column: span 12;
 }

 .col-md-6 {
 grid-column: span 12;
 }
 .image-right{
  display:none;
 }
 
 .form {
  padding: 0px 40px 0 !important;
 }
 
 .title, .subtitle {
  text-align:center;
  margin: 25px auto 0;
 }
 
 .logo-corte-right{
  height:70px!important;
 }
 
 .grey-section{
     margin: 20px -100px!important;
 }
}

@media (max-width: 540px) {
.logo-corte-right{
  height:47px!important;
 }

}

.grey-section{
 background:#f9f9f9;
 height:150px;
     margin: 20px -70px;
}
.logo-corte-right{
 position:absolute;
 bottom:10px;
 right:30px;
 height:52px;
 width:auto;
}


.cont {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  background: #fff;
}

.form {
  position: relative;
  height: 100%;
  transition: transform 1.2s ease-in-out;
  padding: 0px 50px 0;
}

.sub-cont {
  overflow: hidden;
  position: relative;
  height: 100%;
  background: #fff;
  transition: transform 1.2s ease-in-out;
}
.cont.s--signup .sub-cont {
  transform: translate3d(-640px, 0, 0);
}

button {
  display: block;
  width: 260px;
  height: 36px;
  border-radius: 5px;
  color: white;
  font-size: 15px;
  cursor: pointer;
  background: var(--main-green);
}

.img {
  object-fit:cover;
  z-index: 2;
  width: 100%;
  height: 100%;
}

}

h2{
  width: var(--form-width);
  font-size: 26px;
  text-align: left;
  margin: 25px auto 0;
}


label {
  display: block;
  width: var(--form-width);
  margin: 25px auto 0;
  text-align: left;
}
label span {
  font-size: 12px;
  color: #a1a1a1;
  text-transform: uppercase;
}
.text_bold_h2{
font-size: 12px;
    color: #4a4a4a !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

input:not([type="checkbox"]){
  display: block;
  width: 100%;
  margin-top: 5px;
  padding-bottom: 5px;
  font-size:  var(--medium);
  border-bottom: 2px solid var(--main-green);
  text-align: left;
  color: #a1a1a1;
}

.checkbox_style{
}

textarea {
    color: #666;
  resize: none;
  display: block;
  background: #f1f1f1;
  width: 100%;
  height: 88px;
  margin-top: 5px;
  padding-bottom: 5px;
  font-size: var(--medium);
  border-left: none!important;
  border-right:none!important;
  border-top:  none!important;
  border-bottom: none!important;
  text-align: left;
  padding: 15px 20px;
}


textarea::-webkit-scrollbar {
    width: 1em;
}

textarea::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}

textarea::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}

.input-file-label{
  margin-top: 15px;
  text-align: center;
  font-size:  var(--medium);
  color: #cfcfcf;
  cursor:pointer;
}


.input-file {
  /* visibility: hidden etc. wont work */
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.input-file:focus + p {
  /* keyboard navigation */
  outline: 1px dotted #000;
  outline: -webkit-focus-ring-color auto 5px;
}
.input-file + p * {
  pointer-events: none;
}

.submit {
  margin-top: 40px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.text-legal{
    text-transform: inherit!important;
}

.no-margin-top{
    margin-top: 0!important;
}

select.button_line:not(.day):not(.month):not(.year) {
    width: 100%!important;
}

.button_line 
{
text-transform: none;
border-radius: 0px;
background: transparent;
border: 0.1rem solid transparent;
  border-bottom-color: transparent;
  border-bottom-style: solid;
  border-bottom-width: 0.1rem;
padding: 5px;
border-bottom: 2px solid var(--main-green);
outline: none;
color: #a1a1a1;
font-family: "Poppins", Helvetica, Arial, sans-serif;
}



/* pagina de gracias */

.label-thanks {

    text-align: center;
}

.label-thanks span{

 font-size: 25px;
    line-height: 1.2;
    padding: 0px 10px;
    font-weight: normal;
    text-align: center;
    color:#fff;
   display: inline-block;
}
.thanks-container{

    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align-last: center;
    background-position: center;
    background-size: cover;
}

/* rrss */

.label-thanks-rrss{

    font-size: 20px;
    padding-top: 20px;
    line-height: 1.2;
    font-weight: normal;
    text-align: center;
    color: #fff;
    display: inline-block;
   }

  section #services {
    text-align: center;
    transform: translatez(0);
  }
  
  section #services li {
    width: 15px;
    height: 28px;
    display: inline-block;
    margin: 20px;
    list-style: none;
  }
  section #services li div {
    padding-top: 15px;
    width: 53;
    height: 40;
    font-size: 1.6em;
    text-align: center;
    line-height: 0px;
    background-color: #ffffff7b;
    transition: all 0.5s ease;
  }
  section #services li a {
    color: #fff;
  }
  section #services li div:hover {
    transform: rotate(360deg);
    border-radius: 100px;
  }
  
  ul #services{
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
}


/* Tarjeta de agente*/


@media (min-width: 685px) {

   .centerimg-agent{
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px 0px 0px 40px
}

}

  .centerimg-agent{
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


   .divagent {
    margin-top:5px !important;
    padding: 20px 20px 20px 50px;
    margin: 0 -70px 0 -51px;
   }   


@media (max-width: 992px) {

   .divagent {
    padding: 20px 20px 20px 50px;
    margin: 0 -40px 0 -40px;
   }   

}


@media (max-width: 500px) {

   .pagent {
    font-size:0.8em
   }   

}
/* placerholder texto mi viaje ha sido...*/

::-webkit-input-placeholder {
   font-style: italic;
   color: #b3b3b3;
}
:-moz-placeholder {
   font-style: italic; 
   color: #b3b3b3;
}
::-moz-placeholder {
   font-style: italic;
   color: #b3b3b3;
}
:-ms-input-placeholder {  
   font-style: italic;
   color: #b3b3b3;
}






