@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


@font-face {
  font-family: 'osttrola_freeregular';
  src: url('../fonts/osttrola_free-webfont.woff2') format('woff2'),
    url('../fonts/osttrola_free-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

:root {
  /* Light Mode Variables */
  --primary-color: #f6c004;
  --secondary-color: #d5b785;
  --text-color-dark: #111;
  --text-color-light: #fff;
  --background-light: #fff;
  --background-dark: #f2f2f2;
  --nav-background-color: transparent;
  --btn-border-color: #f6c004;
  --btn-text-color: #f6c004;
  --shadow-color: rgba(0, 0, 0, 0.2);
  --subline-color: #3a3a3a;
  --rule-color: #f6c004;
  --text-muted-color: rgba(68, 68, 68, 0.4);
  --section-background-color: #fff;
  --section-dark-background-color: #111;
  --section-team-background-color: #111;
  --section-light-background-color: rgb(248, 248, 248);
  --section-projects-background-color: #f2f2f2;
  --overlay-color: black;
  --project-template-background: rgb(0, 0, 0);
  --cover-background: rgb(0, 0, 0);
  --footer-background: #fff;
  --sub-contact-bg: #f6c004;
  --card-border-color: #EEE;
  --button-hover-bg: #f6c004;
  --button-hover-color: #fff;
  --link-color: #333;
  --pronounciation-color: #666;
}

.dark-mode {
  /* Dark Mode Overrides */
  --primary-color: #f6c004;
  --secondary-color: #d5b785;
  --text-color-dark: #fff;
  --text-color-light: #111;
  --background-light: #111;
  --background-dark: #333;
  --nav-background-color: transparent;
  --btn-border-color: #d5b785;
  --btn-text-color: #fff;
  --shadow-color: rgba(149, 149, 149, 0.2);
  --subline-color: #ffffff;
  --rule-color: #d5b785;
  --text-muted-color: rgba(255, 255, 255, 0.4);
  --section-background-color: #111;
  --section-team-background-color: #000000;
  --section-dark-background-color: #fff;
  --section-light-background-color: #696969;
  --section-projects-background-color: #111;
  --overlay-color: rgb(210, 210, 210);
  --project-template-background: #111;
  --cover-background: #111;
  --footer-background: #111;
  --sub-contact-bg: #111;
  --card-border-color: #fff;
  --button-hover-bg: #f6c004;
  --button-hover-color: #111;
  --link-color: #fff;
  --pronounciation-color: #b0b0b0;
}

#callbacks-placeholder {
  position: fixed;
  top: 70px;
  left: 50px;
  z-index: 5000;
  background-color: rgba(255, 255, 255, 0.466);
  display: none;
}

#callbacks-placeholder p {
  font-size: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

html {
  /* height: 100%; */
  width: 100%;
  letter-spacing: 1px;
}

body {
  /* height: 100%; */
  width: 100%;
  background-color: var(--background-light);
  /* overflow: hidden; */
}

/* -------------- Scroll Bar -------------- */

::-webkit-scrollbar {
  width: 5px;
}

ab::-webkit-scrollbar-track {
  background: var(--background-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--text-color-dark);
  cursor: pointer;
}

/* -------------- title -------------- */

.title {
  background: var(--background-light);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation-duration: 0.5s;
  animation-delay: 0s;
}

.headline {
  font-family: 'osttrola_freeregular';
  color: var(--primary-color);
  font-size: 350px;
  text-shadow: 10px 10px 10px var(--shadow-color);
  animation-duration: 2s;
  animation-delay: 0.25s;
}

.overline {
  color: var(--link-color);
  font-size: 40px;
  font-weight: bolder;
  position: absolute;
  letter-spacing: 120px;
  margin-left: 120px;
  text-shadow: 5px 5px 5px var(--shadow-color);
  animation-duration: 3s;
  animation-delay: 0.75s;
}

.subline {
  color: var(--subline-color);
  font-size: 20px;
  position: absolute;
  margin-top: 170px;
  letter-spacing: 15px;
  text-shadow: 5px 5px 5px var(--shadow-color);
  animation-duration: 2.5s;
  animation-delay: 1.5s;
}

.icon-scroll,
.icon-scroll:before {
  position: absolute;
  left: 50%;
  z-index: 10;
}

.icon-scroll {
  width: 30px;
  height: 50px;
  margin-left: -15px;
  top: 90%;
  margin-top: -35px;
  box-shadow: inset 0 0 0 2px var(--primary-color);
  border-radius: 25px;
  animation-duration: 3s;
  animation-delay: 2.5s;
}

.icon-scroll-animation {
  animation-duration: 2s;
  animation-delay: 1s;
}

.scrollS {
  animation-duration: 1s;
  animation-delay: 0s;
}

.icon-scroll:before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--text-color-dark);
  margin-left: -4px;
  top: 8px;
  border-radius: 4px;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: scroll;
  animation-name: scroll;
}

