@charset "UTF-8";
/* ========================================================================= */
/* !RESETS AND DEFAULTS */
/* ========================================================================= */
html, body, div, object, iframe, h1, h2, h3, h4, h5, h6, p,
blockquote, pre, abbr, address, cite, code, del, dfn, img,
ins, kbd, q, samp, var, hr, acronym, dl, dt, dd, ol, ul, li,
pre, fieldset, form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside, canvas, details,
figcaption, figure, footer, header, hgroup, menu, nav,
section, summary, time, mark, audio, video {
  border: 0;
  outline: 0;
  font-style: normal;
  font-size: 100%;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
}

em, strong, b, i, a, span, sub, sup, small {
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}

article, aside, details, figcaption, figure, footer,
header, hgroup, menu, nav, section {
  display: block;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border-top: 1px solid #000;
  color: #000;
}

input, select {
  vertical-align: middle;
}

sub {
  vertical-align: sub;
  font-size: smaller;
  line-height: 0px;
}

sup {
  vertical-align: super;
  font-size: smaller;
  line-height: 0px;
}

input, button, textarea, select, label, img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select, optgroup, option {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
}

input[type=text],
input[type=password],
input[type=url],
input[type=number],
input[type=tel],
input[type=email],
input[type=button],
input[type=submit],
button, textarea, select {
  -webkit-appearance: none;
}

textarea {
  resize: none;
  overflow: auto;
}

