:root {
  /* ========== GREEN THEME ========== */
  --color-primary: #ff7b02;
  --color-primary-variant: #e5a55d;
  --color-bg-1: #000e17;
  --color-bg-2: #001e2d;
  --color-bg-3: #012734;
  --color-bg-4: #003347;
  --color-light: #85a2b2;
  --color-white: hsl(0, 0%, 90%);

  /* ========== PURPLE THEME ========== */
  /* --color-primary: #ff7b02;
    --color-primary-variant: #e5a55d;
    --color-bg-1: #140021;
    --color-bg-2: #1e0032;
    --color-bg-3: #25003e;
    --color-bg-4: #36005a;
    --color-light: #d0b8e0;
    --color-white: hsl(0, 0%, 90%); */

  --container-width-lg: 88%;
  --container-width-md: 92%;
  --container-width-sm: 98%;

  --transition: all 400ms ease;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 0.5rem;
  background: rgb(229, 165, 93, 0.2);
}

::-webkit-scrollbar-thumb {
  width: 100%;
  background: var(--color-primary-variant);
  border-radius: 0.25rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--color-bg-3);
  color: var(--color-light);
  line-height: 1.7;
}

h1,
h2 {
  line-height: 1.1;
  font-weight: 400;
}

h1 {
  font-size: 4rem;
  color: var(--color-white);
}

h2 {
  font-size: 3.5rem;
}

a {
  color: var(--color-light);
  transition: var(--transition);
}

a:hover {
  color: var(--color-primary);
}

.container {
  width: var(--container-width-lg);
  margin: 0 auto;
  max-width: 2160px;
}

img {
  display: block;
  object-fit: cover;
  width: 100%;
}

/* ========================= NAV ========================= */
nav {
  height: 5rem;
  width: 100vw;
  display: grid;
  place-items: center;
  position: fixed;
  top: 0rem;
  left: 0;
  z-index: 99;
}

/* nav class on scroll using javascript */
.window-scrolled {
  background: var(--color-bg-2);
  border-bottom: 0.2rem solid var(--color-bg-3);
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.3);
}

.nav__container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__links {
  margin-top: 2rem;
}
.nav__title {
  cursor: pointer;
  max-width: 20%;
  display: flex;
  justify-content: center;
  font-weight: 200;
  margin-left: 1.5rem;
  font-size: 1.3rem;
  margin-top: 0.2rem;
}
.nav__links ul {
  position: relative;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: -3rem;
  font-weight: bold;
}
.nav__links ul li {
  position: relative;
  list-style: none;
  transition: 0.5s;
  visibility: hidden;
  opacity: 0;
  transform: translateX(-150px);
  transition-delay: calc(0.2s * var(--j));
}
.nav__links ul li a {
  position: relative;
  text-decoration: none;
  width: 80%;
  box-shadow: -0.5rem 1rem 1rem rgba(0, 0, 0, 0.7);
  top: 2rem;
  padding: 10px 50px;
  height: 50px;
  display: block;
  border-radius: 0.5rem;
  background: var(--color-bg-2);
}
.nav__links.active ul li {
  visibility: visible;
  opacity: 1;
  transform: translateX(-2rem);
  transition-delay: calc(0.1s * var(--j));
}
.nav__links.active ul li:hover {
  color: var(--color-primary);
}
/* only need on tablets and phones */
.nav__toggle-btn {
  display: none;
}

.nav__logo {
  position: relative;
  display: flex;
  width: 10rem;
  bottom: 2rem;
}

.nav__links {
  display: flex;
  gap: 4rem;
}

.nav__socials {
  position: relative;
  display: flex;
  gap: 1rem;

  bottom: 1.8rem;
}

.nav__socials a {
  width: 2rem;
  height: 2rem;
  background: linear-gradient(
    var(--color-primary-variant),
    var(--color-primary)
  );
  border-radius: 0.5rem;
  color: var(--color-bg-4);
  display: grid;
  place-items: center;
}

.nav__socials a:hover {
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.4);
}

/* ========================= HEADER ========================= */
header {
  max-width: 100vw;
  height: 100vh;
  position: relative;
  top: 0;
  background: linear-gradient(var(--color-bg-3), var(--color-bg-1));
  overflow: hidden;
}

