


/**
 * TotalEnergies Style
 * Estudio Creativo WE
 */

@import url('https://fonts.googleapis.com/css2?family=Nunito&family=Roboto:wght@400;500&display=swap');

/* UNIVERSAL */

html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  left: 0;
  top: 0;
  font-size: 100%;
}

/* ROOT FONT STYLES */
:root {
    font-size: 16px;
}

* {
  font-family: 'Roboto', Helvetica, sans-serif;
  color: #374649;
  line-height: 1.5;
}

/* TYPOGRAPHY */

h1, h1 strong {
  font-size: 2.5rem;
  font-family: 'Nunito', Helvetica, sans-serif;
  font-weight: 400;
}

h2, h2 strong {
  font-family: 'Nunito', Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 400;
}

h3 {
  font-size: 1.375rem;
  font-weight: 500;
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

p {
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.8;
}

.small {
  font-size: 0.875rem;
}
a {
  text-decoration: underline;
  color: #374649;
}

.font-light {
  font-weight: 300;
}

.font-regular {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-heavy {
  font-weight: 700;
}

.primary-color {
    color: #374649;
}

.secondary-color {
    color: #ED0000;
}

.primary-bg{
    background: #ED0000;
}

.lightgray-bg{
  background-color: #F7F9FA;
}

/* GRADIENTS */
.orange-gradient-bg
{
  background: linear-gradient(180deg, #EF6F00 5.33%, #EE0000 92.33%);
}

.blue-gradient-bg
{
  background: linear-gradient(180deg, #009CEA 5.33%, #4632FF 92.33%);
}

.blue-green-gradient-bg
{
  background: linear-gradient(180deg, #029BEB 5.33%, #00AA61 92.33%);
}

.green-gradient-bg{
  background: linear-gradient(180deg, #40A900 5.33%, #00884A 92.33%);
}

.orange-gradient-color
{
  background-image: linear-gradient(90deg, #EF6F00 0%, #EE0000 100%);
  background-size: 100%;
  background-clip: true;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent; 
  -moz-text-fill-color: transparent;
}

.blue-gradient-color
{
  background-image: linear-gradient(90deg, #009CEA 0%, #4632FF 100%);
  background-size: 100%;
  background-clip: true;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent; 
  -moz-text-fill-color: transparent;
}

.blue-green-gradient-color
{
  background-image: linear-gradient(90deg, #029BEB 0%, #00AA61 100%);
  background-size: 100%;
  background-clip: true;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent; 
  -moz-text-fill-color: transparent;
}

.green-gradient-color{
  background-image: linear-gradient(90deg, #40A900 0%, #00884A 100%);
  background-size: 100%;
  background-clip: true;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent; 
  -moz-text-fill-color: transparent;
}
/* POSITIONING */

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.justify {
  text-align: justify;
}

/* ==== GRID SYSTEM ==== */

.container {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.row {
  position: relative;
  width: 100%;
}

.row [class^="col"] {
  float: left;
  margin: 0.5rem 2%;
  min-height: 0.125rem;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  width: 96%;
}

.col-1-sm {
  width: 4.33%;
}

.col-2-sm {
  width: 12.66%;
}

.col-3-sm {
  width: 21%;
}

.col-4-sm {
  width: 29.33%;
}

.col-5-sm {
  width: 37.66%;
}

.col-6-sm {
  width: 46%;
}

.col-7-sm {
  width: 54.33%;
}

.col-8-sm {
  width: 62.66%;
}

.col-9-sm {
  width: 71%;
}

.col-10-sm {
  width: 79.33%;
}

.col-11-sm {
  width: 87.66%;
}

.col-12-sm {
  width: 96%;
}

.row::after {
 content: "";
 display: table;
 clear: both;
}

.hidden-sm {
  display: none;
}

@media only screen and (min-width: 33.75em) {  /* 540px */
  .container {
    width: 80%;
  }
}

@media only screen and (min-width: 45em) {  /* 720px */
  .col-1 {
    width: 4.33%;
  }

  .col-2 {
    width: 12.66%;
  }

  .col-3 {
    width: 21%;
  }

  .col-4 {
    width: 29.33%;
  }

  .col-5 {
    width: 37.66%;
  }

  .col-6 {
    width: 46%;
  }

  .col-7 {
    width: 54.33%;
  }

  .col-8 {
    width: 62.66%;
  }

  .col-9 {
    width: 71%;
  }

  .col-10 {
    width: 79.33%;
  }

  .col-11 {
    width: 87.66%;
  }

  .col-12 {
    width: 96%;
  }

  .hidden-sm {
    display: block;
  }
}

@media only screen and (min-width: 90em) { /* 960px */
  .container {
    width: 75%;
    max-width: 90em;
  }
}

/* NAVIGATION */
.nav{
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid #E5E5E5;
}

/* BUTTONS */
.btn.primary{
    padding:15px 40px;
    margin:0 0.5rem;
    box-sizing: border-box;
    border-radius: 110px;
    color: #fff;
    background: #ED0000;
    border: 1px solid #FFFFFF;
    font-size: 0.875rem;
}
.btn.primary:hover{
    color: #ED0000;
    background: #FFFFFF;
    border: 1px solid #ED0000;
}
.btn.secondary{
    padding:15px 40px;
    margin:0 0.5rem;
    box-sizing: border-box;
    border-radius: 110px;
    color: #ED0000;
    background: #FFFFFF;
    border: 1px solid #ED0000;
    font-size: 0.875rem;
}
.btn.secondary:hover{
    color: #FFFFFF;
    background: #ED0000;
    border: 1px solid #FFFFFF;
}

/* IMAGES */
.img-responsive{
  max-width: 100%;
}
.img-fullwidth{
  width: 100%;
  height: auto;
}
.img-fullheight{
  height: 100%;
  width:auto;
  position:absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
}
.img-rounded{
  border-radius: 2rem;
}

/* TABLES */
*, ::after, ::before {
    box-sizing: border-box;
}
td {
    display: table-cell;
    vertical-align: inherit;
}
table {
    border-collapse: separate;
    text-indent: initial;
    border-spacing: 2px;
    width: 100%;
}
table.table {
    border-collapse: collapse;
    text-align: left;
}
table.table thead{
    background-color: #ED0000;
    color: #FFFFFF
}
table.table tbody{
    background-color: #ED0000;
    color: #FFFFFF
}
table.table tbody tr:nth-child(odd)
{
    background-color: #F7F9FA;
}
table.table tbody tr:nth-child(even)
{
    background-color: #FFFFFF;
}
.table td, .table th {
    padding: .75rem;
    vertical-align: middle;
}
.table th {
    color:#FFFFFF;
    font-weight: 400;
}
.table tr td:first-child {
    font-weight: 500;
    width: 30%;
}

/* ADVICE */
.advice{
    background-color: #ED0000;
    color: #FFFFFF;
    text-align: center;
    padding: 1rem 2rem;
    margin: 2.5rem 0;
}
.advice p{
    color:#FFFFFF;
}

/* PANEL */
.panel{
    background-color: #F7F9FA;
    -webkit-box-shadow: 0px 0px 10px 0px #A0A0A0; 
    box-shadow: 0px 0px 10px 0px #A0A0A0;
    padding:3rem;
}
.panel.white{
  background-color: #FFFFFF;
}

/* FOOTER */
.footer{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    margin-top: 1rem;
}
.footer a{
    text-decoration: none;
    font-size: 0.875rem;
    margin: 0px 0.4rem;
}
.footer .logo{
    width: 5rem;
}
.footer .facebook-icon{
    height: 1rem;
}
.footer .rrss{
  font-size: 0.875rem;
}
.footer .rrss strong{
  display:inline-block;
  margin-right:10px;
}
.footer .rrss a img{
  display:inline-block; 
  vertical-align: middle;
  width: 25px;
}
/* FORMS */

 button,
 input,
 optgroup,
 select,
 textarea {
   font-family: inherit;
   font-size: 100%;
   line-height: 1.15;
   margin: 0;
 }
 
 button,
 input {
   overflow: visible;
 }
  
 button,
 select {
   text-transform: none;
 }
 
 button,
 [type="button"],
 [type="reset"],
 [type="submit"] {
   -webkit-appearance: button;
 }
  
 button::-moz-focus-inner,
 [type="button"]::-moz-focus-inner,
 [type="reset"]::-moz-focus-inner,
 [type="submit"]::-moz-focus-inner {
   border-style: none;
   padding: 0;
 }
 
 button:-moz-focusring,
 [type="button"]:-moz-focusring,
 [type="reset"]:-moz-focusring,
 [type="submit"]:-moz-focusring {
   outline: 1px dotted ButtonText;
 }
 
 fieldset {
   padding: 0.35em 0.75em 0.625em;
 }
 
 legend {
   box-sizing: border-box;
   color: inherit;
   display: table;
   max-width: 100%;
   padding: 0;
   white-space: normal;
 }
 
 progress {
   vertical-align: baseline;
 }
 
 textarea {
   overflow: auto;
   min-height: 5rem;
 }
 
 [type="checkbox"],
 [type="radio"] {
   box-sizing: border-box;
   padding: 0;
 }
 
 [type="number"]::-webkit-inner-spin-button,
 [type="number"]::-webkit-outer-spin-button {
   height: auto;
 }
 
 [type="search"] {
   -webkit-appearance: textfield;
   outline-offset: -2px;
 }
 
 [type="search"]::-webkit-search-decoration {
   -webkit-appearance: none;
 }
 
 ::-webkit-file-upload-button {
   -webkit-appearance: button;
   font: inherit;
 }
 
 select::-ms-expand { display: none; }
 select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    background-image: url("https://image.info.totalenergies.es/lib/fe3a117170640475771470/m/2/down_.png");    
    background-repeat: no-repeat;
    background-position-x: calc(100% - 1rem);
    background-position-y: 50%;
    margin-right: 2rem;
    padding: 1rem;
    padding-right: 2rem;
  }

 .form-group {
    margin-bottom: 1rem; 
}
label {
    display: inline-block;
    margin-bottom: .5rem;
}
.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #374649;
    background-color: #FFFFFF;
    background-clip: padding-box;
    border: 1px solid #FFFFFF;
    border-radius: .5rem;
    transition: border-color .15s ease-in-out;
}
.form-control:active, .form-control:focus, .form-control:focus-visible {
    border-color: #FFFFFF;outline: none;
    box-shadow: none;
}

.form-control .has-error{
    color: #ED0000;
    background-color: #FFFFFF;
    border-color: #ED0000;
    outline: 0;
}

.strong{
    font-weight: 500;
}
.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: .125rem;
}
.form-check-input {
  float: left;
  margin-left: -1.5em;
}
.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: .25em;
  vertical-align: top;
  background-color: #FFFFFF;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid #7098A7;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
}

.form.white{
  background-color: #FFFFFF;
}

.form.white .form-control {
  background-color: #F7F9FA;
  border-color: #F7F9FA;
}

input[type="text"].has-error {
    color: #ED0000 !important;
    background-color: #FFFFFF !important;
    border: 2px solid #ed0000;
    border-color: #ED0000 !important;
    outline: 0 !important;
}

input[type="email"].has-error{
    color: #ED0000 !important;
    background-color: #FFFFFF !important;
    border: 2px solid #ed0000;
    border-color: #ED0000 !important;
    outline: 0 !important;
}

input[type="number"].has-error{
    color: #ED0000 !important;
    background-color: #FFFFFF !important;
    border: 2px solid #ed0000;
    border-color: #ED0000 !important;
    outline: 0 !important;
}


.form.white .form-check-input {
  background-color: #F7F9FA;
}
.form-check-input[type="checkbox"] {
  border-radius: 0;
}
.form-check-input[type="radio"] {
    border-radius: 50%;
}
.form-check-input:active {
  filter: brightness(90%);
}
.form-check-input:checked[type="checkbox"],
.form-check-input:checked[type="radio"] {
  background-color:#ED0000;
}
.form-check-label {
  color: #374649;
}
.form-file label {
  display: inline-block;
  height: calc(1.5em + .75rem + 2px);
  padding: .375rem .75rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #374649;
  cursor: pointer;
  background-color: #FFFFFF;
  color: #ED0000;
  text-decoration: underline;
  width: 10rem;
  text-align: right;
}
.form-file input[type="file"] { 
  display: inline-block;
  z-index: -1;
  top: 0.5rem;
  left: 0px;
  height: calc(1.5em + .75rem + 2px);
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #374649;
  background-color: #F7F9FA;
  background-clip: padding-box;
  border: 1px solid #FFFFFF;
  border-radius: .5rem;
  transition: border-color .15s ease-in-out;
  text-indent: -10.5rem;
  width: calc(100% - 10.5rem);
}
.form-file{
position: relative;
}
/* SECTIONS */

#header{
  background: #FFFFFF;
}



#header .container .row {
  display: table;
}

#header .container .row [class^="col"] {
  display:table-cell;
  position: relative;
  margin: 0 2%;
  overflow: hidden;
  float: none;
}
#header div.title-text{
  width: 50%;
  padding-right: 3rem;
}
#header div.title-img{
  width: 50%;
}
#header h1{
  font-size: 2.5rem;
  line-height: 3.375rem;
  background-image: linear-gradient(90deg, #009CEA 0%, #4632FF 100%);
  background-size: 100%;
  background-clip: true;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent; 
  -moz-text-fill-color: transparent;
}
#header h1 strong{
  font-size: 4rem;
  line-height: 4rem;
  font-weight: 400;
}

@media only screen and (max-width: 48rem){
  #header h1{font-size: 1.5rem;line-height: 2rem;}
  #header h1 strong{font-size: 2.75rem;line-height: 2.625rem;}
  h2{font-size: 1.25rem;}
}

#header .header-img{
  width: 100%;
  max-height: 100;
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
}