button, [type=submit], [type=button], [type=reset] {
  cursor: pointer;
  border: 0;
  text-align: center;
  background: transparent;
  color: inherit;
  padding: 0;
  margin: 0;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

table {
  table-layout: fixed;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
}

select::-ms-expand {
  display: none;
}

/* != FONT SMOOTHING */
body, input, button, textarea {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* != ms-clear */
input[type=text]::-ms-clear {
  display: none;
}

/* != BACKGROUND POSITION AND BOX SIZING */
*, *:before, *:after {
  box-sizing: border-box;
  background-position: center;
  background-repeat: no-repeat;
}

/* != .clearfix - CLEAR ELEMENTS */
.clear {
  clear: both;
}

.clearfix {
  display: block;
}
.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

/* != .wordwrap - CONTINUE LONG URLS/WORDS ON NEXT LINE */
.wordwrap {
  white-space: pre;
  white-space: pre-wrap;
  white-space: pre-line;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  white-space: -moz-pre-wrap;
  word-wrap: break-word;
}

svg path {
  d: revert-layer !important;
}

/* ========================================================================= */
/* !FONTS (@fontface generated with FontSpring Syntax formatting */
/* ========================================================================= */
@font-face {
  font-family: "Akrobat";
  src: url("../fonts/Akrobat/akrobat-thin-webfont.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Akrobat";
  src: url("../fonts/Akrobat/akrobat-extralight-webfont.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Akrobat";
  src: url("../fonts/Akrobat/akrobat-light-webfont.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Akrobat";
  src: url("../fonts/Akrobat/akrobat-regular-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Akrobat";
  src: url("../fonts/Akrobat/akrobat-bold-webfont.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Akrobat";
  src: url("../fonts/Akrobat/akrobat-semibold-webfont.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Akrobat";
  src: url("../fonts/Akrobat/akrobat-extrabold-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Akrobat";
  src: url("../fonts/Akrobat/akrobat-black-webfont.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
/* ========================================================================= */
/* !SASS VARIABLES & MIXINS */
/* ========================================================================= */
/*
    // Use Case: $b (second) variable is optional and defaults to 'max-width'

    @include break(1100){
        h1{
            background: red;
        }
    }

    // Output
    @media screen and (max-width: 1100px) {
        h1 { background: red; }
    }

    // Also, if you want to specify the 2nd variable for break type (i.e., min-height)

    @include break(1100, 'min-height'){
        h1 {
            background:red;
        }
    }

    // Output
    @media screen and (min-height: 1100px) {
        h1 { background: red; }
    }
*/
/*
    // inline SVGs
    // usage: background-image: inline-svg('<svg><!-- your svg code --></svg>');
*/
/* ========================================================================= */
/* !STYLES */
/* ========================================================================= */
/* != DEFAULT STYLES ===== */
html, body {
  scroll-behavior: smooth;
  font-family: Akrobat, Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  background: #111;
  color: #ccc;
  text-wrap: balance;
}

[id] {
  scroll-margin-top: 100px;
}

h1, .title1 {
  color: #fff;
  font-size: 4.3125rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 40px;
}
h1 strong, .title1 strong {
  font-weight: 400;
  background: linear-gradient(135deg, #6366f1, #a855f7, #ec4899);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
@media screen and (max-width: 600px) {
  h1, .title1 {
    font-size: 3.125rem;
  }
}

h2, .title2 {
  color: #fff;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  h2, .title2 {
    font-size: 2.5rem;
  }
}

h3, .title3 {
  color: #fff;
  font-size: 1.875rem;
  font-weight: 400;
}

h4, .title4 {
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
}

h5, .title5 {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 10px 0;
}

p {
  font-size: 1.125rem;
  margin: 0 0 20px 0;
}

.meta {
  text-transform: uppercase;
  font-size: 0.9375rem;
  color: #fff;
  letter-spacing: 0.05em;
  font-weight: 700;
  display: block;
}

a {
  color: #fff;
  text-decoration: underline;
}
a:hover {
  color: #ec4899;
}

hr {
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.1);
}

.btn {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  transition: 0.2s;
  background: linear-gradient(135deg, #6366f1, #a855f7, #ec4899);
  color: #000;
  padding: 10px 20px;
  border-radius: 50px;
  transition: 0.2s;
  font-weight: 700;
  font-size: 18px;
  position: relative;
  overflow: hidden;
}
.btn:before {
  background: #fff;
  content: "";
  position: absolute;
  inset: 0 0 0 0;
  z-index: 0;
  transition: 0.2s;
}
.btn span {
  position: relative;
  z-index: 1;
}
.btn:hover {
  color: #fff;
}
.btn:hover:before {
  opacity: 0;
}

.more {
  color: #fff;
  text-decoration: none;
  transition: 0.2s;
}
.more svg {
  fill: #fff;
  width: 33px;
  height: 11px;
  position: relative;
  left: 5px;
  transition: 0.2s;
}
.more:hover svg {
  fill: #ec4899;
  left: 10px;
}

.content-main ul:not([class*=gf]) > li {
  position: relative;
  padding-left: 10px;
}
.content-main ul:not([class*=gf]) > li:before {
  content: "•";
  position: absolute;
  left: 0;
}
.content-main ol {
  counter-reset: li;
}
.content-main ol > li {
  position: relative;
  padding-left: 20px;
}
.content-main ol > li:before {
  content: counter(li) ". ";
  counter-increment: li;
  position: absolute;
  right: calc(100% - 15px);
}

.socials {
  display: flex;
  gap: 16px;
}
.socials .social {
  height: 27px;
}
.socials .social:hover svg {
  fill: #000;
  background-color: #eaeaea;
}
.socials .social svg {
  fill: #fff;
  background-color: #000;
  padding: 2px;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  transition: all 0.2s;
}
.socials .social svg:hover {
  fill: #000;
}

::backdrop {
  background-color: rgba(0, 0, 0, 0.8);
}

/* != DEFAULT WORDPRESS STYLES = USE AS NEEDED = .wp-caption = .wp-caption-dd = .wpGallery = .shutter = .shutterset ==== */
.aligncenter {
  display: block;
  margin: 25px auto;
}

.alignleft {
  float: left;
  margin: 0 25px 25px 0;
}

.alignright {
  float: right;
  margin: 0 0 25px 25px;
}

.alignnone {
  display: inline-block;
}

/* != ACCESSIBILITY STYLES ===== */
.sr-only, .slick-sr-only {
  /* Styles below are so elements are shown to screen readers only */
  border: none !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 0.01em !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 0.01em !important;
}

*:focus {
  outline: 3px solid rgba(0, 0, 0, 0.5);
  outline-offset: 3px;
}

@supports selector(:focus-visible) {
  *:focus {
    outline: none;
  }
  *:focus-visible {
    outline: 3px solid rgba(0, 0, 0, 0.5);
    outline-offset: 3px;
  }
}
#skipnav {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  height: 30px;
  width: 150px;
  top: 0;
  left: 50%;
  margin-left: -75px;
  position: fixed;
  transform: translateY(-100%);
  transition: transform 0.3s;
  z-index: 9999999999;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
#skipnav:focus {
  transform: translateY(0%);
}

/* != SELECTION STYLES (Leaving these blank will show no indication of text selection) ===== */
/*
    ::selection         {
        background: #aaa;
        color: #fff;
    }
    ::-moz-selection    {
        background: #aaa;
        color: #fff;
    }
    ::-webkit-selection {
        background: #aaa;
        color: #fff;
    }
*/
/* != LAYOUT STYLES ===== */
.gradient-bg {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 0;
}

.gradient-bg::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(45deg, rgba(99, 102, 241, 0.04) 0%, rgba(168, 85, 247, 0.06) 25%, rgba(59, 130, 246, 0.03) 50%, rgba(147, 51, 234, 0.05) 75%, rgba(99, 102, 241, 0.04) 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  z-index: -1;
}

.gradient-bg::after {
  content: "";
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 70%, rgba(236, 72, 153, 0.06) 0%, transparent 50%), radial-gradient(circle at 70% 30%, rgba(34, 197, 94, 0.04) 0%, transparent 50%), radial-gradient(circle at 20% 20%, rgba(251, 146, 60, 0.05) 0%, transparent 40%), radial-gradient(circle at 80% 80%, rgba(14, 165, 233, 0.04) 0%, transparent 45%);
  animation: floatingOrbs 20s linear infinite;
  z-index: -1;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    ackground-position: 0% 50%;
  }
}
@keyframes floatingOrbs {
  0% {
    transform: rotate(0deg) scale(1);
  }
  33% {
    transform: rotate(120deg) scale(1.1);
  }
  66% {
    transform: rotate(240deg) scale(0.9);
  }
  100% {
    ransform: rotate(360deg) scale(1);
  }
}
.wrap {
  max-width: 1180px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

#header {
  position: fixed;
  padding: 20px 0;
  top: 0;
  left: 0;
  width: 100vw;
  background: transparent; /* Initial transparent background */
  z-index: 1000;
  transition: all 0.3s ease; /* Smooth transition for background and shadow */
}
#header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
}

#logo {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.social a {
  display: block;
}
.social a svg {
  fill: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: block;
  padding: 5px;
  transition: 0.2s;
}
.social a:hover svg {
  fill: #000;
  background: #fff;
}

.main-nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 20px;
}

#main-nav > ul > li {
  display: inline-block;
  position: relative;
}
#main-nav > ul > li > a {
  padding: 17px 15px 15px;
  display: block;
  color: #000;
  font-weight: 600;
}
#main-nav > ul > li > a:hover, #main-nav > ul > li > a:focus {
  color: #fff;
  background-color: #555;
}
#main-nav > ul > li .sub-menu-wrap {
  display: block;
  background: #555;
  width: 300px;
  padding: 30px 20px;
  position: absolute;
}
#main-nav > ul > li .sub-menu-wrap ul[aria-hidden=true] {
  display: none;
}
#main-nav > ul > li .sub-menu-wrap li {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 0;
}
#main-nav > ul > li .sub-menu-wrap li a {
  color: #fff;
  text-decoration: none;
}
#main-nav > ul > li.menu-item-has-children {
  position: relative;
}
#main-nav > ul > li.menu-item-has-children > .menu-toggle-button {
  width: 0;
  height: 0;
  border: none;
  padding: 0;
  margin: 0;
  background-color: none;
  position: absolute;
  right: 0;
  top: 50%;
}
@media screen and (min-width: 769px) {
  #main-nav > ul > li.menu-item-has-children:hover .sub-menu-wrap ul {
    display: block;
  }
}
#main-nav > ul > li.menu-item-has-children:hover > a {
  color: #fff;
  background-color: #555;
}
@media screen and (min-width: 769px) {
  #main-nav > ul > li.menu-item-has-children.active .sub-menu-wrap ul {
    display: block;
  }
}
#main-nav > ul > li.menu-item-has-children.active > a {
  color: #fff;
  background-color: #555;
}

