/** @format */
html {
  font-size: 62.5%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow: hidden !important;
  height: 100%;
  width: 100%;
  background: #e7eaec;
  font-family: Space Mono;
  overflow-x: hidden !important;
  overflow-y: scroll !important;
  /*scroll-behavior: smooth;
  scroll-snap-type: y mandatory;*/
}

h1 {
  font-size: 2.4rem;
}

h2 {
  font-size: 10rem;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 3rem;
}

h5 {
  font-size: 1.2rem;
  font-weight: bold;
}

p {
  font-size: 1.6rem;
}

.p-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

a {
  text-decoration: none;
  color: #1C1E20;
}

.cursor {
  width: 3rem;
  height: 3rem;
  border: 2px solid white;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: all 0.1s ease;
  /* transition-property: background, transform; -> changes only background not delay*/
  transform-origin: 100% 100%;
  mix-blend-mode: difference;
  z-index: 40;
}

.link-grow {
  transform: scale(2);
  background: #f6f6f6;
}

/*buttonsolors*/
:root {
  --base-color: rgba(255, 255, 255, 1);
  --hover-color: rgb(28, 30, 32, 1);
  --base-color-dark: rgb(28, 30, 32, 1);
  --hover-color-dark: rgba(255, 255, 255, 1);
}

button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: auto;
  padding: 8px 16px;
  border: 1.5px solid var(--base-color);
  font-family: Space Mono;
  background: none;
  cursor: pointer;
}
button .button-text {
  font-size: 1.4rem;
  text-decoration: none;
  position: relative;
  color: transparent;
  background-image: linear-gradient(90deg, var(--hover-color) 0%, var(--hover-color) 50%, var(--base-color) 50%, var(--base-color) 100%);
  background-repeat: repeat;
  background-size: 200%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  transition: background-position 300ms;
}
button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--base-color);
  transform-origin: 100% 0;
  transform: scale3d(0, 1, 1);
  transition: transform 300ms;
}
button:hover .button-text {
  background-position: 0 0;
}
button:hover::before {
  transform-origin: 0 0;
  transform: scale3d(1, 1, 1);
}

.button-dark {
  border: 1.5px solid var(--base-color-dark);
}
.button-dark .text {
  font-size: 1.8rem;
  text-decoration: none;
  position: relative;
  color: var(--base-color-dark);
  background-image: linear-gradient(90deg, var(--hover-color-dark) 0%, var(--hover-color-dark) 50%, var(--base-color) 50%, var(--base-color) 100%);
  background-repeat: repeat;
  background-size: 200%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  transition: background-position 300ms;
}
.button-dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--base-color-dark);
  transform-origin: 100% 0;
  transform: scale3d(0, 1, 1);
  transition: transform 300ms;
}
.button-dark:hover .text {
  color: var(--hover-color-dark);
}

.big-button-dark {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: auto;
  padding: 8px 24px;
  border: 1.5px solid var(--base-color-dark);
  font-family: Space Mono;
  background: none;
  cursor: pointer;
}
.big-button-dark .text {
  font-size: 2.8rem;
  text-decoration: none;
  position: relative;
  color: var(--base-color-dark);
  background-image: linear-gradient(90deg, var(--hover-color-dark) 0%, var(--hover-color-dark) 50%, var(--base-color) 50%, var(--base-color) 100%);
  background-repeat: repeat;
  background-size: 200%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  transition: background-position 300ms;
}
.big-button-dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--base-color-dark);
  transform-origin: 100% 0;
  transform: scale3d(0, 1, 1);
  transition: transform 300ms;
}
.big-button-dark:hover .text {
  background-position: 0 0;
  color: var(--base-color);
}
.big-button-dark:hover::before {
  transform-origin: 0 0;
  transform: scale3d(1, 1, 1);
}

.ghost-button {
  display: flex;
  justify-content: center;
  font-size: 1.4rem;
  color: #e7eaec;
  position: relative;
  padding: 8px 0;
}
.ghost-button ::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #e7eaec;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.ghost-button :hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/*test*/
/** @format */
header {
  mix-blend-mode: difference;
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.6s;
}

header .sticky nav {
  height: 8vh;
  padding: 1rem 0rem;
}

nav {
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 8vh;
  padding: 1rem 0rem;
  width: 90%;
  margin: auto;
  /*mobile area*/
}
nav .logo {
  z-index: 100;
  font-size: 2.4rem;
  display: flex;
  text-decoration: none;
  transition: 0.6s;
  color: #fff;
}
nav .logo:hover {
  font-size: 2.8rem;
  font-weight: 700;
}
nav .logo-img {
  z-index: 100;
  display: none;
  transition: 0.6s;
}
nav .nav-links {
  z-index: 100;
  list-style: none;
  display: flex;
  justify-content: space-around;
  width: 35%;
  transition: 0.6s;
}
nav .nav-links a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  border-bottom: 2px solid transparent;
  padding: 4px 0;
  flex-direction: column;
  gap: 4px;
  position: relative;
}
nav .nav-links a .underline {
  position: absolute;
  height: 1.5px;
}
nav .nav-links li {
  display: flex;
  justify-content: center;
  font-size: 1.4rem;
  padding-right: 1rem;
  flex-direction: column;
}
nav .nav-links .bubble {
  position: absolute;
  z-index: -2;
  transform: scaleY(1.3);
  border-bottom: 1.2px solid #ffffff;
  transition: all 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}
nav .burger {
  display: none;
}
nav .burger div {
  width: 25px;
  height: 2px;
  background-color: #fff;
  margin: 4px;
  border-radius: 1px;
  transition: 0.3s;
}

@media screen and (max-width: 1024px) {
  nav {
    min-height: 8vh;
  }
  nav .nav-links {
    width: 51%;
  }
}
@media screen and (max-width: 768px) {
  body {
    overflow-x: hidden !important;
  }
  .cursor {
    display: none;
  }
  nav .nav-links {
    position: absolute;
    right: 0;
    height: 92vh;
    top: 8vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    width: 50%;
    transform: translateX(100%);
    transition: navLinkFade 0.01 ease-in;
  }
  nav .nav-links a {
    text-decoration: none;
    color: #000;
    align-self: center;
  }
  nav .nav-links li {
    opacity: 0;
  }
  nav .nav-links .bubble {
    position: absolute;
    z-index: -2;
    transform: scaleY(1.3);
    border-bottom: 1px solid #ffffff;
    transition: all 0.1s cubic-bezier(0.075, 0.82, 0.165, 1);
  }
  nav .nav-active {
    transform: translateX(0%);
  }
  nav .burger {
    display: block;
    cursor: pointer;
    mix-blend-mode: difference;
  }
}
@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
.toggle .line1 {
  transform: rotate(-45deg) translate(-4px, 4px);
}

.toggle .line2 {
  opacity: 0;
}

.toggle .line3 {
  transform: rotate(45deg) translate(-4px, -4px);
}

/** @format */
.home {
  height: 100vh;
  background: #e7eaec;
  position: relative;
  display: flex;
  justify-content: center;
  align-content: center;
  overflow: hidden;
}
.home .centertext-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-self: center;
  z-index: 60;
}
.home .centertext {
  z-index: 60;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 4.4rem;
}
.home .bigLogo {
  position: absolute;
  z-index: 20;
  width: 40%;
  top: 50vh;
  left: 50vw;
  transform: translate(-50%, -50%);
}