.header__container {
  display: grid;
  grid-template-columns: 43% 53%;
  gap: 4%;
  margin-top: 10rem;
  position: relative;
}

.header__image-bg {
  background: var(--color-bg-4);
  height: 22rem;
  width: 16rem;
  position: absolute;
}

.header__image-lg {
  width: 20rem;
  position: relative;
  top: 1rem;
  left: 1rem;
  filter: saturate(0) brightness(0.3);
  transition: var(--transition);
}

.header__image-sm {
  width: 20rem;
  height: 28rem;
  overflow: hidden;
  position: absolute;
  left: 6rem;
  top: 6rem;
  transition: var(--transition);
}

.header__left:hover .header__image-sm {
  opacity: 0;
}

.header__left:hover .header__image-lg {
  filter: saturate(1) brightness(1);
  border: 1rem solid var(--color-bg-4);
  top: 0;
  left: 0;
}

.header__head {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

/* general empty styles */
.empty {
  height: 3.5rem;
  width: 30rem;
  background: var(--color-bg-2);
  border-radius: calc(3.5rem / 2);
  margin-bottom: 3.5rem;
  box-shadow: inset 0 1rem 1rem rgba(0, 0, 0, 0.3);
  border: 1px solid var(--color-bg-4);
}

.header__tag {
  color: var(--color-primary-variant);
}

.header__right p {
  display: flex;
  text-align: justify;
  margin-bottom: 5rem;
  width: 100%;

  font-size: 1rem;
}
.header__right h1 {
  margin-bottom: 2rem;
}
/* only shows on tablets and phones */
.header__btn-md {
  display: none;
}

.header__frames {
  position: absolute;
  top: 88vh;
  right: 50rem;
  transition: var(--transition);
}

.header__frame {
  width: 12rem;
  border: 0.4rem solid var(--color-bg-3);
  box-shadow: 0 0 4rem rgba(0, 0, 0, 0.5);
  position: absolute;
  transform: rotate(-10deg);
  transform-origin: bottom left;
  transition: var(--transition);
}

.header__frame:nth-child(2) {
  transform: rotate(20deg);
  top: -2rem;
  left: 2rem;
}

.header__frames:hover .header__frame {
  transform: rotate(0);
}

.header__frames:hover .header__frame:nth-child(2) {
  top: 0;
  left: 15rem;
}

/* general style for contact buttons */
.contact__btn {
  color: var(--color-bg-1);
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.header__btn {
  background: linear-gradient(
    -30deg,
    var(--color-primary-variant),
    var(--color-primary),
    var(--color-primary-variant)
  );
  position: absolute;
  right: 6%;
  bottom: -3rem;
}

.header__btn:hover {
  box-shadow: 0 2rem 2rem rgba(0, 0, 0, 0.3);
  transform: translateY(-1rem);
  color: var(--color-bg-1);
}

.contact__btn i {
  font-size: 3.5rem;
  position: absolute;
}

.contact__btn p {
  font-size: 1rem;
  font-weight: 600;
  width: 10rem;
  height: 10rem;
  display: flex;
  justify-content: center;
  animation: spinText 30s linear infinite;
}

.contact__btn p span {
  position: absolute;
  transform-origin: 0.3rem 5rem;
}

@keyframes spinText {
  to {
    transform: rotate(360deg);
  }
}

/* ========================= ABOUT ========================= */
#about {
  margin-top: 18rem;
}

.about__container {
  display: grid;
  grid-template-columns: 15rem 12rem auto;
  top: 5rem;

  gap: 2rem;
  position: relative;
}

.about__title {
  position: absolute;
  top: -5rem;
  left: 2rem;
  z-index: 1;
  color: var(--container-width-lg);
}

.about__btn {
  color: var(--color-primary-variant);
  align-self: end;
}

.about__btn:hover {
  transform: translateY(-1rem);
  color: var(--color-primary);
}

.about__image {
  width: 150%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 6rem;
}
.about__image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(315deg, var(--color-bg-4), var(--color-primary));
}
.about__image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(315deg, var(--color-bg-4), var(--color-primary));
  filter: blur(30px);
}
.about__image:nth-child(1):before,
.about__image:nth-child(1):after {
  background: linear-gradient(45deg, var(--color-primary), var(--color-light));
}
.about__image b {
  position: absolute;
  inset: 6px;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}
