@media (min-width:1200px) {
  .come-in {
    transform: translateY(250px);
    animation: a .8s ease forwards;
  }

  .come-in:nth-child(odd) {
    animation-duration: .6s;
  }

  .already-visible {
    transform: translateY(0);
    animation: none;
  }
}

@media (min-width:768px) {
  .header {
    padding: 20px 40px;
  }

  .header.fixed {
    padding: 12px 38px;
  }
}

@media (min-width:1024px) {
  .header {
    padding: 25px 40px;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .header__toggle {
    display: none;
  }

  .header .logo {
    width: 200px;
  }

  .gracias .header .logo {
    display: block;
  }

  .header.fixed {
    position: absolute;
  }

  .header.is-active {
    position: absolute;
    background: none;
    z-index: 10;
  }
}

@media (min-width:1024px) {
  section.menu {
    position: absolute;
    left: 0;
    top: 20px;
    z-index: 11;
    opacity: 1;
    background: none;
    padding: 0 40px;
    height: auto;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  section.menu .menu-inner {
    font-weight: 700;
  }

  section.menu .menu-inner,
  section.menu .menu-inner .menu-list {
    display: -ms-flexbox;
    display: flex;
  }

  section.menu .menu-inner .menu-list li {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 10px;
  }

  section.menu .menu-inner .menu-list li.inicio {
    display: block;
  }

  section.menu .menu-inner .menu-list li span {
    line-height: 1;
  }

  section.menu .menu-inner .menu-list li a {
    line-height: 32px;
    color: #545454;
    padding: 0;
    transition: all .4s ease;
  }

  section.menu .menu-inner .menu-list li a:hover {
    color: #de4846;
  }

  section.menu .menu-inner .menu-list li a:hover img {
    -webkit-filter: brightness(80%);
  }

  section.menu .menu-inner .menu-list li a:hover svg {
    fill: #de4846;
  }

  .fixed section.menu .menu-inner .menu-list li a {
    color: #fff;
  }

  .fixed section.menu .menu-inner .menu-list li a svg {
    fill: #fff;
  }

  section.menu .menu-inner .menu-list li.idioma {
    margin: 0 40px;
    min-width: 65px;
  }

  section.menu .menu-inner .menu-list li.idioma a {
    padding: 0!important;
  }

  section.menu .menu-inner .menu-list li.idioma a svg {
    fill: #545454;
    max-width: 15px;
    width: 100%;
    transition: all .4s ease;
  }

  section.menu .menu-inner .menu-list li.idioma a svg:hover {
    fill: #de4846;
  }

  section.menu .menu-inner .menu-list li .socials {
    -ms-flex-align: start;
    align-items: flex-start;
  }

  section.menu .menu-inner .menu-list li .socials li {
    margin-left: 20px;
    padding: 0;
  }

  section.menu .menu-inner .menu-list li .socials li a {
    display: -ms-flexbox;
    display: flex;
  }

  section.menu .menu-inner .menu-list li .socials li svg {
    fill: #545454;
    margin: 0;
    transition: all .4s ease;
  }

  section.menu .menu-inner .menu-list li .socials li svg:hover {
    fill: #de4846;
  }

  section.menu.fixed {
    top: 0;
    padding: 13px 40px;
    background: url(../img/logo.svg) 96% no-repeat;
    background-color: #143449;
    background-size: 120px;
    position: fixed;
    animation: b .5s ease-out;
  }

  section.menu.fixed .menu-inner .menu-list li a {
    color: #fff;
    transition: all .4s ease;
  }

  section.menu.fixed .menu-inner .menu-list li a:hover {
    color: #de4846;
  }

  section.menu.fixed .menu-inner .menu-list li.idioma a svg {
    fill: #fff;
    transition: all .4s ease;
  }

  section.menu.fixed .menu-inner .menu-list li.idioma a svg:hover {
    fill: #de4846;
  }

  section.menu.fixed .menu-inner .menu-list li .socials a svg {
    fill: #fff;
    transition: all .4s ease;
  }

  section.menu.fixed .menu-inner .menu-list li .socials a svg:hover {
    fill: #de4846;
  }
}

@media (min-width:1200px) {
  section.menu .menu-inner .menu-list li a {
    padding: 0 28px!important;
  }

  section.menu .menu-inner .menu-list li .socials li a {
    padding: 0!important;
  }
}

@media (min-width:1600px) {
  section.menu .menu-inner .menu-list li {
    font-size: 20px;
  }
}

@media (min-width:768px) {
  .footer {
    padding: 40px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2,1fr);
    -ms-grid-column-align: center;
    justify-items: center;
    -ms-flex-align: center;
    align-items: center;
    column-gap: 30px;
  }

  .footer h2 {
    grid-column: 1/3;
    justify-self: start;
    margin: 0;
    margin-bottom: 40px;
    padding: 0;
  }

  .footer form {
    margin-bottom: 0;
  }

  .footer_column:nth-child(2) {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2,1fr);
  }

  .footer_column_contact,
  .footer_column_description {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    align-items: flex-start;
    text-align: left;
  }

  .footer_column_contact h3,
  .footer_column_description h3 {
    font-size: 20px;
  }

  .footer_column_contact ul li a,
  .footer_column_description ul li a {
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .footer_column_description ul li:first-child {
    margin-right: 20px;
  }

  .footer_column_description ul li a svg {
    height: 30px;
    margin: 0;
  }
}

@media (min-width:1024px) {
  .footer {
    padding: 40px 60px;
    column-gap: 60px;
  }

  .footer_column form h3 .line {
    width: 18%;
  }
}

@media (min-width:1200px) {
  .footer {
    padding: 40px 80px;
  }

  .footer form input,
  .footer form textarea {
    margin: 0 auto 10px;
  }

  .footer form label {
    margin-bottom: 10px;
  }

  .footer form textarea {
    margin-bottom: 40px;
  }

  .footer form h3 {
    margin-bottom: 60px;
  }

  .footer_column:nth-child(2) {
    column-gap: 40px;
  }

  .footer_column:nth-child(2) h3,
  .footer_column:nth-child(2) ul li a {
    font-size: 24px;
  }

  .footer_column:nth-child(2) ul li a svg {
    height: auto;
    width: 30px;
    margin-right: 30px;
  }

  .footer_column:nth-child(2) .footer_column_description ul li:first-child {
    margin-right: 30px;
  }

  .footer_column:nth-child(2) .footer_column_description ul li a svg {
    margin-right: 0;
    height: 50px;
    width: auto;
  }
}

@media (min-width:1600px) {
  .footer form input,
  .footer form textarea {
    width: 75%;
  }

  .footer form label {
    font-size: 20px;
  }

  .footer form textarea {
    margin-bottom: 50px;
  }

  .footer form h3 {
    font-size: 28px;
  }

  .footer h2 {
    margin-bottom: 80px;
  }
}

@media (min-width:768px) {
  .hero {
    padding: 40px;
    background: url(../img/hero_ipad.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
  }

  .hero_tagline {
    margin-top: 30%;
    padding: 40px;
  }

  .hero_tagline h2 {
    font-size: 52px;
    margin-bottom: 40px;
  }

  .hero_tagline p {
    font-size: 24px;
    margin-bottom: 50px;
  }

  .hero.gracias {
    -ms-flex-pack: center;
    justify-content: center;
  }

  .hero.gracias .hero_title {
    padding: 20px;
  }
}

@media (min-width:1024px) {
  .hero {
    padding: 60px;
    content: "";
    background: none;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .hero.gracias .hero_title {
    background: unset;
  }

  .hero_tagline {
    background-color: unset;
    padding: 0;
    margin-top: 0;
    text-align: right;
    min-width: 70%;
  }

  .hero_tagline h2 {
    margin-bottom: 30px;
    margin-right: 3%;
  }

  .hero_tagline a.button__rayen {
    margin: 0 3% 0 auto;
  }
}

@media (min-width:1200px) {
  .hero {
    padding: 80px;
  }
}

@media (min-width:1600px) {
  .hero {
    padding: 100px;
  }

  .hero_tagline h2 {
    font-size: 60px;
  }

  .hero_tagline p {
    font-size: 28px;
  }
}

@media (min-width:1024px) {
  video {
    display: block;
  }
}

@media (min-width:768px) {
  .we {
    padding: 20px 40px;
  }

  .we h2 {
    position: unset;
    margin-bottom: 40px;
  }

  .we_list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3,1fr);
    column-gap: 30px;
  }

  .we.integrity {
    padding: 70px 40px;
    background: url(../img/integrity_ipad.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
  }

  .we.integrity .we_list li {
    min-height: 330px;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .we.integrity .we_list li h3,
  .we.integrity .we_list li img,
  .we.integrity .we_list li p {
    margin-bottom: 0;
  }
}

@media (min-width:1024px) {
  .we {
    padding: 0 60px;
  }

  .we h2 {
    position: absolute;
    left: unset;
    right: 20%;
    top: -140px;
    margin: 0;
    width: -webkit-fit-content;
    width: fit-content;
    font-size: 42px;
  }

  .we_list {
    column-gap: 40px;
  }

  .we.integrity {
    padding: 140px 60px;
    background: url(../img/integrity.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
  }

  .we.integrity .we_list li {
    min-height: 380px;
  }

  .we.integrity .we_list li h3 {
    font-size: 42px;
  }
}

@media (min-width:1200px) {
  .we {
    padding: 0 80px;
  }

  .we h2 {
    right: 23%;
    top: -140px;
    font-size: 50px;
  }

  .we_list {
    column-gap: 80px;
    margin-top: 40px;
    -ms-flex-align: start;
    align-items: start;
  }

  .we_list li img {
    max-width: 80px;
  }

  .we_list li h3 {
    font-size: 32px;
  }

  .we_list li p {
    font-size: 20px;
  }

  .we.integrity {
    padding: 160px 80px;
  }

  .we.integrity .we_list li {
    min-height: 560px;
    width: 90%;
  }

  .we.integrity .we_list li h3 {
    font-size: 42px;
  }
}

@media (min-width:1600px) {
  .we h2 {
    top: -200px;
    font-size: 60px;
  }

  .we_list {
    margin-top: 80px;
    column-gap: 80px;
  }

  .we_list li img {
    max-width: 100px;
  }

  .we_list li h3 {
    font-size: 36px;
  }

  .we_list li p {
    font-size: 22px;
  }

  .we.integrity {
    padding: 200px 80px;
  }

  .we.integrity .we_list li {
    min-height: 650px;
  }

  .we.integrity .we_list li h3 {
    font-size: 56px;
  }
}

@media (min-width:768px) {
  .leadership {
    padding: 40px;
    position: relative;
  }

  .leadership h2 {
    margin-bottom: 40px;
    position: absolute;
    top: -40px;
    right: 80px;
  }

  .leadership_member {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2,1fr);
    column-gap: 40px;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px;
  }

  .leadership_member:nth-child(3) {
    margin-bottom: 0;
  }
}

@media (min-width:1024px) {
  .leadership {
    padding: 60px;
  }

  .leadership h2 {
    font-size: 42px;
    top: -60px;
    right: 120px;
  }

  .leadership_member {
    column-gap: 60px;
    -ms-flex-align: end;
    align-items: end;
  }

  .leadership_member img {
    width: 80%;
    margin: 0 auto;
  }
}

@media (min-width:1200px) {
  .leadership {
    padding: 80px;
  }

  .leadership h2 {
    margin-bottom: 80px;
    font-size: 50px;
    top: -80px;
    right: 160px;
  }

  .leadership_member {
    column-gap: 0;
    margin-bottom: 60px;
  }

  .leadership_member_description {
    -ms-flex-item-align: start;
    align-self: flex-start;
    padding: 0 12%;
  }

  .leadership_member_description h3 {
    font-size: 36px;
    margin-bottom: 50px;
  }

  .leadership_member_description p {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .leadership_member:nth-child(3) {
    margin-bottom: 0;
  }
}

@media (min-width:1600px) {
  .leadership {
    padding: 100px;
  }

  .leadership h2 {
    margin-bottom: 100px;
    font-size: 60px;
    top: -100px;
    right: 200px;
  }

  .leadership_member {
    column-gap: 0;
    margin-bottom: 80px;
  }

  .leadership_member_description {
    padding: 0 12%;
  }

  .leadership_member_description h3 {
    font-size: 42px;
    margin-bottom: 60px;
  }

  .leadership_member_description p {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .leadership_member:nth-child(3) {
    margin-bottom: 0;
  }
}

@media (min-width:768px) {
  .team {
    padding: 160px 10px;
    background: url(../img/team_ipad.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    position: relative;
  }

  .team h2 {
    margin-bottom: 40px;
    position: absolute;
    top: 40px;
    right: 160px;
  }

  .team.swiper {
    margin-bottom: 60px;
  }

  .team .swiper.brand .swiper-slide {
    padding: 0 25px;
  }

  .team .swiper.brand .swiper-button-prev {
    left: 0;
  }

  .team .swiper.brand .swiper-button-next {
    right: 0;
  }
}

@media (min-width:1024px) {
  .team {
    padding: 200px 20px;
    background: url(../img/team.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
  }

  .team h2 {
    font-size: 42px;
    top: 60px;
    right: 200px;
  }

  .team .swiper.brand .swiper-slide {
    padding: 0 25px;
  }

  .team .swiper.brand .swiper-slide_tagline {
    padding: 20px;
  }

  .team .swiper.brand .swiper-slide_tagline .logo {
    max-height: 120px;
  }

  .team .swiper.brand .swiper-button-prev {
    left: 0;
  }

  .team .swiper.brand .swiper-button-next {
    right: 0;
  }
}

@media (min-width:1200px) {
  .team {
    padding: 240px 40px 0;
    background-position: top;
  }

  .team.swiper {
    margin-bottom: 80px;
    background: transparent;
  }

  .team h2 {
    font-size: 50px;
    top: 100px;
    right: 25%;
  }
}

@media (min-width:1600px) {
  .team {
    padding: 300px 50px 0;
  }

  .team.swiper {
    margin-bottom: 100px;
  }

  .team .swiper.brand .swiper-slide {
    padding: 0 25px;
  }

  .team .swiper.brand .swiper-slide_tagline_description p {
    font-size: 20px;
  }

  .team h2 {
    font-size: 60px;
  }
}

@media (min-width:768px) {
  .world {
    padding: 40px;
  }

  .world h2 {
    margin-bottom: 40px;
  }
}

@media (min-width:1024px) {
  .world {
    padding: 60px;
  }

  .world h2 {
    font-size: 42px;
    margin-bottom: 60px;
    -ms-flex-item-align: start;
    align-self: flex-start;
  }

  .world_image {
    width: 80%;
  }
}

@media (min-width:1200px) {
  .world {
    padding: 260px 80px 80px;
    background: url(../img/world-blue.jpg);
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: auto;
    background-position: top;
  }

  .world h2 {
    font-size: 50px;
  }

  .world_image,
  .world h2 {
    background: transparent;
  }
}

@media (min-width:1600px) {
  .world {
    padding: 300px 100px 100px;
  }

  .world h2 {
    font-size: 60px;
  }
}

@media (min-width:768px) {
  .clients {
    padding: 40px;
  }

  .clients h2 {
    margin-bottom: 40px;
  }

  .clients_list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3,1fr);
  }
}

@media (min-width:1024px) {
  .clients {
    padding: 60px;
  }

  .clients h2 {
    font-size: 42px;
    margin-bottom: 40px;
  }

  .clients .swiper-slide {
    padding: 20px;
  }

  .clients_list {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4,1fr);
    column-gap: 10px;
    row-gap: 30px;
  }

  .clients_list li {
    max-width: 200px;
  }
}

@media (min-width:1200px) {
  .clients {
    padding: 80px;
  }

  .clients h2 {
    font-size: 50px;
  }

  .clients_list {
    column-gap: 30px;
    row-gap: 50px;
  }

  .clients_list li {
    max-width: unset;
    width: 70%;
  }

  .clients_list li img {
    transition: all .2s ease-in-out;
  }

  .clients_list li img:hover {
    scale: 1.1;
  }

  .clients .swiper-slide {
    padding: 25px;
  }
}

@media (min-width:1600px) {
  .clients {
    padding: 100px;
  }

  .clients h2 {
    font-size: 60px;
  }

  .clients .swiper-slide {
    padding: 30px;
  }
}

@media (min-width:768px) {
  .support {
    padding: 40px 0;
  }

  .support h2,
  .support p {
    padding: 0 40px;
    margin-bottom: 40px;
  }
}

@media (min-width:1024px) {
  .support {
    padding: 60px 20px;
  }

  .support h2 {
    padding: 0;
    font-size: 42px;
  }

  .support p {
    padding: 0;
    width: 80%;
  }

  .support_image {
    overflow: auto;
  }

  .support_image img {
    width: 100%;
    height: auto;
    min-height: unset;
  }
}

@media (min-width:1200px) {
  .support {
    padding: 80px 40px;
  }

  .support h2 {
    font-size: 50px;
    margin-bottom: 50px;
  }

  .support p {
    font-size: 20px;
    margin-bottom: 40px;
    width: 70%;
  }
}

@media (min-width:1600px) {
  .support {
    padding: 100px 50px;
  }

  .support h2 {
    font-size: 60px;
    margin-bottom: 60px;
  }

  .support p {
    font-size: 24px;
    margin-bottom: 45px;
  }
}

@media (min-width:768px) {
  .faq {
    padding: 40px;
    background: url(../img/faq_ipad.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
  }

  .faq h2,
  .faq p {
    margin-bottom: 40px;
  }

  .faq_accordion {
    height: 60vw;
  }

  .faq .accordion {
    padding: 10px 0 10px 10px;
    margin-bottom: 20px;
    text-align: center;
    width: -webkit-fit-content;
    width: fit-content;
  }

  .faq .accordion:before {
    background: url(../img/arrow-r.svg);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 20px;
    width: 20px;
    height: 20px;
    content: "";
    position: absolute;
    right: -40px;
    top: 30%;
    transition: all .2s ease-out;
  }

  .faq .accordion.active {
    margin-bottom: 10px;
  }

  .faq .panel {
    width: 75%;
    margin-bottom: 20px;
  }

  .faq .panel p {
    margin-bottom: 10px;
    text-align: center;
  }
}

@media (min-width:1024px) {
  .faq {
    padding: 60px 30px;
    background: url(../img/faq.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
  }

  .faq h2 {
    font-size: 42px;
  }

  .faq p {
    width: 80%;
  }

  .faq_accordion {
    height: 70vh;
  }

  .faq .accordion {
    margin-bottom: 40px;
    font-size: 20px;
  }

  .faq .accordion.active {
    margin-bottom: 10px;
  }

  .faq .panel p {
    width: 100%;
    font-size: 18px;
  }
}

@media (min-width:1200px) {
  .faq {
    padding: 80px 40px;
    background-position: center -30px;
    background: url(../img/faq_desk.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
  }

  .faq h2 {
    font-size: 50px;
    margin-bottom: 50px;
  }

  .faq p {
    font-size: 20px;
    margin-bottom: 100px;
    width: 70%;
  }

  .faq_accordion {
    height: 110vh;
    margin-top: 0;
  }

  .faq .accordion {
    margin-bottom: 80px;
  }
}

@media (min-width:1600px) {
  .faq {
    padding: 100px 50px;
  }

  .faq h2 {
    font-size: 60px;
    margin-bottom: 60px;
  }

  .faq p {
    font-size: 24px;
    margin-bottom: 100px;
  }

  .faq_accordion {
    height: 100vh;
  }

  .faq .accordion {
    font-size: 26px;
  }

  .faq .panel p {
    width: 100%;
    font-size: 24px;
  }
}