@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");
html {
  box-sizing: border-box;
  font-size: 100%;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background: #eaeaea;
}

.main-border {
  border: solid 18px #f7f7f7 !important;
  height: 100%;
}

.bor-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  border-top: solid 18px #f7f7f7 !important;
}

.bor-bot {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: solid 18px #f7f7f7 !important;
}

.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

a {
  text-decoration: none;
}

p {
  font-size: 1.2rem;
}

h1 {
  color: #404040;
  font-size: 6.5rem;
  padding: none;
  margin: 0;
}

h2 {
  color: #404040;
  font-size: 4.5rem;
  padding: none;
  margin: 0;
}

h3 {
  color: #404040;
  font-size: 2.5rem;
  font-weight: 400;
}

h4 {
  color: #404040;
  font-size: 1.75rem;
  font-weight: 400;
  padding: 2rem 0 0 0;
  margin: 0;
}

.hide {
  display: none !important;
}

.noShow {
  opacity: 0;
}

.flex-column-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

.hidden {
  display: none;
  visibility: hidden;
  width: 0;
  height: 0;
  opacity: 0;
}

/* For WebKit browsers */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background-color: #f7f7f7;
}

::-webkit-scrollbar-thumb {
  background-color: #42acc7;
  border-radius: 10px;
}

/* Hide the menu by default */
.ham-nav-container {
  position: fixed;
  overflow: hidden;
  overflow-y: hidden;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  background-color: #eaeaea;
  background-image: radial-gradient(at 80% 100%, #eaeaea 0px, transparent 50%), radial-gradient(at 0% 0%, #42acc7 0px, transparent 50%);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.ham-nav-container .ham-link-container {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  text-align: right;
  word-break: break-all;
  padding: 2rem 0 8rem 0;
  height: 100vh;
  width: 90%;
  font-size: 10vh;
  font-weight: 600;
}
.ham-nav-container .ham-link-container a {
  color: #404040;
  text-decoration: none;
}
@media only screen and (max-width: 478px) {
  .ham-nav-container .ham-link-container a {
    font-size: 5rem;
  }
}
@media only screen and (max-width: 375px) {
  .ham-nav-container .ham-link-container a {
    font-size: 4.5rem;
  }
}
@media only screen and (max-width: 330px) {
  .ham-nav-container .ham-link-container a {
    font-size: 20vw;
  }
}
@media only screen and (max-width: 230px) {
  .ham-nav-container .ham-link-container a {
    font-size: 25vw;
  }
}
@media only screen and (max-width: 180px) {
  .ham-nav-container .ham-link-container a {
    font-size: 32vw;
  }
}
.ham-nav-container .exit-btn {
  color: #42acc7 !important;
  filter: drop-shadow(0px 5px 9px rgba(240, 240, 240, 0.158));
  cursor: pointer;
}

/* Add a dark overlay when the menu is active */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.7;
  z-index: 10;
}

.banner-bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: -2;
  background: rgb(231, 231, 231);
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-wrapper {
  max-width: 1066px;
  margin: 0 auto;
}

header {
  margin: 25px 0 30px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 300ms ease;
  z-index: 10;
}

