.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
}

.container {
  margin-right: auto;
  margin-left: auto;
}

.row {
  box-sizing: border-box;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.row.reverse {
  flex-direction: row-reverse;
}

.col.reverse {
  flex-direction: column-reverse;
}

.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  box-sizing: border-box;
  flex: 0 0 auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

.col-xs {
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  flex-basis: 8.333%;
  max-width: 8.333%;
}

.col-xs-2 {
  flex-basis: 16.667%;
  max-width: 16.667%;
}

.col-xs-3 {
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  flex-basis: 33.333%;
  max-width: 33.333%;
}

.col-xs-5 {
  flex-basis: 41.667%;
  max-width: 41.667%;
}

.col-xs-6 {
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  flex-basis: 58.333%;
  max-width: 58.333%;
}

.col-xs-8 {
  flex-basis: 66.667%;
  max-width: 66.667%;
}

.col-xs-9 {
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  flex-basis: 83.333%;
  max-width: 83.333%;
}

.col-xs-11 {
  flex-basis: 91.667%;
  max-width: 91.667%;
}

.col-xs-12 {
  flex-basis: 100%;
  max-width: 100%;
}

.col-xs-offset-1 {
  margin-left: 8.333%;
}

.col-xs-offset-2 {
  margin-left: 16.667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.333%;
}

.col-xs-offset-5 {
  margin-left: 41.667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.333%;
}

.col-xs-offset-8 {
  margin-left: 66.667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.333%;
}

.col-xs-offset-11 {
  margin-left: 91.667%;
}

.start-xs {
  justify-content: flex-start;
  text-align: start;
}

.center-xs {
  justify-content: center;
  text-align: center;
}

.end-xs {
  justify-content: flex-end;
  text-align: end;
}

.top-xs {
  align-items: flex-start;
}

.middle-xs {
  align-items: center;
}

.bottom-xs {
  align-items: flex-end;
}

.around-xs {
  justify-content: space-around;
}

.between-xs {
  justify-content: space-between;
}

.first-xs {
  order: -1;
}

.last-xs {
  order: 1;
}

@media only screen and (min-width: 768px) {
  .container {
    width: 740px;
  }
  .col-sm,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    box-sizing: border-box;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .col-sm {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-sm-1 {
    flex-basis: 8.333%;
    max-width: 8.333%;
  }
  .col-sm-2 {
    flex-basis: 16.667%;
    max-width: 16.667%;
  }
  .col-sm-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  .col-sm-5 {
    flex-basis: 41.667%;
    max-width: 41.667%;
  }
  .col-sm-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex-basis: 58.333%;
    max-width: 58.333%;
  }
  .col-sm-8 {
    flex-basis: 66.667%;
    max-width: 66.667%;
  }
  .col-sm-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex-basis: 83.333%;
    max-width: 83.333%;
  }
  .col-sm-11 {
    flex-basis: 91.667%;
    max-width: 91.667%;
  }
  .col-sm-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-sm-offset-1 {
    margin-left: 8.333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.667%;
  }
  .start-sm {
    justify-content: flex-start;
    text-align: start;
  }
  .center-sm {
    justify-content: center;
    text-align: center;
  }
  .end-sm {
    justify-content: flex-end;
    text-align: end;
  }
  .top-sm {
    align-items: flex-start;
  }
  .middle-sm {
    align-items: center;
  }
  .bottom-sm {
    align-items: flex-end;
  }
  .around-sm {
    justify-content: space-around;
  }
  .between-sm {
    justify-content: space-between;
  }
  .first-sm {
    order: -1;
  }
  .last-sm {
    order: 1;
  }
}
@media only screen and (min-width: 992px) {
  .container {
    width: 976px;
  }
  .col-md,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    box-sizing: border-box;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .col-md {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-md-1 {
    flex-basis: 8.333%;
    max-width: 8.333%;
  }
  .col-md-2 {
    flex-basis: 16.667%;
    max-width: 16.667%;
  }
  .col-md-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  .col-md-5 {
    flex-basis: 41.667%;
    max-width: 41.667%;
  }
  .col-md-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex-basis: 58.333%;
    max-width: 58.333%;
  }
  .col-md-8 {
    flex-basis: 66.667%;
    max-width: 66.667%;
  }
  .col-md-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex-basis: 83.333%;
    max-width: 83.333%;
  }
  .col-md-11 {
    flex-basis: 91.667%;
    max-width: 91.667%;
  }
  .col-md-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-md-offset-1 {
    margin-left: 8.333%;
  }
  .col-md-offset-2 {
    margin-left: 16.667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.333%;
  }
  .col-md-offset-5 {
    margin-left: 41.667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.333%;
  }
  .col-md-offset-8 {
    margin-left: 66.667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.333%;
  }
  .col-md-offset-11 {
    margin-left: 91.667%;
  }
  .start-md {
    justify-content: flex-start;
    text-align: start;
  }
  .center-md {
    justify-content: center;
    text-align: center;
  }
  .end-md {
    justify-content: flex-end;
    text-align: end;
  }
  .top-md {
    align-items: flex-start;
  }
  .middle-md {
    align-items: center;
  }
  .bottom-md {
    align-items: flex-end;
  }
  .around-md {
    justify-content: space-around;
  }
  .between-md {
    justify-content: space-between;
  }
  .first-md {
    order: -1;
  }
  .last-md {
    order: 1;
  }
}
@media only screen and (min-width: 1200px) {
  .container {
    width: 1140px;
  }
  .col-lg,
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    box-sizing: border-box;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .col-lg {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-lg-1 {
    flex-basis: 8.333%;
    max-width: 8.333%;
  }
  .col-lg-2 {
    flex-basis: 16.667%;
    max-width: 16.667%;
  }
  .col-lg-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  .col-lg-5 {
    flex-basis: 41.667%;
    max-width: 41.667%;
  }
  .col-lg-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex-basis: 58.333%;
    max-width: 58.333%;
  }
  .col-lg-8 {
    flex-basis: 66.667%;
    max-width: 66.667%;
  }
  .col-lg-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex-basis: 83.333%;
    max-width: 83.333%;
  }
  .col-lg-11 {
    flex-basis: 91.667%;
    max-width: 91.667%;
  }
  .col-lg-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-lg-offset-1 {
    margin-left: 8.333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.667%;
  }
  .start-lg {
    justify-content: flex-start;
    text-align: start;
  }
  .center-lg {
    justify-content: center;
    text-align: center;
  }
  .end-lg {
    justify-content: flex-end;
    text-align: end;
  }
  .top-lg {
    align-items: flex-start;
  }
  .middle-lg {
    align-items: center;
  }
  .bottom-lg {
    align-items: flex-end;
  }
  .around-lg {
    justify-content: space-around;
  }
  .between-lg {
    justify-content: space-between;
  }
  .first-lg {
    order: -1;
  }
  .last-lg {
    order: 1;
  }
}
* {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

body {
  background-color: #000000;
  margin: 0px;
  padding: 40px 0px;
  scroll-behavior: smooth;
}

body.no-scroll {
  overflow: hidden;
  transition: linear 2s;
}

nav .row {
  justify-content: space-between;
}
nav a {
  color: #777777;
  text-decoration: none;
}
nav a:hover {
  color: #FFFFFF;
  transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s;
}
nav .logo {
  display: flex;
  gap: 10px;
  align-items: center;
}
nav .logo img {
  width: 30px;
  height: 30px;
}
nav .logo span {
  font-size: 18px;
  font-weight: 700;
}
nav ul {
  display: flex;
  flex-direction: row;
  gap: 30px;
  list-style: none;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  padding: 0;
}
nav ul .active {
  color: white;
}

footer {
  padding: 55px 0px;
  border-top: 1px solid rgba(255, 255, 255, 0.1254901961);
}
footer .row {
  justify-content: space-between;
}
footer .contact {
  width: 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer .get_in_touch {
  display: flex;
  align-items: center;
  gap: 10px;
}
footer .get_in_touch img {
  width: 24px;
  height: 24px;
}
footer .get_in_touch span {
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 700;
}
footer .contact_text p {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 350;
  word-wrap: break-word;
  margin: 0;
}
footer .send_email a {
  box-sizing: border-box;
  display: block;
  font-size: 24px;
  font-weight: 700;
  padding: 12px 0px;
  border-radius: 8px;
  text-align: center;
  color: #FFFFFF;
  background-color: transparent;
  text-decoration: none;
  width: 100%;
  border: 1px solid;
  transition: ease-in-out 0.1s;
}
footer .send_email a:hover {
  background-color: #0000FF;
  border: 1px solid #0000FF;
}
footer ul {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  list-style: none;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  padding: 0;
}
footer ul a {
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}
footer ul a:hover {
  color: #FF0000;
  transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s;
}
footer ul .active {
  color: #FF0000;
}

section {
  margin-top: 55px;
  margin-bottom: 55px;
}

h1 {
  color: #FFFFFF;
}

#hero {
  height: 844px;
  display: flex;
  align-items: center;
  background: url("../../images/uploads/face.webp");
  background-size: 40%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
#hero::before {
  content: "";
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: 844px;
  background: url("../../images/uploads/face.webp");
  background-size: 40%;
  background-repeat: no-repeat;
  opacity: 0.3;
  mix-blend-mode: exclusion;
  background-position: 50% 50%;
  animation: animate 3s linear infinite;
}
#hero .hero_text {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 541px;
  margin: auto;
  z-index: 2;
}
#hero h1 {
  font-size: 80px;
  font-weight: 900;
  text-align: center;
  margin: 0;
}
#hero p {
  color: #777777;
  text-align: center;
  font-size: 36px;
  font-weight: 350;
  margin: 0;
}

