@charset "UTF-8";
html:focus-within {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  padding: 0;
}

*:focus-visible {
  outline: 1px solid #2D57A3;
}

a, a:after, button, input[type=submit] {
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

img {
  max-width: 100%;
  margin: auto;
}

body {
  background-color: #ffffff;
  color: #474747;
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
}

header {
  background-color: #ffffff;
  box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 10;
}
header .wrap-header {
  width: calc(100% - 32px);
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
header .wrap-header .logo {
  max-width: 80%;
}
header .wrap-header .sel-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #565656;
}
header .wrap-header .sel-lang:hover {
  color: #2D57A3;
}
header .wrap-header .sel-lang:hover img {
  opacity: 0.75;
}
@media screen and (max-width: 768px) {
  header .wrap-header .sel-lang span {
    display: none;
  }
}
@media screen and (max-width: 1100px) {
  header .wrap-header {
    height: 50px;
  }
}

section {
  min-height: 100vh;
}

h2, h3 {
  margin: 0;
  padding: 0;
}

h2 {
  font-size: clamp(1.5rem, 0.9722rem + 2.2222vw, 1.85rem);
  font-weight: 400;
}

h3 {
  font-size: 24px;
  font-weight: 500;
}

/* Menu */
.nav-menu {
  width: 50%;
  justify-content: space-between;
  display: flex;
}
.nav-menu a {
  color: #565656;
  font-weight: 600;
  padding: 8px 16px;
  position: relative;
  white-space: nowrap;
}
.nav-menu a:hover, .nav-menu a.active {
  color: #E0121A;
}
.nav-menu a:hover::after, .nav-menu a.active::after {
  width: 100%;
}
.nav-menu a::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background: #E0121A;
  left: 50%;
  translate: -50%;
  position: absolute;
}

#pull,
.btn-menu {
  display: none;
}

/*
 CSS for the main interaction
*/
.wrap-accordion {
  display: flex;
}
.wrap-accordion .accordion {
  display: flex;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 50px;
  overflow: hidden;
  transition: all 0.5s ease;
  border: 1px solid #ddd;
  position: relative;
}
.wrap-accordion .accordion .showtimer {
  display: block;
  height: 10px;
  width: 0%;
  background: hsla(0, 0%, 100%, 0.4);
  position: absolute;
  bottom: 0;
  left: 0;
}
.wrap-accordion .accordion:has(input[name=collapse]:checked) {
  width: calc(100vw - 200px);
}
.wrap-accordion .accordion > input[name=collapse] {
  display: none;
  left: -100vw;
}
.wrap-accordion .accordion .content {
  order: 2;
  overflow: hidden;
  height: 90vh;
  transition: all 0.5s ease;
  width: 0;
}
.wrap-accordion .accordion .content .cont-txt {
  background: rgba(0, 0, 0, 0.65);
  width: 550px;
  max-width: 550px;
  padding: 32px;
  color: #ffffff;
  margin: 15% 0 0 10%;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  z-index: 2;
}
.wrap-accordion .accordion .content .cont-txt .title {
  font-size: clamp(1.875rem, 1.5469rem + 1.75vw, 2.75rem);
  font-weight: 700;
  display: block;
  border-bottom: 3px solid #2D57A3;
}
.wrap-accordion .accordion .content .cont-txt .subtitle {
  font-size: 14px;
  margin: -12px 0 0 0;
}
.wrap-accordion .accordion .content .cont-txt .text {
  margin: 12px 0 0 0;
}
@media screen and (max-width: 768px) {
  .wrap-accordion .accordion .content .cont-txt {
    margin: 0 auto;
  }
}
.wrap-accordion .accordion > input[name=collapse]:checked ~ .content {
  width: 80vw;
}
.wrap-accordion .accordion .handle {
  order: 1;
}
.wrap-accordion .accordion .handle label {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  width: 50px;
  height: 100%;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}
