html {
  width: 100%;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-between;
  align-items: center;

  position: relative;

  margin: 0;
  padding: 0;

  width: 100%;
  height: 100%;

  background-color: #0c0201;
}

/* 🎨 HEADER */
.header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  width: 100%;
  height: 11%;

  background: linear-gradient(135deg, #ff6a00, #591208);
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  animation: fadeInDown 1s ease;
}

.header .base {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;

  width: 99.5%;
  height: 90%;

  background: rgba(12, 2, 1, 0.95);
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 📌 LOGO */
.header .base .logo-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10%;
  height: 100%;
}

.header .base .logo-bar img {
  height: 65%;
  filter: drop-shadow(0 0 8px rgba(255, 120, 0, 0.7));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.header .base .logo-bar img:hover {
  transform: scale(1.1) rotate(-5deg);
  filter: drop-shadow(0 0 15px rgba(255, 180, 0, 1));
}

/* 📥 DOWNLOAD BAR */
.header .base .download-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
  flex-wrap: wrap;

  width: 25%;
  height: 100%;
}

.header .base .download-bar a,
.navbar .base .downloader a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;

  margin: 0.4rem;
  padding: 0.75rem 1.25rem;

  font-family: "Roboto Mono", monospace;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;

  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.25);

  /* Glass effect */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);

  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);

  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.header .base .download-bar a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.header .base .download-bar a:hover::before {
  left: 125%;
}

/* Free button */
.header .base .download-bar .free-button,
.navbar .base .downloader .free-button {
  background: rgba(50, 150, 255, 0.15);
  border: 1px solid rgba(50, 150, 255, 0.5);
}

.header .base .download-bar .free-button:hover,
.navbar .base .downloader .free-button:hover {
  background: rgba(50, 150, 255, 0.3);
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 0 20px rgba(50, 150, 255, 0.7);
}

/* Premium button */
.header .base .download-bar .premium-button,
.navbar .base .downloader .premium-button {
  background: rgba(255, 215, 0, 0.15);
  border: 1px solid rgba(255, 215, 0, 0.5);
}

.header .base .download-bar .premium-button:hover,
.navbar .base .downloader .premium-button:hover {
  background: rgba(255, 215, 0, 0.35);
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

/* Button icons */
.header .base .download-bar a svg,
.navbar .base .downloader a svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.header .base .download-bar a:hover svg {
  transform: translateY(-2px) rotate(-5deg);
}

/* 🔘 BUTTONS BAR */
.header .base .buttons-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;

  width: 50%;
  height: 100%;
}

