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

html {
  font-size: 62.5%;
  overflow-x: hidden;
  display: block;
  width: 100%;
  position: relative;
}

body {
  height: 100vh;
  font-family: "Inter", sans-serif;
  color: #1e282c;
  font-weight: 300;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  z-index: 1;
}

.container {
  display: block;
}

.hydrated {
  visibility: inherit;
}

.small, .p, .heading-6, .heading-5, .heading-4, .heading-3, .heading-2, .heading-1 {
  font-family: "Inter", sans-serif;
  color: #1e282c;
  font-weight: 400;
}

.heading-1 {
  font-size: 4.78rem;
  line-height: 1;
}

.heading-2 {
  font-size: 4rem;
  font-style: italic;
  line-height: 1;
}
.heading-2--light {
  color: #c5d7e0;
}
.heading-2--dark {
  color: #35454d;
}

.heading-3 {
  font-size: 3.3rem;
  color: #023047;
  text-transform: uppercase;
}

.heading-4 {
  font-size: 2.76rem;
}
.heading-4--light {
  color: #c5d7e0;
}
.heading-4--dark {
  color: #35454d;
}

.heading-5 {
  font-size: 2.3rem;
}
.heading-5--light {
  color: #c5d7e0;
}
.heading-5--dark {
  color: #35454d;
}

.heading-6 {
  font-size: 1.92rem;
}
.heading-6--light {
  color: #c5d7e0;
}
.heading-6--dark {
  color: #35454d;
}

.p {
  font-size: 1.6rem;
}
.p--light {
  color: #c5d7e0;
}
.p--dark {
  color: #35454d;
}

.small {
  font-size: 1.1rem;
}
.small--light {
  color: #c5d7e0;
}
.small--dark {
  color: #35454d;
}

.btn {
  background-color: #fb8500;
  color: #fff;
  border: none;
  border-radius: 0;
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  padding: 1.8rem 3rem;
  cursor: pointer;
  transition: all 0.2s;
}
.btn:hover {
  background-color: #023047;
}

.mb-sm {
  margin-bottom: 2rem;
}

.mb-md {
  margin-bottom: 3rem;
}

.mb-lg {
  margin-bottom: 4rem;
}

.mb-hg {
  margin-bottom: 8rem;
}

