/* common to index.php and single_portfolio.php (General styles, Header, Footer and portfolio) */

/* ========  General Font & Colors   ======== */

/*MARK: -General Font & Colors  */

/* Bryant Regular */

@font-face {
  font-family: "Geeks On The Beach Font Regular";

  src: url("../font/BryantWebRegular.eot");

  src:
    url("../font/BryantWebRegular.eot?#iefix") format("embedded-opentype"),
    url("../font/BryantWebRegular.woff2") format("woff2"),
    url("../font/BryantWebRegular.woff") format("woff");

  font-weight: 400;

  font-style: normal;
}

/* Bryant Medium (Bold) */

@font-face {
  font-family: "Geeks On The Beach Font Medium";

  src: url("../font/BryantWebBold.eot");

  src:
    url("../font/BryantWebBold.eot?#iefix") format("embedded-opentype"),
    url("../font/BryantWebBold.woff2") format("woff2"),
    url("../font/BryantWebBold.woff") format("woff");

  font-weight: 700;

  font-style: normal;
}

:root {
  --color-darkGray: #2e2e30;

  --color-orange: #f48322;

  --color-darkOrange: #bb3700;

  --color-lightGray: #cdc6ad;

  --color-lightGray2: rgb(82, 82, 80);
}

/* ========  General Icon Font   ======== */

/*MARK: -General Icon Font  */

@font-face {
  font-family: "icomoon";

  src:
    url("../font/icomoon.ttf?bwfa46") format("truetype"),
    url("../font/icomoon.woff?bwfa46") format("woff"),
    url("../font/icomoon.svg?bwfa46#icomoon") format("svg");

  font-weight: normal;

  font-style: normal;

  font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */

  font-family: "icomoon" !important;

  speak: never;

  font-style: normal;

  font-weight: normal;

  font-variant: normal;

  text-transform: none;

  line-height: 1;

  /* Better Font Rendering =========== */

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;
}

.icon-mapmarker:before {
  content: "\e907";
}

.icon-phone_iphone:before {
  content: "\e908";
}

.icon-quote-left:before {
  content: "\f10d";
}

.icon-paper-plane:before {
  content: "\e902";
}

.icon-send:before {
  content: "\e902";
}

.icon-3d-glasses:before {
  content: "\e901";
}

.icon-glasses:before {
  content: "\e901";
}

.icon-facebook:before {
  content: "\ea90";
}

.icon-instagram:before {
  content: "\ea92";
}

.icon-twitter:before {
  content: "\ea96";
}

.icon-linkedin2:before {
  content: "\eaca";
}

/* ========  General Styles   ======== */

/*MARK: -General Styles */

*,
*::before,
*::after {
  box-sizing: border-box;

  padding: 0;

  margin: 0;
}

body {
  font-family: "Geeks On The Beach Font Regular", Helvetica, Arial, Lucida,
    sans-serif;

  position: relative;

  z-index: 1;
}

ul {
  margin: 0;

  padding: 0;

  list-style: none;
}

.hr {
  width: 100%;
}

a {
  text-decoration: none;

  color: var(--color-darkOrange);

  transition: color 0.3s;

  -webkit-tap-highlight-color: transparent;
}

a:active {
  color: var(--color-orange);
}

a.line-link {
  color: var(--color-darkGray);

  line-height: 1.5;

  transition:
    background-size 0.4s,
    color 0.4s;
}

.line-link:hover {
  color: var(--color-darkOrange);
}

a.line-link:active {
  color: var(--color-orange);
}

/* hover effect (only for dekstop) */

@media (hover: hover) and (pointer: fine) {
  .line-link {
    background-image: linear-gradient(currentColor, currentColor);

    background-position: 0% 100%;

    background-repeat: no-repeat;

    background-size: 0% 2px;
  }

  .line-link:hover {
    background-size: 100% 2px;
  }
}

.btn {
  --x: 0;

  --opacity: 0;

  --color: rgba(255, 255, 255, 0.5);

  --shadow-spread: 3px;

  color: #ffffff;

  border-width: 0px;

  border-color: rgba(0, 0, 0, 0);

  border-radius: 6px;

  letter-spacing: 1px;

  padding: 14px 38px;

  font-size: 18px;

  font-family: "Geeks On The Beach Font Regular", Helvetica, Arial, Lucida,
    sans-serif;

  font-weight: 600;

  background-image: radial-gradient(circle at center, #403f41 0%, #2e2e30 100%);

  background-color: var(--color-darkGray);

  box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 20%);

  cursor: pointer;

  user-select: none;

  position: relative;

  overflow: hidden;

  -webkit-tap-highlight-color: none;

  transition:
    box-shadow 0.3s,
    background-color 0.4s;
}

/* btn hover effect (only for dekstop) */

