@import url("https://fonts.googleapis.com/css2?family=Londrina+Outline&family=Londrina+Shadow&family=Londrina+Sketch&family=Londrina+Solid:wght@100;300;400;900&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}
* ::-moz-selection {
  color: #fff;
  background: #000;
}
* ::selection {
  color: #fff;
  background: #000;
}

::-webkit-scrollbar {
  width: 0;
  background: #fff;
}

body {
  overflow: hidden;
  background: black;
  color: #fff;
}

a {
  text-decoration: none;
}

img,
span {
  display: inline-block;
}

.container {
  padding: 3vw;
  overflow: hidden;
  position: relative;
}

.btn {
  text-decoration: none;
  cursor: pointer;
}

.title {
  font-size: 11vw;
  font-weight: 200;
  font-family: "Londrina Sketch", cursive;
}

.montserrat {
  font-family: "Montserrat", sans-serif;
}

.sub-title {
  font-size: 5vw;
  font-weight: 1000;
}

.primary-btn {
  position: relative;
  z-index: 2;
  cursor: pointer;
  color: #fff;
  font-size: 3vw;
  font-weight: 1000;
  margin-left: 6vw;
  transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.primary-btn::before {
  background-color: #fff;
  bottom: 0;
  content: "";
  height: 0.2vw;
  left: 0;
  position: absolute;
  transform: scaleX(1);
  transform-origin: left center;
  width: 100%;
  z-index: 2;
}
.primary-btn span {
  background-color: #fff;
  bottom: 0;
  display: block;
  height: 100%;
  left: -4px;
  position: absolute;
  z-index: -1;
  right: -4px;
  transform: scaleX(0);
  transform-origin: right bottom;
  transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition-property: transform;
}
.primary-btn:hover span {
  transform: scaleX(1);
  transform-origin: left bottom;
}
.primary-btn:hover {
  color: #000 !important;
}

.cursor {
  pointer-events: none;
  position: fixed;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  transform-origin: 100% 100%;
  mix-blend-mode: difference;
}

.cursor-outer {
  height: 3vw;
  width: 3vw;
  border: 0.1vw solid #fff;
  transition: 250ms ease-out;
}

.cursor-inner {
  height: 0.5vw;
  width: 0.5vw;
  background-color: #fff;
  transition: 50ms linear;
}

.defaultCursor {
  transform: scale(0.0001) translate(0%, 0%);
  mix-blend-mode: unset;
  transform-origin: -20% -20%;
}

.navHoverCursor {
  height: 2vw;
  width: 2vw;
}

.home-btn {
  position: fixed;
  bottom: 5vw;
  right: 3vw;
  z-index: 100;
  background: #fff;
  border-radius: 50%;
  overflow: hidden;
  mix-blend-mode: difference;
  transform: scale(0);
}
.home-btn:hover img {
  animation: hoverPopUp 1s ease;
}
.home-btn img {
  width: 2vw;
}
.home-btn .home-btn__div {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5vw;
  width: 5vw;
}
@keyframes popUp {
  0% {
    transform: scale(0);
  }
  40% {
    transform: scale(1.3);
  }
  60% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes hoverPopUp {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  25% {
    transform: translateY(-5vw);
  }
  30% {
    transform: translateY(3vw);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes scaleZero {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}

.navbar {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.navbar .menu__button {
  position: relative;
}
.navbar .menu__button img {
  transform: translate3d(0px, 0px, 0px);
  transition: transform 0.2s linear;
}
.navbar .menu__button .menu__transition {
  position: absolute;
  z-index: 10;
  border-radius: 50%;
  background-color: #fff;
  height: 0;
  width: 0;
  top: 45%;
  left: 30%;
  transform: translate(-50%, -50%);
  transition: 1s ease;
}
.navbar .menu__open__button,
.navbar .menu__close__button {
  height: 2.3vw;
}
@keyframes raiseWidth {
  from {
    height: 0;
    width: 0;
  }
  to {
    height: 250vw;
    width: 250vw;
  }
}

.logo {
  position: relative;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.logo__hover-effect:nth-child(1)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.2vw;
  height: 0.2vw;
  border-top: 0.15vw solid #fff;
  border-left: 0.15vw solid #fff;
  transition: 0.2s;
  opacity: 0;
}
.logo__hover-effect:nth-child(1)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0.2vw;
  height: 0.2vw;
  border-top: 0.15vw solid #fff;
  border-right: 0.15vw solid #fff;
  transition: 0.2s;
  opacity: 0;
}
.logo__hover-effect:nth-child(2)::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0.2vw;
  height: 0.2vw;
  border-bottom: 0.15vw solid #fff;
  border-left: 0.15vw solid #fff;
  transition: 0.2s;
  opacity: 0;
}
.logo__hover-effect:nth-child(2)::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0.2vw;
  height: 0.2vw;
  border-bottom: 0.15vw solid #fff;
  border-right: 0.15vw solid #fff;
  transition: 0.2s;
  opacity: 0;
}
.logo:hover .logo__hover-effect:nth-child(1)::before {
  top: -0.6vw;
  left: -0.6vw;
  opacity: 1;
}
.logo:hover .logo__hover-effect:nth-child(1)::after {
  top: -0.6vw;
  right: -0.6vw;
  opacity: 1;
}
.logo:hover .logo__hover-effect:nth-child(2)::before {
  bottom: -0.6vw;
  left: -0.6vw;
  opacity: 1;
}
.logo:hover .logo__hover-effect:nth-child(2)::after {
  bottom: -0.6vw;
  right: -0.6vw;
  opacity: 1;
}
.logo h3 {
  font-size: 1.6vw;
  font-weight: 1000;
}
.logo p {
  font-size: 0.8vw;
  font-weight: 600;
  letter-spacing: 0.37vw;
}
.logo p span:last-child {
  letter-spacing: 0;
}

@keyframes rubberPop {
  0% {
    transform: scaleY(0);
  }
  40% {
    transform: scaleY(1.2);
  }
  60% {
    transform: scaleY(0.8);
  }
  80% {
    transform: scaleY(1.1);
  }
  90% {
    transform: scaleY(0.9);
  }
  100% {
    transform: scaleY(1);
  }
}
@keyframes popUp {
  0% {
    transform: scale(0);
  }
  40% {
    transform: scale(1.2);
  }
  60% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes letterSpacing {
  0% {
    letter-spacing: 0vw;
  }
  100% {
    letter-spacing: 0.37vw;
  }
}
@keyframes downWidth {
  from {
    height: 250vw;
    width: 250vw;
  }
  to {
    height: 0;
    width: 0;
  }
}
@keyframes popUp {
  0% {
    transform: scale(0);
  }
  40% {
    transform: scale(1.2);
  }
  60% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.footer .zoom__button {
  display: none;
  position: absolute;
  bottom: 3vw;
  right: 3vw;
}
.footer .zoom__button .zoom-out__button,
.footer .zoom__button .zoom-in__button {
  height: 1.2vw;
  transition: 0.5s;
}
.footer .zoom__button .zoom-in__button {
  visibility: hidden;
  animation: sclaePopUp 0.6s ease forwards 0.1s;
}
.footer .zoom__button .zoom-out__button {
  display: none;
  animation: sclaePopUp 0.6s ease forwards;
}
.footer .zoom__button:hover .btn {
  height: 1.3vw;
}
@keyframes sclaePopUp {
  0% {
    transform: scaleX(0);
    visibility: visible;
  }
  30% {
    transform: scaleX(1.3);
    visibility: visible;
  }
  100% {
    transform: scaleX(1);
    visibility: visible;
  }
}

#website-loading {
  z-index: 100;
  background-color: #fff;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}
#website-loading .logo {
  cursor: default;
  color: #000;
}
#website-loading .logo h3 {
  font-size: 3vw;
  transform: scale(0);
  animation: rubberPop 0.6s ease-out forwards 1s;
}
#website-loading .logo p {
  font-size: 1.5vw;
  letter-spacing: unset;
  animation: letterSpacing 0.6s ease forwards 2.6s;
}
#website-loading .logo p span {
  transform: scale(0);
}
#website-loading .logo p span:nth-child(1) {
  animation: popUp 0.3s ease-in forwards 1.3s;
}
#website-loading .logo p span:nth-child(2) {
  animation: popUp 0.3s ease-in forwards 1.5s;
}
#website-loading .logo p span:nth-child(3) {
  animation: popUp 0.3s ease-in forwards 1.7s;
}
#website-loading .logo p span:nth-child(4) {
  animation: popUp 0.3s ease-in forwards 1.9s;
}
#website-loading .logo p span:nth-child(5) {
  animation: popUp 0.3s ease-in forwards 2.1s;
}
#website-loading .logo p span:last-child {
  animation: popUp 0.3s ease-in forwards 2.3s;
  letter-spacing: 0;
}
#website-loading .logo::before {
  content: "";
  position: absolute;
  background: #000;
  height: 0vw;
  width: 0vw;
  border-radius: 50%;
  transition: 1s;
  animation: big-circle 1s ease forwards 3.3s;
}
@keyframes big-circle {
  0% {
    height: 0vw;
    width: 0vw;
  }
  100% {
    height: 150vw;
    width: 150vw;
  }
}
@keyframes letterSpacing {
  0% {
    letter-spacing: 0vw;
  }
  100% {
    letter-spacing: 0.68vw;
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    display: none;
    z-index: 0;
  }
}

