/*Header Sizing*/
/*Button*/
@font-face {
  font-family: myFirstFont;
  src: url(Outfit-VariableFont_wght.ttf);
}
/*Content Sizing*/
::-moz-selection {
  background: var(--highlight);
  color: var(--base-color);
}
::selection {
  background: var(--highlight);
  color: var(--base-color);
}

:root {
  --base-color: #000000;
  --base-color-variant: #121212;
  --text-color:white;
  --secondary-color:#121212;
  --primary-color: #EA3434;
  --accent-color:#930300;
  --blur-color: #00000079;
  --fill: #EA3434;
  --card-color: rgb(216, 216, 216);
  --backdrop-filter: blur(50px);
  --button-change:salmon;
  --url-button: #FFD6D6;
  --url-text: #D01C1C;
  --case-button: #FFE2C9;
  --case-text:#D35100;
  --social-buttons: #fff4d3;
  --social-text: #bb6101;
  --highlight: salmon;
  --contact-button:#F8f8f8;
  --about-color:#AC0000;
  --animate:rgba(203, 203, 203, 0.649);
}

.lightmode {
  --base-color: #EFEFEF;
  --base-color-variant: white;
  --text-color:black;
  --secondary-color:white;
  --primary-color: #2CA6FF;
  --accent-color:#CEEEFF;
  --blur-color: #ffffffb8;
  --fill: #050064;
  --card-color: rgb(216, 216, 216);
  --backdrop-filter: blur(50px);
  --button-change:#070087;
  --url-button: #D0E4FF;
  --url-text: #0656F6;
  --case-button: #d1cfff;
  --case-text:#070087;
  --social-buttons: #a2ffcd;
  --social-text: #005a31;
  --highlight: rgb(98, 156, 255);
  --contact-button:#070087;
  --about-color:#001e59;
  --animate:rgba(67, 67, 67, 0.791);
}

body {
  background: var(--base-color);
  margin: 0;
  padding: 0;
  font-family: "Outfit", sans-serif;
  box-sizing: border-box;
  width: 100%;
}

h1 {
  font-size: min(max(4.19rem, 15vw), 6.25rem);
  line-height: min(max(10rem, 7vh), 6.5rem);
  font-weight: 900;
  text-transform: lowercase;
  margin: 0;
}

h2 {
  font-size: min(max(4rem, 15vw), 3rem);
  line-height: min(max(3.5rem, 7vh), 3.6rem);
  font-weight: 900;
  text-transform: lowercase;
  margin: 0;
}

h3 {
  font-size: min(max(2rem, 15vw), 2.13rem);
  line-height: min(max(2rem, 7vh), 3rem);
  font-weight: 700;
  text-transform: lowercase;
  margin: 0;
}

p {
  font-size: 1.25rem;
  line-height: 1.88rem;
}

.primary-red {
  color: var(--primary-color);
}

.accent-red {
  color: var(--accent-color);
}

a {
  text-decoration: none;
}

.container-1700px-hero {
  width: 100%;
  max-width: 1700px;
  margin: auto;
  box-sizing: border-box;
  align-items: center;
  display: flex;
  display: -webkit-flex;
  overflow: hidden;
}

.container-1700px {
  width: 100%;
  max-width: 1700px;
  margin: auto;
  box-sizing: border-box;
  padding: 0 24px 0 24px;
}

.container-1100px {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  box-sizing: border-box;
  padding: 0 20px 0 20px;
}

/*Hero Banner Section*/
.column-section-hero {
  display: grid;
  grid-template-columns: 400px auto;
  grid-template-rows: auto;
  justify-content: space-between;
  width: 100%;
  max-width: 1700px;
  margin: auto;
  align-items: center;
}

.first-column, .second-column {
  width: 100%;
}

.header3-hero {
  font-size: min(max(2rem, 15vw), 2.13rem);
  line-height: min(max(2rem, 7vh), 3rem);
  font-weight: 700;
  text-transform: lowercase;
  margin: 0;
  color: var(--primary-color);
  white-space: nowrap;
}

.header3-content {
  font-size: min(max(2rem, 15vw), 2.13rem);
  line-height: min(max(2rem, 7vh), 3rem);
  font-weight: 700;
  text-transform: lowercase;
  margin: 0;
  color: var(--primary-color);
  white-space: nowrap;
  margin: 0;
}

.header1-hero {
  font-size: min(max(4.19rem, 15vw), 6.25rem);
  line-height: min(max(10rem, 7vh), 6.5rem);
  font-weight: 900;
  text-transform: lowercase;
  margin: 0;
  color: var(--text-color);
  white-space: nowrap;
}

#header1-hero-margin {
  margin-bottom: 20px;
}

.hero-text {
  font-size: min(max(2rem, 2vw), 1.46rem);
  line-height: min(max(2.1rem, 2vw), 2.75rem);
  color: var(--text-color);
  width: 100%;
  margin-bottom: 30px;
}

.button-icon-button-hero {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  border-radius: 100px;
  width: 160px;
  padding: 16px 13px 16px 13px;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.button-icon-button-hero:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 10rem;
  z-index: -2;
}
.button-icon-button-hero:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--button-change);
  fill: white;
  transition: all 0.3s;
  border-radius: 10rem;
  z-index: -1;
}
.button-icon-button-hero:hover {
  color: var(--base-color-variant);
}
.button-icon-button-hero:hover:before {
  width: 100%;
}

.button-hero {
  color: var(--base-color);
  text-decoration: none;
  font-size: 24px;
}

#john-perez-illustration {
  width: 300px;
  filter: grayscale(100);
}

.mousescroll {
  transform: translate(0%, 50%);
  display: grid;
  animation: down 5s linear;
  transition: ease-out 0.3s;
  grid-template-columns: auto;
  justify-content: center;
  align-items: center;
  row-gap: 10px;
  padding: 0 0 0 24px;
}

.mouse-line {
  height: 200px;
  width: 1px;
  background-color: var(--text-color);
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-top: -100px;
  animation: down 2s linear;
  transition: ease-out 0.3s;
  animation-fill-mode: forwards;
}

@keyframes down {
  0% {
    height: 0px;
  }
  100% {
    height: 200px;
  }
}
.arrow-mouse {
  justify-content: center;
  align-items: center;
  margin: auto;
}

#arrow-1 svg {
  animation: air 1s ease-in-out infinite;
  animation-delay: 0.5s;
}

#arrow-2 svg {
  animation: air 1s ease-in-out infinite;
  animation-delay: 1s;
}

#arrow-3 svg {
  animation: air 1s ease-in-out infinite;
  animation-delay: 2s;
}

@keyframes arrow {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 50%;
  }
  70% {
    opacity: 100%;
  }
  100% {
    opacity: 0;
  }
}
/*Work*/
.secondary-body {
  padding: 100px 0 100px 0;
  background-color: var(--base-color-variant);
  color: var(--text-color);
  padding: 0;
  box-sizing: border-box;
  width: 100%;
}

/*Work*/
.secondary-body {
  padding: 100px 0 100px 0;
  background-color: var(--base-color-variant);
  color: var(--text-color);
  padding: 0;
  box-sizing: border-box;
  width: 100%;
}

.column-section-content {
  display: grid;
  grid-template-columns: 400px auto;
  grid-template-rows: auto;
  justify-content: space-between;
  width: 100%;
  max-width: 1700px;
  margin: auto;
  align-items: center;
}

.column-section-content-work {
  display: grid;
  grid-template-columns: 400px auto;
  grid-template-rows: auto;
  justify-content: space-between;
  width: 100%;
  max-width: 1700px;
  margin: auto;
  align-items: center;
  padding: 30px 0 100px 0;
}

.see-more-with-icon {
  align-items: center;
  display: grid;
  grid-template-columns: auto auto;
  gap: 15px;
  color: #989898;
  text-decoration: none;
}