@media only screen and (max-width: 75em) {
  #header .header-img{
    width: auto;
    max-height: none;
    height: 100%;
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
  }
}

@media only screen and (max-width: 45em) {
  #header .container .row {
    display: block;
    flex-direction: column;
  }
  #header .container .row [class^="col"] {
    min-height: auto;
    overflow: hidden;
    position: relative;
    max-width: 100%;
    height: auto;
    display: block;
  }

  #header .header-img{
    display: block;
    position: relative;
    width:100%;
    height: auto;
    top: 0;
    left: 0;
    transform: translate(0,0);
  }
  #header div.title-text{
    width: auto;
  }
  #header div.title-img{
    width: auto;
  }
}

/* SECTION COMMONS*/
section.block{
  padding: 3rem 0;
}
.block.white {
  background-color: #FFFFFF;
}
.block.gray {
  background-color: #F7F9FA;
}
.block.blue{
  background-color:#285AFF;
}
.block.lightblue{
  background-color: #B7CBD3;
}

.block .row{
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

@media only screen and (max-width: 45em) {
  .block .row{
    flex-direction: column;
    justify-content: center;
  }
  .block .row .col{
    width: 96%;
  }
}

.block .intro{
  text-align: center;
}
.block .intro h2{
  color:#ED0000;
}

/* HELLO CUSTOMER */
.block.hello-customer{
  text-align:center;
  background-color: #F7F9FA;
}

.block.hello-customer h2{
  color:#ED0000
}

/* OFFERS */
.block.offers{
  text-align: center;
}
.block.offers h2{
   display: block;
  font-family: 'Nunito', Helvetica, sans-serif;
  background-image: linear-gradient(90deg, #009CEA 0%, #4632FF 100%);
  background-size: 100%;
  background-clip: true;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent; 
  -moz-text-fill-color: transparent;
}

.block.offers.blue{
  color:#FFFFFF;
  text-align: center;
  background-color: #285AFF;
}
.block.offers.blue h2,
.block.offers.blue p,
.block.offers.blue a{
  color:#FFFFFF
}

.block .offer-tile{
  background-color:#FFFFFF;
  border-radius: 2rem;
  text-align: center;
  padding:1rem;
  margin:0.5rem 0.25rem;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 15rem;
}
.block .offer-tile .pre-offer{
  font-weight: 500;
  font-size:0.875rem;
  display: block;
  text-transform: uppercase;
}
.block .offer-tile .offer{
  display: block;
  font-family: 'Nunito', Helvetica, sans-serif;
  font-size: 4rem;
  font-weight: 400;
  background-image: linear-gradient(90deg, #009CEA 0%, #4632FF 100%);
  background-size: 100%;
  background-clip: true;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent; 
  -moz-text-fill-color: transparent;
}


/* FEATURES */
.block.features{
  text-align: center;
}
.block.features h2{
  color:#ED0000
}

/* CALL TO ACTION */
.block.call-to-action{
  text-align: center;
}
.block.call-to-action h2{
  color:#ED0000
}

.icon-block {
  margin: 0 1rem;
}
.icon-block img{
  width:6rem
}
.icon-block p{
  font-weight: 500;
}

ul.checked-list{
  margin-left: 3rem; list-style:none;
}
ul.checked-list li{
  padding: 1rem 0 1rem 3.5rem; 
  background: url(https://image.info.totalenergies.es/lib/fe3a117170640475771470/m/2/check_rojo.png) no-repeat;
}

.blink {
  animation-name: blinkanimation;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  -webkit-animation-name:blinkanimation;
  -webkit-animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
}

@-moz-keyframes blinkanimation{  
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}

@-webkit-keyframes blinkanimation {  
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}

@keyframes blinkanimation {  
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}

/* click to call */
 .click-to-call {
  bottom: 0;
  font-size: .9rem;
  font-weight: 400;
  margin: 0;
  position: fixed;
  right: 0;
  width: 100%;
  z-index: 3
 }
 .click-to-call a {
  background: #ed0000;
  color: #fff;
  display: block;
  padding: 15px;
  text-align: center;
  text-decoration: none
 }
 .click-to-call a span {
  background: #ed0000 url(https://image.info.totalenergies.es/lib/fe3a117170640475771470/m/1/53ad5d23-aa76-4ad4-8285-8d9badd63d8c.png) no-repeat 0 50%;
  background-size: auto 33px;
  padding: 0 0 5px 40px;
  position: relative;
  color: #fff;
 }

 @media(min-width: 67.5em) {
  .click-to-call {
   bottom: 60px;
   right: 60px;
   width: auto
  }
  .click-to-call a {
   background:transparent;
   padding: 0;
   text-align: center;
  }
  .click-to-call a span {
   font-size:.8rem;
   background-image: none;
   border-radius: 20px;
   display: block;
   margin-bottom: 5px;
   padding: 5px 15px;
   color: #fff;
  }
  .click-to-call a:before {
   background: transparent url(https://image.info.totalenergies.es/lib/fe3a117170640475771470/m/2/c2c_icon4.png) no-repeat 0 0;
   border-radius: 100%;
   box-shadow: 0 5px 8px rgba(232,57,82,.4); 
   content: '';
   display: block;
   height: 69px;
   margin: 0 auto 10px;
   width: 69px
  }
  
  .click-to-call a:hover:before{
   animation: clickToCall 300ms infinite alternate;
  }
  
  @keyframes clickToCall{
   from{
    transform: translateY(0);
   }
   to{
    transform: translateY(-5px); 
   } 
  }
   #header .logo {
  margin: 30px 0 0;
 }
 }

.alert-error {
    display: none;
    font-size: 1rem;
    font-family: "Roboto", sans-serif;
    color: #ffffff;
    border: 2px solid #ee162c;
    border-radius: 5px;
    padding: 10px;
    margin-top: 30px;
  }
  .alert-error span {
    font-family: "Roboto", sans-serif;
  }



.texto_img_empleado{
  background-color: #fff;
  opacity: 0.9;
  width: fit-content;
  height: auto;
  padding: 20px 20px 20px 20px;
  position: absolute;
  bottom: 0px;
  margin: 0px 0px 20px 40px;
}

@media (min-width: 94.4375em) {
.img_empleados{
    object-fit: cover;
    width: auto;
    height: 570px;
  background-image: url(https://image.info.totalenergies.es/lib/fe3a117170640475771470/m/2/landing_empleado_2680x1000.jpg);
    position: relative;
    background-position: 0% 37%;
 background-repeat: no-repeat;
 background-size: cover 2680px 1000px;
  }
}


@media (min-width: 72.5em) and (max-width: 94.4375em){
.img_empleados{
 object-fit: cover;
    width: auto;
    height: 425px;
    background-image: url(https://image.info.totalenergies.es/lib/fe3a117170640475771470/m/2/landing_empleados.png);
    position: relative;
    background-position: center;
  }
}

@media (min-width: 49.625em) and (max-width: 72.5em){
.img_empleados{
    object-fit: cover;
    width: auto;
    height: 425px;
  background-image: url(https://image.info.totalenergies.es/lib/fe3a117170640475771470/m/2/landing_empleados.png);
    position: relative;
    background-position: center;
  }
}

@media (min-width: 9em) and (max-width: 49.625em){
.img_empleados{
      object-fit: cover;
      width: auto;
      height: 425px;
  background-image: url(https://image.info.totalenergies.es/lib/fe3a117170640475771470/m/2/landing_empleados.png);
    position: relative;
    background-position: center;
   }
}

.img_empleados img{
    max-width: 100%;
}


.hr_style{
 border: transparent;
    background-color: #374649;
    height: 3px;
    width: 130px;
    margin-left: 0;
    margin-right: 0;
 margin-top: 30px !important;
    margin-bottom: 30px !important;
 line-height: 0.0 !important;
}

.sc-formfield-error {
    text-align: left !important;
    width: 80% !important;
    color: #ed0000 !important;
    padding-top: 10px !important;
}

.smartcapture-controls{
padding-bottom:20px;
}



/*CODIGO ADICCIONAL PARA FORM FLOTANTE CON SCROLL UNISONO*/

.cajapop
{
 margin-top:-70px;
 background:#fff;
 position:relative;
 margin-right:35px;
 -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.39);
 -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.39);
 box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.39);
 display:none;
}

.headerpop
{
 background: rgba(239,112,0,1);
 background: -moz-linear-gradient(left, rgba(239,112,0,1) 0%, rgba(239,112,0,1) 12%, rgba(237,0,0,1) 100%);
 background: -webkit-gradient(left top, right top, color-stop(0%, rgba(239,112,0,1)), color-stop(12%, rgba(239,112,0,1)), color-stop(100%, rgba(237,0,0,1)));
 background: -webkit-linear-gradient(left, rgba(239,112,0,1) 0%, rgba(239,112,0,1) 12%, rgba(237,0,0,1) 100%);
 background: -o-linear-gradient(left, rgba(239,112,0,1) 0%, rgba(239,112,0,1) 12%, rgba(237,0,0,1) 100%);
 background: -ms-linear-gradient(left, rgba(239,112,0,1) 0%, rgba(239,112,0,1) 12%, rgba(237,0,0,1) 100%);
 background: linear-gradient(to right, rgba(239,112,0,1) 0%, rgba(239,112,0,1) 12%, rgba(237,0,0,1) 100%);
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ef7000', endColorstr='#ed0000', GradientType=1 );
 color:#fff;
 padding:25px;
 padding-left:60px;
 font-size:28px;
 text-align:center;
 line-height:28px;
}

.textopop
{
 font-weight:500;
 color:#374649;
 font-size:20px;
 font-family: 'Roboto', sans-serif;
 margin:0px 35px;
 margin-top:50px;
}

.cajapop .cajaboton
{
 padding-left:35px;
 padding-right:35px;
}

.circlepop
{
 position:absolute;
 top:-15px;
 left:-50px;
 width:100px;
 height:100px;
 text-align:center;
 border-radius:100%;
 background:#ED0000;
 padding-top:22px;
 -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.39);
 -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.39);
 box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.39);
}

.cajapopmovil 
{
 background: rgba(239,112,0,1);
 background: -moz-linear-gradient(left, rgba(239,112,0,1) 0%, rgba(239,112,0,1) 12%, rgba(237,0,0,1) 100%);
 background: -webkit-gradient(left top, right top, color-stop(0%, rgba(239,112,0,1)), color-stop(12%, rgba(239,112,0,1)), color-stop(100%, rgba(237,0,0,1)));
 background: -webkit-linear-gradient(left, rgba(239,112,0,1) 0%, rgba(239,112,0,1) 12%, rgba(237,0,0,1) 100%);
 background: -o-linear-gradient(left, rgba(239,112,0,1) 0%, rgba(239,112,0,1) 12%, rgba(237,0,0,1) 100%);
 background: -ms-linear-gradient(left, rgba(239,112,0,1) 0%, rgba(239,112,0,1) 12%, rgba(237,0,0,1) 100%);
 background: linear-gradient(to right, rgba(239,112,0,1) 0%, rgba(239,112,0,1) 12%, rgba(237,0,0,1) 100%);
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ef7000', endColorstr='#ed0000', GradientType=1 );
 color:#fff;
 padding:25px;
 cursor:pointer;
}

.circlepopmovil
{
 width:85px;
 height:85px;
 text-align:center;
 border-radius:100%;
 background:#ED0000;
 padding-top:22px;
 -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.39);
 -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.39);
 box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.39);
 margin-top:-40px;
}