#home {
  background-color: #000;
  color: #fff;
  height: 100vh;
}
#home ::-moz-selection {
  color: #000;
  background: #fff;
}
#home ::selection {
  color: #000;
  background: #fff;
}
#home .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
#home .container #header {
  margin-bottom: 2.5vw;
}
#home .container #header h1 {
  cursor: default;
  text-align: center;
}
#home .container #header h1 span {
  line-height: 7vw;
  position: relative;
}
#home .container #header h1 .we {
  font-size: 6.5vw;
  font-weight: 1000;
  font-style: italic;
  visibility: hidden;
  animation: leftSlid 0.6s ease forwards 4.5s;
}
#home .container #header h1 .design {
  font-size: 6.5vw;
  font-weight: 100;
}
#home .container #header h1 .design span {
  font-family: "Londrina Sketch", cursive;
  visibility: hidden;
  opacity: 0;
}
#home .container #header h1 .design span:nth-child(3) {
  animation: opacityIn 0s ease-in forwards 5s;
}
#home .container #header h1 .design span:nth-child(6) {
  animation: opacityIn 0s ease-in forwards 5.2s;
}
#home .container #header h1 .design span:nth-child(1) {
  animation: opacityIn 0s ease-in forwards 5.4s;
}
#home .container #header h1 .design span:nth-child(4) {
  animation: opacityIn 0s ease-in forwards 5.6s;
}
#home .container #header h1 .design span:nth-child(2) {
  animation: opacityIn 0s ease-in forwards 5.8s;
}
#home .container #header h1 .design span:nth-child(5) {
  animation: opacityIn 0s ease-in forwards 6s;
}
#home .container #header h1 .and {
  font-size: 6.5vw;
  font-weight: 1000;
  visibility: hidden;
  animation: popUp 0.6s ease forwards 5.5s;
}
#home .container #header h1 .develop {
  font-size: 6.5vw;
  font-weight: 1000;
  visibility: hidden;
  animation: sclaePopUp 0.6s ease forwards 6s;
}
#home .container #header h1 .digital {
  font-size: 6.5vw;
  visibility: hidden;
  font-weight: normal;
  animation: rotatePopUp 0.6s ease forwards 6.5s;
}
#home .container #header h1 .products {
  line-height: 8.5vw;
  font-size: 9vw;
  visibility: hidden;
  font-weight: 100;
  animation: fontWeight-v1 0.8s ease forwards 7s;
}
#home .container #header .header__title__2 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@keyframes opacityIn {
  from {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}