@media (hover: hover) and (pointer: fine) {
  .btn:after {
    content: "";

    position: absolute;

    top: -25px;

    left: 0;

    width: 300px;

    height: 100px;

    transform: translateX(calc(var(--x) * 1px - 150px));

    opacity: var(--opacity);

    pointer-events: none;

    background: radial-gradient(
      circle,
      var(--color) 0%,
      rgba(255, 255, 255, 0) 60%
    );

    will-change: transform, opacity;
  }

  .btn:hover {
    box-shadow: 3px 3px 3px var(--shadow-spread) rgb(0 0 0 / 20%);
  }
}

.btn:active {
  color: #fff;
}

@media (pointer: coarse) {
  .btn:focus,
  .btn:active {
    -webkit-tap-highlight-color: transparent;
  }
}

/* for ripple btn animation */

.btn span.ripple {
  position: absolute;

  border-radius: 50%;

  transform: scale(0);

  background-color: rgba(255, 255, 255, 0.5);

  background-blend-mode: overlay;

  animation: ripple 1s linear;
}

@keyframes ripple {
  to {
    transform: scale(3);

    opacity: 0;
  }
}

.separator {
  color: var(--color-lightGray);
}

/* ========  Nav General   ======== */

/*MARK: -Nav General */

#geeks-nav {
  font-family: "Geeks On The Beach Font Medium", Helvetica, Arial, Lucida,
    sans-serif;

  font-weight: 700;

  width: 100%;

  margin: -1px;
}

#geeks-nav a {
  text-decoration: none;

  color: #fff;
}

#geeks-nav a:link,
#geeks-nav a:visited {
  color: #fff;
}

#geeks-nav a:active,
#geeks-nav a:focus {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* =========   Nav Upper   ========== */

/*MARK: ---nav Upper */

#geeks-nav .nav-upper {
  width: 100%;

  position: fixed;

  top: 0;

  left: 0;

  z-index: 999;

  background-color: var(--color-darkGray);
}

#geeks-nav .nav-upper-items {
  display: flex;

  align-items: center;

  height: 36px;

  margin: 0 8vw;
}

#geeks-nav .nav-upper .nav-logo {
  width: 60px;

  display: block;

  position: absolute;

  top: 10px;

  left: calc(4vw - 32px);

  cursor: auto;
}

#geeks-nav .nav-upper .nav-logo img {
  display: block;

  border-radius: 40%;

  cursor: pointer;
}

#geeks-nav .nav-upper img.speech-balloon {
  width: 70px;

  position: absolute;

  left: 50px;

  top: 4px;

  pointer-events: none;

  opacity: 0;

  transform: scale(0);
}

#geeks-nav .nav-upper-items li a {
  transition: color 0.3s;
}

#geeks-nav .nav-upper-items li:hover a {
  color: var(--color-orange);
}

#geeks-nav .nav-upper-items li:nth-of-type(1) {
  margin-right: 45px;

  position: relative;
}

#geeks-nav .nav-upper-items li:nth-of-type(2) {
  margin-right: auto;
}

/* SVGs */

#geeks-nav .nav-upper-items svg {
  width: 18px;

  margin-right: 4px;

  position: relative;

  top: 3px;
}

#geeks-nav .nav-upper-items svg circle {
  fill: #fff;
}

#geeks-nav .nav-upper-items svg path {
  fill: none;

  stroke: #fff;

  stroke-miterlimit: 10;

  stroke-width: 1px;

  transition: stroke 0.3s;
}

#geeks-nav .nav-upper-items li:nth-of-type(2) svg {
  top: 2px;
}

#geeks-nav .nav-upper-items li:hover svg path {
  stroke: var(--color-orange);
}

/* =========   Nav Lower   ========== */

/*MARK: ---nav Lower */

#geeks-nav .nav-lower ul {
  abackground: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0.1) 100%
  );

  background-color: rgba(84, 84, 84, 0.65);

  position: relative;

  apadding-top: 10px;
}

#geeks-nav .nav-lower ul {
  position: absolute;

  right: 0;

  width: 100%;

  padding: 7px 0;

  position: fixed;

  z-index: 998;

  top: 36px;

  display: flex;

  align-self: center;

  justify-content: flex-end;

  user-select: none;

  transition: top 0.8s;

  backdrop-filter: blur(4px);

  -webkit-backdrop-filter: blur(6px);
}

#geeks-nav .nav-lower li:first-child {
  margin-left: 10px;
}

/* hide on scroll down */

#geeks-nav .nav-lower ul.hide {
  top: -40px;
}

#geeks-nav .nav-lower li {
  margin-left: 25px;
}

#geeks-nav .nav-lower li:last-child {
  margin-right: 8vw;
}

#geeks-nav .nav-lower a {
  color: #fff;

  atext-shadow:
    0px 0px 2px #fff,
    0px 0px 1px #fff,
    0px 0px 2px #fff,
    0px 0px 0px #000;

  letter-spacing: 1px;

  display: inline-block;

  position: relative;

  afont-weight: 400;

  font-size: 0.9rem;

  font-family: "Geeks On The Beach Font Regular", Helvetica, Arial, Lucida,
    sans-serif;

  transition:
    color 0.3s,
    text-shadow 0.3s;
}