@keyframes animate {
  0% {
    background-position: 50% 50%;
    filter: hue-rotate(0deg);
  }
  10% {
    background-position: 51% 52%;
  }
  20% {
    background-position: 48% 52%;
  }
  30% {
    background-position: 52% 48%;
  }
  40% {
    background-position: 48% 52%;
  }
  50% {
    background-position: 53% 51%;
  }
  60% {
    background-position: 49% 52%;
  }
  70% {
    background-position: 51% 49%;
  }
  80% {
    background-position: 47% 51%;
  }
  100% {
    background-position: 50% 50%;
    filter: hue-rotate(360deg);
  }
}
#work .portfolio_item {
  width: 100%;
  padding: 50px 0px;
}
#work .portfolio_item_title {
  display: flex;
  gap: 6px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 468px;
  text-align: center;
  margin: auto;
}
#work h2 {
  color: #FFFFFF;
  font-size: 48px;
  font-weight: 900;
  margin: 0;
}
#work p {
  color: #777777;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}
#work .portfolio_images {
  display: inline-grid;
  gap: 6px;
  width: 100%;
  margin-top: 42px;
}
#work img {
  width: 100%;
  height: 395px;
  -o-object-fit: cover;
     object-fit: cover;
  grid-column: span 1;
  grid-row: 2;
  cursor: pointer;
}
#work img:nth-child(1) {
  grid-column: 1/span 2;
  grid-row: 1;
  height: 780px;
}

