@charset "UTF-8";
:root {
  --color-third: red;
}

@font-face {
  font-family: "Karla";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/Karla-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Karla";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Karla-Medium.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Karla";
  font-style: italic;
  font-weight: 500;
  src: url("../fonts/Karla-MediumItalic.ttf") format("truetype");
}
@font-face {
  font-family: "Karla";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Karla-Bold.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Montserrat-Bold.ttf") format("truetype");
}
.transition-1 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 101;
  background-color: #909090;
  opacity: 0;
  pointer-events: none;
  transition: 300ms ease-in-out;
}

.transition-1.is-active {
  opacity: 1;
  pointer-events: all;
}

.transition-2 {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  bottom: 0;
  z-index: 101;
  background-color: #909090;
  transition: 300ms ease-in-out;
}

.transition-2.is-active {
  left: 0;
}

.transition-3 {
  position: fixed;
  top: 100%;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 101;
  background-color: #909090;
  transition: 300ms ease-in-out;
}

.transition-3.is-active {
  top: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Karla", "sans-serif";
}

h1 {
  font-weight: 700;
  letter-spacing: -7%;
  font-size: 40px;
}
@media (min-width: 768px) {
  h1 {
    font-size: 70px;
  }
}

h2 {
  font-size: 35px;
  font-weight: 700;
  letter-spacing: -2px;
  margin: 30px 0;
  text-align: center;
}
@media (min-width: 768px) {
  h2 {
    font-size: 55px;
    margin: 50px auto;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

h3 {
  font-weight: 700;
  margin: 10px 0;
  font-size: 20px;
  letter-spacing: -1px;
  line-height: 23px;
}
@media (min-width: 768px) {
  h3 {
    font-size: 20px;
    letter-spacing: -1px;
    line-height: 23px;
  }
}

p,
li {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -1px;
}
@media (min-width: 768px) {
  p,
li {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -1px;
  }
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  transition: all 300ms ease-in-out;
}

main {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.content-section {
  padding: 0 25px;
  margin: 20px auto 0;
}
@media (min-width: 768px) {
  .content-section {
    max-width: 1300px;
    width: 85%;
    padding: 0;
  }
}

small {
  color: #909090;
  font-size: 8px;
  line-height: 9.6px;
}

.legal h2 {
  margin: 20px 0;
  justify-content: flex-start;
}

.checkout {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
.checkout h2 {
  width: 100%;
}

.checkout-service {
  font-size: 125%;
  text-align: center;
  cursor: pointer;
  max-width: 200px;
  transition: all 300ms ease-in-out;
}
.checkout-service:hover {
  transform: scale(0.9);
  opacity: 0.9;
}
.checkout-service img {
  max-width: 200px;
  height: 200px;
}
.checkout-service figcaption {
  padding: 1rem 0;
}

.iframe__section {
  max-width: 85vw;
  margin: 50px auto;
}
.iframe__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}
@media (min-width: 768px) {
  .iframe__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .iframe__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.iframe__wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}
.iframe__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #292929;
}

.nav {
  color: #ffffff;
  display: flex;
  align-items: center;
}
.nav .nav__items {
  display: none;
}
@media (min-width: 768px) {
  .nav .nav__items {
    top: 5%;
    right: 10%;
    justify-content: flex-end;
    z-index: 100;
    display: flex;
    position: absolute;
  }
}
.nav .nav__logo {
  position: absolute;
  top: 25px;
  left: 25px;
  z-index: 100;
}
@media (min-width: 768px) {
  .nav .nav__logo {
    top: 5%;
    left: 10%;
  }
}
@media (min-width: 768px) {
  .nav .nav__item {
    margin-left: 60px;
    transition: all 300ms ease-in-out;
    font-size: 18px;
    line-height: 31px;
  }
}
.nav .nav__item:hover {
  transform: scale(1.1);
}

.nav__logo,
.nav__item a {
  color: #ffffff;
}

.nav-pane {
  transition: 250ms;
  position: fixed;
  transform: translateX(-650px);
  top: 0;
  height: 100vh;
  width: 348px;
  background: rgb(163, 163, 163);
  border-right: 2px solid #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  box-shadow: 0px 3px 10px rgba(33, 33, 33, 0.5);
  z-index: 1000;
}
@media screen and (max-width: 620px) {
  .nav-pane {
    width: 298px;
    transform: translateX(-300px);
  }
}
.nav-pane h2 {
  margin: 0;
  text-align: center;
  color: #f1f1f1;
  text-transform: uppercase;
  font-size: 1.5rem;
}
.nav-pane.open {
  transform: translateX(0);
  transition: 250ms;
}

.toggle-nav {
  position: absolute;
  top: 25px;
  right: 15px;
  cursor: pointer;
  color: #efefef;
  z-index: 10000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .toggle-nav {
    display: none;
  }
}
.toggle-nav.open span.m,
.toggle-nav.open span.n,
.toggle-nav.open span.u {
  opacity: 1;
}
.toggle-nav.open span.e {
  height: 12px;
}
.toggle-nav span.m,
.toggle-nav span.n,
.toggle-nav span.u {
  font-size: 1.05rem;
  opacity: 0;
  transition: 250ms;
  letter-spacing: 2px;
}
.toggle-nav span.e {
  display: inline-block;
  height: 10px;
  width: 17px;
}
.toggle-nav span.e.btn-close span.bar:nth-child(1) {
  transition: 250ms;
  transform: rotate(45deg);
  top: 5px;
}
.toggle-nav span.e.btn-close span.bar:nth-child(2) {
  opacity: 0;
  transition: 250ms;
}
.toggle-nav span.e.btn-close span.bar:nth-child(3) {
  transition: 250ms;
  transform: rotate(-45deg);
  bottom: 3px;
}
.toggle-nav span.e span.bar {
  transition: 250ms;
  position: relative;
  display: block;
  background: #eaeaea;
  border-radius: 1px;
  border-bottom: 1px solid white;
  width: 15px;
  height: 1px;
}
.toggle-nav span.e span.bar:nth-child(2) {
  margin: 3px 0;
}

.toggle-nav:hover span.m,
.toggle-nav:hover span.n,
.toggle-nav:hover span.u {
  opacity: 1;
  transition: 250ms;
}

.ham__items {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  height: 100%;
}
.ham__items .ham__item a,
.ham__items .ham__item a:visited {
  color: #292929;
  text-transform: uppercase;
  letter-spacing: 5px;
}
.ham__items .ham__item a:hover,
.ham__items .ham__item a:visited:hover {
  color: rgb(163, 163, 163);
}

.footer {
  width: 90%;
  margin: 50px auto;
}
.footer .footer-link {
  color: #292929;
  overflow: hidden;
  transition: all 300ms ease-in-out;
}
.footer .footer-link:hover {
  color: rgb(163, 163, 163);
}
.footer .footer-logo-container {
  position: relative;
  display: flex;
  justify-content: center;
}
.footer .footer-logo {
  color: #292929;
  transition: all 300ms ease-in-out;
  display: inline-flex;
  text-align: center;
  font-size: 20px;
  line-height: 23px;
  text-align: center;
  letter-spacing: -0.07em;
}
.footer .footer-logo::before,
.footer .footer-logo::after {
  content: "";
  width: calc(33.333333% - 40px);
  height: 1px;
  background: #000000;
  position: absolute;
  display: block;
  -webkit-transition: -webkit-transform 0.4s 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.4s 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s 0.2s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer .footer-logo::before {
  transform: scale(1, 1);
  left: 0;
  transform-origin: right center;
}
.footer .footer-logo::after {
  transform: scale(1, 1);
  right: 0;
  transform-origin: left center;
}

.footer-row {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
@media (min-width: 1024px) {
  .footer-row {
    flex-direction: row;
  }
}
.footer-row .footer-column {
  width: 80%;
  display: flex;
  align-items: center;
  margin: 20px auto;
}
@media (min-width: 1024px) {
  .footer-row .footer-column {
    width: 33%;
  }
}

.lg-row {
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
}
.lg-row .footer-icon:hover svg {
  color: #ffffff;
  transition: all 300ms ease-in-out;
}
.lg-row a {
  padding: 12px;
  display: flex;
  background: #404040;
  border-radius: 3px;
  transition: all 300ms ease-in-out;
}
.lg-row svg {
  width: 20px;
  height: auto;
  color: rgb(163, 163, 163);
}
@media (min-width: 1024px) {
  .lg-row svg {
    width: 24px;
    height: auto;
  }
}
.lg-row svg path {
  fill: currentColor;
}

.lg-column {
  flex-direction: column;
}
.lg-column .footer-link,
.lg-column .footer-link:visited {
  font-weight: bold;
  font-size: 15px;
  line-height: 18px;
  text-align: center;
  letter-spacing: 0.03em;
  margin: 13px 0;
  cursor: pointer;
  outline: none;
}

.footer-copyright {
  font-size: 12px;
  width: 100%;
  text-align: center;
}
@media (min-width: 321px) {
  .footer-copyright {
    font-size: 15px;
  }
}

.cookie {
  position: fixed;
  background: rgb(163, 163, 163);
  padding: 20px;
  opacity: 1;
  width: 100%;
  line-height: 150%;
  border-radius: 10px;
  position: fixed;
  bottom: 0;
  z-index: 100;
  padding-top: 60px;
  transition: all 300ms ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
  text-align: center;
  animation: appear 5s linear;
}
@media (min-width: 768px) {
  .cookie {
    bottom: 10px;
    width: calc(100% - 40px);
    max-width: 300px;
    transform: translateX(50%);
    right: 50%;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  90% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 1024px) {
  .cookie {
    right: 20px;
    transform: translateX(0);
  }
}
.cookie-icon {
  max-width: 100px;
  position: absolute;
  top: -50px;
  left: calc(50% - 50px);
}
.cookie .cookie__refuse-btn {
  position: absolute;
  right: 20px;
  top: 20px;
  border: none;
  outline: none;
  background: transparent;
  color: #ffffff;
  font-size: 17px;
  cursor: pointer;
}
.cookie h3,
.cookie p,
.cookie a {
  color: #ffffff;
}
.cookie p {
  margin: 20px 0;
}
.cookie-buttons .button {
  margin: 10px auto;
}

.cookie.set {
  opacity: 0;
  display: none;
}

.button,
.button:visited {
  border: none;
  padding: 10px 20px;
  border-radius: 3px;
  font-family: "Karla";
  font-size: 15px;
  outline: none;
  cursor: pointer;
  display: block;
  color: #ffffff;
  background: #292929;
  transition: all 300ms ease-in-out;
  text-align: center;
}

.button:hover {
  background: radial-gradient(63.64% 63.64% at 50% 50%, #c8c8c8 0%, #8a8a8a 100%);
}

.button-fit {
  width: fit-content;
  padding: 10px 40px;
}

.landing {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (min-width: 1024px) {
  .landing {
    flex-direction: row;
    height: 100vh;
  }
}
.landing video {
  display: none;
}
@media (min-width: 1024px) {
  .landing video {
    display: initial;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.4);
  }
}

.field-container {
  color: #ffffff;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  position: relative;
}
@media (min-width: 1024px) {
  .field-container {
    height: 100vh;
    width: 25%;
  }
}
.field-container .field-bg {
  position: absolute;
  height: 100%;
  width: 100%;
  transition: all 500ms ease-in-out;
  filter: brightness(1.3);
}
.field-container .field-headline {
  font-size: 47px;
  font-weight: 700;
  line-height: 53px;
  letter-spacing: -7%;
  margin: 10px;
  z-index: 2;
}
@media (max-width: 1024px) and (min-width: 768px) {
  .field-container .field-headline {
    font-size: 55px;
    line-height: 63px;
  }
}
@media (min-width: 1024px) {
  .field-container .field-headline {
    font-size: 40px;
  }
}
.field-container .field {
  font-size: 12px;
  font-weight: 700;
  line-height: 13px;
  letter-spacing: 27%;
  text-transform: uppercase;
  z-index: 2;
}
@media (max-width: 1024px) and (min-width: 768px) {
  .field-container .field {
    font-size: 20px;
    line-height: 27px;
    letter-spacing: 53%;
  }
}
@media (min-width: 1024px) {
  .field-container .field {
    font-size: 14px;
    line-height: 20px;
  }
}

.field-container-marketing .field-headline,
.field-container-linguistics .field-headline,
.field-container-translation .field-headline,
.field-container-coding .field-headline {
  pointer-events: none;
}

.field-headline:hover .marketing {
  opacity: 1;
}

.marketing {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.365) 0%, rgba(0, 0, 0, 0.5) 100%), url("../../assets/img/landing/marketing-long.webp");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1024px) and (min-width: 768px) {
  .marketing {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.365) 0%, rgba(0, 0, 0, 0.5) 100%), url("../../assets/img/landing/marketing-tablet.webp");
    background-position: center;
    background-size: cover;
  }
}
@media (min-width: 1024px) {
  .marketing {
    opacity: 0;
  }
  .marketing:hover {
    opacity: 1;
    transition: all 500ms ease-in-out;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.365) 0%, rgba(0, 0, 0, 0.5) 100%), url("../../assets/img/landing/marketing-long.webp");
    background-repeat: no-repeat;
    background-size: cover;
  }
}