@keyframes leftSlid {
  0% {
    left: -8vw;
    visibility: visible;
  }
  30% {
    left: 2vw;
    visibility: visible;
  }
  100% {
    left: 0vw;
    visibility: visible;
  }
}
@keyframes rotatePopUp {
  0% {
    transform: scale(0) rotate(20deg);
    visibility: visible;
  }
  30% {
    transform: scale(1.1) rotate(-10deg);
    visibility: visible;
  }
  100% {
    transform: scale(1) rotate(0);
    visibility: visible;
  }
}
@keyframes sclaePopUp {
  0% {
    transform: scaleX(0);
    visibility: visible;
  }
  30% {
    transform: scaleX(1.3);
    visibility: visible;
  }
  100% {
    transform: scaleX(1);
    visibility: visible;
  }
}
@keyframes fontWeight {
  0% {
    font-weight: 1000;
    visibility: visible;
  }
  50% {
    font-weight: 100;
    visibility: visible;
  }
  100% {
    font-weight: 1000;
    visibility: visible;
  }
}
@keyframes fontWeight-v1 {
  0% {
    font-weight: 100;
    visibility: visible;
  }
  35% {
    font-weight: 1000;
    visibility: visible;
  }
  70% {
    font-weight: 100;
    visibility: visible;
  }
  100% {
    font-weight: 1000;
    visibility: visible;
  }
}
@keyframes popUp {
  0% {
    transform: scale(0);
    visibility: visible;
  }
  40% {
    transform: scale(1.2);
    visibility: visible;
  }
  60% {
    transform: scale(0.9);
    visibility: visible;
  }
  100% {
    transform: scale(1);
    visibility: visible;
  }
}

