/* table of contents

1. Fonts
2. Global Settings
3. Components
4. Nav Menu
5. Homepage
  5.1 Hero
  5.2 Strategy
  5.3 Services
  5.4 Projects
  5.5 Contact
6. Footer
7. Project Detail Page
8. About
7. Thank You Page
8. Legal
10. Contact page
11. Evaluation

*/

/*========
  1. Fonts
  ========*/

@font-face {
  font-family: "Roboto-Black";
  src: url(fonts/roboto/Roboto-Black.woff2);
}

@font-face {
  font-family: "Manrope-Light";
  src: url(fonts/manrope/Manrope-Light.woff2);
}

@font-face {
  font-family: "Manrope-Regular";
  src: url(fonts/manrope/Manrope-Regular.woff2);
}

@font-face {
  font-family: "Manrope-Medium";
  src: url(fonts/manrope/Manrope-Medium.woff2);
}

@font-face {
  font-family: "Manrope-SemiBold";
  src: url(fonts/manrope/Manrope-SemiBold.woff2);
}

/*==================
  2. Global Settings
  ==================*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --ff-body: "Manrope-Regular";
  --ff-heading-light: "Manrope-Light";
  --ff-heading-secondary: "Manrope-Medium";
  --ff-heading-primary: "Manrope-SemiBold";

  --ff-light: "Manrope-Light";
  --ff-regular: "Manrope-Regular";
  --ff-medium: "Manrope-Medium";
  --ff-semi-bold: "Manrope-SemiBold";

  --fs-display: 40px;
  --fs-h1: 40px;
  --fs-h2: 32px;
  --fs-h3: 20px;
  --fs-h4: 18px;

  --fs-display-title: 30px;
  --fs-section-title: 50px;
  --fs-secondary-title: 18px;
  --fs-big-paragraph: 20px;
  --fs-body: 18px;

  --clr-primary: #8fe093;
  --clr-primary-light: #cff2d1;
  --clr-bg-light: #faf8ed;
  --clr-accent: #000;
  /* --clr-body: #666; */
  --clr-secondary: #000;
  --clr-lighter: #6f6f6f;
  --clr-light-grey: #f8f8f8;
}

@media (min-width: 768px) {
  :root {
    --fs-display: 45px;
    --fs-display-title: 53px;
    --fs-section-title: 60px;
    --fs-big-paragraph: 24px;
    --fs-body: 20px;
  }
}

@media (min-width: 992px) {
  :root {
    --fs-display: 60px;
    --fs-h1: 50px;
    --fs-h2: 40px;
    --fs-h3: 30px;
    --fs-h4: 20px;

    --fs-display-title: 80px;
    --fs-section-title: 70px;
    --fs-secondary-title: 20px;
    --fs-big-paragraph: 28px;
  }
}

*::selection {
  color: #fff;
  background-color: #000;
}

/* custom mouse pointer */
body {
  cursor: url("/media/global/custom-cursor.png"), auto;
}

a:hover,
label:hover,
input:hover,
textarea:hover,
button:hover {
  cursor: url("/media/global/custom-cursor.png"), pointer !important;
}

/* Scrollbar styles */

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #000;
}

.section-title {
  font-size: var(--fs-section-title);
}

.secondary-title {
  font-size: var(--fs-secondary-title);
  font-family: var(--ff-medium);
}

/* .display-title {
  font-size: var(--fs-display-title);
  font-family: var(--ff-medium);
  line-height: 1.2em;
} */

.display-title {
  font-size: var(--fs-display-title);
  font-family: var(--ff-medium);
  line-height: 1.2em;
}

.big-p {
  font-size: var(--fs-big-paragraph);
  font-family: var(--ff-medium);
}

.display-font {
  font-family: var(--ff-heading-primary);
  font-size: var(--fs-display);
  color: var(--clr-secondary);
}

h1 {
  font-family: var(--ff-heading-primary);
  font-size: var(--fs-h1);
  color: var(--clr-secondary);
}

h2 {
  font-family: var(--ff-heading-primary);
  font-size: var(--fs-h2);
  color: var(--clr-secondary);
  line-height: 1.2;
}