.coding {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.365) 0%, rgba(0, 0, 0, 0.5) 100%), url("../../assets/img/landing/coding-long.webp");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1024px) and (min-width: 768px) {
  .coding {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.365) 0%, rgba(0, 0, 0, 0.5) 100%), url("../../assets/img/landing/coding-tablet.webp");
    background-position: center;
    background-size: contain;
  }
}
@media (min-width: 1024px) {
  .coding {
    opacity: 0;
  }
  .coding:hover {
    opacity: 1;
    transition: all 500ms ease-in-out;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.365) 0%, rgba(0, 0, 0, 0.5) 100%), url("../../assets/img/landing/coding-long.webp");
    background-size: cover;
  }
}

.linguistics {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.365) 0%, rgba(0, 0, 0, 0.5) 100%), url("../../assets/img/landing/linguistics-long.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 1024px) and (min-width: 768px) {
  .linguistics {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.365) 0%, rgba(0, 0, 0, 0.5) 100%), url("../../assets/img/landing/linguistics-tablet.webp");
    background-position: center;
    background-size: contain;
  }
}
@media (min-width: 1024px) {
  .linguistics {
    opacity: 0;
  }
  .linguistics:hover {
    opacity: 1;
    transition: all 500ms ease-in-out;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.365) 0%, rgba(0, 0, 0, 0.5) 100%), url("../../assets/img/landing/linguistics-long.webp");
    background-size: cover;
  }
}