.see-more-link {
  color: #989898;
  display: flex;
  display: -webkit-flex;
  gap: 10px;
  align-items: center;
}

.see-more-link:hover {
  color: #626262;
  text-decoration: underline;
  transition: 0.5s ease-in-out;
}

/*Company Grids*/
.section-of-work {
  width: 100%;
  max-width: 500px;
}

.arrow-hidden {
  display: flex;
  display: -webkit-flex;
  align-items: center;
}

.service-did {
  font-size: 1.5rem;
  line-height: min(max(2rem, 7vh), 2rem);
  text-transform: lowercase;
  margin: 0;
  color: var(--primary-color);
  padding-top: 10px;
}

.company-name-work {
  font-size: min(max(4rem, 15vw), 3rem);
  line-height: min(max(3.5rem, 7vh), 3.6rem);
  font-weight: 900;
  text-transform: lowercase;
  margin: 0;
  width: 100%;
}

.description-of-company {
  font-size: 1.25rem;
  line-height: 1.88rem;
  padding-top: 0px;
  width: 100%;
}

.case-study-url-link {
  display: flex;
  display: -webkit-flex;
  gap: 32px;
  align-items: center;
  margin-top: 32px;
  width: 100%;
}

.case-study {
  gap: 10px;
  text-transform: lowercase;
  align-items: center;
  color: var(--text-color);
  display: flex;
  display: -webkit-flex;
}

.url-link {
  gap: 10px;
  text-transform: lowercase;
  align-items: center;
  color: var(--text-color);
  display: flex;
  display: -webkit-flex;
}

.url-link:hover {
  text-decoration: underline;
}

.case-study:hover {
  text-decoration: underline;
}

a .link-red {
  color: var(--text-color);
  text-decoration: none;
}

.working-photo {
  width: 100%;
  max-width: 500px;
  filter: grayscale(100);
}

.working-photo:hover {
  width: 100%;
  max-width: 500px;
  filter: grayscale(0);
  transition: 0.5s;
  transition: 0.3s ease-in-out;
}

.working-photo-mobile {
  display: none;
}

.section-of-work {
  width: 100%;
}

.column-section-content {
  display: grid;
  grid-template-columns: 400px auto;
  grid-template-rows: auto;
  justify-content: space-between;
  width: 100%;
  max-width: 1700px;
  margin: auto;
  align-items: center;
  padding: 100px 0 0 0;
}

.column-section-content-work {
  display: grid;
  grid-template-columns: 400px auto;
  grid-template-rows: auto;
  justify-content: space-between;
  width: 100%;
  max-width: 1700px;
  margin: auto;
  align-items: center;
  padding: 30px 0 100px 0;
}

.see-more-with-icon {
  align-items: center;
  padding-top: -10px;
  display: grid;
  grid-template-columns: auto auto;
  gap: 15px;
  color: #989898;
  text-decoration: none;
}

.see-more-link {
  color: #989898;
  display: flex;
  display: -webkit-flex;
  gap: 10px;
  align-items: center;
}

.see-more-link:hover {
  color: #626262;
  text-decoration: underline;
  transition: 0.5s ease-in-out;
}

/*About Me Section*/
.red-body-section {
  background-color: var(--primary-color);
  color: #151515;
  padding: 100px 0 100px 0;
}

/*About*/
.about-section {
  padding: 100px 0 100px 0;
}

#about-text {
  font-size: min(max(4.19rem, 15vw), 6.25rem);
  line-height: min(max(10rem, 7vh), 6.5rem);
  font-weight: 900;
  text-transform: lowercase;
  margin: 0;
  word-break: keep-all;
  color: var(--base-color);
}

.click-here-about {
  z-index: 200;
}

.click-here-about:hover {
  text-decoration: underline;
  transition: 0.3s ease-in-out;
  transform: rotate(10deg);
  cursor: pointer;
}

.button-icon-button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  border-radius: 100px;
  width: 160px;
  padding: 16px 13px 16px 13px;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: var(--base-color);
  color: var(--primary-color);
}
.button-icon-button:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--text-color);
  border-radius: 10rem;
  z-index: -2;
}
.button-icon-button:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--base-color);
  fill: white;
  transition: all 0.3s;
  border-radius: 10rem;
  z-index: -1;
}
.button-icon-button:hover {
  color: var(--primary-color);
}
.button-icon-button:hover:before {
  width: 100%;
}

/*Testimonial*/
.testimonial-section {
  padding: 100px 0 100px 0;
}

.title-of-content {
  width: 100%;
  margin: auto;
  padding: 0 0 30px 0;
}

.header1-content {
  font-size: min(max(4.19rem, 15vw), 6.25rem);
  line-height: min(max(10rem, 7vh), 6.5rem);
  font-weight: 900;
  text-transform: lowercase;
  margin: 0;
  color: var(--base-color-variant);
  padding: 0 0 35px 0;
  margin: 0;
}

.content-h3 {
  font-size: min(max(2rem, 15vw), 2.13rem);
  line-height: min(max(2rem, 7vh), 3rem);
  font-weight: 700;
  text-transform: lowercase;
  margin: 0;
  color: var(--primary-color);
  margin-bottom: -100px;
  white-space: nowrap;
}

.card-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  -moz-column-gap: 30px;
       column-gap: 30px;
  display: grid;
  row-gap: 30px;
  padding: 10px 14px 10px 14px;
  margin: 0 0 130px 0;
}

.card {
  background-color: var(--base-color-variant);
  color: var(--text-color);
  display: grid;
  grid-template-rows: auto;
  row-gap: 20px;
  border: 4px solid var(--primary-color);
  border-radius: 10px;
  padding: 30px;
  align-items: first baseline;
}

.card-image-name {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  gap: 10px;
}

.name-title {
  display: grid;
  grid-template-rows: auto;
}

.testimonial-image-67px {
  width: 67px;
}

.social-button-linkedin {
  align-items: center;
  border-radius: 100px;
  border: 1px solid;
  padding: 9px 12px 9px 12px;
  gap: 10px;
  color: var(--text-color);
  font-size: 1.03rem;
  line-height: 1.09rem;
  background: var(--social-buttons);
  color: var(--social-text);
  border-color: var(--social-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.social-button-linkedin:hover {
  text-decoration: underline;
}

.link-blue {
  color: #0656F6;
}

.name-bolded, .title-regular {
  font-size: 1.03em;
  line-height: 24px;
}

.card-description {
  font-size: 1rem;
  line-height: 26px;
  color: var(--text-color);
}

.read-more-button {
  justify-content: center;
  margin: auto;
  display: grid;
}

/*Horizontal Marquee*/
.marquee-section {
  padding: 100px 0 100px 0;
  background-color: var(--accent-color);
}

.horizontal-marquee {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  overflow: hidden;
  background-color: var(--accent-color);
  color: var(--text-color);
}

.horizontal-marquee .marquee {
  white-space: nowrap;
  animation: marquee 60s linear infinite;
  max-width: none;
  font-size: min(max(4.19rem, 15vw), 6.25rem);
  line-height: min(max(10rem, 7vh), 6.5rem);
  font-weight: 900;
  text-transform: lowercase;
  margin: 0;
}

.marquee {
  font-size: min(max(4.19rem, 15vw), 6.25rem);
  line-height: min(max(10rem, 7vh), 6.5rem);
  font-weight: 900;
  text-transform: lowercase;
  margin: 0;
  padding: 20px 0;
}

@keyframes marquee {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}
/*Contact*/
.salmon-body-section {
  background-color: var(--accent-color);
  padding: 100px 0 100px 0;
}

.button-icon-button-contact {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  border-radius: 100px;
  width: 160px;
  padding: 16px 13px 16px 13px;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.button-icon-button-contact:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--text-color);
  border-radius: 10rem;
  z-index: -2;
}
.button-icon-button-contact:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--base-color);
  fill: white;
  transition: all 0.3s;
  border-radius: 10rem;
  z-index: -1;
}
.button-icon-button-contact:hover {
  color: var(--accent-color);
}
.button-icon-button-contact:hover:before {
  width: 100%;
}