h3 {
  font-family: var(--ff-heading-secondary);
  font-size: var(--fs-h3);
  color: var(--clr-secondary);
}

h4 {
  font-family: var(--ff-heading-secondary);
  font-size: var(--fs-h4);
  color: var(--clr-secondary);
}

p {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  color: var(--clr-secondary);
  line-height: 1.7;
}

.primary-clr {
  color: var(--clr-primary);
}

html {
  scroll-behavior: smooth;
}

.my-bg-light {
  background-color: var(--clr-bg-light);
}

.my-bg-dark {
  background-color: var(--clr-primary-light);
}

body,
html {
  overflow-x: hidden;
}

body {
  overscroll-behavior-y: none;
}

section {
  padding: 4rem 0;
}

@media (min-width: 992px) {
  section {
    padding: 6rem 0;
  }
}

.section-heading-center {
  text-align: center;
}

.fitted-100 {
  width: 90%;
  max-width: 100%;
  margin: 0 auto;
}

.fitted-90 {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
}

.fitted-80 {
  width: 80%;
  max-width: 1120px;
  margin: 0 auto;
}

img {
  max-width: 100%;
}

.text-align-center-container {
  text-align: center;
}

/*=============
  3. Components
  =============*/

.button-col {
  text-align: center;
}

.button {
  border-radius: 50px;
  font-size: 18px;
  color: #000;
  position: relative;
  display: inline-flex;
  padding: 15px 30px;
  border-radius: 50px;
  font-family: var(--ff-medium);
  background-color: transparent;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 6px 7px 15px 0px rgb(138 138 138 / 18%);
}

.button::before {
  content: "";
  position: absolute;
  top: var(--y);
  left: var(--x);
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #000;
  transition: width 0.6s, height 0.6s;
}

.button span {
  position: relative;
  z-index: 1;
  transition: color 0.6s;
  /* avoid highlighting on mobile */
  pointer-events: none;
}

.button:hover span {
  color: #fff;
}

.button:hover::before {
  width: 500px;
  height: 500px;
}

.button-lg {
  font-size: 22px;
}

.section-subtitle {
  margin-bottom: 10px;
}

/*===========
  3. Nav Menu
  ===========*/

.fitted-90-nav,
.fitted-90-footer {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 0 2rem;
  position: relative;
}

/* Logo */

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: var(--ff-heading-primary);
  font-size: 24px;
  color: var(--clr-secondary);
  line-height: 1.3;
}

.logo-img {
  width: 80px;
}

@media (min-width: 768px) {
  .logo-img {
    width: 90px;
  }
}

/* Nav Links */

.nav-links {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  justify-content: space-between;
  width: 550px;
  /* margin-right: 80px; */
}

