@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Elms+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Birthstone&display=swap");

@layer reset {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  /* https://kilianvalkhof.com/2022/css-html/your-css-reset-needs-text-size-adjust-probably/ */
  html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
  }

  body,
  h1,
  h2,
  h3,
  h4,
  p,
  figure,
  blockquote,
  dl,
  dd {
    margin: 0;
  }

  /* https://www.scottohara.me/blog/2019/01/12/lists-and-safari.html */
  [role="list"] {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  body {
    min-block-size: 100vh;
    line-height: 1.6;
    font-family: "Elms Sans", sans-serif;
    box-sizing: border-box;
  }

  h1,
  h2,
  h3,
  button,
  input,
  label {
    line-height: 1.1;
  }

  h1,
  h2,
  h3,
  h4 {
    text-wrap: balance;
  }

  p,
  li {
    text-wrap: pretty;
  }

  img,
  picture {
    max-inline-size: 100%;
    display: block;
  }

  input,
  button,
  textarea,
  select {
    font: inherit;
  }
}

:root {
  --cream: #513808;
  --ink: #ffffff;
  --muted: #a6a6a6;
  --accent: #987047;
  --soft: #f1ece3;
  --purple-light: #eeedfe;
  --border: rgba(40, 40, 40, 0.12);
  --shop: #ab4382;

  --accent: #b5793f;
  --text-main: #2b2823;
  --text-muted: #6f6a61;
  --bg-soft: #faf8f5;
  --border-soft: #e7e2d9;

  --decorate: "Dancing Script";
  --common: "Elms Sans", sans-serif;
}

main {
  background-image: url(./assets/MainPage/womablacked.webp);
  width: 100%;
  min-height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0.5%;
  position: relative;
  z-index: 99;
  top: 0;
  left: 0;
}

@media screen and (max-width: 768px) {
  main {
    background-image: url(./assets/MainPage/woma3blacked.webp);
  }
}

/*------ Navigatooorrrr -----*/

nav {
  position: fixed;
  top: 1%;
  left: 10%;
  z-index: 100;
  border-bottom: 0.5px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 3rem;
  background-color: rgba(0, 0, 0, 0.594);
  width: 80%;
  margin: 0% auto;
  border-radius: 2rem;
}

.logo {
  font-family: "Dancing Script", cursive;
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: white;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-size: 1rem;
  color: white;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: 0.2s;
  font-family: "Elms Sans", sans-serif;
}

.nav-links a:hover {
  color: var(--shop);
  text-shadow: 3px 3px 10px rgb(120, 3, 75);
}

.nav-shop {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 400;
  padding: 7px 18px;
  border-radius: 40px;
  background: var(--shop);
  color: rgb(35, 2, 35) !important;
  border: 0.5px solid rgba(83, 74, 183, 0.3);
  transition: 0.2s !important;
}

.nav-shop:hover {
  background: #cecbf6 !important;
}

li button {
  background-color: transparent;
  border: none;
  width: 100%;
  display: block;
}

li.phone {
  display: none;
}

@media screen and (max-width: 1100px) {
  .nav-links a {
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    transition: 0.2s;
  }

  nav {
    width: 85%;
    left: 7.5%;
  }
}

@media screen and (max-width: 992px) {
  li.phone {
    display: block;
  }

  li.desktop {
    display: none;
  }

  nav {
    width: 90%;
    left: 5%;
  }

  .logo {
    font-size: 1.9rem;
    font-weight: 400;
    letter-spacing: 0.1em;
  }

  .nav-links {
    padding: 0%;
  }
}

@media screen and (max-width: 675px) {
  nav {
    padding: 0.9rem 2rem;
  }

  .logo {
    font-size: 1.8rem;
  }

  .nav-links {
    gap: 0.5rem;
  }
}

@media screen and (max-width: 475px) {
  nav {
    padding: 0.7rem 1rem;
  }

  .logo {
    font-size: 1.5rem;
  }

  .nav-links {
    gap: 0.2rem;
  }

  .nav-shop {
    display: none;
  }
}

/*--PhoneMenu---*/

#PhoneMenu {
  display: none;
  background-color: rgba(0, 0, 0, 0.495);
  backdrop-filter: blur(15px);
  position: fixed;
  z-index: 150;
  width: 100%;
  height: 100vh;
}

.Organizer {
  width: 90%;
  margin: auto;
}

.OrganizerLogo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 0rem;
  margin-bottom: 2rem;
}

.OrganizerLogo #menu {
  background-color: transparent;
  border: none;
  scale: 1.5;
  transition: 0.5s;
}

.OrganizerLogo #menu:hover {
  scale: 1.8;
  rotate: calc(365deg);
}

