html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%; 
  word-break: normal;
  -moz-tab-size: 4;
  tab-size: 4;
}

*,
::before,
::after {
  background-repeat: no-repeat; 
  box-sizing: inherit;
}

::before,
::after {
  text-decoration: inherit; 
  vertical-align: inherit;
}

* {
  padding: 0; 
  margin: 0;
  transition: .2s;
}

hr {
  overflow: visible; 
  height: 0;
  color: inherit; 
}

details,
main {
  display: block; 
}

summary {
  display: list-item; 
}

small {
  font-size: 80%; 
}

[hidden] {
  display: none; 
}

abbr[title] {
  border-bottom: none; 
  text-decoration: underline;
  text-decoration: underline dotted;
}

a {
  background-color: transparent; 
}

a:active,
a:hover {
  outline-width: 0; 
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace; 
}

pre {
  font-size: 1em; 
}

b,
strong {
  font-weight: bolder; 
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit; 
  text-indent: 0; 
}

iframe {
  border-style: none;
}

input {
  border-radius: 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; 
}

textarea {
  overflow: auto; 
  resize: vertical; 
}

button,
input,
optgroup,
select,
textarea {
  font: inherit; 
}

optgroup {
  font-weight: bold; 
}

button {
  overflow: visible; 
}

button,
select {
  text-transform: none; 
}

button,
[type='button'],
[type='reset'],
[type='submit'],
[role='button'] {
  cursor: pointer;
}

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-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; 
}


button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}

select {
  -moz-appearance: none; 
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none; 
}

select::-ms-value {
  color: currentColor; 
}

legend {
  border: 0; 
  color: inherit; 
  display: table; 
  max-width: 100%; 
  white-space: normal; 
  max-width: 100%; 
}

::-webkit-file-upload-button {
  
  -webkit-appearance: button;
  color: inherit;
  font: inherit; 
}

[disabled] {
  cursor: default;
}

img {
  border-style: none; 
}

progress {
  vertical-align: baseline;
}

[aria-busy='true'] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled='true'] {
  cursor: default;
}

html, 
body {
  height: 100%;
  font-family: "Poppins", serif;
}

