/*-------------------------------------------------+
| Global variables                                 |
+--------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background-color: #141414;
  overflow-x: hidden;
}

section {
  position: relative;
  width: 100vw;
  padding: 2em;
  overflow: hidden;
}

.btn-trigger-onload {
  visibility: hidden;
}

.highlighter-text {
  position: relative;
  display: inline-block;
}

.highlighter-text::before {
  content: '';
  position: absolute;
  top: 45%;
  left: 0%;
  right: 0%;
  height: 60%;
  opacity: 0.9;
  transform: rotate(-1.5deg);
  z-index: -1;
  border-radius: 100px;
}

.highlighter-text-orange::before {
  background-color: #fe6d38;
}

.highlighter-text-green::before {
  background-color: #c6fe69;
}

.highlighter-text-purple::before {
  background-color: #7a78ff;
}

.highlighter-text-yellow::before {
  background-color: #fac000;
}

/* Color palette */
.arone-blue {
  color: #82c8e5;
}

.dark-grey {
  color: #141414;
}

.orange {
  color: #fe6d38;
}

.green {
  color: #c6fe69;
}

.purple {
  color: #7a78ff;
}

.yellow {
  color: #fac000;
}

/*-------------------------------------------------+
| Landscape                                        |
+--------------------------------------------------*/
.landscape-msg-container {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  display: none;
}

.landscape-msg-content {
  margin-top: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.landscape-msg-phone {
  height: 50px;
  width: 100px;
  border: 3px solid rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  animation: rotate 1.5s ease-in-out infinite alternate;
}

.landscape-msg-message h2 {
  color: #fff;
  font-size: 1em;
  margin-top: 40px;
}

/* ANIMATION */
.landscape-msg-phone {
  animation: rotate 1.5s ease-in-out infinite alternate;
}

@keyframes rotate {
  0% {
		transform: rotate(0deg)
	}
	50% {
		transform: rotate(-90deg)
	}
	100% {
		transform: rotate(-90deg)
	}
}

/*-------------------------------------------------+
| Navbar                                           |
+--------------------------------------------------*/
.navbar {
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  padding: .8rem 2rem;
  position: sticky;
  width: 98%;
  top: .8rem;
  left: 1%;
  border-radius: 2rem;
  transform: scale(0.9);
  transition: transform 0.4s ease;
  z-index: 10;
}

.flex-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-basis: 100%;
}

.flex-container {
  display: flex;
}

.nav-logo {
  align-self: baseline;
  background-color: #141414;
  padding: .2rem;
  border-radius: 2rem;
}

.nav-logo img {
  max-width: 38px;
  width: 100%;
  height: auto;
}

.nav-links {
  background-color: #141414;
  padding: .8rem 1.4rem;
  border-radius: 2rem;
  border: 0.15rem dashed rgb(60, 60, 60);
}

.nav-links a {
  margin: 0 1rem;
  text-decoration: none;
  color: #fff;
  font-weight: 400;
}

.nav-links a span {
  font-size: 3rem;
  line-height: 0;
}

.nav-btn {
  display: flex;
  gap: 1rem;
  margin-left: 2rem;
}

.contact-btn {
  color: #fff;
  padding: .8rem 1.4rem;
  border-radius: 2rem;
  font-weight: 600;
  text-decoration: none;
  background-color: #82c8e5;
}

#hamburger {
  margin: 0;
  padding: 0;
  text-align: right;
  margin-left: auto;
  display: none;
}

label {
  display: flex;
  flex-direction: column;
  width: 30px;
  cursor: pointer;
}

