@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: #F0F7FD;
}

.logo {
  position: relative;
  display: -ms-grid;
  display: grid;
  z-index: 100;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  font-family: Poppins, sans-serif;
  color: #ee1959;
  height: 47px;
  background-color: white;
}

@media (min-width: 800px) {
  .logo {
    width: 140px;
  }
}

.logo h3 {
  margin: 0;
  position: absolute;
  top: -.39em;
  left: 0.2rem;
  font-size: 1.68em;
  font-weight: 600;
}

@media (min-width: 370px) {
  .logo h3 {
    width: 220px;
    height: 37px;
  }
}

.logo h4 {
  position: absolute;
  left: 0.2rem;
}

.navbar {
  position: fixed;
  background-color: white;
  right: 1.63em;
  display: -ms-grid;
  display: grid;
  z-index: 100;
  justify-items: end;
}

@media (min-width: 600px) {
  .navbar {
    background-color: transparent;
  }
}

.menu {
  width: 58px;
  height: 47px;
  display: -ms-grid;
  display: grid;
  place-content: center;
}

@media (min-width: 600px) {
  .menu {
    display: none;
  }
}

.menu a {
  display: -ms-grid;
  display: grid;
  place-content: center;
}

.nav {
  position: absolute;
  display: none;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 15.9em;
  padding: 1.63em;
  margin: .81em 0;
  -webkit-transition: .5s;
  transition: .5s;
  z-index: 110;
  top: 4em;
  background-color: white;
}

.nav li {
  list-style: none;
}

.nav li a {
  font-family: Poppins, sans-serif;
  font-size: 1.2em;
  font-weight: 300;
  color: #ee1959;
  border-bottom: 2px solid rgba(238, 25, 89, 0);
  grid-gap: 1em;
  gap: 1em;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: .4s;
  transition: .4s;
  -webkit-transition-timing-function: cubic-bezier(0, 0, 1, 0);
          transition-timing-function: cubic-bezier(0, 0, 1, 0);
}

.nav li a.active {
  font-weight: 500;
  color: #ee1959;
  border-bottom: 2px solid #ee1959;
}

@media (min-width: 600px) {
  .nav li a {
    margin: 0em auto;
    color: #647389;
  }
  .nav li a.active {
    font-weight: 300;
    border-bottom: 2px solid #ee1959;
  }
  .nav li a:hover {
    color: #5a6370;
  }
  .nav li a.active:hover {
    color: #f04b7d;
  }
}

@media (min-width: 600px) {
  .nav {
    position: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: transparent;
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
    padding: .2em 1.63em;
    margin: 0;
    width: 17.875em;
    height: 3em;
  }
}

.open-nav {
  display: -ms-grid;
  display: grid;
}

.shadow-box {
  -webkit-box-shadow: -2px 3px 6px rgba(58, 58, 58, 0.28), -6px 16px 13px rgba(157, 157, 157, 0.16);
          box-shadow: -2px 3px 6px rgba(58, 58, 58, 0.28), -6px 16px 13px rgba(157, 157, 157, 0.16);
}

.shadow-box-resp {
  -webkit-box-shadow: -2px 3px 6px rgba(58, 58, 58, 0.28), -6px 16px 13px rgba(157, 157, 157, 0.16);
          box-shadow: -2px 3px 6px rgba(58, 58, 58, 0.28), -6px 16px 13px rgba(157, 157, 157, 0.16);
}