nav {
  width: 85%;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  background: #f7f7f7;
  filter: drop-shadow(0px 5px 12px rgba(0, 0, 0, 0.05));
  border-radius: 61px;
  animation: fade 0.8s ease normal forwards;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.left-nav {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: space-between;
}

.middle-nav {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-container {
  height: 68px;
  width: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.abs-logo-container {
  position: fixed;
  top: 4rem;
  left: 2.25rem;
  width: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.my-logo-link {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  width: 46px;
}

.nav-links {
  max-width: 339px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 1.1rem;
}

.nav-link {
  color: #404040;
  font-weight: 500;
}
.nav-link:hover {
  color: #a15d2a;
}

.hamburger-container {
  width: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hamburger-container .hb-link {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hamburger-container .hb-target {
  width: 50%;
}

.abs-hamburger-container {
  position: fixed;
  top: 4rem;
  right: 2.25rem;
  width: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.abs-hamburger-container .hb-link {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.abs-hamburger-container .hb-target {
  width: 50%;
}

.banner-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 372px;
}
@media only screen and (max-width: 768px) {
  .banner-container {
    margin-bottom: 0;
  }
}

.bc-outer-right-container {
  width: 100%;
  display: flex;
  justify-content: right;
  align-items: center;
}

.bc-inner-right-container {
  width: 156px;
  height: 156px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bc-right-target {
  width: 100%;
}

.developer-container {
  width: 100%;
  height: 40rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  margin-top: 8rem;
}
@media only screen and (max-width: 768px) {
  .developer-container {
    margin-top: 0;
    height: 100vh;
  }
}

.me-name {
  margin: 0 0 0.5rem;
  padding: 0;
}

.huge {
  font-size: 7.5rem !important;
}

.me-name h1 {
  text-align: center;
  line-height: 0.9;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}
@media only screen and (max-width: 1024px) {
  .me-name h1 {
    font-size: 10vw !important;
  }
}

.developer {
  color: #42acc7;
  font-weight: 900 !important;
  animation: devAnm 1s ease 0s 1 normal forwards;
}

@keyframes devAnm {
  0% {
    opacity: 0;
    transform: translateX(-250px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.developer h1 {
  letter-spacing: -0.03em;
  color: #42acc7;
  line-height: 0.75;
  margin-bottom: 1.25rem;
}
@media only screen and (max-width: 866px) {
  .developer h1 {
    font-size: 10vw;
  }
}
@media only screen and (max-width: 682px) {
  .developer h1 {
    font-size: 4rem;
  }
}
@media only screen and (max-width: 559px) {
  .developer h1 {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 437px) {
  .developer h1 {
    font-size: 2rem;
  }
}

.jd {
  width: 70%;
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 1024px) {
  .jd {
    width: 90%;
  }
}
@media only screen and (max-width: 375px) {
  .jd {
    width: 100%;
  }
}

.jd p {
  text-align: center;
  font-size: 1.2rem;
}
@media only screen and (max-width: 425px) {
  .jd p {
    font-size: 1rem;
  }
}

.vp-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 1.25rem 0 0 0;
}
@media only screen and (max-width: 320px) {
  .vp-container {
    justify-content: center;
  }
}

@media only screen and (max-width: 425px) {
  .vp-container a {
    font-size: 1rem;
  }
}

.vp-target {
  background: #42acc7;
  color: #f7f7f7;
  font-size: 1.2rem;
  max-width: 186px;
  width: 100%;
  height: 47px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  filter: drop-shadow(0px 5px 9px rgba(0, 0, 0, 0.14));
}

.btn-animation:hover {
  background: #a15d2a;
  transition: all 0.2s ease-in-out;
}

.down-container {
  position: absolute;
  width: 100%;
  height: 61px;
  top: 760px;
  left: 0;
  transform: translate(-50, -50);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 425px) {
  .down-container {
    display: none;
    opacity: 0;
    width: 0;
    visibility: hidden;
  }
}

.down-svg {
  position: relative;
}

.down-anm {
  animation: down-anm 1.5s linear infinite both;
}
@keyframes down-anm {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0);
  }
}
.bc-outer-left-container {
  width: 100%;
  display: flex;
  justify-content: left;
  align-items: center;
}

.bc-inner-left-container {
  width: 156px;
  height: 156px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bc-left-target {
  width: 100%;
  transform: rotate(180deg);
}

.social-container {
  position: fixed;
  bottom: 18px;
  left: 2.25rem;
  width: 48px;
  height: 228px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.linkedin-container,
.github-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-link {
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-line {
  width: 2px;
  height: 130px;
  border-radius: 50px;
  background: #42acc7;
}

.divider-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 186px;
}

.divider-inner-container {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.line-container {
  max-width: 157px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.me-container {
  width: 100%;
  padding: 0 1rem;
  margin-bottom: 372px;
}
@media only screen and (max-width: 425px) {
  .me-container {
    margin-bottom: 12rem;
  }
}

.me-top-container {
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 100%;
}
@media only screen and (max-width: 333px) {
  .me-top-container {
    justify-content: center;
    align-items: start;
  }
}

.me-top-container h2 {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .me-top-container h2 {
    font-size: 3.5rem;
  }
}
@media only screen and (max-width: 540px) {
  .me-top-container h2 {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 472px) {
  .me-top-container h2 {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 402px) {
  .me-top-container h2 {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 346px) {
  .me-top-container h2 {
    font-size: 9vw;
  }
}

.me-bottom-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: start;
}
@media only screen and (max-width: 768px) {
  .me-bottom-container {
    flex-direction: column;
  }
}

.me-left-container {
  width: 90%;
  padding: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .me-left-container {
    width: 100%;
    padding: 1.5rem 0;
  }
}

@media only screen and (max-width: 425px) {
  .stay-top {
    font-size: 1rem;
  }
}

.bl-about {
  color: #42acc7;
  font-weight: 700;
}

.inner-bottom {
  height: 1rem;
  width: 57%;
  padding: 0;
  margin-bottom: 2rem;
  margin-top: -1.5rem;
  z-index: -1;
  background-color: #f7f7f7;
  border-radius: 5px;
}
@media only screen and (max-width: 964px) {
  .inner-bottom {
    width: 68%;
  }
}
@media only screen and (max-width: 878px) {
  .inner-bottom {
    width: 78%;
  }
}
@media only screen and (max-width: 770px) {
  .inner-bottom {
    width: 86%;
  }
}
@media only screen and (max-width: 768px) {
  .inner-bottom {
    width: 66%;
  }
}
@media only screen and (max-width: 730px) {
  .inner-bottom {
    width: 76%;
  }
}
@media only screen and (max-width: 425px) {
  .inner-bottom {
    width: 90%;
  }
}
@media only screen and (max-width: 333px) {
  .inner-bottom {
    background-color: #f7f7f7;
    align-self: center;
    width: 90%;
  }
}

.hm-btn-container {
  width: 100%;
  display: flex;
  justify-content: left;
  align-items: center;
  padding-top: 2rem;
}
@media only screen and (max-width: 425px) {
  .hm-btn-container {
    justify-content: center;
  }
}

@media only screen and (max-width: 425px) {
  .hm-btn-container p {
    font-size: 1rem;
  }
}

.hm-btn-target {
  background: #42acc7;
  color: #f7f7f7;
  font-size: 1.2rem;
  max-width: 186px;
  width: 100%;
  height: 47px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  filter: drop-shadow(0px 5px 9px rgba(0, 0, 0, 0.14));
  cursor: pointer;
}

.hm-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
}

.hm-target {
  width: 100%;
}

.me-right-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  border-radius: 10px;
  padding: 1.5rem 1.5rem 0 0;
}
@media only screen and (max-width: 768px) {
  .me-right-container {
    width: 100%;
    padding: 3rem 0 1rem 0;
  }
}

@media only screen and (max-width: 425px) {
  .me-right {
    width: 100%;
  }
}

.divider-right-container {
  width: 100%;
  display: flex;
  justify-content: right;
  align-items: center;
  margin-bottom: 186px;
}

.tech-container {
  width: 100%;
  padding: 0 1rem;
  margin-bottom: 372px;
}
@media only screen and (max-width: 425px) {
  .tech-container {
    margin-bottom: 12rem;
  }
}

.tech-header-right {
  width: 100%;
  text-align: right;
  display: flex;
  justify-content: right;
  align-items: center;
}

.tech-header-right h2 {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .tech-header-right h2 {
    font-size: 3.5rem;
  }
}
@media only screen and (max-width: 540px) {
  .tech-header-right h2 {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 472px) {
  .tech-header-right h2 {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 402px) {
  .tech-header-right h2 {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 346px) {
  .tech-header-right h2 {
    font-size: 9vw;
  }
}

.tech-columns-container {
  display: flex;
  justify-content: right;
  align-items: center;
  padding-top: 3rem;
}

.tech-graphic-container {
  max-width: 50%;
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 1rem;
}

.t-circles {
  width: 100%;
}

.tech-targets-container {
  max-width: 60%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 962px) {
  .tech-targets-container {
    max-width: 80%;
  }
}
@media only screen and (max-width: 768px) {
  .tech-targets-container {
    max-width: 100%;
  }
}

.lt-container {
  max-width: 120px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.svg-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.svg-container svg {
  width: 50%;
}

.mc-svg {
  width: 50%;
  filter: saturate(0);
}

.hs-img {
  width: 50%;
  border-radius: 2px;
}

.lt-name-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 425px) {
  .lt-name {
    font-size: 1rem;
  }
}

.work {
  margin-bottom: 186px;
  padding: 0 1rem;
}

.work-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
}

.inner-modal {
  position: fixed;
  top: calc(50% - 450px);
  left: calc(50% - 400px);
  max-width: 800px;
  width: 100%;
  border-radius: 10px;
  padding: 2rem;
  z-index: 50;
  background-color: #f7f7f7;
}

.work-header {
  width: 100%;
  padding-bottom: 3rem;
}
@media only screen and (max-width: 768px) {
  .work-header h2 {
    font-size: 3.5rem;
  }
}
@media only screen and (max-width: 540px) {
  .work-header h2 {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 472px) {
  .work-header h2 {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 402px) {
  .work-header h2 {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 346px) {
  .work-header h2 {
    font-size: 9vw;
  }
}

.wm-exit {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  width: 3rem;
  height: 3rem;
}
.wm-exit a {
  text-decoration: none;
  color: #42acc7;
  font-weight: 700;
  cursor: pointer;
}

.wm-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  width: 100%;
}
.wm-header h3 {
  margin: 0;
  padding: 0;
}

.wm-subheader {
  width: 100%;
  margin: 0 0 1rem 0;
}

.wm-subheader h4 {
  margin: 0 !important;
  font-weight: 300;
  padding-top: 0;
}

.wm-id {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.wm-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.wm-image-link {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wm-image-target {
  width: 50%;
}

.wm-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  width: 100%;
}

.wm-tools {
  width: 100%;
  margin: 0;
}

.wm-links {
  display: flex;
  justify-content: right;
  align-items: center;
  width: 100%;
}

.wm-source-btn {
  width: 100%;
  display: flex;
  justify-content: right;
  margin: 25px 0 0 0;
}

.wm-live-btn {
  width: 100%;
  display: flex;
  justify-content: right;
  margin: 25px 0 0 0;
}

.wm-source {
  background: #404040;
  color: #f7f7f7;
  font-size: 1.2rem;
  max-width: 186px;
  width: 100%;
  height: 47px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  filter: drop-shadow(0px 5px 9px rgba(0, 0, 0, 0.14));
}

.wm-live {
  background: #42acc7;
  color: #f7f7f7;
  font-size: 1.2rem;
  max-width: 186px;
  width: 100%;
  height: 47px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  filter: drop-shadow(0px 5px 9px rgba(0, 0, 0, 0.14));
  margin-left: 2rem;
}

.work-subheader {
  width: -moz-fit-content;
  width: fit-content;
}
.work-subheader h3 {
  font-weight: 300 !important;
}

.ed-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}
@media only screen and (max-width: 918px) {
  .ed-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
  }
}
@media only screen and (max-width: 702px) {
  .ed-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
  }
}

.ed-target-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.ed-target-link {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.prime-video-preview,
.walmart-preview,
.goodreads-preview,
.loudder-preview,
.square-preview,
.intuit-preview {
  width: 100%;
  border-radius: 10px;
}

.wd-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.wd-target-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wd-target-link {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.forval-preview,
.jj-preview {
  width: 100%;
  border-radius: 10px;
}

.lwt-container {
  width: 100%;
  margin-bottom: 186px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

.memoji-container {
  max-width: 156px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.me {
  width: 100%;
}

.lwt-header-container {
  max-width: 642px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lwt-header-container h3 {
  text-align: center;
}
@media only screen and (max-width: 480px) {
  .lwt-header-container h3 {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 392px) {
  .lwt-header-container h3 {
    font-size: 1.5rem;
  }
}

.lwt-message-container {
  max-width: 575px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}
.lwt-message-container p {
  text-align: center;
}
@media only screen and (max-width: 425px) {
  .lwt-message-container p {
    font-size: 1rem;
  }
}

#together {
  -webkit-text-decoration: underline solid 5px #42acc7;
          text-decoration: underline solid 5px #42acc7;
}

.in-touch-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.in-touch-target {
  background: #42acc7;
  color: #f7f7f7;
  font-size: 1.2rem;
  max-width: 186px;
  width: 100%;
  height: 47px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  filter: drop-shadow(0px 5px 9px rgba(0, 0, 0, 0.14));
}
@media only screen and (max-width: 425px) {
  .in-touch-target {
    font-size: 1rem;
  }
}

footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem 1rem 1rem;
}

.f-copyright-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 25px 0 0 0;
}
.f-copyright-container p {
  text-align: center;
}
@media only screen and (max-width: 425px) {
  .f-copyright-container p {
    font-size: 1rem;
  }
}

/* Media Queries */
@media only screen and (max-width: 1302px) {
  .social-container {
    display: none;
    width: 0;
    height: 0;
    opacity: 0;
  }
}
@media only screen and (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .left-nav {
    width: 100%;
  }
  .middle-nav {
    justify-content: right;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: 1.1rem;
  }
}/*# sourceMappingURL=styles.css.map */