/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  opacity: 0.05;
  overflow: hidden;
}
.bg-video__content {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.card {
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
  border-radius: 11px;
  overflow: hidden;
  transition: all 0.4s;
  height: 100%;
}
.card-image {
  position: relative;
}
.card-image-wrapper {
  display: block;
  width: 100%;
}
.card-image-overlay {
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  fill: #023047 !important;
  position: absolute;
  bottom: 0;
  width: 100%;
  transition: 0.5s ease;
  opacity: 0;
  text-align: center;
}
.card-image:hover .card-image-overlay {
  opacity: 1;
}
.card-tags {
  padding: 1.2rem 0rem 1.2rem 1.2rem;
  display: flex;
  gap: 0.4rem;
}
.card-tag {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #023047;
  border-radius: 100px;
  font-weight: 600;
}
.card-tag-audio {
  background-color: #ffb703;
}
.card-tag-video {
  background-color: #219ebc;
}
.card-tag-webapp {
  background-color: #fb8500;
}
.card-title {
  padding: 0rem 1.2rem 1.2rem 1.2rem;
  font-size: 2.76rem;
  color: #023047;
  font-weight: 600;
}
.card-description {
  padding: 0rem 1.2rem 1.2rem 1.2rem;
  text-align: justify;
  font-size: 1.92rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.buttons-row {
  padding-top: 1.6rem;
  display: flex;
  flex-direction: row;
  gap: 1.6rem;
}
.buttons-row .a {
  text-decoration: none;
}
.buttons-row .btn {
  border: solid;
  border-color: #023047;
  border-radius: 1000px;
  background-color: transparent;
  color: #023047;
  font-weight: 700;
}

.btn--link:link, .btn--link:visited {
  font-size: 1.6rem;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  text-align: center;
  display: block;
  transition: all 0.2s;
}

.btn--link:hover, .btn--link:active {
  transform: translateY(-4px);
}

.section-banner {
  background-color: white;
  padding: 8rem 0 1.6rem 0;
}

.banner {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 4.8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9.6rem;
  align-items: center;
}
.banner-img {
  border-radius: 50%;
  display: block;
  margin: 0 auto;
  width: 75%;
  justify-self: center;
}

.banner-text-box {
  text-align: justify;
}
.banner-text-box .name {
  padding: 0rem 0rem 1.2rem 0rem;
}
.banner-text-box .title {
  padding: 0rem 0rem 1.2rem 0rem;
  font-size: 3.98rem;
  font-weight: 500;
}

.review {
  width: 100%;
}
.review-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.2rem;
}
.review-tab {
  padding: 1.6rem 0rem 0rem 0rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.review-writer {
  font-size: 1.92rem;
  font-weight: 500;
  color: #023047;
  align-items: flex-start;
}
.review-photo {
  height: 4rem;
  width: 4rem;
  margin-bottom: 1.6rem;
  border-radius: 1000px;
  align-self: center;
}
.review-content {
  text-align: justify;
  font-size: 1.6rem;
  font-weight: 400;
}

.freelance {
  margin: auto;
  max-width: 130rem;
  display: flex;
  flex-direction: column;
}

.freelance-section-title {
  font-size: 3.98rem;
  font-weight: 500;
  padding-bottom: 2rem;
}

.freelance-card {
  padding: 2rem;
  margin-bottom: 4rem;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.1);
}
.freelance-card-title {
  font-size: 3.32rem;
  font-weight: 500;
  color: #fb8500;
}
.freelance-card-description {
  font-size: 2.3rem;
  font-weight: 400;
  padding-top: 1.2rem;
}
.freelance-card-subtitle {
  font-size: 2.76rem;
  font-weight: 500;
  color: #ffb703;
  padding-top: 2.4rem;
}
.freelance-card-list {
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
}
.freelance-card-item-title {
  font-size: 2.3rem;
  font-weight: 400;
}
.freelance-card-item-link-tag {
  height: 2rem;
  width: auto;
  padding-right: 1rem;
}
.freelance-card-item-link {
  font-size: 2.3rem;
  font-weight: 400;
}
.freelance-card-item-link::before {
  content: "\a";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  display: inline-block;
  margin: 0 1rem;
  align-self: center;
}

.section {
  margin-top: 8rem;
  height: 100vh;
}

.header {
  background-size: cover;
  background-position: center;
  padding: 1rem 2rem 1rem 2rem;
  border-bottom: 1px;
  border-top: 1px;
  border-left: 0px;
  border-right: 0px;
  border-style: solid;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 50em) {
  .header {
    grid-column: 1/-1;
  }
}
.header__logo {
  justify-self: center;
}
.header a {
  text-decoration: none;
  font-family: "Inter", sans-serif;
  text-align: center;
  padding: 1.5rem;
  display: block;
  color: #1e282c;
  font-size: 1.8rem;
  transition: all 0.3s;
}
.header a:active, .header a:hover {
  color: #fb8500;
}

/**************************/
/* NAVIGATION */
/**************************/
.main-nav {
  align-self: center;
}

.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #023047;
  font-size: 1.8rem;
  transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #fb8500;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  color: #fff;
  background-color: #e67e22;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background-color: #cf711f;
}

/* MOBILE */
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;
  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #333;
}

.icon-mobile-nav[name=close-outline] {
  display: none;
}

