/*! fonts */
h1 {
  font-size: 56px;
  font-weight: 600;
}

h2 {
  font-size: 40px;
  font-weight: 500;
}

h3 {
  font-size: 34px;
  font-weight: 400;
  line-height: 40px;
}

h4 {
  font-size: 26px;
  font-weight: 300;
  line-height: 32px;
}

h5 {
  font-size: 22px;
  font-weight: 200;
  line-height: 28px;
}

h6 {
  font-size: 18px;
  font-weight: 200;
  line-height: 26px;
}

span,
p,
a {
  font-size: 20px;
  font-weight: 300;
  line-height: 26px;
}

a {
  color: black;
}

@media all and (max-width: 768px) {
  h1 {
    font-size: 9vw;
    line-height: 10vw;
    font-weight: 700;
  }
  h2 {
    font-size: 7vw;
    line-height: 8vw;
    font-weight: 600;
  }
  h3 {
    font-size: 6vw;
    font-weight: 500;
    line-height: 7vw;
  }
  h4 {
    font-size: 5vw;
    line-height: 6vw;
    font-weight: 400;
  }
  h5 {
    font-size: 4vw;
    line-height: 5vw;
    font-weight: 300;
  }
  span,
  p,
  a {
    font-size: 3vw;
    line-height: 4vw;
    font-weight: 100;
  }
}
/*! reset */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  font-family: "Outfit", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  position: relative;
}

section {
  overflow: hidden;
}

a {
  text-decoration: none;
  cursor: pointer;
}

.d-none {
  display: none !important;
}

/*! Css Reset responsive */
@media screen and (max-width: 768px) {
  .d-none-mob {
    display: none !important;
  }
}
/*! mixins */
/*! colors */
/*! buttons */
button {
  border: none;
  padding: 15px 25px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
button svg {
  height: 2vw;
}

.btn-black {
  background-color: rgb(25, 25, 25);
  color: rgb(220, 220, 220);
  transition: all 0.3s;
}
.btn-black:hover {
  background-color: rgb(220, 220, 220);
  color: rgb(25, 25, 25);
  transition: all 0.3s;
}

/*! scrollbar */
::-webkit-scrollbar {
  width: 5px !important;
  background: rgba(0, 0, 0, 0) !important;
}

::-webkit-scrollbar-track {
  border-radius: 10px !important;
  margin: 15px !important;
}

::-webkit-scrollbar-thumb {
  background: #272c48 !important;
  border-radius: 10px !important;
}

::-webkit-scrollbar-thumb:hover {
  background: #9496a4 !important;
}

::-webkit-scrollbar:horizontal {
  height: 5px !important;
}

.scroll-down {
  width: 100%;
  height: 100px;
  bottom: 0;
  left: 0;
  z-index: 19;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 1.25s;
}
.scroll-down span {
  margin-top: 10px;
}

.scroll-down-scrolled {
  opacity: 0 !important;
  bottom: 15vh;
  transition: all 1s;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 3px solid rgb(25, 25, 25);
  border-radius: 60px;
  position: relative;
}
.mouse::before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgb(25, 25, 25);
  border-radius: 50%;
  opacity: 1;
  animation: wheel 1.5s infinite;
  -webkit-animation: wheel 1.5s infinite;
}

@keyframes wheel {
  to {
    opacity: 0;
    top: 27.5px;
  }
}
/*! header */
nav {
  position: fixed;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  top: 0;
  padding: 0 10vw 0 10vw;
  transition: all 0.5s;
  z-index: 200000;
}
nav * {
  font-size: 1.3vw;
  font-family: "Outfit", sans-serif;
}

.nav-in {
  width: 100%;
  height: 85px;
  background: white;
  padding: 15px 50px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 2vw;
  transition: all 0.5s;
}
.nav-in .nav-logo {
  height: 100%;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: row;
  justify-content: unset;
  align-items: center;
  gap: 12px;
}
.nav-in .nav-logo img {
  height: 100%;
  width: auto;
}
.nav-in .nav-logo h3 {
  opacity: 100%;
  font-weight: 600 !important;
  transition: all 0.3s;
}
.nav-in .menu-items {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
.nav-in .menu-items ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2vw;
}
.nav-in .menu-items ul li a {
  color: rgb(25, 25, 25);
  transition: all 0.3s;
}
.nav-in .menu-items ul li :hover {
  color: orangered;
  text-decoration: line-through;
  transition: all 0.3s;
}
.nav-in .menu-items .close-menu {
  display: none;
}