#menu {
  display: none;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 1000;
  background-color: #fff;
  color: #000;
  opacity: 0;
  animation: fadeIn 0.5s ease forwards 0.8s;
}
#menu .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#menu .container .menu__button {
  position: absolute;
  right: 3vw;
  top: 3.2vw;
  height: 2.3vw;
}
#menu .container .menu__button img {
  width: 4vw;
  transform: translate3d(0px, 0px, 0px);
  transition: transform 0.2s linear;
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.8s;
}
#menu .container .menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#menu .container .menu__links .btn {
  font-size: 4.5vw;
  color: #000;
  transition: 0.2s;
  font-weight: 1000;
  transform: scaleX(0);
}
#menu .container .menu__links .btn:nth-child(1) {
  animation: sclaePopUp 0.6s ease-in forwards 0.7s;
}
#menu .container .menu__links .btn:nth-child(2) {
  animation: sclaePopUp 0.6s ease-in forwards 1s;
}
#menu .container .menu__links .btn:nth-child(3) {
  animation: sclaePopUp 0.6s ease-in forwards 1.3s;
}
#menu .container .menu__links .btn:nth-child(4) {
  animation: sclaePopUp 0.6s ease-in forwards 1.6s;
}
#menu .container .menu__links .btn:hover {
  font-weight: 500;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes sclaePopUp {
  0% {
    transform: scaleX(0);
    visibility: visible;
  }
  30% {
    transform: scaleX(1.3);
    visibility: visible;
  }
  100% {
    transform: scaleX(1);
    visibility: visible;
  }
}
@keyframes transitionUp {
  from {
    visibility: hidden;
  }
  to {
    visibility: visible;
  }
}