/* hover line effect (only for non touch and wide screen) */

@media (hover: hover) and (pointer: fine) and (min-width: 979px) {
  #geeks-nav .nav-lower a:after {
    content: "";

    display: block;

    height: 3px;

    border-radius: 25%;

    background: var(--color-darkOrange);

    width: 0;

    position: absolute;

    left: 50%;

    bottom: -5px;

    transition:
      width 0.8s ease 0s,
      left 0.8s ease 0s;
  }

  #geeks-nav .nav-lower li a:hover:after {
    width: 100%;

    left: 0;
  }
}

/* =========   Hamburger btn   ========== */

/*MARK: ---hamburger btn */

#geeks-nav .nav-hamburger {
  width: 50px;

  z-index: 1000;

  position: fixed;

  top: 12px;

  right: calc(4vw - 25px);

  cursor: pointer;

  user-select: none;

  transition: box-shadow 0.5s;
}

/* non touch Device */

@media (hover: hover) and (pointer: fine) {
  #geeks-nav .nav-hamburger:hover {
    box-shadow: 6px 3px 5px 2px rgb(0 0 0 / 20%);
  }

  #geeks-nav .nav-hamburger.active:hover {
    box-shadow: 2px 0px 8px 3px rgba(255, 255, 255, 0.382);
  }
}

#geeks-nav .nav-hamburger:active,
#geeks-nav .nav-hamburger:focus {
  -webkit-tap-highlight-color: rgba(216, 239, 46, 0.2);

  outline: none;
}

#geeks-nav a.nav-hamburger-btn {
  position: unset !important;
}

#geeks-nav .nav-hamburger svg {
  display: block;
}

#geeks-nav .nav-hamburger span {
  position: absolute;

  top: 8px;

  left: 10px;

  font-size: 0.75rem;

  margin-bottom: 2px;
}

#geeks-nav .nav-hamburger .hamburger-lines {
  position: absolute;

  top: 33px;

  left: 14px;
}

#geeks-nav .nav-hamburger .hamburger-lines div {
  width: 25px;

  height: 2px;

  margin-bottom: 6px;

  background-color: var(--color-darkGray);

  transform-origin: left 50%;

  will-change: transform;
}

#geeks-nav .nav-hamburger .hamburger-lines .line1 {
  transition: transform 0.3s linear;
}

#geeks-nav .nav-hamburger .hamburger-lines .line2 {
  opacity: 1;

  transition: all 0.3s linear;
}

#geeks-nav .nav-hamburger .hamburger-lines .line3 {
  margin-bottom: 0;

  transition: transform 0.3s linear;
}

/* Active */

#geeks-nav .nav-hamburger.active .hamburger-lines .line1 {
  transform: translateX(4px) rotate(45deg);

  margin-bottom: 7px;
}

#geeks-nav .nav-hamburger.active .hamburger-lines .line2 {
  opacity: 0;

  margin-bottom: 7px;

  transform: translateX(4px);

  width: 0;
}

#geeks-nav .nav-hamburger.active .hamburger-lines .line3 {
  transform: translateX(4px) rotate(-45deg);
}

/* =========   Submenu   ========== */

/*MARK: ---submenu */

#geeks-nav .submenu {
  display: none;

  width: 100%;

  min-height: calc(100vh - 36px);

  position: fixed;

  z-index: 998;

  left: -100vw;

  top: 36px;

  color: #fff;

  padding-top: 10vh;

  border-top: 1px solid var(--color-lightGray2);

  background-color: var(--color-darkGray);

  background: url("../img/nav/geeks-menu-bg.png"),
    radial-gradient(circle at 10% 10%, #4f4f4f 0%, #2d2e2f 36%);

  background-repeat: no-repeat;

  background-position: 5% 150%;

  overflow-x: hidden;
}

#geeks-nav .submenu .submenu-container {
  margin: 0 auto;

  width: 92vw;
}

/* Text general */

#geeks-nav .submenu h3 {
  color: var(--color-lightGray);

  font-family: "Geeks On The Beach Font Medium", Helvetica, Arial, Lucida,
    sans-serif;

  font-size: 1.4rem;

  margin-bottom: 2vh;

  text-transform: uppercase;
}

#geeks-nav .submenu h3.active {
  color: #fff;
}

#geeks-nav .submenu-column-container h3 .plus {
  display: none;
}

#geeks-nav .submenu-column {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);

  padding-right: 20px;
}

#geeks-nav .submenu-column li {
  opacity: 0;

  position: relative;
}

#geeks-nav .submenu .submenu-column-container a {
  font-size: 1.1rem;

  line-height: 2;
}

#geeks-nav .submenu a:active {
  color: var(--color-orange);
}

#geeks-nav .submenu-column li a.active {
  color: var(--color-orange);

  left: 20px;
}

/* hover effect (only for dekstop  */

