* {
  font-family: "Rubik", sans-serif;
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  scroll-behavior: smooth;
  list-style: none;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background:
    radial-gradient(
      circle at top left,
      #000000 5%,
      rgba(77, 26, 30, 0.767),
      transparent 50%
    ),
    radial-gradient(
      circle at bottom right,
      #000000 10%,
      rgba(71, 22, 22, 0.633),
      transparent 50%
    ),
    linear-gradient(to bottom, #341313, #050505);
  padding: 20px;
  width: 400px;
  border-radius: 10px;
  text-align: center;
}

.modal-content h2 {
  text-align: center;
  margin-left: 150px;
}

input {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
}

#loginForm input {
  background: transparent;
  border: none;
  border-bottom: 2px solid #555;
  padding: 10px;
  margin: 15px 0;
  color: #fff;
  outline: none;
  font-size: 16px;
  transition: 0.3s;
}

#loginForm input:focus {
  border-bottom: 2px solid #ed494c;
}

.custom-alert {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #333;
  color: #fff;
  padding: 15px 25px;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s;
}

.custom-alert.show {
  opacity: 1;
  transform: translateY(0);
}

body {
  overflow-x: hidden;
  background:
    radial-gradient(
      circle at top left,
      #000000 5%,
      rgba(77, 26, 30, 0.767),
      transparent 50%
    ),
    radial-gradient(
      circle at bottom right,
      #000000 10%,
      rgba(71, 22, 22, 0.633),
      transparent 50%
    ),
    linear-gradient(to bottom, #341313, #050505);
}

.nav {
  display: flex;
  z-index: 999;
  background-color: #1e0e0e;
  width: 100%;
  padding-left: 100px;
  padding-top: 10px;
  padding-bottom: 15px;
  position: fixed;
}

.nav h2 {
  color: #fff;
  margin-right: 150px;
  cursor: pointer;
  margin-top: 5px;
}

.nav span {
  color: #ce4653;
}

.nav ul {
  display: flex;
  margin-right: 20px;
  margin-left: 260px;
  margin-top: 10px;
}

ul li {
  list-style: none;
}

.nav ul li a {
  color: #fff;
  text-decoration: none;
  margin-left: 10px;
  padding: 10px 15px;
  font-size: 14px;
  transition: all ease-in-out 0.3s;
}

.nav ul li a:hover {
  cursor: pointer;
  color: #ce4653;
  background-color: #fff;
  border-radius: 5px;
}

.nav button {
  border: solid #ce4653 1px;
  padding: 10px 15px;
  background: none;
  color: #fff;
  cursor: pointer;
  border-radius: 10px;
}

.nav button:hover {
  box-shadow: 0 8px 20px #ed494c;
}

.page-1 {
  padding-left: 100px;
  display: flex;
  padding-top: 80px;
}

.text-page1 {
  width: 500px;
  padding-top: 30px;
}

.text-page1 img {
  width: 40px;
  display: block;
  padding-bottom: 10px;
}

.text-page1 small {
  color: #fff;
  padding-bottom: 25px;
}

.text-page1 h1 {
  color: #fff;
  font-size: 70px;
  padding-top: 15px;
  padding-bottom: 30px;
  line-height: 70px;
}

.text-page1 span {
  color: #ed494c;
}

.text-page1 button {
  background-color: #ce4653;
  padding: 10px 15px;
  border: none;
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.text-page1 button:hover {
  background-color: #cc8a0e;
}

.img-page-1 {
  width: 600px;
  height: 500px;
  border-radius: 50px;
  position: relative;
  margin-bottom: 50px;
  background-color: #1c1c1e;
}

.img-hero img {
  width: 450px;
  position: absolute;
  z-index: 4;
  left: 60px;
}

.img-element-1 img {
  width: 600px;
  position: absolute;
  top: 0;
  z-index: 1;
}

.img-element-2 img {
  width: 400px;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 80px;
}

.text-img-2 {
  position: absolute;
  z-index: 6;
  left: 550px;
  top: 250px;
}

.button {
  cursor: pointer;
  border: none;
  background: none;
  color: #fff;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  display: grid;
  place-content: center;
  transition:
    background 300ms,
    transform 200ms;
  font-weight: 600;
}

.button__text {
  position: absolute;
  inset: 0;
  animation: text-rotation 8s linear infinite;

  > span {
    position: absolute;
    transform: rotate(calc(15deg * var(--index)));
    inset: 7px;
  }
}

.button__circle {
  position: relative;
  width: 40px;
  height: 40px;
  overflow: hidden;
  background: #fff;
  color: #7808d0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button__icon--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.button:hover {
  transform: scale(1.05);
}

.button:hover .button__icon {
  color: #000;
}

.button:hover .button__icon:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}

.button:hover .button__icon--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}