.OrganizerTabs .Tab {
  height: 4rem;
  text-decoration: none;
  color: rgb(255, 255, 255);
  display: block;
  background-color: #00000040;
  border-radius: 15px;
  display: grid;
  align-items: center;
  padding: 0% 4%;
  margin: 1% 0%;
  transition: 0.3s;
  box-shadow: 1px 1px 5px rgba(45, 45, 45, 0.329);
  font-size: 1rem;
}

.OrganizerTabs .Tab:hover {
  background-color: #750c4b84;
  font-weight: bolder;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.571);
  scale: 1.03;
}

.OrganizerTabs .nav-shop {
  background-color: #ab4382;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.OrganizerSocial {
  display: flex;
  width: 100%;
  gap: 10px 10px;
  padding: 2% 2%;
}

.OrganizerSocial img {
  width: 2.2rem;
  transition: 0.4s;
}

.OrganizerSocial img:hover {
  scale: 1.1;
}

/*------ Section with hero text -----*/

.hero-text {
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: right;
  border-right: 0.5px solid var(--border);

  font-family: "Elms Sans", sans-serif;

  height: 85vh;
  position: absolute;
  bottom: 3%;
  right: 5%;
}

.hero-tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}

.hero-title {
  font-family: "Elms Sans", sans-serif;
  font-size: clamp(52px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 2rem;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 3rem;
}

.hero-btns {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

.btn-primary,
.btn-ghost {
  display: inline-block;
  padding: 0.8rem 3rem;
  background: var(--ink);
  color: var(--cream);
  font-family: "Elms Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn-primary:hover,
.btn-ghost:hover {
  opacity: 0.9;
  box-shadow: 1px 1px 3px rgb(18, 18, 18);
  transition: 0.2s;
  scale: 1.01;
}

.btn-ghost {
  color: var(--ink);
  background-color: #987047;
  border: 0.5px solid var(--border);
}

@media screen and (max-width: 1500px) {
  .hero-text {
    bottom: 1%;
    right: 5%;
  }
}

@media screen and (max-width: 576px) {
  .hero-tag {
    font-size: 10px;
    margin-bottom: 1.5rem;
  }

  .hero-title {
    font-family: "Elms Sans", sans-serif;
    font-size: clamp(48px, 5vw, 64px);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 1.5rem;
  }

  .hero-sub {
    font-size: 1rem;
    margin-bottom: 3rem;
  }

  .hero-text {
    padding: 2rem 2rem;
  }
}

@media screen and (max-width: 505px) {
  .hero-btns {
    display: flex;
    gap: 10px;
    text-align: center;
  }

  .btn-primary,
  .btn-ghost {
    display: block;
    padding: 0.9rem 0em;
    width: 45%;
    border-radius: 3px;
  }
}

@media screen and (max-width: 460px) {
  .hero-btns {
    display: block;
  }

  .btn-primary,
  .btn-ghost {
    display: block;
    padding: 0.9rem 0em;
    width: 100%;
    border-radius: 3px;
    margin-bottom: 10px;
  }

  .hero-tag {
    font-size: 0.5rem;
    margin-bottom: 1.5rem;
  }
}

@media screen and (max-width: 385px) {
  .hero-tag {
    display: none;
  }

  .hero-sub {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    padding: 0%;
  }
}

/*---About me---*/

.aboutMe {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 7rem 5%;
  align-items: center;
}

.meDescription {
  padding: 2.5rem;
}

.meDescription h2 {
  font-size: 2rem;
  font-weight: 500;
  margin: 0 0 1.25rem;
  line-height: 1.2;
}

.meDescription p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

.mePhotos {
  background-color: transparent;
  width: 100%;
  height: 480px;
  position: relative;
}

.PicContainer {
  background-color: transparent;
  position: relative;
  width: 100%;
  height: 100%;
}

#myPic1 {
  width: 58%;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 12px;
  box-shadow: 1px 8px 32px rgba(0, 0, 0, 0.52);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 4px solid #ffffff;
}

#myPic2 {
  width: 52%;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 12px;
  box-shadow: 1px 8px 32px rgba(0, 0, 0, 0.336);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 4px solid #ffffff;
}

@media screen and (max-width: 1100px) {
  .mePhotos {
    height: 420px;
  }

  #myPic1 {
    width: 60%;
  }

  #myPic2 {
    width: 54%;
  }

  .meDescription {
    padding: 2rem;
  }

  .meDescription h2 {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 992px) {
  .aboutMe {
    display: block;
  }

  .meDescription {
    padding: 2rem 2rem 4rem 2rem;
  }

  .mePhotos {
    height: 40rem;
  }

  #myPic1 {
    width: 50%;
    top: 0%;
    right: 2%;
    height: 580px;
  }

  #myPic2 {
    width: 50%;
    bottom: 0%;
    left: 2%;
    height: 580px;
  }

  .meDescription h2 {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 678px) {
  #myPic1 {
    right: 1%;
  }

  #myPic2 {
    left: 1%;
  }
}