@media (hover: hover) and (pointer: fine) {
  #geeks-nav .submenu-column li a {
    background-image: linear-gradient(currentColor, currentColor);

    background-position: 0% 100%;

    background-repeat: no-repeat;

    background-size: 0% 2px;

    transition:
      background-size 0s,
      color 0.3s;
  }

  #geeks-nav .submenu-column li a:hover {
    background-size: 100% 2px;

    color: var(--color-orange);

    transition: background-size 1s cubic-bezier(0.25, 1, 0.5, 1);
  }
}

/* when clicked */

#geeks-nav .submenu-column li a.active:before {
  content: ">";

  font-size: 1.5rem;

  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;

  position: absolute;

  top: -5px;

  left: -20px;
}

/*  Text on top */

#geeks-nav .submenu span.start-here {
  font-family: "Caveat", cursive;

  font-size: 1.7rem;

  color: var(--color-lightGray);

  display: block;
}

#geeks-nav .submenu .start-here a {
  color: #fff;

  text-decoration: underline;

  font-size: 1.7rem;

  letter-spacing: 1px;

  transition: color 0.3s;
}

#geeks-nav .submenu .start-here a:hover {
  color: var(--color-orange);
}

/*  Colums */

#geeks-nav .submenu .submenu-column-container {
  display: flex;

  flex-direction: row;

  flex-wrap: nowrap;

  justify-content: space-between;

  align-items: baseline;
}

#geeks-nav .submenu .submenu-column {
  position: relative;

  margin-top: 8vh;
}

#geeks-nav .submenu .submenu-upper {
  height: 25vh;

  min-height: 180px;
}

#geeks-nav .submenu .submenu-lower {
  margin-top: 8vh;
}

#geeks-nav .submenu .submenu-upper-links,
#geeks-nav .submenu .submenu-lower-links {
  border-left: 1px solid var(--color-lightGray2);

  padding-left: 15px;
}

/* MARK: -BREADCRUM   */

ul.breadcrumb {
  list-style: none;
}

ul.breadcrumb li {
  display: inline;

  font-size: 0.8rem;
}

ul.breadcrumb li a {
  text-transform: uppercase;

  color: var(--color-darkGray);

  transition: color 0.3s;
}

ul.breadcrumb li a:hover {
  color: var(--color-darkOrange);
}

ul.breadcrumb li:last-child a {
  color: rgb(158, 158, 158);

  user-select: none;
}

ul.breadcrumb .breadcrumb-separator {
  padding: 0 8px;
}

/* MARK: -JUSTIFIED TEXT   */

.intro-headline {
  width: 50%;
}

#justified-headline {
  transform: scale(0.8);

  display: flex;

  flex-direction: column;

  padding: 15px 0;

  line-height: 1.2;

  opacity: 0;

  will-change: transform;
}

#justified-headline .row {
  display: flex;

  grid-column: 1;

  justify-content: space-between;
}

#justified-headline h1 {
  font-size: 5vw;

  font-weight: 300;

  text-transform: uppercase;

  user-select: none;
}

#justified-headline h2 {
  font-size: 2.5vw;

  font-weight: 300;

  text-transform: uppercase;

  user-select: none;
}

.intro-headline .paragraf-container {
  background-color: rgba(62, 62, 62, 0.2);

  opacity: 0;

  will-change: opacity;
}

.intro-headline .paragraf-container p {
  font-size: 1.2rem;

  font-weight: 500;

  line-height: 1.5em;

  margin-top: 25px;

  text-transform: uppercase;

  padding: 10px;

  color: rgb(59, 59, 59);
}

/* Non-touch device */

@media (hover: hover) and (pointer: fine) {
  #justified-headline .char {
    backface-visibility: hidden;

    perspective: 1000;

    transform: translate3d(0, 0, 0);

    transform: translateZ(0);

    opacity: 0;

    filter: blur(4px);

    will-change: filter, opacity;
  }
}

@media (pointer: coarse) {
  #justified-headline .char {
    transform: translateZ(0);

    opacity: 0;

    will-change: opacity;
  }
}

/* line and ampersand */

#justified-headline .center {
  align-self: center;

  margin: 0 auto;
}

#justified-headline .row .lines {
  display: flex;

  align-items: center;

  width: 100%;
}

#justified-headline .lines hr {
  width: 0%;

  display: inline-block;

  opacity: 0;
}

/* MARK: -PORTFOLIO Showcase  */

.portfolio {
  width: 85vw;

  max-width: 1440px;

  margin: 0 auto;

  margin-top: 45px;

  position: relative;
}

.portfolio-container {
  width: 100%;

  max-width: 1440px;

  min-height: 400px;

  margin: 0 auto;

  display: flex;

  flex-direction: row;

  flex-wrap: wrap;

  justify-content: flex-start;

  align-items: flex-start;

  column-gap: 4vw;
}

.portfolio-container .panel {
  width: calc(33% - 2.43vw);

  margin-bottom: 50px;
}