@keyframes text-rotation {
  to {
    rotate: 360deg;
  }
}

.page-2 {
  padding-left: 100px;
  display: flex;
  padding-top: 60px;
  margin-bottom: 50px;
}

.text1-page2 h1 {
  color: #fff;
  font-size: 70px;
  width: 350px;
  padding-bottom: 30px;
}

.text1-page2 {
  width: 550px;
}

.text1-page2 p {
  color: #5e504f;
  padding-right: 20px;
  padding-left: 8px;
}

.text1-page2 span {
  color: #ed494c;
  font-weight: bolder;
}

.line {
  position: absolute;
  height: 55px;
  color: #ce4653;
}

.line::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 100%;
  background-color: #ed494c;
  left: 50%;
}

.text2-page2 p {
  color: #5e504f;
  width: 550px;
  font-size: 14px;
  margin-top: 50px;
  padding-left: 20px;
  margin-bottom: 20px;
}

.services {
  padding-left: 100px;
  padding-top: 80px;
}

.services small {
  color: #ed494c;
  padding-left: 10px;
}

.services p::before {
  content: "";
  margin-top: 5px;
  width: 70px;
  position: absolute;
  height: 2px;
  background: #ed494c;
}

.services h1 {
  color: #fff;
  padding-top: 20px;
  font-size: 50px;
  margin-bottom: 30px;
}

.services span {
  color: #ed494c;
}

.pag-3 {
  padding-left: 100px;
  width: 87%;
}

.text-page-3 {
  gap: 20px;
  justify-content: space-around;
  display: flex;
}

.ui {
  width: 400px;
  margin-bottom: 15px;
}

.ui h3 {
  width: max-content;
  transition: all 0.3s ease-in-out;
  color: #fff;
  font-size: 30px;
  padding-bottom: 30px;
}

.ui h3:hover {
  color: #ed494c;
  cursor: pointer;
}

.ui p {
  color: #5e504f;
  padding-bottom: 20px;
}

.ui b {
  color: #ffffff9c;
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
  max-width: max-content;
  cursor: pointer;
  padding-top: 10px;
  transition: all 0.3s ease-in-out;
}

.ui b:hover {
  transform: scale(1.1);
  padding-left: 5px;
  color: #ffffff;
}

.arrow {
  display: flex;
  gap: 210px;
}

.arrow-up {
  background-color: #1f1d1b;
  width: 160px;
  padding-left: 60px;
  height: 130px;
  cursor: pointer;
  color: #fff;
  margin-bottom: 30px;
  transition: all 0.3s ease-in-out;
}

.arrow-up:hover {
  background: #ed494c;
}

.arrow-up i {
  padding-bottom: 50px;
  padding-left: 40px;
}

.arrow-up p {
  padding-top: 20px;
}

.hr {
  margin-bottom: 20px;
}

.nums {
  display: flex;
  padding-left: 200px;
  gap: 200px;
  margin-top: 80px;
}

.num {
  color: #fff;
  font-size: 90px;
  padding-bottom: 20px;
}

.num-content span {
  color: #ed494c;
  display: block;
  font-size: 90px;
}