@media screen and (max-width: 576px) {
  .mePhotos {
    height: 65rem;
  }

  #myPic1 {
    width: 90%;
    right: -2%;
  }

  #myPic2 {
    width: 90%;
    left: -2%;
    top: 45%;
  }
}

@media screen and (max-width: 400px) {
  .mePhotos {
    height: 65rem;
  }

  #myPic1 {
    width: 95%;
    right: -2%;
  }

  #myPic2 {
    width: 98%;
    left: -2%;
    top: 45%;
  }

  .meDescription h2 {
    font-size: 1.5rem;
  }

  .meDescription p {
    font-size: 15px;
  }
}

@media screen and (max-width: 345px) {
  .meDescription h2 {
    font-size: 1.35rem;
  }

  .meDescription p {
    font-size: 14px;
  }
}

/*---Portfolio---*/
/*---Portfolio---*/
/*---Portfolio---*/
/*---Portfolio---*/
/*---Portfolio---*/
/*---Portfolio---*/
/*---Portfolio---*/
/*---Portfolio---*/
/*---Portfolio---*/
/*---Portfolio---*/
/*---Portfolio---*/
/*---Portfolio---*/
/*---Portfolio---*/
/*---Portfolio---*/
/*---Portfolio---*/

/*---Portfolio---*/

.slideshow {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
  height: 100%;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide .zdjatka {
  display: flex;
  overflow: hidden;
  height: 100%;
}

.slide img.phone {
  display: none;
}

.slide img {
  width: 33.33%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
}

.Phoneslide {
  display: none;
}

@media (max-width: 992px) {
  .slideshow {
    width: 100%;
    height: 100vh;
    overflow: visible;
  }

  .slide {
    height: 100%;
  }

  .slide .zdjatka {
    display: none;
  }

  .slide img.phone {
    display: block;
    height: 100%;
    width: auto;
    margin: auto;
  }

  .slideshow .dots {
    display: none;
  }

  .Phoneslide {
    display: block;
  }
}

@media (max-width: 500px) {
  .slideshow {
    height: 80vh;
  }

  .slide img.phone {
    height: 100%;
    width: 100%;
  }
}

/* Arrows */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(14, 13, 12, 0.35);
  border: 1px solid rgba(243, 239, 232, 0.35);
  color: var(--ink);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
  backdrop-filter: blur(4px);
}

.nav-arrow:hover {
  background: rgba(201, 163, 106, 0.85);
  border-color: var(--accent);
}

.nav-arrow:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.nav-arrow.prev {
  left: 24px;
}
.nav-arrow.next {
  right: 24px;
}

.nav-arrow svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Progress dots */
.dots {
  position: absolute;
  bottom: 8%;
  right: 5%;
  display: flex;
  gap: 10px;
  z-index: 5;
}

.dot {
  width: 34px;
  height: 3px;
  background: rgba(243, 239, 232, 0.3);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.dot.active::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  animation: fillDot 5s linear forwards;
}

.dot.complete::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
}

@keyframes fillDot {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .slide {
    transition: none;
  }
  .dot.active::after {
    animation: none;
    transform: scaleX(1);
  }
}

@media (max-width: 600px) {
  .slide-caption {
    left: 6%;
    right: 6%;
    bottom: 14%;
    max-width: none;
  }
  .dots {
    right: 6%;
    bottom: 6%;
  }
  .nav-arrow {
    width: 40px;
    height: 40px;
  }
  .nav-arrow.prev {
    left: 12px;
  }
  .nav-arrow.next {
    right: 12px;
  }
}

/*---Portfolio---*/
/*---Portfolio---*/
/*---Portfolio---*/
/*---Portfolio---*/
/*---Portfolio---*/
/*---Portfolio---*/
/*---Portfolio---*/
/*---Portfolio---*/
/*---Portfolio---*/

/*---Offer---*/

section.price {
  background-color: #f4f2f0;
  width: 100%;
  padding: 5rem 1.5rem;
  font-family: var(--common);
}

.uslugi {
  max-width: 1080px;
  margin: 0 auto;
}

.uslugiText {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}

.uslugiEyebrow {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 12px;
}

.uslugiText h2 {
  font-size: 34px;
  font-weight: 600;
  margin: 0 0 16px;
  line-height: 1.2;
}

.uslugiText p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

.uslugiContainer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.karta {
  border: 1px solid var(--border-soft);
  border-radius: 15px;
  padding: 32px 28px;
  background: var(--bg-soft);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.karta:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.kartaIkona {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 20px;
}

.karta h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
}

.karta p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 16px;
}

.kartaCena {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  border-top: 1px solid var(--border-soft);
  padding-top: 14px;
  width: 100%;
}