.scroll-down {
  z-index: 65;
  padding-top: 60px;
  position: absolute;
  bottom: -1%;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-down span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2rem;
  height: 2rem;
  margin-left: -12px;
  border-left: 1.5px solid rgba(28, 30, 32, 0.2862745098);
  border-bottom: 1.5px solid rgba(28, 30, 32, 0.2862745098);
  transform: rotate(-45deg);
  animation: sdb04 2s;
  box-sizing: border-box;
}
.scroll-down span:hover {
  border-left: 2.5px solid #1c1e20;
  border-bottom: 2.5px solid #1c1e20;
  transform: rotate(-45deg);
  animation: sdb04 2s infinite;
}
@keyframes sdb04 {
  0% {
    transform: rotate(-45deg) translate(0, 0);
  }
  20% {
    transform: rotate(-45deg) translate(-10px, 10px);
  }
  40% {
    transform: rotate(-45deg) translate(0, 0);
  }
}
.intro {
  z-index: 50;
  background-color: #1c1e20;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.intro #lottie {
  position: absolute;
  z-index: 20;
  width: 95%;
  top: 50vh;
  left: 50vw;
  transform: translate(-49.6%, -47.7%);
  color: #f6f6f6;
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .home .bigLogo {
    position: absolute;
    z-index: 20;
    width: 75%;
    top: 50vh;
    left: 50vw;
  }
  .home .centertext {
    margin-right: 30%;
    margin-left: 10%;
  }
  .home #lottie {
    position: absolute;
    z-index: 20;
    width: 180%;
    top: 50vh;
    left: 50vw;
    transform: translate(-49.6%, -47.7%);
    color: #f6f6f6;
    opacity: 0.8;
  }
}
@media screen and (max-width: 480px) {
  .home .bigLogo {
    position: absolute;
    z-index: 20;
    width: 75%;
    top: 50vh;
    left: 50vw;
  }
  .home .centertext {
    margin-right: 10%;
    margin-left: 10%;
  }
  .home #lottie {
    position: absolute;
    z-index: 20;
    width: 180%;
    top: 50vh;
    left: 50vw;
    transform: translate(-49.6%, -47.7%);
    color: #f6f6f6;
    opacity: 0.8;
  }
}
/** @format */
.projects {
  position: relative;
  background: #f6f6f6;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  display: flex;
  align-content: center;
  justify-content: center;
}
.projects .prj-bigtext {
  font-size: 30rem;
  position: absolute;
  text-align: center;
  letter-spacing: 0.001em;
  z-index: 1;
  margin-top: 7%;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 80%;
  color: #e7eaec;
  width: 100%;
  opacity: 0.8;
  word-break: break-word;
}

.container {
  z-index: 30;
  width: 100%;
  height: 100%;
  display: flex;
  margin: auto;
}
.container .swiper {
  width: 100%;
  height: 100%;
}
.container .swiper-container {
  width: 100% !important;
  height: 100% !important;
  margin: auto;
  display: flex;
  overflow: visible;
}
.container .swiper-wrapper {
  display: flex;
  width: 100%;
}

.swiper-container .swiper .swiper-wrapper .swiper-slide {
  display: flex !important;
  width: 100% !important;
  height: 100% !important;
  overflow: visible;
}
.swiper-container .swiper .swiper-wrapper .swiper-slide .swiper-slide-container {
  display: flex;
  width: 100% !important;
  height: 100%;
  gap: 1.6rem;
}
.swiper-container .swiper .swiper-wrapper .swiper-slide img {
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translate(0, -50%);
  width: 35%;
  transition: 0.5s;
  overflow: visible;
}
.swiper-container .swiper .swiper-wrapper .swiper-slide img:hover {
  width: 40%;
  opacity: 0.5;
}
.swiper-container .swiper .swiper-wrapper .swiper-slide .slide-text {
  position: relative;
  top: 50%;
  transform: translate(0, -50%);
  display: flex;
  flex-direction: column;
  justify-content: end;
  height: 50%;
  width: 48rem;
  gap: 2rem;
  z-index: 30;
  margin-left: 49%;
}
.swiper-container .swiper .swiper-wrapper .swiper-slide .slide-text h1 {
  display: flex;
  position: relative;
  font-size: 7.2rem;
  text-align: left;
  word-spacing: -5rem;
  font-weight: 400;
  line-height: 80%;
  margin: 0;
  text-shadow: 10px 10px 25px rgba(0, 0, 0, 0.15);
}
.swiper-container .swiper .swiper-wrapper .swiper-slide .slide-text h2 {
  display: flex;
  position: relative;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: left;
  line-height: 160%;
  margin-left: 0.5rem;
}
.swiper-container .swiper .swiper-wrapper .swiper-slide .slide-text p {
  width: auto;
  font-size: 1.4rem;
}

.project-buttons {
  z-index: 31;
  text-transform: none;
  position: absolute;
  left: 50%;
  bottom: 40%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  width: 90%;
  /*arrow fw*/
}
.project-buttons .arrow-fw {
  z-index: 50;
  display: flex;
  padding: 2rem;
  /* Arrow size */
  box-shadow: 1px -1px 0 1px rgba(28, 30, 32, 0.4862745098) inset;
  -webkit-box-shadow: 2px -2px rgba(28, 30, 32, 0.4862745098) inset;
  border: solid transparent;
  border-width: 0 0 2rem 2rem;
  transition: 0.2s;
  outline: 0 !important;
}
.project-buttons .arrow-fw:hover {
  box-shadow: 2px -2px 0 2px #1c1e20 inset;
  -webkit-box-shadow: 6px -6px #1c1e20 inset;
}
.project-buttons .arrow-bk {
  z-index: 50;
  display: flex;
  padding: 2rem;
  /* Arrow size */
  box-shadow: 1px -1px 0 1px rgba(28, 30, 32, 0.4862745098) inset;
  -webkit-box-shadow: 2px -2px rgba(28, 30, 32, 0.4862745098) inset;
  border: solid transparent;
  border-width: 0 0 2rem 2rem;
  transition: 0.2s;
  outline: 0 !important;
}
.project-buttons .arrow-bk:hover {
  box-shadow: 2px -2px 0 2px #1c1e20 inset;
  -webkit-box-shadow: 6px -6px #1c1e20 inset;
}

/*arrow rotation*/
.arrow-up {
  transform: rotate(135deg);
}

.arrow-right {
  transform: rotate(225deg);
}

.arrow-down {
  transform: rotate(-45deg);
}

.arrow-left {
  transform: rotate(45deg);
}

.swiper-pagination {
  z-index: 100 !important;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  bottom: 5% !important;
  width: 250px !important;
  gap: 1rem !important;
  left: auto !important;
  margin: 0 !important;
  position: relative;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 2.4rem;
  height: 2.4rem;
  margin: 0 !important;
  opacity: 1;
  background: #dbdedf;
  border-radius: 0;
  transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  pointer-events: auto;
}
.swiper-pagination .swiper-pagination-bullet:hover {
  width: 6rem;
  height: 6rem;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 2.4rem;
  height: 2.4rem;
  background: #1c1e20;
}

.slide-title {
  z-index: 200;
  display: flex;
  position: absolute;
  bottom: 16% !important;
  left: 50%;
  transform: translate(-50%, 0);
  /* Initial state of the title (invisible) */
  /* When the title is shown, it will fade in and slide up */
}
.slide-title h3 {
  font-weight: normal;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  /* Optional: To make the transition smoother, you could also add a transform property for sliding effect */
  transform: translateY(20px);
  /* Slide from bottom */
}
.slide-title h3.show-title {
  opacity: 1;
  transform: translateY(0);
}

.project-nav {
  position: absolute;
  left: 50%;
  bottom: 5%;
  z-index: 40;
  transform: translate(-50%, -50%);
  display: none;
}
.project-nav .swipe {
  font-size: 16px;
  font-weight: 400;
  color: #1c1e20;
}
.project-nav .lineanim {
  position: relative;
  width: auto;
  height: 2px;
  margin: 0.5rem 0;
  background-color: transparent;
  bottom: 0;
  left: 0;
}
.project-nav .lineanim:before {
  content: "";
  position: absolute;
  right: 10px;
  display: block;
  height: 2px;
  background-color: #1c1e20;
  transition: 0.1s;
  animation: loading 2s 4s cubic-bezier(0.22, 0.41, 0.84, 0.99) infinite;
  opacity: 0;
}
@keyframes loading {
  from {
    right: 0px;
    width: 30%;
  }
  50% {
    right: 45%;
    width: 50%;
    opacity: 1;
  }
  75% {
    right: 75%;
  }
  100% {
    width: 0%;
    right: 100%;
    opacity: 0;
  }
}