@-webkit-keyframes scroll {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(27px);
    transform: translateY(27px);
  }
}

@keyframes scroll {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(27px);
    transform: translateY(27px);
  }
}

/* -------------- homepage -------------- */

/* ---- nav ---- */

nav {
  background-color: var(--nav-background-color);
  box-shadow: none;
  position: fixed;
  z-index: 500;
  top: 0px;
  padding: 5px 30px 70px 30px;
  display: none;
  animation-duration: 2s;
  animation-delay: 0.5s;
}

.sidenav-trigger {
  left: -20px;
}


.mobile-burger {
  color: var(--primary-color);
  margin: 0;
  font-size: 35px !important;
}

.brand-logo {
  margin-top: 10px;
  width: 40px;
}

.logo-fill {
  fill: var(--text-color-dark);
}

.logo-dot {
  fill: var(--primary-color);
}

nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  right: 50%;
  position: absolute;
}

nav ul a {
  color: var(--text-color-dark);
  font-size: 1em;
  font-weight: bold;
  padding: 2.7px 15px;
  font-family: 'Roboto', sans-serif;
}

nav ul a:hover {
  color: var(--primary-color);
  background: none;
}

nav ul li.active {
  background: none;
}

nav ul li.active a {
  color: var(--primary-color);
}

.btn {
  border-radius: 0;
  padding: 0 20px;
  height: auto;
  font-weight: bold;
  border: 2px solid var(--btn-border-color);
  color: var(--btn-text-color);
  background-color: transparent !important;
  box-shadow: none;
  text-shadow: none;
}

.btn:hover {
  color: var(--button-hover-color);
  background-color: var(--button-hover-bg) !important;
  box-shadow: none;
}

.login {
  top: 20px;
  right: 0px;
  height: auto;
  position: absolute;
  margin-right: 20px !important;
  background-color: var(--background-light) !important;
  border-radius: 20px;
}

.login:hover {
  border-color: var(--background-light) !important;
}

/* ---- social ---- */

.social {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  right: 30px;
  display: none;
}

.social i {
  font-size: 1.4em;
  padding: 10px;
  color: var(--text-color-dark);
}

.social i:hover {
  cursor: pointer;
}

/* ---- scroll ---- */

.scroll {
  display: none;
  position: absolute;
  right: 125px;
  bottom: 175px;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}

.scroll p {
  overflow: hidden;
  text-align: center;
  width: 100px;
  font-size: 12px;
  color: var(--secondary-color);
}

.scroll p:before,
.scroll p:after {
  content: "";
  display: inline-block;
  height: 2px;
  position: relative;
  vertical-align: middle;
}

.scroll p:before {
  right: 0.5em;
  margin-left: -50%;
  width: 50%;
  background-color: var(--secondary-color);
}

.scroll p:after {
  left: 0.5em;
  margin-right: -50%;
  width: 50%;
  background-color: var(--secondary-color);
}

/* ---- switch ---- */

.switch {
  position: absolute;
  bottom: 30px;
  left: 20px;
  z-index: 2;
  display: none;
}

.switch label .lever {

  background-color: #aaaaaa;
}

.switch label .lever:after {
  background-color: var(--text-color-dark);
}

.switch label input[type=checkbox]:checked+.lever {
  background-color: var(--secondary-color);
}

.switch label input[type=checkbox]:checked+.lever:after {
  background-color: var(--primary-color);
}

/* ---- fullpage ---- */

.fullpage {
  animation-duration: 2s;
  animation-delay: 0.5s;
}

#fp-nav.fp-right {
  z-index: 2;
  display: none;
}

#fp-nav ul li a span,
.fp-slidesNav ul li a span {
  background-color: #aaaaaa;
  border-radius: 0;
  width: 20px;
  height: 3px;
  margin: -2px 0 0 -10px;
}

#fp-nav ul li a:hover span,
.fp-slidesNav ul li a:hover span {
  background-color: #aaaaaa;
  margin: -2px 0 0 -15px;
  border-radius: 0;
  width: 20px;
  height: 3px;
}

#fp-nav ul li a.active span {
  background-color: var(--primary-color);
  border-radius: 0;
  width: 35px;
  height: 3px;
  margin: 0px 0 0 -25px;
}