.contact-num {
  display: flex;
  color: #fff;
  padding-left: 200px;
  gap: 200px;
  margin-bottom: 30px;
  font-size: 15px;
}

.num-content {
  display: flex;
}

.design-page-4 {
  padding-left: 100px;
  padding-top: 80px;
}

.design-page-4 span {
  color: #ed494c;
  padding-left: 8px;
}

.design-page-4 b::before {
  content: "";
  position: absolute;
  margin-top: 5px;
  display: block;
  height: 2px;
  width: 70px;
  background-color: #ed494c;
}

.designing {
  color: #fff;
  padding-left: 100px;
  display: flex;
  padding-top: 30px;
}

.designing span {
  color: #ed494c;
}

.designing h2 {
  font-size: 50px;
  margin-right: 200px;
}

.designing small {
  margin-top: 15px;
  transition: all 0.3s ease-in-out;
}

.designing small:hover {
  color: #ed494c;
  cursor: pointer;
}

.page-4 {
  display: flex;
  gap: 20px;
  margin-top: 50px;
  position: relative;
  padding-left: 100px;
}

.img-1-page4 {
  width: 550px;
  position: relative;
}

.img-design-1page4 {
  position: relative;
}

.img-design-1page4 img {
  transition: all 0.3s ease-in-out;
  display: block;
  width: 500px;
  margin-bottom: 15px;
}

.img-2-page4 {
  width: 530px;
  position: relative;
}

.img-design-1page4:hover .contact-page-4 {
  opacity: 1;
  transform: translateY(0);
}

.img-design-1page4 img {
  display: block;
  margin-bottom: 10px;
  width: 530px;
}

.img-design-1page4:hover img {
  cursor: pointer;
  transform: scale(0.99);
}

.contact-page-4 {
  position: absolute;
  display: flex;
  z-index: 8;
  transition: all 0.3s ease-in-out;
  bottom: 0px;
  width: 100%;
  background-color: #0a080ca1;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s ease;
}

.text1-page-4 p {
  color: #fff;
  position: absolute;
  bottom: 20px;
  left: 15px;
}

.text-page-4-arrow {
  position: relative;
  background-color: #ed494c;
  padding: 10px 10px 10px 20px;
  height: 80px;
  color: #fff;
  margin-top: 10px;
  margin-left: 408px;
  margin-bottom: 10px;
}

.text-page-4-arrow i {
  position: absolute;
  right: 10px;
}

.text-page-4-arrow p {
  padding-top: 25px;
}

.blog {
  padding-left: 100px;
  padding-top: 60px;
}

.blog b {
  color: #ed494c;
  padding-left: 8px;
}

.blog p::before {
  margin-top: 10px;
  content: "";
  width: 70px;
  background-color: #ed494c;
  height: 2px;
  display: block;
  position: absolute;
}

.lastest {
  display: flex;
  margin-top: 50px;
  padding-left: 100px;
}

.lastest h2 {
  color: #fff;
  margin-right: 580px;
  font-size: 50px;
}

.lastest span {
  color: #ed494c;
}

.lastest small {
  cursor: pointer;
  color: #fff;
  margin-top: 20px;
  height: min-content;
  transition: all 0.3s ease-in-out;
}

.lastest small:hover {
  color: #ed494c;
}

.swiper {
  width: 80%;
  margin: 50px 80px;
}

.swiper-slide {
  background: #0f172a;
  border: 1px solid #1f2937;
  border-radius: 12px;
  height: 450px;
  width: 530px;
  margin-top: 10px;
  padding-right: 20px;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-right: 15px;
  margin-left: 10px;
  color: white;
  font-size: 20px;
  transition: all 0.3s ease-in-out;
}

.swiper-slide:hover {
  transform: scale(0.99);
  cursor: pointer;
}

.swiper-slide img {
  width: 533px;
  border-radius: 12px;
  height: 300px;
}

.text1-page-5 {
  position: absolute;
  z-index: 2;
  top: 3px;
  display: flex;
}