.sticky .header {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  background-color: rgba(255, 255, 255, 0.97);
  z-index: 999;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

.vertical-auto-margin {
  margin: auto 0;
}

.null-padding {
  padding: 0;
}

.horizontal-padding-nav {
  padding: 0 2rem;
}

.contact-icon {
  height: 2rem;
  align-self: center;
  width: auto;
}

.footer {
  background-color: white;
  padding: 2rem;
  text-align: center;
  border-style: solid;
  border-color: black;
  border-width: 1px;
  border-left: 0px;
  border-right: 0px;
  display: flex;
  flex-direction: column;
}
.footer .p {
  font-size: 1.92rem;
  font-weight: 500;
}
.footer .nav {
  margin: auto;
  list-style: none;
  display: flex;
  align-items: center;
}
.footer .nav__link:link, .footer .nav__link:visited {
  font-size: 1.4rem;
  color: black;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  text-align: center;
  padding-top: 2rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: block;
  transition: all 0.2s;
}
.footer .nav__link:hover, .footer .nav__link:active {
  background-color: rgba(255, 255, 255, 0.05);
}

.copyright {
  font-size: 1.4rem;
  color: #90a9b6;
  margin-top: 2rem;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  justify-content: center;
  align-self: center;
  width: 70%;
}

.gallery__img:hover {
  transform: scale(1.1);
}

.gallery {
  grid-column: full-start/full-end;
  display: grid;
  /*grid-template-columns: repeat(16, 1fr);
  grid-template-rows: repeat(14, 2.5vw);*/
  grid-template: repeat(20, 1fr)/repeat(16, 1fr);
  max-height: 60vw;
  grid-gap: 1.5rem;
}
.gallery__item {
  overflow: hidden;
}
.gallery__item--1 {
  grid-row: 1/5;
  grid-column: 1/5;
}
.gallery__item--2 {
  grid-row: 1/7;
  grid-column: 5/11;
}
.gallery__item--3 {
  grid-row: 1/5;
  grid-column: 11/13;
}
.gallery__item--4 {
  grid-row: 1/5;
  grid-column: 13/-1;
}
.gallery__item--5 {
  grid-row: 5/11;
  grid-column: 1/5;
}
.gallery__item--6 {
  grid-row: 7/11;
  grid-column: 5/9;
}
.gallery__item--7 {
  grid-row: 5/11;
  grid-column: 11/14;
}
.gallery__item--8 {
  grid-row: 5/12;
  grid-column: 14/-1;
}
.gallery__item--9 {
  grid-row: 11/21;
  grid-column: 1/5;
}
.gallery__item--10 {
  grid-row: 11/16;
  grid-column: 5/9;
}
.gallery__item--11 {
  grid-row: 7/11;
  grid-column: 9/11;
}
.gallery__item--12 {
  grid-row: 11/16;
  grid-column: 9/14;
}
.gallery__item--13 {
  grid-row: 12/16;
  grid-column: 14/-1;
}
.gallery__item--14 {
  grid-row: 16/21;
  grid-column: 5/8;
}
.gallery__item--15 {
  grid-row: 16/21;
  grid-column: 8/12;
}
.gallery__item--16 {
  grid-row: 16/21;
  grid-column: 12/17;
}
.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.2s;
}

.twoCols {
  max-width: 130rem;
  margin: 0 auto;
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9.6rem;
  align-items: center;
}
.twoCols-img {
  border-radius: 50%;
  display: block;
  width: 75%;
  justify-self: center;
}

.twoCols-text-box {
  text-align: justify;
}
.twoCols-text-box .name {
  padding: 0rem 0rem 1.2rem 0rem;
}
.twoCols-text-box .title {
  padding: 0rem 0rem 1.2rem 0rem;
  font-size: 2.76rem;
  font-weight: 500;
}

.section-hero {
  background-color: white;
  padding: 2.4rem 0 2.4rem 0;
  align-self: center;
  margin: 0 auto;
}

.main {
  height: 100vh;
  display: flex;
}

.hero {
  margin: 0 auto;
  padding: 0 2.4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.8rem;
  align-items: center;
}
@media only screen and (max-width: 50em) {
  .hero {
    grid-template-columns: 1fr;
  }
}
.hero-image-box {
  justify-items: center;
}
.hero-img {
  border-radius: 50%;
  display: block;
  width: 60%;
  justify-self: center;
  align-self: center;
  margin: 0 auto;
}

.hero-text-box .name {
  padding: 0rem 0rem 1.2rem 0rem;
}
.hero-text-box .job-title {
  padding: 0rem 0rem 1.2rem 0rem;
}

.section-skills {
  padding: 2rem 5rem 2rem 5rem;
}

.executive_summary {
  max-width: 130rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  margin: auto;
  margin-top: 5rem;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.1);
}

