@import url(https://use.typekit.net/enc0qyz.css);
@import url("https://fonts.cdnfonts.com/css/akira-expanded");

@font-face {
    font-family: 'Clobber Grotesk ';
    src: local('Clobber Grotesk  Regular'), local('Clobber-Grotesk--Regular'),
        url('https://cdn.glitch.global/f8225e2b-e176-4ab3-ba0d-48bf71fef4b5/ClobberGrotesk-Regular.woff2?v=1708799089277') format('woff2'),
        url('https://cdn.glitch.global/f8225e2b-e176-4ab3-ba0d-48bf71fef4b5/ClobberGrotesk-Regular.woff?v=1708799100178') format('woff'),
        url('https://cdn.glitch.global/f8225e2b-e176-4ab3-ba0d-48bf71fef4b5/ClobberGrotesk-Regular.ttf?v=1708799099665') format('truetype');
    font-weight: 400;
    font-style: normal;
  }

  @font-face {
    font-family: 'Clobber Grotesk BoldItalic';
    src: local('Clobber Grotesk  Bold Italic'), local('Clobber-Grotesk--Bold-Italic'),
        url('https://cdn.glitch.global/f8225e2b-e176-4ab3-ba0d-48bf71fef4b5/ClobberGrotesk-BoldItalic.woff2?v=1708799097582') format('woff2'),
        url('https://cdn.glitch.global/f8225e2b-e176-4ab3-ba0d-48bf71fef4b5/ClobberGrotesk-BoldItalic.woff?v=1708799097101') format('woff'),
        url('https://cdn.glitch.global/f8225e2b-e176-4ab3-ba0d-48bf71fef4b5/ClobberGrotesk-BoldItalic.ttf?v=1708799096603') format('truetype');
    font-weight: 700;
    font-style: italic;
  }

  @font-face {
    font-family: 'Clobber Grotesk Medium';
    src: local('Clobber Grotesk  Medium'), local('Clobber-Grotesk--Medium'),
        url('https://cdn.glitch.global/f8225e2b-e176-4ab3-ba0d-48bf71fef4b5/ClobberGrotesk-Medium.woff2?v=1708799091030') format('woff2'),
        url('https://cdn.glitch.global/f8225e2b-e176-4ab3-ba0d-48bf71fef4b5/ClobberGrotesk-Medium.woff?v=1708799090521') format('woff'),
        url('https://cdn.glitch.global/f8225e2b-e176-4ab3-ba0d-48bf71fef4b5/ClobberGrotesk-Medium.ttf?v=1708799089996') format('truetype');
    font-weight: 500;
    font-style: normal;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    scroll-behavior: smooth;
  }
  
  body {
    overflow: hidden;
  }
  
  #app {
    --background: #4d4e94;
    overflow-y: scroll;
    height: 100vh;
    transition: .5s background;
    background: var(--background);
  }
  
  #app.noscroll {
    overflow-y: hidden;
    scroll-behavior: smooth;
  }
  
  header {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 14px 17px;
    z-index: 9999;
    background: linear-gradient(#000000a3, transparent);
  }
  
  header .logo {
  position: relative;
  height: 50px;
  fill: var(--col3);
  transition: .2s;
}
header .logo:hover {
  transform: scale(1.07);
}

  .--mb_active header .logo {
    fill: black;
  }

  header .logo svg {
    height: 100%;
  }
  
  header ul li {
    list-style: none;
    margin-left: 10px;
  }
  
  .three-bar {
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: solid 2px var(--col3);
    transition: .2s;
    overflow: hidden;
    transform: scale(1);
  }
  @media (min-width: 768px) {
    .three-bar {
      margin-right: 15px;
    }
  }
  .three-bar:hover {
    transform: scale(1.1);
  }
  .three-bar::after {
    content: "";
    background: black;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: .3s;
    z-index: -1;
    transform: translate(-47%,50%) scale(.3);
  }
  .--mb_active .three-bar::after {
    transform: none;
  }
  
  .bar {
    width: 22px;
    position: absolute;
    height: 2.5px;
    margin-bottom: 6px;
    background: var(--col3);
    border-radius: 2px;
    transition: .3s cubic-bezier(0, 0.55, 1, 1.25);
  }
  .bar:nth-child(2) {
    transform: translate(0, 9px);
  }
  
  .--mb_active .bar {
    background: white;
  }
  .--mb_active .bar:nth-child(1) {
    transform: rotate(45deg) translate(2px, 3px);
  }
  .--mb_active .bar:nth-child(2) {
    transform: rotate(-45deg) translate(-3px, 2px);
  }
  
  .mobilemenu {
    background: black;
    background: white;
    backdrop-filter: blur(1px);
    transform: translateX(100%);
    position: fixed;
    width: 100%;
    transition: transform .35s cubic-bezier(.645, .045, .355, 1) 0ms;
    border-radius: unset;
    bottom: 0;
    left: 0;
    margin: unset;
    max-width: unset;
    padding: 1rem 0rem;
    right: 0;
    height: var(--100vh)!important;
    border: none;
    z-index: -1;
    display: flex;
    align-items: start;
    justify-content: flex-start;
  }
  
  .mobilemenu.--mb_active {
    transform: none;
  }
  
  header .mobilemenu ul {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: var(--100vw);
    height: max-content;
    overflow: scroll;
    gap: 2rem;
    margin-top: 6rem;
    transition: .35s cubic-bezier(.645, .045, .355, 1) 0ms;
    transition-delay: .15s;
    overflow: hidden;
  }
  
  header .mobilemenu ul li {
    margin-right: -15rem;
    transition: .35s cubic-bezier(.645, .045, .355, 1) 0ms;
    transition-delay: .1s;
  }
  
  .mobilemenu.--mb_active ul li {
    margin-right: 20px;
  }

  .mobilemenu.--mb_active ul li:nth-child(2) {
    transition-delay: .25s;
  }
  .mobilemenu.--mb_active ul li:nth-child(3) {
    transition-delay: .4s;
  }
  .mobilemenu.--mb_active ul li:nth-child(4) {
    transition-delay: .55s;
  }
  
  header .mobilemenu ul li a {
    font-size: 45px;
    transition: .2s;
  }
  header .mobilemenu ul li a:hover {
    font-size: 50px;
}
  
  @media (min-width: 48em){
    header {
      background: none;
    }
    header ul {
      display: flex;
    }
    header .mobilemenu ul {
      align-items: flex-start;
    }
    .mobilemenu {
      width: 50%;
      transform: translateX(200%)
    }
    .mobilemenu.--mb_active {
      transform: translateX(100%)
    }
    .--mb_active header .logo {
      fill: white;
    }
  }
  
  header ul li a {
    text-decoration: none;
    padding: 6px 15px;
    color: gray;
    border-radius: 20px;
  }
  
  header ul li a:hover,
  .active {
    color: black;
  }

  .HeroHomePage {
    height: 85vh;
    width: 100%;
    padding: 0 1.5rem;
    position: relative;
    top: 0;
    z-index: 0;
    max-width: 1665px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    left: 50%;
    transform: translateX(-50%);
}

@media(max-width: 1280px) {
    .HeroHomePage {
        height: calc(65vh + 60px);
    }
}

@media(max-width: 599px) {
    .HeroHomePage {
        height:50vh;
        padding: 0 1rem
    }
}

.HHP__logo {
  width: 80%;
  max-width: 440px;
  min-width: 285px;
  position: absolute;
  padding-top: 35px;
}
.HHP__logo h1 {
  text-align: center;
  text-transform: lowercase;
  font-weight: 500;
  font-size: clamp(12px, calc(var(--vw)*3), 19px);
  margin-top: 2px;
}
.HHP__logo img {
  width: 100%;
  height: auto;
  pointer-events: none;
}

.mobile.black_bgr {
  background: black;
  width: var(--100vw);
  height: var(--100vh);
  position: fixed;
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: .3s;
}
.mobile.black_bgr.--mb_active {
  opacity: .5;
  pointer-events: all;
}
.projects {
  z-index:1
}
.containerproj {
    width: 100%;
    margin: auto;
    padding: 0 15px;
    overflow-x: hidden;
    justify-content: center;
    display: flex;
    align-items: center;
}
.containerproj .projectsall {
    max-width: 1650px;
}
@media (max-width: 767px) {
  .containerproj .projectsall {
    justify-content: center;
    align-items: center;
}
}
.workcard {
  margin-bottom: 40px;
}
.workcard a {
  cursor: pointer;
  text-decoration: none;
}

.thumb {
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  border-radius: 5px;
  transition: .3s;
  position: relative;
}
.workcard a:hover .thumb {
  transform: translateY(-2px) scale(0.98);
}
.hoverbg {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  border-radius: 5px;
  transition: .65s;
  position: absolute;
  filter: blur(90px);
  z-index: -5;
  width: 100%;
  top: 0;
  opacity: 0;
}
.workcard a:hover .hoverbg {
  opacity: .5;
}
@media (max-width: 576px) {
.thumb {
    width: calc(100% + 9.6%);
    margin-left: -5%;
    border-radius: 0;
}
.workcard a:hover .thumb {
  transform: none;
}
.hoverbg {
  display: none;
}
}

.workcard .text {
  padding-top: 10px;
  position: relative;
  user-select: none;
}
.workcard .text h3 {
  color: var(--col3);
  transition: .5s color;
}
.workcard .text p {
  color: var(--col2);
  transition: .5s color;
  font-size: 14px;
}
.workcard .text span {
  position: absolute;
  top: 5px;
  right: 3px;
  color: var(--col2);
  transition: .5s color;
  font-weight: 500;
  text-transform: capitalize;
}
@media (max-width: 576px) {
  .workcard .text {
    padding-top: 5px;
  }
  .workcard .text h3 {
    font-size: 17px;
  }
  .workcard .text p {
    font-size: 13px;
  }
  .workcard .text span {
    font-size: 13px;
  }
}

.footer{
  width: 100%;
  height: 250px;
  overflow: hidden;
  padding: 0 100px;
  margin-bottom: 68px;
  display: flex;
  align-items: flex-end;
}

.footer .wrap {
  max-width: 1320px;
	width: 100%;
	height: 100%;
	display: flex;
    align-items: center;
    justify-content: space-between;
	margin: 0 auto;
height: 51px;
}

.footer .wrap > * {
width: 33.3333%;
}

.footer .socialmedias > div{
  display: flex;
  width: 100px;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer .socialmedias > div i{
  color: var(--col3);
  font-size: 25px;
}

.footer .copyright{
  display: flex;
  flex-direction: column;
  font-size: 14px;
  text-align: center;
}

.footer .copyright .email{
  color: var(--col3);
  margin-bottom: 5px;
}
.footer .copyright .email:active, .footer .copyright .email:visited, .footer .copyright .email:focus {
  text-decoration-style: dashed;
}

.footer .copyright .namingrights{
  color: var(--col3);
  opacity: .7;
  margin-top: 2px;
}

.footer .logo{
display: flex;
justify-content: flex-end;
}

.footer .logo svg{
  fill: var(--col3);
  height: 51px;
}

@media (max-width: 767px) {
  .footer{
      padding-left: 25px;
      padding-right: 25px;
  }

.footer .wrap{
      flex-direction: column;
  height: auto;
  }

.footer .wrap > * {
  width: auto;
  display: block;
}

  .footer .socialmedias{
      margin-top: 140px;
  }

  .footer .copyright{
      margin-top: 26px;
  }

  .footer .logo{
      margin-top: 42px;
  }
}

.alltc {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-bottom: 70px;
}
@media (max-width: 767px) {
  .alltc {
    flex-wrap: wrap;
  }
}
@media (max-width: 540px) {
  .alltc {
    justify-content: left;
    padding: 0 20px;
  }
}
.tc {
  width: calc(100%/5);
  aspect-ratio: 0.81081081081;
}
@media (max-width: 767px) {
  .tc {
    width: 150px;
    margin: 9px 7px;
  }
}
@media (max-width: 540px) {
    .tc {
    --gap: 12px;
    width: calc((100%/2) - (var(--gap)*2));
    margin: 8px var(--gap);
    aspect-ratio: 1;
    overflow: hidden !important;
  }
}
.tc img {
  height: 100%;
  position: relative;
  pointer-events: none;
  transition: .5s;
}
.tc:hover img, .tc.hover-efct img, .tc a:active img, .tc a:visited img {
    transform: scale(1.2) skewX(5deg);
    opacity: .5;
}
@media (max-width: 540px) {
  .tc:hover img, .tc.hover-efct img, .tc a:visited img {
      transform: scale(1.2)!important;
  }
}
.tc a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  text-decoration: none;
  width: 100%;
  height: 100%;
  position: relative;
  background: black;
  transform: skewX(-5deg);
  overflow: hidden;
}
@media (max-width: 540px) {
    .tc a {
    transform: skewX(0deg);
    overflow: hidden!important;
  }
}
.tc a>* {
  transform: skewX(5deg);
}
@media (max-width: 540px) {
    .tc a>* {
    transform: skewX(0deg);
  }
}
.tc_txt {
  transition: .5s;
  transform: skewX(5deg) translateY(-200px)!important;
  margin: 0 10px;
  position: absolute;
  z-index: 1;
}
.tc:hover .tc_txt, .tc.hover-efct .tc_txt, .tc a:active .tc_txt, .tc a:visited .tc_txt{
  transform: skewX(5deg) translateY(0px)!important;
}
@media (max-width: 540px) {
  .tc_txt {
    transform: translateY(-200px)!important;
  }
  .tc:hover .tc_txt, .tc.hover-efct .tc_txt, .tc a:active .tc_txt, .tc a:visited .tc_txt{
    transform: translateY(0px)!important;
  }
}
.tc h4 {
  color: white;
  color: #ffc300;
  text-decoration: underline;
  font-size: 24px;
}
@media (max-width: 540px) {
  .tc h4 {
    font-size: 17px;
  }
}
.tc p {
  color: white;
  transition: .3s;
  font-size: 13px;
}
@media (max-width: 540px) {
  .tc p {
    font-size: 11px;
  }
}

.meettheteam h3 {
  text-wrap: nowrap;
  font-size: 50px;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 100%;
  text-align: center;
  margin: 40px 0 30px;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--col5);
}
@media (max-width: 767px) {
  .meettheteam h3 {
    font-size: 35px;
  }
}