/* MARK: ---images */

.portfolio-container .image-container {
  max-width: 500px;

  max-height: 500px;

  overflow: hidden;

  border-radius: 4px;

  outline: 1px solid var(--color-lightGray);

  position: relative;
}

.portfolio-container .image-container:hover {
  box-shadow: 2px 2px 3px 0px rgb(0 0 0 / 10%);
}

.portfolio-container .image-container a {
  vertical-align: bottom;
}

.portfolio-container .image-container img {
  display: block;

  width: 100%;

  height: 100%;

  background-color: var(--color-darkGray);

  object-fit: cover;

  aspect-ratio: 1 / 1;

  transform: scale(1.05);

  filter: brightness(0.8);

  transition: transform 1s;
}

@media (hover: hover) and (pointer: fine) {
  .portfolio-container .image-container a:hover img {
    transform: scale(1.1);
  }

  .portfolio-container .panel a:hover .caption-hide {
    background-color: rgba(0, 0, 0, 0.7);
  }
}

/* MARK: ---caption */

.portfolio-container .panel .caption-hide {
  position: absolute;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  background-color: rgba(0, 0, 0, 0);

  transition: background-color 1.2s;
}

.portfolio-container .panel .caption-show {
  position: absolute;

  bottom: 0;

  left: 0;

  right: 0;

  top: 0;

  width: 100%;

  height: 100%;

  -webkit-font-smoothing: antialiased;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  align-items: flex-start;

  padding: 10%;
}

.portfolio-container .panel .caption-text {
  /* bottom - js  */

  width: 80%;

  text-align: left;

  font-weight: 100;

  color: rgba(255, 255, 255, 0.9);

  font-size: 1.1rem;

  line-height: 1.3;

  overflow: hidden;

  opacity: 0;

  position: relative;

  bottom: 20px;
}

.portfolio-container .panel .caption-show .name,
.portfolio-container .panel .caption-show .view {
  text-transform: uppercase;

  width: 100%;

  font-family: "Geeks On The Beach Font Medium", Helvetica, Arial, Lucida,
    sans-serif;
}

.portfolio-container .panel .caption-show .name {
  color: #fff;

  font-size: 2rem;

  text-shadow:
    1px 1px 2px rgba(0, 0, 0, 1),
    -1px -1px 2px rgba(0, 0, 0, 0.8);

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;
}

.portfolio-container .panel .caption-show .view {
  background-color: #fff;

  color: var(--color-darkGray);

  font-size: 1.4rem;

  padding: 7px 10px;

  text-align: center;

  border-radius: 8px;
}

/* MARK: ---caption lines */

.portfolio-container .panel .line-container {
  width: 100%;

  height: 100%;

  position: absolute;

  top: 0;

  left: 0;
}

.portfolio-container .panel .caption-line {
  position: absolute;

  height: 2px;

  background-color: #fff;

  overflow: hidden;

  transform: translate3d(0, 0, 0);

  transform: translateZ(0);

  backface-visibility: hidden;
}

.portfolio-container .panel .caption-line:nth-of-type(1) {
  top: 0;

  left: 7%;

  transform: rotate(90deg);

  transform-origin: 0% 0%;

  width: 0%;
}

.portfolio-container .panel .caption-line:nth-of-type(2) {
  /* bottom: - js */

  left: 0;

  transform-origin: 0% 0%;

  width: 0%;
}

.portfolio-container .panel .caption-line:nth-of-type(3) {
  height: 0%;

  width: 2px;

  right: 6.5%;

  bottom: 0;
}

.portfolio-container .panel .caption-line:nth-of-type(4) {
  left: 0;

  transform: translateX(-50%);

  transform-origin: 100% 100%;

  transform: rotate(180deg);

  width: 100%;
}

/* MARK: ---tags and h3 */

.portfolio-container .panel .info h2 {
  font-size: 1.2rem;

  padding: 15px 0 10px 0;

  text-transform: uppercase;
}

.portfolio-container .panel .info h2 a {
  color: var(--color-darkGray);

  transition: color 0.3s;
}

.portfolio-container .panel .info h2 a:hover {
  color: var(--color-darkOrange);
}

.portfolio-container .panel .info h2 a:active {
  color: var(--color-orange);
}

/* MARK: -FOOTER  */

:root {
  --footer-height: 390px;
}

.footer-offset {
  height: var(--footer-height);

  pointer-events: none;

  background-color: var(--color-darkGray);

  box-shadow: inset 0 8px 6px -3px rgba(0, 0, 0, 0.8);

  position: relative;

  z-index: -3;
}