.center {
  justify-content: center;
  margin: auto;
  text-align: center;
}

.center-text {
  font-size: min(max(2rem, 2vw), 1.46rem);
  line-height: min(max(2.1rem, 2vw), 2.75rem);
  color: var(--text-color);
  width: 100%;
  margin-bottom: 30px;
}

.contact-linkedin-link {
  color: var(--text-color);
  font-weight: 700;
}

.contact-linkedin-link:hover {
  color: var(--base-color);
  font-weight: 700;
  text-decoration: underline;
}

@media screen and (max-width: 950px) {
  .container-1700px-hero {
    width: 100%;
    max-width: 1700px;
    margin: auto;
    box-sizing: border-box;
    padding: 0 24px 0 24px;
    display: inline-block;
    align-items: center;
    overflow: hidden;
  }
  .column-section-hero {
    display: grid;
    grid-template-columns: auto;
    justify-content: center;
    text-align: center;
    width: 100%;
    margin: auto;
    align-items: center;
  }
  .header3-hero {
    font-size: min(max(2rem, 1vw), 2rem);
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
  }
  .header3-content {
    font-size: min(max(2rem, 1vw), 2rem);
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
  }
  .hero-text {
    width: 100%;
    margin-bottom: 30px;
  }
  #john-perez-illustration {
    display: none;
  }
  .mousescroll {
    display: none;
  }
  /*work*/
  .column-section-content {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 1700px;
    margin: auto;
    align-items: center;
    padding-bottom: 100px;
  }
  .column-section-hero {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 1700px;
    margin: auto;
    align-items: center;
  }
  .column-section-content-work {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 1700px;
    margin: auto;
    align-items: center;
    gap: 30px;
  }
  .arrow-hidden {
    display: none;
  }
  .see-more-with-icon {
    justify-content: center;
  }
  .working-photo {
    display: none;
  }
  .working-photo-mobile {
    display: block;
    width: 100%;
    justify-content: center;
    margin: auto;
  }
  .case-study-url-link {
    display: flex;
    display: -webkit-flex;
    gap: 32px;
    align-items: center;
    margin-top: 32px;
    width: 100%;
    justify-content: center;
  }
  /*testimonial*/
  .title-of-content {
    width: 100%;
    margin: auto;
    text-align: center;
  }
  .card-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 30px;
         column-gap: 30px;
    display: grid;
    row-gap: 30px;
    padding: 10px 14px 10px 14px;
    margin: 0 0 130px 0;
  }
  .card {
    text-align: center;
  }
  .card-image-name {
    display: block;
  }
  .content-h3 {
    font-size: min(max(1.5rem, 1vw), 1.7rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: -90px;
    white-space: nowrap;
  }
  /*contact*/
  .center-text {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 630px) {
  /*testimonial*/
  .card-columns {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    -moz-column-gap: 30px;
         column-gap: 30px;
    display: grid;
    row-gap: 55px;
    padding: 10px 14px 10px 14px;
    margin: 0;
  }
}
@media screen and (max-width: 550px) {
  .container-1100px {
    padding: 0;
  }
  .header1-hero {
    font-size: min(max(4.19rem, 1vw), 6.25rem);
    line-height: min(max(10rem, 7vh), 5rem);
    color: var(--text-color);
    white-space: nowrap;
  }
  .header1-content {
    font-size: min(max(4.19rem, 1vw), 6.25rem);
    line-height: min(max(10rem, 7vh), 5rem);
    color: var(--text-color);
  }
  .content-h3 {
    font-size: min(max(1.5rem, 2vw), 1.8rem);
    line-height: min(max(1.7rem, 1vw), 2rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: -60px;
    white-space: nowrap;
  }
  .first-column, .second-column {
    width: 95%;
    justify-self: center;
  }
  .column-section-hero {
    display: inline-block;
    text-align: center;
    width: 100%;
    justify-self: center;
    margin: auto;
    padding: 0;
    align-items: center;
  }
  /*Work*/
  .service-did {
    font-size: min(max(2rem, 2vw), 1.6rem);
    line-height: min(max(2.1rem, 7vh), 2.4rem);
    color: var(--primary-color);
  }
  /*About*/
  #about-text {
    font-size: min(max(4.19rem, 1vw), 6.25rem);
    line-height: min(max(10rem, 7vh), 5rem);
  }
  /*testimonial*/
  .card-columns {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    -moz-column-gap: 30px;
         column-gap: 30px;
    display: grid;
    row-gap: 55px;
    padding: 10px 14px 10px 14px;
    margin: 0;
  }
  /*footer*/
  footer, .copyright {
    justify-content: center;
    text-align: center;
  }
  .social-copyright {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 1700px;
    margin: auto;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .social-links-footer {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    gap: 10px;
  }
}
@media screen and (max-width: 400px) {
  .container-1700px {
    width: 100%;
    margin: auto;
    box-sizing: border-box;
    padding: 0 14px 0 14px;
    overflow: hidden;
  }
  /*Hero Section*/
  .header1-hero {
    font-size: min(max(4.19rem, 1vw), 2.8rem);
    line-height: min(max(10rem, 7vh), 3.2rem);
    color: var(--text-color);
  }
  .header3-hero {
    font-size: min(max(2rem, 1vw), 1.2rem);
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
  }
  .header3-content {
    font-size: min(max(2rem, 1vw), 1.2rem);
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
  }
  .hero-text {
    width: 100%;
    margin-bottom: 30px;
    font-size: min(max(2rem, 2vw), 1.2rem);
    line-height: min(max(2rem, 2vw), 1.9rem);
  }
  .secondary-body {
    overflow: hidden;
    width: 100%;
    display: block;
  }
  .case-study-url-link {
    display: grid;
    grid-template-columns: auto;
    gap: 10px;
    align-items: center;
    margin-top: 32px;
    width: 100%;
  }
  .service-did {
    font-size: min(max(1.5rem, 2vw), 1.6rem);
    line-height: min(max(2rem, 7vh), 1.5rem);
    color: var(--primary-color);
  }
  .company-name-work {
    display: block;
    font-size: min(max(1.8rem, 4vw), 2.1rem);
    line-height: min(max(2rem, 7vh), 2.4rem);
    width: 100%;
    padding: 0;
  }
  .description-of-company {
    font-size: 1rem;
    line-height: 1.6rem;
  }
  .case-study {
    font-size: 1rem;
  }
  .url-link {
    font-size: 1rem;
  }
  /*About*/
  #about-text {
    font-size: min(max(4.19rem, 1vw), 2.4rem);
    line-height: min(max(10rem, 7vh), 3rem);
  }
  /*contact*/
  .center-text {
    width: 100%;
    margin-bottom: 30px;
    font-size: min(max(2rem, 2vw), 1.2rem);
    line-height: min(max(2rem, 2vw), 1.9rem);
  }
}
@media screen and (max-width: 300px) {
  .column-section-hero {
    display: grid;
    grid-template-columns: auto;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 1700px;
    margin: auto;
    align-items: center;
  }
  .container-1700px-hero {
    display: inline-block;
    align-items: center;
    overflow: hidden;
    padding: 0 8px 0 8px;
  }
  .hero-text {
    width: 100%;
    margin-bottom: 30px;
  }
  .button-hero {
    color: var(--base-color);
    text-decoration: none;
    font-size: 20px;
  }
  #john-perez-illustration {
    display: none;
  }
  .mousescroll {
    display: none;
  }
}
/*Header Sizing*/
/*Button*/
@font-face {
  font-family: myFirstFont;
  src: url(Outfit-VariableFont_wght.ttf);
}
/*Content Sizing*/
::-moz-selection {
  background: var(--highlight);
  color: var(--base-color);
}
::selection {
  background: var(--highlight);
  color: var(--base-color);
}

