@import url(https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);
@charset "UTF-8";
/*=============== GOOGLE FONTS ===============*/
/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 6.5rem;
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --white-color: #fff;
  --black-color: hsl(0, 0%, 0%);
  --grey-color: #121212;
  --orange-color: #ea7730;
  /*========== Font and typography ==========*/
  --body-font: "Nunito", "Inter", Arial, Helvetica, sans-serif;
  --h1-font-size: 1.5rem;
  --normal-font-size: 0.938rem;
  --border-default: 1px solid white;
  --image-shadow: 10px 10px 20px #000;
  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  /*========== Font titles ==========*/
  --font-size-h1: clamp(30px, 4vw, 57px);
  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

.d-flex {
  display: flex;
}

.f-colum {
  flex-direction: column;
}

.all-center {
  justify-content: center;
  align-items: center;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --normal-font-size: 1rem;
  }
}
/*=============== BASE ===============*/
* {
  /* outline: 1px solid red; */
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body,
main {
  scroll-behavior: smooth !important;
  overflow-x: hidden;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--grey-color);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  padding: 50px;
  margin-inline: 1.5rem;
}

/*=============== Sections ===============*/
main {
  padding-top: var(--header-height);
}

.container-section {
  color: var(--white-color);
  height: 100vh;
}

footer {
  background-color: #000;
  height: 30vh;
}

/*=============== Sections box ===============*/
.box__footer,
.rights {
  border-bottom: solid 1px #131313;
  width: 100%;
  height: 100%;
  max-width: 90%;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
  flex: 1;
  display: flex;
  justify-content: space-around;
}

.footer__logo img {
  width: 100%;
  max-width: 100px;
  min-width: 130px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.box__footer__info {
  display: flex;
  justify-content: space-between;
  gap: 150px;
}

.footer__subtitle p {
  line-height: 20px;
  margin-top: 1.5rem;
  font-size: clamp(12px, 3vw, 14px);
  color: #fff;
}

.footer__info {
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  position: relative;
  color: #fff;
}

.menu-footer {
  width: 100%;
  font-size: clamp(12px, 3vw, 14px);
  color: #fff;
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.arrow {
  display: block;
  text-align: left;
  transition: transform 0.3s ease;
}

.footer-list {
  display: none;
  padding: 0 10px;
  margin-top: 5px;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
  z-index: 10;
}

.footer-list.active {
  display: flex;
}

.footer-list li {
  cursor: pointer;
  transition: background 0.3s;
  list-style: none;
  color: #ea7730;
}

.footer-list li a {
  color: #ea7730;
}

.rights {
  color: #fff;
  font-size: clamp(12px, 3vw, 15px);
}

.box__info,
.box__video {
  flex: 1;
}

.box__info p {
  margin-top: 20px;
  font-size: clamp(12px, 4vw, 24px);
  line-height: 30px;
}

.box__numbers {
  display: flex;
  -moz-column-gap: 4.5rem;
       column-gap: 4.5rem;
  justify-content: center;
  align-items: center;
  margin: 0 24px;
}

.number__title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}

.number__title h1 {
  font-size: clamp(40px, 4vw, 50px);
  letter-spacing: 3px;
}

.box__numbers p {
  font-size: clamp(18px, 4vw, 24px);
  letter-spacing: 2px;
}

.number__button {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 24px;
}

.btn__num {
  width: 30%;
  height: 60px;
  border-radius: 50px;
  font-weight: var(--font-medium);
  font-size: clamp(14px, 4vw, 18px);
  background-color: var(--orange-color);
  border: 2px solid var(--orange-color);
  color: var(--grey-color);
  transition: 0.4s;
  cursor: pointer;
  transition: 0.3s;
}

.btn__num:hover {
  background-color: transparent;
  border: solid 2px var(--orange-color);
  color: var(--orange-color);
  transform: scale(1.01);
}

#service #service-container .box__info {
  text-align: center;
}

#service #service-container .box__info,
.box__card {
  flex: none;
}

/* .artist__bottom{
	background: url(/assets/img/backg.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	height: auto;
	flex-direction: column;
} */
#service {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: auto;
  flex-direction: column;
  padding-bottom: 2rem;
}