@media screen and (max-width: 1024px) {
  .projects .prj-bigtext {
    margin-top: 10%;
  }
  .projects .container .swiper-slide {
    display: flex;
    align-items: center;
    justify-items: center;
    overflow: visible;
  }
  .swiper-container .swiper .swiper-wrapper .swiper-slide .swiper-slide-container {
    display: flex;
    width: 100% !important;
    height: 100%;
    gap: 1.6rem;
  }
  .swiper-container .swiper .swiper-wrapper .swiper-slide img {
    left: 12%;
    width: 37%;
  }
  .swiper-container .swiper .swiper-wrapper .swiper-slide img:hover {
    width: 50%;
  }
  .swiper-container .swiper .swiper-wrapper .swiper-slide .slide-text {
    position: relative;
    top: 50%;
    transform: translate(0, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 50%;
    width: auto;
    gap: 2rem;
    z-index: 30;
    margin-left: 49%;
  }
  .swiper-container .swiper .swiper-wrapper .swiper-slide .slide-text h1 {
    font-size: 4rem;
    text-align: left;
    word-spacing: -1rem;
  }
  .swiper-container .swiper .swiper-wrapper .swiper-slide .slide-text h2 {
    font-size: 1.6rem;
  }
  .swiper-container .swiper .swiper-wrapper .swiper-slide .slide-text p {
    width: 75%;
    font-size: 1.2rem;
  }
  .swiper-container .swiper .swiper-wrapper .swiper-slide h5 {
    width: 75%;
  }
}
@media screen and (max-width: 768px) {
  .projects .container .swiper-slide {
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-items: center;
    top: 0% !important;
    overflow: visible;
    height: 100% !important;
  }
  .projects .container .swiper-slide .swiper-slide-container {
    flex-direction: column;
    justify-content: center;
    height: 90% !important;
    width: 100%;
    gap: 0px !important;
  }
  .projects .container .swiper-slide .slide-text {
    height: auto !important;
    margin-left: 15% !important;
    margin-right: 15% !important;
    top: 0% !important;
    transform: translate(0, 0%) !important;
  }
  .projects .container .swiper-slide h1 {
    font-size: 7.2rem !important;
  }
  .projects .container .swiper-slide img {
    position: relative !important;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70% !important;
  }
  .projects .container .swiper-slide img:hover {
    width: 70%;
    opacity: 1;
  }
  .projects .container .swiper-slide h2 {
    font-size: 1.6rem !important;
    top: 0% !important;
    left: 0% !important;
    margin-left: 0.5rem;
  }
  .projects .container .swiper-slide p {
    width: 90% !important;
  }
  .slide-title {
    display: none;
  }
  .projects .project-buttons {
    display: none;
  }
  .project-nav {
    position: absolute;
    left: 50%;
    bottom: 10%;
    z-index: 40;
    transform: translate(-50%, -50%);
    display: block;
  }
  .swiper-pagination .swiper-pagination-bullet:hover {
    width: 2.4rem;
    height: 2.4rem;
  }
}
@media screen and (max-width: 480px) {
  .projects .container .swiper-slide {
    align-items: center;
  }
  .projects .container .swiper-slide .swiper-slide-container {
    display: flex;
    align-items: start;
    justify-content: start;
    width: 100% !important;
    height: 90% !important;
    gap: 1.6rem;
    margin-top: 8vh;
  }
  .projects .container .swiper-slide .slide-text {
    height: auto !important;
    margin-right: 5% !important;
    margin-left: 5% !important;
    gap: 0.8rem !important;
    margin-top: 0;
  }
  .projects .container .swiper-slide img {
    position: relative !important;
    left: 40% !important;
    transform: translate(-50%, -50%) !important;
    width: 75% !important;
    top: 0;
    margin: 0 !important;
  }
  .projects .container .swiper-slide h1 {
    font-size: 3rem !important;
  }
  .projects .container .swiper-slide h2 {
    font-size: 1.6rem !important;
    margin: 0 !important;
  }
  .projects .container .swiper-slide p {
    font-size: 1.4rem !important;
  }
  .swiper-pagination {
    bottom: 16px !important;
  }
  .project-nav {
    bottom: 12% !important;
    z-index: 2000 !important;
    height: 20px;
  }
}
/** @format */
.work {
  background: #3d474e;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.work .work-text {
  font-size: 20rem;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-self: center;
  text-transform: uppercase;
  color: rgba(231, 234, 236, 0.6039215686);
}
.work .virtual-tour {
  z-index: 20;
  position: absolute;
  top: 50%;
  left: 30%;
  height: 60%;
  transform: translate(-50%, -50%);
  box-shadow: 0px 30px 50px rgba(0, 0, 0, 0.25);
  opacity: 0.9;
  display: none;
}
.work .hb {
  z-index: 20;
  position: absolute;
  top: 50%;
  left: 30%;
  height: 60%;
  transform: translate(-50%, -50%);
  box-shadow: 0px 30px 50px rgba(0, 0, 0, 0.25);
  opacity: 0.9;
  display: none;
}

.jobs-container {
  z-index: 30;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.jobs-container .jobs {
  z-index: 31;
  justify-content: right;
  color: #e7eaec;
  padding: 5rem;
  transition: 0.5s;
}
.jobs-container .jobs h3 {
  font-size: 2.4rem;
  font-weight: 700;
  transition: 0.5s;
}
.jobs-container .jobs h4 {
  margin-top: 1rem;
  font-size: 1.4rem;
  font-weight: 400;
  transition: 0.5s;
}

.jobs:hover h3 {
  font-size: 3.3rem;
}
.jobs:hover h4 {
  font-size: 1.8rem;
}

@media screen and (max-width: 1024px) {
  .work .work-text {
    margin-left: 5%;
  }
  .work .jobs {
    padding-right: 20%;
  }
}
@media screen and (max-width: 768px) {
  .work {
    flex-direction: column;
  }
  .work .jobs {
    width: 100%;
    height: 50%;
  }
  .work .virtual-tour {
    z-index: 20;
    position: absolute;
    top: 50%;
    left: 30%;
    height: 60%;
    transform: translate(-50%, -50%);
    box-shadow: 0px 30px 50px rgba(0, 0, 0, 0.25);
    opacity: 0.9;
    display: none;
  }
  .work .hb {
    z-index: 20;
    position: absolute;
    top: 50%;
    left: 30%;
    height: 60%;
    transform: translate(-50%, -50%);
    box-shadow: 0px 30px 50px rgba(0, 0, 0, 0.25);
    opacity: 0.9;
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .work {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 0.8fr 1fr;
  }
  .work .work-text {
    font-size: 12rem;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-self: center;
    align-self: flex-end;
    text-transform: uppercase;
    color: rgba(231, 234, 236, 0.6039215686);
  }
  .work .jobs {
    width: 100%;
    margin: auto;
    padding: 5% 10%;
    padding-top: 0;
  }
  .work .jobs:hover h3 {
    font-size: 2.6rem;
  }
  .work .jobs:hover h4 {
    font-size: 1.6rem;
  }
  .work .virtual-tour {
    z-index: 20;
    position: absolute;
    top: 30%;
    left: 50%;
    height: 45%;
    transform: translate(-50%, -50%);
    box-shadow: 0px 30px 50px rgba(0, 0, 0, 0.25);
    opacity: 0.9;
    display: none;
  }
  .work .hb {
    z-index: 20;
    position: absolute;
    top: 30%;
    left: 50%;
    height: 45%;
    transform: translate(-50%, -50%);
    box-shadow: 0px 30px 50px rgba(0, 0, 0, 0.25);
    opacity: 0.9;
    display: none;
  }
}
/** @format */
/*buttonsolors*/
:root {
  --base-color: rgba(255, 255, 255, 1);
  --hover-color: rgb(28, 30, 32, 1);
}

/*style section*/
.about-me {
  z-index: 0;
  width: 100vw;
  height: 100vh;
  background-color: #1c1e20;
  padding: 3rem;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  grid-template-rows: 1fr;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-me .about-img {
  display: flex;
  align-self: center;
  justify-self: right;
  width: 55%;
  margin: 0 2rem;
  box-shadow: -10px 10px 65px 26px rgba(158, 157, 157, 0.1);
}
.about-me .about-text {
  z-index: 30;
  width: 80%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.6rem;
}
.about-me .about-text h3 {
  justify-self: flex-start;
  align-self: left;
  color: #f6f6f6;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: left;
  margin-top: 1%;
}
.about-me .about-text .border {
  position: relative;
  width: 50%;
  height: 2px;
  margin: 10px 0;
  margin-bottom: 0;
  background-color: #f6f6f6;
}
.about-me .about-text p {
  display: flex;
  color: #f6f6f6;
  justify-self: center;
  align-self: left;
  font-size: 1.4rem;
  line-height: 160%;
  width: 90%;
}

.button-wrapper {
  display: flex;
  justify-self: flex-start;
  align-content: center;
  gap: 2rem;
  width: auto;
}
.button-wrapper .skill-nav {
  display: flex;
  justify-content: center;
  align-self: center;
  justify-items: center;
  background-color: none;
  background: none;
  /* Green */
  border: none;
  color: #f6f6f6;
  height: 25px;
  width: 70px;
  text-align: center;
  font-size: 1.4rem;
  vertical-align: middle;
  outline: 0 !important;
}
.button-wrapper .prev-about {
  display: none;
  outline: 0 !important;
}
.button-wrapper .prev {
  display: none;
  outline: 0 !important;
}
.button-wrapper .next02 {
  display: none;
  outline: 0 !important;
}

/*button style*/
.light {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.light > .text {
  text-decoration: none;
  position: relative;
  color: transparent;
  background-image: linear-gradient(90deg, var(--hover-color) 0%, var(--hover-color) 50%, var(--base-color) 50%, var(--base-color) 100%);
  background-repeat: repeat;
  background-size: 200%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  transition: background-position 300ms;
}
.light::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--base-color);
  transform-origin: 100% 0;
  transform: scale3d(0, 1, 1);
  transition: transform 300ms;
}
.light:hover .text {
  background-position: 0 0;
}
.light:hover::before {
  transform-origin: 0 0;
  transform: scale3d(1, 1, 1);
}

/*to skill*/
.to-skillpage {
  position: absolute;
  bottom: 5%;
  right: 5%;
  display: flex;
  align-content: center;
}
.to-skillpage h1 {
  display: flex;
  align-self: center;
  color: #f6f6f6;
  transition: 0.2s;
  vertical-align: middle;
}
.to-skillpage .arrow-skill {
  display: flex;
  align-self: center;
  margin-left: 1rem;
  margin-top: 0.4rem;
  padding: 0.6rem;
  /* Arrow size */
  box-shadow: 1px -1px 0 1px #f6f6f6 inset;
  -webkit-box-shadow: 2px -2px #f6f6f6 inset;
  border: solid transparent;
  border-width: 0 0 2rem 2rem;
  transition: 0.2s;
  transform: rotate(225deg);
}

.to-skillpage:hover h1 {
  font-size: 2.8rem;
}
.to-skillpage:hover .arrow-skill {
  margin-top: 0.4rem;
  box-shadow: 2px -2px 0 2px #f6f6f6 inset;
  -webkit-box-shadow: 4px -4px #f6f6f6 inset;
}

@media screen and (max-width: 1024px) {
  .about-me .kilian {
    display: flex;
    align-self: center;
    justify-self: right;
    width: 60%;
    margin: 0 2rem;
    box-shadow: -10px 10px 65px 26px rgba(158, 157, 157, 0.1);
  }
  .about-me .swiper-conainter-about {
    z-index: 30;
    width: 95%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /*swiper container*/
  }
  .about-me .swiper-conainter-about .swiper-slide {
    display: flex;
    flex-direction: column;
    align-content: center;
  }
  .about-me .swiper-conainter-about .swiper-slide h3 {
    justify-self: flex-start;
    align-self: left;
    color: #f6f6f6;
    font-size: 2.4rem;
    font-weight: 700;
    text-align: left;
    margin-top: 1%;
  }
  .about-me .swiper-conainter-about .swiper-slide .border {
    position: relative;
    width: 160px;
    height: 2px;
    margin: 10px 0;
    margin-bottom: 0;
    background-color: #f6f6f6;
  }
  .about-me .swiper-conainter-about .swiper-slide p {
    display: flex;
    color: #f6f6f6;
    justify-self: center;
    align-self: left;
    font-size: 1.4rem;
    font-weight: 300;
    text-align: left;
    line-height: 160%;
    width: 90%;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  .about-me .swiper-conainter-about .swiper-slide img {
    display: flex;
    align-self: left;
    justify-self: center;
    width: 70%;
    margin: 13% 5%;
  }
  .about-me .swiper-conainter-about .swiper-slide .hardskills-img {
    display: flex;
    width: 55%;
    margin: 7% 10%;
  }
  .about-me .about-nav {
    display: flex;
    justify-self: flex-start;
    align-content: center;
    justify-content: space-between;
    width: 75%;
    margin-left: 1%;
  }
  .about-me .about-nav .skill-nav {
    display: flex;
    justify-content: center;
    align-self: center;
    justify-items: center;
    background-color: none;
    background: none;
    /* Green */
    border: none;
    color: #f6f6f6;
    height: 25px;
    width: 70px;
    text-align: center;
    font-size: 1.4rem;
    vertical-align: middle;
    outline: 0 !important;
  }
  .about-me .about-nav .prev-about {
    display: none;
    outline: 0 !important;
  }
  .about-me .about-nav .prev {
    display: none;
    outline: 0 !important;
  }
  .about-me .about-nav .next02 {
    display: none;
    outline: 0 !important;
  }
}
@media screen and (max-width: 768px) {
  .about-me {
    grid-template-columns: 1fr;
    grid-template-rows: 0.6fr 1.4fr;
  }
  .about-me .about-img {
    display: flex;
    align-self: center;
    justify-self: left;
    width: 40%;
    margin: 2rem 2rem;
  }
  .about-me .about-text {
    z-index: 30;
    width: 90%;
    margin: 0 2rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: top;
    align-self: flex-start;
    gap: 2rem;
  }
  .about-me .about-text h3 {
    justify-self: flex-start;
    align-self: left;
    color: #f6f6f6;
    font-size: 2.8rem;
    font-weight: 700;
    text-align: left;
    margin-top: 1%;
  }
  .about-me .about-text .border {
    position: relative;
    width: 50%;
    height: 2px;
    margin: 10px 0;
    margin-bottom: 0;
    background-color: #f6f6f6;
  }
  .about-me .about-text p {
    display: flex;
    color: #f6f6f6;
    justify-self: center;
    align-self: left;
    font-size: 1.4rem;
    line-height: 160%;
    width: 90%;
  }
}
@media screen and (max-width: 480px) {
  .about-me {
    grid-template-columns: 1fr;
    grid-template-rows: 0.6fr 1.4fr;
    width: 100%;
  }
  .about-me .about-img {
    display: flex;
    align-self: center;
    justify-self: left;
    width: 60%;
    margin: 0;
  }
  .about-me .about-text {
    z-index: 30;
    width: 90%;
    margin: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: top;
    align-self: flex-start;
    gap: 1.6rem;
  }
  .about-me .about-text h3 {
    justify-self: flex-start;
    align-self: left;
    color: #f6f6f6;
    font-size: 2rem;
    font-weight: 700;
    text-align: left;
    margin-top: 1%;
  }
  .about-me .about-text .border {
    position: relative;
    width: 50%;
    height: 2px;
    margin: 10px 0;
    margin-bottom: 0;
    background-color: #f6f6f6;
  }
  .about-me .about-text p {
    display: flex;
    color: #f6f6f6;
    justify-self: center;
    align-self: left;
    font-size: 1.2rem;
    line-height: 160%;
    width: 100%;
  }
}
/**
 * /*section contact
 *
 * @format
 */
.contacts {
  width: 100vw;
  height: 100vh;
  background-color: #e7eaec;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
}
.contacts .logo-contacts {
  position: absolute;
  z-index: 20;
  width: 40%;
  top: 50vh;
  left: 50vw;
  transform: translate(-50%, -50%);
}
.contacts .center-info {
  z-index: 21;
  align-self: center;
  justify-self: left;
  margin-right: 30%;
}
.contacts .center-info h3 {
  color: #1c1e20;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: left;
}
.contacts .center-info .line-info {
  position: relative;
  width: 30rem;
  height: 2px;
  margin: 1.5rem 0;
  background-color: #1c1e20;
  bottom: 0;
  left: 0;
}
.contacts .center-info p {
  color: #1c1e20;
  font-size: 2.4rem;
  line-height: 3.3rem;
  text-align: left;
  margin-bottom: 2rem;
}
.contacts .contactlinks {
  position: absolute;
  bottom: 5%;
  left: 5%;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  width: 5%;
  min-width: 150px;
}
.contacts .contactlinks a {
  display: flex;
}
.contacts .contactlinks a img {
  width: auto;
  height: 3.3rem;
  transition: 0.3s;
}
.contacts .contactlinks img:hover {
  height: 4rem;
}

.scroll-up {
  z-index: 40;
  position: absolute;
  bottom: 5%;
  right: 5%;
  height: 40px;
  width: 40px;
  display: block;
  outline: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.25, 1.7, 0.35, 1.5);
}
.scroll-up svg line {
  stroke-width: 1;
  stroke: #aaa;
  fill: none;
  stroke-dasharray: 20;
  transition: all 0.4s ease;
}
.scroll-up:hover svg line.top {
  transform: translateX(-40px);
}
.scroll-up:hover svg line.bottom {
  transform: translateX(40px);
}
.scroll-up:hover svg line.left {
  transform: translateY(40px);
}
.scroll-up:hover svg line.right {
  transform: translateY(-40px);
}

.scroll-up .left-bar {
  position: absolute;
  z-index: 1;
  background-color: transparent;
  top: 19px;
  left: 5px;
  width: 18px;
  display: block;
  transform: rotate(-45deg);
}
.scroll-up .left-bar:after {
  content: "";
  background-color: #666;
  width: 18px;
  height: 1px;
  display: block;
  border-radius: 1px;
  transition: all 0.5s cubic-bezier(0.25, 1.7, 0.35, 1.5);
  transform-origin: right center;
  z-index: -1;
}
.scroll-up .right-bar {
  position: absolute;
  z-index: 1;
  background-color: transparent;
  top: 19px;
  left: 17px;
  width: 18px;
  display: block;
  transform: rotate(45deg);
  border-radius: 2px;
}
.scroll-up .right-bar:after {
  content: "";
  background-color: #666;
  width: 18px;
  height: 1px;
  display: block;
  border-radius: 1px;
  transition: all 0.5s cubic-bezier(0.25, 1.7, 0.35, 1.5);
  transform-origin: left center;
  z-index: -1;
}
.scroll-up:hover {
  transition: all 0.1s;
}
.scroll-up:hover .left-bar:after {
  transform: rotate(-10deg);
}
.scroll-up:hover .right-bar:after {
  transform: rotate(10deg);
}

@media screen and (max-width: 1024px) {
  .contacts .center-info {
    z-index: 21;
    align-self: center;
    justify-self: left;
    margin-right: 25%;
  }
  .contacts .center-info .line-info {
    position: relative;
    width: 100%;
    height: 2px;
    margin: 1.5rem 0;
    background-color: #1c1e20;
    bottom: 0;
    left: 0;
  }
  .contacts .center-info p {
    color: #1c1e20;
    font-size: 1.8rem;
    line-height: 3.3rem;
    text-align: left;
  }
  .contacts .center-info h3 {
    color: #1c1e20;
    font-size: 2.4rem;
    font-weight: 700;
    text-align: left;
  }
  .contacts .contactlinks {
    width: 15%;
  }
  .contacts .contactlinks a img {
    width: auto;
    height: 2.8rem;
    transition: 0.3s;
  }
  .contacts .contactlinks img:hover {
    height: 3.3rem;
  }
  .contacts .scroll-up {
    width: 35px;
    height: 35px;
  }
}
@media screen and (max-width: 768px) {
  .contacts .logo-contacts {
    position: absolute;
    z-index: 20;
    width: 75%;
    top: 50vh;
    left: 50vw;
  }
  .contacts .contactlinks {
    position: absolute;
    bottom: 5%;
    left: 5%;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    width: 25%;
  }
  .contacts .scroll-up {
    bottom: -36%;
  }
}
@media screen and (max-width: 480px) {
  .contacts .center-info {
    margin-right: 0%;
  }
  .contacts .center-info .line-info {
    position: relative;
    width: 100%;
    height: 2px;
    margin: 1.5rem 0;
    background-color: #1c1e20;
    bottom: 0;
    left: 0;
  }
  .contacts .center-info p {
    color: #1c1e20;
    font-size: 1.4rem;
    line-height: 2.4rem;
    text-align: left;
  }
  .contacts .center-info h3 {
    color: #1c1e20;
    font-size: 2.4rem;
    font-weight: 700;
    text-align: left;
  }
  .contacts .contactlinks {
    position: absolute;
    bottom: 5%;
    left: 5%;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    width: 40%;
  }
  .contacts .scroll-up {
    bottom: 5%;
    left: 80%;
  }
}
/** @format */
.underline {
  position: relative;
  background-color: #fff;
  height: 1.6px;
  width: 100%;
  left: 0;
  bottom: -0.4rem;
}

/*home project page */
.home-projects {
  z-index: 0;
  background-color: #f6f6f6;
  overflow: visible;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-width: 100vw;
  overflow: visible;
}
.home-projects .main-img {
  align-self: center;
  justify-self: right;
  width: 100%;
  height: auto;
  box-shadow: 0px 30px 50px rgba(0, 0, 0, 0.25);
  overflow: visible;
}
.home-projects .text-intro-aedo {
  justify-self: left;
  align-self: center;
  transform: translate(0, 30%);
  margin: 0 4.5rem;
  flex-direction: column;
}
.home-projects .text-intro-aedo h1 {
  color: #1c1e20;
  font-size: 10rem;
  line-height: normal;
  font-weight: 400;
  text-align: left;
  margin: 0;
}
.home-projects .text-intro-aedo p {
  color: #1c1e20;
  font-size: 2.4rem;
  font-weight: 300;
  text-align: left;
  line-height: 160%;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .home-projects {
    background-color: #f6f6f6;
    overflow: visible;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-width: 100vw;
    overflow: visible;
  }
  .home-projects .main-img {
    align-self: center;
    justify-self: right;
    width: 100%;
    height: auto;
    box-shadow: 0px 30px 50px rgba(0, 0, 0, 0.25);
    overflow: visible;
  }
  .home-projects .text-intro-aedo {
    justify-self: left;
    align-self: center;
    transform: translate(0, 30%);
    margin: 0 4.5rem;
    flex-direction: column;
  }
  .home-projects .text-intro-aedo h1 {
    color: #1c1e20;
    font-size: 8rem;
    line-height: normal;
    font-weight: 400;
    text-align: left;
    margin: 0;
  }
  .home-projects .text-intro-aedo p {
    color: #1c1e20;
    font-size: 1.6rem;
    font-weight: 300;
    text-align: left;
    line-height: 160%;
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .home-projects {
    display: grid;
    height: 70vh;
    grid-template-columns: 1fr;
    grid-template-rows: 0.2fr 0.6fr;
    grid-template-areas: "text-intro-aedo" "main-img";
  }
  .home-projects .main-img {
    grid-area: main-img;
    justify-self: center;
    align-self: flex-start;
    width: 90%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .home-projects .text-intro-aedo {
    height: 25vh;
    grid-area: text-intro-aedo;
    justify-self: center;
    align-self: flex-start;
    flex-direction: row;
    margin-top: 10%;
  }
  .home-projects .text-intro-aedo h1 {
    color: #1c1e20;
    font-size: 8rem;
    line-height: normal;
    font-weight: 400;
    text-align: left;
    margin: 0;
    text-align: center;
  }
  .home-projects .text-intro-aedo p {
    color: #1c1e20;
    font-size: 1.6em;
    font-weight: 300;
    text-align: left;
    line-height: 160%;
    width: 100%;
    margin-left: 10%;
  }
  .home-projects .text-intro-aedo .subtitle {
    text-align: center;
    margin: 0;
  }
  .home-projects .text-intro-aedo .details {
    position: absolute;
    top: 220%;
    left: -40%;
  }
  .home-projects .text-intro-aedo .cb {
    left: -65%;
    top: 205%;
  }
  .home-projects .text-intro-aedo .hg {
    left: -32%;
    top: 220%;
  }
  .home-projects .text-intro-aedo .ez {
    left: -60%;
    top: 210%;
  }
  .home-projects .text-intro-aedo .ch {
    left: -50%;
    top: 215%;
  }
}
@media screen and (max-width: 480px) {
  .home-projects {
    display: grid;
    height: 70vh;
    grid-template-columns: 1fr;
    grid-template-rows: 0.31fr 0.6fr;
    grid-template-areas: "text-intro-aedo" "main-img";
  }
  .home-projects .text-intro-aedo h1 {
    color: #1c1e20;
    font-size: 5.1rem;
    line-height: 50%;
    line-height: normal;
    font-weight: 400;
    text-align: left;
    margin: 0;
    text-align: center;
  }
  .home-projects .text-intro-aedo .subtitle {
    text-align: center;
    margin: 0;
  }
  .home-projects .text-intro-aedo .details {
    position: absolute;
    top: 220%;
    left: -15%;
  }
  .home-projects .text-intro-aedo .cb {
    left: -12%;
    top: 220%;
  }
  .home-projects .text-intro-aedo .hg {
    left: -12%;
    top: 220%;
  }
  .home-projects .text-intro-aedo .ez {
    left: -12%;
    top: 200%;
  }
  .home-projects .text-intro-aedo .ch {
    left: -12%;
    top: 210%;
  }
}
/*project description*/
.description {
  z-index: 0;
  width: 100vw;
  height: 100vh;
  background-color: #f6f6f6;
  overflow: visible;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  justify-content: center;
  align-content: center;
  overflow: visible;
}
.description .img-desc {
  z-index: 50;
  display: flex;
  align-self: center;
  justify-self: right;
  width: 100%;
  height: auto;
  transform: translate(0, 8%);
  filter: drop-shadow(0px 30px 50px rgba(0, 0, 0, 0.25));
  overflow: visible;
}
.description .text-description {
  z-index: 50;
  justify-self: left;
  align-self: center;
  margin-left: 4.5rem;
}
.description .text-description h2 {
  color: #1c1e20;
  font-size: 2.4rem;
  font-weight: 400;
  text-align: left;
  margin: 1rem 0;
}
.description .text-description p {
  color: #1c1e20;
  font-size: 1.4rem;
  font-weight: 200;
  text-align: left;
  line-height: 160%;
  width: 80%;
}
.description .aedo-desc {
  margin-top: 10%;
}
.description .careby-desc {
  margin-top: 5%;
}
.description .hougusra-desc {
  margin-top: 10%;
}
.description .easymile-desc {
  margin-top: 10%;
}

@media screen and (max-width: 768px) {
  .description {
    width: 100vw;
    height: 60vh;
    margin: auto;
    display: flex;
    justify-content: center;
    align-content: center;
    overflow: visible;
  }
  .description .img-desc {
    display: none;
  }
  .description .text-description {
    z-index: 50;
    justify-self: center;
    align-self: flex-start;
    width: 75%;
    margin: auto;
  }
  .description .text-description h2 {
    color: #1c1e20;
    font-size: 2.4rem;
    font-weight: 400;
    text-align: left;
    margin: 0;
  }
  .description .text-description p {
    margin-top: 2rem;
    color: #1c1e20;
    font-size: 1.4rem;
    font-weight: 200;
    text-align: left;
    line-height: 160%;
    width: 100%;
  }
  .description .aedo-desc {
    margin-top: -8%;
  }
  .description .careby-desc {
    margin-top: -8%;
  }
  .description .hougusra-desc {
    margin-top: -8%;
  }
  .description .easymile-desc {
    margin-top: -8%;
  }
}
@media screen and (max-width: 480px) {
  .description {
    height: 140vh;
  }
}
/*gallery section*/
.mood {
  z-index: 0;
  overflow: visible;
  position: relative;
  width: 100vw;
  height: 100vh;
  background-color: #f6f6f6;
  overflow: visible;
  display: flex;
  align-content: center;
  justify-content: center;
}
.mood .container {
  z-index: 10;
  overflow: visible;
  width: 100%;
  height: 100%;
  display: flex;
  justify-items: center;
  justify-content: center;
  align-content: center;
}
.mood .container .gallery {
  position: relative;
  overflow: visible;
  display: grid;
  height: 70%;
  width: 70%;
  margin: auto;
  align-self: center;
  justify-self: center;
  margin: auto;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 2rem;
  grid-template-areas: "img-01 img-02 img-03 img-03" "img-04 img-04 img-05 img-06";
  grid-auto-flow: dense;
}
.mood .container .gallery img {
  box-shadow: 0px 30px 50px rgba(0, 0, 0, 0.25);
}
.mood .container .gallery .img-01 {
  grid-area: img-01;
}
.mood .container .gallery .img-01 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.mood .container .gallery .img-02 {
  grid-area: img-02;
}
.mood .container .gallery .img-02 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.mood .container .gallery .img-03 {
  grid-area: img-03;
}
.mood .container .gallery .img-03 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.mood .container .gallery .img-04 {
  grid-area: img-04;
}
.mood .container .gallery .img-04 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.mood .container .gallery .img-05 {
  grid-area: img-05;
}
.mood .container .gallery .img-05 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.mood .container .gallery .img-06 {
  grid-area: img-06;
}
.mood .container .gallery .img-06 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

/** @format */
.gallery-careby {
  position: relative;
  overflow: visible;
  display: grid;
  height: 70%;
  width: 70%;
  margin: auto;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 0.5fr) 1fr;
  grid-gap: 2rem;
  grid-template-areas: "img-01 img-02 img-04 img-04" "img-03 img-03 img-04 img-04" "img-05 img-05 img-06 img-07";
  grid-auto-flow: dense;
}
.gallery-careby img {
  box-shadow: 0px 30px 50px rgba(0, 0, 0, 0.25);
}
.gallery-careby .img-01 {
  grid-area: img-01;
}
.gallery-careby .img-01 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.gallery-careby .img-02 {
  grid-area: img-02;
}
.gallery-careby .img-02 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.gallery-careby .img-03 {
  grid-area: img-03;
}
.gallery-careby .img-03 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.gallery-careby .img-04 {
  grid-area: img-04;
}
.gallery-careby .img-04 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 99%;
}
.gallery-careby .img-05 {
  grid-area: img-05;
}
.gallery-careby .img-05 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.gallery-careby .img-06 {
  grid-area: img-06;
}
.gallery-careby .img-06 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.gallery-careby .img-07 {
  grid-area: img-07;
}
.gallery-careby .img-07 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .gallery-careby {
    position: relative;
    overflow: visible;
    display: grid;
    height: 60%;
    width: 87%;
    margin: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(6, 1fr);
    grid-gap: 2rem;
    grid-auto-flow: dense;
    grid-template-areas: "img-01 img-02" "img-03 img-03" "img-04 img-04" "img-05 img-05" "img-06 img-07";
  }
  .gallery-careby img {
    box-shadow: 0px 30px 50px rgba(0, 0, 0, 0.25);
  }
  .gallery-careby .img-01 {
    grid-area: img-01;
  }
  .gallery-careby .img-01 img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
  .gallery-careby .img-02 {
    grid-area: img-02;
  }
  .gallery-careby .img-02 img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
  .gallery-careby .img-03 {
    grid-area: img-03;
  }
  .gallery-careby .img-03 img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
  .gallery-careby .img-04 {
    grid-area: img-04;
  }
  .gallery-careby .img-04 img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 99%;
  }
  .gallery-careby .img-05 {
    grid-area: img-05;
  }
  .gallery-careby .img-05 img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
  .gallery-careby .img-06 {
    grid-area: img-06;
  }
  .gallery-careby .img-06 img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
  .gallery-careby .img-07 {
    grid-area: img-07;
  }
  .gallery-careby .img-07 img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
}
/** @format */
.gallery-easymile {
  position: relative;
  overflow: visible;
  display: grid;
  height: 60%;
  width: 70%;
  margin: auto;
  grid-template-columns: 1fr 1fr 0.5fr 0.5fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 2rem;
  grid-template-areas: "img-01 img-02 img-02 img-03 img-03" "img-01 img-04 img-04 img-04 img-05";
  grid-auto-flow: dense;
  transform: translateY(-10%);
  z-index: 50;
}
.gallery-easymile img {
  box-shadow: 0px 30px 50px rgba(0, 0, 0, 0.25);
  overflow: visible;
}
.gallery-easymile .img-01 {
  grid-area: img-01;
}
.gallery-easymile .img-01 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.gallery-easymile .img-02 {
  grid-area: img-02;
}
.gallery-easymile .img-02 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.gallery-easymile .img-03 {
  grid-area: img-03;
}
.gallery-easymile .img-03 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.gallery-easymile .img-04 {
  grid-area: img-04;
}
.gallery-easymile .img-04 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.gallery-easymile .img-05 {
  grid-area: img-05;
}
.gallery-easymile .img-05 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .ezm {
    height: 110vh !important;
  }
  .gallery-easymile {
    position: relative;
    overflow: visible;
    display: grid;
    height: 60%;
    width: 85%;
    margin: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 1fr);
    grid-gap: 2rem;
    grid-template-areas: "img-01 img-02" "img-01 img-03" "img-01 img-05" "img-04 img-04";
    grid-auto-flow: dense;
    transform: translateY(-10%);
    z-index: 50;
  }
  .gallery-easymile img {
    box-shadow: 0px 30px 50px rgba(0, 0, 0, 0.25);
    overflow: visible;
  }
  .gallery-easymile .img-01 {
    grid-area: img-01;
  }
  .gallery-easymile .img-01 img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .gallery-easymile .img-02 {
    grid-area: img-02;
  }
  .gallery-easymile .img-02 img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
  .gallery-easymile .img-03 {
    grid-area: img-03;
  }
  .gallery-easymile .img-03 img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
  .gallery-easymile .img-04 {
    grid-area: img-04;
  }
  .gallery-easymile .img-04 img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .gallery-easymile .img-05 {
    grid-area: img-05;
  }
  .gallery-easymile .img-05 img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