footer {
  font-family: "Geeks On The Beach Font Regular", Helvetica, Arial, Lucida,
    sans-serif;

  color: #fff;

  background-color: var(--color-darkGray);

  width: 100%;

  height: var(--footer-height);

  display: flex;

  justify-content: center;

  align-items: center;

  position: fixed;

  left: 0;

  bottom: 0;

  z-index: -2;

  background-image: url("../img/nav/geeks-menu-bg.png");

  background-repeat: no-repeat;

  background-size: 180px;

  background-position-x: 3%;

  background-position-y: 300%;

  -webkit-transform: translate3d(0, 0, 0);

  -webkit-backface-visibility: hidden;

  -webkit-perspective: 1000;

  will-change: transform;

  a-webkit-overflow-scrolling: touch;

  /* chrome content blink on scroll position fixed - solves the problem of the footer appearing but slows down scrolling on mobile*/

  overflow-x: hidden;
}

/* due to a bug on Chrome that only occurs for Touch devices - when the footer is displayed above the body for a fraction of a second during scrolling. this tries to prevent that by adding extra height which I later remove in javascript*/

@media (pointer: coarse) {
  footer .fake-height {
    position: absolute;

    left: 0;

    bottom: -100%;

    width: 100%;

    height: 300px;
  }

  footer .fake-height.active {
    bottom: 0;

    height: 0px;
  }
}

footer .footer-container {
  display: flex;

  justify-content: space-between;

  align-items: flex-start;

  max-width: 1440px;

  width: 85vw;
}

footer .footer-container p {
  line-height: 1.4;
}

footer .icon {
  font-size: 1.5rem;
}

footer .column {
  max-width: 30%;
}

footer .column h3 {
  font-family: "Geeks On The Beach Font Regular", Helvetica, Arial, Lucida,
    sans-serif;

  font-weight: 400;

  font-size: 1.8rem;

  text-transform: uppercase;

  line-height: 1.3em;

  padding-bottom: 30px;
}

footer .column h4 {
  font-family: "Geeks On The Beach Font Regular", Helvetica, Arial, Lucida,
    sans-serif;

  font-weight: 400;

  font-size: 1.2rem;

  margin-bottom: 6px;
}

footer a {
  color: #fff;

  text-decoration: none;

  transition: color 0.3s;
}

footer a:hover {
  color: var(--color-orange);
}

/* column 1 */

footer .column:nth-of-type(1) .rows {
  display: flex;

  flex-direction: row;
}

footer .column:nth-of-type(1) .icon-quote-left {
  font-size: 2.7rem;

  margin-right: 15px;
}

footer .column:nth-of-type(1) blockquote {
  font-size: 1.2rem;
}

footer .column:nth-of-type(1) figcaption {
  font-size: 0.9rem;

  margin-top: 15px;

  color: var(--color-lightGray);
}

/* column 2 */

footer .second-column-container {
  display: flex;

  flex-direction: column;

  margin-bottom: 20px;
}

footer .second-column-container .upper,
footer .second-column-container .lower {
  display: flex;
}

footer .second-column-container .right-side {
  margin-left: 15px;
}

footer .second-column-container .lower {
  margin-top: 25px;
}

footer .second-column-container span:not(.icon) {
  padding: 2px 0;

  font-size: 0.95rem;

  display: inline-block;
}

footer .second-column-container span,
footer .second-column-container sup {
  color: var(--color-lightGray) !important;
}

/* column 3 */

footer .column:nth-of-type(3) .column-links {
  display: flex;

  flex-direction: column;
}

footer .column:nth-of-type(3) .column-links a {
  padding-bottom: 25px;

  font-size: 1.1rem;
}

footer .column:nth-of-type(3) .column-links a span {
  padding-right: 19px;
}

footer .column:nth-of-type(3) .column-links a .icon-glasses {
  padding-right: 10px;
}

footer .column:nth-of-type(3) hr {
  margin-bottom: 25px;

  display: block;
}

footer .column:nth-of-type(3) .social-links span {
  font-size: 1.1rem;

  padding-right: 20px;
}

/* =========   MQ   ========== */

/*MARK: -MQ */

/* MARK: ---0-576 */

@media only screen and (max-width: 576px) {
  #geeks-nav .nav-upper-items li {
    margin: 0 5px;
  }

  #geeks-nav .submenu {
    background-size: 50%, 100%;
  }

  #geeks-nav .submenu a {
    font-size: 1rem;
  }

  #geeks-nav .submenu .submenu-column-container {
    justify-content: flex-start;
  }

  #geeks-nav .submenu span.start-here {
    font-size: 1.2rem;
  }

  #geeks-nav .submenu .start-here a {
    font-size: 1.2rem;
  }

  #geeks-nav .submenu-column-container h3 {
    font-size: 1.1rem;
  }

  /* disable default style on touch  */

  #geeks-nav .submenu-column-container h3,
  #geeks-nav .submenu-column-container h3 span {
    -webkit-tap-highlight-color: transparent;
  }

  .intro-headline {
    width: 80vw !important;
  }

  .intro-headline .paragraf-container p {
    font-size: 0.9rem !important;

    margin-top: 0;
  }

  .portfolio-container {
    width: 80vw !important;
  }

  .portfolio-container .panel .caption-text {
    font-size: 1rem;
  }

  .portfolio-container .panel .caption-show .name,
  .portfolio-container .panel .caption-show .view {
    font-size: 1.1rem;
  }

  .portfolio-container .panel .caption-text {
    line-height: 1.1;

    font-size: 1rem;
  }

  footer .second-column-container h4 {
    font-size: 1rem !important;
  }

  footer .second-column-container span {
    font-size: 0.9rem !important;
  }

  footer .second-column-container {
    flex-direction: column !important;
  }

  footer .second-column-container .lower {
    padding-top: 30px !important;

    margin-left: 0 !important;
  }

  footer .second-column-container {
    padding-left: 40px;
  }

  footer .second-column-container .icon {
    font-size: 1.5rem !important;
  }

  footer .column:nth-of-type(3) .social-links a span {
    font-size: 1.7rem !important;
  }
}