section.Contact {
  border-top: var(--col6) 2px solid;
  padding: 20px 0 40px 0;
  font-family: "Poppins", sans-serif;
  transition: .5s;
  overflow: hidden;
}

#errtxt {
  display: none;
  font-family: 'Red Hat Display', 'Roboto', sans-serif, var(--font-family-sans-serif);
  font-weight: 400;
  font-size: 16px;
  margin: 0 0 5px 0;
}

.inputtext input, .inputtext textarea {
  height: 48px;
  padding: 16px 56px 16px 16px;
  background: white;
  outline: none;
  border-radius: 5px;
  border: #bcbcbc 2px solid;
  width: 100%;
  transition: .3s;
}

.inputtext textarea {
  min-height: 96px;
  overflow: auto;
  resize: vertical;
  font-family: "Poppins", sans-serif;
}

section.Contact h2 {
  font-weight: 700;
  font-size: clamp(46px, 10vw, 65px);
  margin: 0;
  text-align: center;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--col5);
}

section.Contact h4 {
  font-weight: 500;
  text-decoration: underline;
  font-style: italic;
  opacity: .8;
  font-size: 15px;
  margin: -17px 0 15px 5px;
  color: var(--col3);
  text-align: center;
  transition: .5s;
}

@media (min-width: 576px) {
  section.Contact h2, section.Contact h4 {
      text-align: left;
  }
}