/** @format */
.gallery-howgusta {
  position: relative;
  overflow: visible;
  display: grid;
  height: 60%;
  width: 70%;
  margin: auto;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  grid-gap: 2rem;
  grid-template-areas: "img-01 img-02";
  grid-auto-flow: dense;
  transform: translateY(-10%);
  z-index: 50;
}
.gallery-howgusta img {
  box-shadow: 0px 30px 50px rgba(0, 0, 0, 0.25);
  overflow: visible;
}
.gallery-howgusta .img-01 {
  grid-area: img-01;
}
.gallery-howgusta .img-01 .img-grid {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  box-shadow: 0px 30px 50px rgba(0, 0, 0, 0.25);
  overflow: visible;
}
.gallery-howgusta .img-01 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.gallery-howgusta .img-02 {
  grid-area: img-02;
}
.gallery-howgusta .img-02 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.gallery-howgusta .img-03 {
  grid-area: img-03;
}
.gallery-howgusta .img-03 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.gallery-howgusta .img-04 {
  grid-area: img-04;
}
.gallery-howgusta .img-04 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.gallery-howgusta .img-05 {
  grid-area: img-05;
}
.gallery-howgusta .img-05 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .hgm {
    height: 135vh !important;
  }
  .gallery-howgusta {
    position: relative;
    overflow: visible;
    display: grid;
    height: 60%;
    width: 85%;
    margin: auto;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    grid-gap: 2rem;
    grid-template-areas: "img-01" "img-02";
    grid-auto-flow: dense;
    transform: translateY(0%);
    z-index: 50;
  }
  .gallery-howgusta img {
    box-shadow: 0px 30px 50px rgba(0, 0, 0, 0.25);
    overflow: visible;
  }
  .gallery-howgusta .img-01 {
    grid-area: img-01;
  }
  .gallery-howgusta .img-01 .img-grid {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
    box-shadow: 0px 30px 50px rgba(0, 0, 0, 0.25);
    overflow: visible;
  }
  .gallery-howgusta .img-01 img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .gallery-howgusta .img-02 {
    grid-area: img-02;
  }
  .gallery-howgusta .img-02 img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
  .gallery-howgusta .img-03 {
    grid-area: img-03;
  }
  .gallery-howgusta .img-03 img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
  .gallery-howgusta .img-04 {
    grid-area: img-04;
  }
  .gallery-howgusta .img-04 img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .gallery-howgusta .img-05 {
    grid-area: img-05;
  }
  .gallery-howgusta .img-05 img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