label span {
  background: #fff;
  border-radius: 10px;
  height: 3px;
  margin: 3px 0;
  transition: .4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

label span:nth-of-type(1) {
  width: 50%;
}

label span:nth-of-type(2) {
  width: 100%;
}

label span:nth-of-type(3) {
  width: 75%;
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"]:checked ~ #navMenu {
  display: flex;
}

input[type="checkbox"]:checked ~ span:nth-of-type(1) {
  transform-origin: bottom;
  transform: rotatez(45deg) translate(4px, 0px);
}

input[type="checkbox"]:checked ~ span:nth-of-type(2) {
  transform-origin: top;
  transform: rotatez(-45deg);
}

input[type="checkbox"]:checked ~ span:nth-of-type(3) {
  transform-origin: bottom;
  width: 62%;
  transform: translate(10px, -6px) rotatez(45deg);
}

#navMenuItems {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: scaleY(0);
  transition: all 0.4s ease;
  transform-origin: top;
}

.open {
  max-height: 80vh !important;
  opacity: 1 !important;
  transform: scaleY(1) !important;
}

#navMenu {
  flex-direction: column;
  color: #141414;
  gap: 1rem;
  margin-top: 1rem;
  width: 100%;
}

#menuLinks {
  display: flex;
  flex-direction: column;
}

#menuLinks a {
  text-decoration: none;
  color: #fff;
  margin: 3rem 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.menu-contact-btn {
  padding: 1rem 1.6rem;
  width: 60%;
  font-size: 1.4rem !important;
  align-self: end;
  text-align: center;
}

/*-------------------------------------------------+
| Scrollbar                                        |
+--------------------------------------------------*/
.hide-scrollbar::-webkit-scrollbar {
  width: 0;
}

.show-scrollbar::-webkit-scrollbar {
  width: 0.5em;
}

body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
  background-color: #a9a9a9;
  border-radius: 3rem;
}

/*-------------------------------------------------+
| Loader                                           |
+--------------------------------------------------*/
.loader-container {
  display: flex;
  width: 100vw;
  height: 200vh;
  background-color: #141414;
  position: fixed;
  top: -50vh;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 100;
}

.hide {
  display: none;
}

.loader-icon {
  display: flex;
  margin-bottom: 3rem;
}

.loader {
  width: 44px;
  height: 44px;
  position: relative;
  &:before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: absolute;
    display: block;
    background: #82c8e5;
    top: 37px;
    left: 19px;
    transform: translate(-18px, -18px);
    animation: dotRect 3s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
  }
}

.loader svg {
  display: block;
  width: 100%;
  height: 100%;
  &.triangle {
    width: 48px;
    &:before {
      left: 21px;
      transform: translate(-10px, -18px);
      animation: dotTriangle 3s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
    }
  }
}