:root {
  --base-color: #000000;
  --base-color-variant: #121212;
  --text-color:white;
  --secondary-color:#121212;
  --primary-color: #EA3434;
  --accent-color:#930300;
  --blur-color: #00000079;
  --fill: #EA3434;
  --card-color: rgb(216, 216, 216);
  --backdrop-filter: blur(50px);
  --button-change:salmon;
  --url-button: #FFD6D6;
  --url-text: #D01C1C;
  --case-button: #FFE2C9;
  --case-text:#D35100;
  --social-buttons: #fff4d3;
  --social-text: #bb6101;
  --highlight: salmon;
  --contact-button:#F8f8f8;
  --about-color:#AC0000;
  --animate:rgba(203, 203, 203, 0.649);
}

.lightmode {
  --base-color: #EFEFEF;
  --base-color-variant: white;
  --text-color:black;
  --secondary-color:white;
  --primary-color: #2CA6FF;
  --accent-color:#CEEEFF;
  --blur-color: #ffffffb8;
  --fill: #050064;
  --card-color: rgb(216, 216, 216);
  --backdrop-filter: blur(50px);
  --button-change:#070087;
  --url-button: #D0E4FF;
  --url-text: #0656F6;
  --case-button: #d1cfff;
  --case-text:#070087;
  --social-buttons: #a2ffcd;
  --social-text: #005a31;
  --highlight: rgb(98, 156, 255);
  --contact-button:#070087;
  --about-color:#001e59;
  --animate:rgba(67, 67, 67, 0.791);
}

body {
  background: var(--base-color);
  margin: 0;
  padding: 0;
  font-family: "Outfit", sans-serif;
  box-sizing: border-box;
  width: 100%;
}

h1 {
  font-size: min(max(4.19rem, 15vw), 6.25rem);
  line-height: min(max(10rem, 7vh), 6.5rem);
  font-weight: 900;
  text-transform: lowercase;
  margin: 0;
}

h2 {
  font-size: min(max(4rem, 15vw), 3rem);
  line-height: min(max(3.5rem, 7vh), 3.6rem);
  font-weight: 900;
  text-transform: lowercase;
  margin: 0;
}

h3 {
  font-size: min(max(2rem, 15vw), 2.13rem);
  line-height: min(max(2rem, 7vh), 3rem);
  font-weight: 700;
  text-transform: lowercase;
  margin: 0;
}

p {
  font-size: 1.25rem;
  line-height: 1.88rem;
}

.primary-red {
  color: var(--primary-color);
}

.accent-red {
  color: var(--accent-color);
}

a {
  text-decoration: none;
}

.container-1700px-hero {
  width: 100%;
  max-width: 1700px;
  margin: auto;
  box-sizing: border-box;
  align-items: center;
  display: flex;
  display: -webkit-flex;
  overflow: hidden;
}

.container-1700px {
  width: 100%;
  max-width: 1700px;
  margin: auto;
  box-sizing: border-box;
  padding: 0 24px 0 24px;
}

.container-1100px {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  box-sizing: border-box;
  padding: 0 20px 0 20px;
}

/*Hero Banner Section*/
.column-section-hero {
  display: grid;
  grid-template-columns: 400px auto;
  grid-template-rows: auto;
  justify-content: space-between;
  width: 100%;
  max-width: 1700px;
  margin: auto;
  align-items: center;
}

.first-column, .second-column {
  width: 100%;
}

.header3-hero {
  font-size: min(max(2rem, 15vw), 2.13rem);
  line-height: min(max(2rem, 7vh), 3rem);
  font-weight: 700;
  text-transform: lowercase;
  margin: 0;
  color: var(--primary-color);
  white-space: nowrap;
}

.header3-content {
  font-size: min(max(2rem, 15vw), 2.13rem);
  line-height: min(max(2rem, 7vh), 3rem);
  font-weight: 700;
  text-transform: lowercase;
  margin: 0;
  color: var(--primary-color);
  white-space: nowrap;
  margin: 0;
}

.header1-hero {
  font-size: min(max(4.19rem, 15vw), 6.25rem);
  line-height: min(max(10rem, 7vh), 6.5rem);
  font-weight: 900;
  text-transform: lowercase;
  margin: 0;
  color: var(--text-color);
  white-space: nowrap;
}

#header1-hero-margin {
  margin-bottom: 20px;
}

.hero-text {
  font-size: min(max(2rem, 2vw), 1.46rem);
  line-height: min(max(2.1rem, 2vw), 2.75rem);
  color: var(--text-color);
  width: 100%;
  margin-bottom: 30px;
}

.button-icon-button-hero {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  border-radius: 100px;
  width: 160px;
  padding: 16px 13px 16px 13px;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.button-icon-button-hero:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 10rem;
  z-index: -2;
}
.button-icon-button-hero:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--button-change);
  fill: white;
  transition: all 0.3s;
  border-radius: 10rem;
  z-index: -1;
}
.button-icon-button-hero:hover {
  color: var(--base-color-variant);
}
.button-icon-button-hero:hover:before {
  width: 100%;
}

.button-hero {
  color: var(--base-color);
  text-decoration: none;
  font-size: 24px;
}

#john-perez-illustration {
  width: 300px;
  filter: grayscale(100);
}

.mousescroll {
  transform: translate(0%, 50%);
  display: grid;
  animation: down 5s linear;
  transition: ease-out 0.3s;
  grid-template-columns: auto;
  justify-content: center;
  align-items: center;
  row-gap: 10px;
  padding: 0 0 0 24px;
}

.mouse-line {
  height: 200px;
  width: 1px;
  background-color: var(--text-color);
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-top: -100px;
  animation: down 2s linear;
  transition: ease-out 0.3s;
  animation-fill-mode: forwards;
}

@keyframes down {
  0% {
    height: 0px;
  }
  100% {
    height: 200px;
  }
}
.arrow-mouse {
  justify-content: center;
  align-items: center;
  margin: auto;
}

#arrow-1 svg {
  animation: air 1s ease-in-out infinite;
  animation-delay: 0.5s;
}

#arrow-2 svg {
  animation: air 1s ease-in-out infinite;
  animation-delay: 1s;
}

#arrow-3 svg {
  animation: air 1s ease-in-out infinite;
  animation-delay: 2s;
}

@keyframes arrow {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 50%;
  }
  70% {
    opacity: 100%;
  }
  100% {
    opacity: 0;
  }
}
/*Work*/
.secondary-body {
  padding: 100px 0 100px 0;
  background-color: var(--base-color-variant);
  color: var(--text-color);
  padding: 0;
  box-sizing: border-box;
  width: 100%;
}

/*Work*/
.secondary-body {
  padding: 100px 0 100px 0;
  background-color: var(--base-color-variant);
  color: var(--text-color);
  padding: 0;
  box-sizing: border-box;
  width: 100%;
}

.column-section-content {
  display: grid;
  grid-template-columns: 400px auto;
  grid-template-rows: auto;
  justify-content: space-between;
  width: 100%;
  max-width: 1700px;
  margin: auto;
  align-items: center;
}

.column-section-content-work {
  display: grid;
  grid-template-columns: 400px auto;
  grid-template-rows: auto;
  justify-content: space-between;
  width: 100%;
  max-width: 1700px;
  margin: auto;
  align-items: center;
  padding: 30px 0 100px 0;
}

.see-more-with-icon {
  align-items: center;
  display: grid;
  grid-template-columns: auto auto;
  gap: 15px;
  color: #989898;
  text-decoration: none;
}