#menu-toggle {
  display: none;
}
#banner {
  padding: 200px 0 0 0;
}
#banner .banner-text {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 80px;
}
#banner .banner-text p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 650px) {
  #banner {
    padding: 150px 0 0 0;
  }
}
@media screen and (max-width: 600px) {
  #banner .banner-text {
    text-align: left;
  }
  #banner .banner-text p {
    font-size: 1.25rem;
  }
}

section {
  margin: 100px 0;
}
section.mod-contact {
  margin: 0;
  padding: 100px 0;
}
@media screen and (max-width: 760px) {
  section {
    margin: 80px 0;
  }
  section.mod-contact {
    margin: 0;
    padding: 80px 0;
  }
}

.mod-services .service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 60px;
  margin-bottom: 40px;
}
.mod-services .service-grid article {
  text-align: center;
}
.mod-services .btn {
  margin: 0 auto;
  display: block;
  width: fit-content;
}
@media screen and (max-width: 760px) {
  .mod-services .service-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .mod-services .service-grid article {
    text-align: left;
  }
  .mod-services .btn {
    margin: 0;
  }
}

#body-content {
  position: relative;
  z-index: 1;
}

.mod-portfolio-grid .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
.mod-portfolio-grid .portfolio-grid a {
  color: #fff;
  display: block;
  text-decoration: none;
}
.mod-portfolio-grid .portfolio-grid a img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  display: block;
  transition: 0.2s;
  border-radius: 10px;
}
.mod-portfolio-grid .portfolio-grid a .portfolio-title {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 20px;
}
.mod-portfolio-grid .portfolio-grid a .portfolio-title svg {
  margin: 17px 0 0 0;
  fill: #fff;
  width: 33px;
  height: 11px;
  position: relative;
  left: 0;
  transition: 0.2s;
}
.mod-portfolio-grid .portfolio-grid a:hover img {
  transform: scale(1.02);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.5);
}
.mod-portfolio-grid .portfolio-grid a:hover .portfolio-title svg {
  margin: 17px 0 0 0;
  left: 5px;
}
@media screen and (max-width: 700px) {
  .mod-portfolio-grid .portfolio-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.mod-cta-strip .cta-strip {
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.mod-cta-strip .cta-strip form {
  margin-bottom: 0;
}
@media screen and (max-width: 500px) {
  .mod-cta-strip .cta-strip form {
    flex-direction: column;
  }
  .mod-cta-strip .cta-strip form input[type=text],
  .mod-cta-strip .cta-strip form input[type=email] {
    width: 100%;
    max-width: 100%;
  }
}

.contact-card {
  text-align: center;
  padding: 50px 0;
}
.contact-card img {
  width: 175px;
  border-radius: 50%;
}
.contact-card h2 {
  margin: 20px 0 40px 0;
}
.contact-card .btn {
  width: 100%;
}
.contact-card .social {
  width: 100%;
  margin-top: 20px;
}

.qr {
  height: 100vh;
  display: flex;
  align-items: center;
}
.qr img {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  display: block;
}

.mod-contact {
  background: rgba(0, 0, 0, 0.3);
}
.mod-contact .wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 60px;
}
.mod-contact .contact-text {
  flex: 0 0 calc(50% - 30px);
}
.mod-contact .contact-text h2 {
  font-size: 3.5rem;
}
.mod-contact .contact-text ul {
  margin-top: 40px;
}
.mod-contact .contact-text ul li {
  margin: 0 0 20px 0;
}
.mod-contact .contact-text ul li strong {
  display: block;
}
.mod-contact form {
  flex: 0 0 calc(50% - 30px);
}
.mod-contact form div {
  margin: 0 0 20px 0;
}
@media screen and (max-width: 700px) {
  .mod-contact .contact-text {
    flex: 0 0 100%;
  }
  .mod-contact .contact-text h2 {
    font-size: 3.125rem;
  }
  .mod-contact form {
    flex: 0 0 100%;
  }
}

.mod-testimonials {
  background: rgba(0, 0, 0, 0.3);
  padding: 100px 0;
}
.mod-testimonials .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 60px;
  margin-bottom: 40px;
}
.mod-testimonials .testimonial-grid article {
  text-align: center;
}
.mod-testimonials .testimonial-grid article p {
  font-size: 1.25rem;
  margin-bottom: 20px;
}
.mod-testimonials .testimonial-grid article cite {
  font-size: 1rem;
  font-weight: 600;
}
@media screen and (max-width: 760px) {
  .mod-testimonials .testimonial-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.onscreen {
  transition: 0.5s;
  transition-delay: 0.1s;
  position: relative;
}

.offscreen {
  opacity: 0;
  transition: 0.5s;
  transition-delay: 0.1s;
  position: relative;
}

.portfolio-header {
  padding: 200px 0 0 0;
}
.portfolio-header .project-tags {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 60px;
}
.portfolio-header .project-tags .site-link {
  flex: 1;
  text-align: right;
}
.portfolio-header .project-tags ul li {
  font-size: 0.875rem;
}
@media screen and (max-width: 650px) {
  .portfolio-header {
    padding: 150px 0 0 0;
  }
  .portfolio-header .project-tags {
    flex-wrap: wrap;
  }
  .portfolio-header .project-tags .site-link {
    flex: 1;
    text-align: left;
  }
  .portfolio-header .project-tags article {
    flex: 1 0 calc(33.333% - 60px);
    text-align: left;
  }
}
@media screen and (max-width: 450px) {
  .portfolio-header .project-tags {
    gap: 30px;
  }
  .portfolio-header .project-tags article {
    flex: 1 0 100%;
    text-align: left;
  }
}

.banner-interior {
  padding: 200px 0 0 0;
}
@media screen and (max-width: 650px) {
  .banner-interior {
    padding: 150px 0 0 0;
  }
}

.portfolio-items {
  margin-top: 0;
}
.portfolio-items .items {
  text-align: center;
  padding: 100px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 30px;
}
.portfolio-items .items img {
  border-radius: 10px;
}
.portfolio-items .items.item-3 img {
  max-width: 330px;
}
.portfolio-items .items .mobile-left,
.portfolio-items .items .mobile-right {
  transform: scale(0.9);
  left: 0;
  right: 0;
}
.portfolio-items .items .mobile-center {
  top: 0;
  transition-delay: 0.1s;
}
.portfolio-items .items .mobile-center.offscreen {
  top: 30px;
}
.portfolio-items .items .mobile-left {
  left: 0;
  transition-delay: 0.2s;
}
.portfolio-items .items .mobile-left.offscreen {
  left: -30px;
}
.portfolio-items .items .mobile-right {
  left: 0;
  transition-delay: 0.3s;
}
.portfolio-items .items .mobile-right.offscreen {
  left: 30px;
}
.portfolio-items .btn {
  margin: 0 auto;
  display: block;
  width: fit-content;
}

#footer {
  background: rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
  padding: 30px 0;
}
#footer p {
  margin: 0;
  font-size: 12px;
}
#footer p a {
  color: inherit;
  text-decoration: underline;
}

