@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&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
:root {
  --main-padding: 0.8rem;
  --body-clr: white;
  --second-clr: black;
  --third-clr: whitesmoke;
  --text-clr: black;
  --contact-clr: black;
  --circle: 50%;
  --main-font: "Ubuntu", sans-serif;
  --font-size: 1rem;
  --lh-body: 1.6;
  --space-xn: 0.2rem;
  --space-xs: 0.4rem;
  --space-xss: 0.9rem;
  --space-s: 1rem;
  --space-smd: 1.2rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --blur: 30px;
  --br-clr1: rgba(255, 255, 255, 0.3);
  --gap-logo: 0.4rem;
  --margin-nav: clamp(0.2rem, 1vw + 0.2rem, 0.4rem);
  --thumb-clr: rgba(99, 99, 99, 0.8);
  --thumb-hover: #555555da;
  --indicator-clr: rgba(225, 255, 255, 0.233);
  --arrows-clr: rgba(225, 255, 255, 0.233);
}

.darkmode {
  --body-clr: black;
  --third-clr: rgb(40, 42, 43);
  --text-clr: white;
  --contact-clr: whitesmoke;
  --thumb-clr: rgba(209, 209, 209);
  --thumb-hover: rgba(255, 255, 255);
  --indicator-clr: rgba(0, 0, 0, 0.363);
  --arrows-clr: rgba(0, 0, 0, 0.2);
}