.translation {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.365) 0%, rgba(0, 0, 0, 0.5) 100%), url("../../assets/img/landing/translation-long.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: initial;
}
@media (max-width: 1024px) and (min-width: 768px) {
  .translation {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.365) 0%, rgba(0, 0, 0, 0.5) 100%), url("../../assets/img/landing/translation-tablet.webp");
    background-repeat: no-repeat;
    background-size: cover;
  }
}
@media (min-width: 1024px) {
  .translation {
    opacity: 0;
  }
  .translation:hover {
    opacity: 1;
    transition: all 500ms ease-in-out;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.365) 0%, rgba(0, 0, 0, 0.5) 100%), url("../../assets/img/landing/translation-long.webp");
    background-repeat: no-repeat;
    background-size: cover;
  }
}

.hero {
  position: relative;
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .hero {
    height: 100vh;
    margin-right: auto;
    margin-left: auto;
    background-color: #fafafa;
  }
}
.hero .hero__image {
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  position: relative;
}
@media (min-width: 768px) {
  .hero .hero__image {
    position: sticky;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
.hero .hero__image-about,
.hero .hero__image-coding,
.hero .hero__image-linguistics,
.hero .hero__image-marketing,
.hero .hero__image-translation {
  background-size: cover;
}
@media (min-width: 768px) {
  .hero .hero__image-about,
.hero .hero__image-coding,
.hero .hero__image-linguistics,
.hero .hero__image-marketing,
.hero .hero__image-translation {
    background-position: 50% 50%;
  }
}
.hero .hero__image-coding {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.365) 0%, rgba(0, 0, 0, 0.5) 100%), url(../../assets/img/landing/coding-long.jpg);
}
@media (min-width: 768px) {
  .hero .hero__image-coding {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.365) 0%, rgba(0, 0, 0, 0.5) 100%), url(../../assets/img/landing/coding-tablet.jpg);
  }
}
.hero .hero__image-marketing {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.365) 0%, rgba(0, 0, 0, 0.5) 100%), url(../../assets/img/landing/marketing-long.jpg);
}
@media (min-width: 768px) {
  .hero .hero__image-marketing {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.365) 0%, rgba(0, 0, 0, 0.5) 100%), url(../../assets/img/landing/marketing-tablet.jpg);
  }
}
.hero .hero__image-linguistics {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.365) 0%, rgba(0, 0, 0, 0.5) 100%), url(../../assets/img/landing/linguistics-long.jpg);
  background-position: center;
}
@media (min-width: 768px) {
  .hero .hero__image-linguistics {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.365) 0%, rgba(0, 0, 0, 0.5) 100%), url(../../assets/img/landing/linguistics-tablet.jpg);
  }
}
.hero .hero__image-translation {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.365) 0%, rgba(0, 0, 0, 0.5) 100%), url(../../assets/img/landing/translation-long.jpg);
  background-position: center;
}
@media (min-width: 768px) {
  .hero .hero__image-translation {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.365) 0%, rgba(0, 0, 0, 0.5) 100%), url(../../assets/img/landing/translation-tablet.jpg);
  }
}
.hero .hero__image-about {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.365) 0%, rgba(0, 0, 0, 0.5) 100%), url(../../assets/img/about-manu-sanchez.jpg);
  background-position: center;
}
.hero .hero__image-contact {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.365) 0%, rgba(0, 0, 0, 0.5) 100%), url(../../assets/img/contact-manu-sanchez-bg.webp);
  background-position: center;
}
.hero .hero__text {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  color: #ffffff;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .hero .hero__text {
    position: absolute;
    bottom: 70px;
    height: auto;
    margin: 0;
  }
}
@media (min-width: 768px) {
  .hero .hero__title {
    font-size: 80px;
    line-height: 90px;
    font-weight: 700;
  }
}
.hero .hero__field {
  margin: 0 0 20px 0;
}
@media (min-width: 768px) {
  .hero .hero__field {
    margin: 0 0 30px 0;
    font-size: 20px;
    line-height: 32px;
  }
}