/*MARK: ---0-700 */

@media screen and (max-width: 699px) {
  .portfolio-container {
    justify-content: space-between;

    column-gap: 0;

    width: 60vw;
  }

  .portfolio-container .panel {
    width: 100% !important;

    margin-bottom: 40px;
  }

  .portfolio-container .panel .image-container {
    display: flex;

    justify-content: center;

    margin: 0 auto;
  }

  .portfolio-container .panel .info {
    text-align: center;
  }
}

/*MARK: ---0-800 */

@media only screen and (max-width: 800px) {
  .portfolio {
    width: 80vw;
  }

  .portfolio-container .panel .caption-text {
    font-size: 1rem;
  }

  .portfolio-container .panel .caption-show .name,
  .portfolio-container .panel .caption-show .view {
    font-size: 1.1rem;
  }

  footer .column:nth-of-type(3) .column-links {
    flex-direction: column !important;

    padding-left: 40px;
  }
}

/* MARK: ----0-980 */

@media screen and (max-width: 979px) {
  #geeks-nav {
    --topNav-height: 36px;
  }

  #geeks-nav .nav-lower {
    display: none;
  }

  #geeks-nav .nav-upper-items {
    height: var(--topNav-height);

    justify-content: center;

    padding-right: 0px;
  }

  #geeks-nav .nav-upper-items li {
    margin: 0 20px !important;
  }

  #geeks-nav .nav-upper-items li a span {
    display: none;
  }

  #geeks-nav .nav-upper .nav-logo {
    left: 4vw;
  }

  #geeks-nav .nav-hamburger {
    right: 5vw;
  }

  #geeks-nav .nav-upper-items svg {
    width: 30px;
  }

  /* Submenu */

  #geeks-nav .submenu {
    min-height: calc(100vh - var(--topNav-height));

    top: var(--topNav-height);

    padding-top: 6vh;

    background-position: 95% 150%;

    position: fixed;
  }

  /* Text general */

  #geeks-nav .submenu-column-container h3 {
    margin-top: 3vh;

    margin-bottom: 0;

    cursor: pointer;

    opacity: 1;

    transition: color 0.2s;
  }

  #geeks-nav .submenu-column-container h3:hover {
    color: #fff;
  }

  #geeks-nav .submenu .submenu-column:first-child .submenu-upper h3 {
    margin-top: 0;
  }

  #geeks-nav .submenu-column-container h3 .plus {
    display: inline-block;

    content: "+";

    font-size: 1.5rem;

    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;

    position: relative;

    top: 2px;

    left: -6px;
  }

  #geeks-nav .submenu-column li {
    opacity: 1;
  }

  #geeks-nav .submenu a {
    transition: none;

    font-size: 1.1rem;
  }

  /*  Text on top */

  #geeks-nav .submenu span.start-here {
    font-size: 1.4rem;

    text-align: center;

    margin-top: 0vh;
  }

  #geeks-nav .submenu .start-here a {
    font-size: 1.4rem;
  }

  /*  Colums */

  #geeks-nav .submenu .submenu-container {
    height: calc(100vh - var(--topNav-height));
  }

  #geeks-nav .submenu .submenu-column-container {
    flex-direction: column;

    justify-content: flex-start;

    margin-top: 4vh;

    margin-left: 15px;

    height: 80vh;
  }

  #geeks-nav .submenu .submenu-column {
    margin-top: 0vh;

    clip-path: unset;

    padding-right: 0px;
  }

  #geeks-nav .submenu .submenu-upper {
    height: auto;

    min-height: auto;
  }

  #geeks-nav .submenu .submenu-lower {
    margin-top: 0;
  }

  #geeks-nav .submenu .submenu-upper-links,
  #geeks-nav .submenu .submenu-lower-links {
    height: 0;

    overflow: hidden;

    padding-left: 20px;
  }

  /* justified text */

  .intro-headline {
    width: 80%;
  }

  #justified-headline {
    line-height: 1.6 !important;

    width: 100%;
  }

  #justified-headline h1 {
    font-size: 10vw;

    font-weight: 700;
  }

  #justified-headline h2 {
    font-size: 4.3vw;
  }

  /* portfolio */

  .portfolio-container {
    column-gap: 5vw;
  }

  .portfolio-container .panel {
    width: calc(50% - 2.5vw);
  }

  .portfolio-container .panel .info h2 {
    font-size: 1.1rem;
  }

  /* footer */

  :root {
    --footer-height: 503px;
  }

  footer {
    padding-bottom: 0 !important;

    background-position-x: 95%;

    background-size: 160px;
  }

  footer .column:nth-of-type(1) {
    display: none;
  }

  footer .footer-container {
    align-items: center;

    flex-direction: column;

    padding-bottom: 0px;
  }

  footer .column {
    max-width: 85vw;

    width: 85vw;
  }

  footer .column h3 {
    font-size: 1.5rem;

    padding-bottom: 15px;

    color: var(--color-orange);
  }

  footer .column h4 {
    font-size: 1.1rem;
  }

  footer .column:nth-of-type(1) .icon-quote-left {
    font-size: 1.8rem;
  }

  footer .column:nth-of-type(1) blockquote {
    font-size: 0.8rem;
  }

  footer .column:nth-of-type(1) figcaption {
    margin-top: 10px;
  }

  footer .second-column-container {
    flex-direction: row;
  }

  footer .second-column-container .lower {
    margin-top: 0;

    margin-left: auto;
  }

  footer .column:nth-of-type(3) .column-links {
    flex-direction: row;

    justify-content: space-between;
  }

  footer .column:nth-of-type(3) .social-links {
    display: flex;

    justify-content: center;
  }

  footer .column:nth-of-type(3) .social-links a span {
    font-size: 1.3rem;

    padding: 25px;
  }

  footer .column:nth-of-type(3) hr {
    margin-bottom: 15px;

    border-color: var(--color-orange);
  }

  footer .column:nth-of-type(3) .column-links a:not(span) {
    font-size: 1rem;

    padding-right: 15px;
  }
}