#work #work__section__title {
  padding: 3vw;
}
#work #work__section__title h1 {
  text-transform: uppercase;
}
#work .projects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 5vw;
  padding: 5vw;
  overflow: hidden;
}
#work .projects .talkemma .project__title__border {
  -webkit-text-stroke: 0.1vw white !important;
  z-index: 2;
  color: transparent;
}
#work .projects .project {
  position: relative;
  margin-bottom: 5vw;
}
#work .projects .project .project__title {
  pointer-events: none;
  position: absolute;
  top: -3.8vw;
  left: 1vw;
  height: 20%;
  display: block;
  text-align: center;
  font-size: 5vw;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
}
#work .projects .project .project__title__border {
  -webkit-text-stroke: 0.14vw black;
  z-index: 2;
  color: transparent;
}
#work .projects .project .project__title__color {
  color: white;
  z-index: -1;
}
#work .projects .project .project__showcase {
  height: 30vw;
  width: 43vw;
  border-radius: 2vw;
}
#work .projects .project .project__buttons {
  display: flex;
  align-items: center;
}
#work .projects .project .project__buttons .project__visit {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0.1vw solid #fff;
  border-radius: 50%;
  height: 4vw;
  width: 9vw;
  margin-top: 0.5vw;
  font-size: 1.3vw;
  color: #fff;
  letter-spacing: 0.5vw;
  margin-right: 2vw;
  transform: rotate(-4deg);
  transition: 0.3s;
}
#work .projects .project .project__buttons .project__visit:hover {
  letter-spacing: normal;
  transform: rotate(0deg);
}
#work .projects .project .project__buttons .primary-btn {
  margin-top: 0.5vw;
  font-size: 2.5vw;
  margin-left: 0;
  display: inline-block;
  border: none;
  background: none;
}

