@font-face {
  font-family: "Open Sans";
  src: url("../font/opensans400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("../font/opensans500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("../font/opensans600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("../font/opensans700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
:root {
  /* Brand */
  --color-brand-primary: #593ecf;
  --color-brand-primarys: #ff07ff;
  --color-brand-secondary: #595a84;

  /* Status */
  --color-success: #16a34a;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;

  /* Text */
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-inverse: #ffffff;

  /* Surfaces */
  --surface-base: #f2f1fd;
  --surface-muted: #e1dffe;
  --surface-card: #d7d6fa;
  --surface-elevated: #ffffff;

  /* Borders */
  --border-default: rgba(15,23,42,0.12);
  --border-strong: rgba(15,23,42,0.18);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15,23,42,0.04);
  --shadow-md: 0 4px 10px rgba(15,23,42,0.08);
  --shadow-lg: 0 10px 30px rgba(15,23,42,0.12);

  /* Radius */
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;

  /* Spacing */
  --space-2xs: 4px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-xxl: 100px;

  /* States */
  --focus-ring: 0 0 0 4px rgba(89,62,207,0.20);
  --overlay: rgba(15,23,42,0.45);

  /* Layout (optional but pro) */
  --container: 1200px;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Open Sans";
  transition: .3s;
  color: var(--color-brand-secondary);
}
body{
  background-color: var(--surface-base);
}
/* navbar */
header {
  width: 100%;
  height: 60px;
}
nav {
  position: fixed;
  width: 100%;
  background-color: var(--surface-base);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--space-lg);
  z-index: 999;
}
.nav__menu {
  display: none;
  width: 15px;
  height: 12px;
  position: relative;
  z-index: 1000;
  cursor: pointer;
}
.nav__menu span {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--color-brand-primary);
  left: 0;
}
.nav__menu span:first-child{
  top: 0;
}
.nav__menu span:nth-child(2){
  top: 50%;
  transform: translateY(-50%);
  width: 70%;
}
.nav__menu span:last-child{
  bottom: 0;
}
.menu-active span:first-child {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.menu-active span:last-child {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.menu-active span:nth-child(2) {
  display: none;
}
nav .logo {
  /* color: var(--color-brand-primary);
  font-size: clamp(1.25rem, 2.1vw, 2.5rem);
  font-weight: 700;
  background: linear-gradient(90deg,#ef00ef 0%,#593ecf 50%,#ef00ef 100%);
  background-size: 300% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: textcolors 6s linear infinite; */
  padding: 10px var(--space-2xs);
  z-index: 1000;
}
nav .logo img {
  width: 50px;
  height: auto;
  
}
nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px var(--space-2xs);
}
nav ul li {
  list-style: none;
  margin-left: var(--space-xl);
}
nav ul li a {
  display: block;
  text-decoration: none;
  color: var(--color-brand-secondary);
  font-weight: 600;
  text-transform: capitalize;
  font-size: clamp(0.9rem, 1.2vw, 1.7rem);
  text-wrap: nowrap;
}
nav ul li a:hover {
  color: var(--color-brand-primary);
}
nav ul li a.project{
  background-color: var(--color-brand-primary);
  color: var(--text-inverse);
  border-radius: var(--radius-sm);
  padding: 12px var(--space-sm);
  border: 2px solid var(--color-brand-primary);
}
nav ul li a.project:hover {
  background-color: transparent;
  color: var(--color-brand-primary);
}

/* Sections  */
.hero {
  min-height: auto;
  width: 100%;
  text-align: center;
  /* padding-top: var(--space-lg); */
  padding: 70px var(--space-xs) 0;
  /* background: linear-gradient(180deg, var(--surface-base), #FFFFFF); */
}
.hero h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.agency {
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 8px 12px;
  margin-inline-end: 10px;
  margin-block-end: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(89,62,207,.16), rgba(122,92,255,.10));
  border: 1px solid rgba(89,62,207,.22);
  box-shadow: 0 10px 30px rgba(89,62,207,.12);
  backdrop-filter: blur(10px);
  font-weight: 700;
  font-size: clamp(.7rem, 0.9rem, 1rem);
  letter-spacing: 0.02em;
  color: var(--color-brand-primary);
  vertical-align: middle;
  position: relative;
  top: -1.5px;
  width: fit-content;
}
.agency .agency__badge {
  position: relative;
  font-size: .55rem;
  top: -6px;
  left: -6px;
  color: var(--color-brand-primary);
}
.hero__title {
  font-size: clamp(1.75rem, 4.5vw, 4.5rem);
  font-weight: 700;
  background: linear-gradient(90deg,#ef00ef 0%,#593ecf 50%,#ef00ef 100%);
  background-size: 300% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: textcolors 6s linear infinite;
}
@keyframes textcolors {
  0%   { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

.hero__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: var(--text-secondary);
  margin-top: var(--space-md);
}
.hero__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: var(--space-xl);
  gap: var(--space-sm);
}
.hero__actions a {
  display: block;
  text-decoration: none;
  font-size: clamp(.8rem, 1.4vw, 1.25rem);
  padding: var(--space-sm) var(--space-md);
  border-radius: 5px;
  font-weight: 600;
}
.hero__actions .action_start {
  background-color: var(--color-brand-primary);
  color: var(--text-inverse);
  border: 2px solid var(--color-brand-primary);
}
.hero__actions .action_view {
  background-color: transparent;
  color: var(--color-brand-secondary);
  border: 2px solid var(--color-brand-secondary);
}
.next-p {
  margin-top: var(--space-xl);
  font-size: 0.85rem;
  font-weight: 500;
}

/* Section services */
.services {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: var(--space-xs);
  padding: var(--space-md);
  margin-top: var(--space-xxl);
  text-align: center;
  color: var(--color-brand-secondary);
}
.services__cards {
  margin-top: var(--space-xxl);
}
.services_card {
  border: 1px solid rgba(128, 128, 128, 0.285);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding-bottom: var(--space-xl);
  position: relative;
}
.services_card .services__media{
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.services_card .services__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .6s;
}

.services_card h3 {
  font-weight: 600;
  margin-top: var(--space-sm);
  text-transform: capitalize;
}
.services_card p {
  margin: var(--space-sm) 0;
  font-size: clamp(0.7rem, 0.8rem, 1rem);
  padding: 0 var(--space-sm);
  line-height: 19px;
}
.services__fucesed {
  background-color: var(--surface-muted);
}
.services__view {
  position: absolute;
  bottom: 0;
  padding: var(--space-sm);
  width: 100%;
}
.services__view .service-card__cta{
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.83rem;
  color: var(--color-brand-primary);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity .2s ease, transform .2s ease;
}
.services_card:hover .service-card__cta {
  opacity: 1;
  transform: translateX(4px);
}

/* Section Process */
.process {
  margin-top: var(--space-xxl);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: var(--space-sm);
  padding: 0 var(--space-lg);
}
.process__steps {
  margin-top: var(--space-md);
  display: grid;
  grid-template-columns: repeat(4, 200px);
  gap: 38px;
}
.step {
  padding: var(--space-xs);
  position: relative;
  border-radius: var(--radius-sm);
  opacity: .4;
  transition: opacity .5s ease;
}
.step-active {
  opacity: 1;
}
.step .step-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: var(--space-xs);
}
.step .step-title .step-num {
  display: block;
  width: 40px;
  height: 40px;
  background-color: var(--color-brand-primary);
  color: var(--text-inverse);
  font-size: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.step p {
  font-size: clamp(0.7rem, 0.8rem, 1rem);
  margin-top: var(--space-sm);
  padding: 0 var(--space-2xs);
}
.next {
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 23px;
  right: -10px;
}
.next::before,
.next::after {
  content: '';
  width: 100%;
  height: 3px;
  background-color: rgba(128, 128, 128, 0.388);
  display: block;
  position: absolute;
}
.next::before {
  top: 0;
  transform: rotate(45deg);
}
.next::after {
  bottom: 1px;
  transform: rotate(-45deg);
}
.next-rotate {
  transform: rotate(90deg);
}

/* section Works */
.works {
  margin-top: var(--space-xxl);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.ourworks {
  margin-top: var(--space-xl);
  display: grid;
  grid-template-columns: repeat(
    2,
    minmax(clamp(260px, 20vw, 360px), 370px));
  gap: var(--space-xl);
  justify-items: center;
}
.work {
  padding: var(--space-xs);
  text-align: center;
  box-shadow: var(--shadow-lg);
  padding-bottom: 50px;
  position: relative;
  border-radius: 1px;
  border: 1px solid var(--border-default);
}
.work-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.83rem;
  color: var(--color-brand-primary);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity .2s ease, transform .2s ease;
}
.work:hover .work-card__cta {
  opacity: 1;
  transform: translateX(4px);
}
.work__media {
  width: 400px;
  position: relative;
}
.work__media img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: top;
  position: relative;
  z-index: 1;
}
.work__media::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(128, 128, 128, 0.185);
  z-index: 2;
}
.work h3 {
  margin-top: var(--space-sm);
}
.work p {
  margin-top: var(--space-2xs);
  font-size: clamp(0.7rem, 0.8rem, 1rem);
  padding-bottom: var(--space-xs);
}