.see-more-link {
  color: #989898;
  display: flex;
  display: -webkit-flex;
  gap: 10px;
  align-items: center;
}

.see-more-link:hover {
  color: #626262;
  text-decoration: underline;
  transition: 0.5s ease-in-out;
}

/*Company Grids*/
.section-of-work {
  width: 100%;
  max-width: 500px;
}

.arrow-hidden {
  display: flex;
  display: -webkit-flex;
  align-items: center;
}

.service-did {
  font-size: 1.5rem;
  line-height: min(max(2rem, 7vh), 2rem);
  text-transform: lowercase;
  margin: 0;
  color: var(--primary-color);
  padding-top: 10px;
}

.company-name-work {
  font-size: min(max(4rem, 15vw), 3rem);
  line-height: min(max(3.5rem, 7vh), 3.6rem);
  font-weight: 900;
  text-transform: lowercase;
  margin: 0;
  width: 100%;
}

.description-of-company {
  font-size: 1.25rem;
  line-height: 1.88rem;
  padding-top: 0px;
  width: 100%;
}

.case-study-url-link {
  display: flex;
  display: -webkit-flex;
  gap: 32px;
  align-items: center;
  margin-top: 32px;
  width: 100%;
}

.case-study {
  gap: 10px;
  text-transform: lowercase;
  align-items: center;
  color: var(--text-color);
  display: flex;
  display: -webkit-flex;
}

.url-link {
  gap: 10px;
  text-transform: lowercase;
  align-items: center;
  color: var(--text-color);
  display: flex;
  display: -webkit-flex;
}

.url-link:hover {
  text-decoration: underline;
}

.case-study:hover {
  text-decoration: underline;
}

a .link-red {
  color: var(--text-color);
  text-decoration: none;
}

.working-photo {
  width: 100%;
  max-width: 500px;
  filter: grayscale(100);
}

.working-photo:hover {
  width: 100%;
  max-width: 500px;
  filter: grayscale(0);
  transition: 0.5s;
  transition: 0.3s ease-in-out;
}

.working-photo-mobile {
  display: none;
}

.section-of-work {
  width: 100%;
}

.column-section-content {
  display: grid;
  grid-template-columns: 400px auto;
  grid-template-rows: auto;
  justify-content: space-between;
  width: 100%;
  max-width: 1700px;
  margin: auto;
  align-items: center;
  padding: 100px 0 0 0;
}

.column-section-content-work {
  display: grid;
  grid-template-columns: 400px auto;
  grid-template-rows: auto;
  justify-content: space-between;
  width: 100%;
  max-width: 1700px;
  margin: auto;
  align-items: center;
  padding: 30px 0 100px 0;
}

.see-more-with-icon {
  align-items: center;
  padding-top: -10px;
  display: grid;
  grid-template-columns: auto auto;
  gap: 15px;
  color: #989898;
  text-decoration: none;
}

.see-more-link {
  color: #989898;
  display: flex;
  display: -webkit-flex;
  gap: 10px;
  align-items: center;
}

.see-more-link:hover {
  color: #626262;
  text-decoration: underline;
  transition: 0.5s ease-in-out;
}

/*About Me Section*/
.red-body-section {
  background-color: var(--primary-color);
  color: #151515;
  padding: 100px 0 100px 0;
}

/*About*/
.about-section {
  padding: 100px 0 100px 0;
}

#about-text {
  font-size: min(max(4.19rem, 15vw), 6.25rem);
  line-height: min(max(10rem, 7vh), 6.5rem);
  font-weight: 900;
  text-transform: lowercase;
  margin: 0;
  word-break: keep-all;
  color: var(--base-color);
}

.click-here-about {
  z-index: 200;
}

.click-here-about:hover {
  text-decoration: underline;
  transition: 0.3s ease-in-out;
  transform: rotate(10deg);
  cursor: pointer;
}

.button-icon-button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  border-radius: 100px;
  width: 160px;
  padding: 16px 13px 16px 13px;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: var(--base-color);
  color: var(--primary-color);
}
.button-icon-button:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--text-color);
  border-radius: 10rem;
  z-index: -2;
}
.button-icon-button:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--base-color);
  fill: white;
  transition: all 0.3s;
  border-radius: 10rem;
  z-index: -1;
}
.button-icon-button:hover {
  color: var(--primary-color);
}
.button-icon-button:hover:before {
  width: 100%;
}

/*Testimonial*/
.testimonial-section {
  padding: 100px 0 100px 0;
}

.title-of-content {
  width: 100%;
  margin: auto;
  padding: 0 0 30px 0;
}

.header1-content {
  font-size: min(max(4.19rem, 15vw), 6.25rem);
  line-height: min(max(10rem, 7vh), 6.5rem);
  font-weight: 900;
  text-transform: lowercase;
  margin: 0;
  color: var(--base-color-variant);
  padding: 0 0 35px 0;
  margin: 0;
}

.content-h3 {
  font-size: min(max(2rem, 15vw), 2.13rem);
  line-height: min(max(2rem, 7vh), 3rem);
  font-weight: 700;
  text-transform: lowercase;
  margin: 0;
  color: var(--primary-color);
  margin-bottom: -100px;
  white-space: nowrap;
}

.card-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  -moz-column-gap: 30px;
       column-gap: 30px;
  display: grid;
  row-gap: 30px;
  padding: 10px 14px 10px 14px;
  margin: 0 0 130px 0;
}

.card {
  background-color: var(--base-color-variant);
  color: var(--text-color);
  display: grid;
  grid-template-rows: auto;
  row-gap: 20px;
  border: 4px solid var(--primary-color);
  border-radius: 10px;
  padding: 30px;
  align-items: first baseline;
}

.card-image-name {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  gap: 10px;
}

.name-title {
  display: grid;
  grid-template-rows: auto;
}

.testimonial-image-67px {
  width: 67px;
}

.social-button-linkedin {
  align-items: center;
  border-radius: 100px;
  border: 1px solid;
  padding: 9px 12px 9px 12px;
  gap: 10px;
  color: var(--text-color);
  font-size: 1.03rem;
  line-height: 1.09rem;
  background: var(--social-buttons);
  color: var(--social-text);
  border-color: var(--social-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.social-button-linkedin:hover {
  text-decoration: underline;
}

.link-blue {
  color: #0656F6;
}

.name-bolded, .title-regular {
  font-size: 1.03em;
  line-height: 24px;
}

.card-description {
  font-size: 1rem;
  line-height: 26px;
  color: var(--text-color);
}

.read-more-button {
  justify-content: center;
  margin: auto;
  display: grid;
}

/*Horizontal Marquee*/
.marquee-section {
  padding: 100px 0 100px 0;
  background-color: var(--accent-color);
}

.horizontal-marquee {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  overflow: hidden;
  background-color: var(--accent-color);
  color: var(--text-color);
}

.horizontal-marquee .marquee {
  white-space: nowrap;
  animation: marquee 60s linear infinite;
  max-width: none;
  font-size: min(max(4.19rem, 15vw), 6.25rem);
  line-height: min(max(10rem, 7vh), 6.5rem);
  font-weight: 900;
  text-transform: lowercase;
  margin: 0;
}

.marquee {
  font-size: min(max(4.19rem, 15vw), 6.25rem);
  line-height: min(max(10rem, 7vh), 6.5rem);
  font-weight: 900;
  text-transform: lowercase;
  margin: 0;
  padding: 20px 0;
}

@keyframes marquee {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}
/*Contact*/
.salmon-body-section {
  background-color: var(--accent-color);
  padding: 100px 0 100px 0;
}

.button-icon-button-contact {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  border-radius: 100px;
  width: 160px;
  padding: 16px 13px 16px 13px;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.button-icon-button-contact:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--text-color);
  border-radius: 10rem;
  z-index: -2;
}
.button-icon-button-contact:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--base-color);
  fill: white;
  transition: all 0.3s;
  border-radius: 10rem;
  z-index: -1;
}
.button-icon-button-contact:hover {
  color: var(--accent-color);
}
.button-icon-button-contact:hover:before {
  width: 100%;
}