#studio {
  overflow: hidden;
  background-color: #000;
  color: #fff;
}
#studio ::-moz-selection {
  color: #000;
  background: #fff;
}
#studio ::selection {
  color: #000;
  background: #fff;
}
#studio .container {
  overflow: unset;
}
#studio .container .title {
  margin-bottom: 4vw;
}
#studio .container .studio__about-us {
  margin-bottom: 10vw;
  margin-left: 8vw;
}
#studio .container .studio__about-us .sub-title {
  margin-bottom: 2vw;
}
#studio .container .studio__about-us p {
  opacity: 0.8;
  font-size: 1.1vw;
  font-weight: 400;
  padding-right: 33vw;
  line-height: 200%;
}
#studio .container .studio__what-we-do {
  margin-bottom: 10vw;
  margin-left: 8vw;
}
#studio .container .studio__what-we-do .sub-title {
  margin-bottom: 3vw;
}
#studio .container .studio__what-we-do h3 {
  font-weight: bold;
  cursor: default;
}
#studio .container .studio__what-we-do h3 span {
  font-size: 2.2vw;
}
#studio .container .studio__what-we-do h3 .skill {
  margin-bottom: 4vw;
  position: relative;
  z-index: 2;
}
#studio .container .studio__what-we-do h3 .skill:last-child {
  margin-bottom: 0;
}
#studio .container .studio__what-we-do h3 .skill::before {
  content: "";
  position: absolute;
  bottom: -0.4vw;
  width: 100%;
  height: 0.4vw;
  z-index: -1;
  background-color: #fff;
  transition: 0.5s ease;
}
#studio .container .studio__what-we-do h3 .skill:hover {
  color: black;
}
#studio .container .studio__what-we-do h3 .skill:hover::before {
  height: 3.3vw;
}
#studio .container #honour {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 30vw;
  margin-top: -7vw;
}
#studio .container #honour ::-moz-selection {
  color: #fff;
  background: #000;
}
#studio .container #honour ::selection {
  color: #fff;
  background: #000;
}
#studio .container #honour .honour__scrolller {
  position: relative;
  background-color: #fff;
  color: #000;
  transform: rotate(-5deg) scale(1.1);
  border-top: #000 0.2vw solid;
  border-bottom: #000 0.2vw solid;
  margin-top: -10vh;
}
#studio .container #honour .honour__scrolller::before {
  content: "";
  position: absolute;
  top: 0.1vw;
  height: 0.2vw;
  width: 100%;
  background-color: #000;
}
#studio .container #honour .honour__scrolller marquee {
  line-height: 150%;
  font-size: 8vw;
  font-weight: 1000;
}
#studio .container #honour .honour__scrolller marquee::before {
  content: "";
  position: absolute;
  bottom: 0.1vw;
  height: 0.2vw;
  width: 100%;
  background-color: #000;
}
#studio .container .studio__we-have-our-words {
  margin-bottom: 10vw;
  margin-left: 8vw;
}
#studio .container .studio__we-have-our-words .sub-title {
  margin-bottom: 6vw;
}
#studio .container .studio__we-have-our-words__content {
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-gap: 1vw;
}
#studio .container .studio__we-have-our-words__content__box h3 {
  line-height: 200%;
  font-size: 2.2vw;
  font-weight: 1000;
}
#studio .container .studio__we-have-our-words__content__box p {
  font-weight: 200;
  opacity: 0.8;
  padding-right: 17vw;
  font-size: 1.1vw;
  line-height: 200%;
}
#studio .container .studio__we-have-our-words__content__box:first-child, #studio .container .studio__we-have-our-words__content__box:nth-child(2) {
  margin-bottom: 2vw;
}
#studio .container .studio__our-clients {
  margin-bottom: 10vw;
  margin-left: 8vw;
}
#studio .container .studio__our-clients .sub-title {
  margin-bottom: 3vw;
}
#studio .container .studio__our-clients__content {
  display: flex;
  flex-direction: row;
}
#studio .container .studio__our-clients__content a::before {
  content: "";
  position: absolute;
  background: #fff;
  width: 0vw;
  height: 0vw;
  margin: auto;
  border-radius: 50%;
  transition: 0.5s;
}
#studio .container .studio__our-clients__content a:hover::before {
  width: 15vw;
  height: 15vw;
}
#studio .container .studio__our-clients__content__client {
  position: relative;
  border: 0.1vw solid #fff;
  border-radius: 0.2vw;
  margin-right: 2vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.6s;
  width: 12vw;
  height: 4vw;
}
#studio .container .studio__our-clients__content__client:hover {
  border-radius: 0.5vw;
  border: 0.1vw solid transparent;
}
#studio .container .studio__our-clients__content__client:hover .hads path {
  fill: #1127cf;
}
#studio .container .studio__our-clients__content__client:hover .inkrement-img {
  display: none;
}
#studio .container .studio__our-clients__content__client:hover .eirene path {
  fill: #6b5e7b;
}
#studio .container .studio__our-clients__content__client:hover .nuditae path {
  fill: #632c4e;
}
#studio .container .studio__our-clients__content__client:hover .hundredapp path {
  fill: red;
}
#studio .container .studio__our-clients__content__client svg,
#studio .container .studio__our-clients__content__client img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 5;
}
#studio .container .studio__our-clients__content__client svg path,
#studio .container .studio__our-clients__content__client img path {
  transition: 0.4s;
  fill: #fff;
}

.testimonials {
  padding: 0 10vw;
  margin-bottom: 7vw;
}
.testimonials .sub-title {
  margin-bottom: 3rem;
}
.testimonials .testimonials-section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 2rem;
  padding: 5rem 0 !important;
}
.testimonials .testimonials-section .testimonials-section-information .testimonials-box {
  position: relative;
  padding: 2rem;
  border-radius: 10px;
  padding-top: 2.9rem !important;
  background-color: rgba(255, 255, 255, 0.113);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 2px outset rgba(255, 255, 255, 0.3);
  box-shadow: 0px 1px 24px -1px rgba(0, 0, 0, 0.2);
}
.testimonials .testimonials-section .testimonials-section-information .profile-box {
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  box-sizing: border-box;
}
.testimonials .testimonials-section .testimonials-section-information .profile-box .image {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -110%);
}
.testimonials .testimonials-section .testimonials-section-information .profile-box .image img {
  height: 90px;
  width: 90px;
  border-radius: 50%;
}
.testimonials .testimonials-section .testimonials-section-information .profile-box .name span {
  fill: white;
  margin-top: 1rem;
  width: 30px;
  font-weight: 600;
}
.testimonials .testimonials-section .testimonials-section-information .profile-box .name h3 {
  font-size: 1.5rem;
}
.testimonials .testimonials-section .testimonials-section-information .profile-box .name p {
  font-weight: 600;
  margin-top: 0.3rem;
}
.testimonials .testimonials-section .testimonials-section-information .testimonials-feedback {
  margin-top: 0.6rem;
}
.testimonials .testimonials-section .testimonials-section-information .testimonials-feedback p {
  line-height: 1.7;
  font-style: italic;
}