.product.showonscroll,
.Ema.showonscroll,
.latest.showonscroll,
.infomobile.showonscroll,
.footer.showonscroll {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.product,
.Ema,
.latest,
.footer, .infomobile {
  opacity: 0 !important;
  transform: translateY(100px) !important;
  transition: opacity 0.8s ease-out, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

@keyframes loopText {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-20px);
    opacity: 0;
  }
  51% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes grow {
  0% {
    transform: scaleY(0);
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}
@keyframes customFadeIn {
  0% {
    color: rgba(255, 255, 255, 0.37);
  }
  100% {
    color: #ffffff;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  height: 100%;
  width: 100%;
  color: var(--text-clr);
  background-color: var(--body-clr);
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

main {
  min-height: 100vh;
  height: auto;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}
main::-webkit-scrollbar {
  height: auto;
}
main::-webkit-scrollbar-track {
  background: var(--third-clr);
}
main::-webkit-scrollbar-thumb {
  background-color: var(--thumb-clr);
  border-radius: 100px;
  border: 3px solid var(--third-clr);
}
main::-webkit-scrollbar-thumb:hover {
  background: var(--thumb-hover);
}
main {
  padding: var(--main-padding);
  position: relative;
  background-color: var(--body-clr);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(6, auto);
  grid-template-areas: "header" "section" "smartphone" "first-duo" "infobox" "footer";
  z-index: 0;
  row-gap: 1rem;
}

@media (max-width: 768px) {
  main::-webkit-scrollbar {
    display: none;
  }
}
@media (min-width: 1200px) {
  main {
    height: 100vh;
    width: 100%;
    padding: 12px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: max-content max-content max-content max-content max-content;
    grid-template-areas: "header section" "header smartphone" "header slider" "header infobox" "header footer";
    overflow-y: scroll;
    z-index: 1;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }
}
nav {
  background-color: var(--body-clr);
  position: fixed;
  top: 0;
  left: 0;
  margin-left: var(--margin-nav);
  height: 45px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.2rem, 1vw, 1.5rem);
  padding: var(--space-xs);
  background-color: var(--body-clr);
  transform-origin: top;
  border-bottom-right-radius: 20px;
  z-index: 1000;
  opacity: 0;
  animation: grow 1s cubic-bezier(0.7, 0, 0.3, 1) forwards;
  will-change: transform;
  padding: 1rem;
}
nav .logo-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  overflow: hidden;
}
nav .logo-text .logo {
  color: #0E1011;
  transition: color 0.3s ease;
}
nav .logo-text span {
  padding: 5px;
  height: auto;
  will-change: transform;
}
nav .logo-text span:hover a {
  animation: loopText 0.5s ease-in-out;
}
nav .logo-text span a {
  text-decoration: none;
  color: var(--text-clr);
  font-size: clamp(0.3rem, 1vw + 0.9rem, 0.8rem);
  font-weight: 500;
  text-transform: lowercase;
  display: inline-block;
}
nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.2rem, 0.8vw, 1.3rem);
}
nav ul li {
  list-style: none;
  padding: 5px;
  height: auto;
  overflow: hidden;
  will-change: transform;
}
nav ul li:hover a {
  animation: loopText 0.5s ease-in-out;
}
nav ul li a {
  text-decoration: none;
  display: inline-block;
  color: var(--text-clr);
  font-size: clamp(0.3rem, 1vw + 0.9rem, 0.8rem);
  font-weight: 500;
}
nav .modes {
  padding: 0rem 0.2rem;
  border-radius: 0.8rem;
  width: 28px;
  height: 20px;
  background-color: rgb(236, 236, 236);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
}
nav .modes i {
  font-size: 0.7rem;
  color: black;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
  nav::after {
    content: "";
    position: absolute;
    top: 45%;
    left: 100%;
    background-color: transparent;
    height: 5px;
    width: 5px;
    border-top-left-radius: 1rem;
    box-shadow: -1.3px -1px 0 0 var(--body-clr);
  }
  nav::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 1%;
    height: 5px;
    width: 5px;
    border-top-left-radius: 1rem;
    background-color: transparent;
    box-shadow: -1.5px -1px 0 0 var(--body-clr);
  }
}
@media (max-width: 767px) {
  nav::after {
    content: "";
    position: absolute;
    top: 45%;
    left: 100%;
    background-color: transparent;
    height: 5px;
    width: 5px;
    border-top-left-radius: 1rem;
    box-shadow: -1.3px -1px 0 0 var(--body-clr);
  }
  nav::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 4.5%;
    height: 5px;
    width: 5px;
    border-top-left-radius: 1rem;
    background-color: transparent;
    box-shadow: -1.5px -1px 0 0 var(--body-clr);
  }
  nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.2rem, 0.8vw, 1.3rem);
  }
  nav ul li {
    display: none;
    list-style: none;
    padding: 5px;
    height: auto;
    overflow: hidden;
    will-change: transform;
  }
}
@media (min-width: 1200px) {
  nav::after {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    background-color: transparent;
    top: 25.6%;
    left: 100%;
    border-top-left-radius: 1rem;
    box-shadow: -4px -6px 0 0 var(--body-clr);
  }
  nav::before {
    content: "";
    position: absolute;
    height: 25px;
    width: 25px;
    background: transparent;
    left: 1.1%;
    border-top-left-radius: 1rem;
    top: 100%;
    box-shadow: -7px -10px 0 0 var(--body-clr);
  }
  nav .modes {
    padding: 0rem 0.2rem;
    border-radius: 0.8rem;
    width: 30px;
    height: 20px;
    background-color: rgb(236, 236, 236);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
  }
  nav .modes i {
    font-size: 0.8rem;
    color: black;
  }
  .menu-toggle {
    display: none;
  }
  .innerradius {
    display: none;
  }
}
@media (min-width: 2500px) {
  nav {
    height: clamp(2rem, 4vh, 3rem);
  }
  nav .logo-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  nav .logo-text img {
    height: 1.6rem;
    width: 1.6rem;
  }
  nav .logo-text span {
    padding: 5px;
  }
  nav .logo-text span a {
    font-size: clamp(0.8rem, 1.3vh, 2rem);
  }
  nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.8rem, 1vw, 1.5rem);
  }
  nav ul li a {
    font-size: clamp(0.3rem, 1.3vh, 2.5rem);
  }
}
header {
  grid-area: header;
  height: 80%;
  width: 100%;
}
header .img {
  height: 50vh;
  width: 100%;
  position: relative;
}
header .innerradius {
  position: fixed;
  height: 20px;
  width: 100%;
  background-color: var(--body-clr);
  top: 0;
  left: 0;
  z-index: 998;
}
header .menu-toggle {
  position: fixed;
  transform-origin: top;
  will-change: transform;
  opacity: 0;
  animation: grow 1s cubic-bezier(0.7, 0, 0.3, 1) forwards;
  top: 0;
  right: 1%;
  z-index: 1001;
  margin-right: clamp(0.2rem, 1vw, 0.2rem);
  padding: 0.9rem;
  text-align: center;
  background-color: var(--body-clr);
  color: var(--text-clr);
  border-bottom-left-radius: 1rem;
  font-weight: 500;
  text-transform: capitalize;
  font-size: clamp(0.5rem, 2vh, 0.8rem);
}
header .menu-toggle::after {
  content: "";
  position: absolute;
  top: 38%;
  left: -13%;
  height: 10px;
  width: 10px;
  background-color: transparent;
  border-top-right-radius: 1.1rem;
  box-shadow: 2px -4px 0 0 var(--body-clr);
}
header .menu-toggle::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0%;
  height: 6px;
  width: 6px;
  background-color: transparent;
  border-top-right-radius: 1rem;
  box-shadow: 1px -3px 0 0 var(--body-clr);
}
header .slidearrows {
  position: absolute;
  top: 50%;
  width: 100%;
  height: auto;
  z-index: 4;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem;
  transform: translateY(-50%);
  cursor: pointer;
}
header .slidearrows i {
  display: inline-block;
  background-color: var(--arrows-clr);
  color: var(--contact-clr);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 0.8rem;
  font-size: clamp(0.3rem, 2vh, 3rem);
  border-radius: 0.6rem;
}
header .slidearrows i:active {
  transform: scale(0.9);
}
header .sliderimage {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}
header .hero-image {
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 1rem;
  transition: transform 0.6s ease-in-out;
}
header .imageindicators {
  position: absolute;
  height: auto;
  transform: translateX(-50%);
  left: 50%;
  bottom: 5%;
  z-index: 4;
  background-color: var(--indicator-clr);
  padding: 0.5rem;
  border-radius: 1rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  gap: 0.3rem;
  cursor: pointer;
}
header .imageindicators i {
  display: inline-block;
  letter-spacing: 1.2;
  font-size: clamp(0.2rem, 1.5vh, 0.9rem);
  color: rgba(255, 255, 255, 0.37);
}
header .imageindicators .whitedot {
  animation: customFadeIn 0.4s ease-in forwards;
  color: rgb(255, 255, 255);
}
header .active {
  z-index: 2;
}
header .slideforward {
  transform: translateX(-110%);
  transition: transform 0.8s ease-in-out;
  z-index: 3;
}
header .slidebackward {
  transform: translateX(110%);
  transition: transform 0.8s ease-in-out;
  z-index: 3;
}
header .next {
  z-index: 1;
}
header .featured {
  z-index: 3;
  text-transform: capitalize;
  font-weight: 800;
  position: absolute;
  bottom: 0%;
  right: 0%;
  padding: clamp(0.2rem, 1vw + 0.1rem, 0.5rem);
  background-color: var(--body-clr);
  border-top-left-radius: 1rem;
}
header .featured span {
  font-size: clamp(0.7rem, 2vw + 0.4rem, 1.1rem);
}
header .featured::before {
  content: "";
  position: absolute;
  height: 10px;
  width: 5px;
  background-color: transparent;
  border-bottom-right-radius: 4rem;
  bottom: 0%;
  right: 100%;
  box-shadow: 1px 1.4px 0 0 var(--body-clr);
}
header .featured::after {
  content: "";
  position: absolute;
  height: 6px;
  width: 6px;
  background-color: transparent;
  border-bottom-right-radius: 1rem;
  top: -14%;
  right: -1%;
  transform: rotate(-22deg);
  box-shadow: 1px 2px 0 0 var(--body-clr);
}
header .mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100dvh;
  width: 100%;
  background-color: var(--body-clr);
  z-index: 1000;
  overscroll-behavior: none;
  touch-action: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  transform-origin: top right;
  transform: scale(0);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