#promote .box__img,
#promote .box__info,
#artist .box__img,
#artist .box__info,
#curator .box__info,
#curator .box__img {
  flex: 1;
}

#artist .box__img img,
#curator .box__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#promote,
#artist,
#curator,
#faq,
footer,
#feedbacks {
  height: auto;
}

#curator .container-section,
#artist-container,
#feedbacks .container-section,
#promote .container-section,
#service #service-container {
  height: auto;
}

.profile-img {
  width: 50px;
  height: 50px;
  overflow: hidden;
}

.profile-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 50%;
}

.profile {
  display: flex;
  flex-direction: column;
}

.name-users {
  display: flex;
  flex-direction: column;
}

.name-users span {
  color: #ea7730;
  font-size: 0.8rem;
}

.name-users strong {
  color: #121212;
  font-size: 1.1rem;
}

.reviews {
  color: #f8b628;
}

.box__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

#feedbacks {
  margin-top: 5rem;
}

#feedbacks .box__info h1 {
  color: #ea7730;
}

/* cards */
/* variaçao */
.cad {
  padding: 25px;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  text-align: center;
  width: 235px;
  height: auto;
  background: linear-gradient(to bottom right, rgba(255, 252, 252, 0.055), rgb(0, 0, 0));
  height: 340px;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid #292929;
}

.card__article {
  position: relative;
  overflow: hidden;
  box-shadow: 2px 5px 12px #000;
  border-radius: 10px;
}

.cad img {
  display: block;
  margin: 0 auto;
  width: 95px;
}

#logo-cad {
  width: 70px;
}

.cad__item {
  margin-bottom: 40%;
}

.cad__item h1 {
  margin-top: 20px;
  text-transform: uppercase;
  font-size: clamp(12px, 4vw, 18px);
  color: #fff;
}

.box__card {
  display: flex;
  justify-content: center;
  place-items: center;
  margin-inline: 1.5rem;
  padding-block: 5rem;
}

#promote {
  margin-top: 5rem;
}

#promote .box__info {
  display: flex;
  justify-content: center;
  align-items: center;
}

#promote .box__img img {
  width: 120%;
  height: auto;
}

#promote-list p {
  line-height: 30px;
  text-align: left;
  font-size: clamp(18px, 4vw, 24px);
}

#promote-list ul {
  margin-top: 30px;
}

#promote-list li {
  margin-top: 2.5rem;
  font-size: clamp(18px, 4vw, 20px);
  list-style: disc;
}

#promote-list span {
  font-weight: 700;
}

#promote-list button {
  margin-top: 2.5rem;
  /* width: 40%; */
  font-weight: 600;
}

#artist .box__info,
#curator .box__info {
  display: flex;
  justify-content: center;
  align-items: center;
}

#artist-list p {
  line-height: 30px;
  text-align: justify;
  font-size: clamp(16px, 4vw, 20px);
  line-height: 30px;
}

#artist-list ul {
  margin-top: 30px;
}

#artist-list li {
  margin-top: 1.5rem;
  font-size: clamp(18px, 4vw, 20px);
  list-style: none;
}

#artist-list li span {
  font-size: 30px;
  /* font-weight: 700; */
}

#artist-list li p {
  font-size: clamp(22px, 3vw, 23px);
}

#artist-list span {
  font-weight: 700;
}

#artist-list button {
  margin-top: 2.5rem;
  /* width: 40%; */
  font-weight: 600;
}

.artist__bottom {
  min-height: 180px;
  background-color: rgba(234, 119, 48, 0.2588235294);
}

.box__title__bottom {
  display: flex;
  justify-content: space-between;
  min-width: 80%;
  padding: 30px;
}

.title__bottom {
  margin-right: 15%;
}

.title__bottom h1 {
  letter-spacing: 2px;
  font-size: clamp(30px, 4vw, 40px);
}

.title__bottom p {
  margin-top: 15px;
  line-height: 28px;
}

#faq {
  margin-top: 5rem;
}

/* Menu Horizontal */
#nav-faq {
  padding: 10px;
  width: 80%;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2.5rem;
}

.faq__item {
  position: relative;
}