.wrap-accordion .accordion .handle label span {
  writing-mode: sideways-lr;
  display: block;
  position: absolute;
  bottom: 50px;
  z-index: 2;
}
.wrap-accordion .accordion .handle label:hover:before {
  opacity: 0.95;
}
.wrap-accordion .accordion .handle label:before {
  content: "";
  display: block;
  z-index: 1;
  background-color: #000;
  width: 100%;
  height: 100%;
  opacity: 0.75;
  transition: all 1s ease;
}
.wrap-accordion .accordion.serv-3pl .handle label:before {
  background-color: #2D57A3;
}
.wrap-accordion .accordion.serv-3pl .content .cont-txt .title {
  border-bottom: 3px solid #2D57A3;
}
.wrap-accordion .accordion.serv-vawd .handle label:before {
  background-color: #EE1C24;
}
.wrap-accordion .accordion.serv-vawd .content .cont-txt .title {
  border-bottom: 3px solid #EE1C24;
}
.wrap-accordion .accordion.serv-tec .handle label:before {
  background-color: #F15822;
}
.wrap-accordion .accordion.serv-tec .content .cont-txt .title {
  border-bottom: 3px solid #F15822;
}
.wrap-accordion .accordion.serv-tt .handle label:before {
  background-color: #55B948;
}
.wrap-accordion .accordion.serv-tt .content .cont-txt .title {
  border-bottom: 3px solid #55B948;
}
.wrap-accordion .accordion.serv-fyp .handle label:before {
  background-color: #26B1CB;
}
.wrap-accordion .accordion.serv-fyp .content .cont-txt .title {
  border-bottom: 3px solid #26B1CB;
}
@media screen and (max-width: 950px) {
  .wrap-accordion {
    flex-direction: column;
  }
  .wrap-accordion .accordion {
    width: 100%;
    height: 30px;
    flex-direction: column;
  }
  .wrap-accordion .accordion:has(input[name=collapse]:checked) {
    height: calc(100vh - 170px);
    width: 100%;
  }
  .wrap-accordion .accordion:has(input[name=collapse]:checked) .content {
    width: 100%;
  }
  .wrap-accordion .accordion:has(input[name=collapse]:checked) .content .cont-txt {
    margin: 10% auto;
    width: 80%;
    max-width: 550px;
  }
  .wrap-accordion .accordion .handle {
    width: 100%;
  }
  .wrap-accordion .accordion .handle label {
    width: 100%;
    height: 30px;
    font-size: 16px;
  }
  .wrap-accordion .accordion .handle label span {
    writing-mode: initial;
    left: 20px;
    bottom: 3px;
  }
}

.slider-home {
  min-height: 90dvh;
  margin-bottom: 0 !important;
}
.slider-home .slide {
  height: 90dvh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: start;
  /*// &:before{
  //     width: 100%;
  //     height: 100%;
  //     content: "";
  //     position: absolute;
  //     background: rgb(0 0 0 / 15%);
  //     z-index: 1;
  //     display: block;
  }*/
}
.slider-home .slide .cont-txt {
  background: rgba(0, 0, 0, 0.65);
  width: calc(100% - 32px);
  max-width: 550px;
  padding: 32px;
  color: #ffffff;
  margin: -200px 0 0 100px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  z-index: 2;
}
.slider-home .slide .cont-txt .title {
  font-size: clamp(1.875rem, 1.5469rem + 1.75vw, 2.75rem);
  font-weight: 700;
  display: block;
  border-bottom: 3px solid #2D57A3;
}
.slider-home .slide .cont-txt .text {
  margin: 12px 0 0 0;
}
@media screen and (max-width: 768px) {
  .slider-home .slide .cont-txt {
    margin: 0 auto;
  }
}
.slider-home .slide.serv-3pl .cont-txt .title {
  border-bottom: 3px solid #2D57A3;
}
.slider-home .slide.serv-tt .cont-txt .title {
  border-bottom: 3px solid #55B948;
}
.slider-home .slide.serv-fyp .cont-txt .title {
  border-bottom: 3px solid #26B1CB;
}
.slider-home .slide.serv-vawd .cont-txt .title {
  border-bottom: 3px solid #EE1C24;
}
.slider-home .slide.serv-tec .cont-txt .title {
  border-bottom: 3px solid #F15822;
}
.slider-home .slick-prev, .slider-home .slick-next {
  z-index: 3;
  width: 30px;
  height: 30px;
}
.slider-home .slick-prev {
  left: 25px;
}
.slider-home .slick-next {
  right: 25px;
}
.slider-home .slick-prev:before, .slider-home .slick-next:before {
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .slider-home .slick-prev {
    left: 0;
  }
  .slider-home .slick-next {
    right: 0;
  }
}
.slider-home .slick-dots {
  bottom: 25px;
}
.slider-home .slick-dots li {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  padding: 0 2px;
}
.slider-home .slick-dots li.slick-active button::before {
  width: 20px;
}
.slider-home .slick-dots li button {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
}
.slider-home .slick-dots li button::before {
  width: 20px;
  height: 20px;
  content: "•";
  text-align: center;
  opacity: 1;
  -moz-osx-font-smoothing: grayscale;
  width: 10px;
  height: 10px;
  content: "";
  display: block;
  border: 1px solid #ffffff;
  background: #6c6c6c;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
}
.slider-home .slick-dots li:nth-of-type(1) button:before {
  background: #2D57A3;
}
.slider-home .slick-dots li:nth-of-type(2) button:before {
  background: #EE1C24;
}
.slider-home .slick-dots li:nth-of-type(3) button:before {
  background: #F15822;
}
.slider-home .slick-dots li:nth-of-type(4) button:before {
  background: #55B948;
}
.slider-home .slick-dots li:nth-of-type(5) button:before {
  background: #26B1CB;
}