header .mobile-menu-overlay.activeNav {
  transform: scale(1);
  opacity: 1;
}
header .mobile-menu-overlay .containerMenu {
  height: 80vh;
  width: 80%;
  background-color: var(--body-clr);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50%;
  flex-direction: column;
}
header .mobile-menu-overlay .containerMenu .overview-nav {
  color: var(--text-clr);
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-start;
  width: 100%;
}
header .mobile-menu-overlay .containerMenu .overview-nav .emaImage {
  height: 57px;
  width: 57px;
  border-radius: var(--circle);
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
}
header .mobile-menu-overlay .containerMenu .overview-nav .sideview h2 {
  font-size: var(--space-smd);
}
header .mobile-menu-overlay .containerMenu .overview-nav .sideview h3 {
  font-size: var(--space-xss);
  opacity: 0.7;
}
header .mobile-menu-overlay .containerMenu .mobile-links {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-direction: column;
}
header .mobile-menu-overlay .containerMenu .mobile-links .nav-blanks {
  background-color: var(--third-clr);
  height: 100%;
  width: 100%;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}
header .mobile-menu-overlay .containerMenu .mobile-links .nav-blanks i {
  display: inline-block;
  transform: rotate(45deg);
}
header .mobile-menu-overlay .containerMenu .mobile-links .nav-blanks:active {
  transform: scale(1.02);
  background-color: var(--text-clr);
  color: var(--body-clr);
}