/* section get-touch  */
.get-touch {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.get-touch h3 {
  font-size: clamp(16px, 1.5rem, 2rem);
  font-weight: 500;
  text-align: center;
}
.get-touch a {
  display: block;
  margin-top: var(--space-md);
  text-decoration: none;
  padding: var(--space-sm);
  background-color: var(--color-brand-primary);
  color: var(--text-inverse);
  border-radius: var(--radius-sm);
  font-weight: 600;
  width: 200px;
  text-align: center;
  border: 2px solid var(--color-brand-primary);
  font-size: 1.2rem;
  transition: .3s;
}
.get-touch a:hover {
  background-color: transparent;
  color: var(--color-brand-primary);
}
/* For All Sections */
.section__eyebrow {
  font-size: clamp(0.75rem, 0.7rem + 0.4vw, 0.875rem);
  text-transform: uppercase;
  font-weight: 400;
}
.section__title{
  font-size: clamp(1.75rem, 1.4rem + 2.6vw, 3rem);
  font-weight: 500;
  margin-top: var(--space-xs);
  text-transform: capitalize;
}
.section__title span {
  color: var(--color-brand-primary);
  font-weight: 700;
}
.section__description {
  font-size: clamp(0.8rem, 0.9rem + 0.6vw, 1.125rem);
  line-height: 1.7;
  max-width: 62ch;
  margin-top: var(--space-sm);
}
.section__grid {
  display: grid;
  grid-template-columns: repeat(
    3,
    minmax(clamp(260px, 20vw, 360px), 370px)
  );
  gap: clamp(16px, 2vw, 28px);
}

.menu-is-active {
  width: 100%;
  left: 0;
}

.active {
  color: var(--color-brand-primary);
}

.popup {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 1100;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.354);
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup .view {
  max-width: 700px;
  height: 97%;
  max-height: fit-content;
  margin-top: var(--space-2xs);
  background-color: white;
  border-radius: 3px;
  padding: 1px;
  overflow-y: auto;
  position: relative;
  opacity: 0;
  transition: opacity 1s ease;
  will-change: opacity;
}
@media (max-width: 600px) {
  .popup .view {
    width: 97%;
  }
}
.popup .view img {
  width: 100%;
  height: auto;
}
.popup .view > .close {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: sticky;
  top: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.626);
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup .view > .close > span {
  display: block;
  position: relative;
  width: 70%;
  height: 70%;
  cursor: pointer;
}
.popup .view > .close > span > span {
  position: absolute;
  width: 70%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.463);
}
.popup .view > .close > span > span:first-child {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);

}
.popup .view > .close > span > span:nth-child(2) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.popup-disable {
  display: none ;
}
.popup-visivle {
  display: flex ; 
}
.popup-view {
  opacity: 1 !important;
}