.titlepopmov
{
 font-size:25px;
font-family: 'Nunito', sans-serif;
    color: #fff;
}

.buttonpopmov
{
 font-size:18px;
 font-weight:500;
 font-family: 'Roboto', sans-serif;
color: #fff;
}

@media (min-width: 992px)
{
 .cajapop
 {
  display:block;
  position: fixed;
  top: 320px;
  right: 40px;
  width: 416.656px;
 }
 
 
 .cajapopmovil 
 {
  display:none;
 }
}

@media (min-width: 676px)
{
 .modal-dialog {
  max-width: 600px;
 }
}

@media (min-width: 776px)
{
 .modal-dialog {
  max-width: 700px;
 }
}

.modal {
display: none;
     position: fixed;
     z-index: 1;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     overflow: auto;
     background-color: rgb(0, 0, 0);
     background-color: rgba(0, 0, 0, 0.4);
 }
 
 .modal-wrapper {
     background-color: #fefefe;
     margin: 5rem auto;
     border: 1px solid #888;
     width: 50rem;
     max-width: 80%;
 }
  

.modal-body {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 2rem;
}

.modal-content
{
 border:0px;
 border-radius:0px;
 padding: 1rem;
}

 .modal-header {
     background: linear-gradient(90deg, #EF6F00 5.33%, #EE0000 92.33%);
     color: #ffffff;
     padding: 1.5rem;
     font-size: 1.5rem;
     font-family: 'Nunito', Helvetica, sans-serif;
 }



 .close {
     color: #ffffff;
     float: right;
     font-size: 1.5rem;
     font-weight: bold;
 }
 
 .close:hover,
 .close:focus {
     text-decoration: none;
     cursor: pointer;
 }

.font-30,.font-30:hover
{
 color:#fff;
 opacity:1 !important;
}

button:focus
{
 outline:none;
}

.modal-body
{
 padding:20px 30px;
 font-size:16px;
 color:#374649;
 font-family: 'Roboto', sans-serif;
 background:#F7F9FA;
}

form label
{
 margin-bottom:5px;
}

.form-control
{
 border:0px;
 border-radius:10px;
 font-weight:300;
 font-size:16px;
 color:#374649;
 font-family: 'Roboto', sans-serif;
}

.form-control:focus
{
 outline:none;
 box-shadow:none;
}

.btn-secondary
{
 font-size:16px;
 font-weight:bold;
 color:#fff;
 border:solid thin #ED0000;
 background-color:#ED0000 !important;
 padding:15px 40px;
 font-family: 'Roboto', sans-serif;
 border-radius:25px;
 text-align:center;
 text-decoration:none;
 display:inline-block;
 line-height:16px;
}

.btn-secondary:hover,.btn-secondary:focus,.btn-secondary:active
{
 background-color:#fff !important;
 color:#ED0000;
 border-color:#ED0000 !important;
 box-shadow:none !important;
 outline:none;
}


.btn-primary 
{
 font-size:16px;
 font-weight:bold;
 color:#ED0000;
 border:solid thin #ED0000;
 padding:15px 40px;
 font-family: 'Roboto', sans-serif;
 border-radius:25px;
 text-align:center;
 text-decoration:none;
 margin-top:30px;
 margin-bottom:40px;
 display:inline-block;
 background-color:#fff !important;
 line-height:16px;
}

.btn-primary:hover,.btn-primary:focus,.btn-primary:active
{
 background-color:#ED0000 !important;
 color:#fff;
 border-color:#ED0000 !important;
 box-shadow:none !important;
 outline:none;
}


.slogan {
    font-size: 50px;
    line-height: 55px;
    color: #4632FF;
}

.sloganfooter {
    font-size: 30px;
    color: #374649;
    margin-top: 20px;
}

/*CODIGO ADICIONAL CUADRO DE TEXTO DESPLEGABLE*/
.btn-collapse1 {
    position: relative;
    background-color: #c6d6dc;
    cursor: pointer;
    padding: 1rem;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    margin-top: .5rem;
}

.btn-collapse1::before {
    display: inline-block;
    content: "+";
    width: 2rem;
    text-align: center;
}

.content-collapse {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #ffffff;
}

.content-collapse p {
    font-size: 1rem;
    font-weight: 200;
    line-height: 1.8;
}



/*CODIGO ADICIONAL CABECERA 2(HEADER2)*/

#header2 {
    background: #FFFFFF;
}