/** @format */
.gallery-cheeep {
  position: relative;
  overflow: visible;
  display: grid;
  height: 80%;
  width: 70%;
  margin: auto;
  margin-top: 10%;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 0.5fr 0.5fr 1fr;
  grid-gap: 2rem;
  grid-template-areas: "img-01 img-03" "img-01 img-04" "img-02 img-04" "img-02 img-05";
  grid-auto-flow: dense;
  transform: translateY(-10%);
  z-index: 50;
}
.gallery-cheeep img {
  box-shadow: 0px 30px 50px rgba(0, 0, 0, 0.25);
  overflow: visible;
}
.gallery-cheeep .img-01 {
  grid-area: img-01;
}
.gallery-cheeep .img-01 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.gallery-cheeep .img-02 {
  grid-area: img-02;
}
.gallery-cheeep .img-02 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.gallery-cheeep .img-03 {
  grid-area: img-03;
}
.gallery-cheeep .img-03 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.gallery-cheeep .img-04 {
  grid-area: img-04;
}
.gallery-cheeep .img-04 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.gallery-cheeep .img-05 {
  grid-area: img-05;
}
.gallery-cheeep .img-05 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .chm {
    height: 120vh;
  }
  .gallery-cheeep {
    position: relative;
    overflow: visible;
    display: grid;
    height: 80%;
    width: 85%;
    margin: auto;
    margin-top: 10%;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 0.5fr 1fr 0.5fr 0.5fr;
    grid-gap: 2rem;
    grid-template-areas: "img-01" "img-02" "img-03" "img-04" "img-05";
    grid-auto-flow: dense;
    transform: translateY(20%);
    z-index: 50;
  }
  .gallery-cheeep img {
    box-shadow: 0px 30px 50px rgba(0, 0, 0, 0.25);
    overflow: visible;
  }
  .gallery-cheeep .img-01 {
    grid-area: img-01;
  }
  .gallery-cheeep .img-01 img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .gallery-cheeep .img-02 {
    grid-area: img-02;
  }
  .gallery-cheeep .img-02 img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
  .gallery-cheeep .img-03 {
    grid-area: img-03;
  }
  .gallery-cheeep .img-03 img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
  .gallery-cheeep .img-04 {
    grid-area: img-04;
  }
  .gallery-cheeep .img-04 img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .gallery-cheeep .img-05 {
    grid-area: img-05;
  }
  .gallery-cheeep .img-05 img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .mood {
    height: 150vh;
    align-self: flex-start;
    top: 0;
  }
  .mood .container {
    align-self: flex-start;
    top: 40%;
    left: 50%;
    top: 0%;
    transform: translate(-50%, -20%);
  }
  .mood .container .gallery {
    position: relative;
    display: grid;
    height: 60%;
    width: 85%;
    margin: auto;
    align-self: flex-start;
    justify-self: center;
    margin: auto;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-gap: 2rem;
    grid-template-areas: "img-01 img-02" "img-03 img-03" "img-04 img-04" "img-05 img-06";
    grid-auto-flow: dense;
  }
  .mood .container .gallery .img-01 {
    grid-area: img-01;
  }
  .mood .container .gallery .img-01 img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
  .mood .container .gallery .img-02 {
    grid-area: img-02;
  }
  .mood .container .gallery .img-02 img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
  .mood .container .gallery .img-03 {
    grid-area: img-03;
  }
  .mood .container .gallery .img-03 img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
  .mood .container .gallery .img-04 {
    grid-area: img-04;
  }
  .mood .container .gallery .img-04 img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
  .mood .container .gallery .img-05 {
    grid-area: img-05;
  }
  .mood .container .gallery .img-05 img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
  .mood .container .gallery .img-06 {
    grid-area: img-06;
  }
  .mood .container .gallery .img-06 img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .mood {
    height: 100vh;
    align-self: flex-start;
    top: 0;
  }
  .mood .container {
    align-self: flex-start;
    top: 40%;
    left: 50%;
    top: 0%;
    transform: translate(-50%, -20%);
  }
}
/*video area*/
.video {
  z-index: 0;
  width: 100vw;
  height: 100vh;
  background-color: #f6f6f6;
  display: flex;
  align-content: center;
  justify-content: center;
}
.video .video-box {
  width: 70%;
  height: 80%;
  margin: auto;
  background-color: #000;
  box-shadow: 0px 30px 50px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 768px) {
  .video {
    height: 50vh;
  }
  .video .video-box {
    width: 85%;
  }
}
@media screen and (max-width: 480px) {
  .video {
    height: 80vh;
  }
  .video .video-box {
    width: 85%;
  }
}
/*conclusion*/
.conclusion {
  z-index: 0;
  width: 100%;
  height: 100vh;
  background-color: #f6f6f6;
  display: flex;
  flex-wrap: wrap;
}
.conclusion .logo {
  height: 80%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-items: center;
  justify-content: center;
  align-content: center;
}
.conclusion .logo .logo-img {
  height: 14rem;
  width: auto;
  display: flex;
  align-self: center;
  justify-self: center;
}
.conclusion .team {
  display: flex;
  transform: translate(15%, -25%);
}
.conclusion .team p {
  font-size: 1.4rem;
  color: #1c1e20;
}
.conclusion .team p .aedo-link {
  text-decoration: none;
  color: #1c1e20;
}