.center {
  justify-content: center;
  margin: auto;
  text-align: center;
}

.center-text {
  font-size: min(max(2rem, 2vw), 1.46rem);
  line-height: min(max(2.1rem, 2vw), 2.75rem);
  color: var(--text-color);
  width: 100%;
  margin-bottom: 30px;
}

.contact-linkedin-link {
  color: var(--text-color);
  font-weight: 700;
}

.contact-linkedin-link:hover {
  color: var(--base-color);
  font-weight: 700;
  text-decoration: underline;
}

@media screen and (max-width: 950px) {
  .container-1700px-hero {
    width: 100%;
    max-width: 1700px;
    margin: auto;
    box-sizing: border-box;
    padding: 0 24px 0 24px;
    display: inline-block;
    align-items: center;
    overflow: hidden;
  }
  .column-section-hero {
    display: grid;
    grid-template-columns: auto;
    justify-content: center;
    text-align: center;
    width: 100%;
    margin: auto;
    align-items: center;
  }
  .header3-hero {
    font-size: min(max(2rem, 1vw), 2rem);
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
  }
  .header3-content {
    font-size: min(max(2rem, 1vw), 2rem);
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
  }
  .hero-text {
    width: 100%;
    margin-bottom: 30px;
  }
  #john-perez-illustration {
    display: none;
  }
  .mousescroll {
    display: none;
  }
  /*work*/
  .column-section-content {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 1700px;
    margin: auto;
    align-items: center;
    padding-bottom: 100px;
  }
  .column-section-hero {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 1700px;
    margin: auto;
    align-items: center;
  }
  .column-section-content-work {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 1700px;
    margin: auto;
    align-items: center;
    gap: 30px;
  }
  .arrow-hidden {
    display: none;
  }
  .see-more-with-icon {
    justify-content: center;
  }
  .working-photo {
    display: none;
  }
  .working-photo-mobile {
    display: block;
    width: 100%;
    justify-content: center;
    margin: auto;
  }
  .case-study-url-link {
    display: flex;
    display: -webkit-flex;
    gap: 32px;
    align-items: center;
    margin-top: 32px;
    width: 100%;
    justify-content: center;
  }
  /*testimonial*/
  .title-of-content {
    width: 100%;
    margin: auto;
    text-align: center;
  }
  .card-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 30px;
         column-gap: 30px;
    display: grid;
    row-gap: 30px;
    padding: 10px 14px 10px 14px;
    margin: 0 0 130px 0;
  }
  .card {
    text-align: center;
  }
  .card-image-name {
    display: block;
  }
  .content-h3 {
    font-size: min(max(1.5rem, 1vw), 1.7rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: -90px;
    white-space: nowrap;
  }
  /*contact*/
  .center-text {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 630px) {
  /*testimonial*/
  .card-columns {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    -moz-column-gap: 30px;
         column-gap: 30px;
    display: grid;
    row-gap: 55px;
    padding: 10px 14px 10px 14px;
    margin: 0;
  }
}
@media screen and (max-width: 550px) {
  .container-1100px {
    padding: 0;
  }
  .header1-hero {
    font-size: min(max(4.19rem, 1vw), 6.25rem);
    line-height: min(max(10rem, 7vh), 5rem);
    color: var(--text-color);
    white-space: nowrap;
  }
  .header1-content {
    font-size: min(max(4.19rem, 1vw), 6.25rem);
    line-height: min(max(10rem, 7vh), 5rem);
    color: var(--text-color);
  }
  .content-h3 {
    font-size: min(max(1.5rem, 2vw), 1.8rem);
    line-height: min(max(1.7rem, 1vw), 2rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: -60px;
    white-space: nowrap;
  }
  .first-column, .second-column {
    width: 95%;
    justify-self: center;
  }
  .column-section-hero {
    display: inline-block;
    text-align: center;
    width: 100%;
    justify-self: center;
    margin: auto;
    padding: 0;
    align-items: center;
  }
  /*Work*/
  .service-did {
    font-size: min(max(2rem, 2vw), 1.6rem);
    line-height: min(max(2.1rem, 7vh), 2.4rem);
    color: var(--primary-color);
  }
  /*About*/
  #about-text {
    font-size: min(max(4.19rem, 1vw), 6.25rem);
    line-height: min(max(10rem, 7vh), 5rem);
  }
  /*testimonial*/
  .card-columns {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    -moz-column-gap: 30px;
         column-gap: 30px;
    display: grid;
    row-gap: 55px;
    padding: 10px 14px 10px 14px;
    margin: 0;
  }
  /*footer*/
  footer, .copyright {
    justify-content: center;
    text-align: center;
  }
  .social-copyright {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 1700px;
    margin: auto;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .social-links-footer {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    gap: 10px;
  }
}
@media screen and (max-width: 400px) {
  .container-1700px {
    width: 100%;
    margin: auto;
    box-sizing: border-box;
    padding: 0 14px 0 14px;
    overflow: hidden;
  }
  /*Hero Section*/
  .header1-hero {
    font-size: min(max(4.19rem, 1vw), 2.8rem);
    line-height: min(max(10rem, 7vh), 3.2rem);
    color: var(--text-color);
  }
  .header3-hero {
    font-size: min(max(2rem, 1vw), 1.2rem);
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
  }
  .header3-content {
    font-size: min(max(2rem, 1vw), 1.2rem);
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
  }
  .hero-text {
    width: 100%;
    margin-bottom: 30px;
    font-size: min(max(2rem, 2vw), 1.2rem);
    line-height: min(max(2rem, 2vw), 1.9rem);
  }
  .secondary-body {
    overflow: hidden;
    width: 100%;
    display: block;
  }
  .case-study-url-link {
    display: grid;
    grid-template-columns: auto;
    gap: 10px;
    align-items: center;
    margin-top: 32px;
    width: 100%;
  }
  .service-did {
    font-size: min(max(1.5rem, 2vw), 1.6rem);
    line-height: min(max(2rem, 7vh), 1.5rem);
    color: var(--primary-color);
  }
  .company-name-work {
    display: block;
    font-size: min(max(1.8rem, 4vw), 2.1rem);
    line-height: min(max(2rem, 7vh), 2.4rem);
    width: 100%;
    padding: 0;
  }
  .description-of-company {
    font-size: 1rem;
    line-height: 1.6rem;
  }
  .case-study {
    font-size: 1rem;
  }
  .url-link {
    font-size: 1rem;
  }
  /*About*/
  #about-text {
    font-size: min(max(4.19rem, 1vw), 2.4rem);
    line-height: min(max(10rem, 7vh), 3rem);
  }
  /*contact*/
  .center-text {
    width: 100%;
    margin-bottom: 30px;
    font-size: min(max(2rem, 2vw), 1.2rem);
    line-height: min(max(2rem, 2vw), 1.9rem);
  }
}
@media screen and (max-width: 300px) {
  .column-section-hero {
    display: grid;
    grid-template-columns: auto;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 1700px;
    margin: auto;
    align-items: center;
  }
  .container-1700px-hero {
    display: inline-block;
    align-items: center;
    overflow: hidden;
    padding: 0 8px 0 8px;
  }
  .hero-text {
    width: 100%;
    margin-bottom: 30px;
  }
  .button-hero {
    color: var(--base-color);
    text-decoration: none;
    font-size: 20px;
  }
  #john-perez-illustration {
    display: none;
  }
  .mousescroll {
    display: none;
  }
}
.no-scroll {
  overflow-y: hidden;
}