/*MARK: ---1650+ */

@media (min-width: 1650px) {
  #geeks-nav .submenu h3 {
    font-size: 2rem;
  }

  #geeks-nav .submenu .submenu-container {
    width: 84vw;
  }

  .intro-headline {
    max-width: 45%;
  }

  #justified-headline {
    width: unset;

    line-height: 1.4;
  }

  #justified-headline h1 {
    font-size: 4vw;
  }

  #justified-headline h2 {
    font-size: 2.3vw;
  }
}

/*MARK: ---1800+ */

@media (min-width: 1800px) {
  .portfolio-container {
    column-gap: 4vw;
  }

  .portfolio-container .panel {
    width: calc(33% - 2.5vw);
  }
}

/*MARK: ---2600+  2K, 4k*/

@media (min-width: 2600px) {
  .portfolio-container .panel {
    width: calc(33% - 2.6vw);
  }
}

/* MARK: ----Fixing */

/* CUSTOM */

@media only screen and (max-width: 800px) {
  :root {
    --footer-height: 524px;
  }
}

@media only screen and (max-width: 600px) {
  :root {
    --footer-height: 638px;
  }
}

@media screen and (max-height: 770px) and (max-width: 979px) and (pointer: fine) {
  #geeks-nav .submenu {
    position: absolute;

    min-height: 100vh;

    top: var(--topNav-height);
  }

  #geeks-nav .submenu-column-container h3 {
    font-size: 1.2rem;

    margin-top: 1.5vh;
  }

  #geeks-nav .submenu a {
    font-size: 1.1rem;
  }

  #geeks-nav .submenu .submenu-column-container {
    justify-content: flex-start;
  }
}

@media only screen and (max-width: 901px) and (min-width: 801px) {
  .portfolio-container .panel .caption-text {
    font-size: 0.9rem !important;

    line-height: 1.1;
  }
}

/* 980 - 1300 */

@media screen and (max-width: 1300px) and (min-width: 980px) {
  #geeks-nav .submenu h3 {
    font-size: 1.5rem;

    margin-bottom: 2vh;
  }

  #geeks-nav .submenu a {
    font-size: 0.9rem;
  }

  .portfolio {
    margin-top: 30px;
  }

  .portfolio-container .panel .caption-text {
    font-size: 0.9rem;

    line-height: 1.1;
  }

  .portfolio-container .panel .caption-show .name,
  .portfolio-container .panel .caption-show .view {
    font-size: 1rem;
  }
}

/* 1301  -  1649 */

@media screen and (max-width: 1649px) and (min-width: 1301px) {
  #geeks-nav .submenu a {
    font-size: 1rem;
  }
}

.cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  margin-top: -20px;
  border-radius: 50%;
  border: 2px solid #fbab7e;
  transition: transform 0.3s ease;
  transform-origin: center center;
  pointer-events: none;
  z-index: 1000;
}

.grow,
.grow-small {
  transform: scale(4);
  background: white;
  mix-blend-mode: difference;
  border: none;
}

.grow-small {
  transform: scale(2);
}