#header2 .logo {
    margin: 2rem 0 2.5rem;
    width: 105px;
}

#header2 div.title-text {
    padding-right: 3rem;
}

#header2 div.title-contact {
    margin: 1.5rem 0 1.125rem;
    text-align: right;
}

#header2 div.title-contact p {
    font-size: 1.125rem;
    margin: 0;
}

#header2 div.title-contact a {
    font-size: 2.5rem;
    color: #ED0000;
    text-decoration: none;
    font-family: 'Nunito', Helvetica, sans-serif;
}

#header2 h1 {
    font-size: 3rem;
    line-height: 3rem;
    background-image: linear-gradient(90deg, #009CEA 0%, #4632FF 100%);
    background-size: 100%;
    background-clip: true;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    text-fill-color: transparent;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

#header2 h1 strong {
    font-size: 4rem;
    line-height: 4rem;
    font-weight: 400;
}

#header2 .main-img {
    position: relative;
}

#header2 .main-img-caption {
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

@media only screen and (max-width: 48rem) {
    #header2 h1 {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    #header2 h1 strong {
        font-size: 2.75rem;
        line-height: 2.625rem;
    }
    
}

#header2 .header-img {
    display: block;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media only screen and (max-width: 75em) {
    #header2 .header-img {
        width: auto;
        max-height: none;
        height: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

@media only screen and (max-width: 45em) {
    #header2 .header-img {
        display: none;
        position: relative;
        width: 100%;
        height: auto;
        top: 0;
        left: 0;
        transform: translate(0, 0);
    }
    #header2 div.title-text {
        width: auto;
    }
    #header2 div.title-contact {
        width: auto;
        text-align: left;
    }
}

