@-webkit-keyframes rotateX {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(720deg);
            transform: rotate(720deg);
  }
}
@keyframes rotateX {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(720deg);
            transform: rotate(720deg);
  }
}
@-webkit-keyframes rotateXR {
  0% {
    background-color: transparent;
    -webkit-transform: rotate(720deg);
            transform: rotate(720deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    background-color: transparent;
  }
}
@keyframes rotateXR {
  0% {
    background-color: transparent;
    -webkit-transform: rotate(720deg);
            transform: rotate(720deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    background-color: transparent;
  }
}
@-webkit-keyframes letterFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes letterFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes tracking-in-contract-bck {
  0% {
    letter-spacing: 1em;
    -webkit-transform: translateZ(400px);
            transform: translateZ(400px);
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes tracking-in-contract-bck {
  0% {
    letter-spacing: 1em;
    -webkit-transform: translateZ(400px);
            transform: translateZ(400px);
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    opacity: 1;
  }
}
@-webkit-keyframes tracking-in-contract-bck-bottom {
  0% {
    letter-spacing: 1em;
    -webkit-transform: translateZ(400px) translateY(300px);
            transform: translateZ(400px) translateY(300px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0) translateY(0);
            transform: translateZ(0) translateY(0);
    opacity: 1;
  }
}
@keyframes tracking-in-contract-bck-bottom {
  0% {
    letter-spacing: 1em;
    -webkit-transform: translateZ(400px) translateY(300px);
            transform: translateZ(400px) translateY(300px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0) translateY(0);
            transform: translateZ(0) translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@media only screen and (max-width: 768px) {
  body > header {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  body > header.scrolled {
    background-color: var(--color-black);
  }
  body > header > a {
    width: 40%;
    height: 70%;
  }
  body > header > i {
    position: relative;
    z-index: 100;
    text-align: unset;
    border-radius: 40px;
    width: 30px;
    height: 7px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    background-color: var(--color-muted-gray);
  }
  body > header > i::after, body > header > i::before {
    position: absolute;
    content: "";
    border-radius: 40px;
    width: 100%;
    height: 100%;
    background-color: var(--color-muted-gray);
    -webkit-transition: 0.3s ease-in-out 1s;
    transition: 0.3s ease-in-out 1s;
  }
  body > header > i::before {
    margin-top: -10px;
  }
  body > header > i::after {
    margin-top: 10px;
  }
  body > header > i.open {
    background: transparent;
    -webkit-animation: rotateX 1s 0.5s;
            animation: rotateX 1s 0.5s;
    -webkit-transition-delay: 0ms;
            transition-delay: 0ms;
  }
  body > header > i.open::before {
    margin-top: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition-delay: 0ms;
            transition-delay: 0ms;
  }
  body > header > i.open::after {
    margin-top: 0;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-transition-delay: 0ms;
            transition-delay: 0ms;
  }
  body > header > i.close {
    -webkit-animation: rotateXR 1s;
            animation: rotateXR 1s;
  }
  body > header > nav {
    position: absolute;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transition: 1s ease-in-out 0s;
    transition: 1s ease-in-out 0s;
    width: 0;
    height: 0;
    top: 0;
    right: 0;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
  }
  body > header > nav > ul {
    visibility: hidden;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    padding-top: var(--header_height);
  }
  body > header > nav > ul:nth-child(1) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  body > header > nav > ul:nth-child(1) > li {
    padding: 3vh 0;
    padding-left: 10%;
    border-bottom: 1px solid var(--color-light-gray);
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
  }
  body > header > nav > ul:nth-child(1) > li.active {
    border-left: 10px solid var(--color-soft-rose);
  }
  body > header > nav > ul:nth-child(1) > li > a {
    display: block;
    width: 100%;
  }
  body > header > nav > ul:nth-child(2) {
    padding-top: 5vh;
  }
  body > header > nav > ul:nth-child(2) > li {
    background-color: var(--color-light-muted-gray);
    padding: 2vw;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  body > header > nav.open {
    width: 250px;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition-delay: 0.3s;
            transition-delay: 0.3s;
  }
  body > header > nav.open > ul {
    visibility: visible;
  }
  body > header > nav > button {
    margin: 3vh 11vw;
  }
  body > main > section#Landing {
    height: 400px;
  }
  body > main > section#Landing > article > svg {
    width: 16rem;
  }
  body > main > section#Landing > article > button {
    padding: 2% 4%;
  }
  body > main > section#Feature > article > div {
    width: calc(100% - 40px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  body > main > section#About {
    grid-template-columns: 1fr;
  }
  body > main > section#About > div {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  body > main > section#About > div > h4 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  body > main > section#Services > div {
    margin-top: 20px;
    grid-template-rows: repeat(auto-fill, 1fr);
  }
  body > main > section#Email {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  body > main > section#Email > form {
    width: 100%;
  }
  body > main > section#Email > form > input:nth-of-type(1) {
    width: calc(100% - 10px);
  }
  body > main > section#Email > form > input:nth-of-type(2) {
    width: calc(100% - 10px);
  }
  body > footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  body > footer > section {
    width: 100%;
  }
}
@media only screen and (min-width: 769px) {
  body > header.scrolled {
    background-color: var(--color-black);
  }
  body > header > a {
    width: 15%;
    height: 70%;
  }
  body > header > i {
    display: none;
  }
  body > header > nav {
    width: 85%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  body > header > nav > ul {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  body > header > nav > ul > li {
    margin-right: 4vw;
    font-size: 20px;
  }
  body > header > nav > ul > li > a {
    position: relative;
  }
  body > header > nav > ul > li.active > a::before {
    content: "";
    position: absolute;
    width: 70%;
    height: 100%;
    bottom: -3px;
    left: 0;
    border-bottom: 3px solid var(--color-soft-rose);
  }
  body > header > nav > button {
    height: 100%;
  }
  body > main > section#Landing {
    height: 100vh;
  }
  body > main > section#Landing > article > svg {
    width: 26rem;
  }
  body > main > section#Landing > article > p {
    font-size: 2em;
  }
  body > main > section#Landing > article > button {
    padding: 1% 2%;
  }
  body > main > section#About {
    grid-template-columns: auto 1fr 1fr;
  }
  body > main > section#About > h2 {
    grid-column: 1/2;
  }
  body > main > section#About > p:nth-of-type(odd) {
    grid-column: 2/3;
  }
  body > main > section#About > p:nth-of-type(even) {
    grid-column: 3/4;
  }
  body > main > section#About > div {
    grid-column: 3/4;
  }
  body > main > section#Services > div {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
  body > main > section#Email {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  body > main > section#Email > form {
    width: 50%;
  }
  body > main > section#Email > form > input:nth-of-type(1) {
    width: calc(50% - 10px);
  }
  body > main > section#Email > form > input:nth-of-type(2) {
    width: calc(50% - 10px);
  }
  body > footer {
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
  }
  body > footer > section {
    width: 40%;
  }
  body > footer > div {
    position: absolute;
    bottom: 30px;
    left: var(--body_padding);
    margin-top: -30px;
  }
}