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

html,
body {
  height: 100%;
  width: 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background-color: #121212;
  font-size: clamp(14px, 1.5vw, 18px);
}

main {
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
}
main nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  height: 5rem;
  width: 100%;
  background-color: #121212;
}
main nav .navcon {
  display: flex;
  align-items: center;
  font-size: 1rem;
  gap: 1rem;
}
main nav .navcon a {
  text-decoration: none;
  color: white;
  padding: 1rem;
  background-color: #1E1E1E;
  border-radius: 0.5rem;
  text-transform: uppercase;
  display: none;
  transition: all 0.2s ease;
}
main nav .navcon a span {
  background-color: #CCBB62;
  color: black;
  padding: 0.1rem 0.5rem;
  border-radius: 50%;
  margin: 0.3rem;
}
main nav .navcon a:hover {
  scale: 1.2;
}
main nav .navcon a:nth-child(6) {
  display: block;
}
main nav i {
  padding: 0.5rem 0.7rem;
  background-color: #1E1E1E;
  border-radius: 0.5rem;
  color: white;
  font-size: 2rem;
}
main .hero {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background-color: #121212;
  padding: 0 1rem 1rem 1rem;
  width: 100%;
}
main .hero .hero-img {
  width: 100%;
}
main .hero .hero-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  border-radius: 1rem;
  height: 100%;
}
main .hero .hero-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 4rem;
  padding: 2rem;
  border-radius: 1rem;
  width: 100%;
  background-color: #1E1E1E;
}
main .hero .hero-info .tag {
  color: #DDDBD7;
  font-size: 0.6rem;
}
main .hero .hero-info .tag-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 1.2rem;
}
main .hero .hero-info .tag-info h1 {
  width: 90%;
  text-transform: uppercase;
  font-size: 2.5rem;
  color: #DDDBD7;
  line-height: 1.2;
  font-weight: 100;
}
main .hero .hero-info .tag-info p {
  color: #959491;
  font-size: 1.2rem;
  line-height: 1.5;
}
main .hero .hero-info .tag-info .story {
  display: flex;
  gap: 1rem;
  align-items: center;
}
main .hero .hero-info .tag-info .story i {
  color: #959491;
  background-color: #1E1E1E;
  border: 1px solid white;
  padding: 0.6rem;
  border-radius: 50%;
  font-size: 1.2rem;
}
main .hero .hero-info .tag-info .story a {
  text-decoration: none;
  color: #959491;
}
main .studio-status {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 2rem 1rem;
}
main .studio-status .first, main .studio-status .second {
  width: 100%;
  display: flex;
  justify-content: space-around;
}
main .studio-status .elem {
  text-align: center;
}
main .studio-status .elem h3 {
  font-size: 0.9rem;
  color: #959491;
  text-transform: uppercase;
}
main .studio-status .elem p {
  color: white;
  font-size: 3rem;
}
main .philosophy {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 1rem 1rem 1rem;
  width: 100%;
}
main .philosophy .philosophy-img {
  width: 100%;
}
main .philosophy .philosophy-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  border-radius: 1rem;
  height: 100%;
}
main .philosophy .philosophy-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 4rem;
  padding: 2rem;
  border-radius: 1rem;
  width: 100%;
  background-color: #1E1E1E;
}
main .philosophy .philosophy-info .tag {
  color: #DDDBD7;
  font-size: 0.6rem;
  text-transform: uppercase;
}
main .philosophy .philosophy-info .tag-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 1.2rem;
}
main .philosophy .philosophy-info .tag-info h1 {
  width: 90%;
  text-transform: uppercase;
  font-size: 2.5rem;
  color: #DDDBD7;
  line-height: 1.2;
  font-weight: 100;
}
main .philosophy .philosophy-info .tag-info p {
  color: #959491;
  font-size: 1.2rem;
  line-height: 1.5;
}
main .vision {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 1rem 1rem 1rem;
  width: 100%;
}
main .vision .vision-img {
  width: 100%;
}
main .vision .vision-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  border-radius: 1rem;
  height: 100%;
}
main .vision .vision-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 4rem;
  padding: 2rem;
  border-radius: 1rem;
  width: 100%;
  background-color: #1E1E1E;
}
main .vision .vision-info .tag {
  color: #DDDBD7;
  font-size: 0.6rem;
  text-transform: uppercase;
}
main .vision .vision-info .tag-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 1.2rem;
}
main .vision .vision-info .tag-info h1 {
  width: 90%;
  text-transform: uppercase;
  font-size: 2.5rem;
  color: #DDDBD7;
  line-height: 1.2;
  font-weight: 100;
}
main .vision .vision-info .tag-info p {
  color: #959491;
  font-size: 1.2rem;
  line-height: 1.5;
}
main .team {
  display: flex;
  justify-content: space-between;
  padding: 2.5rem;
  width: 100%;
}
main .team h1 {
  text-transform: uppercase;
  font-size: 2rem;
  color: white;
}
main .team .job {
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 1rem;
  display: none;
  color: white;
}
main .team .job i {
  color: #959491;
  background-color: #1E1E1E;
  border: 1px solid white;
  padding: 0.6rem;
  border-radius: 50%;
  font-size: 1.2rem;
}
main .team-grid {
  width: 100%;
  gap: 1rem;
  padding: 0 1rem 1rem 1rem;
  display: grid;
  grid-template-rows: repeat(3, minmax(150px, 1fr)) minmax(100px, 0.5fr) minmax(300px, 0.5fr);
  grid-template-areas: "first-member" "second-member" "third-member" "fourth-member" "fifth-member";
}
main .team-grid .first-member {
  grid-area: first-member;
  position: relative;
}
main .team-grid .first-member img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  border-radius: 1rem;
  height: 100%;
}
main .team-grid .first-member .connect {
  position: absolute;
  top: 5%;
  right: 5%;
  display: flex;
  gap: 1rem;
}
main .team-grid .first-member .connect i {
  color: white;
  font-size: 1.5rem;
  border: 1px solid white;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.2s ease-in;
}
main .team-grid .first-member .connect i:hover {
  scale: 1.3;
  cursor: pointer;
}
main .team-grid .first-member .name {
  margin: 1.2rem;
  border: 1px solid #959491;
  overflow: hidden;
  width: 90%;
  position: absolute;
  top: 71%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 1rem;
  border-radius: 0.5rem;
  gap: 5rem;
}
main .team-grid .first-member .name h1 {
  text-align: center;
  font-size: 1rem;
  text-transform: uppercase;
  color: white;
}
main .team-grid .second-member {
  position: relative;
  grid-area: second-member;
}
main .team-grid .second-member img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  border-radius: 1rem;
  height: 100%;
}
main .team-grid .second-member .connect {
  position: absolute;
  top: 5%;
  right: 5%;
  display: flex;
  gap: 1rem;
}
main .team-grid .second-member .connect i {
  color: white;
  font-size: 1.5rem;
  border: 1px solid white;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.2s ease-in;
}
main .team-grid .second-member .connect i:hover {
  scale: 1.3;
  cursor: pointer;
}
main .team-grid .second-member .name {
  margin: 1.2rem;
  border: 1px solid #959491;
  overflow: hidden;
  width: 90%;
  position: absolute;
  top: 71%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 1rem;
  border-radius: 0.5rem;
  gap: 5rem;
}
main .team-grid .second-member .name h1 {
  text-align: center;
  font-size: 1rem;
  text-transform: uppercase;
  color: white;
}
main .team-grid .third-member {
  position: relative;
  grid-area: third-member;
}
main .team-grid .third-member img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  border-radius: 1rem;
  height: 100%;
}
main .team-grid .third-member .connect {
  position: absolute;
  top: 5%;
  right: 5%;
  display: flex;
  gap: 1rem;
}
main .team-grid .third-member .connect i {
  color: white;
  font-size: 1.5rem;
  border: 1px solid white;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.2s ease-in;
}
main .team-grid .third-member .connect i:hover {
  scale: 1.3;
  cursor: pointer;
}
main .team-grid .third-member .name {
  margin: 1.2rem;
  border: 1px solid #959491;
  overflow: hidden;
  width: 90%;
  position: absolute;
  top: 71%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 1rem;
  border-radius: 0.5rem;
  gap: 5rem;
}
main .team-grid .third-member .name h1 {
  text-align: center;
  font-size: 1rem;
  text-transform: uppercase;
  color: white;
}
main .team-grid .fourth-member {
  grid-area: fourth-member;
  border-radius: 1rem;
}
main .team-grid .fourth-member img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  border-radius: 1rem;
  height: 100%;
}
main .team-grid .fifth-member {
  padding: 2rem;
  grid-area: fifth-member;
  background-color: #1E1E1E;
  border-radius: 1rem;
}
main .team-grid .fifth-member .tag {
  color: #DDDBD7;
  font-size: 0.6rem;
  text-transform: uppercase;
}
main .team-grid .fifth-member .tag-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 1.2rem;
}
main .team-grid .fifth-member .tag-info h1 {
  width: 90%;
  text-transform: uppercase;
  font-size: 2.5rem;
  color: #DDDBD7;
  line-height: 1.2;
  font-weight: 100;
}
main .team-grid .fifth-member .tag-info p {
  color: #959491;
  font-size: 1.2rem;
  line-height: 1.5;
}
main .team-grid .fifth-member .tag-info .job {
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
}
main .team-grid .fifth-member .tag-info .job i {
  color: #959491;
  background-color: #1E1E1E;
  border: 1px solid white;
  padding: 0.6rem;
  border-radius: 50%;
  font-size: 1.2rem;
}
main .team-grid .fifth-member .job:hover i {
  rotate: 45deg;
}
main .contact {
  max-width: 100%;
  border-radius: 1rem;
  padding: 0 1rem 1rem 1rem;
  background-color: #CCBB62;
  padding: 2rem;
  margin: 0 1rem;
}
main .contact .tag {
  color: #121212;
  font-size: 1rem;
  text-transform: uppercase;
}
main .contact .contact-info {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  background-color: #CCBB62;
}
main .contact .contact-info h1 {
  font-size: 2.5rem;
  font-weight: 300;
  width: 85%;
  text-transform: uppercase;
  color: #121212;
}
main .contact .contact-info .bt button {
  width: 100%;
  padding: 1rem;
  border-radius: 0.5rem;
  background-color: #121212;
  color: white;
  border: none;
  text-transform: uppercase;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
main .footer {
  width: 100%;
  padding: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(100px, 0.3fr) minmax(200px, 1fr) auto;
  grid-template-areas: "alvy-connect" "pages" "me";
}
main .footer .alvy-connect {
  background-color: #1E1E1E;
  grid-area: alvy-connect;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  border-radius: 1rem;
}
main .footer .alvy-connect h1 {
  color: #959491;
  font-size: 1rem;
  text-transform: uppercase;
}
main .footer .alvy-connect .connect {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1rem;
}
main .footer .alvy-connect .connect i {
  background-color: #1E1E1E;
  color: white;
  border: 1px solid white;
  border-radius: 50%;
  padding: 0.7rem;
  transition: all 0.3s ease;
}
main .footer .alvy-connect .connect i:hover {
  cursor: pointer;
  scale: 1.3;
}
main .footer .pages {
  padding: 1.5rem;
  border-radius: 1rem;
  background-color: #1E1E1E;
  grid-area: pages;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
main .footer .pages .first-page, main .footer .pages .middle-page, main .footer .pages .bottom-page {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
main .footer .pages .first-page h1, main .footer .pages .middle-page h1, main .footer .pages .bottom-page h1 {
  font-size: 1.4rem;
  text-transform: uppercase;
  color: white;
}
main .footer .pages .first-page a, main .footer .pages .middle-page a, main .footer .pages .bottom-page a {
  text-decoration: none;
  color: #959491;
  font-size: 1.2rem;
  text-transform: uppercase;
  transition: all 0.2s ease;
}
main .footer .pages .first-page a:hover, main .footer .pages .middle-page a:hover, main .footer .pages .bottom-page a:hover {
  scale: 1.2;
}
main .footer .pages .first-page a:nth-child(7) {
  background-color: #CCBB62;
  padding: 1rem;
  border-radius: 0.5rem;
  color: #1E1E1E;
}
main .footer .me {
  border-radius: 1rem;
  background-color: #1E1E1E;
  grid-area: me;
  padding: 2rem;
  text-transform: uppercase;
}
main .footer .me h1 {
  font-size: 1.5rem;
  text-align: center;
  color: #959491;
}
main .footer .me h1 a {
  color: white;
  font-size: 1rem;
  text-transform: uppercase;
}
main .footer .me .up {
  padding-top: 2rem;
  text-align: center;
  color: #959491;
}
main .footer .me .up i {
  background-color: transparent;
  color: white;
  padding: 0.5rem;
  border-radius: 50%;
  border: 1px solid #959491;
}
@media (min-width: 750px) {
  main .team-grid {
    width: 100%;
    gap: 1rem;
    padding: 0 1rem 1rem 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 0.3fr) minmax(100px, 0.7fr) auto;
    grid-template-areas: "first-member second-member" "third-member third-member" "fourth-member fourth-member" "fifth-member fifth-member";
  }
  main .team-grid .first-member {
    grid-area: first-member;
  }
  main .team-grid .first-member img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    border-radius: 1rem;
    height: 100%;
  }
  main .team-grid .second-member {
    grid-area: second-member;
  }
  main .team-grid .second-member img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    border-radius: 1rem;
    height: 100%;
  }
  main .team-grid .third-member {
    grid-area: third-member;
  }
  main .team-grid .third-member img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    border-radius: 1rem;
    height: 100%;
  }
  main .contact .contact-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  main .contact .contact-info h1 {
    font-size: 4rem;
    width: 60%;
  }
}
@media (min-width: 900px) {
  main nav .navcon a {
    display: block;
  }
  main nav .navcon a:nth-child(7) {
    background-color: #CEBD63;
    color: black;
  }
  main nav i {
    display: none;
  }
  main .hero {
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }
  main .hero .hero-img {
    width: 50%;
  }
  main .hero .hero-info {
    width: 50%;
    padding: 5rem;
  }
  main .hero .hero-info .tag-info h1 {
    font-size: 4rem;
    font-weight: 300;
    line-height: 1;
  }
  main .studio-status {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  main .philosophy {
    display: flex;
    flex-direction: row-reverse;
    gap: 1rem;
  }
  main .philosophy .philosophy-img {
    width: 50%;
  }
  main .philosophy .philosophy-info {
    width: 50%;
    padding: 3rem;
  }
  main .philosophy .philosophy-info .tag-info h1 {
    width: 100%;
    font-size: 3rem;
    font-weight: 300;
    line-height: 1;
  }
  main .philosophy .philosophy-info .tag-info p {
    font-size: 1rem;
    text-align: justify;
  }
  main .vision {
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }
  main .vision .vision-img {
    width: 50%;
  }
  main .vision .vision-info {
    width: 50%;
    padding: 3rem;
  }
  main .vision .vision-info .tag-info h1 {
    width: 100%;
    font-size: 3rem;
    font-weight: 300;
    line-height: 1;
  }
  main .vision .vision-info .tag-info p {
    font-size: 1rem;
    text-align: justify;
  }
  main .team .job {
    display: flex;
  }
  main .team-grid {
    width: 100%;
    gap: 1rem;
    padding: 0 1rem 1rem 1rem;
    display: grid;
    grid-template-columns: 35% 15% 15% auto;
    grid-template-rows: repeat(1, 0.5fr);
    grid-template-areas: "first-member second-member second-member third-member" "fourth-member fourth-member fifth-member fifth-member";
  }
  main .team-grid .first-member {
    grid-area: first-member;
  }
  main .team-grid .first-member img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    border-radius: 1rem;
    height: 100%;
  }
  main .team-grid .second-member {
    grid-area: second-member;
  }
  main .team-grid .second-member img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    border-radius: 1rem;
    height: 100%;
  }
  main .team-grid .third-member {
    grid-area: third-member;
  }
  main .team-grid .third-member img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    border-radius: 1rem;
    height: 100%;
  }
  main .team-grid .fourth-member {
    grid-area: fourth-member;
  }
  main .team-grid .fifth-member {
    grid-area: fifth-member;
  }
  main .footer {
    padding: 1rem 1rem 5rem 1rem;
    display: grid;
    grid-template-columns: 20% 1fr;
    grid-template-rows: 80% 1fr;
    grid-template-areas: "alvy-connect pages" "alvy-connect me";
  }
  main .footer .alvy-connect {
    grid-area: alvy-connect;
  }
  main .footer .pages {
    grid-area: pages;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
  main .footer .me {
    grid-area: me;
  }
}/*# sourceMappingURL=style.css.map */