#contact {
  height: 90vh;
  background-color: black;
  color: white;
}
#contact .container {
  padding-bottom: 0;
}
#contact .container .title {
  margin-bottom: 4vw;
}
#contact .container .contact__content {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 5.556vw;
  grid-template-columns: 1fr 1fr;
}
#contact .container .contact__content__info {
  margin-left: 8vw;
}
#contact .container .contact__content__info__sub-tile {
  margin-bottom: 2vw;
  font-weight: 300;
}
#contact .container .contact__content__info__sub-tile .wanna-start {
  font-size: 3vw;
}
#contact .container .contact__content__info__sub-tile .someting {
  font-size: 3.53vw;
}
#contact .container .contact__content__info__sub-tile .great {
  font-weight: 1000;
  font-size: 5.3vw;
  line-height: 100%;
}
#contact .container .contact__content__info__paragraph {
  font-size: 1.1vw;
  margin-bottom: 2vw;
  padding-right: 10vw;
}
#contact .container .contact__content__info .contact__email a {
  position: relative;
  z-index: 2;
  border-bottom: solid 0.2vw white;
  text-decoration: none;
  display: inline-block;
  color: white;
  font-size: 1.6vw;
  transition: 0.5s ease;
}
#contact .container .contact__content__info .contact__email a::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 0;
  bottom: 0;
  background: white;
  transition: 0.5s ease;
}
#contact .container .contact__content__info .contact__email a:hover {
  color: black;
}
#contact .container .contact__content__info .contact__email a:hover::before {
  height: 100%;
}
#contact .container .contact__content__form {
  margin-top: 0.8vw;
}
#contact .container .contact__content__form input[type=text],
#contact .container .contact__content__form input[type=email],
#contact .container .contact__content__form textarea {
  padding: 1.2vw 0.7vw;
  height: 2vw;
  width: 80%;
  display: block;
  margin-bottom: 1.5vw;
  font-size: 1.2vw;
  font-weight: 200;
}
#contact .container .contact__content__form textarea {
  height: 8vw;
  resize: none;
}
#contact .container .contact__content__form .primary-btn {
  margin-left: 0;
  display: inline;
  border: none;
  background: none;
}

#footer {
  background-color: black;
  height: 10vh;
  width: 100%;
  padding: 1vw 3vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#footer p {
  font-size: 1vw;
  font-weight: 300;
  letter-spacing: 0px;
  opacity: 0.8;
  color: white;
}

#social-contact {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 0.5vw;
}
#social-contact .social-link {
  display: inline-block;
  width: 3vw;
  height: 3vw;
  border-radius: 30%;
  color: white;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#social-contact .social-link i {
  font-size: 1.3vw;
  transition: 0.2s linear;
}
#social-contact .social-link::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: white;
  transform: rotate(45deg);
  left: -110%;
  top: 90%;
}
#social-contact .social-link:hover i {
  transform: scale(1.3);
  color: black;
}
#social-contact .social-link:hover::before {
  animation: sakarIn 0.7s 1;
  top: -10%;
  left: -10%;
}
@keyframes sakarIn {
  0% {
    left: -110%;
    top: 90%;
  }
  50% {
    left: 10%;
    top: -30%;
  }
  100% {
    top: -10%;
    left: -10%;
  }
}/*# sourceMappingURL=style.css.map */