@media (min-width: 768px) {
  header {
    height: 100%;
  }
  header .img {
    height: 65vh;
  }
  header .hero-image {
    border-radius: 1.5rem;
  }
  header .sliderimage {
    border-radius: 1rem;
    overflow: hidden;
  }
}
@media (min-width: 1200px) {
  header {
    grid-area: header;
    position: sticky;
    top: 0%;
    height: calc(100vh - 24px);
    width: 100%;
    z-index: 2;
  }
  header .mobile-menu-overlay {
    display: none;
  }
  header .img {
    height: 100%;
    width: 100%;
    position: relative;
  }
  header .img .hero-image {
    height: 100%;
    border-radius: 0.8rem;
    width: 100%;
  }
}
.Ema {
  grid-area: section;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: auto;
  width: 100%;
  position: relative;
}
.Ema .infobox {
  display: none;
}
.Ema .brandbox {
  color: var(--text-clr);
  background-color: var(--third-clr);
  padding: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  border-radius: 1rem;
  flex-direction: column;
}
.Ema .brandbox p {
  line-height: var(--lh-body);
}
.Ema .brandbox .overview {
  color: var(--text-clr);
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-start;
  width: 100%;
}
.Ema .brandbox .overview .ema-img {
  height: 57px;
  width: 57px;
  border-radius: var(--circle);
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
}
.Ema .brandbox .overview .sideview h2 {
  font-size: var(--space-smd);
}
.Ema .brandbox .overview .sideview h3 {
  font-size: var(--space-xss);
  opacity: 0.7;
}