/*CODIGO ADICIONAL BLOQUE CUADRO INTERACTIVO CON CUADRO DE TEXTO CON IMAGEN OFFER2*/
.block.gray {
    background-color: #F7F9FA;
}

.upload-contract-box {
    border-radius: 0;
    box-shadow: 0px 0px 10px 0px #a0a0a0;
    text-align: center;
}


 .upload-contract-box .title {
     padding: .5rem 2rem;
     background-color: #7098A7;
     color: #FFF;
 }
 
 .upload-contract-box .title h3 {
     font-size: 1.125rem;
     margin: 0;
     padding: 0;
     text-transform: uppercase;
     color: #ffffff
 }
 
 .upload-contract-box .body {
     padding: 4rem;
 }
 
 .upload-contract-box .body p.lead {
     font-family: 'Nunito', Helvetica, sans-serif;
     font-size: 1.575rem;
     line-height: 2.25rem;
 }
 
 .upload-contract-box .body img {
     display: block;
     max-width: 100%;
     width: 8rem;
     margin: 0 auto;
 }

 .discount-box h3 {
     font-size: 1.875rem;
     font-family: 'Nunito', Helvetica, sans-serif;
     margin: 0;
 }
 
 .discount-box p {
     font-size: 1.125rem;
     margin: 0 0 1rem 0;
 }
 
 .discount-box h3 strong {
     font-family: 'Nunito', Helvetica, sans-serif;
     font-size: 3rem;
     background-image: linear-gradient(90deg, #009CEA 0%, #4632FF 100%);
     background-size: 100%;
     background-clip: true;
     -webkit-background-clip: text;
     -moz-background-clip: text;
     text-fill-color: transparent;
     -webkit-text-fill-color: transparent;
     -moz-text-fill-color: transparent;
 }
 
 .discount-box img{
     border-radius: 1.25rem;
 }

.img-responsive {
    display: block;
    max-width: 100%;
}


/*CODIGO ADICIONAL PARA TODOS LOS BLOQUES QUE TIENE LA ETIQUETA CONTAINER2 Y ROW2 landing captacion*/
.container2 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (min-width: 33.75em) {
    /* 540px */
    .container2 {
        width: 80%;
    }
}

@media only screen and (min-width: 90em) {
    /* 960px */
    .container2 {
        width: 75%;
        max-width: 90em;
    }
}

.row2 {
     position: relative;
     width: 100%;
 }
 
 .row2 [class^="col"] {
     float: left;
     margin: 0 2%;
     min-height: 0.125rem;
 }

 .row2::after {
     content: "";
     display: table;
     clear: both;
 }

 
 .block .row2 {
     display: flex;
     align-items: flex-start;
     justify-content: center;
 }

 @media only screen and (max-width: 45em) {
     .block .row2 {
         flex-direction: column;
         justify-content: center;
     }
     .block .row2 .col {
         width: 96%;
     }
 }

 #advantages .row2 {
     justify-content: start;
 }

 #call-collapse .row2 .col-4-sm {
     width: 33.333%;
 }