.header{
  width: 100%;
  height: 140px;
  background-color: #0c3c8e;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .menu{
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-item{
  font-size: 16px;
  color: #ffffff;
  font-weight: 300;
  margin-left: 30px;
  margin-right: 30px;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
  text-align: center;
  cursor: pointer;
}

.menu-item::after{
  content: "";
  width: 60%;
  height: 1px;
  background-color: #ffffff;
  position: absolute;
  opacity: 0;
  left: 0;
  right: 0;
  bottom: -15px;
  margin-left: auto;
  margin-right: auto;
}

.menu-item:hover::after{
  opacity: 1;
}

.logo{
  width: 90px;
  height: 75px;
}

.logo a{
  display: flex;
}

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

.header .container-left{
  width: 20%;
  height: fit-content;
  padding-left: 160px;
}

.header .container-center{
  width: 60%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .container-right{
  background-color: #14b5f0;
  width: 20%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.header .container-right::before {
  content: "";
  position: absolute;
  left: -40px;
  width: 80px;
  height: 140px;
  transform: skew(30deg);
  background-color: #14b5f0;
}

.header .subtitle{
  font-size: 12px;
  color: #ffffff;
  font-weight: 500;
  padding-top: 5px;
}

.header-contact{
  height: 130px;
  display: flex;
  align-items: center;
}

.header-contact .phone-number, a{
  font-size: 16px;
  color: #ffffff;
  font-weight: 300;
  text-decoration: none;
  margin-left: 10px;
  margin-right: 10px;
}

.header-contact .phone-number a:hover{
  color: #0c3c8e;
}

.header-contact .icon{
  margin-right: 0px;
}

.slider{
  position: relative;
  padding-left: 150px;
  background-color: #0c3c8e;
}

.slider img{
  width: 100% !important;
  max-width: 100% !important;
}

.overlay-hero{
  position: absolute;
  left: 15%;
  top: 20%;
  z-index: 2;
  background-color: #e1e1e1;
  width: 850px;
}

.overlay-hero::before{
  content: "";
  position: absolute;
  right: -37px;
  width: 84px;
  height: 100%;
  transform: skew(10deg);
  z-index: 3;
  background-color:#e1e1e1;
}

.overlay-container{
  padding: 3rem;
}

.overlay-hero .tag{
  color: #14b5f0;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 500;
}

.overlay-hero h2{
  font-size: 36px;
  color: #0c3c8e;
  margin: 20px 0;
  padding-right: 80px;
}

.overlay-hero .text{
  color: #0c3c8e;
  font-size: 18px;
  margin-bottom: 40px;
}

.overlay-hero .button{
  background-color: #14b5f0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 300;
  width: fit-content;
  padding: 20px;
  border-radius: 6px;
  cursor: pointer;
}

.overlay-hero .button:hover{
  background-color: #0c3c8e;
}

.slider swiper-slide{
  height: fit-content;
}

.row-contact{
  width: 100%;
  height: 200px;
  background-color: #0c3c8e;
}

.row-contact .container{
  width: 70%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.row-contact .item{
  display: flex;
  align-items: center;
  justify-content: center;
}

.row-contact .item:last-child{}

.row-contact .item .icon{
  width: 70px;
  height: 70px;
  margin-right: 15px;
  border: solid 1px #ffffff;
  border-radius: 50%;
}

.row-contact .item .title{
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 15px;
}

.row-contact .item .info .mail,
.row-contact .item .info .mail a{
  font-size: 12px;
  color: #ffffff;
  margin-left: 0;
  margin-right: 0;
}

.about-us {
  padding: 100px 0;
}

.about-us .container{
  width: 70%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.about-us .container .column{
  width: 50%;
  width: 50%;
}

.img-about{
  width: 600px;
  overflow: hidden;
  border-radius: 20px;
}

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

.swiper-pagination-bullet{
  background: #ffffff !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active{
  background: #0c3c8e !important;
}

h3{
  font-size: 36px;
  color: #333333;
  line-height: 53px;
}

article p{
  font-size: 18px;
  color: #333333;
  line-height: 38px;
  margin-bottom: 30px;
}

.column .title{
  margin-bottom: 50px;
}

.services{
  padding: 100px 0;
  background-color: #0c3c8e;
}

.services .container{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70%;
  margin: 0 auto;
}

.services .card{
  text-align: center;
  margin: 1rem;
  width: 100%;
}

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

.services .card h4{
  font-size: 22px;
  color: #ffffff;
  line-height: 24px;
  margin-top: 20px;
  height: 60px;
  text-transform: uppercase;
}

.services .card p{
  font-size: 18px;
  color: #14b5f0;
  width: 75%;
  height: 80px;
  margin: 0 auto;
}

.services .title h3{
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  color: #ffffff;
}

.services .card-img{
  overflow: hidden;
  border-radius: 20px;
}

.model .container{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70%;
  margin: 0 auto;
}

.model .title{
  text-align: center;
  margin-bottom: 50px;
}

.model{
  padding: 100px 0;
}

.model .item{
  text-align: center;
  width: 300px;
  margin: 0 30px;
}

.model h5{
  font-size: 22px;
  color: #14b5f0;
  font-weight: 500;
  line-height: 30px;
  height: 100px;
  margin-top: 20px;
}

.footer{
  width: 100%;
  height: 100px;
  background-color: #0c3c8e;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer small{
  font-size: 11px;
  font-weight: lighter;
  color:#ffffff;
}

.headroom--unpinned,
.headroom--pinned{
  position: fixed;
  top: 0;
  z-index: 3;
  -webkit-box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.4);
  -moz-box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.4);
  box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.4);
}

.headroom--top{
  position: relative;
  box-shadow: none;
}

.contact{
  background-color: #fafafa;
  padding-top: 100px;
  padding-bottom: 100px;
}

.content-inner{
  width: 100%;
}

.content-inner .field{
  width: 100%;
  margin-bottom: 30px;
}

.content-inner .field label{
  width: 100%;
  display: block;
  font-size: 14px;
  color: #333333;
  padding-left: 10px;
  margin-bottom: 10px;
}

.content-inner .field input{
  width: 100%;
  display: block;
  background-color: #ffffff;
  border: solid 1px #dedede;
  font-size: 14px;
  color: #333333;
  height: 50px;
  padding-left: 10px;
  border-radius: 12px;
}

.content-inner .field textarea{
  font-size: 14px;
  color: #333333;
  padding: 10px;
  width: 100%;
  height: 200px;
  background-color: #ffffff;
  border: solid 1px #dedede;
  border-radius: 12px;
}

.contact .container {
  width: 50%;
  margin: 0 auto;
}

.contact .container h3{
  text-align: center;
  margin-bottom: 50px;
}

.comprueba{
  color: #0c3c8e;
  font-size: 12px;
  margin-bottom: 50px;
}

.comprueba input{
  width: 50px;
  height: 50px;
  border: solid 1px #dedede;
  font-size: 12px;
  color: #333333;
  text-align: center;
  border-radius: 12px;
  background-color: #ffffff;
}

.btn-enviar{
  background-color: #14b5f0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 300;
  width: fit-content;
  padding: 20px;
  border-radius: 6px;
  cursor: pointer;
}

.btn-enviar:hover{
  background-color: #0c3c8e;
}

.respuesta{
  padding-top: 50px;
  color: #0c3c8e;
  font-size: 16px;
  font-weight: bold;
}

.services a{
  display: block;
  margin: 10px;
  text-align: center;
  width: 100%;
}


@media only screen and (max-width: 1932px){
  .header .container-left{
    width: 30%;
  }
  .header .container-center{
    width: 40%;
  }
  .header .container-right{
    width: 30%;
  }
  .services .card p{
    width: 100%;
    height: fit-content;
    font-size: 14px;
  }
  .services .card h4{
    font-size: 18px;
  }
  .model h5{
    font-size: 18px;
  }
}

@media only screen and (max-width: 1740px){
  .header .container-left{
    width: 24%;
  }
  .header .container-right{
    width: 30%;
  }
  .about-us .container {
    width: 80%;
  }
  .services .container{
    width: 80%;
  }
  .model .container{
    width: 80%;
  }
  .model h5 {
    font-size: 18px;
  }
  .overlay-hero {
    top: 12%;
  }

}

@media only screen and (max-width: 1695px){
  .header .container-center{
    width: 50%;
  }
  .header .container-right{
    width: 26%;
  }
}

@media only screen and (max-width: 1620px){
  article p {
    font-size: 16px;
    line-height: 30px;
  }
  .header-contact .phone-number a{
    font-size: 14px;
  }
  .overlay-hero h2{
    font-size: 28px;
  }
  .menu-item{
    margin-right: 10px;
    margin-left: 10px;
    padding-left: 0;
    padding-right: 0;
  }
}

@media only screen and (max-width: 1540px){
  .header-contact {
    height: initial;
    display: block;
  }
  .header-contact .icon{
    text-align: center;
  }
  .header .container-right {
    width: 26%;
  }
  .header .container-center{
    width: 30%;
  }
  .header .container-left {
    width: 28%;
  }
  .img-about {
    width: 480px;
  }
}

@media only screen and (max-width: 1370px){
  .overlay-hero {
    top: 6%;
    left: 3%;
  }
  .slider{
    padding-left: 0;
  }
  .menu-item {
    font-size: 14px;
  }
  .services .card h4{
    font-size: 16px;
    line-height: 25px;
  }
  .services .card p{
    font-size: 14px;
  }
  .header .container-left{
    padding-left: 30px;
    width: 21%;
  }
  .header .container-center{
    width: 40%;
  }
  .model h5{
    line-height: 23px;
  }
  .model .item p{
    font-size: 14px;
  }
}

@media only screen and (max-width: 1330px){
  .header .container-right::before {
    content: "";
    position: absolute;
    left: -25px;
    width: 50px;
    height: 140px;
    transform: skew(20deg);
  }
}


@media only screen and (max-width: 1200px){
  .header .container-center{
    display: none;
  }
  .header .container-left{
    width: 60%;
  }
  .header-contact .phone-number{
    display: none;
  }
  .header-contact .icon img {
    width: 40px;
  }
  .header .container-right {
    width: 10%;
  }
}

@media only screen and (max-width: 1160px){
  .overlay-hero h2 {
    font-size: 18px;
    margin: 10px 0;
  }
  .overlay-hero .text{
    font-size: 12px;
  }
  .overlay-hero .button{
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    padding: 12px;
  }
  .overlay-container{
    padding: 1rem;
  }
  .overlay-container {
    padding: 30px;
  }
  .overlay-hero::before{
    display: none;
  }
  .overlay-hero{
    border-radius: 20px;
    left: 0;
    right: 0;
    margin-right: auto;
    margin-left: auto;
    width: 50%;
    top: 20%;
  }
  .overlay-hero .text {
    margin-bottom: 20px;
  }
  .overlay-hero .tag {
    font-size: 18px;
  }
  .about-us .container{
    display: flex;
    flex-direction: column-reverse;
  }
  .about-us .container .column{
    width: 100%;
  }
  .img-about {
    width: 100%;
    margin: 0 auto;
  }
  .services .container {
    width: 90%;
  }
  .services .card h4 {
    font-size: 18px;
    line-height: 21px;
    height: fit-content;
  }
  .services .card p {
    font-size: 16px;
    height: fit-content;
  }
  .services .container{
    display: block;
  }
  .services .card{
    width: 250px;
    margin: 0 auto;
    margin-bottom: 50px;
  }
  .model .container{
    display: block;
  }
  .model .item{
    margin: 0 auto;
    padding-bottom: 100px;
  }
  .model h5{
    height: fit-content;
  }
  .model .container{
    width: 100%;
  }
  .row-contact{
    height: 300px;
    padding-top: 20px;
  }
  .row-contact .container{
    display: block;
  }
  .row-contact .item{
    padding-top: 20px;
  }
}

@media only screen and (max-width: 40em){
  .overlay-hero{
    width: 90%;
    top: 37%;
  }
  .slider {
    padding-left: 0;
    height: 460px;
  }
  .header .container-right{
    width: 30%;
  }
  .header .container-right::before {
      left: -25px;
      width: 50px;
      transform: skew(20deg);
  }
  .header .container-right{
    width: 30%;
  }
  .header .container-left{
    
    padding: 0;
    padding-left: 10px;
  }
  .logo{
    padding-top: 10px;
  }
  .header .subtitle {
    font-size: 11px;
  }
  .overlay-container{
    padding: 15px;
  }
  .overlay-hero h2{
    padding-right: 0;
    font-size: 15px;
  }
  .header .container-left{
    padding-left: 20px;
  }
  .about-us .container {
    width: 90%;
  }
  article p {
    font-size: 14px;
    line-height: 26px;
  }
  .contact .container{
    width: 90%;
  }
  .services .title h3{
    width: 90%;
    text-align: center;
  }
  .header-contact a{
    color: transparent;
  }
}