/*--*/

.cennik {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: 15px;
  padding: 48px;
}

.cennikTekst {
  flex: 1;
  min-width: 220px;
  max-width: 650px;
}

.cennikTekst h3 {
  font-size: 2.2rem;
  font-weight: 600;
  margin: 0 0 14px;
  color: #ab4382;
}

.cennikTekst p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 24px;
}

.cennikButton {
  display: inline-block;
  background: var(--shop);
  color: #fff;
  border: none;
  font-size: 14.5px;
  font-weight: 600;
  padding: 3% 10%;
  border-radius: 15px;
  transition: opacity 0.2s ease;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.634);
  text-decoration: none;
}

.cennikButton:hover {
  opacity: 0.88;
}

.cennikImg {
  flex: 1;
}

.cennikImg img {
  width: 100%;
  display: block;
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.427);
}

@media screen and (max-width: 992px) {
  .cennik {
    display: block;
  }

  .cennikTekst {
    flex: 1;
    margin-bottom: 8%;
  }
}

@media (max-width: 800px) {
  .uslugiContainer {
    grid-template-columns: 1fr;
  }

  .uslugiText h2 {
    font-size: 28px;
  }

  .cennikTekst h3 {
    font-size: 1.7rem;
  }

  .cennikTekst p {
    font-size: 15px;
  }

  .cennikTekst {
    flex: 1;
    margin-bottom: 12%;
  }
}

@media (max-width: 678px) {
  .cennik {
    padding: 48px 24px;
  }
}

@media (max-width: 442px) {
  .cennik {
    padding: 16px 0px;
    background: transparent;
    border: none;
  }

  .cennikTekst {
    min-width: 200px;
    text-align: center;
    margin-bottom: 20%;
  }

  .cennikButton {
    display: inline-block;
    padding: 4% 15%;
  }

  .cennikImg img {
    scale: 1.06;
  }
}

/*--Parallax (couple)--*/

.parallax {
  position: relative;
  background-image: url(./assets/MainPage/parka.jpeg);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 45vh;
  color: white;
  padding-bottom: 5%;
  padding-right: 5%;

  display: flex;
  justify-content: right;
  align-items: flex-end;
}

.parallax::before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.237);
  inset: 0rem;
  box-shadow: inset 0px 1px 10px rgb(55, 55, 55);
}

.parallax h2 {
  color: white;
  font-style: italic;
  font-family: "Birthstone";
  font-size: 2.1rem;
  letter-spacing: 3px;
}

@media screen and (max-width: 992px) {
  .parallax {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 0%;
    padding-right: 0%;
  }

  .parallax h2 {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 735px) {
  .parallax {
    min-height: 50vh;
    padding: 0% 5%;
    background-image: url(./assets/MainPage/parkaPhone.webp);
  }

  .parallax h2 {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 550px) {
  .parallax h2 {
    font-size: 2.5rem;
  }
}

/*--Foooter--*/

footer {
  background-color: rgb(23, 22, 22);
  color: white;
  width: 100%;
}

article {
  width: 80%;
  margin: auto;
  height: 100%;
  background-color: rgb(23, 22, 22);
  padding: 5% 0%;
}

.footer-main {
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.footer-main ul {
  list-style-type: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.footer-main ul img {
  width: 40px;
}

.footer-rights hr {
  background-color: rgb(144, 144, 144);
  border: none;
  padding: 0%;
  margin: 0%;
  height: 1px;
  margin-bottom: 1rem;
}

.footer-rights {
  width: 100%;
  padding: 0%;
  margin: 0%;
}

.footer-rights ul {
  width: 100%;
  color: rgb(211, 211, 211);
  display: flex;
  justify-content: space-between;
  list-style-type: none;
  padding: 0%;
  margin: 0%;
}

.footer-rights li {
  letter-spacing: 0.5px;
  font-size: 12px;
}

.footer-rights a {
  color: rgb(212, 0, 163);
  text-decoration: none;
  font-weight: 500;
}

@media screen and (max-width: 695px) {
  article {
    padding: 10% 0%;
  }

  .footer-main {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    text-align: left;
  }

  .footer-main ul {
    display: flex;
    align-items: left;
    justify-content: left;
    gap: 5px;
    padding: 0%;
    margin: 0%;
  }

  .footer-main ul li {
    margin: 2% 0%;
  }

  .footer-main .logo {
    font-size: 2rem;
  }

  .footer-main ul img {
    width: 35px;
  }

  .footer-main hr {
    height: 0.5px;
  }

  .footer-rights ul {
    display: block;
  }

  .footer-rights li {
    font-size: 11px;
  }
}

@media screen and (max-width: 430px) {
  .footer-main .logo {
    font-size: 1.7rem;
  }

  .footer-rights li {
    font-size: 9px;
  }
}