.header .base .buttons-bar a,
.navbar .buttons a {
  display: flex;
  align-items: center;
  justify-content: center;

  margin: 7px;
  padding: 9px 16px;

  font-family: sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;

  background: linear-gradient(135deg, #ffef78, #ffce45);
  border: 1px solid #fff186;
  border-radius: 30px;

  color: #000;
  transition: all 0.35s ease;
  box-shadow: 0 4px 10px rgba(255, 180, 0, 0.4);
}

.header .base .buttons-bar a:hover,
.navbar .buttons a:hover {
  background: linear-gradient(135deg, #3a3513, #5c4e0a);
  border: 1px solid #8b7b00;
  color: #fff;

  box-shadow: 0 0 12px 4px #ffef78;
  transform: translateY(-2px) scale(1.05);
}

.header .base .buttons-bar a svg,
.navbar .buttons a svg {
  margin-right: 5px;
}

/* 🍔 HUMBERGER BAR */
.header .base .humber-bar {
  display: none;
  justify-content: center;
  align-items: center;
  justify-content: flex-end;
  margin-right: 1rem;
  width: 80%;
  height: 100%;
}

.header .base .humber-bar button {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 3rem;
  height: 3rem;

  background: linear-gradient(135deg, #fff07e, #ffce45);
  border: 1px solid #591208;
  border-radius: 12px;
  color: #5f5f5f;

  transition: all 0.35s ease;
}

.header .base .humber-bar button:hover {
  background: #fff07e;
  border: 1px solid #ff9100;
  box-shadow: 0 0 10px 3px #ffb300;
  transform: scale(1.05);
}

/* Dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown button */
.dropdown .dropbtn {
  background: linear-gradient(135deg, #ffef78, #ffce45);
  color: #000;
  padding: 9px 16px;
  font-family: sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid #fff186;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 4px 10px rgba(255, 180, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* Hover effect for button */
.dropdown:hover .dropbtn {
  background: linear-gradient(135deg, #3a3513, #5c4e0a);
  color: #fff;
  box-shadow: 0 0 12px 4px #ffef78;
  transform: translateY(-2px) scale(1.05);
}

/* Dropdown content */
.dropdown-content {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 110%;
  left: -4rem;

  background: rgba(12, 2, 1, 0.95);
  border: 1px solid #8b7b00;
  border-radius: 12px;
  min-width: 180px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.5);
  z-index: 20;
  overflow: hidden;
  backdrop-filter: blur(8px) saturate(150%);
  -webkit-backdrop-filter: blur(8px) saturate(150%);
  transition: all 0.35s ease;
  transform: translateY(-10px);
}

/* Show dropdown with smooth animation */
.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown links */
.dropdown-content a {
  display: block;
  padding: 10px 16px;
  color: #ffef78;
  font-family: "Kanit", sans-serif;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

/* Hover for dropdown links */
.dropdown-content a:hover {
  background: linear-gradient(120deg, #3a3513, #5c4e0a);
  color: #fff;
  transform: scale(1.03);
}

/* ✨ Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main {
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-wrap: nowrap;
  flex-direction: column;

  background: linear-gradient(135deg, #ff6a00, #591208);

  border-radius: 30px;

  width: 100%;

  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.main .base {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  align-content: center;

  overflow: hidden;

  width: 99.85%;
  height: 99.85%;

  border-radius: 30px;

  background: #0c0201;
}
/* ================= ANIMATED LOGO CONTAINER ================= */
.picture-features {
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.animated-logo-container {
  display: flex;
  align-items: center;
  justify-content: space-evenly;

  gap: 25px;

  margin: 30px auto;

  width: 100%;

  padding-top: 5rem;
  padding-bottom: 5rem;

  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  background: rgba(12, 2, 1, 0.6);
  border-bottom: 1px solid rgba(255, 200, 0, 0.25);
  animation: fadeInUp 1s ease;
}

/* ================= LOGO IMAGE AND GLOW ================= */
.animated-logo {
  position: relative;
  flex-shrink: 0;
}

.animated-logo img.logo-picture {
  width: 14rem;
  border-radius: 50%;
  filter: drop-shadow(0 0 15px rgba(36, 29, 10, 0.9));
  animation: rotateLogo 10s linear infinite;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.animated-logo:hover img.logo-picture {
  transform: scale(1.25);
  filter: drop-shadow(0 0 40px rgba(255, 255, 255, 1));
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 140%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: pulseGlow 2s infinite alternate;
  pointer-events: none;
}

/* ================= LOGO TEXT ================= */
.logo-text {
  color: #ffffff;
  font-family: "Kanit", sans-serif;

  display: flex;
  flex-direction: column;
  align-items: center;

  max-width: 65%;
}

.logo-text h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 12px;

  width: fit-content;
}

.logo-text p {
  font-size: 1rem;
  line-height: 1.7;
  width: 70%;
  max-width: 100%;
  color: #ffffff;
  text-align: left;
}

/* ================= ANIMATIONS ================= */
@keyframes rotateLogo {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulseGlow {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .animated-logo-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0;

    width: 100%;
  }

  .logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;

    max-width: 95%;
  }

  .logo-text p {
    text-align: center;
    width: 95%;
  }
}

.description {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
  animation: fadeInUp 1.2s ease;
}

.description .text span {
  color: #ffeaa0;
  font-family: "Kanit", sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 950px;
  text-shadow: 0 0 8px rgba(255, 180, 0, 0.5);
}

/* ================= INFORMATION ================= */
.information {
  text-align: center;
  color: #ffef78;
  font-family: "Kanit", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  max-width: 950px;
  margin: 0 auto;
  text-shadow: 0 0 6px rgba(255, 200, 0, 0.4);
  animation: fadeInUp 1.5s ease;
}

/* ================= FEATURES LIST ================= */
.features-list {
  width: 98%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  margin-top: 40px;
  animation: fadeInUp 1.5s ease;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0.5rem;
  font-family: "Vazirmatn", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff186;
  text-shadow: 0px 0px 4px rgba(255, 180, 0, 0.4);
  border-bottom: 2px solid #fff186;

  text-align: center;

  padding: 0.5rem;

  width: fit-content;
}

.section-title svg {
  height: 1.5rem;
  fill: #ff7f00; /* نارنجی پررنگ */
}

.features-list ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  width: 100%;

  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  padding: 0;
}

.features-list li {
  border-radius: 25px;
  padding: 20px 25px;
  color: #ffffff;
  font-family: "Kanit", sans-serif;
  font-size: 0.95rem;
  width: 18rem;
  margin: 1rem;

  transition: all 0.5s ease;

  background: rgba(255, 165, 0, 0.15);
  border: 1px solid rgba(255, 180, 0, 0.35);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.25),
    inset 0 0 12px rgba(255, 200, 0, 0.15);
  backdrop-filter: blur(14px) saturate(180%);
}

.features-list li:hover {
  transform: translateY(-6px) scale(1.04);
  background: rgba(30, 5, 0, 0.65);
  box-shadow: 0 10px 28px rgba(255, 180, 0, 0.7),
    inset 0 0 15px rgba(255, 220, 0, 0.2);
}

/* ================= PRICING CARDS ================= */
.pricing-cards {
  width: 98%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 4rem 0;
  animation: fadeInUp 1.5s ease;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Cards container */
.pricing-cards .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 2rem;
}

/* Individual card */
.pricing-cards .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-width: 18rem;
  max-width: 18rem;
  min-height: 32vh;
  padding: 2rem 1.5rem;
  margin: 1rem;
  border-radius: 20px;

  /* Glassy soft orange look */
  background: rgba(255, 165, 0, 0.15);
  border: 1px solid rgba(255, 180, 0, 0.35);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.25),
    inset 0 0 12px rgba(255, 200, 0, 0.15);
  backdrop-filter: blur(14px) saturate(180%);
  text-align: center;
  transition: all 0.35s ease;
}

/* Hover effect for cards */
.pricing-cards .card:hover {
  transform: translateY(-6px) scale(1.05);
  min-height: 36vh;
  background: rgba(255, 165, 0, 0.25);
  box-shadow: 0 0 30px rgba(255, 180, 0, 0.6),
    inset 0 0 18px rgba(255, 220, 0, 0.2);
}

/* Card heading */
.pricing-cards .card h3 {
  font-size: 1.75rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
}

/* Feature list */
.pricing-cards .card ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1.5rem 0;
  text-align: left;
}

.pricing-cards .card ul li {
  position: relative;
  margin-bottom: 0.7rem;
  padding-left: 1.8rem;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Bullet icon */
.pricing-cards .card ul li::before {
  content: "🔥";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1rem;
}

/* Price box */
.pricing-cards .card .price {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Old price (line-through) */
.pricing-cards .card .old-price {
  font-size: 1.1rem;
  color: #ff9999;
  text-decoration: line-through;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

/* New price (highlighted) */
.pricing-cards .card .new-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: #00ffcc;
  text-shadow: 0 0 6px rgba(0, 255, 200, 0.6);
}

/* Button styling */
.pricing-cards .card .btn {
  display: inline-block;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 1rem;
  color: #000;
  background: linear-gradient(135deg, #ffd86b, #ffc85c);
  border-radius: 30px;
  border: 1px solid #fff1a8;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 6px 18px rgba(255, 180, 0, 0.5);
}

.pricing-cards .card .btn:hover {
  background: linear-gradient(135deg, #ffb347, #ff9f00);
  color: #fff;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 0 20px 6px #ffd86b, 0 0 10px #ff9f00 inset;
}
/* ================= Animations ================= */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0% {
    filter: blur(15px);
    opacity: 0.7;
  }
  100% {
    filter: blur(28px);
    opacity: 1;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotateBackground {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

/* ================= Responsive ================= */
@media (max-width: 900px) {
  .features-list ul {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }
  .picture {
    width: 180px;
    height: 180px;
  }
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-wrap: nowrap;
  flex-direction: column;

  background: linear-gradient(135deg, #ff6a00, #591208);

  border-top-left-radius: 30px;
  border-top-right-radius: 30px;

  min-height: 3rem;
  min-width: 100%;
}

.footer .base {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  align-items: center;
  align-content: center;

  min-width: 99.5%;
  min-height: 2.7rem;

  border-top-left-radius: 30px;
  border-top-right-radius: 30px;

  background: #0c0201;
}

.footer .base .copytight {
  text-decoration: none;
  color: white;

  text-align: center;

  font-family: "Roboto Mono", monospace;
  font-size: 0.65rem;
}

.footer .base .creator {
  text-decoration: none;
  color: white;

  font-family: "Roboto Mono", monospace;
  font-size: 0.65rem;
}

.footer .base .creator a {
  text-decoration: none;
  font-family: "Kanit", sans-serif;
}

.navbar {
  display: none;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-wrap: nowrap;
  flex-direction: row;

  width: 100%;
  height: 100%;

  background: linear-gradient(135deg, #ff6a00, #591208);

  position: absolute;
}

.navbar .base {
  width: 99%;
  height: 99%;

  background: rgba(12, 2, 1, 0.95);
}

.navbar .base .head {
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-wrap: nowrap;
  flex-direction: row;

  width: 100%;
  height: 15%;

  border-bottom: #ff6a00 1px solid;
}

.navbar .base .head .text {
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  flex-wrap: nowrap;

  width: 75%;
  height: 100%;
}

.navbar .base .head .text span {
  color: #fff;

  font-family: "Kanit", sans-serif;
  font-size: large;

  padding-left: 15%;
}

.navbar .base .head .close {
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  flex-wrap: nowrap;

  width: 25%;
  height: 100%;
}

.navbar .base .head .close button {
  background: none;
  border: none;

  color: #ffef78;
}

.navbar .base .head .close button:hover {
  color: #afa23f;
}

.navbar .base .buttons {
  width: 100%;
  height: 70%;

  overflow: auto;

  display: flex;
  flex-direction: column;
  align-content: center;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.navbar .base .downloader {
  width: 100%;
  height: 15%;

  display: flex;
  flex-direction: column;
  align-content: center;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.navbar .buttons a {

}

.main .base .help-section {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  width: 100%;
}

.main .base .help-section .title {
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-wrap: nowrap;
  flex-direction: row;

  margin: 20px;
  padding: 20px;

  border-bottom: 1px solid #fff186;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;

  font-family: "Roboto Mono", monospace;
  font-size: large;
  color: #fff186;
}

.main .base .help-section .title svg {
  padding-right: 5px;
}

.main .base .help-section .guide {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;

  width: 100%;
}

.main .base .help-section .guide .row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: center;
  justify-content: center;

  margin: 10px;

  width: 30%;
}

.main .base .help-section .guide .row button {
  background: none;
  border: none;
}

.main .base .help-section .guide .row button:hover {
  background: none;
  border: none;

  cursor: pointer;
}

.main .base .help-section .guide .row span {
  color: #fff;

  font-family: "Roboto Mono", monospace;
  font-size: small;

  text-align: center;

  padding-bottom: 10px;

  width: 100%;
}

.main .base .help-section .guide .row img {
  width: 75%;
}

.photoViewer {
  position: absolute;

  display: none;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;

  overflow: hidden;

  background-color: #5f5f5f87;

  width: 100%;
  height: 100%;
}

.photoViewer .closeButton {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: flex-end;

  width: 100%;
  height: 10%;
}

.photoViewer .closeButton button {
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-wrap: nowrap;
  flex-direction: column;

  color: #000000;

  margin-right: 1%;
  padding: 5px;

  background: linear-gradient(135deg, #ff6a00, #591208);

  border: none;
  border-radius: 30px;

  width: 3%;
}

.photoViewer .closeButton button:hover {
  cursor: pointer;
}

.photoViewer .photoArea {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;

  width: 100%;
  height: 90%;
}

.photoViewer .photoArea img {
  object-fit: cover;
  object-position: center;

  height: 75%;
}

@media only screen and (max-width: 1050px) {
  .header .base .logo-bar {
    width: 50%;
  }
  .main .base {
    width: 98.5%;
    justify-content: unset;
  }
  .pricing-cards .card {
    padding-right: 0;
    padding-left: 0;
  }
  .main .base .description {
    flex-direction: column;

    margin-top: 15%;
    margin-bottom: 15%;
    height: 100%;
    width: 95%;
  }
  .main .base .information {
    height: fit-content;
  }
  .main .base .description .text {
    height: unset;
    width: 95%;
  }
  .main .base .information {
    margin-top: 15%;
    margin-bottom: 15%;
    height: 100%;
    width: 95%;
  }
  .main .base .description .picture {
    height: 50%;
  }
  .header .base {
    width: 98.5%;
  }
  .header .base .download-bar {
    display: none;
  }
  .header .base .buttons-bar {
    display: none;
  }
  .header .base .humber-bar {
    display: flex;
  }
  .navbar {
    display: none;
  }
  .main .base .help-section .guide {
    flex-direction: column;
  }
  .main .base .help-section .guide .row {
    margin: 0;
    width: 90%;
    margin-top: 10%;
    margin-bottom: 10%;
  }
  .photoViewer .photoArea img {
    height: unset;
    width: 90%;
  }
  .photoViewer .closeButton button {
    width: 10%;
  }
}

@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