.aedo-link:hover {
  text-decoration: none;
  color: #1c1e20;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .conclusion {
    height: 50vh;
  }
  .conclusion .logo .logo-img {
    height: 10rem;
    width: auto;
    display: flex;
    align-self: center;
    justify-self: center;
  }
  .conclusion .team {
    width: 80%;
    margin: auto;
    transform: translate(0%, -50%);
    align-self: flex-end;
  }
  .conclusion .team p {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 480px) {
  .conclusion {
    height: 80vh;
  }
}
/*end slider*/
.projects-slider {
  z-index: 0;
  width: 100vw;
  height: 100vh;
  background-color: #f6f6f6;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-content: center;
  justify-content: center;
}
.projects-slider .slider-projects {
  width: 90%;
  height: 80%;
  display: flex;
}
.projects-slider .slider-projects .swiper-container02 {
  z-index: 35;
  width: 100%;
  height: 50%;
  margin: auto;
  display: flex;
}
.projects-slider .slider-projects .swiper-container02 .swiper-slide {
  align-self: center;
  align-content: center;
  justify-content: center;
  justify-self: left;
  width: 100%;
}
.projects-slider .slider-projects .swiper-container02 .swiper-slide img {
  height: auto;
  width: 100%;
  transition: 0.5s;
  transform-origin: center;
}
.projects-slider .slider-projects .swiper-container02 .swiper-slide img:hover {
  width: 110%;
  transform-origin: center;
}
.projects-slider .slider-projects .swiper-container02 .swiper-slide h1 {
  z-index: 35;
  font-size: 2.4rem;
  font-weight: 400;
  color: #1c1e20;
  text-transform: none;
  margin: 0 2rem;
  margin-left: 5%;
  line-height: 24px;
}

