body {
  margin: 1.5em;
  font-family: "Poppins", sans-serif;
  color: #039191;
  background-color: rgb(15, 15, 15);
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
  font-size: 1.3rem;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/background_studio7.png");
  background-size: cover;
  background-position-y: 20%;
  width: 100%;
  min-height: 6.5em;
  z-index: -1;
}

.logo {
  color: #039191;
  font-size: 1.7rem;
  font-weight: bold;
}

nav {
  position: fixed;
  right: 0;
  top: 0;
  background: rgb(0, 0, 0);
  height: 100vh;
  width: 50%;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.5s ease-in-out;
}
nav ul {
  list-style-type: none;
  padding: 0;
  margin-top: 8em;
}
nav ul a {
  color: #039191;
  padding: 0.75em 2em;
  display: block;
}
nav ul a:hover {
  background: rgb(58, 57, 57);
}
nav .close {
  float: right;
  margin: 2em;
  width: 2.5em;
}

header {
  color: #039191;
  display: flex;
  justify-content: space-between;
}
header svg {
  width: 2.3em;
  margin-top: -0.6em;
  cursor: pointer;
  stroke: #039191;
}
header svg path {
  fill: #039191;
}

section.hero {
  padding-bottom: 1em;
  padding-top: 3em;
  text-align: center;
  display: block;
  justify-content: center;
  animation: moveDown 1s ease-in-out forwards;
  transition-delay: 1.25s;
  transition-delay: 1.25s;
}
section.hero .hero-text {
  width: 100%;
}
section.hero .hero-text .email-text {
  padding-bottom: 3em;
}
section.hero h1 {
  font-size: 1.5rem;
  filter: drop-shadow(0 0 0.1rem #039191);
  padding-top: 1em;
  padding-bottom: 1em;
}
section.hero a, section.hero a:hover, section.hero a:focus, section.hero a:active {
  text-decoration: underline;
  color: inherit;
  font-size: 1rem;
}
section.hero .hero-cover-image .hero-image {
  border-radius: 1.9em;
  filter: drop-shadow(0 0 0.1rem #039191);
  width: 100%;
  margin-bottom: 1em;
}
section.hero .hero-cover-image .follow-text {
  opacity: 0;
}
section.hero .hero-cover-image .icons {
  opacity: 0;
  display: flex;
  justify-content: center;
}
section.hero .hero-cover-image .icons .icon {
  transition: transform 0.5s;
}
section.hero .hero-cover-image .icons .icon:hover {
  transform: translateY(-5px);
}
section.hero .hero-cover-image .icons img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 1.5em;
  opacity: 0;
}

.cta-btns {
  display: grid;
}

.about-name {
  font-size: 1.8rem;
  text-align: center;
}

.about-title {
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 2em;
  text-align: center;
}

.more-info {
  background: rgb(145, 27, 27);
}
.more-info img {
  filter: drop-shadow(0 0 0.1rem #039191);
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 4em;
}
.more-info .desc {
  margin-bottom: 4em;
  font-size: 1rem;
}
.more-info a, .more-info a:hover, .more-info a:focus, .more-info a:active {
  text-decoration: underline;
  color: inherit;
  font-size: 1rem;
}

.caption {
  text-align: center;
  font-size: 0.8em;
  color: #313131;
  margin-bottom: 4em;
}

.subhead {
  margin: 5em 0;
  font-size: 1.4rem;
  color: #2c2b2a;
  background: rgb(214, 237, 238);
  filter: drop-shadow(0 0 1.25rem #039191);
}

.open-nav {
  transform: translateX(0%);
}

footer {
  padding-top: 3em;
  display: flex;
  justify-content: center;
}
footer .icons {
  display: flex;
  justify-content: center;
}
footer .icon {
  transition: transform 0.5s;
}
footer .icon:hover {
  transform: translateY(-5px);
}
footer img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 1.5em;
}
footer h6 {
  text-align: center;
}

@media only screen and (min-width: 680px) {
  body {
    margin: 1.5em 4em;
    font-family: "Poppins", sans-serif;
    color: #039191;
    background-color: rgb(15, 15, 15);
  }
  .hero-img {
    position: absolute;
    top: 0;
    left: 0;
    background: url("../img/background_studio7.png");
    background-size: cover;
    background-position-x: 50%;
    background-position-y: 15%;
    width: 100%;
    min-height: 6.5em;
    z-index: -1;
  }
  .about-name {
    font-size: 2.8rem;
    text-align: center;
  }
  .about-title {
    font-weight: bold;
    font-size: 2.25rem;
    margin-bottom: 2em;
    text-align: center;
  }
  .more-info img {
    filter: drop-shadow(0 0 1.25rem #039191);
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 4em;
  }
  .more-info .desc {
    margin-bottom: 4em;
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 960px) {
  .wrapper {
    margin: 0 auto;
    margin-bottom: 200px;
  }
  .menu {
    display: none;
  }
  nav {
    background-color: #5b9e0f;
    transform: translateX(0);
    position: unset;
    display: block;
    width: auto;
    height: auto;
    background: none;
  }
  nav svg.close {
    display: none;
  }
  nav ul {
    display: flex;
    margin: 0px;
  }
  nav ul a {
    color: #039191;
    padding: 0.5em 1.5em;
    font-size: 1.2rem;
  }
  nav ul a:hover {
    background: none;
    text-decoration: underline;
  }
  .logo {
    color: #039191;
  }
  section.hero {
    display: flex;
    padding-bottom: 1em;
    padding-top: 3em;
    justify-content: center;
    animation: moveDown 1s ease-in-out forwards;
    transition-delay: 1.25s;
    transition-delay: 1.25s;
  }
  section.hero .hero-text {
    width: 35%;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
  }
  section.hero .hero-text h1 {
    text-align: center;
  }
  section.hero .hero-text .email-text {
    text-align: center;
    padding-bottom: 3em;
  }
  section.hero .hero-cover-image {
    width: 50%;
  }
  section.hero .hero-cover-image .hero-image {
    border-radius: 1.9em;
    filter: drop-shadow(0 0 0.1rem #039191);
    width: 100%;
  }
  section.hero .hero-cover-image .icons {
    display: flex;
    justify-content: center;
  }
  section.hero .hero-cover-image .icons .icon {
    transition: transform 0.5s;
  }
  section.hero .hero-cover-image .icons .icon:hover {
    transform: translateY(-5px);
  }
  section.hero .hero-cover-image .icons img {
    -o-object-fit: contain;
       object-fit: contain;
    height: 2.5em;
  }
  section.hero h1 {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 0.1rem #039191);
    padding-bottom: 1.5em;
  }
  section.hero a, section.hero a:hover, section.hero a:focus, section.hero a:active {
    text-decoration: underline;
    color: inherit;
    font-size: 1rem;
  }
  .feature {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 3em;
    margin-bottom: 4em;
  }
  .feature img {
    margin-bottom: 0;
    filter: drop-shadow(0 0 1.25rem #039191);
    width: 100%;
  }
  .feature .content {
    text-align: left;
    width: 100%;
  }
  .feature .desc {
    max-width: 600px;
    font-size: 1.5rem;
  }
  .feature a, .feature a:hover, .feature a:focus, .feature a:active {
    font-size: 1.5rem;
  }
  footer {
    display: flex;
  }
  footer img {
    justify-content: right;
    -o-object-fit: contain;
       object-fit: contain;
    height: 1.5em;
  }
  footer h6 {
    justify-content: left;
    text-align: center;
  }
}
@media only screen and (min-width: 1400px) {
  .wrapper {
    margin: 0 auto;
  }
  .feature {
    width: 1400px;
    gap: 1;
  }
  .desc {
    max-width: 800px;
  }
}
@keyframes introLoad {
  from {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  to {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes moveArrow {
  from {
    transform: translateY(-30px);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes moveDown {
  from {
    transform: translateY(-100px);
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes moveIn {
  from {
    transform: translateX(-120px);
  }
  to {
    transform: translateX(0);
  }
}/*# sourceMappingURL=contact.css.map */