@media (min-width: 600px) {
  .shadow-box-resp {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.card-container {
  display: -ms-grid;
  display: grid;
  grid-gap: .75em;
  gap: .75em;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  margin: 9em 1.62em;
  padding-left: 0;
}

@media (min-width: 370px) {
  .card-container {
    margin: 9em 1.62em;
  }
}

@media (min-width: 600px) {
  .card-container {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    margin: 9em 3.24em 9em;
  }
}

@media (min-width: 800px) {
  .card-container {
    -ms-grid-columns: (minmax(220px, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

.card-container::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  height: 10rem;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#f0f7fd), to(rgba(240, 247, 253, 0)));
  background: linear-gradient(to bottom, #f0f7fd 0%, rgba(240, 247, 253, 0) 100%);
  z-index: 80;
  pointer-events: none;
}

.lift-hightlight::before {
  z-index: 110;
  opacity: 1;
}

.card {
  background-color: white;
  -webkit-box-shadow: -2px 3px 6px rgba(58, 58, 58, 0.28), -6px 16px 13px rgba(157, 157, 157, 0.16);
          box-shadow: -2px 3px 6px rgba(58, 58, 58, 0.28), -6px 16px 13px rgba(157, 157, 157, 0.16);
  list-style: none;
}

.card:before {
  content: "";
  width: 1px;
  margin-left: -1px;
  float: left;
  height: 0;
  padding-top: 100%;
}

.card:after {
  /* to clear float */
  content: "";
  display: table;
  clear: both;
}

.img-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  background-size: cover;
  background-position: 50% 50%;
  cursor: pointer;
}

.img-disabled {
  cursor: default;
}

.card img {
  display: block;
  position: absolute;
  width: 100%;
  padding: 0.2em;
  -webkit-transition: .8s;
  transition: .8s;
  -webkit-transition-timing-function: cubic-bezier(0.6, -0.01, 0.58, 1);
          transition-timing-function: cubic-bezier(0.6, -0.01, 0.58, 1);
  opacity: 0.89;
}

.card img:hover {
  opacity: 0.96;
}

img.img-filter {
  -webkit-filter: saturate(0);
          filter: saturate(0);
  opacity: .59;
}

img.img-filter:hover {
  opacity: 0.66;
}

.about-cta {
  z-index: 50;
  position: fixed;
  right: 0;
  bottom: 2.81em;
  -webkit-transform: rotate(-90deg) translate(2.81em, 2.9em);
          transform: rotate(-90deg) translate(2.81em, 2.9em);
  font-family: Poppins, sans-serif;
  background-color: #EE1959;
  color: white;
  font-weight: 600;
  font-size: .87em;
  padding: .6em 1em;
  cursor: pointer;
  max-width: 500px;
}

.about-cta h2 {
  margin: 0;
}

.about-cta:hover {
  background-color: #f3336c;
}

.about-close-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 2em;
  margin: 1em 1em 0 0;
  padding: .4em;
  cursor: pointer;
}

.about-linkedin {
  position: relative;
  right: 0;
  border-bottom: 1px;
  color: white;
  text-decoration: none;
}

.about-linkedin img {
  height: 2.02em;
  -webkit-transform: translateX(-0.33em);
          transform: translateX(-0.33em);
  padding: .1em;
}

.about-linkedin sup {
  display: inline-block;
  font-size: .1em;
}

.about {
  position: relative;
  top: 0;
  background-color: #EE1959;
  max-width: 500px;
  margin: 0 auto;
  padding: 2em;
  overflow-y: scroll;
}

.about h2 {
  font-weight: 600;
  font-size: 1.2em;
  letter-spacing: .02em;
  margin-bottom: 2em;
}

.about p {
  font-weight: 400;
  font-size: .87em;
  line-height: 2em;
  letter-spacing: .018em;
  margin: 0;
}

.about p:nth-last-child(-n + 2) {
  text-align: left;
}

.about-overlay {
  z-index: 100;
  position: fixed;
  display: none;
  opacity: 0;
  width: 100%;
  height: 100%;
  overflow-y: hidden;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  place-content: center;
  background-color: rgba(128, 128, 128, 0);
  margin: auto;
  padding: 3.26em 1.63em .0em;
  top: 0;
  font-family: Poppins, sans-serif;
  color: white;
}

@media (max-width: 370px) {
  .about-overlay {
    padding-left: .5em;
    padding-right: .5em;
  }
}

@media (max-height: 600px) {
  .about-overlay {
    padding-top: 0em;
    padding-bottom: 0em;
  }
}

.open-about-overlay {
  display: -ms-grid;
  display: grid;
}

@use "scss:math";
.wrapper {
  position: relative;
}

@media print {
  a[href]:after {
    content: " (" attr(href) ") ";
  }
}

.header {
  position: fixed;
  display: -ms-grid;
  display: grid;
  gap: .75em;
  width: 100%;
  padding: 1.62em 1.62em;
  top: 0;
  padding-top: 48px;
  z-index: 100;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 370px) {
  .header {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 600px) {
  .header {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    padding: 3.24em;
  }
}

.hide-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}

.hide-scrollbar::-webkit-scrollbar {
  width: 1px;
}

.hide-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.hide-scrollbar::-webkit-scrollbar-thumb {
  background-color: transparent;
}

.spectrum--light .spectrum-ActionButton--quiet, .spectrum--light .spectrum-Tool {
  background-color: yellow;
}

#lightBoxCloseView {
  background-color: yellow !important;
}
/*# sourceMappingURL=main.css.map */