#fp-nav ul li a.active:hover span {
  background-color: var(--primary-color);
  border-radius: 0;
  width: 35px;
  height: 3px;
  margin: 0px 0 0 -25px;
}

input[type=checkbox]:checked:not(:disabled)~.lever:active::before,
input[type=checkbox]:checked:not(:disabled).tabbed:focus~.lever::before {
  background-color: #feb2011a;
}

.back-halves {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.half-l {
  height: 100%;
  background-color: var(--background-light);
}

.half-r {
  height: 100%;
  background-color: var(--background-light);
}

.cover {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(38, 39, 46, 1) 0%, rgba(25, 26, 31, 1) 100%);
  z-index: 2;
}

.section {
  padding-top: 0;
  padding-bottom: 0;
}

.halves {
  height: 100%;
  margin: 0;
  padding: 0;
}

.landing {
  display: none;
}

.noun {
  font-size: 3em;
  margin-left: 0;
  color: var(--text-color-dark);
  font-weight: bold;
}

.noun span {
  color: var(--primary-color);
}

.pronounciation {
  font-size: 1.3em;
  margin: 15px 0;
  color: var(--pronounciation-color);
}

.pronounciation i {
  cursor: pointer;
  margin-left: 5px;
}

.pronounciation i:hover {
  color: #444;
}

.definition {
  color: var(--text-color-dark);
  font-size: 2em;
  font-weight: bold;
  line-height: 1.3;
}

.definition span {
  color: var(--primary-color);
}

.example {
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  color: var(--pronounciation-color);
}

.simile {
  font-size: 1.2em;
  font-weight: bold;
  color: var(--text-color-dark);
}

/* ---- about us ---- */

.header {
  color: var(--text-color-dark);
  font-size: 3em;
  font-weight: bold;
}

.header span {
  color: var(--primary-color);
}

.header:before {
  background-color: var(--primary-color);
  content: "";
  display: inline-block;
  height: 4px;
  position: relative;
  vertical-align: middle;
  right: 0.5em;
  margin-left: -50%;
  width: 50%;
}

.subheader {
  margin-top: 20px;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: bold;
  color: var(--text-muted-color);
}

.about-r {
  height: 100%;
}