.text1-page-5 span {
  position: absolute;
  left: 400px;
  top: 3px;
  background-color: #000;
  font-size: 15px;
  padding: 5px 10px;
  border-radius: 25px;
}

.text1-page-5 p {
  color: #000;
  background-color: #fff;
  padding: 5px 10px;
  position: absolute;
  top: 3px;
  left: 15px;
  border-radius: 25px;
  font-size: 15px;
}

.text-page-5 p {
  color: #fff;
  font-size: 16px;
  width: 450px;
  margin-bottom: 20px;
  font-weight: 600;
}

.text-page-5 small {
  font-size: 14px;
  color: #5e504f;
}

.text-page-5-arrow {
  position: absolute;
  right: 40px;
  border-radius: 10px;
  height: 80px;
  padding: 10px 10px;
  bottom: 10px;
  background-color: #323131;
}

.text-page-5-arrow i {
  position: absolute;
  right: 10px;
  font-size: 15px;
}

.text-page-5-arrow p {
  padding-top: 15px;
  font-size: 15px;
}

.page-6 {
  padding-left: 130px;
  margin-top: 30px;
  margin-bottom: 50px;
}

.page-6 img {
  width: 250px;
  padding-right: 100px;
  filter: brightness(1);
  cursor: pointer;
  width: max-content;
  transition: all 0.3s ease-in-out;
}

.page-6 img:hover {
  filter: brightness(5);
}

.team {
  padding-left: 100px;
  padding-top: 80px;
}

.team p {
  color: #ed494c;
  font-size: 15px;
  padding-bottom: 5px;
  cursor: pointer;
  padding-left: 5px;
}

.team span::before {
  content: "";
  background-color: #ed494c;
  width: 50px;
  height: 2px;
  position: absolute;
}

.meet {
  color: #fff;
  padding-left: 100px;
  display: flex;
  padding-top: 30px;
}

.meet span {
  color: #ed494c;
}

.meet h2 {
  font-size: 50px;
  margin-right: 600px;
}

.meet small {
  margin-top: 15px;
  transition: all 0.3s ease-in-out;
}

.meet small:hover {
  color: #ed494c;
  cursor: pointer;
}

.page-7 {
  display: flex;
  gap: 25px;
  margin-top: 50px;
}

.img1-page-7 {
  position: relative;
}

.img1-page-7 img {
  width: 317px;
}

.text-page-7 {
  color: #fff;
  left: 120px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s ease;
  position: absolute;
  z-index: 2;
  bottom: 15px;
}

.text-page-7 p {
  padding-bottom: 5px;
}

.img1-page-7:hover .text-page-7 {
  opacity: 1;
  transform: translateY(0);
}

.text-page-7 span {
  display: block;
  padding-top: 5px;
  color: #ed494c;
  font-size: 13px;
}

.page-8 {
  display: flex;
  padding-top: 30px;
}

.img-page-8 img {
  width: 700px;
  height: 600px;
}

.text-page-8 {
  padding-left: 40px;
  padding-top: 60px;
}

.text-page-8 h2 {
  color: #fff;
  font-size: 70px;
  width: 300px;
  padding-bottom: 40px;
}

.text-page-8 span {
  color: #ed494c;
}

.text-page-8 b {
  content: "";
  margin-top: 5px;
  background-color: #ed494c;
  width: 3px;
  height: 35px;
  position: absolute;
}

.text-page-8 p {
  color: #9f9190;
  line-height: 20px;
  padding-left: 10px;
  width: 500px;
  font-size: 10px;
}

.page-9 {
  padding-left: 100px;
  margin-top: 50px;
  display: flex;
}

.contact {
  width: 550px;
  padding-top: 80px;
}

.contact small {
  display: block;
  padding-bottom: 5px;
  color: #ed494c;
}

.contact b::before {
  content: "";
  margin-left: 5px;
  position: absolute;
  background-color: #ed494c;
  width: 60px;
  height: 2px;
}