.loader rect,
.loader polygon,
.loader circle {
  fill: none;
  stroke: #2f3545;
  stroke-width: 10px;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.loader polygon {
  stroke-dasharray: 145 calc(221 - 145) 145 calc(221 - 145);
  stroke-dashoffset: 0;
  animation: pathTriangle 3s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

.loader rect {
  stroke-dasharray: calc(256 / 4 * 3) calc(256 / 4) calc(256 / 4 * 3) calc(256 / 4);
  stroke-dashoffset: 0;
  animation: pathRect 3s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

.loader circle {
  stroke-dasharray: calc(200 / 4 * 3) calc(200 / 4) calc(200 / 4 * 3) calc(200 / 4);
  stroke-dashoffset: 75;
  animation: pathCircle 3s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

.loader {
  display: inline-block;
  margin: 0 16px;
}

.dribbble {
  position: fixed;
  display: block;
  right: 20px;
  bottom: 20px;
}

.dribble img {
  display: block;
  height: 28px;
}

.loader-logo img {
  max-width: 180px;
  height: 90%;
}

.btn-trigger {
  visibility: hidden;
}

/* ANIMATION */
@keyframes pathTriangle {
  33% {
    stroke-dashoffset: 74;
  }
  66% {
    stroke-dashoffset: 147;
  }
  100% {
    stroke-dashoffset: 221;
  }
}

@keyframes dotTriangle {
  33% {
    transform: translate(0, 0);
  }
  66% {
    transform: translate(10px, -18px);
  }
  100% {
    transform: translate(-10px, -18px);
  }
}

@keyframes pathRect {
  25% {
    stroke-dashoffset: 64;
  }
  50% {
    stroke-dashoffset: 128;
  }
  75% {
    stroke-dashoffset: 192;
  }
  100% {
    stroke-dashoffset: 256;
  }
}

@keyframes dotRect {
  25% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(18px, -18px);
  }
  75% {
    transform: translate(0, -36px);
  }
  100% {
    transform: translate(-18px, -18px);
  }
}

@keyframes pathCircle {
  25% {
    stroke-dashoffset: 125;
  }
  50% {
    stroke-dashoffset: 175;
  }
  75% {
    stroke-dashoffset: 225;
  }
  100% {
    stroke-dashoffset: 275;
  }
}

/*-------------------------------------------------+
| To top button                                    |
+--------------------------------------------------*/
.scroll-top {
  position: fixed;
  right: -70px;
  width: 40px;
  height: 40px;
  margin: 15px;
  background: #141414;
  border: 0.15rem dashed rgb(60, 60, 60);
  border-radius: 50%;
  bottom: 0;
  transition: .4s, right 0.2s ease-in-out;
  z-index: 4;
}

.scroll-top:hover {
  cursor: pointer;
}

.scroll-top.visible {
  right: 0;
}

.arrow {
  display: inline-block;
  margin-top: 5px;
  padding: 4px;
  border: solid #82c8e5;
  border-width: 0 3px 3px 0;
}

.arrow.up {
  transform: rotate(-135deg);
}

/*-------------------------------------------------+
| Home section                                     |
+--------------------------------------------------*/
.home {
  height: 100svh;
  padding: 0;
}

.home-section {
  display: flex;
  flex-direction: column;
  padding: 4rem 2rem;
  gap: 2rem;
}

.home-text {
  max-width: 70%;
  text-align: right;
  margin: 20vh auto;
  padding: 2em;
}

.home-text h1 {
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}

/* Mouse icon */
.mouse-container {
  position: absolute;
  width: 100%;
}

.mouse {
  position: absolute;
  left: 0;
  right: 0;
  top: 70vh;
  margin-inline: auto;
	width: 20px;
	height: 35px;
  margin-bottom: 3em;
	border: 2px solid #fff;
	border-radius: 60px;
	&::before {
		content: '';
		width: 4px;
		height: 4px;
		position: absolute;
		top: 5px;
		left: 50%;
		transform: translateX(-50%);
		background-color: #fff;
		border-radius: 50%;
		opacity: 1;
	}
}

.mouse:hover {
  cursor: pointer;
}

/* ANIMATION */
.mouse::before {
  animation: wheelScroll 2s infinite;
  -webkit-animation: wheelScroll 2s infinite;
}

@keyframes wheelScroll {
	to {
		opacity: 0;
		top: 25px;
	}
}

@-webkit-keyframes wheelScroll {
	to {
		opacity: 0;
		top: 25px;
	}
}

.bounce {
  animation: bounceVertical 2s ease infinite;
}

@keyframes bounceVertical {
	0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
	40% {
    transform: translateY(-20px);
    opacity: 1;
  }
	60% {
    transform: translateY(-10px);
    opacity: 1;
  }
}

/*-------------------------------------------------+
| About section                                    |
+--------------------------------------------------*/
.about-section {
  height: 100svh;
}

.copy-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 2rem;
}

.copy-container h1 {
  width: 70%;
  color: #141414;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
}

.hero .copy-container {
  background: #fe6d38;
}

.cta .copy-container {
  background: #c6fe69;
}

.outro .copy-container {
  background: #7a78ff;
}

.about .copy-container,
.features .copy-container {
  border: 0.15rem dashed rgb(60, 60, 60);
}

.anime-text {
  width: 60%;
}

.anime-text p {
  color: #fff;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
}

.anime-text .word {
  display: inline-block;
  position: relative;
  margin-right: 0.2rem;
  margin-bottom: 0.2rem;
  padding: 0.1rem 0.2rem;
  border-radius: 2rem;
  will-change: background-color, opacity;
}

.anime-text .word.keyword-wrapper {
  margin: 0 0.4rem 0.2rem 0.2rem;
}

.anime-text .word span {
  position: relative;
}

.anime-text .word span.keyword {
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  padding: 0.1rem 0;
  color: #141414;
}

.anime-text .word span.keyword::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 1rem);
  height: calc(100% + 0.4rem);
  background-color: #fff;
  border-radius: 2rem;
  z-index: -1;
}