.about-r span{
  height: 100%;
  background-image: url(../images/friendly_yet_professional.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.about-l {
  background-color: var(--background-light);
  height: 100%;
  display: flex;
  align-items: center;
}

.about {
  color: var(--text-color-dark);
  opacity: 0.8;
  font-size: 16px;
  margin: 0px 0px 30px 1px;
  font-weight: bold;
}

.about-button {
  padding: 0 20px;
}

/* ---- projects ---- */

.projects-r {
  height: 100%;
}

.projects-r span{
  height: 100%;
  background-image: url(../images/chaos_but_controlled.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.projects-l {
  height: 100%;
  display: flex;
  align-items: center;
}

.project-button {
  margin: 0 10px;
}

/* ---- contact ---- */

.contact-r {
  height: 100%;
}

.contact-r span{
  height: 100%;
  background-image: url(../images/lets_talk_option03.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.contact-l {
  height: 100%;
  display: flex;
  align-items: center;
}

/* -------------- Sub Menus -------------- */

.back-menu {
  position: absolute;
  top: 20px;
  left: 25px;
  font-size: 3em;
  cursor: pointer;
  color: var(--text-color-dark);
  z-index: 100;
}

.back-menu:hover {
  color: var(--primary-color);
}

/* ---- login ---- */

.login-page {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 500;
  display: none;
  background-color: var(--background-light);
}

.login-cover {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 501;
  display: none;
  background-color: var(--background-light);
}

.login-l {
  height: 100%;
  background-color: var(--background-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-r {
  height: 100%;
  background-color: var(--background-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.login-form {
  padding: 30px 48px 10px 48px;
  border: 1px solid var(--card-border-color);
}

.form-header {
  color: var(--text-color-dark);
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 10px;
}

.input-field {
  margin-bottom: 0;
  color: var(--text-color-dark);
}

input:focus {
  border-bottom: 1px solid var(--primary-color) !important;
  box-shadow: 0 1px 0 0 var(--primary-color) !important;
}

label.active {
  color: var(--primary-color) !important;
}

.forget {
  color: var(--text-color-dark);
  margin-right: 5px;
}

.forget:hover {
  color: var(--primary-color);
}

/* ---------------- about menu ---------------- */

.about-page {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  top: 0;
  left: 0;
  z-index: 500;
  display: none;
  background-color: var(--background-light);
}

.close-about {
  position: fixed;
  display: none;
  color: var(--primary-color);
}

.close-about:hover {
  position: fixed;
  display: none;
  color: var(--text-color-dark);
}

.about-cover {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 501;
  display: none;
  background-color: var(--background-light);
}

.aboutUs {
}

.division {
  padding: 110px 0px 110px 0px;
  text-align: left;
}

.division h4 {
  font-size: 2.2em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-color-dark);
}

.division p {
  font-size: 1em;
  letter-spacing: 2px;
}

.rule_about {
  width: 8%;
  height: 3px;
  background-color: var(--rule-color);
  margin-bottom: 1.168rem;
}

.subLine {
  margin-bottom: 20px;
}

/* about chaos */

.about-image {
  width: 100%;
  height: 400px;
  background-color: var(--section-dark-background-color);
  background-image: url(../images/miguel-bruna-685307-unsplash.jpg);
  background-repeat: no-repeat;
  background-position: center;
  display: none;
}

.about-content {
}

/* about chaos */

.about_chaos {
  color: var(--text-color-dark);
  display: none;
}

/* about team */

.about_team {
  background-color: var(--section-team-background-color);
  color: rgba(255, 255, 255, 0.95);
  display: none;
}

.about_team .container h4 {
  color: rgba(255, 255, 255, 0.95);
}

.team {
  margin-top: 40px;
  display: flex;
}

.member {
  margin: 10px 30px 20px 30px;
}

.member h5 {
  font-weight: 600;
}

.portrait {
  width: 100%;
  height: 25vw;
  margin-bottom: 15px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.portrait:hover {
  cursor: pointer;
  opacity: 0.85;
  border: 2px solid var(--primary-color);
}

.fae {
  background-image: url(../images/portrait_f.jpg);
}

.chubz {
  background-image: url(../images/portrait_k.jpg);
}

.moe {
  background-image: url(../images/portrait_m.jpg);
}

.rule_portrait {
  width: 20%;
  height: 3px;
  background-color: var(--primary-color);
  margin: 5px 0 10px 0;
}

/* services */

.about_services {
  color: var(--text-color-dark);
  display: none;
}

.service_container {
  margin-top: 40px;
  display: flex;
}

.service {
  margin: 10px 30px 20px 30px;
}

.service h5 {
  font-weight: 600;
}

.service_picture {
  width: 100%;
  height: 25vw;
  margin-bottom: 15px;
  background-position: center;
  background-repeat: no-repeat;
}

.service_picture:hover {
  cursor: pointer;
  opacity: 0.95;
  border: 2px solid var(--primary-color);
}

.design {
  background-image: url(../images/design.jpg);
}

.web {
  background-image: url(../images/web.jpg);
}

.game {
  background-image: url(../images/chess.jpg);
}

.rule_service {
  width: 30%;
  height: 3px;
  background-color: var(--primary-color);
  margin: 5px 0 10px 0;
}

/* about clients */

.about_clients {
  background-color: var(--section-light-background-color);
  color: var(--text-color-dark);
  display: none;
  padding: 80px 0px 60px 0px;
}

.client_logos {
  display: flex;
  justify-content: center;
  padding-top: 40px;
}

.client_logos img {
  width: 150px;
  margin: auto;
}

.client_logos .item {
  margin: 5px;
}

.seamonster {
  opacity: 0.9;
}

.shakeit {
  opacity: 0.75;
}

.client_logos .mojo {
  opacity: 0.75;
  margin-left: 15px;
}

/* about footer */

.about_footer {
  color: var(--text-color-dark);
  padding: 40px 0px 35px 0px;
  text-align: center;
  display: none;
  background-color: var(--footer-background);
}

/* ---------------- projects menu ---------------- */

.projects-page {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  top: 0;
  left: 0;
  z-index: 500;
  display: none;
  background-color: var(--background-light);
}

.close-projects {
  position: fixed;
  display: none;
  color: var(--primary-color);
}

.close-projects:hover {
  position: fixed;
  display: none;
  color: var(--link-color);
}

.projects-cover {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 501;
  display: none;
  background-color: var(--background-light);
}

#filters {
  padding: 10px 20px 20px 10px;
}

#filters a {
  font-size: 16px;
  text-decoration: none;
  font-weight: bold;
  color: var(--link-color);
  margin: 10px;
}

#filters a:hover {
  color: var(--primary-color);
}

.project_container {
  padding: 10px;
  width: 100%;
  height: 30vh;
  margin-bottom: 20px;
}

.project {
  background-color: var(--section-dark-background-color);
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
}

.hvr-underline-from-left:before {
  background: var(--primary-color);
}

.project img {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 80px;
  opacity: 0.95;
}

.project h5 {
  text-align: left;
  color: var(--text-color-light);
  font-weight: 700;
  position: absolute;
  bottom: 20px;
  left: 20px;
  transition: bottom ease-in-out 0.3s;
}

.project:hover h5 {
  bottom: 80px;
}

.project h6 {
  text-align: left;
  color: var(--primary-color);
  position: absolute;
  bottom: -20px;
  left: 20px;
  opacity: 0;
  font-weight: bold;
  transition: opacity ease-in-out 0.3s;
  transition: bottom ease-in-out 0.3s;
}

.project:hover h6 {
  opacity: 1;
  bottom: 40px;
}

.project_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--overlay-color);
  opacity: 0.4;
  transition: opacity ease-in-out 0.3s;
}

.project:hover .project_overlay {
  opacity: 0.1;
}

.stream {
  background-image: url(../images/augmented.jpg);
  background-position: top;
}

.nwow {
  background-image: url(../images/augmented2.jpg);
  background-position: center;
}

.sas {
  background-image: url(../images/recognition.jpg);
  background-position: center;
}

.tencent {
  background-image: url(../images/mind.jpg);
  background-position: center;
}

.airdj {
  background-image: url(../images/dj.jpg);
  background-position: center;
}

.boomtime {
  background-image: url(../images/piano.jpg);
  background-position: center;
}

/* ---- contact ---- */

.contact-page {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 500;
  display: none;
  background-color: var(--background-light);
}

.contact-cover {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 501;
  display: none;
  background-color: var(--background-light);
}

.close-contact {
  position: fixed;
  display: none;
  color: var(--primary-color);
}

.close-contact:hover {
  color: var(--link-color);
}

.contact-menu-l {
  height: 100%;
  background-color: var(--background-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-menu-r {
  height: 100%;
  background-color: var(--background-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-header {
  color: var(--text-color-dark);
  font-size: 3em;
  font-weight: bold;
}

.contact-header span {
  color: var(--primary-color);
}

.contact-sub-header {
  color: var(--text-color-dark);
  font-size: 2em;
  font-weight: bold;
}

.contact-sub-header span {
  color: var(--primary-color);
}

/* --- sub contact --- */

.sub-contact-page {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 500;
  display: none;
  background-color: var(--background-light);
  overflow-y: scroll;
}

.sub-contact-cover {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 501;
  display: none;
  background-color: var(--background-light);
}

.close-sub-contact {
  position: fixed;
  display: none;
  color: var(--link-color);
}

.contact-detail {
  color: var(--text-color-dark);
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 10px;
}

.contact-detail i {
  margin-right: 10px;
  color: var(--primary-color);
}

.contact-detail a {
  color: var(--text-color-dark);
  text-decoration: none; /* removes underline */
  font-size: 1em;
  font-weight: bold;
}

.contact-detail a:hover {
  text-decoration: underline; /* optional hover effect */
}


.close-sub-contact:hover {
  color: var(--text-color-light);
}

.sub-contact-menu-l {
  height: 100%;
  width: 100%;
  padding: 10px;
  background-color: var(--sub-contact-bg);
  position: relative;
}

.sub-contact-menu-l span {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-image: url(../images/lets_talk_option01.svg);
  background-repeat: no-repeat;
  background-size: 80%;
  background-position: center;
}

.sub-contact-menu-r {
  height: 100%;
  background-color: var(--background-light);
  overflow-y: scroll;
}

.client-contact-image {
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: url(/images/lets_talk_option01.svg);
  background-position: center;
  background-size: cover;
}

.select-wrapper .caret {
  top: -25px;
}

/* ---------------- Project Template ---------------- */

.project-template {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  top: 0;
  left: 0;
  z-index: 501;
  display: none;
  background-color: var(--project-template-background);
}

.close-template {
  position: fixed;
  display: none;
  color: var(--primary-color);
  z-index: 600;
}

.close-template:hover {
  position: fixed;
  display: none;
  color: var(--link-color);
}

.template-cover {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 501;
  display: none;
  background-color: var(--cover-background);
}

.template-hero {
  width: 100%;
  height: 400px;
  background-color: #414141;
  background-image: url(../images/build.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-cover {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
}

.template-content h1 {
  color: #fff;
  font-size: 2.4em;
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-top: 20px;
}

.template-content h4 {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1em;
}

.project_text {
  color: #fff;
  font-size: 15px;
}

.project_services {
  text-align: right;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.project-gallery .gallery-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.project-gallery img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.project-gallery img:hover {
  transform: scale(1.05);
}