.back {
  z-index: 35;
  width: 4%;
  text-transform: none;
  position: relative;
  left: 0;
  transition: 0.5s;
}
.back a {
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(28, 30, 32, 0.5254901961);
  text-decoration: none;
  transition: 0.5s;
}
.back .line {
  position: relative;
  background-color: rgba(28, 30, 32, 0.5254901961);
  height: 1.6px;
  width: 100%;
  left: 0;
  bottom: -0.4rem;
}

.back:hover {
  width: 6%;
}
.back:hover a {
  font-size: 3.8rem;
  font-weight: 700;
  color: #1c1e20;
  text-decoration: none;
}
.back:hover .line {
  height: 3px;
}

@media screen and (max-width: 768px) {
  .projects-slider {
    z-index: 0;
    width: 100vw;
    height: 50vh;
    background-color: #f6f6f6;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: center;
    justify-content: center;
  }
  .projects-slider .slider-projects {
    width: 85%;
    height: 80%;
    display: flex;
  }
  .projects-slider .slider-projects .swiper-container02 {
    z-index: 35;
    width: 100%;
    height: 50%;
    margin: auto;
    display: flex;
  }
  .projects-slider .slider-projects .swiper-container02 .swiper-slide {
    align-self: center;
    align-content: center;
    justify-content: center;
    justify-self: left;
    width: 100%;
  }
  .projects-slider .slider-projects .swiper-container02 .swiper-slide img {
    height: auto;
    width: 100%;
    transition: 0.5s;
    transform-origin: center;
  }
  .projects-slider .slider-projects .swiper-container02 .swiper-slide img:hover {
    width: 110%;
    transform-origin: center;
  }
  .projects-slider .slider-projects .swiper-container02 .swiper-slide h1 {
    z-index: 35;
    font-size: 2.4rem;
    font-weight: 400;
    color: #1c1e20;
    text-transform: none;
    margin: 0 2rem;
    margin-left: 5%;
    line-height: 24px;
  }
}
@media screen and (max-width: 480px) {
  .projects-slider {
    height: 60vh;
  }
  .projects-slider .slider-projects {
    width: 85%;
    height: 80%;
    display: flex;
  }
  .projects-slider .slider-projects .swiper-container02 {
    width: 100%;
    height: 50%;
  }
  .projects-slider .slider-projects .swiper-container02 h1 {
    font-size: 1.8rem;
  }
}
/** @format */
footer {
  position: relative;
  height: 10vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-content: center;
  background-color: #e7eaec;
  border-top: 1px solid rgba(28, 30, 32, 0.0901960784);
}
footer h1 {
  align-self: center;
  font-size: 1.8rem;
  color: #1c1e20;
  vertical-align: center;
  font-weight: 300;
}
footer a {
  font-size: 1.4rem;
  position: absolute;
  left: 6%;
  top: 50%;
  transform: translateY(-50%);
}