.contact h2 {
  color: #fff;
  font-size: 70px;
  padding-top: 20px;
}

.contact span {
  color: #ed494c;
}

.contact-form {
  width: 300px;
  margin: 50px 50px;
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  background: transparent;
  border: none;
  border-bottom: 2px solid #555;
  padding: 10px;
  margin: 15px 0;
  color: #fff;
  outline: none;
  font-size: 16px;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom: 2px solid #ed494c;
}

.contact-form button {
  padding: 10px;
  border: none;
  background: #ed494c;
  color: #000;
  cursor: pointer;
  margin-top: 20px;
  font-weight: bold;
  transition: 0.3s;
}

.contact-form button:hover {
  color: #fff;
  background: #555;
}

.contact-form p {
  font-size: 13px;
  color: #6a6767;
}

.google-maps iframe {
  width: 700px;
  height: 500px;
  margin-top: 80px;
}

.hr b::before {
  width: 1220px;
  background-color: #555;
  height: 2px;
  position: absolute;
  content: "";
  margin-left: 120px;
  margin-right: 10px;
}

.tfoot {
  display: flex;
  padding-left: 140px;
  margin-top: 25px;
  margin-bottom: 20px;
}

.text-1-tfoot {
  margin-right: 500px;
}

.text-1-tfoot a {
  color: #fff;
  text-decoration: none;
  margin-right: 10px;
  transition: all 0.3s ease-in-out;
  font-size: 14px;
}

.text-1-tfoot a:hover {
  color: #ed494c;
}

.icon-tfoot i {
  color: #fff;
  margin-right: 5px;
}

.rights b::before {
  width: 1000px;
  background-color: #555;
  height: 1px;
  position: absolute;
  display: block;
  margin-bottom: 20px;
  content: "";
  margin-left: 160px;
  margin-right: 100px;
}

.rights p {
  color: #fff;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 20px;
  font-size: 15px;
}

.rights span {
  color: #ed494c;
}

@media (max-width: 1200px) {
  .nav {
    padding-left: 40px;
  }

  .nav ul {
    margin-right: 80px;
  }

  .page-1 {
    padding-left: 40px;
  }

  .text-page1 h1 {
    font-size: 52px;
    line-height: 58px;
  }

  .img-page-1 {
    width: 480px;
  }

  .text-img-2 {
    left: 420px;
  }

  .page-2 {
    padding-left: 40px;
  }

  .text1-page2 h1 {
    font-size: 52px;
  }

  .services,
  .pag-3 {
    padding-left: 40px;
  }

  .nums {
    padding-left: 80px;
    gap: 120px;
  }

  .contact-num {
    padding-left: 80px;
    gap: 120px;
  }

  .design-page-4,
  .designing,
  .page-4 {
    padding-left: 40px;
  }

  .blog,
  .lastest {
    padding-left: 40px;
  }

  .swiper {
    margin: 50px 40px;
  }

  .page-6 {
    padding-left: 40px;
  }

  .team,
  .meet {
    padding-left: 40px;
  }

  .page-9 {
    padding-left: 40px;
  }

  .google-maps iframe {
    width: 550px;
  }

  .hr b::before {
    width: 90%;
    margin-left: 40px;
  }

  .tfoot {
    padding-left: 40px;
  }

  .text-1-tfoot {
    margin-right: 200px;
  }

  .rights b::before {
    width: 80%;
    margin-left: 80px;
  }
}