.reset {
  display: none;
  position: fixed;
  width: 50px;
  height: 50px;
  background-color: #ffffffac;
  border-radius: 50%;
  bottom: 20px;
  right: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-strong);
  opacity: 0;
  transition: opacity 1s ease;
  will-change: opacity;
  cursor: pointer;
}
.reset > div {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 99999;
}
.reset > span {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.reset > span::before, 
.reset > span::after {
  content: '';
  position: absolute;
  width: 35%;
  height: 3px;
  background-color: var(--color-brand-primary);
  top: 45%;
  transform: translateY(-50%);
}
.reset > span::before {
  left: 10px;
  transform: rotate(-45deg);
}
.reset > span::after {
  right: 10px;
  transform: rotate(45deg);
}
.reset-visible {
  opacity: 1;
  display: block;
}

/* footer  */

footer {
  padding: var(--space-lg) var(--space-xl);
  width: 100%;
  background-color: #fff;
  margin-top: var(--space-xxl);
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .us {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  /* gap: 10px; */
}
footer .us ul {

}
footer .us ul li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 3px;
  text-wrap: nowrap;
  margin-top: var(--space-2xs);
}
footer .us ul li span {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text-primary);
} 
footer .us ul li span img {
  width: 60px;
  height: auto;
}
footer .us ul li p {
  margin-top: var(--space-sm);
  font-size: 0.8rem;
  max-width: 300px;
  text-wrap: wrap;
}
footer .us ul .title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}
footer .us ul a {
  text-decoration: none;
  color: var(--color-brand-secondary);
  font-size: .8rem;
}
footer .us ul .design {
  color: var(--color-brand-secondary);
  font-size: .87rem;
}
footer .us ul .design::before {
  content: '';
  width: 6px;
  height: 6px;
  display: block;
  background-color: var(--color-brand-primary);
  border-radius: 50%;
  margin-right: 5px;
  opacity: .8;
}
.copy {
  display: block;
  padding: var(--space-md);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: .8rem;
}