.works-section {
  margin-top: 90px;
}

.works__headline {
  margin-bottom: 70px;
}

.works {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 768px) {
  .works {
    flex-direction: row;
    justify-content: space-between;
  }
}

.work {
  width: 100%;
  height: auto;
  margin-bottom: 80px;
  filter: drop-shadow(0px 25px 44px rgba(0, 0, 0, 0.1));
}
@media (min-width: 769px) and (max-width: 1023px) {
  .work {
    width: 48%;
    margin-bottom: 70px;
  }
}
@media (min-width: 1024px) {
  .work {
    width: 30%;
  }
}

.translation-title {
  margin-bottom: 70px;
}
@media (min-width: 769px) {
  .translation-title {
    margin: 0;
  }
}

.translation-works {
  padding-top: 40px;
}

.translation-work {
  display: flex;
  flex-direction: column;
  box-shadow: 0px 7px 29px rgba(0, 0, 0, 0.08), 0px 12px 100px rgba(0, 0, 0, 0.1);
}
@media (min-width: 1025px) {
  .translation-work {
    width: 100%;
    flex-direction: row;
    margin: 35px 0;
  }
}
.translation-work .translation-work-image-container {
  width: 100%;
}
@media (min-width: 769px) {
  .translation-work .translation-work-image-container {
    min-height: 300px;
  }
}
@media (min-width: 1025px) {
  .translation-work .translation-work-image-container {
    width: 45%;
    min-height: 320px;
  }
}
@media (min-width: 769px) {
  .translation-work .translation-work-image-container .work-image-action {
    height: 130%;
  }
}
@media (min-width: 1025px) {
  .translation-work .translation-work-image-container .work-image-action {
    height: 100%;
  }
}
.translation-work .translation-work-image-container .translation-image {
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 769px) {
  .translation-work .translation-work-image-container .translation-image {
    bottom: 0;
  }
}
.translation-work .translation-work-text-container {
  width: 100%;
  margin: 20px 0;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: stretch;
}
@media (min-width: 1025px) {
  .translation-work .translation-work-text-container {
    width: 55%;
    height: auto;
  }
}
.translation-work .translation-work-text-container .work-link {
  margin: 20px 0;
  width: 100%;
}
@media (min-width: 769px) {
  .translation-work .translation-work-text-container .work-link {
    width: initial;
  }
}

.work-image-container {
  background-image: url(../../assets/img/graybggradient.png);
  background-size: cover;
  height: 200px;
  position: relative;
  transition: all 300ms ease-in-out;
}
@media (min-width: 768px) {
  .work-image-container {
    height: 240px;
  }
}
@media (min-width: 1024px) {
  .work-image-container {
    height: auto;
    min-height: 320px;
  }
}