.nav-links li {
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-links a {
  font-family: var(--ff-medium);
  font-size: var(--fs-body);
  color: var(--clr-secondary);
  text-decoration: none;
}

.nav-item-hr {
  height: 1px !important;
  border: 0;
  opacity: 1;
  width: 100%;
  transition: width 0.3s;
  margin: 0 auto;
  position: absolute;
  margin-top: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.nav-item:hover .nav-item-hr {
  width: 50%;
}

.nav-links .button {
  font-size: 20px;
  font-family: var(--ff-semi-bold);
}

/* Nav Links on mobile */

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: var(--clr-secondary);
  margin: 5px;
  transition: all 0.3s ease;
  border-radius: 5px;
}

@media (max-width: 991px) {
  #nav {
    width: 100%;
    padding: 2rem 5%;
  }

  .nav-links {
    display: block;
    border-radius: 1rem 0 0 1rem;
    width: 95%;
    height: 70vh;
    position: absolute;
    right: 0;
    top: 100%;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
    z-index: 100;
    border: none;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px 0 rgb(0 0 0 / 37%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: right;
    padding-left: 0;
    padding: 4rem 3rem 4rem 0;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }

  .nav-item-hr {
    display: none;
  }

  .nav-links li {
    opacity: 0;
    width: 100%;
    padding: 1rem 0;
  }

  .section-title-outline {
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #000;
  }

  .nav-links a,
  .nav-links .button {
    font-family: "Roboto-Black", sans-serif;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #000;
    font-size: 75px;
    line-height: 1.2em;
    width: 100%;
    display: inline-block;
  }

  .nav-links .button {
    display: block;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .burger {
    display: block;
  }
}

@media (max-width: 767px) {
  .nav-links a,
  .nav-links .button {
    font-size: 45px;
  }
}

.nav-active {
  transform: translateX(0%);
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

.toggle .line-1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line-2 {
  opacity: 0;
}

.toggle .line-3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* ===========
   5. Homepage
   =========== */

/* ========
   5.1 Hero
   ======== */

.title-text-container {
  overflow: hidden;
}

.title-text-container .title-text {
  transform: translateY(100%);
}

.screenshot-preview.hero-banner {
  padding-bottom: 40vh;
}

.homepage-hero h1 {
  font-size: 55px;
  font-family: "Roboto-Black", sans-serif;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px white;
  text-shadow: 2px 2px #0000000f;
  position: absolute;
  z-index: 20;
  bottom: 50%;
  transform: translateY(50%);
  width: 100%;
  margin-bottom: 0;
  text-align: center;
}

@media (min-width: 768px) {
  .screenshot-preview.hero-banner {
    padding-bottom: 56.25%;
  }
  .homepage-hero h1 {
    font-size: 9vw;
  }
}

@media (min-width: 992px) {
  .homepage-hero h1 {
    font-size: 8vw;
  }
}

/* =====================
   5.2 Homepage projects
   ===================== */

.section-title {
  margin-bottom: 5rem;
  font-family: "Roboto-Black", sans-serif;
}

@media (min-width: 992px) {
  .section-title {
    margin-bottom: 6rem;
  }
}

.section-title-outline {
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #000;
}

.section-title-outline::selection {
  -webkit-text-stroke: 1px #fff;
}

.project-caption {
  text-align: center;
}

.project-caption h3 {
  margin-bottom: 1rem;
}

.button.view-project {
  margin: 2rem 0 6rem;
  left: 50%;
  transform: translateX(-50%);
}

/* .homepage-project-img-col {
  order: 1;
}

.homepage-project-info-col {
  order: 2;
  text-align: center;
} */

/* .button.view-project {
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .homepage-project-info-col {
    order: 1;
    text-align: left;
    padding: 0 1rem;
  }
  .homepage-project-img-col {
    margin-bottom: 0;
    order: 2;
    padding: 0 1rem;
  }
}

@media (min-width: 992px) {
  .homepage-project-info-block {
    margin-top: 15%;
  }
  .button.view-project {
    margin-top: 4rem;
  }
}

.homepage-project-info-mobile {
  display: block;
  line-height: 1.5;
}

.homepage-project-title,
  .homepage-project-desc {
    display: none;
}

@media (min-width: 768px) {
  .homepage-project-desc {
    display: none;
  }
  .homepage-project-info-mobile {
    display: none;
  }
  .homepage-project-title,
  .homepage-project-desc {
    display: block;
  }
}

.homepage-project-row {
  margin-bottom: 7rem;
}

@media (min-width: 768px) {
  .homepage-project-row.reverse {
    flex-direction: row-reverse;
  }
} */

.homepage-project-desc {
  margin: 1rem 0;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .homepage-project-desc {
    margin: 2rem 0;
  }
}

.homepage-project-services {
  font-family: var(--ff-medium);
  color: var(--clr-lighter);
  font-size: 16px;
}

/* ============
   5.4 Feedback
   ============ */

.feedback-col,
.faq-col {
  margin-left: auto;
}

.testimonial-author {
  margin: 3rem 0;
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 70px !important;
  height: 70px;
  border-radius: 100%;
  margin-right: 1rem;
}

@media (min-width: 768px) {
  .testimonial-author img {
    width: 80px !important;
    height: 80px;
    margin-right: 2rem;
  }
}

.author-details p {
  line-height: 1.3em;
  margin-bottom: 0;
}

.author-details p:last-child {
  font-size: 16px;
  margin-top: 5px;
}

/* FAQ */

.faq h1 {
  margin-bottom: 6rem;
}

@media (min-width: 768px) {
  .faq h1 {
    margin-bottom: 8rem;
  }
}

.faq-item {
  border-bottom: 1px solid rgb(226, 226, 226);
  margin-bottom: 1.5rem;
}

.question {
  color: var(--clr-secondary);
  font-family: var(--ff-heading-secondary);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.question:hover {
  color: var(--clr-secondary);
}

.faq-item img {
  width: 15px;
  margin-left: 1rem;
}

.answer {
  padding-bottom: 1.5rem;
  font-size: var(--fs-body);
  color: var(--clr-body);
  font-family: var(--ff-body);
}

.answer p {
  line-height: 2;
}

.answer a,
.freizeit a {
  color: #000;
}

/* ================
   5.5 Homepage CTA
   ================ */

.homepage-cta .col-md-10 {
  margin: 0 auto;
}

.homepage-cta h2 {
  font-family: var(--ff-semi-bold);
  text-align: center;
}

@media (max-width: 600px) {
  .homepage-cta h2 {
    font-size: 35px;
  }
}

/* ===========
   5.6 Contact
   =========== */

/* font sizes */
input::placeholder,
textarea::placeholder,
.form-label,
input,
textarea {
  font-size: 22px;
}

@media (min-width: 768px) {
  input::placeholder,
  textarea::placeholder,
  .form-label,
  input,
  textarea {
    font-size: 28px;
  }
}

@media (min-width: 992px) {
  input::placeholder,
  textarea::placeholder,
  .form-label,
  input,
  textarea {
    font-size: 35px;
  }
}

.form-row {
  padding: 2rem 0;
}

@media (min-width: 768px) {
  .form-row {
    padding: 4rem 0;
  }
}

.hidden {
  display: none;
}

.form-label {
  display: block;
  color: #999;
  font-family: var(--ff-medium);
  margin: 4rem 0 2rem;
}

/* Checkbox and radio styles */

input[type="checkbox"],
input[type="radio"] {
  display: none;
}

.checkbox,
.radio {
  border-radius: 50px;
  font-size: 18px;
  color: #000;
  position: relative;
  display: inline-flex;
  padding: 15px 30px;
  border-radius: 50px;
  font-family: var(--ff-medium);
  background-color: transparent;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 6px 7px 15px 0px rgb(138 138 138 / 18%);
  margin: 0 1rem 1rem 0;
}

.checkbox::before,
.radio::before {
  content: "";
  position: absolute;
  top: var(--y);
  left: var(--x);
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #000;
  transition: width 0.6s, height 0.6s;
}

.checkbox span,
.radio span {
  position: relative;
  z-index: 1;
  transition: color 0.6s;
  /* avoid highlighting on mobile */
  pointer-events: none;
}

input[type="checkbox"]:checked + .checkbox span,
input[type="radio"]:checked + .radio span {
  color: #fff;
}

input[type="checkbox"]:checked + .checkbox::before,
input[type="radio"]:checked + .radio::before {
  width: 500px;
  height: 500px;
}

/* Placeholder styles */
input,
textarea {
  width: 100%;
  margin: 3rem 0 0;
  border: none;
  border-bottom: 1px solid #999;
  padding: 1.5rem 0 1.5rem;
  color: #000;
  font-family: var(--ff-medium);
}

@media (min-width: 768px) {
  input,
  textarea {
    margin: 4rem 0 2rem;
  }
}

input:focus-visible,
input:hover,
textarea:focus-visible,
textarea:hover {
  outline: none;
  border-bottom: 1px solid #000;
}

input::placeholder,
textarea::placeholder {
  color: #999;
  font-family: var(--ff-medium);
}

/* Send button */
.contact-form-button {
  border: none;
  margin-top: 4rem;
}

/*=========
  6. Footer
  =========*/

footer {
  background-color: var(--clr-secondary);
  margin-top: 4rem;
  /* height: 100%; */
  min-height: 100vh;
  /* max-height: 1100px; */
  /* padding: 2rem 0; */
  /* display: flex;
  align-items: center; */
}

section.footer {
  height: 100%;
}

.footer-contact {
  position: fixed;
  width: 60px;
  bottom: 5%;
  right: 5%;
  z-index: 100;
  border-radius: 100%;
  box-shadow: 6px 7px 15px 0px rgb(138 138 138 / 30%);
  transform: scale(1);
  transition: all 0.3s;
}

.language-toggle {
  width: 55px;
  border-radius: 100%;
  box-shadow: 6px 7px 15px 0px rgb(138 138 138 / 30%);
  transform: scale(1);
  transition: all 0.3s;
}

.language-toggle-mobile {
  display: none;
}

/* remove language toggle from slide-out menu */
@media (max-width: 991px) {
  .language-toggle-desktop {
    display: none;
  }
  .language-toggle {
    width: 45px;
  }
  .language-toggle-mobile {
    position: absolute;
    display: block;
    right: 100px;
  }
}

@media (max-width: 500px) {
  .language-toggle-mobile {
    position: absolute;
    display: block;
    right: 70px;
  }
}

.footer-contact:hover {
  transform: scale(1.1);
  transition: all 0.3s;
}

.language-toggle:hover {
  transform: scale(1.1);
  transition: all 0.3s;
}

footer h1 {
  color: #fff;
}

.footer-display-link {
  font-family: var(--ff-light);
  text-decoration: none;
  color: #fff;
  margin-top: 1rem;
  /* pointer-events: none; */
}

.footer-display-hr {
  height: 2px !important;
  margin: 1rem 0 4rem;
  border: 0;
  opacity: 1;
  width: 100%;
  transition: width 0.5s;
}

.footer-display-link:hover .footer-display-hr {
  width: 0;
  transition: all 0.5s;
}

/* Footer Footer */
.footer-footer {
  margin-top: 1rem;
}

@media (min-width: 992px) {
  .footer-footer {
    margin-top: 4rem;
  }
}

/* visibility logic */
footer .flex-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-body {
  text-align: center;
}

.footer-desktop-col a:hover,
.footer-mobile-col a:hover {
  color: #9a9a9a;
  transition: all 0.3s;
}

.footer-mobile-col {
  margin-top: 3rem;
  text-align: center;
}

footer .footer-socials-col {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  max-width: 50%;
  margin: 3rem auto;
}

.footer-mobile-col a {
  margin-bottom: 12px;
}

footer .footer-desktop-link,
footer .footer-desktop-col {
  display: none;
}

.footer-mobile-link {
  display: block;
}

@media (min-width: 992px) {
  .footer-body {
    text-align: left;
  }
  .footer-mobile-col {
    margin-top: 0;
    text-align: left;
  }
  footer .footer-desktop-link,
  footer .footer-desktop-col {
    display: flex;
  }
  .footer-mobile-link {
    display: none;
  }
  .footer-mobile-col a {
    margin-bottom: 0;
  }
  footer .footer-socials-col {
    flex-direction: column;
    justify-content: space-between;
    margin: 0;
  }
}

/* footer email */
.footer-email {
  text-decoration: none;
  color: #fff;
  font-size: 22px;
  font-family: var(--ff-medium);
  position: relative;
  padding-bottom: 1rem;
}

.footer-email:hover {
  color: #fff;
}

.footer-email::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid grey;
}

.footer-email::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid white;
  z-index: 3;
  transform: scaleX(0);
  transition: transform 0.4s;
}

.footer-email-container:hover .footer-email::after {
  transform: scaleX(1);
  transition: all 0.4s;
}

/* footer lists */

ul.footer-list {
  list-style: none;
  padding-left: 0;
  margin: 3rem 0 0;
}

ul.footer-list li {
  margin-bottom: 0.5rem;
}

ul.footer-list a {
  color: #fff;
  text-decoration: none;
  font-family: var(--ff-medium);
  font-size: 18px;
}

.footer-links {
  color: #fff;
  text-decoration: none;
  font-family: var(--ff-medium);
  font-size: 22px;
}

.footer-links img {
  width: 30px;
}

/*======================
  7. Project Detail Page
  ======================*/

/* Project Hero section */

.project-hero .section-title {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .project-hero .secondary-title {
    margin-bottom: 2rem;
  }
}

/* eliminate bug of erroneous line breaks with gsap splittext */
.project-title-container .display-title div {
  white-space: nowrap;
}

/* so that text doesn't appear prematurely */
/* .project-title-container .display-title, */
.premature-container {
  opacity: 0;
}

/* the selector for the actually affected text */
/* .project-title-container .display-title div {
  opacity: 0;
  transform: translateY(100px);
} */

/* Project Hero Screenshot */

.jvr-screenshot {
  z-index: 1;
  position: relative;
  height: 100%;
}

.screenshot-preview {
  padding-bottom: 50vh;
  position: relative;
  display: block;
  overflow: hidden;
  perspective: 10px;
  border-radius: 10px;
}

.screenshot-preview img,
.screenshot-preview-sm img {
  position: absolute;
  top: -15%;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 150%;
  object-fit: cover;
}

.desktop-mockup {
  display: none;
}

@media (min-width: 768px) {
  .mobile-mockup {
    display: none;
  }
  .desktop-mockup {
    display: block;
  }
}

@media (min-width: 992px) {
  .screenshot-preview img {
    top: 0;
  }
  .screenshot-preview img,
  .screenshot-preview-sm img {
    top: -30%;
  }
  .screenshot-preview {
    padding-bottom: 56.25%;
  }
}

/* Project Details */

.the-project {
  padding-top: 14px;
}

.project-details-row {
  margin-top: 6rem;
}

.project-details-row h4 {
  margin-bottom: 0.5rem;
}

/* .segment-col {
  display: none;
}

@media (min-width: 768px) {
  .segment-col {
    display: block;
  }
} */

.project-details-heading {
  font-size: 28px;
  margin-bottom: 2rem;
}

.project-welcome-heading {
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .project-details-heading {
    font-size: var(--fs-secondary-title);
    margin-bottom: 0;
  }
  .project-welcome-heading {
    display: none;
  }
}

.project-details ul {
  list-style: none;
  padding-left: 0;
  color: var(--clr-secondary);
  font-family: var(--ff-light);
  line-height: 1.7;
  font-size: 16px;
}

@media (min-width: 768px) {
  .project-details ul {
    font-size: 18px;
  }
}

@media (min-width: 992px) {
  .project-details ul {
    font-size: 20px;
  }
}

.goto-website.big-p.footer-email {
  color: #000;
  display: inline-block;
  margin-top: 2rem;
}

/* Project Impression */

@media (min-width: 768px) {
  .project-impressions .col-md-6:last-child {
    margin-top: 18rem;
  }
}

.project-caption h3 {
  line-height: 1.3em;
}

.screenshot-preview-sm {
  padding-bottom: 100%;
  position: relative;
  display: block;
  overflow: hidden;
  perspective: 10px;
  margin-bottom: 4rem;
  border-radius: 10px;
}

.screenshot-caption {
  font-family: var(--ff-medium);
  font-size: 20px;
  text-align: center;
  margin-bottom: 4rem;
}

@media (min-width: 992px) {
  .screenshot-caption {
    font-size: 22px;
  }
}

/* Testimonial section */
.testimonial-text {
  margin-bottom: 2rem;
}

/* Next Project Section */
.next-project .col-12 {
  text-align: center;
}

.next-project a {
  font-family: var(--ff-medium);
  color: var(--clr-secondary);
  text-decoration: none;
}

.next-project-hr {
  height: 2px !important;
  margin: 2rem auto;
  border: 0;
  opacity: 1;
  width: 50%;
  transition: width 0.3s;
}

.next-project a:hover .next-project-hr {
  width: 25%;
  transition: all 0.3s;
}

/* .menu-mockup p {
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .menu-mockup .col-md-4 img {
    width: 75%;
  }
}

.menu-mockup img {
  box-shadow: none;
}

.devices-col {
  text-align: center;
}

.mockup-devices {
  box-shadow: none !important;
}

.client-review {
  clip-path: polygon(0 0, 100% 0, 100% 92%, 50% 100%, 0 92%);
}

.client-review .row {
  max-width: 900px;
}

.review-container {
  display: flex;
  margin-bottom: 2rem;
}

.project-testimonial {
  height: 110px;
  width: 110px;
  border-radius: 100%;
  margin-right: 4rem;
  display: none;
}

.project-testimonial-mobile {
  width: 90px;
  height: 90px;
  border-radius: 100%;
  margin: 1rem 0;
}

@media (min-width: 768px) {
  .project-testimonial {
    display: block;
  }
  .project-testimonial-mobile {
    display: none;
  }
  .client-review {
    clip-path: polygon(0 0, 100% 0, 100% 84%, 50% 100%, 0 84%);
  }
} */

/*========
  8. About
  ========*/

.screenshot-preview.about-bg {
  padding-bottom: 40vh;
}

.about-hero h1 {
  font-size: 55px;
  font-family: "Roboto-Black", sans-serif;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #fff;
  text-shadow: 2px 2px #0000000f;
  position: absolute;
  z-index: 20;
  bottom: 50%;
  transform: translateY(50%);
  width: 100%;
  margin-bottom: 0;
  text-align: center;
}

@media (min-width: 768px) {
  .screenshot-preview.about-bg {
    padding-bottom: 56.25%;
  }
  .about-hero h1 {
    font-size: 9vw;
  }
}

@media (min-width: 992px) {
  .about-hero h1 {
    font-size: 8vw;
  }
}

@media (min-width: 768px) {
  .work-pics-row .col-md-6:last-child,
  .leasure-pics-row .col-md-6:last-child {
    margin-top: 15rem;
  }
}

.secondary-title {
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .secondary-title {
    margin-bottom: 0;
  }
}

.partners .feedback-owl {
  margin-top: 5rem;
}

.feedback-owl p.big-p {
  /* font-size: 24px; */
  font-family: var(--ff-light);
}

/* .about-page .screenshot-preview {
  padding-bottom: 40vh;
}

@media (min-width: 768px) {
  .about-page .screenshot-preview.about-bg {
    padding-bottom: 50%;
  }
  .about-page .screenshot-preview.about-img {
    padding-bottom: 60%;
  }
}

/* Hero */

/* .screenshot-preview.about-bg {
  border-width: 15px 15px 35px 15px;
  border-style: solid;
  border-color: white;
  box-shadow: 0 2px 25px rgba(0, 0, 0, 0.1);
  position: relative;
}

@media (min-width: 768px) {
  .screenshot-preview.about-bg {
    border-width: 20px 20px 50px 20px;
  }
}

.screenshot-preview.about-bg h1 {
  padding: 25% 20px 20px;
  color: white;
  font-size: var(--fs-display);
  font-family: var(--ff-medium);
  position: absolute;
  z-index: 20;
  bottom: 0;
  left: 0;
  width: 100%;
  margin-bottom: 0;
  background: rgb(0,0,0);
  background: linear-gradient(360deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}

@media (min-width: 768px) {
  .screenshot-preview.about-bg h1 {
    padding: 25% 40px 20px;
  }
} */

/* About me */

.about-img-row h2 {
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .about-img-row h2 {
    margin-bottom: 0;
  }
}

.screenshot-preview.about-img {
  border-width: 15px 15px 35px 15px;
  position: relative;
  border-color: white;
  border-style: solid;
  border-radius: 5px;
  box-shadow: 0 2px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 4rem;
  width: 100%;
}

@media (min-width: 768px) {
  .screenshot-preview.about-img {
    border-width: 20px 20px 50px 20px;
  }
}

/*=================
  7. Thank You Page
  =================*/

section.thank-you {
  min-height: 100vh;
}

.thank-you .big-p {
  margin: 3rem 0;
}

/*========
  8. Legal
  ========*/

.legal h2 {
  margin-top: 2rem;
}

/*================
  10. Contact Page
  ================*/

.contact-page h2 {
  margin-bottom: 1rem;
}

.contact-page footer {
  display: none;
}

/*============
  11. 404 Page
  ============*/

section.na-404 {
  min-height: 100vh;
}

.na-404 .big-p {
  margin: 3rem 0;
}

/*==============
  11. Evaluation
  ==============*/

.evaluation h1 {
  margin-bottom: 2rem;
}

.thanks-bitmoji {
  width: 250px;
  max-width: 60%;
  margin-bottom: 2rem;
}