.lightbox {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 5;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
}
.lightbox .lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lightbox .lightbox-content img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}

.lightbox.active {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s linear 0s, opacity 0.3s;
}

[data-cursor] {
  width: 50px;
  height: 50px;
  background: linear-gradient(120deg, #ff1744, #e040fb, #2979ff, #00e5ff, #76ff03);
  background-size: 1600% 1600%;
  mix-blend-mode: difference;
  pointer-events: none;
  z-index: 50;
  transition: 0.15s linear;
  animation: blobRadius 5s ease infinite, blobBackground 15s ease infinite;
}

@keyframes blobRadius {
  0%, 100% {
    border-radius: 43% 77% 80% 40%/40% 40% 80% 80%;
  }
  20% {
    border-radius: 47% 73% 61% 59%/47% 75% 45% 73%;
  }
  40% {
    border-radius: 46% 74% 74% 46%/74% 58% 62% 46%;
  }
  60% {
    border-radius: 47% 73% 61% 59%/40% 40% 80% 80%;
  }
  80% {
    border-radius: 50% 70% 52% 68%/51% 61% 59% 69%;
  }
}
@keyframes blobBackground {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.cursor-hover--a [data-cursor] {
  width: 100px;
  height: 100px;
}

.loader-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  z-index: 1000;
}

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

.loader-bar {
  width: 100px;
  height: 2px;
  background-color: red;
}

.loader-text {
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
}

#playground .portfolio_item {
  width: 100%;
  padding: 50px 0px;
}
#playground .portfolio_item_title {
  display: flex;
  gap: 6px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 468px;
  text-align: center;
  margin: auto;
}
#playground h1 {
  color: #FFFFFF;
  font-size: 80px;
  font-weight: 800;
  margin: 0;
}
#playground p {
  color: #777777;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}