.executive_summary-figure {
  justify-self: center;
}
.executive_summary-icon {
  height: 20rem;
  align-self: center;
  width: auto;
}
.executive_summary-content {
  font-size: 2.76rem;
  font-weight: 500;
}

.skills {
  max-width: 130rem;
  margin: auto;
}
.skills-text-box {
  padding: 2rem 6rem 2rem 2rem;
}
.skills-card-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 1.5rem;
  padding: 1.5rem;
}
.skills-card-container {
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  padding: 2rem;
}
.skills__link:link, .skills__link:visited {
  font-size: 1.6rem;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  text-align: center;
  display: block;
  color: #023047;
  font-weight: 500;
  transition: all 0.2s;
}
.skills__link:hover, .skills__link:active {
  background-color: rgba(251, 133, 0, 0.1);
  transform: translateY(-1px);
}
.skills-card-title {
  font-weight: 800;
  padding-bottom: 1rem;
  align-self: center;
  text-align: center;
  color: #fb8500;
}
.skills-card-subtitle {
  margin-top: -1rem;
  text-align: center;
}
.skills-card-item {
  display: flex;
  gap: 10px;
}
.skills-card-item-description {
  font-size: 1.6rem;
  font-weight: 500;
}
.skills-card-subitem {
  display: flex;
  gap: 10px;
}
.skills-card-item-list {
  align-self: center;
}
.skills-card-subitem::before {
  content: "\a";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: black;
  display: inline-block;
  margin: 0 1rem;
  align-self: center;
}
.skills-card-item-icon {
  height: 16px;
  align-self: center;
  width: auto;
}

.section-experience {
  padding: 2rem;
}

.experience-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 5rem;
  margin: auto;
  max-width: 130rem;
}

.work-experience-container {
  padding: 1rem;
}

.work-experience-container-title {
  font-size: 3.98rem;
  font-weight: 500;
  padding-bottom: 2rem;
}

.experience-card {
  box-shadow: 0 1rem 5rem rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-bottom: 2rem;
}

.experience-card-workplace-name {
  display: flex;
}
.experience-card-workplace-logo {
  height: 3.98rem;
  align-self: center;
  width: auto;
}
.experience-card-workplace-title {
  font-size: 3.32rem;
  font-weight: 500;
  color: #023047;
  padding-left: 2rem;
}
.experience-card-workplace-job-title {
  font-size: 2.76rem;
  color: #023047;
  font-weight: 500;
}
.experience-card-workplace-location {
  display: flex;
}
.experience-card-workplace-location-icon {
  height: 16px;
  align-self: center;
  width: auto;
  margin-right: 1rem;
}
.experience-card-workplace-city {
  font-size: 1.92rem;
  font-weight: 400;
}
.experience-card-workplace-country-flag {
  height: 16px;
  align-self: center;
  width: auto;
  margin-left: 1rem;
}
.experience-card-workplace-time {
  font-size: 1.92rem;
  font-weight: 400;
}
.experience-card-workplace-dates {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
}
.experience-card-workplace-dates-description {
  display: flex;
  justify-content: space-between;
}
.experience-card-workplace-dates-icon {
  height: 16px;
  align-self: center;
  width: auto;
  margin-right: 1rem;
}
.experience-card-workplace-dates-text {
  font-size: 1.92rem;
  font-weight: 400;
}
.experience-card-workplace-duration {
  display: flex;
}
.experience-card-workplace-duration-icon {
  height: 16px;
  align-self: center;
  width: auto;
  margin-right: 1rem;
}
.experience-card-workplace-duration-text {
  font-size: 1.92rem;
  font-weight: 400;
}
.experience-card-workplace-summary {
  font-size: 1.92rem;
  font-weight: 400;
  text-align: justify;
  padding-bottom: 1rem;
}
.experience-card-workplace-list {
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  text-align: justify;
}
.experience-card-workplace-item {
  padding-bottom: 1rem;
}
.experience-card-workplace-item::before {
  content: "\a";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: black;
  display: inline-block;
  margin: 0 1rem;
  align-self: center;
}

.education-experience-container {
  padding: 1rem;
}