.anime-text .word span.keyword.explore::before,
.anime-text .word span.keyword.capitalise::before,
.anime-text .word span.keyword.automate::before {
  background-color: #7a78ff;
}

.anime-text .word span.keyword.emotion-led::before,
.anime-text .word span.keyword.diversifying::before,
.anime-text .word span.keyword.prime::before {
  background-color: #fe6d38;
}

.anime-text .word span.keyword.array::before,
.anime-text .word span.keyword.speed::before,
.anime-text .word span.keyword.fingertips::before {
  background-color: #c6fe69;
}

.anime-text .word,
.anime-text .word span {
  opacity: 0;
}

/*-------------------------------------------------+
| What we do section                               |
+--------------------------------------------------*/
.highlights-heading {
  width: 100%;
  text-align: center;
}

.highlights-heading h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  padding-top: 10rem;
}

.highlights-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 2rem;
  padding-top: 4rem;
  border-radius: 2rem;
  text-align: left;
}

.highlight {
  max-width: 280px;
}

.highlight-number {
  font-size: 16rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.6);
  text-align: right;
  padding-right: 1rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.highlight h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-top: -8.5rem;
  margin-bottom: 3rem;
  color: #fff;
}

.highlight p {
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.6;
}

/*-------------------------------------------------+
| Mission section                                  |
+--------------------------------------------------*/
.mission-section {
  padding: 1rem;
  margin: 0 auto;
  margin-bottom: 10rem;
  overflow: visible;
}

.mission-section h2 {
  margin-top: 10rem;
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
}

.grid {
  width: 70%;
  margin-left: 15%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
  gap: 1rem;
  transform: translateY(60px);
}

.card {
  border-radius: 2rem;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
  transform: translateY(20px);
}

.first-header {
  background-color: #fac000;
}

.second-header {
  background-color: #7a78ff;
}

.third-header {
  background-color: #c6fe69;
}

.header-card {
  transition: all .2s ease-in-out;
  transform-origin: center;
  z-index: 1;
}

.header-card:hover {
  transform: scale(1.1);
}

.content-card {
  border: 0.15rem dashed rgb(60, 60, 60);
  background-color: #141414;
}

.header-card h1 {
  font-size: 3rem;
  color: #141414;
}

.content-card h1 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 3em;
  display: none;
}

.content-card p {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
  padding-bottom: 1.5rem;
}

.card-text {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.stat {
  margin-top: 1rem;
  font-size: 3.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  align-self: flex-end;
  letter-spacing: -0.2rem;
}

/*-------------------------------------------------+
| Contact us section                               |
+--------------------------------------------------*/
.contact-section {
  padding: 80px 20px;
  margin-bottom: 8rem;
}

.contact-section h2 {
  margin: 8rem 0;
  text-align: center;
  color: #fff;
}

.contact-br {
  display: none;
}

.contact-heading-sm {
  width: 100%;
  font-size: 2.5rem;
  font-weight: 900;
  text-align: center;
  display: none;
}

.contact-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  justify-content: center;
}

.contact-text {
  flex: 1;
  max-width: 300px;
  text-align: left;
  align-self: start;
  margin-top: 2rem;
}

.contact-text h1 {
  font-size: 5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.3rem;
  text-align: right;
}

.contact-text-sm {
  font-size: 4rem;
}

.contact-form {
  width: 100%;
  max-width: 500px;
  padding: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  position: relative;
  margin-top: 20px;
}

.contact-form textarea {
  resize: none;
  height: 300px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 12px 12px;
  font-size: 1rem;
  font-family: "DM Sans", sans-serif;
  border: 2px solid #ccc;
  border-radius: 8px;
  background: #141414;
  color: #fff;
  transition: border-color 0.3s;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #fff;
  background: #3b3b3b;
}