/*CODIGO ADICIONAL BLOQUE COLOR DE FONDO DEGRADADO*/

 #contract {
     background: linear-gradient(90deg, #029BEB 5.33%, #00AA61 92.33%);
     text-align: center;
     padding: 1rem 0;
 }
 
 #contract img {
     display: inline-block;
     width: 3rem;
     margin: 0rem 1rem 0.5rem;
     vertical-align: middle;
 }
 
 #contract .lead {
     display: inline-block;
     font-size: 1.875rem;
     font-family: 'Nunito', Helvetica, sans-serif;
     line-height: 1.2;
     color: white
 }

/*CODIGO ADICIONAL CABECERA IMAGEN IZQ Y TEXTO DCHA */

 #header2 p.exclusive-offer {
     font-size: 3rem;
     font-family: 'Nunito', Helvetica, sans-serif;
     background-image: linear-gradient(90deg, #009CEA 0%, #4632FF 100%);
     background-size: 100%;
     background-clip: true;
     -webkit-background-clip: text;
     -moz-background-clip: text;
     text-fill-color: transparent;
     -webkit-text-fill-color: transparent;
     -moz-text-fill-color: transparent;
     margin: 0;
 }

 .no-permanence {
     padding: 2rem;
     position: relative;
     box-shadow: 0px 0px 10px 0px #A0A0A0;
     color: #fff;
     background: linear-gradient(90deg, #EF6F00 5.33%, #EE0000 92.33%);
     margin: 2rem 0;
 }
 
 .no-permanence .title {
     font-family: 'Nunito', Helvetica, sans-serif;
     font-size: 1.875rem;
     line-height: 2.25rem;
     color: #fff;
     margin: 0 1rem 1rem;
 }
 
 .no-permanence div.ribbon {
     padding: .5rem;
     position: absolute;
     right: 1rem;
     top: -1.5rem;
     background: #fff;
     box-shadow: 0px 0px 10px 0px #A0A0A0;
     font-size: 1.125rem;
 }
 
 .no-permanence .btn.secondary:hover {
     background: transparent;
 }

 ul.checked-list {
     margin: 0;
     padding: 0;
     list-style: none;
 }
 
 ul.checked-list li {
     padding: 0.687rem 0 0.687rem 3.5rem;
     background: url(https://image.info.totalenergies.es/lib/fe3a117170640475771470/m/3/bop-072-red_captacion.png) no-repeat;
 }

/*BLOQUE  CUADRO DE TEXTO CON FORMULARIO*/
 
 #offer2 h2 {
     font-size: 2.5rem;
     line-height: 3rem;
 }
 
 #offer2 p {
     font-size: 1.125rem;
     line-height: 1.375rem;
 }

 .form-tile {
     background-color: #FFFFFF;
     border-radius: 0px;
     box-shadow: 0px 0px 10px 0px #A0A0A0;
     display: block;
 }