@media (max-width: 992px) {
  .nav {
    padding-left: 20px;
    flex-wrap: wrap;
    padding-right: 20px;
  }

  .nav h2 {
    margin-right: 30px;
  }

  .nav ul {
    margin-right: 20px;
  }

  .nav ul li a {
    padding: 8px 8px;
    font-size: 13px;
  }

  .page-1 {
    padding-left: 20px;
    padding-right: 20px;
    flex-wrap: wrap;
  }

  .text-page1 {
    width: 100%;
    max-width: 100%;
  }

  .text-page1 h1 {
    font-size: 42px;
    line-height: 48px;
  }

  .img-page-1 {
    width: 100%;
    margin-top: 20px;
    max-width: 500px;
    height: 14vh;
  }

  .img-hero img {
    width: 380px;
  }

  .img-element-1 img {
    width: 500px;
  }

  .img-element-2 img {
    width: 340px;
  }

  .text-img-2 {
    display: none;
  }

  .page-2 {
    padding-left: 20px;
    padding-right: 20px;
    flex-wrap: wrap;
  }

  .text1-page2 {
    width: 100%;
  }

  .text1-page2 h1 {
    font-size: 42px;
    width: 100%;
  }

  .text2-page2 p {
    width: 100%;
  }

  .services,
  .pag-3 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .pag-3 {
    width: 100%;
  }

  .text-page-3 {
    flex-wrap: wrap;
    gap: 30px;
  }

  .ui {
    width: 100%;
  }

  .arrow {
    gap: 40px;
  }

  .nums {
    padding-left: 40px;
    gap: 80px;
  }

  .contact-num {
    padding-left: 40px;
    gap: 80px;
  }

  .design-page-4,
  .designing {
    padding-left: 20px;
    padding-right: 20px;
  }

  .designing h2 {
    font-size: 36px;
    margin-right: 40px;
  }

  .page-4 {
    padding-left: 20px;
    padding-right: 20px;
    flex-wrap: wrap;
  }

  .img-1-page4,
  .img-2-page4 {
    width: 100%;
  }

  .img-design-1page4 img {
    width: 100%;
  }

  .text-page-4-arrow {
    margin-left: auto;
  }

  .blog,
  .lastest {
    padding-left: 20px;
    padding-right: 20px;
  }

  .lastest h2 {
    margin-right: 80px;
    font-size: 36px;
  }

  .swiper {
    width: 90%;
    margin: 40px 20px;
  }

  .swiper-slide img {
    width: 100%;
  }

  .page-6 {
    padding-left: 20px;
  }

  .page-6 img {
    max-width: 180px;
    padding-right: 30px;
  }

  .team,
  .meet {
    padding-left: 20px;
    padding-right: 20px;
  }

  .meet h2 {
    font-size: 36px;
    margin-right: 80px;
  }

  .page-7 {
    flex-wrap: wrap;
    justify-content: center;
  }

  .img1-page-7 img {
    width: 220px;
  }

  .page-8 {
    flex-wrap: wrap;
  }

  .img-page-8 img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .text-page-8 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-page-8 h2 {
    font-size: 48px;
  }

  .page-9 {
    padding-left: 20px;
    padding-right: 20px;
    flex-wrap: wrap;
  }

  .contact {
    width: 100%;
  }

  .google-maps iframe {
    width: 100%;
  }

  .hr b::before {
    width: 88%;
    margin-left: 20px;
  }

  .tfoot {
    padding-left: 20px;
    flex-wrap: wrap;
    gap: 20px;
  }

  .text-1-tfoot {
    margin-right: 40px;
  }

  .rights b::before {
    width: 76%;
    margin-left: 40px;
  }
}

