/*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;
  }
}/*# sourceMappingURL=style.css.map */