.about__left .about__image img {
  position: relative;
  z-index: 3;
  scale: 0.8;
  opacity: 0.5;
  transition: var(--transition);
}
.about__left .about__image:hover img {
  scale: 0.6;
  opacity: 0.9;
  transform: translateY(-90px);
}
.about__image .about__content {
  position: absolute;
  z-index: 3;
  bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: var(--transition);
  transform: scale(0);
}
.about__image:hover .about__content {
  transform: scale(1);
}
.about__content h2 {
  position: relative;
  color: #fff;
  font-weight: 500;
  line-height: 2em;
  font-size: 1.1em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  left: 3rem;
}
.about__content h2 span {
  font-weight: 300;
  font-size: 0.75em;
}
.about__content .about__sci {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 5px;
}
.about__content .about__sci li {
  list-style: none;
}
.about__content .about__sci li a {
  position: relative;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.4);
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 4px;
  transition: 0.5s;
  text-decoration: none;
}
.about__content .about__sci li a:hover {
  color: rgba(255, 255, 255, 1);
}
/*--------------------------------------------------*/
.about__right {
  margin-left: 25rem;
}

.btn {
  display: inline-block;

  margin-top: 10rem;
  padding: 1rem 2.8rem;
  background: var(--color-primary);
  border-radius: 2rem;
  box-shadow: 0 0 1rem var(--color-primary-variant);
  font-size: 1rem;
  color: var( --color-bg-3);
  letter-spacing: 0.1rem;
  font-weight: 400;
  transition: 0.5s ease;
}
.btn:hover {
  box-shadow: none;
}

/* ========================= GALLERY ========================= */
#gallery {
  margin-top: 20rem;
}

.gallery__head {
  display: flex;
  justify-content: space-between;
}

.gallery__container p {
  width: 45rem;
}

.swiper-wrapper {
  margin-top: 5rem;
  height: 37rem;
  padding-bottom: 10rem;
}

.swiper-slide {
  border: 0.5rem solid var(--color-bg-4);
  height: fit-content;
  max-height: 45rem;
  overflow: hidden;
  transition: var(--transition);
}

.swiper-slide:hover {
  box-shadow: 0 3rem 3rem rgba(0, 0, 0, 0.4);
}

.swiper-slide img {
  filter: saturate(0);
  transition: var(--transition);
}

.swiper-slide:hover img {
  filter: saturate(1);
}

.swiper-pagination-bullet {
  background: var(--color-primary);
  width: 15px;
  height: 15px;
}

/* ========================= EXHIBITIONS ========================= */
#exhibitions {
  margin-top: 10rem;
}