.title {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  margin: 0 0 16px 0;
}
.title .linea-tit {
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  background-color: #ababab;
  position: relative;
}
.title .linea-tit::before {
  content: "";
  width: 100px;
  height: 2px;
  display: block;
  background-color: #E0121A;
}

#quienes-somos, #areas-de-negocio, #contacto {
  padding-top: 70px;
}
@media screen and (max-width: 1100px) {
  #quienes-somos, #areas-de-negocio, #contacto {
    padding-top: 50px;
  }
}

#quienes-somos {
  background-color: #F9F9F9;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#quienes-somos .separador {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  margin: 50px 0;
  min-height: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#quienes-somos .separador .cont-txt-1 {
  width: calc(100% - 64px);
  max-width: 650px;
  text-align: center;
  padding: 32px;
  font-size: 42px;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.7);
  opacity: 0;
}
#quienes-somos .separador-2 {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  margin: 50px 0;
  height: 700px;
}
#quienes-somos .separador-2 .wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80%;
  background: #3B4B57;
  background: linear-gradient(180deg, rgb(59, 75, 87) 0%, rgba(59, 75, 87, 0.39) 74%, rgba(59, 75, 87, 0) 100%);
}
#quienes-somos .separador-2 .wrapper .cont-txt-2 {
  font-size: 32px;
  text-align: center;
  font-weight: 600;
  width: calc(100% - 64px);
  max-width: 850px;
  color: #ffffff;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
  opacity: 0;
}
#quienes-somos .cont-qs {
  max-width: 1300px;
  width: calc(100% - 32px);
  margin: 0 auto;
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
#quienes-somos .cont-qs .cont-img {
  text-align: center;
  min-width: 700px;
}
#quienes-somos .cont-qs .cont-img span {
  width: 100%;
  text-wrap: balance;
  display: inline-block;
}
#quienes-somos .cont-qs .cont-img img {
  margin: 16px auto;
}
@media screen and (max-width: 1200px) {
  #quienes-somos .cont-qs {
    flex-direction: column;
  }
  #quienes-somos .cont-qs .cont-txt, #quienes-somos .cont-qs .cont-img {
    min-width: 100%;
  }
}

#areas-de-negocio .cont-an {
  max-width: 1300px;
  width: calc(100% - 32px);
  margin: 0 auto;
  padding: 48px 0;
}
#areas-de-negocio .cont-an .title {
  margin: 0 auto 16px auto;
}
#areas-de-negocio .cont-an .bajada {
  display: block;
  float: none;
  margin: 0 auto 32px;
  text-align: center;
}
#areas-de-negocio .cont-an .item-an {
  background-color: #ffffff;
  box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.15);
  padding: 24px;
  margin: 0 0 24px 0;
  border-radius: 20px;
  display: flex;
  gap: 16px 48px;
  justify-content: space-between;
}
#areas-de-negocio .cont-an .item-an img {
  width: 114px;
  margin: 0;
}
#areas-de-negocio .cont-an .item-an .cont-txt {
  max-width: 550px;
  width: 100%;
}
#areas-de-negocio .cont-an .item-an .cont-txt .title {
  width: 100%;
  position: relative;
}
#areas-de-negocio .cont-an .item-an .cont-txt .title .tit {
  font-size: 20px;
  font-weight: 600;
  padding: 4px 24px 0 4px;
  z-index: 2;
  width: -moz-fit-content;
  width: fit-content;
}
#areas-de-negocio .cont-an .item-an .cont-txt .title .line {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
}
#areas-de-negocio .cont-an .item-an .cont-logos {
  max-width: 550px;
  width: 100%;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