/* != PLACEHOLDER ATTRIBUTE STYLES = input or textarea - placeholder="whatever" ===== */
::-webkit-input-placeholder {
  color: #aaa;
}

::-moz-placeholder {
  color: #aaa;
}

/* != FORM STYLES ===== */
label:not(fieldset label),
fieldset legend {
  position: absolute;
  left: -9999px;
}

input[type=text], input[type=password], input[type=url], input[type=number], input[type=tel], input[type=email] {
  color: #fff;
  width: 100%;
  padding: 15px 20px;
  background-color: rgba(0, 0, 0, 0.4);
  border: 1px solid #333;
  border-radius: 10px;
}
input[type=text]:focus, input[type=password]:focus, input[type=url]:focus, input[type=number]:focus, input[type=tel]:focus, input[type=email]:focus {
  border-color: #fff;
  outline: none;
}

textarea {
  color: #fff;
  width: 100%;
  padding: 15px 20px;
  background-color: rgba(0, 0, 0, 0.4);
  border: 1px solid #333;
  border-radius: 10px;
}
textarea:focus {
  border-color: #fff;
  outline: none;
}

/* .ginput_container_checkbox {
	.gfield_checkbox {
		.gchoice {
			label {
				padding: 0 0 0 2px;
				cursor: pointer;
				position: relative;
				&:before {
					border: 1px solid #00f;
					@include size(15px);
					border-radius: 2px;
					left: -17px;
					top: 1px;
					content: '';
					position: absolute;
					opacity: 1;
				}
				&:after {
					border-left: 3px solid #f00;
					border-bottom: 3px solid #f00;
					@include size(17px, 6px);
					transform: rotate(-45deg);
					top: 5px;
					left: -14px;
					content: '';
					position: absolute;
					opacity: 0;
				}
				&:hover {
					&:after {
						opacity: 0.3;
					}
				}
			}
			input[type=checkbox] {
				visibility: hidden;
				&:checked + label:after {
					opacity: 1;
				}
			}
		}
	}
}
.ginput_container_radio {
	.gfield_radio {
		.gchoice {
			label {
				padding: 0 0 0 2px;
				cursor: pointer;
				position: relative;
				&:before {
					border: 1px solid #00f;
					@include size(15px);
					border-radius: 50%;
					left: -17px;
					top: 1px;
					content: '';
					position: absolute;
					opacity: 1;
				}
				&:after {
					@include size(5px);
					border-radius: 50%;
					left: -12px;
					top: 6px;
					content: '';
					position: absolute;
					opacity: 0;
				}
				&:hover {
					&:after {
						opacity: 0.3;
					}
				}
			}
			input[type=radio] {
				visibility: hidden;
				&:checked + label:before {
					background: #f00;
					border: 1px solid #f00;
				}
				&:checked + label:after {
					background: #fff;
					opacity: 1;
				}
			}
		}
	}
} */
.lead-capture {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 20px;
  margin: 40px 0;
}
.lead-capture input {
  max-width: 250px;
}

input[type=submit], button {
  display: inline-block;
  cursor: pointer;
}
select {
  padding: 10px 35px 10px 15px;
  width: 100%;
  background: #fff url("data:image/svg+xml,%3Csvg width%3D%2213%22 height%3D%228%22 viewBox%3D%220 0 13 8%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath d%3D%22M.293.293c.36-.36.928-.388 1.32-.083l.094.083L6.51 5.096 11.313.293c.36-.36.928-.388 1.32-.083l.094.083c.36.36.389.928.084 1.32l-.084.094-5.51 5.51c-.36.36-.927.388-1.32.083l-.094-.083-5.51-5.51c-.39-.39-.39-1.024 0-1.414z%22 fill%3D%22%23f00%22 fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E") no-repeat calc(100% - 10px) 50%;
  border: 1px solid #f00;
}

.gform_validation_errors {
  background-color: #c00;
  color: #fff;
  padding: 20px;
}
.gform_validation_errors h2 {
  color: #fff;
}

.gform_validation_container {
  position: absolute;
  top: -9999px;
  left: -9999px;
  pointer-events: none;
  opacity: 0;
}
/*# sourceMappingURL=style.css.map */