.education-experience-container-title {
  font-size: 3.98rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.education-experience-container-summary {
  font-size: 2.3rem;
  font-weight: 500;
  margin-bottom: 2rem;
  text-align: justify;
}

.section_summary {
  max-width: 130rem;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  padding-top: 5rem;
}

.section_summary-figure {
  justify-self: center;
}
.section_summary-icon {
  height: 20rem;
  align-self: center;
  width: auto;
}
.section_summary-content {
  font-size: 2.76rem;
  font-weight: 500;
}
.section_summary-buttons {
  display: flex;
  justify-content: space-around;
}
.section_summary-buttons .btn {
  background: beige;
}
.section_summary-buttons a {
  color: white;
}

.section-projects-container {
  max-width: 130rem;
  margin: auto;
  padding: 0rem 4.8rem 4.8rem 4.8rem;
  z-index: -1;
}

.keywords-list {
  display: flex;
  gap: 0.8rem;
  padding: 1.2rem 1.2rem;
}
.keywords-list .item {
  border: solid;
  border-radius: 1000px;
  border-color: #8ecae6;
  text-align: center;
}
.keywords-list .keyword {
  padding: 0 1rem;
  font-family: "Inter", sans-serif;
  color: #8ecae6;
  font-weight: 400;
  font-size: 1.3rem;
}

.note {
  padding-top: 4.8rem;
  font-size: 1.92rem;
  font-weight: 400;
  padding-bottom: 4.8rem;
  text-align: center;
}

.section-projects-title {
  font-size: 3.32rem;
  font-weight: 500;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.section-projects-title-box {
  display: flex;
  gap: 1.2rem;
}
.section-projects-title-box .title {
  font-size: 3.32rem;
  font-weight: 500;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.section-projects-title-box .channel-tag {
  height: 3.32rem;
  transform: translateY(100%);
}
.section-projects-gallery {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}
.section-projects-gallery-item {
  opacity: 1;
}

.physics-project-thumbnail {
  height: 20rem;
  align-self: center;
  width: 100%;
}

.play_link {
  height: 5rem;
  stroke: #fb8500;
  color: #fb8500;
  fill: #fb8500;
}

.section-educational {
  padding-bottom: 2rem;
}

#canvasId {
  min-height: 30rem;
}

#canvasLine {
  min-height: 30rem;
}

/**************************/
/* BELOW 1344px (Smaller desktops) */
/**************************/
@media (max-width: 84em) {
  .hero {
    max-width: 120rem;
  }
  .heading-primary {
    font-size: 4.4rem;
  }
  .freelance {
    padding: 0 4.8rem;
  }
}
/**************************/
/* BELOW 1200px (Landscape Tablets) */
/**************************/
@media (max-width: 75em) {
  html {
    /* 9px / 16px  */
    font-size: 56.25%;
  }
  .section-projects-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .skills-card-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 0 8rem;
    gap: 6.4rem;
  }
  .hero-text-box {
    justify-items: center;
  }
  .buttons-row {
    justify-content: center;
  }
  .grid {
    column-gap: 4.8rem;
    row-gap: 6.4rem;
  }
  .heading-secondary {
    font-size: 3.6rem;
  }
  .heading-tertiary {
    font-size: 2.4rem;
  }
  .main-nav-list {
    gap: 3.2rem;
  }
  .hero {
    gap: 4.8rem;
  }
  .testimonials-container {
    padding: 9.6rem 3.2rem;
  }
  /* MOBILE NAVIGATION */
  .btn-mobile-nav {
    display: block;
    z-index: 9999;
  }
  .main-nav {
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(10px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    transform: translateX(100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease-in;
    /* Hide navigation */
    /* Allows NO transitions at all */
    /* display: none; */
    /* 1) Hide it visually */
    opacity: 0;
    /* 2) Make it unaccessible to mouse and keyboard */
    pointer-events: none;
    /* 3) Hide it from screen readers */
    visibility: hidden;
  }
  .nav-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateX(0);
  }
  .nav-open .icon-mobile-nav[name=close-outline] {
    display: block;
  }
  .nav-open .icon-mobile-nav[name=menu-outline] {
    display: none;
  }
  .main-nav-list {
    flex-direction: column;
    gap: 4.8rem;
  }
  .main-nav-link:link,
  .main-nav-link:visited {
    font-size: 3rem;
  }
}
/**************************/
/* BELOW 944px (Tablets) */
/**************************/
@media (max-width: 59em) {
  html {
    /* 8px / 16px = 0.5 = 50% */
    font-size: 50%;
    overflow-x: hidden;
  }
  .experience-container {
    grid-template-columns: 1fr;
  }
  .freelance-card-list {
    flex-direction: column;
    align-items: center;
  }
  .freelance-card {
    text-align: center;
  }
  .skills-card-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .section {
    height: fit-content;
  }
  .twoCols {
    grid-template-columns: 1fr;
  }
  .banner {
    grid-template-columns: 1fr;
  }
  .banner-img {
    width: 60%;
  }
  .hero-text-box,
  .hero-img-box {
    text-align: center;
  }
  .delivered-meals {
    justify-content: center;
    margin-top: 3.2rem;
  }
  .logos img {
    height: 2.4rem;
  }
  .step-number {
    font-size: 7.4rem;
  }
  .meal-content {
    padding: 2.4rem 3.2rem 3.2rem 3.2rem;
  }
  .section-testimonials {
    grid-template-columns: 1fr;
  }
  .cta {
    /* 3/5 = 60% + 2/5 = 40% */
    grid-template-columns: 3fr 2fr;
  }
  .cta-form {
    grid-template-columns: 1fr;
  }
  .btn--form {
    margin-top: 1.2rem;
  }
  .gallery {
    max-height: 100vw;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-height: fit-content;
  }
  .twoCols-image-box-finance {
    height: 30rem;
  }
}
/**************************/
/* BELOW 704px (Smaller tablets) */
/**************************/
@media (max-width: 44em) {
  .hero-img {
    padding: 0rem;
  }
  .skills-card-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-projects-gallery {
    grid-template-columns: 1fr;
  }
  .review-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .grid--3-cols,
  .grid--4-cols {
    grid-template-columns: repeat(2, 1fr);
  }
  .diets {
    grid-column: 1/-1;
    justify-self: center;
  }
  .heading-secondary {
    margin-bottom: 4.8rem;
  }
  .pricing-plan {
    width: 100%;
  }
  .grid--footer {
    grid-template-columns: repeat(6, 1fr);
  }
  .logo-col,
  .address-col {
    grid-column: span 3;
  }
  .nav-col {
    grid-row: 1;
    grid-column: span 2;
    margin-bottom: 3.2rem;
  }
  #canvasId {
    min-height: auto;
    max-width: 100%;
  }
  #canvasLine {
    min-height: auto;
    max-width: 100%;
  }
}
/**************************/
/* BELOW 544px (Phones) */
/**************************/
@media (max-width: 34em) {
  .grid {
    row-gap: 4.8rem;
  }
  .skills-card-gallery {
    grid-template-columns: 1fr;
  }
  .banner-img {
    width: 80%;
  }
  .main {
    height: fit-content;
  }
  .buttons-row {
    flex-direction: column;
    margin-bottom: 3.2rem;
  }
  .grid--2-cols,
  .grid--3-cols,
  .grid--4-cols {
    grid-template-columns: 1fr;
  }
  .section-hero {
    padding: 4.8rem 0 0 0;
  }
  .hero {
    padding: 0 3.2rem;
  }
  .logos img {
    height: 1.2rem;
  }
  .step-img-box:nth-child(2) {
    grid-row: 1;
  }
  .step-img-box:nth-child(6) {
    grid-row: 5;
  }
  .step-img-box {
    transform: translateY(2.4rem);
  }
  .testimonials {
    grid-template-columns: 1fr;
  }
  .cta {
    grid-template-columns: 1fr;
  }
  .cta-text-box {
    padding: 3.2rem;
  }
  .cta-img-box {
    height: 32rem;
    grid-row: 1;
  }
  #cv-download-btn {
    margin: 0 auto;
  }
}

/*# sourceMappingURL=style.css.map */