/* section > Contact */
.contact {
  margin-top: var(--space-xxl);
  padding: 0 var(--space-xl);
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact .content {
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.contact .content > h1,
  .contact .content > p {
    text-align: center;
  }
.contact .content .form {
  width: 70%;
  padding: var(--space-xl);
  background-color: #ffffffe0;
  border-radius: 3p;
  box-shadow: var(--shadow-lg);
  margin-top: var(--space-lg);
}
.data-contact,
.data-options {
  width: 100%;
  margin-top: var(--space-md);
  height: 50px;
  position: relative;
}
.data-contact input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 5px;
  border: 2px solid var(--border-strong);
  outline: none;
  padding: 0 var(--space-xl);
  z-index: 1;
  transition: .3s ease;
}
.data-contact input:focus {
  border-color: var(--color-brand-primary);
}
.data-contact span {
  position: absolute;
  z-index: 2;
  display: block;
  width: 40px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.data-contact span svg {
  width: 25px;
  height: 25px;
}

.data-options select {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 0 var(--space-sm);
  cursor: pointer;
  border: 2px solid var(--border-strong);
  outline: none;
  z-index: 1;
}
.data-options select:focus {
  border-color: var(--color-brand-primary);
}
.data-options span {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 90%;
  background-color: #fff;
  z-index: 2;
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
}
.data-options span svg {
  width: 25px;
  height: 25px;
}
.data-message {
  width: 100%;
  position: relative;
  height: 200px;
  background-color: #fff;
  border: 2px solid var(--border-strong);
  margin-top: var(--space-md);
}
.data-message textarea {
  position: absolute;
  width: 100%;
  height: 80%;
  bottom: 0;
  left: 0;
  border: none;
  outline: none;
  padding: var(--space-sm);
  resize: none;
  z-index: 1;
}
.data-message > span {
  display: block;
  padding: var(--space-sm);
  font-weight: 700;
  text-transform: capitalize;
}
.data-message .max {
  position: absolute;
  right: -10px;
  bottom: -35px;
  z-index: 2;
  font-size: .75rem;
  font-weight: 500;
  color: var(--color-brand-secondary);
}
.data-submit {
  width: 100%;
  height: 50px;
  margin-top: var(--space-xl);
  display: flex;
  justify-content: flex-end;
}
.data-submit button {
  width: 200px;
  height: 100%;
  position: relative;
  right: 0;
  top: 0;
  background-color: var(--color-brand-primary);
  border: 1px solid var(--color-brand-primary);
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.send-msg-hide {
  display: none !important;
}
.data-submit button .send_msg {
  color: var(--text-inverse);
  text-transform: capitalize;
  font-size: .9rem;
}
.data-submit button .send_load {
  display: block;
  width: 16px;
  height: 16px;
  background-color: transparent;
  border-radius: 50%;
  position: relative;
}
.data-submit button .send_load::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50%;
  border-width: 2px;
  border-style: solid;
  border-color: #fff #fff transparent transparent;
  animation: spinner .7s linear infinite;
}
@keyframes spinner {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.info {
  margin-top: 50px;
  width: 70%;
  display: flex;
  flex-direction: column;
}
.info ul li {
  list-style: none;
  font-size: 1rem;
  /* margin-top: var(--space-xs); */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: fit-content;
  font-size: .9rem;
}
.info ul li span svg {
  width: 25px;
  height: 25px;
  margin-top: 6px;
}
.info ul .title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.info .live-chat {
  margin: var(--space-sm) 0;
  gap: 5px;
  width: fit-content;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.info .live-chat .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.info .live-chat .icon svg{
  width: 40px;
  height: 40px;
}
.info .live-chat .bold {
  display: block;
  font-weight: 700;
}

.contact_status {
  margin: var(--space-sm) 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.contact_status span {
  display: block;
  position: relative;
  width: 20px;
  height: 20px;
}
.contact_status span svg {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
}
.contact_status p {
  color: var(--text-inverse);
  font-size: .9rem;
}
.contact_status .success, 
.contact_status .failed {
  width: 100%;
  height: 60px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  opacity: 0;
  transition: opacity .3s ease;
  display: none;
}
.contact_status .success {
  background-color: var(--color-success);
}
.contact_status .failed {
  background-color: var(--color-danger);
}
.contact_status_show {
  display: flex !important;
  opacity: 1 !important;
}
/* Responsive */
@media (max-width: 950px) {
  footer {
    padding: var(--space-lg) var(--space-sm);
  }
  footer .us {
    grid-template-columns: 2fr repeat(2, 1fr);
    gap: 10px;
  }
  footer .us ul li p {
    max-width: 250px;
  }
}
@media (max-width: 920px) {
  .section__grid {
    grid-template-columns: repeat(
    2,
    minmax(clamp(260px, 20vw, 360px), 370px)
  );
  }
  .process__steps {
    grid-template-columns: repeat(2, 200px);
  }
  .contact  {
    padding: 0;
  }
  .contact .content .form {
    width: 100%;
  }
  .info {
    width: 100%;
  }
}

@media (max-width: 830px) {
  .ourworks {
  grid-template-columns: repeat(
    1,
    minmax(clamp(260px, 20vw, 360px), 370px));
  }
}
@media (max-width: 840px) {
  nav {
    box-shadow: var(--shadow-md);
  }
  nav ul {
    position: fixed;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    top: 0;
    left: -20px;
    width: 0;
    height: 100%;
    z-index: 999;
    background-color: var(--surface-muted);
    overflow: hidden;
    transition: .3s;
  }
  nav ul li:first-child {
    margin-top: var(--space-xxl);
  }
  nav ul li {
    margin-top: var(--space-lg);
    margin-left: var(--space-md);
  }
  nav ul li a {
    font-size: 1rem;
  }
  .nav__menu {
    display: block;
  }
}
@media (max-width: 770px) {
  .contact .content > h1,
  .contact .content > p {
    text-align: left;
  }
}
@media (max-width: 620px) {
  .section__grid {
    grid-template-columns: repeat(
    1,
    minmax(clamp(260px, 20vw, 360px), 370px)
  );
  }
  .services__fucesed {
    order: -1;
  }
  .process__steps {
    grid-template-columns: repeat(1, 200px);
  }
  .step p {
    text-align: left;
  } 
  .next {
    top: auto;
    bottom: -20px !important;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }  
}
@media (max-width: 650px) {
  footer .us {
    grid-template-columns: repeat(2, 1fr)
  }
  footer .us ul:nth-child(2), 
  footer .us ul:nth-child(3),
  footer .us ul:last-child{
    margin-top: var(--space-sm);
  }
  footer .us ul:nth-child(2) {
    justify-self: center;
  }
  .menu-is-active {
    width: 100%;
  }
  .contact .content .form {
    padding: var(--space-lg);
  }
}
@media (max-width: 500px) {
  .info .live-chat {
    flex-direction: column;
  }
  .info .live-chat .bold  {
    margin-left: 40px;
  }
}
@media (max-width: 470px) {
  footer .us {
    grid-template-columns: 1fr
  }
  footer .us ul:nth-child(2) {
    justify-self: left;
  }
  .data-submit {
    justify-content: center;
  }
}
@media (max-width: 450px) {
  .work__media {
    width: 300px;
  }
}
@media (max-width: 360px) {
  .hero__actions {
    flex-direction: column;
  }
  .hero__actions a {
    width: 70%;
  }
}
@media (max-width: 330px) {
  .work__media {
    width: 270px;
  }
}

/* Add Animationx  */
[data-animate]{
  opacity: 0;
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}

[data-card-animate]{
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}

[data-animate="fade-up"]{ transform: translateY(40px); }
[data-animate="fade-left"]{ transform: translateX(-40px); }
[data-animate="fade-right"]{ transform: translateX(40px); }

[data-animate].is-visible,
[data-card-animate].is-visible{
  opacity: 1;
  transform: none;
}

.feild-error {
  color: #F44336;
  font-size: .9rem;
  font-weight: 600;
  margin-top: var(--space-xs);
  display: block;
  text-transform: capitalize;
}
.hasError {
  border: 2px solid #F44336 !important;
}

