* {
  margin: 0 auto;
  padding: 0;
}
body {
  font-size: 18px;
  background-color: var(--bg-ivory);
  height: 100vh;
  height: var(--app-height);
  height: -webkit-fill-available;
}
:root {
  --accent-red: #F83A44;
  --accent-blue: #005BFF;
  --accent-light-blue: #F1F9FF;
  --bg-light-blue: #C7E4FF;
  --bg-ivory: #FFFDF1;
  --bg-yellow: #FEEA6D;
  --bg-default: #fffcfc;
  --text-black: #1D1D20;
  --text-dark-gray: #3A3A40;
  --text-light-gray: #A9A9B1;
  --text-white: #fff;
  --app-height: 100%;
}
@font-face {
  font-family: 'Montserrat';
  src: url(/Montserrat/Montserrat-VariableFont_wght.ttf);
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url(/Poppins/Poppins-Bold.ttf);
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url(/Poppins/Poppins-Light.ttf);
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url(/Poppins/Poppins-Regular.ttf);
  font-weight: 600;
  font-display: swap;
}
@media (max-width: 319px) {
  body {
    font-size: 3vw;
  }
}
@media (max-width: 459px) {
  body {
    font-size: 11px;
  }
}
@media (min-width: 460px) {
  body {
    font-size: 12px;
  }
}
@media (min-width: 575px) {
  body {
    font-size: 13px;
  }
}
@media (min-width: 768px) {
  body {
    font-size: 14px;
  }
}
@media (min-width: 1024px) {
  body {
    font-size: 15px;
  }
}
@media (min-width: 1280px) {
  body {
    font-size: 16px;
  }
}
/*@media (max-width: 374px){
    body {
        font-size: 10px;
    }
}

@media (min-width: 375px){
    body {
        font-size: 10px;
    }
}

@media (min-width: 479px){
    body {
        font-size: 12px;
    }
}

@media (min-width: 372px){
    body {
        font-size: 14px;
    }
}

@media (min-width: 768px){
    body {
        font-size: 16px;
    }
}

@media (min-width: 1024px){
    body {
        font-size: 18px;
    }
}*/
h1 {
  font-family: Poppins;
  font-weight: 600;
  line-height: 1.27777778em;
  font-size: 3.8em;
}
h2 {
  font-family: Poppins;
  font-size: 3.35em;
  font-weight: 600;
}
h3 {
  font-family: Poppins;
  font-weight: 600;
  font-size: 2.67em;
}
h4 {
  font-family: Poppins;
  font-weight: 600;
  line-height: 3rem;
  font-size: 2.01em;
}
h5 {
  font-family: Poppins;
  font-weight: 600;
  line-height: 3rem;
  font-size: 1.50em;
}
h6 {
  font-family: Poppins;
  line-height: 3rem;
  font-size: 1em;
  font-weight: 600;
}
p {
  font-family: Poppins;
  line-height: 2em;
  font-weight: 600;
  line-height: 2.65rem;
  font-size: 1.2em;
}
li {
  list-style-type: none;
  font-family: Poppins;
  line-height: 2em;
  font-size: 1em;
}
a {
  text-decoration: none;
  color: inherit;
  font-size: 1em;
}
.before-pseudo {
  background-size: 1.22222222em 1.22222222em;
  width: 1.22222222em;
  height: 1.22222222em;
  content: ' ';
  margin-right: 0.33333333em;
}
.arrow {
  display: flex;
  justify-content: left;
  align-items: center;
}
.arrow:before {
  background-image: url('/assets/arrow-white.svg');
  background-size: 1.22222222em 1.22222222em;
  width: 1.22222222em;
  height: 1.22222222em;
  content: ' ';
  margin-right: 0.33333333em;
}
.arrow-animated {
  display: flex;
  justify-content: left;
  align-items: center;
}
.arrow-animated::before {
  background-image: url('/assets/arrow-white.svg');
  animation: bounce 2s ease-out infinite;
  background-size: 1.22222222em 1.22222222em;
  width: 1.22222222em;
  height: 1.22222222em;
  content: ' ';
  margin-right: 0.33333333em;
}
.arrow-blue {
  display: flex;
  justify-content: left;
  align-items: center;
}
.arrow-blue:before {
  background-image: url('/assets/arrow-right-blue.svg');
  background-size: 1.22222222em 1.22222222em;
  width: 1.22222222em;
  height: 1.22222222em;
  content: ' ';
  margin-right: 0.33333333em;
}
.arrow-black {
  display: flex;
  justify-content: left;
  align-items: center;
}
.arrow-black:before {
  background-image: url('/assets/arrow-black.svg');
  background-size: 1.22222222em 1.22222222em;
  width: 1.22222222em;
  height: 1.22222222em;
  content: ' ';
  margin-right: 0.33333333em;
}
.check {
  display: flex;
  justify-content: left;
  align-items: center;
}
.check:before {
  background-image: url(/assets/check-dark-gray.svg);
  background-size: 1.22222222em 1.22222222em;
  width: 1.22222222em;
  height: 1.22222222em;
  content: ' ';
  margin-right: 0.33333333em;
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(-4px);
  }
  60% {
    transform: translateX(-4px);
  }
}
.hover-underline {
  transition-duration: .2s;
  border-bottom: solid 0.11111111em transparent;
}
.hover-underline:hover {
  border-bottom: solid 0.11111111em var(--accent-blue);
}
.highlight-button {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 80%, #f94e56 20%);
  transition: background-image 0.25s;
  background-size: cover;
}
.highlight-button:hover {
  background: linear-gradient(180deg, #ffffff 0%, #f94e56 0%);
  cursor: pointer;
  color: var(--text-white);
}
.bold {
  color: var(--text-black);
  font-weight: 800;
}
.light {
  color: var(--text-light-gray);
}
.spacing {
  width: 90%;
}
.height {
  height: 100vh;
  height: var(--app-height);
  height: -webkit-fill-available;
}
/*======================================================================
==========================NAVIGATION====================================
======================================================================*/
.navbar {
  display: flex;
  align-items: center;
  background-color: transparent;
  padding: 0.33333333em;
}
.icon {
  width: 2.5em;
  height: auto;
  padding-top: 0.33333333em;
  transition-duration: 0.3;
}
.icon:hover #logo-hover {
  fill: var(--accent-red);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.33333333em;
  padding-top: 0.33333333em;
  font-size: 1.2em ;
}
.nav-menu li {
  font-family: Montserrat;
  font-weight: 600;
  list-style-type: none;
}
.navLink {
  transition: 0.15s;
  text-decoration: none;
  color: var(--accent-blue);
}
.navOrder {
  text-decoration: none;
}
.navLink::after {
  transform-origin: 0% 5%;
}
.navLink:hover:after {
  transform: scaleX(1);
}
.navLink:hover {
  border-bottom: solid 0.11111111em var(--accent-red);
  color: var(--accent-red);
}
.hamburger {
  display: none;
  cursor: pointer;
  width: 1.22222222em;
}
.bar {
  display: block;
  width: 100%;
  height: 0.16666667em;
  margin: 0.27777778em auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 0.04166667em;
  background-color: var(--accent-blue);
  position: relative;
  z-index: 6;
}
@keyframes burger-hover {
  0% {
    width: 100%;
  }
  50% {
    width: 50%;
  }
  100% {
    width: 100%;
  }
}
@keyframes burger-hover2 {
  0% {
    width: 50%;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 50%;
  }
}
@media (max-width: 460px) {
  .landing p {
    width: 95%;
  }
}
@media (max-width: 767px) {
  .hamburger {
    display: block;
  }
  .hamburger.active .bar {
    width: 1.38888889em;
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
    animation: none;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(0.41666667em) rotate(45deg);
    background-color: var(--accent-red);
    animation: none;
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-0.41666667em) rotate(-45deg);
    background-color: var(--accent-red);
    animation: none;
  }
  .nav-menu {
    position: fixed;
    right: -100%;
    gap: 0;
    top: 3.88888889em;
    height: 100%;
    top: 0;
    flex-direction: column;
    background-color: var(--bg-ivory);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-sizing: border-box;
    padding-top: 28vh;
    padding-bottom: 28vh;
    z-index: 5;
    font-size: 2em;
  }
  .navItem {
    margin: 0.88888889em 0;
    color: var(--accent-blue);
  }
  .navLink {
    color: var(--accent-blue);
  }
  .nav-menu.active {
    right: 0;
  }
  .navbar {
    background-color: transparent;
  }
  .landing figure {
    top: 40%;
  }
}
/*==========================================
====================FOLIO===================
===========================================*/
.folio-section {
  padding-top: 5.33333333em;
  padding-bottom: 5.33333333em;
  display: flex;
  flex-direction: column;
}
.folio-grid {
  width: 90%;
  display: flex;
  flex-direction: column;
}
.folio-intro h1 {
  color: var(--accent-blue);
  font-weight: bold;
}
.folio-cards-grid {
  grid-template-columns: 1fr 1fr 1fr;
  display: grid;
  gap: 1.77777778em;
}
.folio-card {
  color: var(--text-white);
  background-color: var(--accent-blue);
  padding: 1.77777778em;
  border-radius: 2.5%;
  height: min-content;
  margin-top: 1.77777778em;
  gap: 3.55555556em;
}
.folio-card img {
  width: 100%;
}
.folio-card h4 {
  font-weight: 800;
}
.folio-card p,
h6 {
  color: var(--accent-light-blue);
}
.folio-card h2,
h4,
h6,
p {
  text-align: left;
}
@media (max-width: 1024px) {
  .folio-cards-grid {
    display: inline !important;
  }
  .folio-card {
    color: var(--text-white);
    background-color: var(--accent-blue);
    padding: 1.77777778em;
    border-radius: 2.5%;
    max-width: 21.33333333em;
    height: auto;
    margin-top: 1.77777778em;
  }
}
/*==========================================
====================FOOTER===================
===========================================*/
footer {
  padding-top: 5.33333333em;
  padding-bottom: 5.33333333em;
  background-color: var(--accent-blue);
  color: var(--text-white);
}
footer h2 {
  text-align: center;
  font-weight: 800;
}
footer h5 {
  font-weight: 800;
}
.hover-underline {
  transition-duration: .2s;
  border-bottom: solid 0.11111111em transparent;
}
.hover-underline:hover {
  border-bottom: solid 0.11111111em var(--text-white);
}
@media (min-width: 800px) {
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.mail {
  display: flex;
  justify-content: left;
  align-items: center;
  margin: 0;
}
.mail::before {
  background-image: url('/assets/mail.svg');
  background-size: 1.22222222em 1.22222222em;
  width: 1.22222222em;
  height: 1.22222222em;
  content: ' ';
  margin-right: 0.33333333em;
  filter: grayscale(100) brightness(999);
}
.call {
  display: flex;
  justify-content: left;
  align-items: center;
}
.call::before {
  background-image: url('/assets/call.svg');
  background-size: 1.22222222em 1.22222222em;
  width: 1.22222222em;
  height: 1.22222222em;
  content: ' ';
  margin-right: 0.33333333em;
  filter: grayscale(100) brightness(999);
}
footer figure {
  margin-top: 1.77777778em;
}