.form-tile .form-tile-header {
     position: relative;
     padding: 3rem 0 1rem 0;
     background: linear-gradient(90deg, #EF6F00 5.33%, #EE0000 92.33%);
 }
 
 .form-tile .form-tile-header .phone-img {
     display: block;
     position: absolute;
     top: -3rem;
     left: 50%;
     width: 6rem;
     transform: translateX(-50%);
 }
 
 .form-tile .form-tile-header span {
     display: block;
     font-size: 2.5rem;
     font-family: 'Nunito', Helvetica, sans-serif;
     font-weight: 300;
     color: #FFFFFF;
     text-align: center;
     text-decoration: none;
 }

.form-tile .form-tile-body {
     display: block;
     padding: 1rem;
 }
 
 .form-tile .form-tile-body .btn {
     display: block;
     margin: 1rem auto;
     width: 100%;
 }
 
 .form-tile .form-tile-body .lead {
     font-size: 1.5rem;
     font-family: 'Nunito', Helvetica, sans-serif;
     line-height: 1.2;
 }
 
 .form-tile .form-tile-body .form-check-label {
     font-size: 0.875rem;
     line-height: 1.125rem;
 }


/*CODIGO ADICIONAL BLOQUE CUADROS DE TEXTOS DESPLEGABLES CON IMAGEN*/
.btn-collapse2 {
     position: relative;
     background-color: #fff;
     cursor: pointer;
     padding: 1rem;
     width: 100%;
     border: none;
     text-align: left;
     outline: none;
     margin-top: .5rem;
     border-radius: .5rem;
     font-size: 1.125rem;
 }
 
 .btn-collapse2 img {
     width: 2rem;
     display: inline-block;
     vertical-align: middle;
     margin-right: 1rem;
 }
 
 .btn-collapse2::after {
     display: block;
     content: "+";
     width: 2rem;
     text-align: center;
     color: #ED0000;
     float: right;
 }
 
 .btn-collapse2.active,
 .btn-collapse2:hover {
     background: #fff
 }
 
 .btn-collapse2.active::after {
     content: "\02C5";
     font-size: 1.125rem;
 }

.content-collapse2 {
     padding: 0 18px;
     display: none;
     overflow: hidden;
     background-color: #ffffff;
     border-radius: .5rem;
 }
 
 #advantages .content-collapse2 p {
     font-size: 1rem;
     line-height: 1.25rem;
 }


/*TABLA PRESTACIONES*/
* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
}
h1, h2, h3 {
    font-family: 'Nunito', sans-serif;
}

.logo {
    text-align: center;
    padding: 50px 0 40px;
}

.logo img {
    max-width: 275px;
}

.precios {
    margin: 10px auto;
    display: flex;
    justify-content: space-around;
    width: 90%;
    max-width: 1400px;
}

.caja-precio {
    width: 32%;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    height: fit-content;
}

.caja-precio:first-child{
    background-color: #f7f9fa;
    border: 2px solid #0099ff;
}

.desta {
    background-color: #f7f9fa;
    border: 2px solid #ff0000;
    width: 35%;
    margin-top: -2%;;
    -webkit-box-shadow: 0px 0px 20px -3px #000000; 
    box-shadow: 0px 0px 20px -3px #000000;
}

.tapa {
  background-color: #ffffff;
    margin-top: -19px;
    padding-top: 19px;
    padding-bottom: 50px;
}

.caja-precio:last-child{
    background-color: #f7f9fa;
    border: 2px solid #005aff;
}

.a-claro-a {
    background-color: #0099ff;

}

.a-rojo-a {
    background-color: #ff0000;

}

.a-oscuro-a {
    background-color: #005aff;

}

.a-claro {
    color: #0099ff;

}

.a-rojo {
    color: #ff0000;

}

.a-oscuro {
    color: #005aff;

}

.caja-precio h3 {
    padding: 40px 0 20px;
    font-size: 2.5rem;
    color: #ffffff;
    text-align: center;
}

.flecha {
    width: 100%;
    height: auto;
    margin-top: -15px;
    margin-bottom: 10px;
}

.antes {
    text-align: center;
    font-size: 1.3rem;
    text-decoration: line-through;
    margin-top: 15px;
    font-weight: 400;
}

