@import url(/css/font.css);
* {
  margin: 0;
  padding: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  /* 1 rem is 10px */
  font-size: 62.5%;
}

html,
body {
  height: 100vh;
  font-family: "Montserrat", sans-serif;
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
  color: #555555;
}

.text-align-center {
  text-align: center;
}

.border-bottom-highlight {
  border-bottom: 1px #bbb solid;
}

/* Typography */
body {
  font-size: 1.65rem;
  display: -ms-grid;
  display: grid;
      grid-template-areas: "header" "main" "footer";
  -ms-grid-rows: auto 1fr auto;
      grid-template-rows: auto 1fr auto;
}

header {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: header;
}

main {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: main;
}

footer {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: footer;
}

@media (min-width: 768px) {
  body {
    font-size: 1.9rem;
  }
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.5em;
}

h3 {
  font-size: 1.17em;
}

a {
  text-decoration: none;
  color: #555555;
}

.container {
  max-width: 960px;
  margin: 10px auto;
  padding: 0 1rem;
}

.logo img {
  max-height: 135px;
}

.header-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header-content nav {
  display: none;
  width: 100%;
}

.header-content nav ul {
  list-style-type: none;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header-content nav ul li {
  padding: 0.2rem;
}

.header-content nav ul li.highlight-on-hover:hover {
  background-color: #888;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.header-content nav ul li.highlight-on-hover:hover a {
  color: #fff;
}

.header-content nav.on {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  z-index: 25;
  background-color: rgba(170, 170, 170, 0.9);
  margin-top: -10px;
}

.header-content nav.on ul {
  list-style-type: none;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header-content nav.on ul li {
  min-height: 8rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header-content nav.on ul li a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2.4rem;
}

.header-content nav.on ul li.has-submenu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header-content nav.on ul li.has-submenu ul li {
  min-height: 3.5rem;
}

.header-content nav.on ul li.has-submenu ul li a {
  font-size: 1.6rem;
}

.header-content nav.on .language-selector {
  display: none;
  width: 100%;
  height: 5em;
  position: absolute;
  bottom: 3.5em;
}

.header-content nav.on .language-selector ul {
  list-style-type: none;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header-content nav.on .language-selector ul li a span {
  font-size: 2rem;
}

.header-content .burger-menu {
  display: block;
  padding: 0;
  border: none;
  background: none;
  margin-right: 1em;
}

.header-content .burger-menu .first,
.header-content .burger-menu .second,
.header-content .burger-menu .third {
  height: 4px;
  width: 30px;
  background-color: black;
  border-radius: 5px;
  margin-bottom: 5px;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.header-content .burger-menu.on {
  z-index: 25;
}

.header-content .burger-menu.on .first {
  -webkit-transform: rotate(45deg) translate(5px, 7px);
          transform: rotate(45deg) translate(5px, 7px);
}

.header-content .burger-menu.on .second {
  opacity: 0;
}

.header-content .burger-menu.on .third {
  -webkit-transform: rotate(-45deg) translate(5px, -8px);
          transform: rotate(-45deg) translate(5px, -8px);
}

@media (min-width: 1024px) {
  .header-content .burger-menu {
    display: none;
  }
  .header-content nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 55%;
    position: relative;
  }
  .header-content nav ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header-content nav ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header-content nav ul li a {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 1.8rem;
  }
  .header-content nav ul li.has-submenu {
    position: relative;
  }
  .header-content nav ul li.has-submenu ul {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    z-index: 2;
    top: 2.3rem;
    background-color: rgba(238, 238, 238, 0.9);
    min-width: 25rem;
    padding: 0.5rem 0;
  }
  .header-content nav ul li.has-submenu:hover ul, .header-content nav ul li.has-submenu:focus-within ul {
    visibility: visible;
    opacity: 1;
    -webkit-transition-duration: 0.6s;
            transition-duration: 0.6s;
  }
  .header-content .language-selector {
    margin-left: 2rem;
    position: absolute;
    top: 0;
    right: 0;
  }
  .header-content .language-selector ul {
    list-style-type: none;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header-content .language-selector ul li:not(:first-child) {
    padding: 0 0.5rem;
    border-left: 1px solid #e1e1e1;
  }
  .header-content .language-selector ul li:first-child {
    padding-right: 0.5rem;
  }
  .header-content .language-selector ul li a span {
    font-size: 1.25rem;
  }
}

.header-content .language-selector-mobile {
  display: none;
}

@media (max-width: 1024px) {
  .header-content .language-selector-mobile {
    display: block;
    margin-left: 2rem;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
  }
  .header-content .language-selector-mobile ul {
    list-style-type: none;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header-content .language-selector-mobile ul li:not(:first-child) {
    padding: 0 0.5rem;
    border-left: 1px solid #e1e1e1;
  }
  .header-content .language-selector-mobile ul li:first-child {
    padding-right: 0.5rem;
  }
  .header-content .language-selector-mobile ul li a span {
    font-size: 1.25rem;
  }
}

.hero {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #44bbc1), to(#9c9c9c));
  background: linear-gradient(90deg, #44bbc1 35%, #9c9c9c 100%);
  border-top: 1px #44bbc1 solid;
  border-bottom: 1px #44bbc1 solid;
  color: #fff;
}

.hero .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem;
}

.hero .container .hero-image img {
  width: 35rem;
  border-radius: 50%;
}

.hero .container .hero-text {
  text-align: center;
}

.hero .container .hero-text h1,
.hero .container .hero-text h2,
.hero .container .hero-text h3 {
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .hero .container .hero-text {
    text-align: left;
  }
}

.filiations .container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.filiations .container img {
  height: 8rem;
  margin-bottom: 1.5rem;
}

.filiations .container .filiation {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  padding: 2rem;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.filiations .container .filiation img {
  margin-right: 2rem;
}

@media (min-width: 768px) {
  .filiations .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .filiations .container .filiation p {
    font-size: 1.5rem;
  }
}

.trusted-by {
  padding: 1rem 0;
}

.trusted-by h2 {
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #44bbc1), to(#9c9c9c));
  background: linear-gradient(90deg, #44bbc1 35%, #9c9c9c 100%);
  padding: 2rem 0;
}

.trusted-by ul {
  list-style-type: none;
  margin: 2rem auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.trusted-by ul li {
  margin-bottom: 1.5rem;
}

.trusted-by ul li img {
  width: 15rem;
}

@media (min-width: 768px) {
  .trusted-by ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .trusted-by ul li {
    margin-bottom: 0;
  }
  .trusted-by ul li img {
    -webkit-transition: width 500ms;
    transition: width 500ms;
  }
  .trusted-by ul li img:hover {
    width: 18rem;
  }
}

/*
.reviews {
  ul {
    margin-top: 1rem;
    list-style-type: none;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    li {
      padding: 0 0.5rem;
      margin-bottom: 2rem;
      p {
        font-size: 1.5rem;
        text-align: justify;
      }
      span {
        text-align: center;
        // margin: 2rem auto;
        font-size: 1.2rem;
        font-weight: bold;
      }
      .review-person,
      .review-evaluation {
        text-align: center;
      }
      .review-evaluation {
        .fa-star {
          color: #ccc;
        }
        .checked {
          color: orange;
        }
        margin-bottom: 0.6rem;
      }
    }

    @media (min-width: $layout-breakpoint-tablet) {
      flex-direction: row;
      li {
        margin-bottom: 0;
      }
    }
  }
}
*/
.reviews ul {
  margin-top: 1rem;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.reviews ul li {
  padding: 0 0.5rem;
  margin-bottom: 2rem;
}

.reviews ul li p {
  font-size: 1.5rem;
  text-align: center;
}

.reviews ul li span {
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
}

.reviews ul li .review {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.reviews ul li .reviewer,
.reviews ul li .reviewer-evaluation {
  text-align: center;
}

.reviews ul li .reviewer-evaluation {
  margin-bottom: 0.6rem;
}

.reviews ul li .reviewer-evaluation .fa-star {
  color: #ccc;
}

.reviews ul li .reviewer-evaluation .checked {
  color: orange;
}

@media (min-width: 768px) {
  .reviews ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 1rem;
  }
  .reviews ul li {
    margin-bottom: 0;
  }
}

.footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.footer-content > div {
  width: 100%;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .footer-content > div {
    max-width: 240px;
  }
}

.footer-content p,
.footer-content a {
  font-size: 1.3rem;
}

.footer-content div {
  padding: 0 0.5rem;
}

.footer-content .links ul {
  list-style-type: none;
}

.footer-content .links ul li {
  position: relative;
  margin-bottom: 1.5rem;
}

.footer-content .links ul li:before {
  content: ">";
  position: absolute;
  height: 20px;
  width: 20px;
  margin-top: -1px;
}

.footer-content .links ul li:after {
  content: " ";
  border-bottom: 1px #eee solid;
  width: 100%;
  position: absolute;
  margin-top: 0.6rem;
}

.footer-content .links ul li a {
  margin-left: 1.5rem;
  display: block;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .footer-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.copyright {
  bottom: 0;
  width: 100%;
}

.copyright .copyright-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 1rem;
  padding-bottom: 1rem;
}

.copyright .copyright-content div > p {
  margin-bottom: 0.6rem;
}

.copyright .copyright-content p,
.copyright .copyright-content a {
  font-size: 1.2rem;
  margin: 0 0.6rem;
}

@media (min-width: 768px) {
  .copyright .copyright-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .copyright .copyright-content div > p {
    margin-bottom: 0;
  }
}

.about-me {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.about-me h2 {
  margin-bottom: 1.5rem;
}

.about-me .image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 2rem;
  width: 100%;
}

.about-me .image img {
  max-width: 35rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.about-me .text {
  padding: 0 1rem;
}

.about-me .text .mobile-hidden {
  display: none;
}

.about-me .text p {
  margin-bottom: 2rem;
  text-align: justify;
}

@media (min-width: 768px) {
  .about-me {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .about-me .desktop-hidden {
    display: none;
  }
  .about-me .text {
    padding-right: 1rem;
    margin-left: 2rem;
  }
  .about-me .text .mobile-hidden {
    display: block;
  }
}

.contact {
  margin-top: 4rem;
  padding: 2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.contact img {
  width: 35rem;
}

.contact .contact-informations {
  margin-top: 2rem;
}

.contact .contact-informations ul {
  list-style-type: none;
}

.contact .contact-informations ul li {
  margin-bottom: 2rem;
}

.contact .contact-informations ul li .fa {
  margin-bottom: 1rem;
}

.contact .contact-informations ul p {
  display: inline;
}

.contact .contact-informations address {
  font-style: initial;
}

.contact .contact-informations section,
.contact .contact-informations address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 768px) {
  .contact {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .contact .contact-informations {
    margin-left: 3rem;
  }
  .contact a:hover {
    color: #888;
  }
}

.translation-services,
.interpreting-services {
  padding: 2rem 0;
}

.translation-services section,
.interpreting-services section {
  margin-bottom: 2rem;
}

.translation-services section h2,
.interpreting-services section h2 {
  margin-bottom: 1.5rem;
}

.translation-services section .service-description img,
.interpreting-services section .service-description img {
  display: none;
}

.translation-services section .service-description p,
.interpreting-services section .service-description p {
  margin-bottom: 1rem;
  padding: 0 0.5rem;
  text-align: justify;
}

.translation-services section .service-description ol,
.interpreting-services section .service-description ol {
  padding-left: 4rem;
}

@media (min-width: 768px) {
  .translation-services section .service-description,
  .interpreting-services section .service-description {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .translation-services section .service-description p,
  .interpreting-services section .service-description p {
    padding: 0;
  }
  .translation-services section .service-description img,
  .interpreting-services section .service-description img {
    display: block;
    width: 30rem;
    margin-right: 2rem;
  }
  .translation-services section .service-description .description,
  .interpreting-services section .service-description .description {
    padding-right: 1rem;
  }
  .translation-services section .service-description a:hover,
  .interpreting-services section .service-description a:hover {
    color: #888;
  }
}

.sevilha {
  z-index: -1;
  background-image: url("../assets/img/sevilha.jpg");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}

@-webkit-keyframes introLoad {
  from {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  to {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

@keyframes introLoad {
  from {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  to {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

@-webkit-keyframes introLoadLeftToRight {
  from {
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
            clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }
  to {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

@keyframes introLoadLeftToRight {
  from {
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
            clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }
  to {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
/*# sourceMappingURL=styles.css.map */