.exhibitions__container {
  position: relative;
}
.exhibitions__title {
  cursor: pointer;
  max-width: 20%;
  display: flex;
  justify-content: center;
  font-weight: 400;
  margin-left: -2rem;
}
.exhibitions__container ul {
  position: relative;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: -3rem;
  font-weight: bold;
}
.exhibitions__container ul li {
  position: relative;
  list-style: none;
  transition: 0.5s;
  visibility: hidden;
  opacity: 0;
  transform: translateX(0px);
  transition-delay: calc(0.3s * var(--i));
}
.exhibitions__container ul li a {
  position: relative;
  text-decoration: none;
  width: 13%;

  box-shadow: -0.5rem 1rem 1rem rgba(0, 0, 0, 0.7);
  top: 1rem;
  padding: 10px 50px;
  height: 50px;
  display: block;
  border-radius: 0.3rem;
  background: var(--color-bg-2);
}
.exhibitions__container.active ul li {
  visibility: visible;
  opacity: 1;
  transform: translateX(80px);
  transition-delay: calc(0.1s * var(--i));
}
.exhibitions__container.active ul li:hover {
  color: var(--color-primary);
}
/* ========================= BOX ========================= */
.box {
  position: relative;
  width: 250px;
  height: 250px;
  background: var(--color-bg-3);
  border-radius: 50%;
  bottom: 16rem;
  right: 1rem;
  overflow: hidden;
  z-index: -100;
  justify-content: center;
  align-items: center;
}
.box::before {
  content: '';
  position: absolute;
  inset: -10px 140px;
  background: linear-gradient(315deg, #003347, #ff7b02);
  transition: 0.5s;
  animation: animate 4s linear infinite;
}
.box::before {
  inset: -20px 0px;
}
@keyframes animate {
  0% {
    transform: rotate(0deg);
  }
  0% {
    transform: rotate(360deg);
  }
}
.box::after {
  content: '';
  position: absolute;
  inset: 6px;
  background: var(--color-bg-3);
  border-radius: 50%;
  z-index: 1;
}

/* ========================= Festival_end ========================= */
.exhibitions__empty {
  width: 26rem;
  position: absolute;
  right: 14rem;
  top: 0;
}

.exhibitions__head {
  display: grid;
  grid-template-columns: auto 10rem;
  justify-content: space-between;
  align-items: center;
  margin-top: -20rem;
  margin-left: 70rem;
}

.exhibitions__head > p {
  width: 45rem;
}

.exhibitions__btn {
  color: var(--color-primary-variant);
}

.exhibitions__btn:hover {
  transform: translateY(-1rem);
}

.exhibitions__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 5rem;
  gap: 3rem;
}

.exhibitions__gallery article {
  border: 0.5rem solid var(--color-bg-4);
  transition: var(--transition);
}

.exhibitions__gallery article:nth-child(1) {
  grid-row: 1/3;
}

.exhibitions__gallery article:nth-child(4) {
  grid-column: 2/4;
  grid-row: 2/3;
}

.exhibitions__gallery article img {
  height: 100%;
  filter: saturate(0);
  transition: var(--transition);
}

.exhibitions__gallery article:hover img {
  filter: saturate(1);
}

.exhibitions__gallery article:hover {
  box-shadow: 0 4rem 4rem rgba(0, 0, 0, 0.5);
}

/* ========================= FOOTER ========================= */
footer {
  margin-top: 7rem;
  padding: 0;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer__container {
  position: relative;
  border: 0.5rem solid var(--color-bg-4);
  padding-top: 5rem;
  background: var(--color-light);
}

.footer__head {
  display: flex;

  align-items: center;
  gap: 3rem;
  justify-content: left;
  margin-left: 5rem;
  min-height: 50vh;
  max-width: 100vh;
}
.footer__head .drop {
  position: relative;
  width: 400px;
  height: 400px;
  box-shadow: inset 20px 20px 20px rgba(0, 0, 0, 0.05),
    25px 35px 20px rgba(0, 0, 0, 0.05), 25px 30px 30px rgba(0, 0, 0, 0.05),
    inset -20px -20px 25px rgba(255, 255, 255, 0.5);
  transition: 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 49% 51% 36% 64% / 37% 41% 59% 63%;
}
.footer__head .drop:hover {
  border-radius: 50%;
}
.footer__head .drop::before {
  content: '';
  position: absolute;
  top: 100px;
  left: 100px;
  width: 35px;
  height: 35px;
  box-shadow: inset 20px 20px 20px rgba(0, 0, 0, 0.1),
    25px 35px 20px rgba(226, 200, 200, 0.458),
    25px 30px 30px rgba(171, 156, 156, 0.1),
    inset -20px -20px 25px rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  opacity: 0.6;
  z-index: 10;
}
.footer__head .drop::after {
  content: '';
  position: absolute;
  top: 130px;
  left: 130px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--color-white);
  opacity: 0.4;
}
.footer__head .drop .content {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: var(--color-bg-4);
  padding: 40px;
  gap: 15px;
  font-size: 1.5rem;
}

/*----------------------------About ME ---------------------*/
.footer__content {
  width: 45%;
}
.footer__content h1 {
  position: relative;
  width: 30%;
  bottom: 19rem;
  left: 40rem;
  font-size: 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;

  font-size: 2em;
  color: var(--color-primary-variant);
  text-shadow: 2px 2px 4px #000000;
}