.ahora {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    text-align: center;
    margin: 20px auto;
    font-size: 3.5rem;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

.ahora span {
    font-size: 1.5rem;
}



.a1 {
    color: #009bff;
}

.a2{
    color: #ff0000;
}

.a3 {
    color: #005aff;
}

.cond {
    text-align: center;
}

.cond span {
    font-size: 1.2rem;
    font-weight: 500;
}

.caja-precio hr {
    width: 90%;
    border: 1px solid #ffffff;
    color: #ffffff;
    margin: 20px auto;
}

.caja-precio ul {
    color: #009bff;
    margin-left: 55px;
    margin-bottom: 30px;
    list-style: none;
    width: 80%;
}


ul li::before {
  content: '\2713';
  font-weight: bold;
  font-size: 1.5rem;
  margin-left: -26px;
  margin-right: 0.2rem;
  font-family: 'Nunito', sans-serif;
  line-height: 1;
}



ul li strong {
    color: #009bff;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
}

ul li p {
    color: #374649;
    font-size: .8rem;
    margin-top: 5px;
    margin-bottom: 15px;
}


.btn-facilita {
    text-decoration: none;
    margin: 30px auto 1px;
    display: table;
    background-color: transparent;
    color: #ed0000;
    border-radius: 26px;
    border: 1px solid;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 14px;
    line-height: 16px;
    padding: 10px 4rem;
    transition: .3s;
}


@media (max-width: 1460px) {

    .flecha {
        margin-top: -5px;
    }

    .caja-precio ul {
        width: 75%;
    }
}

@media (max-width: 1000px) {

    .caja-precio ul {
        width: 70%;
    }
}



@media (max-width: 800px) {

    .precios {
        flex-direction: column;
    }
    
    .caja-precio, .caja-precio ul {
        width: 100%;
    }
    
    .caja-precio ul {
        width: 80%;
    }
    .desta {
        margin: 50px 0;
    }
}

@media (max-width: 400px) {
    
    .caja-precio ul {
        width: 70%;
    }
}

@media (max-width: 300px) {
    
    .caja-precio ul {
        width: 65%;
    }
}







/* FORMS */
 
 button,
 input,
 optgroup,
 select,
 textarea {
     font-family: inherit;
     font-size: 100%;
     line-height: 1.15;
     margin: 0;
 }
 
 button,
 input {
     overflow: visible;
 }
 
 button,
 select {
     text-transform: none;
 }
 
 button,
 [type="button"],
 [type="reset"],
 [type="submit"] {
     -webkit-appearance: button;
 }
 
 button::-moz-focus-inner,
 [type="button"]::-moz-focus-inner,
 [type="reset"]::-moz-focus-inner,
 [type="submit"]::-moz-focus-inner {
     border-style: none;
     padding: 0;
 }
 
 button:-moz-focusring,
 [type="button"]:-moz-focusring,
 [type="reset"]:-moz-focusring,
 [type="submit"]:-moz-focusring {
     outline: 1px dotted ButtonText;
 }
 
 fieldset {
     padding: 0.35em 0.75em 0.625em;
 }
 
 legend {
     box-sizing: border-box;
     color: inherit;
     display: table;
     max-width: 100%;
     padding: 0;
     white-space: normal;
 }
 
 progress {
     vertical-align: baseline;
 }
 
 textarea {
     overflow: auto;
     min-height: 5rem;
 }
 
 [type="checkbox"],
 [type="radio"] {
     box-sizing: border-box;
     padding: 0;
 }
 
 [type="number"]::-webkit-inner-spin-button,
 [type="number"]::-webkit-outer-spin-button {
     height: auto;
 }
 
 [type="search"] {
     -webkit-appearance: textfield;
     outline-offset: -2px;
 }
 
 [type="search"]::-webkit-search-decoration {
     -webkit-appearance: none;
 }
 
  ::-webkit-file-upload-button {
     -webkit-appearance: button;
     font: inherit;
 }
 
 select::-ms-expand {
     display: none;
 }
 
 select {
     -webkit-appearance: none;
     -moz-appearance: none;
     background: transparent;
     background-image: url("./img/down.svg");
     background-repeat: no-repeat;
     background-position-x: calc(100% - 1rem);
     background-position-y: 50%;
     margin-right: 2rem;
     padding: 1rem;
     padding-right: 2rem;
 }
 
 .form-group {
     margin-bottom: 1rem;
 }
 
 label {
     display: inline-block;
     margin-bottom: .5rem;
font-size: 0.9rem;

 }
 
 .form-control {
     display: block;
     width: 100%;
     height: calc(1.5em + .75rem + 2px);
     padding: .375rem .75rem;
     font-size: 1rem;
     font-weight: 400;
     line-height: 1.5;
     color: #374649;
     background-color: #F7F9FA;
     background-clip: padding-box;
     border: 1px solid #FFFFFF;
     border-radius: .5rem;
     transition: border-color .15s ease-in-out;
 }
 
 .form-control:active,
 .form-control:focus,
 .form-control:focus-visible {
     border-color: #FFFFFF;
     outline: none;
     box-shadow: none;
 }
 
 .form-control.error {
     color: #ED0000;
     background-color: #FFFFFF;
     border-color: #ED0000;
     outline: 0;
 }
 
 strong,
 .strong {
     font-weight: 500;
 }
 
 .form-check {
     display: block;
     min-height: 1.5rem;
     padding-left: 1.5em;
     margin-bottom: .125rem;
 }
 
 .form-check-input {
     float: left;
     margin-left: -1.5em;
 }
 
 .form-check-input {
     width: 1em;
     height: 1em;
     margin-top: .25em;
     vertical-align: top;
     background-color: #FFFFFF;
     background-repeat: no-repeat;
     background-position: center;
     background-size: contain;
     border: 1px solid #7098A7;
     -webkit-appearance: none;
     -moz-appearance: none;
     appearance: none;
     -webkit-print-color-adjust: exact;
     color-adjust: exact;
 }
 
 .form.white {
     background-color: #FFFFFF;
 }
 
 .form.white .form-control {
     background-color: #F7F9FA;
     border-color: #F7F9FA;
 }
 
 .form.white .form-check-input {
     background-color: #F7F9FA;
 }
 
 .form-check-input[type="checkbox"] {
     border-radius: 0;
 }
 
 .form-check-input[type="radio"] {
     border-radius: 50%;
 }
 
 .form-check-input:active {
     filter: brightness(90%);
 }
 
 .form-check-input:checked[type="checkbox"],
 .form-check-input:checked[type="radio"] {
     background-color: #ED0000;
 }
 
 .form-check-label {
     color: #374649;
 }
 
 .form-file label {
     display: inline-block;
     height: calc(1.5em + .75rem + 2px);
     padding: .375rem .75rem;
     font-size: 0.875rem;
     font-weight: 400;
     line-height: 1.5;
     color: #374649;
     cursor: pointer;
     background-color: #FFFFFF;
     color: #ED0000;
     text-decoration: underline;
     width: 10rem;
     text-align: right;
 }
 
 .form-file input[type="file"] {
     display: inline-block;
     z-index: -1;
     top: 0.5rem;
     left: 0px;
     height: calc(1.5em + .75rem + 2px);
     padding: .375rem .75rem;
     font-size: 1rem;
     font-weight: 400;
     line-height: 1.5;
     color: #374649;
     background-color: #F7F9FA;
     background-clip: padding-box;
     border: 1px solid #FFFFFF;
     border-radius: .5rem;
     transition: border-color .15s ease-in-out;
     text-indent: -10.5rem;
     width: calc(100% - 10.5rem);
 }
 
 .form-file {
     position: relative;