.inputtext h3 {
  font-weight: 400;
  font-size: 20px;
  margin: 0 0 5px 0;
  color: var(--col3);
  opacity: .5;
  transition: .5s;
}

button.actionbutton {
  display: flex;
  gap: 4px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  font-size: 20px;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--col3);
}

button.actionbutton .hoverline {
  width: 0;
  height: 1.5px;
  margin-top: -5px;
  background: var(--col3);
  transition: .2s ease-out;
}

button.actionbutton:hover .hoverline {
  width: 55px;
}

.inputtext {
  margin: 0 0 10px 0;
}


section.end {
  min-height: 100vh;
}

.prices {
  padding-top: 80px;
}
.navemail {
  position: absolute;
  color: black;
  bottom: 10px;
  right: 15px;
  font-weight: 500;
}

section.partners {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s;
    border-top: var(--col6) 2px solid;
	margin-top: -80px;
}
@media (max-width: 767px) {
section.partners {
    margin-top: -210px;
  }
}
@media (max-width: 576px) {
section.partners {
    margin-top: -180px;
  }
}
.partners .p_content{
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0 10px 0;
}
@media (max-width: 767px) {
.partners .p_content{
        width: calc(100% - 15px);
    }
}
.partners h3 {
    color: var(--col3);
    font-size: 40px;
    margin-bottom: 30px;
    font-weight: 900;
    text-transform: uppercase;
    transition: .5s;
}
.partners .p_list{
    --opacity: .5;
  --hopacity: 1;
  
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}
.partner{
	width: 20%;
	margin-right: 5%;
	opacity: var(--opacity);
	transition: .5s;
	margin-bottom: 50px;
}
.partner:hover{
	opacity: var(--hopacity);
}
.partner:nth-child(4n) {
	margin-right: 2.5%;
}
.partner:nth-child(1), .partner:nth-child(5), .partner:nth-child(9) {
	margin-left: 2.5%;
}
@media (max-width: 767px) {
.partner{
	width: 45%;
	margin-right: 2.5%!important;
  margin-left: 2.5%!important;
}
}
.partner img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: invert(var(--isinverted));
    transition: .5s;
}
.gradienttxt {
  stroke-width: 0;
  -webkit-text-stroke-color: transparent;
    background: linear-gradient(90deg, var(--col5), var(--col7));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