/*Navigation*/
.navigation-bar {
  width: 100%;
  margin: auto;
  padding: 0px;
  position: relative;
  top: 0;
  z-index: 99;
}

.logo-toggle-menu {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  width: 100%;
  max-width: 1700px;
  margin: auto;
  align-items: center;
  padding: 14px 20px 0 20px;
  box-sizing: border-box;
}

.toggle-menu {
  display: flex;
  gap: 20px;
  align-items: center;
}

.toggle {
  position: relative;
  z-index: 1;
}

.menu {
  position: fixed;
  transform: translateY(-100%);
  height: 100vh;
  transition: transform 0.6s;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: var(--blur-color);
  -webkit-backdrop-filter: var(--backdrop-filter);
          backdrop-filter: var(--backdrop-filter);
  color: white;
  list-style: none;
}

.anchorLinksMobile {
  display: block;
  font-size: min(max(3em, 5vw), 3.5em);
  color: var(--text-color);
  text-decoration: none;
  text-align: left;
  margin: 1.5rem 3rem;
  font-weight: 700;
}

.anchorLinksMobile:hover {
  color: var(--primary-color);
  text-decoration: line-through;
  transition: ease-in-out 0.5s;
}

.social-links svg path {
  fill: var(--primary-color);
  width: min(max(1em, 5vw), 3em);
}

.social-media-icons {
  display: flex;
  display: -ms-flexbox;
  margin: 3rem 3rem;
  gap: 20px;
  text-align: left;
}

.menu-title-section {
  color: var(--text-color);
  font-size: 18px;
  font-weight: 700;
}

.menu-title-section:hover {
  color: var(--primary-color);
  transition: ease-in-out 0.7s;
}

.menu-title-section:active {
  color: var(--primary-color);
  transition: ease-in-out 0.7s;
}

.hamburger {
  z-index: 100;
  top: 2rem;
  right: 1rem;
  padding: 14px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.closeIcon {
  display: none;
}

.showMenu {
  transform: translateY(0);
}

/*Toggle Switch*/
#light-switch {
  height: 50px;
  width: 50px;
  padding: 0;
  border-radius: 50%;
  border: none;
  background-color: transparent;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

#light-switch svg {
  fill: var(--text-color);
}

#light-switch svg:hover {
  fill: var(--primary-color);
  transition: 0.5s;
  transform: rotate(360deg);
}

#light-switch svg:active {
  fill: var(--primary-color);
  transition: 0.5s;
}

#light-switch svg:last-child {
  display: none;
}

.lightmode #light-switch svg:first-child {
  display: none;
}

.lightmode #light-switch svg:last-child {
  display: block;
}

.logo-menu-nav svg path {
  fill: var(--primary-color);
  width: 100%;
}

.logo-menu-nav svg {
  width: 70px;
}

.logo-menu-nav svg path:hover {
  fill: var(--button-change);
  transition: ease-in-out 0.7s;
}

/*Loading Screen*/
.intro {
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: var(--blur-color);
  -webkit-backdrop-filter: var(--backdrop-filter);
          backdrop-filter: var(--backdrop-filter);
  transition: 0.5s;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid var(--base-color-variant);
  border-bottom-color: var(--primary-color);
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.logo-header {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.logo-container svg {
  width: 100%;
  box-sizing: border-box;
  padding: 20px;
  fill: var(--base-color);
  animation: color 4s ease;
}

@keyframes color {
  0% {
    fill: var(--base-color-variant);
  }
  100% {
    fill: var(--base-color);
  }
}
.logo {
  display: block;
  bottom: -20px;
  width: 400px;
  opacity: 0;
}

.logo.active {
  bottom: 0;
  opacity: 1;
  transition: ease-in-out 2s;
}

.logo.fade {
  bottom: 150px;
  opacity: 0;
  transition: ease-in-out 8s;
}

/*Footer*/
footer {
  width: 100%;
  height: 128px;
  display: flex;
  align-items: center;
  background-color: var(--base-color);
  border-top: 1px solid rgba(165, 165, 165, 0.234);
  border-bottom: 1px solid rgba(165, 165, 165, 0.234);
}

.social-copyright {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  width: 100%;
  max-width: 1700px;
  margin: auto;
  align-items: center;
}

.social-links-footer {
  display: inline-flex;
  gap: 20px;
}

.copyright {
  color: var(--text-color);
  text-transform: lowercase;
  font-weight: 400;
  text-align: left;
}

@media screen and (max-width: 550px) {
  .anchorLinksMobile {
    margin: 1.5rem 1.6rem;
  }
  .social-media-icons {
    margin: 5rem 1.6rem;
  }
  /*footer*/
  footer, .copyright {
    justify-content: center;
    text-align: center;
    padding: 30px 0;
  }
  .social-copyright {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 1700px;
    margin: auto;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .social-links-footer {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    gap: 10px;
  }
}
@media screen and (max-width: 300px) {
  /*Navigation*/
  .navigation-bar {
    width: 100%;
    margin: auto;
    padding: 0px;
    position: relative;
    top: 0;
    z-index: 99;
  }
  .logo-toggle-menu {
    display: flex;
    display: -ms-flexbox;
    justify-content: space-between;
    width: 100%;
    max-width: 1700px;
    margin: auto;
    align-items: center;
    padding: 14px 20px 0 20px;
    box-sizing: border-box;
  }
  .toggle-menu {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  .toggle {
    position: relative;
    z-index: 1;
  }
  .menu {
    position: fixed;
    transform: translateY(-100%);
    transition: transform 0.6s;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: var(--blur-color);
    -webkit-backdrop-filter: var(--backdrop-filter);
            backdrop-filter: var(--backdrop-filter);
    color: white;
    list-style: none;
  }
  #logo-mobile {
    display: none;
  }
  #anchlorLink-mobile-300px {
    margin-top: 90px;
  }
  .anchorLinksMobile:hover {
    color: var(--primary-color);
    text-decoration: line-through;
    transition: ease-in-out 0.5s;
  }
  .social-links svg path {
    fill: var(--primary-color);
    width: min(max(1em, 5vw), 3em);
  }
  .social-media-icons {
    display: flex;
    display: -ms-flexbox;
    margin: 2rem 1rem;
    gap: 20px;
    text-align: left;
  }
  .menu-title-section {
    color: var(--text-color);
    font-size: 12px;
    font-weight: 700;
  }
  .menu-title-section:hover {
    color: var(--primary-color);
    transition: ease-in-out 0.7s;
  }
  .menu-title-section:active {
    color: var(--primary-color);
    transition: ease-in-out 0.7s;
  }
  .hamburger {
    z-index: 100;
    top: 2rem;
    right: 1rem;
    padding: 14px;
    background: transparent;
    border: 0;
    cursor: pointer;
  }
  .closeIcon {
    display: none;
  }
  .showMenu {
    transform: translateY(0);
  }
  /*Toggle Switch*/
  #light-switch {
    height: 50px;
    width: 50px;
    padding: 0;
    border-radius: 50%;
    border: none;
    background-color: transparent;
    display: flex;
    display: -ms-flexbox;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  #light-switch svg {
    fill: var(--base-color-variant);
    width: 60%;
  }
  #light-switch svg:hover {
    fill: var(--primary-color);
    transition: 0.5s;
    transform: rotate(360deg);
  }
  #light-switch svg:active {
    fill: var(--primary-color);
    transition: 0.5s;
  }
  #light-switch svg:last-child {
    display: none;
  }
  .lightmode #light-switch svg:first-child {
    display: none;
  }
  .lightmode #light-switch svg:last-child {
    display: block;
  }
  .logo-menu-nav svg path {
    fill: var(--primary-color);
  }
  .logo-menu-nav svg {
    width: 80px;
  }
  .logo-menu-nav svg path:hover {
    fill: var(--accent-color);
    transition: ease-in-out 0.7s;
  }
}
.row-content-hero {
  text-align: center;
  color: var(--base-color-variant);
  height: 550px;
  position: relative;
  padding: 35px 0;
}