@media (min-width: 768px) {
  .Ema .upleftrow {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }
  .Ema .upleftrow .brandbox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20%;
    width: 50%;
    height: 100%;
  }
  .Ema .upleftrow .brandbox p {
    line-height: 1.8;
  }
  .Ema .upleftrow .infobox {
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.8rem;
    flex: 1;
    flex-direction: column;
  }
  .Ema .upleftrow .infobox .info {
    background-color: var(--third-clr);
    padding: 1.4rem;
    margin-right: 2px;
    height: 60%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 1.1rem;
  }
  .Ema .upleftrow .infobox .info h3 {
    font-size: clamp(0.2rem, 2vh + 0.2rem, 1.1rem);
  }
  .Ema .upleftrow .infobox .info i {
    display: inline-block;
    font-size: clamp(0.2rem, 2vh + 0.1rem, 1.1rem);
    transition: transform 0.4s ease-in-out;
    pointer-events: none;
  }
  .Ema .upleftrow .infobox .info:nth-last-child(1) {
    background-color: var(--contact-clr);
    color: var(--body-clr);
  }
  .Ema .upleftrow .infobox .info .arrow {
    display: none;
  }
}
@media (min-width: 1200px) {
  .Ema {
    height: auto;
    grid-area: section;
  }
  .Ema .upleftrow {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
  .Ema .upleftrow .brandbox {
    flex: 1.5;
    height: 100%;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40%;
    border-radius: 0.4rem;
  }
  .Ema .upleftrow .infobox {
    flex: 0.9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
    border-radius: 0.8rem;
    color: black;
    gap: 0.4rem;
  }
  .Ema .upleftrow .infobox .info {
    cursor: pointer;
    background-color: var(--third-clr);
    color: var(--text-clr);
    padding: 0.7rem;
    margin-right: 2px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0.8rem;
  }
  .Ema .upleftrow .infobox .info h3 {
    font-size: clamp(0.2rem, 1.5vw + 0.1rem, 1rem);
  }
  .Ema .upleftrow .infobox .info .iconwrapper {
    position: relative;
    overflow: hidden;
    height: 2rem;
    width: 2rem;
    padding: 0.2rem 0rem;
  }
  .Ema .upleftrow .infobox .info i {
    display: inline-block;
    position: absolute;
    font-size: clamp(0.2rem, 1.5vw + 0.1rem, 1rem);
    pointer-events: none;
    transition: all 0.3s ease-in-out;
  }
  .Ema .upleftrow .infobox .info .logos {
    transform: translateY(6px);
  }
  .Ema .upleftrow .infobox .info .arrow {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
  }
  .Ema .upleftrow .infobox .info:hover .logos {
    transform: translateY(-100%);
    opacity: 0;
  }
  .Ema .upleftrow .infobox .info:hover .arrow {
    transform: translateY(6px);
    opacity: 1;
  }
  .Ema .upleftrow .infobox .info:nth-last-child(1) {
    background-color: var(--contact-clr);
    color: var(--body-clr);
  }
}
.latest {
  grid-area: smartphone;
  height: auto;
  width: 100%;
}
.latest .smartphoneinfo {
  padding: 1.5rem 1.1rem;
  border-radius: 16px;
  background-color: var(--third-clr);
  color: var(--text-clr);
}
.latest .smartphoneinfo .latestwork {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40%;
}
.latest .smartphoneinfo .latestwork .view {
  position: relative;
  transition: all 0.4s ease-in-out;
}
.latest .smartphoneinfo .latestwork .view::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: var(--text-clr);
  transition: all 0.4s ease-in-out;
}
.latest .smartphoneinfo .latestwork .view:hover::after {
  width: 25%;
}
.latest .smartphoneinfo .latestwork .downclick {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.latest .smartphoneinfo .latestwork .downclick h3 {
  text-transform: capitalize;
}
.latest .smartphoneinfo .latestwork .downclick i {
  transition: all 0.4s ease-in-out;
}

@media (max-width: 395px) {
  .latest .smartphoneinfo .latestwork {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30%;
  }
  .latest .smartphoneinfo .latestwork .downclick {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  .latest .smartphoneinfo .latestwork .downclick h3 {
    font-size: clamp(0.8rem, 3vw + 0.3rem, 1.2rem);
  }
  .latest .smartphoneinfo .latestwork .downclick i {
    font-size: 1rem;
  }
  .latest .smartphoneinfo .latestwork .view {
    font-size: clamp(0.8rem, 3vw + 0.3rem, 1.2rem);
  }
}
@media (min-width: 768px) {
  .latest .smartphoneinfo .latestwork {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60%;
  }
}
@media (min-width: 1200px) {
  .latest {
    margin-top: -0.3rem;
    grid-area: smartphone;
    height: 100%;
    border-radius: 1rem;
    padding: 1rem;
    background-color: var(--third-clr);
  }
  .latest .smartphoneinfo {
    height: 100%;
    width: 100%;
    padding: var(--space-xn);
  }
  .latest .smartphoneinfo .latestwork {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 67%;
  }
  .latest .smartphoneinfo .latestwork .downclick {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .latest .smartphoneinfo .latestwork .downclick h3 {
    font-size: clamp(0.8rem, 2vw, 1rem);
  }
  .latest .smartphoneinfo .latestwork .downclick i {
    font-size: clamp(0.8rem, 2vw, 1rem);
  }
  .latest .smartphoneinfo .latestwork .view {
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    cursor: pointer;
  }
}
.duo-1 {
  margin-top: 2rem;
  grid-area: first-duo;
  min-height: 100vh;
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
}
.duo-1 .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.duo-1 .container .duo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-direction: column;
}
.duo-1 .container .product {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-direction: column;
  height: 50%;
  width: 100%;
  position: relative;
}
.duo-1 .container .product img {
  height: 60vh;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 1rem;
}
.duo-1 .container .product .solo-info {
  z-index: 2;
  position: absolute;
  top: 0%;
  left: 0%;
  border-bottom-right-radius: 1rem;
  text-transform: capitalize;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 0.5rem;
  background-color: var(--body-clr);
}
.duo-1 .container .product .solo-info i {
  display: none;
}
.duo-1 .container .product .solo-info span {
  font-size: clamp(0.4rem, 1.5vh, 1.3rem);
  font-weight: 400;
  color: var(--text-clr);
}
.duo-1 .container .product .solo-info span::after {
  content: "";
  height: 30px;
  width: 30px;
  top: 100%;
  left: 0%;
  border-top-left-radius: 1.2rem;
  position: absolute;
  box-shadow: -6px -5px 0 0 var(--body-clr);
  background-color: transparent;
}
.duo-1 .container .product .solo-info span::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 99.8%;
  height: 10px;
  width: 15px;
  background-color: transparent;
  border-top-left-radius: 0.6rem;
  box-shadow: -5px -2px 0 0 var(--body-clr);
}

@media (min-width: 768px) {
  .duo-1 .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    height: 100%;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .duo-1 .container .duo {
    flex-direction: row;
  }
  .duo-1 .container .product img {
    height: 45vh;
  }
}
@media (min-width: 490px) {
  .duo-1 .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    height: 100%;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .duo-1 .container .duo {
    flex-direction: row;
  }
  .duo-1 .container .product img {
    height: 45vh;
  }
}
@media (min-width: 1200px) {
  .duo-1 {
    margin-top: -0.4rem;
    grid-area: slider;
    height: 100%;
    width: 100%;
    padding: 0.8rem 0.3rem;
  }
  .duo-1 .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    height: 100%;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .duo-1 .container .duo {
    display: flex;
    gap: 0.8rem;
    flex-direction: row;
  }
  .duo-1 .container .duo .product {
    cursor: pointer;
    z-index: 0;
    transform: translateZ(0);
    backface-visibility: hidden;
  }
  .duo-1 .container .duo .product .glass-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 0.8rem;
    pointer-events: none;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    transition: backdrop-filter 0.5s ease;
  }
  .duo-1 .container .duo .product .gallery-image {
    height: 65vh;
    will-change: transform;
    transition: all 0.4s ease-in;
  }
  .duo-1 .container .duo .product .solo-info {
    z-index: 2;
    position: absolute;
    top: 0%;
    left: 0%;
    border-bottom-right-radius: 1rem;
    text-transform: capitalize;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 0.5rem;
    background-color: var(--body-clr);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
  .duo-1 .container .duo .product .solo-info i {
    display: inline-block;
    width: 0%;
    height: 0%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.4s ease-in;
    font-size: clamp(0.4rem, 1.5vh, 1.3rem);
  }
  .duo-1 .container .duo .product img {
    z-index: 0;
    height: 60vh;
    transition: filter 0.3s ease;
  }
  .duo-1 .container .duo .product.is-hovered .glass-layer {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }
  .duo-1 .container .duo .product.is-hovered .solo-info i {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
    height: 100%;
    width: 100%;
  }
}
.infomobile {
  grid-area: infobox;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-direction: column;
  padding: var(--space-xss);
}
.infomobile .info {
  background-color: var(--third-clr);
  padding: 1.4rem;
  margin-right: 2px;
  height: 60%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 1.1rem;
}
.infomobile .info h3 {
  font-size: clamp(0.2rem, 2vh + 0.2rem, 1.1rem);
}
.infomobile .info i {
  display: inline-block;
  font-size: clamp(0.2rem, 2vh + 0.1rem, 1.1rem);
  transition: transform 0.4s ease-in-out;
  pointer-events: none;
}
.infomobile .info:nth-last-child(1) {
  background-color: var(--contact-clr);
  color: var(--body-clr);
}
.infomobile .info .iconwrapper .arrow {
  display: inline-block;
}

@media (max-width: 767px) {
  .infomobile .info .iconwrapper .arrow {
    display: none;
  }
}
@media (min-width: 768px) {
  .infomobile {
    display: none;
  }
}
@media (min-width: 1200px) {
  .infomobile {
    margin-top: -0.3rem;
    grid-area: infobox;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
    height: auto;
    padding: 0rem 0.4rem;
    overflow: visible;
  }
  .infomobile .info {
    margin: 0;
    height: auto;
    padding: 1.6rem;
    border-radius: 0.8rem;
    width: calc(50% - 0.25rem);
  }
  .infomobile .info .iconwrapper {
    position: relative;
    overflow: hidden;
    height: 2rem;
    width: 2rem;
    padding: 0.2rem 0rem;
  }
  .infomobile .info i {
    display: inline-block;
    position: absolute;
    font-size: clamp(0.2rem, 1.5vw + 0.1rem, 1rem);
    pointer-events: none;
    transition: all 0.3s ease-in-out;
  }
  .infomobile .info .logos {
    transform: translateY(6px);
  }
  .infomobile .info .arrow {
    display: block;
    transform: translateY(100%);
    opacity: 0;
  }
  .infomobile .info:hover .logos {
    transform: translateY(-100%);
    opacity: 0;
  }
  .infomobile .info:hover .arrow {
    transform: translateY(6px);
    opacity: 1;
  }
  .infomobile .info:nth-last-child(1) {
    background-color: var(--contact-clr);
    color: var(--body-clr);
    width: 100%;
  }
}
.footer {
  grid-area: footer;
  height: auto;
  width: 100%;
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: repeat(3, auto);
  grid-template-areas: "row1" "row2" "row3";
  padding: var(--main-padding);
  background-color: var(--body-clr);
}
.footer .aboutandmore {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  grid-area: row1;
  height: 100%;
  width: 100%;
  border-top-right-radius: 2rem;
  border-top-left-radius: 2rem;
  background-color: var(--text-clr);
  padding: 4rem;
  gap: 2rem;
}
.footer .aboutandmore .first-half {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}
.footer .aboutandmore .first-half .ema-img {
  height: 57px;
  width: 57px;
  border-radius: var(--circle);
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
}
.footer .aboutandmore .first-half .sideview {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  color: var(--body-clr);
}
.footer .aboutandmore .first-half .sideview h2 {
  font-size: var(--space-smd);
}
.footer .aboutandmore .first-half .sideview h3 {
  font-size: var(--space-xss);
  opacity: 0.7;
}
.footer .aboutandmore .second-half {
  padding: var(--space-xs);
  background-color: var(--body-clr);
  padding: 0.5rem 0.7rem;
  border-radius: 0.5rem;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}
.footer .aboutandmore .second-half a {
  display: inline-block;
  text-decoration: none;
  color: var(--text-clr);
}
.footer .aboutandmore .second-half a span {
  display: inline-block;
  font-size: 1rem;
  font-weight: 400;
}
.footer .aboutandmore .second-half:hover {
  transform: translateY(-3px);
}
.footer .all {
  grid-area: row2;
  height: auto;
  width: 100%;
  color: var(--body-clr);
  background-color: var(--text-clr);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-direction: column;
  margin-top: -1px;
}
.footer .all .pages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-direction: column;
  height: 100%;
  width: 100%;
  color: var(--body-clr);
}
.footer .all .pages h3 {
  font-size: 1rem;
}
.footer .all .pages .f-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-direction: column;
}
.footer .all .pages .f-nav ul li {
  list-style: none;
}
.footer .all .pages .f-nav ul li a {
  font-size: 0.9rem;
  color: var(--body-clr);
  text-decoration: none;
}
.footer .all .CMS {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-direction: column;
  height: 100%;
  width: 100%;
  color: var(--body-clr);
}
.footer .all .CMS h3 {
  font-size: 1.1rem;
}
.footer .all .CMS .allcms ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-direction: column;
}
.footer .all .CMS .allcms ul li {
  list-style: none;
}
.footer .all .utility {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-direction: column;
  height: 100%;
  width: 100%;
  color: var(--body-clr);
}
.footer .all .utility h3 {
  font-size: 1rem;
}
.footer .all .utility .utilities ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-direction: column;
}
.footer .all .utility .utilities ul li {
  list-style: none;
}
.footer .end {
  grid-area: row3;
  height: 100%;
  width: 100%;
  background-color: var(--text-clr);
  margin-top: -1px;
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-direction: column;
  color: var(--body-clr);
  padding: var(--main-padding);
}
.footer .end h3 {
  font-size: 1.2rem;
  margin-top: 1rem;
}
.footer .end .contacts {
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.footer .end .contacts a {
  color: var(--body-clr);
  font-size: 1.2rem;
  text-decoration: none;
}

@media (min-width: 768px) {
  .footer {
    grid-area: footer;
  }
  .footer .aboutandmore {
    flex-direction: row;
    justify-content: space-evenly;
  }
  .footer .aboutandmore .first-half {
    width: 50%;
    flex-direction: row;
    margin-right: 2rem;
    justify-content: flex-start;
  }
  .footer .aboutandmore .first-half .ema-img {
    height: 65px;
    width: 65px;
    border-radius: var(--circle);
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: top;
       object-position: top;
  }
  .footer .all {
    flex-direction: row;
    padding: var(--space-md);
  }
  .footer .end {
    padding: 3rem;
  }
  .footer .end h3 {
    font-size: 1.5rem;
  }
  .footer .end .contacts {
    margin-top: 1.4rem;
  }
  .footer .end .contacts a {
    font-size: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .footer {
    grid-area: footer;
    height: auto;
    width: 100%;
  }
  .footer .aboutandmore {
    flex-direction: row;
    justify-content: space-evenly;
  }
  .footer .aboutandmore .first-half {
    width: 50%;
    flex-direction: row;
    margin-right: 2rem;
    justify-content: flex-start;
  }
  .footer .aboutandmore .first-half .ema-img {
    height: 65px;
    width: 65px;
    border-radius: var(--circle);
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: top;
       object-position: top;
  }
  .footer .all {
    flex-direction: row;
  }
  .footer .end {
    padding: 3rem;
  }
  .footer .end h3 {
    font-size: 1.5rem;
  }
  .footer .end .contacts {
    margin-top: 1.4rem;
  }
  .footer .end .contacts a {
    font-size: 1.5rem;
  }
}
.work-main {
  min-height: 100vh;
  height: auto;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding: var(--main-padding);
  position: relative;
  background-color: var(--body-clr);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, auto);
  grid-template-areas: "header" "journal" "scroll" "infobox";
  z-index: 0;
  row-gap: 1rem;
}

.work-header {
  grid-area: header;
  height: 70%;
  width: 100%;
}
.work-header .container {
  height: 46vh;
  width: 100%;
  position: relative;
}
.work-header .main-image {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 16px;
  position: relative;
}
.work-header .text-edit {
  position: absolute;
  bottom: 4%;
  width: 100%;
  border-radius: 0.8rem;
  height: auto;
  padding: 0rem 1rem;
}
.work-header .text-edit .paragraph {
  background-color: white;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
}
.work-header .text-edit .paragraph span {
  display: none;
}
.work-header .text-edit .paragraph p {
  font-size: clamp(0.7rem, 2vw + 0.3rem, 1rem);
  text-transform: capitalize;
  font-weight: 400;
  line-height: 1.5;
}
.work-header .text-edit .paragraph a {
  display: none;
}

.journal {
  grid-area: journal;
  height: auto;
  width: 100%;
  background-color: var(--third-clr);
  border-radius: 1rem;
  padding: 2rem;
}
.journal .three-columns {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 2rem;
}
.journal .three-columns h1 {
  font-size: clamp(1rem, 3vh + 0.5rem, 3rem);
  font-weight: 400;
}
.journal .three-columns p {
  font-size: clamp(0.8rem, 2vh + 0.3rem, 1.2rem);
  line-height: 1.6;
  font-weight: 300;
}
.journal .three-columns .button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background-color: var(--body-clr);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 0.5rem;
  padding: 0.5rem;
}
.journal .three-columns .button a {
  color: var(--second-clr);
  text-decoration: none;
  font-weight: 400;
  font-size: clamp(0.5rem, 2vh + 0.3rem, 0.8rem);
}
.journal .three-columns .button i {
  color: black;
  font-size: clamp(0.6rem, 2vh, 1.2rem);
}

.scroll {
  grid-area: scroll;
  height: auto;
  width: 100%;
}
.scroll .container-scroll {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-direction: column;
  flex-wrap: wrap;
}
.scroll .container-scroll .slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-direction: column;
  height: auto;
  width: 100%;
}
.scroll .container-scroll .slider .infoandpic {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.scroll .container-scroll .slider .infoandpic img {
  height: 60vh;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 1rem;
}
.scroll .container-scroll .slider .infoandpic .inside-info {
  height: auto;
  position: absolute;
  bottom: 4%;
  width: 100%;
  border-radius: 0.5rem;
  padding: 0rem 1rem;
}
.scroll .container-scroll .slider .infoandpic .inside-info p {
  font-size: clamp(0.8rem, 2vw + 0.3rem, 1rem);
  text-transform: capitalize;
  font-weight: 400;
  line-height: 1.4;
  background-color: white;
  border-radius: 0.8rem;
  padding: 1rem;
}/*# sourceMappingURL=style.css.map */