@media (max-width: 768px) {
  .nav {
    padding-left: 15px;
    padding-right: 15px;
    position: fixed;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .nav h2 {
    margin-right: 0;
  }

  .nav ul {
    flex-direction: column;
    position: fixed;
    top: 55px;
    left: 0;
    width: 100%;
    background-color: #1e0e0e;
    padding: 0 20px;
    margin: 0;
    z-index: 998;
    overflow: hidden;

    /* Closed state */
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition:
      max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.35s ease,
      padding 0.4s ease,
      visibility 0s linear 0.4s;
  }

  .nav ul.nav-open {
    max-height: 400px;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    padding: 16px 20px;

    transition:
      max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.35s ease,
      padding 0.4s ease,
      visibility 0s linear 0s;
  }

  .nav ul li a {
    padding: 12px 10px;
    display: block;
    font-size: 15px;
  }

  .nav button {
    display: none;
  }

  /* Hamburger icon */
  .nav__hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
  }

  .nav__hamburger-icon span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s;
  }

  .page-1 {
    padding-top: 70px;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column;
  }

  .text-page1 h1 {
    font-size: 34px;
    line-height: 40px;
  }

  .img-page-1 {
    width: 100%;
    height: 60vw;
    max-width: 100%;
    border-radius: 25px;
  }

  .img-hero img {
    width: 300px;
    left: 30px;
  }

  .img-element-1 img {
    width: 100%;
  }

  .img-element-2 img {
    width: 280px;
    left: 40px;
  }

  .page-2 {
    flex-direction: column;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 40px;
  }

  .text1-page2 h1 {
    font-size: 34px;
    width: 100%;
  }

  .text2-page2 p {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }

  .services {
    padding-left: 15px;
    padding-right: 15px;
  }

  .services h1 {
    font-size: 34px;
  }

  .pag-3 {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
  }

  .text-page-3 {
    flex-direction: column;
  }

  .ui {
    width: 100%;
  }

  .arrow {
    gap: 20px;
    flex-wrap: wrap;
  }

  .arrow-up {
    width: 130px;
    padding-left: 30px;
  }

  .nums {
    padding-left: 15px;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .num {
    font-size: 60px;
  }

  .num-content span {
    font-size: 60px;
  }

  .contact-num {
    padding-left: 15px;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .design-page-4,
  .designing {
    padding-left: 15px;
    padding-right: 15px;
  }

  .designing {
    flex-wrap: wrap;
    gap: 10px;
  }

  .designing h2 {
    font-size: 28px;
    margin-right: 0;
    width: 100%;
  }

  .page-4 {
    flex-direction: column;
    padding-left: 15px;
    padding-right: 15px;
  }

  .img-1-page4,
  .img-2-page4 {
    width: 100%;
  }

  .img-design-1page4 img {
    width: 100%;
  }

  .text-page-4-arrow {
    margin-left: auto;
    min-width: 90px;
  }

  .blog,
  .lastest {
    padding-left: 15px;
    padding-right: 15px;
  }

  .lastest {
    flex-wrap: wrap;
    gap: 10px;
  }

  .lastest h2 {
    margin-right: 0;
    font-size: 28px;
    width: 100%;
  }

  .swiper {
    width: calc(100% - 30px);
    margin: 30px 15px;
  }

  .swiper-slide {
    width: 100%;
    height: auto;
    min-height: 420px;
  }

  .swiper-slide img {
    width: 100%;
    height: 220px;
  }

  .text1-page-5 span {
    left: auto;
    right: 10px;
  }

  .page-6 {
    padding-left: 15px;
    flex-wrap: wrap;
    gap: 20px;
  }

  .page-6 img {
    max-width: 140px;
    padding-right: 0;
  }

  .team,
  .meet {
    padding-left: 15px;
    padding-right: 15px;
  }

  .meet {
    flex-wrap: wrap;
    gap: 10px;
  }

  .meet h2 {
    font-size: 28px;
    margin-right: 0;
    width: 100%;
  }

  .page-7 {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
  }

  .img1-page-7 {
    width: calc(50% - 10px);
  }

  .img1-page-7 img {
    width: 100%;
  }

  .text-page-7 {
    left: 0;
    right: 0;
    text-align: center;
  }

  .page-8 {
    flex-direction: column;
  }

  .img-page-8 img {
    width: 100%;
    height: auto;
  }

  .text-page-8 {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 30px;
  }

  .text-page-8 h2 {
    font-size: 38px;
    width: 100%;
  }

  .text-page-8 p {
    width: 100%;
  }

  .page-9 {
    flex-direction: column;
    padding-left: 15px;
    padding-right: 15px;
  }

  .contact {
    width: 100%;
  }

  .contact h2 {
    font-size: 48px;
  }

  .contact-form {
    width: 100%;
    margin: 30px 0;
  }

  .google-maps {
    width: 100%;
  }

  .google-maps iframe {
    width: 100%;
    height: 350px;
    margin-top: 30px;
  }

  .hr b::before {
    width: 90%;
    margin-left: 15px;
  }

  .tfoot {
    padding-left: 15px;
    flex-direction: column;
    gap: 20px;
  }

  .text-1-tfoot {
    margin-right: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .rights b::before {
    width: 70%;
    margin-left: 40px;
  }
}

@media (max-width: 576px) {
  body {
    overflow-x: hidden;
  }
  .page-1 {
    padding-top: 65px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .text-page1 h1 {
    font-size: 28px;
    line-height: 34px;
  }

  .img-page-1 {
    height: 55vw;
    min-height: 240px;
    border-radius: 20px;
  }

  .img-hero img {
    width: 220px;
    left: 15px;
  }

  .img-element-2 img {
    width: 220px;
    left: 20px;
  }

  .text1-page2 h1 {
    font-size: 28px;
  }

  .services h1 {
    font-size: 28px;
  }

  .ui h3 {
    font-size: 20px;
  }

  .arrow {
    gap: 10px;
  }

  .arrow-up {
    width: 110px;
    height: 110px;
    padding-left: 20px;
  }

  .nums {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .num {
    font-size: 48px;
  }

  .num-content span {
    font-size: 48px;
  }

  .contact-num {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .designing h2 {
    font-size: 24px;
  }

  .lastest h2 {
    font-size: 24px;
  }

  .swiper-slide {
    min-height: 380px;
  }

  .swiper-slide img {
    height: 180px;
  }

  .text-page-5 p {
    font-size: 14px;
    width: 100%;
  }

  .page-6 img {
    max-width: 110px;
  }

  .meet h2 {
    font-size: 24px;
  }

  .img1-page-7 {
    width: calc(50% - 8px);
  }

  .img1-page-7 img {
    width: 100%;
  }

  .text-page-7 {
    left: 0;
  }

  .text-page-8 h2 {
    font-size: 28px;
    padding-bottom: 20px;
  }

  .contact h2 {
    font-size: 36px;
  }

  .google-maps iframe {
    height: 280px;
  }

  .text-1-tfoot a {
    font-size: 12px;
  }

  .rights b::before {
    width: 60%;
    margin-left: 60px;
  }
}

.nav__mini-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  flex-shrink: 0;
  z-index: 1001;
  position: relative;
}

.nav__mini-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transform-origin: center;
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.25s ease,
    width 0.3s ease;
}

.nav__mini-burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__mini-burger.is-open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav__mini-burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__mini-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.nav__mini-overlay.is-open {
  display: block;
  opacity: 1;
}

.nav__mini-sidebar {
  position: fixed;
  top: 0;
  right: -280px;
  width: 260px;
  height: 100vh;
  background-color: #1e0e0e;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: 70px 24px 32px;
  gap: 4px;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__mini-sidebar.is-open {
  right: 0;
}

.nav__mini-sidebar a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  padding: 12px 16px;
  border-radius: 8px;
  display: block;
  transition:
    background 0.25s ease,
    color 0.25s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav__mini-sidebar a:last-child {
  border-bottom: none;
}
.nav__mini-sidebar a:hover,
.nav__mini-sidebar a:active {
  background-color: rgba(237, 73, 76, 0.15);
  color: #ed494c;
}

.nav__mini-sidebar__close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}
.nav__mini-sidebar__close:hover {
  color: #ed494c;
}

@media (max-width: 768px) and (min-width: 577px) {
  .nav__mini-burger {
    display: flex;
  }

  .nav ul {
    display: none !important;
    max-height: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .nav button:not(.nav__mini-burger) {
    display: none;
  }

  .nav {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 15px;
  }

  .nav h2 {
    margin-right: auto;
  }

  body.mini-menu-open {
    overflow: hidden;
  }
}