.contact-form label {
  position: absolute;
  top: 16px;
  left: 12px;
  font-size: 1rem;
  color: #fff;
  padding: 0 4px;
  pointer-events: none;
  transition: 0.2s ease all;
}

.contact-form input:focus + label,
.contact-form input:not(:placeholder-shown) + label,
.contact-form textarea:focus + label,
.contact-form textarea:not(:placeholder-shown) + label {
  top: -20px;
  left: 10px;
  font-size: 0.75rem;
  color: #fff;
}

.contact-form button {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  background-color: #82c8e5;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s;
  display: none;
}

.disabledBtnMessage {
  color: #fff;
}

/*-------------------------------------------------+
| Footer                                           |
+--------------------------------------------------*/
footer {
  margin-top: 10rem;
}

.loader-container-footer {
  display: flex;
  width: 100vw;
  justify-content: center;
  align-items: center;
  margin-top: 10rem;
}

.footer p {
  margin-bottom: 4rem;
  text-align: center;
  color: #ccc;
  font-size: 1rem;
}

/*-------------------------------------------------+
| Viewport handling                                |
+--------------------------------------------------*/
/* Small viewports */
@media (max-width: 400px) {
  /* Navbar */
  .navbar {
    width: 100%;
    padding: 0.6rem 2rem;
    background-color: #141414;
    border-radius: 2rem;
    border: 0.15rem solid rgb(60, 60, 60);
  }

  .nav-logo {
    padding: 0;
    border-radius: 0;
  }

  .nav-logo img {
    max-width: 40px;
  }

  .nav-links,
  .nav-btn {
    display: none;
  }

  #hamburger {
    display: flex;
  }

  #menuLinks a {
    margin: 2rem 0;
    font-size: 1.8rem;
  }

  /* Loader */
  .loader-logo img {
    max-width: 150px;
    height: 40%;
  }

  /* To top button */
  .scroll-top {
    width: 50px;
    height: 50px;
    border: 0.15rem solid rgb(60, 60, 60);
  }

  /* Home section */
  .home-text {
    max-width: 100%;
    text-align: center;
    margin: 15vh auto;
  }

  .home-text h1 {
    font-size: 2.8rem;
  }

  /* About section */
  .copy-container h1 {
    font-size: 2.5rem;
  }

  .hero,
  .cta,
  .outro {
    height: 80svh;
  }

  .about .copy-container,
  .features .copy-container {
    border: none !important;
  }

  .anime-text {
    width: 95%;
  }

  .anime-text p {
    font-size: 1.1rem;
  }

  .anime-text .first-p {
    margin-top: 5em;
  }

  /* What we do section */
  .highlights-content {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  /* Mission section */
  .grid {
    grid-template-columns: repeat(1, 1fr);
    width: 90%;
    margin-left: 5%;
  }

  .header-card {
    display: none;
  }

  .content-card h1 {
    display: inline-block;
  }

  .content-card p {
    font-size: 1.2rem;
  }

  .stat {
    font-size: 3rem;
  }

  /* Contact us */
  .contact-section h2 {
    margin-top: 6em;
    margin-bottom: 0;
  }

  .contact-br {
    display: inline-block;
  }

  .contact-heading-lg {
    display: none;
  }

  .contact-heading-sm {
    display: inline-block;
  }

  .contact-text h1 {
    display: none;
  }

  .contact-text-sm {
    font-size: 3rem;
  }

  /* Footer */
  .footer p {
    font-size: 0.7rem;
  }
}