.faq__icon {
  position: absolute;
  right: 10px;
  top: 10px;
}

#ul-faq {
  display: flex;
  justify-content: center;
  list-style: none;
}

#ul-faq li {
  margin: 0 15px;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s;
}

#ul-faq li.active {
  color: var(--orange-color);
  font-weight: bold;
  text-decoration: underline;
}

#ul-faq li:hover {
  color: #ea7730;
}

.content {
  max-width: 1100px;
  width: 80%;
  background-color: #121212;
  padding: 0;
}

.faq .box__info {
  align-items: center;
  justify-content: center;
  display: flex;
}

.hidden-text {
  max-height: 0;
  display: none;
  font-weight: normal;
  overflow: hidden;
  padding: 0 10px;
  font-size: clamp(12px, 4vw, 14px);
  background-color: transparent;
  border-radius: 5px;
  opacity: 0;
  transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out, padding 0.5s ease-in-out;
}

.hidden-text.show {
  transform: 0.6s;
  display: flex;
  max-height: 1000px;
  opacity: 1;
  padding: 10px;
}

#nav-faq ul li {
  text-decoration: none !important;
  list-style: none;
}

.faq__item a {
  width: 100%;
  color: #fff;
  font-size: clamp(12px, 4vw, 20px);
}

.faq__item .hidden-text p {
  font-size: clamp(14px, 3vw, 18px);
}

.faq__item {
  border-bottom: 2px solid #272727;
  cursor: pointer;
  width: 100%;
  transition: max-height 1.5s ease-in-out, padding 0.5s ease-in-out;
  max-height: 80px;
  overflow: hidden;
  align-items: center;
  padding: 10px;
}

.parent {
  margin-top: 1.5rem;
  transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 30px;
  max-height: 2000px;
}

.faq__item i {
  color: #ea7730;
  text-decoration: none;
}

.faq__item.show {
  max-height: 2000px;
}

.hidden-text.show {
  opacity: 1;
  max-height: 2000px;
  padding: 10px;
}

.topic {
  display: none;
}

.topic.active {
  display: block;
}

.topic.active h1:first-of-type {
  margin-top: 20px;
}

.card__data {
  width: 210px;
  height: 120px;
  font-size: clamp(11px, 4vw, 13px);
  font-weight: normal;
  color: var(--grey-color);
  background-color: var(--white-color);
  padding: 1.1rem 1rem;
  box-shadow: 0 8px 24px hsla(0deg, 0%, 0%, 0.3);
  border-radius: 1rem;
  position: absolute;
  bottom: -9rem;
  left: 0;
  right: 0;
  margin-inline: auto;
  opacity: 0;
  transition: opacity 1s 1s;
  text-align: center;
  line-height: 20px;
}

.card__description {
  display: block;
  font-size: var(--small-font-size);
  margin-bottom: 0.25rem;
}

.card__title {
  font-size: var(--h2-font-size);
  font-weight: 500;
  color: var(--title-color);
  margin-bottom: 0.75rem;
}

.card__button {
  text-decoration: none;
  font-size: var(--small-font-size);
  font-weight: 500;
  color: var(--first-color);
}

.card__button:hover {
  text-decoration: underline;
}

/* Naming animations in hover */
.card__article:hover .card__data {
  animation: show-data 1s forwards;
  opacity: 1;
  transition: opacity 0.3s;
}

.card__article:hover {
  animation: remove-overflow 2s forwards;
}

.card__article:not(:hover) {
  animation: show-overflow 2s forwards;
}

.card__article:not(:hover) .card__data {
  animation: remove-data 1s forwards;
}