.work-image {
  position: absolute;
  left: 1%;
  bottom: 0;
  height: 120%;
}
@media (min-width: 321px) {
  .work-image {
    left: 4%;
    bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .work-image {
    bottom: 5%;
    left: 0;
    height: 105%;
  }
}
@media (min-width: 1024px) and (max-width: 1365px) {
  .work-image {
    left: -10px;
    bottom: 10px;
    height: 90%;
  }
}
@media (min-width: 1366px) {
  .work-image {
    bottom: 10%;
    left: 2%;
    height: 80%;
  }
}

.work-image-action {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 115%;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 300ms ease-in-out;
}

.work-image-container:hover .work-image-action {
  opacity: 1;
}

.work-image-action a {
  display: inline-block;
  color: white;
  text-decoration: none;
  border: 1px solid #fff;
  padding: 5px 15px;
  cursor: pointer;
}

.work-text-container {
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #f9f9f9;
}
.work-text-container .logo-max-120 {
  width: 90px;
}
@media (min-width: 769px) {
  .work-text-container .logo-max-120 {
    width: 120px;
  }
}
.work-text-container .logo-melting {
  width: 160px;
  margin-bottom: 15px;
}
@media (min-width: 769px) {
  .work-text-container {
    padding: 30px;
  }
}
@media (min-width: 1024px) {
  .work-text-container {
    padding: 30px 40px;
  }
}

.linguistic-works .work-text-container {
  height: 420px;
}
@media (min-width: 768px) {
  .linguistic-works .work-text-container {
    height: 250px;
  }
}
@media (min-width: 1025px) {
  .linguistic-works .work-text-container {
    height: 420px;
  }
}

.work-text .work-headline {
  margin-bottom: 23px;
}

.work-icons {
  display: flex;
  align-items: center;
  margin: 10px 0 0;
}
.work-icons li {
  margin-right: 10px;
  transition: all 300ms ease-in-out;
  padding: 10px;
}

.work-link {
  position: relative;
  display: inline-block;
  padding: 16px 34px;
  outline: 0;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: none;
  font-family: "Karla";
  border-radius: 5px;
  color: #ffffff;
  background-color: #292929;
  text-transform: uppercase;
  margin-top: auto;
}

.work-link:hover {
  background: radial-gradient(63.64% 63.64% at 50% 50%, #c8c8c8 0%, #8a8a8a 100%);
}

.pricing-container {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .pricing-container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 7px;
    justify-content: space-between;
  }
}

.pricing-offer {
  flex: 1 0 100%;
  box-shadow: 0px 7px 29px rgba(0, 0, 0, 0.08), 0px 12px 100px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  margin: 0 0 20px 0;
  padding: 50px 0;
  text-align: center;
  transition: all 180ms ease-in-out;
}
.pricing-offer:hover {
  transform: scale(1.02);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
@media (min-width: 768px) {
  .pricing-offer {
    flex: 0 0 49%;
    margin: 0 0 7px 0;
  }
}
@media (min-width: 1366px) {
  .pricing-offer {
    flex: 0 0 24%;
    margin: 0 0 7px 0;
  }
}
.pricing-offer:last-of-type {
  margin-right: 0;
}
.pricing-offer .pricing-title h3 {
  font-size: 25px;
  line-height: 30px;
}
@media (min-width: 768px) {
  .pricing-offer .pricing-title h3 {
    font-size: initial;
    line-height: initial;
  }
}
.pricing-offer .pricing-title p {
  font-size: 18px;
  line-height: 22px;
}
@media (min-width: 768px) {
  .pricing-offer .pricing-title p {
    font-size: initial;
    line-height: initial;
  }
}
.pricing-offer .pricing-save {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px 0 6px;
}
@media (min-width: 768px) {
  .pricing-offer .pricing-save {
    padding: 0 3px 0 8px;
  }
}
.pricing-offer .pricing-save .tag {
  color: #ffffff;
  background: #292929;
  padding: 1px 6px;
  border-radius: 36px;
}

.pricing-offer-highlighted {
  position: relative;
}
.pricing-offer-highlighted .highlight {
  position: absolute;
  font-size: 9px;
  background: radial-gradient(63.64% 63.64% at 50% 50%, #c8c8c8 0%, #8a8a8a 100%);
  padding: 5px 10px;
  border-radius: 3px 0 0 3px;
  right: 0;
  top: 0;
  color: #ffffff;
  width: 100%;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pricing-offer-highlighted .pricing-save .tag {
  background: radial-gradient(63.64% 63.64% at 50% 50%, #c8c8c8 0%, #8a8a8a 100%);
}
.pricing-offer-highlighted .button {
  background: radial-gradient(63.64% 63.64% at 50% 50%, #c8c8c8 0%, #8a8a8a 100%);
}
.pricing-offer-highlighted .button:hover {
  background: #292929;
}

.pricing-price {
  display: flex;
  flex-direction: column;
  padding: 0 57px;
  margin: 30px 0;
}
@media (min-width: 768px) and (max-width: 1366px) {
  .pricing-price {
    padding: 0 97px;
  }
}
.pricing-price .button {
  margin: 15px 0;
}

.pricing-quantity {
  font-family: "Montserrat";
  font-size: 76px;
  line-height: 64px;
}
@media (min-width: 768px) {
  .pricing-quantity {
    font-size: 59px;
    line-height: 50px;
  }
}

.pricing-moment {
  font-family: "Montserrat";
  font-size: 21px;
  line-height: 25.66px;
  font-weight: bold;
  margin-left: auto;
}

.pricing-package-list {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  padding: 0 27px;
}
.pricing-package-list li {
  display: flex;
  align-items: baseline;
  justify-content: end;
  text-align: left;
  margin: 10px 0;
}
@media (min-width: 768px) {
  .pricing-package-list li {
    margin: 7px 0;
  }
}
.pricing-package-list .pricing-state {
  margin-right: 5px;
  vertical-align: baseline;
}
.pricing-package-list .pricing-feature {
  margin-bottom: auto;
  font-size: 13.7px;
  line-height: 15.3px;
  letter-spacing: -1px;
  line-break: strict;
}
@media (min-width: 768px) {
  .pricing-package-list .pricing-feature {
    font-size: 13px;
    line-height: 18px;
    max-width: 80%;
  }
}
.pricing-package-list .pricing-info {
  margin-left: auto;
}

.coding-works {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .coding-works {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5%;
  }
}
.coding-works .coding-work {
  background-image: url(../../assets/img/graybggradient.png);
  background-size: cover;
  height: 250px;
  position: relative;
  transition: all 300ms ease-in-out;
  margin-bottom: 20px;
}
@media (min-width: 500px) and (max-width: 768px) {
  .coding-works .coding-work {
    height: 300px;
  }
}
@media (min-width: 768px) {
  .coding-works .coding-work {
    height: 320px;
    flex: 0 0 49%;
  }
}
@media (min-width: 1024px) {
  .coding-works .coding-work {
    flex: 0 0 32%;
  }
}
.coding-works .coding-work-description {
  font-size: 12px;
  color: #292929;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 20px 30px;
  opacity: 0.5;
  transition: all 300ms ease-in-out;
}
@media (min-width: 768px) {
  .coding-works .coding-work-description {
    font-size: 16px;
  }
}
.coding-works .coding-work img {
  position: absolute;
  opacity: 0.7;
  filter: grayscale(100%);
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  transform: translateY(-6%) scale(1.1);
  transition: all 300ms ease-in-out;
}
@media (min-width: 768px) {
  .coding-works .coding-work img {
    transform: translateY(-3%) scale(1.2);
  }
}
.coding-works .coding-work:hover {
  background: radial-gradient(63.64% 63.64% at 50% 50%, #c8c8c8 0%, #8a8a8a 100%);
}
.coding-works .coding-work:hover .coding-work-description {
  transform: translateY(-3%) scale(1.1);
  opacity: 1;
}
.coding-works .coding-work:hover img {
  opacity: 1;
  filter: none;
}
@media (min-width: 768px) {
  .coding-works .coding-work:hover img {
    transform: translateY(-7%) scale(1.4);
  }
}

.coding-tools {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 70px;
}
.coding-tools li {
  filter: grayscale(1);
}
.coding-tools li:hover {
  filter: grayscale(0);
}

.contact-body {
  display: flex;
  flex-direction: column;
  margin: 30px 0;
}
@media (min-width: 768px) {
  .contact-body {
    flex-direction: row;
  }
}
.contact-body .contact-form {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 20px 0;
}
@media (min-width: 768px) {
  .contact-body .contact-form {
    width: 50%;
    margin: 0 20px 30px 0;
  }
}
@media (min-width: 1024px) {
  .contact-body .contact-form {
    width: 70%;
    margin: 0 20px 20px 0;
  }
}
.contact-body .form-group-half {
  width: 100%;
  margin: 0 0 30px 0;
}
@media (min-width: 768px) {
  .contact-body .form-group-half {
    width: 100%;
    margin: 0 10px 30px 0;
  }
}
@media (min-width: 1024px) {
  .contact-body .form-group-half {
    width: 45%;
    margin: 0 10px 10px 0;
  }
}
.contact-body .form-group {
  width: 100%;
  margin: 0 0 30px 0;
}
.contact-body .form-group select {
  font-family: "Karla";
}
@media (min-width: 1024px) {
  .contact-body .form-group {
    width: 91%;
    margin: 20px 0 10px 0;
  }
}
.contact-body .form-group,
.contact-body .form-group-half {
  border: none;
  border-radius: 7px;
}
.contact-body input[type=text],
.contact-body input[type=email],
.contact-body input[type=password],
.contact-body input[type=tel],
.contact-body input[type=url],
.contact-body input[type=search],
.contact-body input[type=number],
.contact-body textarea,
.contact-body select {
  color: #292929;
  display: block;
  cursor: pointer;
  padding: 11px 15px;
  margin: 0;
  width: 100%;
  border: 1px solid #292929;
  outline: none;
  box-shadow: none;
  border-radius: 5px;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.contact-body select {
  color: #292929;
  padding-right: 35px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.contact-body textarea {
  width: 100%;
  max-width: 100%;
  transition: none 0.3s ease-in-out;
}
.contact-body input[type=text]::-webkit-input-placeholder,
.contact-body input[type=email]::-webkit-input-placeholder,
.contact-body input[type=password]::-webkit-input-placeholder,
.contact-body input[type=tel]::-webkit-input-placeholder,
.contact-body input[type=url]::-webkit-input-placeholder,
.contact-body input[type=search]::-webkit-input-placeholder,
.contact-body input[type=number]::-webkit-input-placeholder,
.contact-body textarea::-webkit-input-placeholder,
.contact-body select::-webkit-input-placeholder {
  color: #292929;
  opacity: 1;
  font-family: "Karla";
}
.contact-body input[type=text]:-moz-placeholder,
.contact-body input[type=email]:-moz-placeholder,
.contact-body input[type=password]:-moz-placeholder,
.contact-body input[type=tel]:-moz-placeholder,
.contact-body input[type=url]:-moz-placeholder,
.contact-body input[type=search]:-moz-placeholder,
.contact-body input[type=number]:-moz-placeholder,
.contact-body textarea:-moz-placeholder,
.contact-body select:-moz-placeholder {
  color: #292929;
  opacity: 1;
}
.contact-body input[type=text]::-moz-placeholder,
.contact-body input[type=email]::-moz-placeholder,
.contact-body input[type=password]::-moz-placeholder,
.contact-body input[type=tel]::-moz-placeholder,
.contact-body input[type=url]::-moz-placeholder,
.contact-body input[type=search]::-moz-placeholder,
.contact-body input[type=number]::-moz-placeholder,
.contact-body textarea::-moz-placeholder,
.contact-body select::-moz-placeholder {
  color: #292929;
  opacity: 1;
}
.contact-body input[type=text]:-ms-input-placeholder,
.contact-body input[type=email]:-ms-input-placeholder,
.contact-body input[type=password]:-ms-input-placeholder,
.contact-body input[type=tel]:-ms-input-placeholder,
.contact-body input[type=url]:-ms-input-placeholder,
.contact-body input[type=search]:-ms-input-placeholder,
.contact-body input[type=number]:-ms-input-placeholder,
.contact-body textarea:-ms-input-placeholder,
.contact-body select:-ms-input-placeholder {
  color: #292929;
  opacity: 1;
}
.contact-body input[type=text]:focus,
.contact-body input[type=email]:focus,
.contact-body input[type=password]:focus,
.contact-body input[type=tel]:focus,
.contact-body input[type=url]:focus,
.contact-body input[type=search]:focus,
.contact-body input[type=number]:focus,
.contact-body textarea:focus,
.contact-body select:focus {
  outline: none;
  background-color: #f8f8f8;
}
.contact-body .form-check {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: baseline;
  width: 100%;
}
.contact-body .form-check label {
  font-size: 14px;
  margin-left: 5px;
  line-height: 20px;
}
@media (min-width: 768px) {
  .contact-body .form-check label {
    font-size: 16px;
    margin-top: 10px;
    line-height: 22px;
  }
}
.contact-body .form-check a {
  color: #292929;
  border-bottom: 1px solid #909090;
  transition: all 300ms ease-in-out;
}
.contact-body .form-check a:hover,
.contact-body .form-check a:focus {
  border-bottom: 1px solid transparent;
}
.contact-body .form-button {
  margin: 30px 0;
  text-transform: uppercase;
}

.contact-social {
  margin-top: 50px;
  width: 100%;
}
@media (min-width: 768px) {
  .contact-social {
    margin-top: 0;
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 1024px) {
  .contact-social {
    margin-top: 0;
    width: 30%;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.contact-social .contact-possibility {
  margin: 0 0 40px 0;
  color: #292929;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: scale(0.9);
}
@media (min-width: 768px) {
  .contact-social .contact-possibility {
    justify-content: space-around;
  }
}
.contact-social .contact-link {
  transition: all 300ms ease-in-out;
}
.contact-social .contact-link:hover {
  transform: scale(1);
}
.contact-social .contact-link:hover svg {
  opacity: 1;
}
.contact-social .contact-icon {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  line-height: 1;
  font-size: 20px;
  color: #fff;
  background-color: #404040;
  border-radius: 3px;
}
.contact-social .contact-icon svg {
  opacity: 0.6;
}
.contact-social .contact-text {
  width: 70%;
}
.contact-social .contact-text h3 {
  margin: 0;
  color: #505050;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.contact-social .contact-text span {
  margin: 8px 0 0;
  letter-spacing: 1px;
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  background: transparent;
}

.tooltip {
  cursor: pointer;
  position: relative;
  /* making the .tooltip span a container for the tooltip text */
  border-bottom: 1px dashed #909090;
  /* little indicater to indicate it's hoverable */
  margin-left: auto;
}

.tooltip:before {
  content: attr(data-text);
  /* here's the magic */
  position: absolute;
  box-shadow: 0px 7px 29px rgba(0, 0, 0, 0.08), 0px 12px 100px rgba(0, 0, 0, 0.1);
  /* basic styles */
  width: 200px;
  padding: 10px;
  font-size: 12px;
  border-radius: 3px;
  background: #ffffff;
  color: #292929;
  text-align: center;
  top: -475%;
  left: -49px;
  height: 90px;
  transform: translateX(-50%);
  display: none;
  /* hide by default */
}
@media (min-width: 768px) {
  .tooltip:before {
    left: 7px;
    width: 220px;
  }
}

.tooltip:after {
  content: "";
  position: absolute;
  /* position tooltip correctly */
  left: 0;
  top: -12px;
  /* the arrow */
  border: 10px solid #ffffff;
  border-color: #ffffff transparent transparent transparent;
  display: none;
}
@media (min-width: 768px) {
  .tooltip:after {
    top: -12px;
    left: -2px;
  }
}

.tooltip:hover:before,
.tooltip:hover:after {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 200;
}

.faq {
  background: none;
}

.qualification__tabs {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .qualification__tabs {
    margin-bottom: 5rem;
  }
}
.qualification__sections {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.qualification__button {
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: color all 300ms ease-in-out;
  display: flex;
  align-items: center;
  color: #292929;
  opacity: 0.6;
}
.qualification__button svg {
  margin-right: 5px;
}
@media (min-width: 768px) {
  .qualification__button {
    font-size: 21px;
  }
}
.qualification__button:hover {
  color: #292929;
}
.qualification__icon {
  font-size: 1.8rem;
  margin-right: 0.3rem;
}
.qualification__data {
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  column-gap: 2.5rem;
  min-height: 130px;
}
@media (min-width: 768px) {
  .qualification__data {
    column-gap: 5rem;
    min-height: 200px;
  }
}
.qualification__title {
  font-weight: 700;
  font-size: 15px;
}
@media (min-width: 768px) {
  .qualification__title {
    font-size: 22px;
  }
}
.qualification__subtitle {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 12px;
}
@media (min-width: 768px) {
  .qualification__subtitle {
    font-size: 15px;
  }
}
.qualification__calendar {
  color: #292929;
  border-bottom: 1px solid transparent;
  font-size: 10px;
  display: flex;
  text-transform: uppercase;
  transition: border-bottom 200ms ease-in-out;
}
@media (min-width: 768px) {
  .qualification__calendar {
    font-size: 12px;
  }
}
.qualification__calendar svg {
  margin-right: 5px;
}
.qualification__rounder {
  display: inline-block;
  width: 13px;
  height: 13px;
  background: #292929;
  border-radius: 50%;
}
.qualification__line {
  display: block;
  width: 1px;
  height: 100%;
  background-color: #292929;
  transform: translate(6px, -7px);
}

.qualification [data-content] {
  display: none;
}

.qualification__active[data-content] {
  display: block;
  max-width: 800px;
}

.qualification__button.qualification__active {
  border-bottom: 1px solid #292929;
  opacity: 1;
}

.quote {
  background: none;
}

.banner {
  text-align: center;
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .banner {
    text-align: left;
  }
}
.banner__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 30px 0;
}
@media (min-width: 768px) {
  .banner__container {
    flex-direction: row;
    justify-content: space-around;
    padding: 0 30px;
  }
}
.banner__bg {
  border-radius: 10px;
  background-color: #909090;
}
.banner__data {
  max-width: 100%;
}
@media (min-width: 768px) {
  .banner__data {
    max-width: 50%;
  }
}
.banner__data > .button {
  max-width: inherit;
  background-color: #292929;
  margin: 15px auto;
}
@media (min-width: 768px) {
  .banner__data > .button {
    margin: 15px 0;
  }
}
.banner__data > .button:hover {
  background-color: #404040;
}
.banner__title {
  font-weight: 500;
  margin: 30px 0 10px;
}
@media (min-width: 768px) {
  .banner__title {
    justify-content: flex-start;
  }
}
.banner__description {
  margin-bottom: 20px;
  max-width: 700px;
}
@media (min-width: 768px) {
  .banner__description {
    font-size: 18px;
    line-height: 25px;
  }
}
.banner__title, .banner__description {
  color: #ffffff;
}
.banner__img {
  width: 300px;
  filter: grayscale(0.8);
}
@media (min-width: 768px) {
  .banner__img {
    width: 330px;
  }
}
@media (min-width: 1024px) {
  .banner__img {
    width: 430px;
  }
}

.influences {
  margin-bottom: 100px;
}
.influences__cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}
.influences__card {
  height: 379px;
  width: 300px;
  background: grey;
  border-radius: 10px;
  transition: background 0.8s;
  overflow: hidden;
  background: black;
  box-shadow: 0 70px 63px -60px #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.influences__card:hover h3,
.influences__card:hover .description {
  opacity: 1;
}
.influences .border {
  height: 369px;
  width: 290px;
  background: transparent;
  border-radius: 10px;
  transition: border 1s;
  position: relative;
}
.influences .border:hover {
  border: 1px solid white;
}
.influences .padding {
  height: 100%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.influences .padding .description {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}
.influences .padding small,
.influences .padding a {
  color: white;
  font-size: 0.8rem;
}
.influences__card0 {
  background: url("../../assets/img/influences/influence_chester.webp") center center no-repeat;
  background-size: 300px;
}
.influences__card0:hover, .influences__card0:focus {
  background: url("../../assets/img/influences/influence_chester.webp") left center no-repeat;
  background-size: 600px;
}
.influences__card1 {
  background: url("../../assets/img/influences/influence_benhoward.png") center center no-repeat;
  background-size: 300px;
}
.influences__card1:hover {
  background: url("../../assets/img/influences/influence_benhoward.png") left center no-repeat;
  background-size: 600px;
}
.influences__card2 {
  background: url("../../assets/img/influences/influence_keenan2.webp") center center no-repeat;
  background-size: 300px;
}
.influences__card2:hover {
  background: url("../../assets/img/influences/influence_keenan2.webp") left center no-repeat;
  background-size: 600px;
}
.influences__card3 {
  background: url("../../assets/img/influences/influence_bukowski.webp") center center no-repeat;
  background-size: 300px;
}
.influences__card3:hover {
  background: url("../../assets/img/influences/influence_bukowski.webp") left center no-repeat;
  background-size: 600px;
}
.influences__card4 {
  background: url("../../assets/img/influences/influence_dave.jpg") center center no-repeat;
  background-size: 300px;
  background-size: cover;
}
.influences__card4:hover {
  background: url("../../assets/img/influences/influence_dave.jpg") left center no-repeat;
  background-size: 600px;
}
.influences__card5 {
  background: url("../../assets/img/influences/influence_landero.jpeg") center center no-repeat;
  background-size: 300px;
  background-size: cover;
}
.influences__card5:hover {
  background: url("../../assets/img/influences/influence_landero.jpeg") left center no-repeat;
  background-size: 600px;
}
.influences__card6 {
  background: url("../../assets/img/influences/influence_chris.png") center center no-repeat;
  background-size: 300px;
}
.influences__card6:hover {
  background: url("../../assets/img/influences/influence_chris.png") left center no-repeat;
  background-size: 600px;
}
.influences__card7 {
  background: url("../../assets/img/influences/influence_santi.webp") center center no-repeat;
  background-size: 300px;
}
.influences__card7:hover {
  background: url("../../assets/img/influences/influence_santi.webp") left center no-repeat;
  background-size: 600px;
}
.influences h3,
.influences .description {
  text-shadow: 2px 3px 10px rgb(0, 0, 0);
  color: white;
  transition: opacity 1s;
  opacity: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.influences blockquote {
  text-align: end;
}
.influences blockquote p {
  font-size: 1rem;
  line-height: 1.2rem;
  letter-spacing: 0;
}
.influences blockquote p:after {
  content: "”";
  vertical-align: bottom;
}
.influences blockquote p:before {
  content: "“";
  vertical-align: top;
}

/*# sourceMappingURL=main.css.map */