/* Mobile phones */
@media (min-width: 401px) and (max-width: 700px) {
  /* Navbar */
  .navbar {
    width: 100%;
    padding: 1rem 2rem;
    background-color: #141414;
    border-radius: 2rem;
    border: 0.15rem solid rgb(60, 60, 60);
  }

  .nav-logo {
    padding: 0;
    border-radius: 0;
  }

  .nav-logo img {
    max-width: 45px;
  }

  .nav-links,
  .nav-btn {
    display: none;
  }

  #hamburger {
    display: flex;
  }

  /* Loader */
  .loader-logo img {
    max-width: 150px;
    height: 40%;
  }

  /* To top button */
  .scroll-top {
    width: 50px;
    height: 50px;
    border: 0.15rem solid rgb(60, 60, 60);
  }

  /* Home section */
  .home-text {
    max-width: 100%;
    text-align: center;
  }

  .home-text h1 {
    font-size: 4rem;
  }

  /* About section */
  .copy-container h1 {
    font-size: 3rem;
  }

  .hero,
  .cta,
  .outro {
    height: 80svh;
  }

  .about .copy-container,
  .features .copy-container {
    border: none !important;
  }

  .anime-text {
    width: 95%;
  }

  .anime-text p {
    font-size: 1.1rem;
  }

  .anime-text .first-p {
    margin-top: 5em;
  }

  /* What we do section */
  .highlights-content {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  /* Mission section */
  .grid {
    grid-template-columns: repeat(1, 1fr);
    width: 90%;
    margin-left: 5%;
  }

  .header-card {
    display: none;
  }

  .content-card h1 {
    display: inline-block;
  }

  .content-card p {
    font-size: 1.2rem;
  }

  .stat {
    font-size: 3rem;
  }

  /* Contact us */
  .contact-section h2 {
    margin-top: 6em;
    margin-bottom: 0;
  }

  .contact-br {
    display: inline-block;
  }

  .contact-heading-lg {
    display: none;
  }

  .contact-heading-sm {
    display: inline-block;
  }

  .contact-text h1 {
    display: none;
  }

  .contact-text-sm {
    font-size: 3rem;
  }

  /* Footer */
  .footer p {
    font-size: 0.7rem;
  }
}

/* iPads and tablets */
@media (min-width: 701px) and (max-width: 1000px) {
  /* Navbar */
  .navbar {
    width: 100%;
    padding: 1rem 2rem;
    background-color: #141414;
    border-radius: 2rem;
    border: 0.15rem dashed rgb(60, 60, 60);
  }

  .nav-logo {
    padding: 0;
    border-radius: 0;
  }

  .nav-logo img {
    max-width: 50px;
  }

  .nav-links,
  .nav-btn {
    display: none;
  }

  #hamburger {
    display: flex;
  }

  /* Home section */
  .home-text {
    max-width: 85%;
  }

  /* About section */
  .copy-container h1 {
    width: 90%;
    font-size: 3rem;
  }

  .anime-text {
    width: 90%;
  }

  .anime-text p {
    font-size: 1.8rem;
  }

  .anime-text .word {
    margin-right: 0.1rem;
    margin-bottom: 0.15rem;
    padding: 0.1rem 0.2rem;
  }

  .anime-text .word.keyword-wrapper {
    margin: 0 0.2rem 0.1rem 0.1rem;
  }

  /* What we do section */
  #us {
    padding-left: 0;
    padding-right: 0;
  }

  .highlights-content {
    padding-left: 1em;
    padding-right: 1em;
  }

  /* Mission section */
  .grid {
    width: 90%;
    margin-left: 5%;
  }
}

/* Large iPads and tablets */
@media (min-width: 1001px) and (max-width: 1200px) {
  /* About section */
  .copy-container {
    width: 80%;
    margin-left: 10%;
  }

  /* What we do section */
  .highlights-content {
    padding-left: 0;
    padding-right: 0;
  }

  /* Mission section */
  .grid {
    width: 80%;
    margin-left: 10%;
  }
}

/* High-res laptops and monitor screens */
@media (min-width: 1201px) {
  /* About section */
  .copy-container {
    width: 80%;
    margin-left: 10%;
  }
}

/* Landscape handler */
@media only screen and (max-device-width: 950px) and (orientation: landscape) {
  .landscape-msg-container {
    display: block;
  }

  #navbar,
  .home,
  #scroll,
  .about-section,
  #us,
  #mission,
  #contact,
  #footer {
    display: none;
  }
}