#playground .portfolio_images {
  display: inline-grid;
  gap: 6px;
  width: 100%;
  margin-top: 42px;
}
#playground img {
  width: 100%;
  height: 395px;
  -o-object-fit: cover;
     object-fit: cover;
  grid-column: span 1;
  grid-row: 2;
  cursor: pointer;
}
#playground img:nth-child(1) {
  grid-column: 1/span 2;
  grid-row: 1;
  height: auto;
}

video {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  grid-column: 1/span 2;
  grid-row: 1;
}

#about h1 {
  color: #FFFFFF;
  font-size: 48px;
  margin: 0;
}
#about p {
  color: #FFFFFF;
  font-size: 30px;
}
#about .contact {
  width: 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 55px;
}
#about .contact img {
  border-radius: 8px;
}
#about .get_in_touch {
  display: flex;
  align-items: center;
  gap: 10px;
}
#about .get_in_touch img {
  width: 24px;
  height: 24px;
}
#about .get_in_touch span {
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 700;
}
#about .contact_text p {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 350;
  word-wrap: break-word;
  margin: 0;
}
#about .send_email a {
  box-sizing: border-box;
  display: block;
  font-size: 24px;
  font-weight: 700;
  padding: 12px 0px;
  border-radius: 8px;
  text-align: center;
  color: #FFFFFF;
  background-color: transparent;
  text-decoration: none;
  width: 100%;
  border: 1px solid;
  transition: ease-in-out 0.1s;
}
#about .send_email a:hover {
  background-color: #0000FF;
  border: 1px solid #0000FF;
}

@media only screen and (max-width: 992px) {
  #about .row {
    flex-direction: column-reverse;
  }
  #about .contact {
    width: 100%;
    margin: 55px 0px;
  }
  #hero {
    height: 564px;
    background-size: 70%;
  }
  #hero::before {
    background-size: 70%;
    height: 564px;
  }
}
@media only screen and (max-width: 768px) {
  .container {
    padding: 0px 20px;
  }
  nav span {
    display: none;
  }
  footer .contact {
    align-items: center;
  }
  footer .contact .contact_text {
    text-align: center;
  }
  footer .contact .send_email {
    width: 100%;
  }
  footer #menu {
    width: 100%;
    align-items: center;
    margin: 40px 0px;
  }
  #about p {
    font-size: 20px;
  }
  #about .get_in_touch {
    display: none;
  }
  #about .contact_text {
    display: none;
  }
  #about .send_email {
    display: none;
  }
  #about .contact {
    margin: 20px 0px;
  }
  [data-cursor] {
    display: none;
  }
  #playground h1 {
    font-size: 48px;
  }
  #playground .portfolio_item {
    padding: 0px;
  }
  #playground img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    grid-column: span 1;
    grid-row: 2;
    cursor: pointer;
  }
  #playground img:nth-child(1) {
    grid-column: 1/span 2;
    grid-row: 1;
    height: auto;
  }
  #work img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    grid-column: span 1;
    grid-row: 2;
    cursor: pointer;
  }
  #work img:nth-child(1) {
    grid-column: 1/span 2;
    grid-row: 1;
    height: auto;
  }
  #work h2 {
    font-size: 24px;
  }
  #work p {
    font-size: 18px;
    font-weight: 300;
  }
  #hero {
    height: 350px;
  }
  #hero::before {
    height: 350px;
  }
  #hero .hero_text {
    width: 100%;
  }
  #hero h1 {
    font-size: 48px;
  }
  #hero p {
    font-size: 18px;
  }
  .lightbox .lightbox-content {
    width: 100%;
  }
}/*# sourceMappingURL=main.css.map */