#areas-de-negocio .cont-an .item-an .cont-logos a {
  margin: auto;
}
#areas-de-negocio .cont-an .item-an .cont-logos a:hover img {
  opacity: 0.75;
  transform: scale(1.05);
}
#areas-de-negocio .cont-an .item-an .cont-logos img {
  margin: auto;
  width: 130px;
  height: auto;
  transition: all 0.3s ease;
}
#areas-de-negocio .cont-an .item-an:nth-of-type(1) .cont-txt .title .line {
  background-color: #2D57A3;
}
#areas-de-negocio .cont-an .item-an:nth-of-type(2) .cont-txt .title .line {
  background-color: #EE1C24;
}
#areas-de-negocio .cont-an .item-an:nth-of-type(3) .cont-txt .title .line {
  background-color: #F15822;
}
#areas-de-negocio .cont-an .item-an:nth-of-type(4) .cont-txt .title .line {
  background-color: #55B948;
}
#areas-de-negocio .cont-an .item-an:nth-of-type(5) .cont-txt .title .line {
  background-color: #26B1CB;
}
@media screen and (max-width: 768px) {
  #areas-de-negocio .cont-an .item-an {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

#contacto-sect {
  background-color: #F9F9F9;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 50px 0 0;
}
#contacto-sect .contact-01 {
  max-width: 1100px;
  width: calc(100% - 32px);
  margin: 0 auto 100px;
  display: flex;
  flex-direction: column;
}
#contacto-sect .contact-01 .title {
  margin: 0 auto;
}
#contacto-sect .contact-01 .cont-cards {
  width: 100%;
  margin: 50px 0;
  clear: both;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
}
#contacto-sect .contact-01 .cont-cards .card {
  width: calc(50% - 18px);
  max-width: 525px;
  box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
  display: flex;
  flex-wrap: wrap;
}
#contacto-sect .contact-01 .cont-cards .card figure {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
  margin: 0;
  line-height: 0;
  display: flex;
  align-items: flex-end;
}
#contacto-sect .contact-01 .cont-cards .card figure .img-person {
  width: 100%;
}
#contacto-sect .contact-01 .cont-cards .card figure .img-flag {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
}
#contacto-sect .contact-01 .cont-cards .card .card-content {
  padding: 32px 16px;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  margin: 0 auto;
}
#contacto-sect .contact-01 .cont-cards .card .card-content .linea-tit {
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  background-color: #ababab;
  position: relative;
}
#contacto-sect .contact-01 .cont-cards .card .card-content .linea-tit::before {
  content: "";
  width: 100px;
  height: 2px;
  display: block;
  background-color: #E0121A;
}
#contacto-sect .contact-01 .cont-cards .card .card-content .name {
  font-size: 21px;
  font-weight: 600;
  color: #474747;
}
#contacto-sect .contact-01 .cont-cards .card .card-content .role {
  font-size: 19px;
  color: #565656;
}
#contacto-sect .contact-01 .cont-cards .card .card-content .email {
  color: #474747;
  margin: 16px 0px;
  width: 100%;
}
#contacto-sect .contact-01 .cont-cards .card .card-content .email:hover {
  color: #E0121A;
}
@media screen and (max-width: 374px) {
  #contacto-sect .contact-01 .cont-cards .card .card-content .email {
    width: 270px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
#contacto-sect .contact-01 .cont-cards .card .card-content .contact-hub {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
#contacto-sect .contact-01 .cont-cards .card .card-content .contact-hub .phone {
  font-size: 20px;
  color: #565656;
}
#contacto-sect .contact-01 .cont-cards .card .card-content .contact-hub .phone:hover {
  color: #E0121A;
}
#contacto-sect .contact-01 .cont-cards .card .card-content .contact-hub a:hover img {
  opacity: 0.75;
}
@media screen and (max-width: 1210px) {
  #contacto-sect .contact-01 .cont-cards .card figure {
    margin: 0 auto;
  }
  #contacto-sect .contact-01 .cont-cards .card .card-content {
    width: 100%;
  }
}
@media screen and (max-width: 550px) {
  #contacto-sect .contact-01 .cont-cards .card {
    width: 100%;
    justify-content: space-between;
  }
  #contacto-sect .contact-01 .cont-cards .card figure {
    margin: 0;
  }
}
@media screen and (max-width: 850px) {
  #contacto-sect .contact-01 .cont-cards .card figure {
    margin: 0 auto;
  }
}
#contacto-sect .wrap-form {
  background-image: url(../img/bg-form.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
}
#contacto-sect .wrap-form .sop-cont {
  max-width: 600px;
  margin: auto;
  float: none;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 32px 38px;
  width: 80%;
}
#contacto-sect .wrap-form .sop-cont .title .tit-txt {
  font-size: clamp(1.375rem, 1.1406rem + 1.25vw, 2rem);
}
@media screen and (max-width: 600px) {
  #contacto-sect .wrap-form .sop-cont {
    padding: 32px 16px;
    width: calc(100% - 32px);
  }
}