.content__footer {
  color: var(--color-bg-4);
  font-size: small;
}
.content__footer {
  display: flex;
  flex-direction: column;
  padding-top: 1rem;
  color: var(--color-bg-4);
  font-size: small;
}
.footer__content p {
  width: 90%;
  position: absolute;
  color: var(--color-bg-4);
  position: relative;
  left: 40rem;
  bottom: 15rem;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 3rem;
  text-align: left;
}
.content h3 {
  color: var(--color-primary-variant);
  text-shadow: 2px 2px 4px #000000;
}

/*-------------------------------------footer-Links-------------------*/

.footer__links {
  position: relative;
  display: flex;
  width: 80%;
  gap: 50rem;
  top: -2rem;
  left: -15rem;
  font-size: 1.5rem;
}
.footer__links a {
  color: var(--color-primary-variant);
  transition: var(--transition);
  padding-left: 5rem;
}
.footer__links a:hover {
  color: var(--color-primary);
}
.poster__back {
  width: 50%;
  height: 20%;
  position: relative;
  display: flex;
  justify-content: center;
  opacity: 0.5;
  z-index: -100;
}
/*-------------------------------------CONTACT------------------*/

.footer__contact h2 {
  position: relative;
  bottom: -5px;

  font-size: 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;

  color: var(--color-bg-2);
}
.contactInfo {
  width: 100%;
  flex-direction: column;

  display: flex;
  left: 0;
  min-height: 30px;
}
.content h3 {
  display: flex;
  left: -1rem;
}
.contactInfo .uil {
  display: flex;
  left: 0;
}
.footer__text .uil {
  display: flex;
  left: 0;
  padding-top: 10px;
}
.footer__text p {
  display: flex;
  left: 0;
  padding-top: 10px;
  font-weight: 400;
}
/*-------------------------------------FOOTER LINKS------------------*/

.footer__links {
  position: relative;
  display: flex;
  gap: 3rem;
  bottom: 20rem;
  left: 10rem;
}
.footer__links a {
  color: var(--color-bg-1);
  font-weight: bold;
  transition: var(--transition);
}
.footer__links a:hover {
  color: var(--color-primary);
}