.prj {
  background-color: #f6f6f6;
}

@media screen and (max-width: 768px) {
  footer {
    height: 5vh;
  }
  footer h1 {
    font-size: 1.4rem;
  }
}
/** @format */
.me {
  background-color: #e7eaec;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-content: center;
  justify-content: center;
}
.me .introgrid {
  align-self: center;
  display: grid;
  height: 75%;
  width: 88%;
  margin: auto;
  margin-right: 7%;
  grid-template-columns: 1fr 1fr 0.8fr 1.2fr;
  grid-template-rows: 0.5fr 1fr 1fr 0.8fr 1.4fr;
  grid-gap: 3rem;
  grid-template-areas: ".       .     img-02  ." "img-01 img-01 img-02 img-03" "img-04 img-05 img-02 img-03" "img-04 img-05 img-06 img-07" "img-08 img-08 img-06 img-07";
  grid-auto-flow: dense;
  justify-items: stretch;
}
.me .introgrid img {
  box-shadow: 0px 30px 50px rgba(0, 0, 0, 0.25);
}
.me .introgrid .img-01 {
  grid-area: img-01;
  align-self: end;
  height: 110%;
}
.me .introgrid .img-01 h2 {
  line-height: 80%;
}
.me .introgrid .img-02 {
  grid-area: img-02;
}
.me .introgrid .img-02 img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.me .introgrid .img-03 {
  grid-area: img-03;
}
.me .introgrid .img-03 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.me .introgrid .img-04 {
  grid-area: img-04;
}
.me .introgrid .img-04 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.me .introgrid .img-05 {
  grid-area: img-05;
}
.me .introgrid .img-05 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.me .introgrid .img-06 {
  grid-area: img-06;
}
.me .introgrid .img-06 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 80%;
}
.me .introgrid .img-07 {
  grid-area: img-07;
}
.me .introgrid .img-07 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.me .introgrid .img-08 {
  grid-area: img-08;
  align-self: end;
  width: 95%;
}

@media screen and (max-width: 768px) {
  .me {
    background-color: #e7eaec;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-content: center;
    justify-content: center;
  }
  .me .introgrid {
    align-self: center;
    display: grid;
    height: 70%;
    width: 90%;
    margin: auto;
    margin-top: auto;
    grid-template-columns: 1.3fr 0.7fr;
    grid-template-rows: 1.2fr 0.5fr 0.5fr;
    grid-gap: 3rem;
    grid-template-areas: "img-01 img-01" "img-08 img-07" "img-06 img-05";
    grid-auto-flow: dense;
  }
  .me .introgrid img {
    box-shadow: 0px 30px 50px rgba(0, 0, 0, 0.25);
  }
  .me .introgrid .img-01 {
    grid-area: img-01;
    align-self: end;
    height: 70%;
  }
  .me .introgrid .img-01 h2 {
    font-size: 8rem;
    line-height: 80%;
    align-self: flex-end;
  }
  .me .introgrid .img-02 {
    display: none;
  }
  .me .introgrid .img-03 {
    display: none;
  }
  .me .introgrid .img-04 {
    display: none;
  }
  .me .introgrid .img-05 {
    grid-area: img-05;
  }
  .me .introgrid .img-05 img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 70%;
  }
  .me .introgrid .img-06 {
    grid-area: img-06;
  }
  .me .introgrid .img-06 img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 70%;
  }
  .me .introgrid .img-07 {
    grid-area: img-07;
  }
  .me .introgrid .img-07 img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .me .introgrid .img-08 {
    grid-area: img-08;
    align-self: end;
    width: 95%;
  }
}
.did {
  background-color: #e7eaec;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 90%;
  margin: auto;
}
.did h2 {
  margin-top: 10%;
}
.did .time {
  margin-top: 5%;
  align-self: center;
  width: 80%;
}

.explore {
  height: 30vh;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
}
.explore button {
  bottom: -10%;
}

@media screen and (max-width: 768px) {
  .did {
    height: 120vh;
  }
  .did h2 {
    font-size: 8rem;
    margin-top: 10%;
  }
  .did .time {
    margin-top: 15%;
    align-self: center;
    width: 90%;
    margin-left: 10%;
  }
}
.can-do {
  background-color: #e7eaec;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 90%;
  margin: auto;
}
.can-do h2 {
  margin-top: 10%;
  margin-bottom: 5%;
}
.can-do .skill-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 3rem;
  margin: 2% 0;
  align-self: center;
  width: 80%;
  height: 100%;
  align-content: center;
  justify-content: center;
}
.can-do .skill-container div {
  display: flex;
  flex-direction: column;
  align-self: center;
  margin-left: 25%;
}
.can-do .skill-container div p {
  margin-bottom: 5%;
}
.can-do .skill-container img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  align-self: start;
  box-shadow: 0px 30px 50px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 480px) {
  .can-do {
    gap: 8rem;
  }
  .can-do h2 {
    font-size: 6rem;
    margin-top: 10%;
    margin-bottom: 5%;
  }
  .can-do .skill-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 2rem;
    grid-gap: 1rem;
    margin: 0;
    align-self: center;
    width: 95%;
    height: 100%;
    align-content: center;
    justify-content: center;
  }
  .can-do .skill-container div {
    display: flex;
    flex-direction: column;
    align-self: center;
    margin: 0;
  }
  .can-do .skill-container div p {
    margin-bottom: 0;
  }
  .can-do .skill-container img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    align-self: start;
    box-shadow: 0px 30px 50px rgba(0, 0, 0, 0.25);
  }
}
.did .time {
  width: 120%;
  margin-left: -1%;
}

.back.ab {
  margin: 5% 5%;
}

/** @format */
.text-page {
  display: flex;
  flex-direction: column;
  width: 80%;
  justify-self: center;
  margin: 16vh 0;
}
.text-page h3 {
  font-size: 1.6rem;
}
.text-page p {
  font-size: 1.4rem;
  padding-bottom: 1.6rem;
}
.text-page ul {
  font-size: 1.4rem;
  padding-left: 4rem;
  padding-bottom: 1.6rem;
}/*# sourceMappingURL=style.css.map */