.nav-scrolled {
  padding: 0;
  transition: all 0.5s;
}
.nav-scrolled .nav-in {
  width: 100%;
  height: 60px;
  background: white;
  -webkit-backdrop-filter: blu;
          backdrop-filter: blu;
  padding: 10px 10vw;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0 150px rgba(255, 255, 255, 0);
  transition: all 0.5s;
}
.nav-scrolled .nav-in .menu-items {
  width: -moz-fit-content;
  width: fit-content;
}
.nav-scrolled .nav-in .menu-items ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2vw;
}
.nav-scrolled .nav-in .nav-logo h3 {
  opacity: 0;
  font-weight: 600 !important;
  transition: all 0.3s;
}

.menu-opener {
  display: none;
  margin-left: 3vw;
  height: 6vw;
  width: 6vw;
}
.menu-opener svg {
  width: 100%;
  height: 100%;
  fill: rgb(25, 25, 25);
  transition: all 0.3s;
}
.menu-opener svg :hover {
  fill: orangered;
  transition: all 0.3s;
}

.nav-nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: rgb(245, 245, 245);
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 5px;
  border-radius: 15px;
  gap: 5px;
}
.nav-nav button {
  padding: 7.5px;
  height: 35px;
  width: 35px;
  border-radius: 10px;
}
.nav-nav button svg {
  height: 100%;
  width: auto;
}
.nav-nav .nav-linkedin {
  background: none;
  transition: all 0.5s;
}
.nav-nav .nav-linkedin svg {
  fill: rgb(25, 25, 25);
  transition: all 0.3s;
}
.nav-nav .nav-linkedin:hover {
  background: #fff;
  transition: all 0.5s;
}
.nav-nav .nav-linkedin:hover svg {
  fill: #0072b1;
  transition: all 0.3s;
}
.nav-nav .nav-cv {
  background: #fff;
  transition: all 0.5s;
  padding: 5px;
}
.nav-nav .nav-cv:hover {
  background: none;
  transition: all 0.5s;
}
.nav-nav .nav-mail {
  background: none;
  transition: all 0.5s;
}
.nav-nav .nav-mail svg {
  fill: rgb(25, 25, 25);
  transition: all 0.3s;
}
.nav-nav .nav-mail:hover {
  background: #fff;
  transition: all 0.5s;
}
.nav-nav .nav-mail:hover svg {
  fill: red;
  transition: all 0.3s;
}