/*============================= MEDIA QUERIES (medium screens) =============================*/
@media screen and (max-width: 1024px) {
  .container {
    width: var(--container-width-md);
    position: relative;
  }

  h1 {
    font-size: 2.5rem;
    line-height: 1.3;
  }

  h2 {
    font-size: 2.5rem;
  }

  /* =============== NAV ============= */
  .nav__socials {
    display: none;
  }
  .nav__logo {
    top: 0em;
  }
  .nav__links {
    position: absolute;
    top: 100%;
    right: 0;
    flex-direction: column;
    gap: 0;
    display: none;
    perspective: 400px;
  }
  .nav__title {
    display: none;
  }

  .nav__links li {
    height: 5rem;
    box-shadow: -3rem 3rem 3rem rgba(0, 0, 0, 0.7);
    animation: navAnimation 600ms ease forwards;
    transform: rotateX(90deg);
    opacity: 0;
    transform-origin: top;
  }

  .nav__links li:nth-child(2) {
    animation-delay: 200ms;
  }

  .nav__links li:nth-child(3) {
    animation-delay: 400ms;
  }

  .nav__links li:nth-child(4) {
    animation-delay: 600ms;
  }

  @keyframes navAnimation {
    to {
      transform: rotateX(0);
      opacity: 1;
    }
  }

  .nav__links li a {
    background: var(--color-bg-4);
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 1rem 5rem 1rem 3rem;
    border-top: 1px solid var(--color-bg-2);
  }

  .nav__toggle-btn {
    display: inline-block;
    font-size: 2rem;
    background: transparent;
    cursor: pointer;
    color: var(--color-white);
  }

  #nav__toggle-close {
    display: none;
  }

  /* =============== HEADER ============= */
  header {
    height: fit-content;
    padding: 12rem 0 10rem;
    display: grid;
    place-items: center;
  }

  .header__image-bg,
  .header__image-sm {
    display: none;
  }

  .header__container {
    grid-template-columns: 40% 54%;
    gap: 6%;
    margin: 0;
  }

  .header__image-lg {
    filter: saturate(1) brightness(1);
    border: 1rem solid var(--color-bg-2);
    border-radius: 15rem 15rem 0 0;
    overflow: hidden;
    width: 100%;
    top: 0;
    left: 0;
  }

  .empty {
    display: none;
  }

  .header__tag {
    margin-bottom: 1rem;
  }

  .header__right p {
    width: 100%;
    margin-top: 1.5rem;
  }

  .header__frames,
  .contact__btn {
    display: none;
  }

  .header__btn-md {
    background: linear-gradient(
      135deg,
      var(--color-primary-variant),
      var(--color-primary)
    );
    color: var(--color-bg-1);
    margin-top: 2rem;
    display: inline-block;
    padding: 0.6rem 1.6rem;
    font-weight: 600;
    border-radius: 0.3rem;
  }

  .header__btn-md:hover {
    color: var(--color-bg-1);
  }

  /* =============== ABOUT ============= */
  .about__container {
    grid-template-columns: 50% 44%;
    gap: 6%;
  }

  .about__image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
    margin-bottom: 0.5rem;
  }

  .about__image:hover .about__image-lg {
    border: none;
  }

  .about__right {
    margin: 0;
  }

  .about__right .btn {
    width: 50%;
    margin-bottom: 5rem;
    margin-left: 8rem;
    text-align: center;
    font-size: 1rem;
    margin-top: 1rem;
  }

  /* =============== GALLERY ============= */
  #gallery {
    margin-top: 8rem;
  }

  .gallery__container p {
    width: 100%;
    margin-top: 2rem;
  }

  .swiper-wrapper {
    margin-top: 4rem;
    height: fit-content;
  }

  /* =============== EXHIBITIONS ============= */
  .exhibitions__head {
    margin-right: 0;
  }
  .exhibitions__head > p {
    margin-top: 2rem;
  }

  .exhibitions__gallery {
    margin-top: 3rem;
    gap: 1rem;
  }

  .exhibitions__gallery article {
    border: none;
  }
  .exhibitions__title {
    cursor: pointer;
    max-width: 20%;
    display: flex;
    justify-content: center;
    font-weight: 400;
    margin-left: 5rem;
    margin-bottom: 1rem;
  }

  .exhibitions__container ul {
    position: relative;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 5rem;

    font-weight: bold;
  }
  .exhibitions__container ul li {
    position: relative;
    list-style: none;
    transition: 0.5s;
    visibility: hidden;
    opacity: 0;
    transform: translateX(0px);
    transition-delay: calc(0.3s * var(--i));
  }
  .exhibitions__container ul li a {
    position: relative;
    text-decoration: none;
    width: 25%;

    box-shadow: -0.5rem 1rem 1rem rgba(0, 0, 0, 0.7);
    top: 1rem;
    padding: 10px 50px;
    height: 50px;
    display: block;
    border-radius: 0.3rem;
    background: var(--color-bg-2);
  }
  .box {
    position: relative;
    width: 250px;
    height: 250px;
    background: var(--color-bg-3);
    border-radius: 50%;
    bottom: 25rem;
    right: -3rem;
    overflow: hidden;
    z-index: -100;
    justify-content: center;
    align-items: center;
  }
  /* =============== FOOTER =============== */
  .footer__container > p {
    width: 100%;
    margin-top: 2rem;
  }
  .footer__head .drop {
    width: 50%;
    height: 50%;
    margin-bottom: 5rem;
  }
  .footer__content h1 {
    width: 50%;
    margin-left: -32rem;
    margin-top: 15rem;
  }
  .footer__content p {
    width: 115%;
    margin-left: -32rem;

    text-align: justify;
    margin-top: -2rem;
    line-height: 2rem;
  }
  .footer__links {
    width: 180%;
    padding: 1rem;
    left: 0rem;
    text-align: center;
    margin-bottom: 2rem;
    top: -8rem;
  }
  .footer__text p {
    font-size: 1rem;
    font-weight: 500;
  }
}