.social__btn {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.box__social {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn__social i {
  color: var(--orange-color);
}

.btn__social {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  background-color: #121212;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: solid 1px #ea7730;
  transition: 0.4s;
}

.btn__social:hover i {
  color: #121212;
}

.btn__social:hover {
  background-color: #ea7730;
}

/* Card animation */
@keyframes show-data {
  50% {
    transform: translateY(-10rem);
  }
  100% {
    transform: translateY(-7rem);
  }
}
@keyframes remove-overflow {
  to {
    overflow: initial;
  }
}
@keyframes remove-data {
  0% {
    transform: translateY(-7rem);
  }
  50% {
    transform: translateY(-10rem);
  }
  100% {
    transform: translateY(0.5rem);
  }
}
@keyframes show-overflow {
  0% {
    overflow: initial;
    pointer-events: none;
  }
  50% {
    overflow: hidden;
  }
}
.box__info,
.box__video {
  padding: 30px;
  text-align: left;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

.box__button {
  justify-content: space-between;
  display: flex;
  width: 70%;
}

.btn__hero_1,
.btn__hero_2 {
  width: 100%;
  height: 60px;
  border-radius: 50px;
  margin-right: 20px;
  margin-top: 20px;
  font-weight: var(--font-medium);
  font-size: clamp(14px, 4vw, 18px);
  background-color: transparent;
  border: solid 2px #fff;
  color: var(--white-color);
  transition: 0.4s;
  cursor: pointer;
}

.btn__hero_1 {
  background-color: var(--orange-color);
  color: var(--grey-color);
  border: solid 2px #ea7730;
  font-weight: var(--font-medium);
}

.btn__hero_2:hover,
.btn__hero_1:hover {
  background-color: transparent;
  border: solid 2px var(--orange-color);
  color: var(--orange-color);
}

.btn__hero_2 {
  width: 40%;
}

.btn__news {
  width: 20%;
  height: 60px;
  border-radius: 50px;
  font-size: clamp(14px, 4vw, 18px);
  background-color: var(--orange-color);
  border: solid 2px #fff;
  color: var(--white-color);
  transition: 0.4s;
  cursor: pointer;
}

.btn__news:hover {
  background-color: #121212;
  color: #ea7730;
  border: solid 2px #121212;
}

.box__info h1 {
  font-size: var(--font-size-h1);
}

.box__info span {
  color: var(--orange-color);
}

.box__video img {
  width: 740px;
  height: 510px;
  border-radius: 30px;
  box-shadow: var(--image-shadow);
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: var(--grey-color);
  z-index: var(--z-fixed);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
}

.nav {
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  color: var(--white-color);
  font-weight: var(--font-medium);
}

.nav__item {
  cursor: pointer;
}

.nav__close,
.nav__toggle {
  display: flex;
  font-size: 1.5rem;
  color: var(--white-color);
  cursor: pointer;
}

.nav__social,
.nav__list {
  display: flex;
}

.nav__list {
  flex-direction: column;
  row-gap: 2rem;
}

.nav__link {
  position: relative;
  color: var(--white-color);
  font-size: var(--h1-font-size);
  font-weight: var(--font-medium);
  display: inline-flex;
  align-items: center;
  transition: opacity 0.4s;
}

.nav__link i {
  font-size: 2rem;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.nav__link span {
  position: relative;
  transition: margin 0.4s;
}

.nav__link span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: var(--orange-color);
  transition: width 0.4s ease-in-out;
}

/* Animation link on hover */
.nav__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.nav__social {
  margin-top: 15%;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}

.nav__menu .nav__item:not(#first-nav-btn):hover ~ #first-nav-btn {
  background-color: transparent;
}

.nav__social-link {
  color: var(--orange-color);
  font-size: 1.5rem;
  transition: transform 0.4s;
}

.nav__social-link:hover {
  transform: translateY(-0.25rem);
}

.show-menu {
  left: 0;
}

.show-menu .nav__item {
  visibility: visible;
  transform: translateX(0);
}

.box__feed {
  transition: 0.3s;
}

.box__feed:hover {
  transform: scale(1.1);
}

.number__title {
  border: none;
}

#clip-desck {
  border-radius: 20px;
  transition: 0.3s;
  box-shadow: 2px 3px 30px rgba(0, 0, 0, 0.5);
}

#clip-desck:hover {
  transform: scale(1.03);
  box-shadow: 2px 3px 30px rgba(0, 0, 0, 0.9);
}

#clip-desck {
  cursor: pointer;
  width: 100%;
}