.contained-svg svg {
  bottom: 0;
  left: 0;
  width: 100%;
  right: 0;
  z-index: 9;
  justify-content: center;
  align-items: center;
  display: grid;
  position: absolute;
  overflow: hidden;
  height: auto;
}

.secondary-body-pages {
  background-color: var(--base-color-variant);
  color: var(--text-color);
  padding: 0;
  padding: 100px 0 100px 0;
}

.work-card {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  -moz-column-gap: 30px;
       column-gap: 30px;
  display: grid;
  row-gap: 30px;
  padding: 10px 14px 10px 14px;
  margin: 0 0 130px 0;
  margin: 0;
}

.image-work, .project {
  width: 100%;
}

.case-study-url-link-work {
  display: flex;
  display: -webkit-flex;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
  width: 100%;
  justify-content: space-between;
}

.working-photo-work {
  width: 100%;
  filter: grayscale(100);
}

.working-photo-work:hover {
  width: 100%;
  filter: grayscale(0);
  transition: 0.5s;
}

.link-orange-work {
  color: var(--case-text);
}

.link-orange-work:hover {
  color: var(--case-text);
  text-decoration: underline;
}

.link-red-work {
  color: var(--text-color);
}

.link-red-work:hover {
  color: var(--url-text);
  text-decoration: underline;
}

/*about section*/
.about-padding {
  padding: 20px 0;
}

.column-section-content-about {
  -moz-columns: 2 400px;
       columns: 2 400px;
  gap: 30px;
}

.image-width {
  width: 100%;
}

.three-grid {
  display: flex;
  display: -webkit-flex;
  gap: 100px;
  justify-content: center;
  width: 100%;
  padding: 0;
}

/*process section*/
.process-section {
  padding: 100px 0 100px 0;
}

.process-text {
  font-size: 1.25rem;
  line-height: 1.88rem;
  color: var(--text-color);
  margin: 0;
}

#hover-underline:hover {
  text-decoration: underline;
}

.process-header-two {
  color: var(--text-color);
}

.process-text-bold {
  font-size: min(max(2rem, 15vw), 2.13rem);
  line-height: min(max(3rem, 7vh), 2.75rem);
  color: var(--base-color-variant);
}

.container-svg svg {
  width: 100%;
  height: auto;
}

.process-container {
  padding: 20px 0 80px 0;
}

.svg-process-descr {
  padding-top: 30px;
  display: grid;
  grid-template-columns: auto;
  gap: 26px;
}

/*tools*/
.tools-section {
  padding: 100px 0 100px 0;
  background-color: var(--accent-color);
}

/*Horizontal Marquee*/
.marquee-section {
  padding: 100px 0 100px 0;
  background-color: var(--accent-color);
}

.horizontal-carousel {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  overflow: hidden;
  background-color: var(--accent-color);
  color: var(--base-color);
  gap: 1rem;
  padding: 10px 0;
}

.horizontal-carousel .carousel {
  white-space: nowrap;
  animation: carousel 60s linear infinite;
  max-width: none;
  padding: 20px 0;
  font-size: min(max(4.19rem, 15vw), 6.25rem);
  line-height: min(max(10rem, 7vh), 6.5rem);
  font-weight: 900;
  text-transform: lowercase;
  margin: 0;
}

.carousel {
  padding: 20px 0;
}

@keyframes carousel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translatex(-1000%);
  }
}
.gray {
  filter: grayscale(100);
}

.gray:hover {
  filter: grayscale(0);
  transition: 0.5s;
}

/*Contact Form*/
.form-row {
  width: 100%;
  max-width: 1100px;
}

.form-design {
  padding: 10px 10px;
  font-size: 16px;
  font-family: "Outfit", sans-serif;
  width: 100%;
  max-width: 1100px;
  background-color: transparent;
  border: none;
  color: var(--text-color);
  border-bottom: 2px solid var(--base-color-variant);
  margin-top: 10px;
  box-sizing: border-box;
}

.col {
  display: inline-grid;
  gap: 10px;
  width: 100%;
}

.submit {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  border-radius: 100px;
  width: 160px;
  padding: 16px 13px 16px 13px;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  font-size: 20px;
  border: none;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Outfit", sans-serif;
}
.submit:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 10rem;
  z-index: -2;
}
.submit:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--button-change);
  fill: white;
  transition: all 0.3s;
  border-radius: 10rem;
  z-index: -1;
}
.submit:hover {
  color: var(--base-color-variant);
}
.submit:hover:before {
  width: 100%;
}

@media screen and (max-width: 950px) {
  .work-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 30px;
         column-gap: 30px;
    display: grid;
    row-gap: 30px;
    padding: 10px 14px 10px 14px;
    margin: 0 0 130px 0;
  }
  .process-text-bold {
    font-size: min(max(2rem, 1vw), 2rem);
    font-weight: 700;
  }
}
@media screen and (max-width: 690px) {
  .work-card {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    -moz-column-gap: 30px;
         column-gap: 30px;
    display: grid;
    row-gap: 55px;
    padding: 10px 14px 10px 14px;
    margin: 0;
  }
  .secondary-body-pages {
    padding: 50px 0;
  }
  .column-section-content-about {
    -moz-columns: 2 400px;
         columns: 2 400px;
    gap: 30px;
    display: grid;
    grid-template-rows: auto;
    row-gap: 30px;
  }
  .about-h2 {
    display: block;
    font-size: min(max(2.2rem, 5vw), 2.5rem);
    line-height: min(max(2.8rem, 6vh), 3.1rem);
    width: 100%;
    margin: 0;
  }
  .process-text {
    font-size: 1.1rem;
    line-height: 2rem;
  }
  .contained-svg svg {
    padding: 0 10px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 400px) {
  .secondary-body {
    overflow: hidden;
    width: 100%;
    display: block;
  }
  .case-study-url-link-work {
    display: grid;
    grid-template-columns: auto;
    gap: 10px;
    align-items: center;
    width: 100%;
  }
  .service-did {
    font-size: min(max(1.6rem, 1vw), 2rem);
    line-height: min(max(2rem, 7vh), 2rem);
    color: var(--primary-color);
    margin-bottom: -30px;
  }
  .company-name-work {
    display: block;
    white-space: nowrap;
    font-size: min(max(3rem, 4vw), 2.5rem);
    line-height: min(max(3rem, 7vh), 3.5rem);
  }
  .carousel {
    padding: 20px 0;
    width: 100px;
  }
  /*about*/
  .three-grid {
    display: grid;
    grid-template-columns: auto;
    gap: 60px;
    width: 100%;
    justify-content: center;
  }
  .process-text {
    font-size: 1rem;
    line-height: 1.6rem;
  }
  .process-text-bold {
    font-size: min(max(2rem, 1vw), 1.2rem);
    line-height: min(max(2rem, 1vw), 1.7rem);
    font-weight: 700;
  }
  .row-content-hero {
    text-align: center;
    color: var(--base-color-variant);
    height: 300px;
    position: relative;
  }
  .about-h2 {
    display: block;
    font-size: min(max(2.1rem, 5vw), 2.3rem);
    line-height: min(max(2.7rem, 6vh), 2.8rem);
    width: 100%;
    margin: 0;
  }
  .process-text-bold {
    font-size: min(max(2rem, 5vw), 2.1rem);
    line-height: min(max(3rem, 7vh), 2.6rem);
    color: var(--base-color-variant);
  }
}/*# sourceMappingURL=work.css.map */