/*============================= MEDIA QUERIES (small screens) =============================*/
@media screen and (max-width: 600px) {
  .container {
    width: var(--container-width-sm);
    position: relative;
  }
  h1,
  h2 {
    font-size: 2rem;
    line-height: 1.3;
    color: var(--color-white);
  }

  header {
    padding: 0;
    padding-bottom: 6rem;
  }

  .header__container {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }

  .header__image-lg {
    width: 80%;
    height: 20rem;
    margin: 0 auto;
    margin-top: 7rem;
    overflow: hidden;
    border-radius: 15rem 15rem 0 0;
  }

  .header__head {
    justify-content: center;
  }

  .header__right p {
    margin-top: 1rem;

    width: 60%;
    margin-left: 5rem;
  }

  .header__title {
    margin-top: 1rem;
  }
  .header__right h1 {
    width: 80%;
    margin-left: 3rem;
  }
  /* =============== ABOUT =============== */
  .about__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about__right p {
    width: 100%;
  }

  .swiper-slide {
    border: 0;
  }
  .about__right p {
    width: 100%;
    text-align: justify;
    margin-top: -25rem;
    padding: 5rem;
  }

  /* =============== GALLERY =============== */
  #gallery {
    margin-top: 4rem;
  }
  .about__title {
    margin-left: 7rem;
    top: -16rem;
  }
  .about__image {
    margin-left: 4rem;
    top: -10rem;
  }
  .gallery__container p {
    margin-top: 1rem;
  }

  .swiper-wrapper {
    margin-top: 3rem;
    width: 50%;
  }

  /* =============== EXHIBITIONS =============== */
  #exhibitions {
    margin-top: 8rem;
    margin-left: 2rem;
  }

  .exhibitions__head {
    grid-template-columns: 1fr;
  }

  .exhibitions__head > p {
    margin-top: 1rem;
  }

  .exhibitions__gallery {
    display: block;
  }

  .exhibitions__gallery article {
    width: 100%;
    height: fit-content;
    margin-bottom: 1rem;
    margin-left: -1rem;
  }
  .exhibitions__title {
    margin-left: 8rem;
  }
  .exhibitions__container ul {
    position: relative;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 5rem;

    width: 50%;
    font-weight: bold;
  }

  .exhibitions__container ul li {
    width: 50%;
    position: relative;
    list-style: none;
    transition: 0.5s;
    visibility: hidden;

    opacity: 0;
    transform: translateX(0px);
    transition-delay: calc(0.3s * var(--i));
  }
  .exhibitions__container ul li a {
    position: relative;
    text-decoration: none;
    width: 200%;

    box-shadow: -0.5rem 1rem 1rem rgba(0, 0, 0, 0.7);
    top: 1rem;
    padding: 10px 50px;
    height: 50px;
    display: block;
    border-radius: 0.3rem;
    background: var(--color-bg-2);
  }

  /* =============== FOOTER =============== */

  .footer__head {
    width: 70%;
    flex-direction: column;
    display: flex;
  }

  .footer__head h2 {
    font-size: 1.5rem;
  }

  .footer__links li {
    width: 30vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 2rem;
    top: 5rem;
    gap: 2rem;
    font-size: 15px;
  }

  .footer__head .drop {
    left: 0rem;
    margin-right: 6rem;
    width: 100%;
    justify-content: center;
  }

  .footer__content p {
    width: 180%;
    text-align: justify;
    color: var(--color-bg-4);
    margin-top: 2rem;
    font-weight: 200px;
    margin-left: -38rem;
    font-size: 1rem;
  }
  .footer__content h1 {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: justify;
    margin-left: -37rem;
    margin-top: 18rem;
  }
  .content p {
    position: relative;

    flex-direction: column;
    display: flex;
    bottom: 1rem;
  }
  .content__footer {
    position: relative;
    font-size: 15px;
    padding-top: 15px;
  }
  .footer__links li {
    width: 35%;
    bottom: -5rem;
    margin-left: 0;
  }
  .footer__links li a {
    padding: 1rem;
    margin-left: -2rem;
    bottom: -5rem;
  }
}