/*=============== BREAKPOINTS ===============*/
/* Navigation for mobile devices */
@media screen and (min-width: 1150px) {
  .overlay,
  .btn__mobile,
  .p__mobile,
  button.open-btn {
    display: none;
  }
  .container {
    margin-inline: auto;
  }
  .nav__toggle,
  .nav__close {
    display: none;
  }
  .nav__link {
    font-size: 16px;
    display: flex;
  }
  .nav__list {
    flex-direction: row;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }
  .nav__social {
    display: none;
  }
  #first-nav-btn {
    background-color: var(--orange-color);
  }
  .nav__item {
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    width: 120px;
    border-radius: 50px;
    transition: 0.4s;
  }
  .nav__item:hover {
    color: #121212;
    background-color: var(--orange-color);
  }
  .nav__list:has(.nav__link:hover) .nav__link:not(:hover) {
    opacity: 0.4;
  }
}
@media screen and (max-width: 1150px) {
  #hero {
    position: relative;
  }
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 6.5rem);
    background: rgba(0, 0, 0, 0.8);
    /* backdrop-filter: blur(5px); */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    display: none;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .overlay-content {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    background: #121212;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
  }
  .button {
    padding: 10px 20px;
    margin: 10px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
  }
  .box__footer__info {
    gap: 0;
  }
  .btn__mobile {
    margin-top: 15%;
    height: 100px;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--orange-color);
    border-radius: 50%;
    padding-left: 2%;
    transition: box-shadow 0.6s ease, transform 0.3s ease;
    animation: pulse 2s linear infinite;
  }
  .social__btn h4 {
    font-size: 20px;
    color: #ea7730;
  }
  .social__btn {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
  }
  .box__social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
  }
  .footer__info {
    flex: 1;
  }
  .box__footer__info {
    display: flex;
    justify-content: center;
  }
  .btn__social i {
    color: var(--orange-color);
  }
  .btn__social {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    background-color: #121212;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: solid 1px #ea7730;
    transition: 2s;
  }
  .footer__logo {
    width: 100%;
    margin-bottom: 2rem;
  }
  .footer__logo .box__social {
    margin-top: 0;
  }
  .footer__subtitle p {
    text-align: center;
  }
  .img__footer {
    display: flex;
    justify-content: center;
  }
  .rights {
    text-align: center;
  }
  .open-btn {
    background-color: transparent;
    font-size: 40px;
    color: white;
    margin: 0;
    padding: 0;
  }
  .close-btn {
    right: 0;
    top: 0;
    position: absolute;
    font-weight: bold;
    text-transform: uppercase;
    background-color: transparent;
    color: var(--orange-color);
  }
  video {
    width: 100%;
  }
  .container-section {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 6px;
    box-sizing: border-box;
  }
  #clip-desck {
    display: none;
  }
  #service {
    background-image: none;
  }
  .container__feed {
    color: #272727;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    width: 100%;
  }
  .box__feed {
    width: 100%;
    box-shadow: 2px 3px 30px rgba(0, 0, 0, 0.5);
    background-color: #f7f7f7;
    padding: 20px;
    cursor: pointer;
    border-radius: 10px;
  }
  .container__feed,
  .box__feed {
    width: 100%;
  }
  #promote-list button {
    width: 100%;
  }
  .box__footer {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    flex-direction: column;
  }
  .footer__logo {
    padding: 10px;
  }
  .title__bottom {
    margin: 0;
  }
  #artist-list li p {
    text-align: left;
  }
  /* section */
  .container-section {
    display: grid !important;
    max-width: 95%;
    margin: 0 auto;
  }
  .box__video img {
    width: 100%;
    height: 70%;
  }
  #service {
    height: auto;
    flex-direction: column;
  }
  .box__info p {
    text-align: justify;
    line-height: normal;
    letter-spacing: 1px;
  }
  .box__info h1 {
    text-align: left;
    line-height: 40px;
  }
  .box__info h1 br {
    display: none;
  }
  .box__video img {
    display: none;
  }
  #artist .box__img,
  #curator .box__img {
    display: none;
  }
  .box__title__bottom {
    padding: 30px;
    flex-direction: column;
  }
  .title__bottom p {
    line-height: normal;
    text-align: justify;
  }
  .btn__news {
    margin-top: 1rem;
    width: 100%;
  }
  .box__video {
    padding: 30px;
    text-align: left;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  #nav-faq {
    justify-content: center;
  }
  #ul-faq {
    background-color: transparent;
    width: 100%;
    display: flex;
    justify-content: center;
    list-style: none;
  }
  #h1-faq {
    padding: 30px;
  }
  .faq .box__info {
    padding: 0;
  }
  .faq .box__info #nav-faq {
    margin-top: 30px;
  }
  .faq .box__info #nav-faq ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25%;
    transition: 0.4s;
  }
  .faq .box__info #nav-faq ul {
    height: 100%;
  }
  .faq .box__info #nav-faq ul li {
    display: flex;
    flex-direction: column;
    font-size: 20px;
    color: #fff;
  }
  .faq .box__info .content {
    width: 100%;
  }
  #nav-faq {
    width: 100%;
  }
  .faq__icon {
    position: absolute;
    right: 10px;
    top: 2px;
  }
  .faq__item {
    padding: 15px;
  }
  .faq__item a {
    position: relative;
  }
  #nav-faq ul li p {
    font-size: clamp(9px, 4vw, 11px);
    margin-top: 0;
  }
  .faq .box__info #nav-faq ul li:hover {
    color: #ea7730;
  }
  #nav-faq {
    background-color: transparent;
    border-bottom: 1px solid #ea7730;
    height: 80px;
    padding: 0;
  }
  .box__card {
    display: grid;
  }
  .card__article {
    margin-top: 50px;
  }
  .box__numbers {
    display: grid;
    flex-direction: column;
    -moz-column-gap: normal;
         column-gap: normal;
    justify-content: center;
    align-items: center;
  }
  .number__title {
    margin-top: 40px;
    padding: 30px;
    border-bottom: solid 1px #ea7030;
  }
  .btn__num {
    margin-top: 2rem;
    width: 100%;
    font-weight: 600;
  }
  #promote .box__img {
    display: none;
  }
  /* buttons */
  .box__button {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    display: flex;
    width: 100%;
  }
  .btn__hero_1,
  .btn__hero_2 {
    margin: 0;
    margin-top: 20px;
    width: 100%;
  }
  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 transparent;
    }
    50% {
      box-shadow: 0 0 0 15px rgba(233, 100, 17, 0.4745098039);
    }
    75% {
      box-shadow: 0 0 0 20px rgba(234, 119, 48, 0.3843137255);
    }
  }
  .no-scroll {
    overflow: hidden;
    height: 100vh;
  }
  .btn p {
    font-weight: 500;
    font-size: 1rem;
    color: #888;
    letter-spacing: 4px;
    text-transform: uppercase;
  }
  .clip {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: 0.5s;
  }
  .clip video {
    outline: none;
    max-width: 80%;
    border: none;
    border-radius: 15px;
    box-shadow: 4px 5px 13px rgba(0, 0, 0, 0.6);
  }
  .clip .close {
    position: absolute;
    top: 7.5rem;
    right: 30px;
    cursor: pointer;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
  }
  .clip.active {
    flex-direction: column;
    transition-delay: 0.2s;
    transform: translate(-50%, -50%) scale(1);
  }
  .center ul {
    list-style: none;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 30px;
  }
  .center ul .text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: #121212;
    color: #ea7730;
    line-height: 50px;
    border-radius: 50px;
    font-size: 14px;
    pointer-events: none;
  }
  .center ul:hover .text {
    opacity: 0;
    transition: opacity 0.5s 0.125s ease-out;
  }
  .center ul li {
    display: inline-block;
    height: 50px;
    width: 50px;
    background: #121212;
    line-height: 55px;
    margin: 0 -16px;
    cursor: pointer;
    border-radius: 0;
    transition: background-color 0.5s ease-out, border-radius 0.5s 0.25s ease-out, margin 0.5s 0.25s ease-out;
  }
  .center ul li:hover {
    background: #ea7730;
    box-shadow: 1px 1px 15px hsla(0deg, 0%, 0%, 0.3);
  }
  .center ul li i {
    color: #fff;
    font-size: 22px;
    opacity: 0;
    transition: opacity 1.7s;
  }
  .cad {
    width: 300px;
  }
  .center ul:hover li i {
    opacity: 1;
  }
  .center ul li:nth-child(1) {
    border-bottom-left-radius: 25px;
    border-top-left-radius: 25px;
  }
  .center ul li:nth-child(3) {
    border-bottom-right-radius: 25px;
    border-top-right-radius: 25px;
  }
  .center ul:hover li {
    border-radius: 50px;
    margin: 0 3px;
  }
  /* containers and navs */
  .container {
    padding: 0;
  }
  .nav__toggle,
  .nav__close {
    display: flex;
    font-size: 1.5rem;
    color: var(--white-color);
    cursor: pointer;
  }
  .nav__menu {
    position: fixed;
    left: -100%;
    top: 0;
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    width: 100%;
    height: 100%;
    padding: 6rem 3.5rem 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: left 0.4s;
  }
  .nav__item {
    transform: translateX(-150px);
    visibility: hidden;
    transition: transform 0.4s ease-out, visibility 0.4s;
  }
  .nav__list {
    flex-direction: column;
    row-gap: 2rem;
  }
  .nav__link {
    position: relative;
    color: var(--white-color);
    font-size: var(--h1-font-size);
    font-weight: var(--font-medium);
    display: inline-flex;
    align-items: center;
    transition: opacity 0.4s;
  }
  .nav__link:hover span {
    margin-left: 2.5rem;
  }
  .nav__link:hover i {
    opacity: 1;
    visibility: visible;
  }
  .nav__link:hover span::after {
    width: 100%;
  }
  .nav__list:has(.nav__link:hover) .nav__link:not(:hover) {
    opacity: 0.4;
  }
  .nav__close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
  }
  .nav__social {
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
  .nav__social-link {
    color: var(--orange-color);
    font-size: 1.5rem;
    transition: transform 0.4s;
  }
  .nav__social-link:hover {
    transform: translateY(-0.25rem);
  }
  .show-menu {
    left: 0;
  }
  .show-menu .nav__item {
    visibility: visible;
    transform: translateX(0);
  }
  .nav__item {
    transform: translateX(-150px);
    visibility: hidden;
    transition: transform 0.4s ease-out, visibility 0.4s;
  }
  .nav__item:nth-child(1) {
    transition-delay: 0.1s;
  }
  .nav__item:nth-child(2) {
    transition-delay: 0.3s;
  }
  .nav__item:nth-child(3) {
    transition-delay: 0.4s;
  }
  .nav__item:nth-child(4) {
    transition-delay: 0.5s;
  }
  .nav__item:nth-child(5) {
    transition-delay: 0.6s;
  }
  .nav__item:nth-child(6) {
    transition-delay: 0.7s;
  }
  .nav__item:nth-child(7) {
    transition-delay: 0.8s;
  }
  .nav__item:nth-child(8) {
    transition-delay: 0.9s;
  }
}
@media screen and (min-width: 768px) {
  #frame-youtube {
    width: 700px !important;
    height: 500px !important;
  }
  .container__feed {
    color: #272727;
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    -moz-column-gap: 40px;
         column-gap: 40px;
    max-width: 1200px;
    justify-content: center;
    margin: 0 auto;
    box-sizing: border-box;
  }
  .box__feed {
    width: auto;
    box-shadow: 2px 3px 30px rgba(0, 0, 0, 0.5);
    background-color: #f7f7f7;
    padding: 20px;
    margin: 15px;
    cursor: pointer;
    border-radius: 10px;
  }
  .box__card {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }
  .footer__logo {
    display: flex;
    flex-direction: column;
  }
  .box__numbers {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }
  .number__title {
    margin-top: 20px;
  }
  .container-section {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
  }
  #promote-list button {
    width: 50%;
  }
  #nav-faq ul li i {
    display: none;
  }
}
@media screen and (max-width: 1150px) {
  .box__video {
    display: none !important;
  }
  .box__title h1 {
    font-size: xxx-large !important;
    text-align: center;
  }
}
@media screen and (max-width: 1520px) {
  #frame-youtube {
    width: 470px !important;
    height: 500px !important;
  }
}
@media screen and (min-width: 1154px) {
  .footer__logo {
    width: 25%;
  }
}
