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

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

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

.slider-gradient-blue{
      font-style: normal;
      font-weight: 325;

      line-height: 118.7%;
      /* or 57px */
      background: linear-gradient(180deg, #00AAFF 0%, #4632FF 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-fill-color: transparent;
}

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


/* 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.primary-blue{
    padding:15px 40px;
    margin:0 0.5rem;
    box-sizing: border-box;
    border-radius: 110px;
    color: #fff;
    background-image: linear-gradient(90deg, #009CEA 0%, #4632FF 100%);
    border: 1px solid #FFFFFF;
    font-size: 0.875rem;
    cursor: pointer;
}
.btn.primary-blue:hover{
    color: #009CEA;
    background: #FFFFFF;
    border: 1px solid #009CEA;
    cursor: pointer;
}

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


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


/* 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;
    font-size: 16px
}
.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.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;

}
.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-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 .logo{
  margin: 2rem 0 2.5rem;
}

#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;}
  h3{font-size: 1rem;}
}

#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*/

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


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




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






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

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.embed-container iframe {
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}

.beco-stick{
      background: #00bdff;
      border-radius: 50%;
      width: 120px;
      height: 120px;
      font-family: Nunito;
      color: #ffffff;
      font-size: 16px;
      font-weight: 300;
      text-align: center;
      line-height: 1.5em;
      padding: 40px 0;
      }

.beco-stick span{
          font-weight: 800;
      }

.beco-stick-form{
      width:40px;
      height:40px; 
      top: -50px; 
      left:0;
      right:0; 
      margin-left:auto;
      margin-right:auto;
      position: absolute;
      }

.flecha-left{
    content: url(https://image.info.totalenergies.es/lib/fe3a117170640475771470/m/1/flecha+izquierda.jpg);
    font-size:0px;
    line-height:0px;
    position:absolute;
    top: 50%;
    left: -5px;
    cursor: pointer;
    width: 5%;
    max-width: 20px;
}

.flecha-right{
    content: url(https://image.info.totalenergies.es/lib/fe3a117170640475771470/m/1/flecha+derecha.jpg);
    font-size:0px;
    line-height:0px;
    position:absolute;
    top: 50%;
    right: -5px;
    cursor: pointer;
    width: 5%;
    max-width: 20px;
}



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


