@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2"), url("../fonts/Gilroy-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2"), url("../fonts/Gilroy-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Semibold.woff2") format("woff2"), url("../fonts/Gilroy-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Bold.woff2") format("woff2"), url("../fonts/Gilroy-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --primary-color: #000000;
  --secondary-color: #ffffff;
  --accent-color: linear-gradient(to right, #FF0000, #FF00DD, #FD8F00);
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  font-family: "Gilroy", sans-serif;
  margin: 0;
  padding: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  overflow-x: hidden;
	z-index: 0;
	position: relative;
}
body.menu-open {
  opacity: 1;
}
body.menu-open section,
body.menu-open footer {
  pointer-events: none;
}
body.menu-open header {
  opacity: 1;
  pointer-events: auto;
}
body.menu-open section.acting-reels {
  opacity: 0 !important;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
body.menu-open section.contact-form {
  opacity: 0 !important;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

h2 {
  font-size: 4rem;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0;
  padding: 0;
  color: var(--secondary-color);
  text-align: center;
}

h4 {
  font-size: 3rem;
  font-weight: 500;
  margin: 20px 0px 20px 0px;
  padding: 0;
  color: var(--secondary-color);
  text-align: center;
  text-transform: capitalize;
}

p {
  font-size: 2rem;
  font-weight: 400;
  margin: 10px auto;
  padding: 0;
  color: var(--secondary-color);
  text-align: center;
  text-transform: capitalize;
  width: 60%;
}

a.featured-btn {
  display: block;
  border: 1px solid var(--secondary-color);
  border-radius: 2rem;
  text-align: center;
  padding: 16px 20px;
  color: var(--secondary-color);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 2rem;
  cursor: pointer;
  background: transparent;
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.5s ease all;
  transition: 0.5s ease all;
  z-index: 0;
  text-transform: capitalize;
  text-decoration: none;
}
a.featured-btn.black {
  border-color: var(--primary-color);
  color: var(--primary-color);
}
a.featured-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#FF0000), color-stop(#FF00DD), to(#FD8F00));
  background: linear-gradient(to right, #FF0000, #FF00DD, #FD8F00);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: -1;
}
a.featured-btn:hover {
  border-color: transparent;
  color: var(--secondary-color);
}
a.featured-btn:hover::before {
  opacity: 1;
}

.buttons-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px auto;
}
.buttons-wrapper a.featured-btn {
  margin: 0;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
header .header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 30rem;
}

.hamburger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 100000;
  position: relative;
}
.hamburger .hamburger-line {
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 3px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hamburger:hover .hamburger-line {
  background: -webkit-gradient(linear, left top, right top, from(#FF0000), color-stop(#FF00DD), to(#FD8F00));
  background: linear-gradient(to right, #FF0000, #FF00DD, #FD8F00);
}

.nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgb(0, 0, 0);
  backdrop-filter: blur(10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 99999;
  pointer-events: none;
}
.nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.nav-menu ul li {
  margin-bottom: 40px;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}
.nav-menu ul li:nth-child(1) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.nav-menu ul li:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.nav-menu ul li:nth-child(3) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.nav-menu ul li:nth-child(4) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.nav-menu ul li a {
  color: var(--secondary-color);
  text-decoration: none;
  font-size: 4rem;
  font-weight: 600;
  display: block;
  -webkit-transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: color 0.3s ease, transform 0.3s ease;
  transition: color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  text-transform: capitalize;
}
.nav-menu ul li a:hover {
  color: transparent;
  background: -webkit-gradient(linear, left top, right top, from(#FF0000), color-stop(#FF00DD), to(#FD8F00));
  background: linear-gradient(to right, #FF0000, #FF00DD, #FD8F00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.hamburger.active ~ .nav-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.hamburger.active ~ .nav-menu ul li {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.hamburger.active .hamburger-line {
  background-color: var(--secondary-color);
}
.hamburger.active .hamburger-line:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(8px, 8px);
          transform: rotate(45deg) translate(8px, 8px);
}
.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger.active .hamburger-line:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(7px, -7px);
          transform: rotate(-45deg) translate(7px, -7px);
}

.floating-nav {
  position: absolute;
  bottom: 10rem;
  right: 34rem;
}
.floating-nav ul {
  list-style: none;
  display: -ms-grid;
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.floating-nav ul:before {
  content: "";
  position: absolute;
  top: 0px;
  width: 1px;
  height: calc(100% - 3px);
  background: rgba(0, 0, 0, 0.3137254902);
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  right: -30px;
}
.floating-nav ul li {
  text-align: right;
  position: relative;
  padding: 0;
  margin: 0;
  -webkit-transition: 0.5s ease all;
  transition: 0.5s ease all;
}
.floating-nav ul li:before {
  content: "";
  position: absolute;
  top: 2px;
  width: 16px;
  height: 16px;
  background: #B2B2B2;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  border-radius: 100%;
  right: -38px;
  -webkit-transition: 0.5s ease all;
  transition: 0.5s ease all;
}
.floating-nav ul li:after {
  content: "";
  position: absolute;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #000000;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  border-radius: 100%;
  right: -40px;
  -webkit-transition: 0.5s ease all;
  transition: 0.5s ease all;
}
.floating-nav ul li:hover:before {
  background: #000000;
}
.floating-nav ul li:hover:after {
  border: 1px solid #000000;
}
.floating-nav ul li:hover a {
  opacity: 0.7;
}
.floating-nav ul a {
  padding: 0;
  margin: 0;
  text-align: right;
  font-size: 1.8rem;
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
  text-transform: capitalize;
  -webkit-transition: 0.5s ease all;
  transition: 0.5s ease all;
  opacity: 1;
}
.floating-nav ul a:hover {
  opacity: 0.5;
}

section.hero {
  height: 100vh;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#C1BDB9), to(#EAE4E2));
  background: linear-gradient(to right, #C1BDB9, #EAE4E2);
  color: var(--primary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 9;
}
section.hero h1 {
  font-size: 16rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  position: absolute;
  top: 18rem;
  z-index: -1;
}
section.hero h1.stroked {
  z-index: 1;
  -webkit-text-stroke: 0.5px rgba(214, 209, 205, 0.3098039216);
  -webkit-text-fill-color: transparent;
  color: transparent;
}
section.hero img.portrait {
  width: 50rem;
}

.crevon-films-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 10px 0;
  background-color: var(--primary-color);
}

.crevon-films-slider-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: slideInfinite 40s linear infinite;
          animation: slideInfinite 40s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.crevon-films-slider-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  white-space: nowrap;
}
.crevon-films-slider-item img {
  height: auto;
  max-height: 60px;
  width: auto;
  display: block;
}
.crevon-films-slider-item svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@-webkit-keyframes slideInfinite {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}

@keyframes slideInfinite {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}
section.acting-reels {
  padding: 10rem 0;
  background-image: url("../images/acting-reels-bg.jpg");
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
section.acting-reels .acting-reels-wrapper {
  padding: 6rem 20rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
section.acting-reels .acting-reels-wrapper .acting-reel-item {
  border-radius: 4rem;
  width: 25%;
  height: 60rem;
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(#FF0000), color-stop(#FF00DD), to(#FD8F00));
  background: linear-gradient(to right, #FF0000, #FF00DD, #FD8F00);
  padding: 1px;
}
section.acting-reels .acting-reels-wrapper .acting-reel-item .insta-overlay {
  position: absolute;
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.5s ease all;
  transition: 0.5s ease all;
}
section.acting-reels .acting-reels-wrapper .acting-reel-item .insta-overlay:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: 4rem;
  background-color: rgba(0, 0, 0, 0.4392156863);
  top: 1px;
  left: 1px;
  z-index: 2;
}
section.acting-reels .acting-reels-wrapper .acting-reel-item .insta-overlay img {
  width: 30px;
  height: 30px;
  border-radius: 0;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 3;
}
section.acting-reels .acting-reels-wrapper .acting-reel-item .insta-overlay img:first-child {
  position: absolute;
  top: 40px;
  right: 20px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
section.acting-reels .acting-reels-wrapper .acting-reel-item .insta-overlay img:last-child {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
section.acting-reels .acting-reels-wrapper .acting-reel-item .insta-overlay.playing {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
section.acting-reels .acting-reels-wrapper .acting-reel-item video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4rem;
}

section.directing-reels {
  padding: 10rem 0;
  background-image: url("../images/directing-reels-bg.jpg");
  width: 100%;
}
section.directing-reels .yt-wrapper {
  position: relative;
  width: 60%;
  height: 100%;
  border-radius: 4rem;
  min-height: 60rem;
  max-height: 80rem;
  margin: 4rem auto;
  background: -webkit-gradient(linear, left top, right top, from(#FF0000), color-stop(#FF00DD), to(#FD8F00));
  background: linear-gradient(to right, #FF0000, #FF00DD, #FD8F00);
}
section.directing-reels .yt-wrapper .yt-overlay {
  border-radius: 4rem;
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  z-index: 1;
  background-image: url(../images/yt-thumbnail.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  top: 1px;
  left: 1px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.5s ease all;
  transition: 0.5s ease all;
}
section.directing-reels .yt-wrapper .yt-overlay img {
  z-index: 2;
  pointer-events: none;
}
section.directing-reels .yt-wrapper .yt-overlay::before {
  border-radius: 4rem;
  content: "";
  background: rgba(0, 0, 0, 0.3215686275);
  backdrop-filter: blur(4px);
  z-index: 1;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  position: absolute;
  top: 1px;
  left: 1px;
  pointer-events: none;
}
section.directing-reels .yt-wrapper .yt-overlay.playing {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
section.directing-reels .yt-wrapper iframe {
  border-radius: 4rem;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  -o-object-fit: cover;
     object-fit: cover;
  padding: 1px;
  min-height: inherit;
}

section.get-a-quote {
  background-image: url(../images/get-a-quote-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 36vw;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.get-a-quote .content-wrapper {
  width: 50%;
  padding-left: 40rem;
}
section.get-a-quote .content-wrapper h1 {
  text-transform: capitalize;
  font-size: 8rem;
  font-weight: 600;
  margin-bottom: 10px;
}
section.get-a-quote .content-wrapper a.featured-btn {
  margin: 0;
}

footer.footer {
  background-image: url(../images/footer-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 30rem;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 20px;
}
footer.footer .social-wrapper ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  gap: 20px;
}
footer.footer .social-wrapper ul li a {
  text-decoration: none;
  border-radius: 100%;
  background: transparent;
  height: 50px;
  width: 50px;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid var(--secondary-color);
  position: relative;
  overflow: hidden;
  -webkit-transition: border-color 0.5s ease;
  transition: border-color 0.5s ease;
  z-index: 0;
}
footer.footer .social-wrapper ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#FF0000), color-stop(#FF00DD), to(#FD8F00));
  background: linear-gradient(to right, #FF0000, #FF00DD, #FD8F00);
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  z-index: -1;
  border-radius: 100%;
}
footer.footer .social-wrapper ul li a:hover {
  border-color: transparent;
}
footer.footer .social-wrapper ul li a:hover::before {
  opacity: 1;
}
footer.footer .social-wrapper ul li a img {
  width: auto;
  height: 20px;
  position: relative;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
footer.footer .social-wrapper ul li a:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
footer.footer p.copyrights {
  width: 100%;
}

section.contact-form {
  padding: 80px 20px;
  background-image: url(../images/directing-reels-bg.jpg);
  min-height: auto;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}
section.contact-form .form-wrapper {
  background: rgba(255, 255, 255, 0.0156862745);
  backdrop-filter: blur(30px);
  border-radius: 3.2rem;
  padding: 6rem 0;
  max-width: 120rem;
  margin-left: auto;
  margin-right: auto;
}
section.contact-form .form {
  max-width: 100rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
  margin-top: 6rem;
}
section.contact-form .form .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  width: 100%;
}
section.contact-form .form .form-row.form-row-button {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
section.contact-form .form .form-row .form-group {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  position: relative;
}
section.contact-form .form .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  position: relative;
}
section.contact-form .form .form-group label {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--secondary-color);
  text-transform: capitalize;
}
section.contact-form .form .form-group input[type=text],
section.contact-form .form .form-group input[type=email],
section.contact-form .form .form-group input[type=tel] {
  width: calc(100% - 40px);
}
section.contact-form .form .form-group input[type=text],
section.contact-form .form .form-group input[type=email],
section.contact-form .form .form-group input[type=tel],
section.contact-form .form .form-group select {
  padding: 26px 6px 26px 34px;
  border: 1px solid var(--secondary-color);
  border-radius: 1rem;
  background: rgba(217, 217, 217, 0.04) !important;
  color: rgba(255, 255, 255, 0.2) !important;
  font-size: 1.6rem;
  font-family: var(--font-family);
  outline: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 0;
}
section.contact-form .form .form-group input[type=text]:focus,
section.contact-form .form .form-group input[type=email]:focus,
section.contact-form .form .form-group input[type=tel]:focus,
section.contact-form .form .form-group select:focus {
  border-color: transparent;
  background: rgba(255, 255, 255, 0.4);
}
section.contact-form .form .form-group input[type=text]::-webkit-input-placeholder, section.contact-form .form .form-group input[type=email]::-webkit-input-placeholder, section.contact-form .form .form-group input[type=tel]::-webkit-input-placeholder, section.contact-form .form .form-group select::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.2) !important;
}
section.contact-form .form .form-group input[type=text]::-moz-placeholder, section.contact-form .form .form-group input[type=email]::-moz-placeholder, section.contact-form .form .form-group input[type=tel]::-moz-placeholder, section.contact-form .form .form-group select::-moz-placeholder {
  color: rgba(255, 255, 255, 0.2) !important;
}
section.contact-form .form .form-group input[type=text]:-ms-input-placeholder, section.contact-form .form .form-group input[type=email]:-ms-input-placeholder, section.contact-form .form .form-group input[type=tel]:-ms-input-placeholder, section.contact-form .form .form-group select:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.2) !important;
}
section.contact-form .form .form-group input[type=text]::-ms-input-placeholder, section.contact-form .form .form-group input[type=email]::-ms-input-placeholder, section.contact-form .form .form-group input[type=tel]::-ms-input-placeholder, section.contact-form .form .form-group select::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.2) !important;
}
section.contact-form .form .form-group input[type=text]::placeholder,
section.contact-form .form .form-group input[type=email]::placeholder,
section.contact-form .form .form-group input[type=tel]::placeholder,
section.contact-form .form .form-group select::placeholder {
  color: rgba(255, 255, 255, 0.2) !important;
}
section.contact-form .form .form-group select {
  width: 100%;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 50px;
}
section.contact-form .form .form-group select option {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}
section.contact-form .form .form-group .error-message {
  color: #FF0000;
  font-size: 1.4rem;
  min-height: 20px;
  display: block;
  margin-top: 5px;
}
section.contact-form .form .form-group input.error,
section.contact-form .form .form-group select.error {
  border-color: #FF0000;
}
section.contact-form .form .submit-btn {
  display: block;
  border: 1px solid var(--secondary-color);
  border-radius: 2rem;
  text-align: center;
  padding: 16px 40px;
  color: var(--secondary-color);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  font-size: 2rem;
  cursor: pointer;
  background: transparent;
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.5s ease all;
  transition: 0.5s ease all;
  z-index: 0;
  text-transform: capitalize;
  font-family: var(--font-family);
  font-weight: 500;
}
section.contact-form .form .submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#FF0000), color-stop(#FF00DD), to(#FD8F00));
  background: linear-gradient(to right, #FF0000, #FF00DD, #FD8F00);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: -1;
}
section.contact-form .form .submit-btn:hover {
  border-color: transparent;
  color: var(--secondary-color);
}
section.contact-form .form .submit-btn:hover::before {
  opacity: 1;
}
section.contact-form .form .submit-btn:active {
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}
section.contact-form .form .submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
section.contact-form .form .form-message {
  text-align: center;
  padding: 15px;
  border-radius: 2rem;
  font-size: 1.6rem;
  margin-top: 10px;
  display: none;
}
section.contact-form .form .form-message.success {
  display: block;
  background-color: rgba(0, 255, 0, 0.2);
  color: #00ff00;
  border: 1px solid #00ff00;
}
section.contact-form .form .form-message.error {
  display: block;
  background-color: rgba(255, 0, 0, 0.2);
  color: #ff0000;
  border: 1px solid #ff0000;
}

section.splash {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  width: 100vw;
  height: 100vh;
  background-color: var(--primary-color);
  gap: 40px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  opacity: 1;
  -webkit-transition: opacity 0.8s ease-in-out;
  transition: opacity 0.8s ease-in-out;
  pointer-events: auto;
  cursor: pointer;
}
section.splash.fade-out {
  opacity: 0;
  pointer-events: none;
}
section.splash.hidden {
  display: none;
}
section.splash img {
  width: 30rem;
  height: auto;
  margin: 0;
  padding: 0;
  pointer-events: none;
}
section.splash a {
  pointer-events: auto;
  cursor: pointer;
}
footer.footer .social-wrapper ul {
	justify-content: center;
	padding-left: 0;
}