form {
  padding: 8px;
}
form .form-group {
  width: 100%;
  padding: 0 0 16px;
  display: block;
  clear: both;
  overflow: hidden;
}
form label {
  display: block;
  float: left;
  width: 140px;
  margin-top: 4px;
}
form input[type=text], form input[type=email], form select, form textarea {
  font-family: inherit;
  width: calc(100% - 140px);
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #ababab;
}
@media screen and (max-width: 600px) {
  form input[type=text], form input[type=email], form select, form textarea {
    width: 100%;
  }
}
form textarea {
  height: 100px;
  resize: none;
}
form button.submit {
  background-color: #3b4b57;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  width: 200px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  float: right;
}
form button.submit:hover {
  background-color: #2D57A3;
}
form button.submit:before {
  content: "";
  width: 25px;
  height: 25px;
  border: 3px solid #FFF;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  display: none;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
form button.submit.sending {
  background-color: #565656;
  cursor: not-allowed;
}
form button.submit.sending span {
  display: none;
}
form button.submit.sending:before {
  display: block;
}
form .g-recaptcha {
  float: right;
}
form .outputmsg {
  height: 25px;
  display: flex;
  font-weight: 500;
}

footer {
  border-top: 10px solid #E0121A;
  background: #3b4b57;
  padding: 32px 0;
}
footer .cont-footer {
  max-width: 1300px;
  width: calc(100% - 32px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .cont-footer .logo-foot {
  display: flex;
  align-items: center;
  gap: 16px;
}
footer .cont-footer .logo-foot a img {
  max-width: 230px;
}
footer .cont-footer .logo-foot img {
  max-width: 200px;
}
@media screen and (max-width: 768px) {
  footer .cont-footer .logo-foot {
    flex-direction: column;
    gap: 4px;
  }
}
footer .cont-footer img {
  margin: 0;
}
footer .cont-footer .rrss {
  display: flex;
  gap: 8px;
}
footer .cont-footer .rrss a {
  opacity: 1;
}
footer .cont-footer .rrss a img {
  max-width: 30px;
}
footer .cont-footer .rrss a:hover {
  opacity: 0.75;
}

@media screen and (max-width: 1100px) {
  #pull {
    display: block;
  }
  #pull {
    width: 30px;
    height: 30px;
    position: relative;
    margin: 0 10px;
    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
    cursor: pointer;
    z-index: 99999;
  }
  #pull span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #404040;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
    top: 0;
  }
  #pull span:nth-child(1) {
    top: 5px;
  }
  #pull span:nth-child(2) {
    top: 15px;
  }
  #pull span:nth-child(3) {
    top: 25px;
  }
  #pull.open span:nth-child(1) {
    top: 13px;
    transform: rotate(135deg);
  }
  #pull.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
  }
  #pull.open span:nth-child(3) {
    top: 13px;
    transform: rotate(-135deg);
  }
  .nav-menu {
    width: 100%;
    background: #2D57A3;
    position: absolute;
    top: 50px;
    display: none;
    margin: 0;
    left: 0;
  }
  .nav-menu a,
  .nav-menu a:hover,
  .nav-menu a:active, .nav-menu a.active {
    display: block;
    border-right: none;
    border-bottom: 1px solid #ccc;
    padding: 10px;
    color: #fff;
  }
  .nav-menu a::after,
  .nav-menu a:hover::after,
  .nav-menu a:active::after, .nav-menu a.active::after {
    display: none;
  }
  .nav-menu a:last-child {
    border-bottom: none;
  }
}
.animate {
  animation-name: slideIn;
  animation-duration: 2s;
  animation-delay: 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=app.css.map */