/*! Nav responsive */
@media all and (max-width: 768px) {
  nav {
    position: fixed;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    top: 0;
    padding: 0;
    transition: all 0.5s;
    z-index: 20;
  }
  nav * {
    font-size: 4vw;
    font-family: "Outfit", sans-serif;
  }
  .nav-in {
    width: 100%;
    height: 70px;
    padding: 10px 15px;
    box-shadow: 0 0 100px #fff;
    z-index: 20;
  }
  .nav-in .menu-items {
    background: rgba(255, 255, 255, 0.975);
    width: 100%;
    height: 100vh;
    left: 0;
    top: -150%;
    padding: 10vw;
    position: fixed;
    overflow: hidden;
    transition: all 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .nav-in .menu-items ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2vw;
    height: 100%;
  }
  .nav-in .menu-items ul li {
    color: rgb(25, 25, 25);
    transition: all 0.3s;
  }
  .nav-in .menu-items ul li a {
    font-size: 15vw;
    line-height: 20vw;
    font-weight: 600;
    color: black;
  }
  .nav-in .menu-items ul li :hover {
    background: #fff;
    color: orangered;
    transition: all 0.3s;
  }
  .nav-in .menu-items .close-menu {
    position: absolute;
    bottom: 15vh;
    left: 0;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .nav-in .menu-items .close-menu button {
    height: 7.5vh;
    width: 7.5vh;
    background: none;
    padding: 0;
    margin-top: 15vw;
  }
  .nav-in .menu-items .close-menu button svg {
    height: 100%;
    width: 100%;
    transition: all 0.3s;
  }
  .nav-in .menu-items .close-menu:hover button svg {
    fill: orangered;
    transition: all 0.3s;
  }
  .nav-scrolled {
    background: rgba(255, 255, 255, 0.975);
  }
  .nav-scrolled .nav-in {
    width: 100%;
    height: 60px;
    background: rgba(255, 255, 255, 0);
    padding: 10px 10vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0 150px rgba(255, 255, 255, 0);
    transition: all 0.5s;
  }
  .nav-scrolled .nav-in .menu-items {
    background: rgba(255, 255, 255, 0.975);
    width: 100%;
    height: 100vh;
    left: 0;
    top: -150%;
    padding: 10vw;
    position: fixed;
    overflow: hidden;
    transition: all 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .nav-scrolled .nav-in .menu-items ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2vw;
    height: 100%;
  }
  .nav-scrolled .nav-in .menu-items ul li {
    color: rgb(25, 25, 25);
    transition: all 0.3s;
  }
  .nav-scrolled .nav-in .menu-items ul li a {
    font-size: 15vw;
    line-height: 20vw;
    font-weight: 600;
    color: black;
  }
  .nav-scrolled .nav-in .menu-items ul li :hover {
    background: #fff;
    color: orangered;
    transition: all 0.3s;
  }
  .nav-scrolled .nav-in .menu-items .close-menu {
    position: absolute;
    bottom: 15vh;
    left: 0;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .nav-scrolled .nav-in .menu-items .close-menu button {
    height: 7.5vh;
    width: 7.5vh;
    background: none;
    padding: 0;
    margin-top: 15vw;
  }
  .nav-scrolled .nav-in .menu-items .close-menu button svg {
    height: 100%;
    width: 100%;
    transition: all 0.3s;
  }
  .nav-scrolled .nav-in .menu-items .close-menu:hover button svg {
    fill: orangered;
    transition: all 0.3s;
  }
  .menu-opener {
    display: flex;
  }
  .nav-nav {
    margin-left: auto;
  }
  .nav-logo {
    height: 100%;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: unset;
    align-items: center;
  }
  .nav-logo img {
    height: 100%;
    width: auto;
  }
  .nav-social {
    width: 20%;
    height: 100%;
    padding-right: 2vw;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 3vw;
    margin-left: auto;
  }
  .nav-social svg {
    fill: rgb(25, 25, 25);
    transition: all 0.3s;
  }
  .nav-social svg :hover {
    fill: #fff;
    transition: all 0.3s;
  }
}
footer {
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: unset;
  align-items: flex-start;
  padding: 5vw 10vw;
  background: #fff;
  transition: all 0.5s;
  gap: 3vh;
}
footer a {
  text-decoration: underline;
  font-size: 30px;
  transition: all 0.5s;
}
footer a:hover {
  color: orangered;
  text-decoration: line-through;
  transition: all 0.5s;
}
footer h1 {
  display: unset;
  margin-bottom: 4vh;
}

.footer-scrolled {
  background: rgb(245, 245, 245);
  transition: all 0.5s;
}

@media all and (max-width: 768px) {
  footer {
    min-height: 40vh;
    height: -moz-fit-content;
    height: fit-content;
    padding: 10vw;
    gap: 1vh;
  }
  footer a {
    font-size: 5vw !important;
  }
  footer h1 {
    margin-bottom: 5vw;
  }
}
/*! landing */
.k-landing {
  min-height: -moz-fit-content;
  min-height: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  padding: 10vw calc(10vw + 50px);
  transition: all 1s;
  position: relative;
}
.k-landing p {
  font-weight: 300;
}

.k-works {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 1vh;
  min-height: 100vh;
  height: -moz-fit-content;
  height: fit-content;
}
.k-works .k-works-title {
  text-align: center;
}
.k-works .k-works-title h1 {
  transition: all 1s;
  margin-top: -10vh;
  opacity: 0 !important;
  height: 0 !important;
  max-height: 0 !important;
  min-height: 0 !important;
}
.k-works .k-works-title h2 {
  font-weight: 300;
  font-size: 26px;
  margin-bottom: 10vh;
}
.k-works .k-works-in {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  gap: 0.3vw;
  width: 100%;
  overflow: hidden;
  flex-wrap: wrap;
}
.k-works .k-works-in .work-item {
  cursor: pointer;
  width: 33vw;
  height: 33vw;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: start;
  transition: all 0.5s;
}
.k-works .k-works-in .work-item .work-item-hover {
  position: absolute;
  opacity: 0 !important;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5%;
  background: linear-gradient(-25deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.35) 100%);
  transition: all 0.3s;
}
.k-works .k-works-in .work-item .work-item-hover svg {
  max-width: 17.5%;
  width: 20%;
  height: auto;
  fill: #fff;
}
.k-works .k-works-in .work-item .work-item-hover h2 {
  color: #fff;
  font-size: 26px;
  font-weight: 200;
}
.k-works .k-works-in .work-item .work-item-img {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.k-works .k-works-in .work-item .work-item-img img {
  width: auto;
  height: 100%;
}
.k-works .k-works-in .work-item .work-item-det {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 15%;
  width: 100%;
  height: 100%;
}
.k-works .k-works-in .work-item .work-item-det .wid-platfomrs {
  background: #fff;
  padding: 5px 10px;
  margin-bottom: 7.5%;
}
.k-works .k-works-in .work-item .work-item-det span {
  margin-top: 6%;
}
.k-works .k-works-in .work-item .work-item-det h1 {
  font-size: 75px;
}
.k-works .k-works-in .work-item .work-item-det .wid-title {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.k-works .k-works-in .work-item:hover .work-item-hover {
  opacity: 100% !important;
  transition: all 0.3s;
}

.k-works-scrolled .k-works-title h1 {
  margin-top: 0;
  transition: all 1s;
  opacity: 100 !important;
  height: -moz-fit-content !important;
  height: fit-content !important;
  max-height: -moz-fit-content !important;
  max-height: fit-content !important;
  min-height: -moz-fit-content !important;
  min-height: fit-content !important;
}

@media all and (max-width: 768px) {
  .k-landing {
    gap: 30px;
    padding: 25vw 5vw 30vw 5vw;
    height: -moz-fit-content;
    height: fit-content;
    min-height: 80vh;
  }
  .k-landing p {
    font-weight: 300;
  }
  .k-works .k-works-title {
    padding: 0 15vw;
    text-align: center;
  }
  .k-works .k-works-title h2 {
    margin-bottom: 3vh;
  }
  .k-works .k-works-in {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    gap: 0.75vh;
    width: 100%;
    overflow: hidden;
    flex-wrap: wrap;
  }
  .k-works .k-works-in .work-item {
    cursor: pointer;
    width: 100vw;
    height: 100vw;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
    transition: all 0.5s;
  }
  .k-works .k-works-in .work-item .work-item-hover {
    position: absolute;
    opacity: 0 !important;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5%;
    background: linear-gradient(-25deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.35) 100%);
    transition: all 0.3s;
  }
  .k-works .k-works-in .work-item .work-item-hover svg {
    max-width: 17.5%;
    width: 20%;
    height: auto;
    fill: #fff;
  }
  .k-works .k-works-in .work-item .work-item-hover h2 {
    color: #fff;
    font-size: 26px;
    font-weight: 200;
  }
  .k-works .k-works-in .work-item .work-item-img {
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .k-works .k-works-in .work-item .work-item-img img {
    width: auto;
    height: 100%;
  }
  .k-works .k-works-in .work-item .work-item-det {
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 7.5%;
    width: 100%;
    height: 100%;
  }
  .k-works .k-works-in .work-item .work-item-det .wid-platfomrs {
    background: #fff;
    padding: 5px 10px;
    margin-bottom: 5%;
  }
  .k-works .k-works-in .work-item .work-item-det span {
    margin-top: 2.5%;
  }
  .k-works .k-works-in .work-item .work-item-det h1 {
    font-size: 17.5vw;
    line-height: 15vw;
  }
  .k-works .k-works-in .work-item .work-item-det .wid-title {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
  }
  .k-works .k-works-in .work-item:hover .work-item-hover {
    opacity: 100% !important;
    transition: all 0.3s;
  }
}
/*! global */
body {
  min-height: 100vh;
  width: 100%;
  background: #fff;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: unset;
  align-items: unset;
  width: 100%;
  min-height: -moz-fit-content;
  min-height: fit-content;
}

.loader {
  min-width: 100vw;
  min-height: 100vh;
  max-height: 100vh;
  width: 100vw;
  height: 100%;
  background: rgb(245, 245, 245);
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 500000;
  left: 0;
  top: 0;
}

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: orangered;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}/*# sourceMappingURL=landing.css.map */