* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  color: #35373b;
  position: relative;
}
@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

a {
  text-decoration: none;
}

.page-padding {
  padding: 6rem 0;
}
@media (max-width: 991px) {
  .page-padding {
    padding: 6rem 0;
  }
}

@keyframes scaleUpScaleDown {
  0% {
    transform: translateZ(-1px) scale(1);
  }
  80% {
    transform: translateZ(-1px) scale(1.4);
    opacity: 0.4;
  }
  100% {
    transform: translateZ(-1px) scale(1.5);
    opacity: 0;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 0.8rem 2rem;
  line-height: 1;
  border-radius: 8px;
  transition: all 0.2s;
}
@media (max-width: 767px) {
  .btn {
    font-size: 1.4rem;
  }
}
.btn i {
  font-size: 2rem;
}
.btn--white {
  color: #fff;
}
.btn--white:hover {
  color: #fff;
}
.btn--red {
  color: #d12b5e;
}
.btn--red:hover {
  color: #de7783;
}
.btn--blue {
  color: #312f77;
}
.btn--blue:hover {
  color: #286fb7;
}
.btn--outlined-red {
  border: 1px solid #d12b5e;
}
.btn--outlined-red:hover {
  border: 1px solid #de7783;
}
.btn--outlined-white {
  border: 1px solid #fff;
}
.btn--outlined-white:hover {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.5);
}
.btn--outlined-blue {
  border: 1px solid #312f77;
}
.btn--outlined-blue:hover {
  border: 1px solid #286fb7;
}
.btn--bg-red {
  background-color: #d12b5e;
}
.btn--bg-red:hover {
  background-color: #de7783;
}
.btn--bg-blue {
  background-color: #312f77;
}
.btn--bg-blue:hover {
  background-color: #286fb7;
}
.btn--lg {
  padding: 1.6rem 3rem;
}

.label {
  color: #fff;
  display: inline-flex;
  border-radius: 0.4rem;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 3.2rem;
  padding: 0.45rem 1.35rem;
}
@media (max-width: 767px) {
  .label {
    font-size: 1.8rem;
  }
}
.label--red {
  background-color: #d12b5e;
}
.label--blue {
  background-color: #312f77;
}

.icon {
  width: 2.4rem;
  height: 2.4rem;
  font-size: 1.2rem;
  border: 2px solid #fff;
  border-radius: 4px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.social__item {
  color: #fff;
}

.form-group {
  margin-bottom: 1.6rem;
}
.form-group label {
  font-weight: 700;
  position: absolute;
  left: -9999px;
}
.form-group input:not([type=file], [type=submit]),
.form-group textarea {
  padding: 1.2rem 2.4rem;
  width: 100%;
  border: 2px solid #312f77;
  border-radius: 6px;
  color: #292929;
  color: #35373b;
  font-weight: 500;
}
@media (max-width: 767px) {
  .form-group input:not([type=file], [type=submit]),
  .form-group textarea {
    font-size: 1.4rem;
    padding: 1rem 1.6rem;
  }
}
.form-group input:not([type=file], [type=submit])::placeholder,
.form-group textarea::placeholder {
  color: #7e7e7e;
  font-weight: 500;
}
.form-group input:not([type=file], [type=submit]):focus,
.form-group textarea:focus {
  outline: 0;
}

.form-submit {
  position: relative;
}
.form-submit .btn {
  min-width: 12rem;
}
.form-submit .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
}

.fixed-whatsapp {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25d366;
  display: flex;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transform-style: preserve-3d;
  transition: all 0.2s;
}
.fixed-whatsapp i {
  font-size: 2.8rem;
  color: #fff;
}
.fixed-whatsapp::after {
  content: "";
  position: absolute;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  background-color: #128c7e;
  z-index: -999;
  animation: scaleUpScaleDown 2s ease-in infinite both;
  transform: translateZ(-1px);
  filter: blur(1px);
}
.fixed-whatsapp:hover {
  transform: scale(1.2);
}

.testimonial-item {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  padding: 2.4rem 0;
}
@media (max-width: 575px) {
  .testimonial-item {
    flex-direction: column;
    align-items: center;
  }
}
.testimonial-item:not(:last-child) {
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: 2rem;
}
.testimonial-item__infos {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 0 16.3rem;
}
@media (max-width: 575px) {
  .testimonial-item__infos {
    flex: auto;
  }
}
.testimonial-item__infos-avatar {
  width: 8rem !important;
  height: 8rem;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.6rem;
}
.testimonial-item__infos-name {
  color: #d12b5e;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}
.testimonial-item__infos-role {
  text-align: center;
  color: #7e7e7e;
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .testimonial-item__main {
    font-size: 1.4rem;
  }
}
@media (max-width: 575px) {
  .testimonial-item__main {
    padding: 0 1.8rem;
    text-align: center;
  }
}

.blog-item {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  color: #35373b;
  transition: all 0.2s ease-in;
}
.blog-item__thumb img {
  aspect-ratio: 410/273;
  object-fit: cover;
  border-radius: 0.8rem;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 100%;
}
.blog-item__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.6rem;
}
.blog-item__cats {
  display: flex;
  gap: 1.2rem;
}
.blog-item__cats span {
  color: #312f77;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 16px;
  padding: 0.4rem 1rem;
  border: 1px solid #312f77;
  border-radius: 8px;
}
.blog-item__title {
  font-weight: 600;
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  .blog-item__title {
    font-size: 1.8rem;
  }
}
.blog-item__date {
  color: #7e7e7e;
  font-weight: 500;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .blog-item__excerpt {
    font-size: 1.4rem;
  }
}
.blog-item__cta {
  background-color: transparent;
  color: #d12b5e;
  font-weight: 600;
  border: none;
}
@media (max-width: 767px) {
  .blog-item__cta {
    font-size: 1.4rem;
  }
}
.blog-item:hover {
  transform: translateY(-4px) scale(1.01);
}
.blog-item:active {
  transform: translateY(2px) scale(0.99);
}

.experience-item {
  border: 1px solid #c4c4c4;
  border-radius: 1.2rem;
  overflow: hidden;
  color: #35373b;
}
.experience-item__thumb img {
  width: 100%;
  height: 100%;
  aspect-ratio: 2/1;
  object-fit: cover;
}
.experience-item__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  transition: all 0.2s ease-in;
}
.experience-item__content .experience-item__title {
  font-weight: 600;
  font-size: 2.4rem;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .experience-item__content .experience-item__title {
    font-size: 1.8rem;
  }
}
.experience-item__content .experience-item__excerpt {
  font-size: 1.4rem;
}
.experience-item__content .experience-item__excerpt p {
  margin-bottom: 0;
}
.experience-item__content .experience-item__cta {
  color: #d12b5e;
  font-weight: 600;
  font-size: 1.4rem;
  background-color: transparent;
  border: none;
}
.experience-item:hover .experience-item__content {
  background-color: rgba(0, 0, 0, 0.1);
}

.footer {
  background-color: #d12b5e;
  padding: 7.2rem 0;
  color: #fff;
}
@media (max-width: 767px) {
  .footer {
    padding: 2.8rem 0;
  }
}
.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (max-width: 575px) {
  .footer-content {
    gap: 3.2rem;
  }
}
.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media (max-width: 767px) {
  .footer-logo {
    width: 100%;
  }
}
.footer-logo span {
  font-size: 1.4rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .footer-copyright {
    display: none;
  }
}
.footer-copyright__mobile {
  display: none;
}
@media (max-width: 767px) {
  .footer-copyright__mobile {
    display: block;
    width: 100%;
    font-size: 1.2rem;
  }
}
.footer-links ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-links ul li:not(:last-child) {
  margin-bottom: 2rem;
}
.footer-links ul li a {
  color: #fff;
  font-weight: 500;
}
@media (max-width: 767px) {
  .footer-links ul li a {
    font-size: 1.2rem;
  }
}
.footer-links ul li a:hover {
  text-decoration: underline;
}
.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
}
.footer-social .footer-title {
  font-weight: 600;
  font-size: 1.6rem;
  display: block;
}
@media (max-width: 767px) {
  .footer-social .footer-title {
    font-size: 1.4rem;
  }
}
.footer-social__item {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-social__item i {
  font-size: 1.8rem;
}
.footer-social__item span {
  font-size: 1.4rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .footer-social__item span {
    font-size: 1.2rem;
  }
}
.footer-social__item:hover span,
.footer-social__item:hover address {
  text-decoration: underline;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.header--relative {
  position: relative;
  background-color: #fff;
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  padding: 2rem 0;
}
@media (max-width: 991px) {
  .header-content {
    padding: 1.2rem 0;
  }
}
.header-logo a img {
  width: 18rem;
}
.header-infos {
  display: flex;
  align-items: center;
  gap: 4.8rem;
}
@media (max-width: 991px) {
  .header-nav {
    position: fixed;
    inset: 0px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-out;
  }
  .header-nav.opened {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.header-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
@media (max-width: 991px) {
  .header-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
  }
}
.header-nav ul > li > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  padding: 0 0.4rem;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 20px;
  transition: all 0.2s ease-in;
}
.header-nav ul > li > a:hover {
  transform: scale(1.05);
}
@media (max-width: 991px) {
  .header-nav ul > li > a {
    color: #312f77;
    font-weight: 600;
    font-size: 1.6rem;
  }
}
.header-nav ul > li.current-menu-item > a {
  font-weight: 700;
}
.header-nav .close-btn {
  display: none;
  color: #312f77;
  position: absolute;
  top: 3rem;
  right: 3rem;
  background-color: transparent;
  border: none;
  font-size: 2rem;
}
@media (max-width: 991px) {
  .header-nav .close-btn {
    display: block;
  }
}
.header-nav__btn {
  height: 6.7rem;
  position: relative;
  left: 0;
  color: #fff;
  cursor: pointer;
  width: max-content;
  display: none;
  gap: 0.2rem;
  align-items: center;
}
@media (max-width: 991px) {
  .header-nav__btn {
    display: flex;
    height: 100%;
  }
}
.header-nav__btn > span {
  text-transform: uppercase;
  transition: all 0.2s;
}
.header-nav__icon {
  position: relative;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
}
.header-nav__icon-bar {
  position: absolute;
  width: 80%;
  height: 0.2rem;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: #fff;
  border-radius: 5px;
  transition: all 0.1s;
}
.header-nav__icon-bar--1 {
  top: 8px;
}
.header-nav__icon-bar--2 {
  top: 50%;
  transform: translate(-50%, -50%);
}
.header-nav__icon-bar--3 {
  bottom: 8px;
}
.header-nav__icon.opened + span {
  font-size: 1.6rem;
}
.header-nav__icon.opened .header-nav__icon-bar {
  height: 0.1rem;
}
.header-nav__icon.opened .header-nav__icon-bar--1 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #fff;
}
.header-nav__icon.opened .header-nav__icon-bar--2 {
  opacity: 0;
  visibility: hidden;
}
.header-nav__icon.opened .header-nav__icon-bar--3 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: #fff;
}
.header-social {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
@media (max-width: 575px) {
  .header-social {
    display: none;
  }
}
.header-social a {
  font-size: 2rem;
  color: #fff;
  transition: all 0.2s ease-in;
}
.header-social a:hover {
  transform: scale(1.05);
}
.header--relative {
  position: relative;
  background-color: #fff;
  border-bottom: 1px solid #e1e1e1;
}
.header--relative .header-nav ul > li > a {
  color: #312f77;
}
.header--relative .header-nav__icon-bar {
  background-color: #312f77;
}
.header--relative .header-nav__icon.opened .header-nav__icon-bar--1 {
  background-color: #312f77;
}
.header--relative .header-nav__icon.opened .header-nav__icon-bar--3 {
  background-color: #312f77;
}
.header--relative .header-social a {
  color: #312f77;
}

.banner {
  width: 100%;
  position: relative;
  z-index: 0;
  aspect-ratio: 1920/800;
  min-height: 50rem;
}
.banner-item {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}
.banner-item__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
}
.banner .owl-carousel {
  height: 100%;
}
.banner .owl-carousel .owl-stage-outer {
  height: 100%;
}
.banner .owl-carousel .owl-stage-outer .owl-stage {
  height: 100%;
}
.banner .owl-carousel .owl-stage-outer .owl-stage .owl-item {
  height: 100%;
}
.banner .owl-dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .banner .owl-dots {
    bottom: 0;
  }
}
.banner .owl-dots .owl-dot span {
  background-color: transparent;
  border: 2px solid #fff;
}
.banner .owl-dots .owl-dot:hover span {
  background-color: #fff;
}
.banner .owl-dots .owl-dot.active span {
  background-color: #fff;
}
.banner .owl-prev,
.banner .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.banner .owl-prev {
  left: 2%;
}
.banner .owl-next {
  right: 2%;
}
.banner .owl-nav {
  height: 0 !important;
  margin: 0 !important;
}
.banner .owl-nav [class*=owl-] {
  width: 3.2rem;
  height: 3.2rem;
  background-color: #292929 !important;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem !important;
  opacity: 0.5;
  transition: all 0.2s;
}
.banner .owl-nav [class*=owl-]:hover {
  background-color: #434343 !important;
  opacity: 1;
  color: #000;
  text-decoration: none;
}

.breadcrumb {
  margin-top: 5rem;
  color: #898989;
  font-size: 1.4rem;
}
.breadcrumb-item a {
  color: #898989;
}
.breadcrumb-item a:hover {
  color: #616161;
}
.breadcrumb-item.active {
  font-weight: 500;
  color: #898989;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "\f0da" !important;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #454545;
}

.hero {
  background-color: #312f77;
  padding-top: 9rem;
}
@media (max-width: 991px) {
  .hero {
    padding-top: 7.3rem;
  }
}
@media (max-width: 767px) {
  .hero {
    overflow: hidden;
  }
}
@media (max-width: 767px) {
  .hero .container {
    padding: 0;
  }
}
.hero-content {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .hero-content {
    padding-top: 3.5rem;
  }
}
@media (max-width: 767px) {
  .hero-content {
    flex-direction: column;
  }
}
.hero-text {
  width: 48.2rem;
  max-width: 100%;
  color: #fff;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3.5rem;
}
@media (max-width: 767px) {
  .hero-text {
    gap: 2rem;
  }
}
@media (max-width: 767px) {
  .hero-text {
    padding: 0 1.8rem;
  }
}
.hero-text__title {
  font-size: 6.4rem;
  font-weight: 700;
  line-height: 76px;
  width: 46.8rem;
  max-width: 100%;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .hero-text__title {
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 50px;
    width: 35rem;
  }
}
@media (max-width: 767px) {
  .hero-text__title {
    font-size: 4rem;
    line-height: 48px;
    width: 46.8rem;
  }
}
.hero-text__title span {
  color: #d12b5e;
}
.hero-text p {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .hero-text p {
    font-size: 1.4rem;
  }
}
@media (max-width: 575px) {
  .hero-text .btn {
    width: 100%;
  }
}
.hero-images {
  display: flex;
  gap: 2rem;
  position: sticky;
  bottom: 0;
  align-self: flex-end;
}
@media (max-width: 767px) {
  .hero-images {
    display: none;
  }
}
.hero-images__col {
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
}
.hero-images__col--1 {
  width: 27.6rem;
  max-width: 100%;
  justify-content: flex-end;
}
@media (max-width: 1199px) {
  .hero-images__col--1 {
    width: 35%;
  }
}
.hero-images__col--2 {
  width: 39.2rem;
  max-width: 100%;
}
@media (max-width: 1199px) {
  .hero-images__col--2 {
    width: 65%;
  }
}
.hero-images__col img {
  max-width: 100%;
}
.hero-images__col .img-2 {
  padding-left: 5.8rem;
}
.hero-images__col .img-3 {
  padding-left: 5.8rem;
}
.hero-images__col .img-6 {
  padding-right: 4.3rem;
}
.hero-images__mobile {
  display: none;
  height: 20rem;
  position: relative;
}
@media (max-width: 767px) {
  .hero-images__mobile {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 7rem;
  }
  .hero-images__mobile img {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
  }
}
@media (max-width: 575px) {
  .hero-images__mobile {
    height: 15rem;
  }
}
@media (max-width: 400px) {
  .hero-images__mobile {
    height: 13rem;
  }
}

.experiences-hero {
  background-color: #312f77;
  padding-top: 9rem;
}
@media (max-width: 991px) {
  .experiences-hero {
    padding-top: 7.3rem;
  }
}
@media (max-width: 767px) {
  .experiences-hero {
    overflow: hidden;
  }
}
@media (max-width: 767px) {
  .experiences-hero .container {
    padding: 0;
  }
}
.experiences-hero-text {
  width: 47.9rem;
  max-width: 100%;
  margin-left: auto;
  padding-left: 1.8rem;
  color: #fff;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.4rem;
}
@media (max-width: 767px) {
  .experiences-hero-text {
    gap: 2rem;
  }
}
@media (max-width: 767px) {
  .experiences-hero-text {
    padding: 1.8rem 1.8rem 6rem 1.8rem;
  }
}
.experiences-hero-text__title {
  font-size: 6.4rem;
  font-weight: 700;
  line-height: 76px;
  width: 46.8rem;
  max-width: 100%;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .experiences-hero-text__title {
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 50px;
    width: 35rem;
  }
}
@media (max-width: 767px) {
  .experiences-hero-text__title {
    font-size: 4rem;
    line-height: 48px;
    width: 46.8rem;
  }
}
.experiences-hero-text__title span {
  color: #d12b5e;
}
.experiences-hero-text p {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .experiences-hero-text p {
    font-size: 1.4rem;
  }
}
@media (max-width: 575px) {
  .experiences-hero-text .btn {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .experiences-hero-image {
    display: none;
  }
}
.experiences-hero-image img {
  width: 100%;
}
.experiences-hero--corporativo {
  background-color: #312f77;
}
.experiences-hero--festas-e-sociais {
  background-color: #d12b5e;
}
.experiences-hero--escolas {
  background-color: #286fb7;
}

.artist-hero {
  background-color: #312f77;
  padding-top: 9rem;
  min-height: 44rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
@media (max-width: 991px) {
  .artist-hero {
    padding-top: 7.3rem;
  }
}
@media (max-width: 767px) {
  .artist-hero {
    overflow: hidden;
    min-height: unset;
  }
}
.artist-hero__title {
  font-weight: 700;
  font-size: 6.4rem;
  width: 52.2rem;
  max-width: 100%;
  color: #fff;
  margin-bottom: 1.8rem;
  padding-top: 9rem;
}
.artist-hero__title strong {
  font-weight: 700;
  color: #d12b5e;
  display: block;
}
@media (max-width: 767px) {
  .artist-hero__title {
    font-size: 4rem;
    padding-top: 8.8rem;
  }
}
.artist-hero img {
  width: 100%;
}
@media (max-width: 767px) {
  .artist-hero img {
    width: 300%;
    left: -50%;
    position: relative;
  }
}
.artist-hero--red {
  background-color: #d12b5e;
}
.artist-hero--red .artist-hero__title strong {
  color: #312f77;
}

.home-envs {
  padding: 7.3rem 0 6.2rem 0;
}
@media (max-width: 767px) {
  .home-envs {
    padding: 3.2rem 0 4.8rem 0;
  }
}
.home-envs__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}
@media (max-width: 767px) {
  .home-envs__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .home-envs__items {
    grid-template-columns: 1fr;
  }
}
.home-envs__items .env-item {
  border: 1px solid #c4c4c4;
  border-radius: 1.2rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.home-envs__items .env-item__header {
  background-color: #312f77;
  position: relative;
}
.home-envs__items .env-item__header h2 {
  color: #fff;
  font-size: 3.2rem;
  font-weight: 600;
  padding: 4rem 6rem 3.5rem 3rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .home-envs__items .env-item__header h2 {
    font-size: 2.4rem;
  }
}
.home-envs__items .env-item__header img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.home-envs__items .env-item__body {
  padding: 2.4rem 2.4rem 2.4rem 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}
.home-envs__items .env-item__body p {
  font-size: 1.4rem;
  line-height: 20px;
  flex: 1;
  display: flex;
  align-items: center;
}
.home-envs__items .env-item__body a {
  font-weight: 600;
  color: #d12b5e;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: auto;
}
@media (max-width: 767px) {
  .home-envs__items .env-item__body a {
    font-size: 1.4rem;
  }
}
.home-envs__items .env-item--red .env-item__header {
  background-color: #d12b5e;
}
.home-envs__items .env-item--light-blue .env-item__header {
  background-color: #286fb7;
}
.home-space__content {
  width: 52.9rem;
  max-width: 100%;
}
@media (max-width: 767px) {
  .home-space__content {
    width: 100%;
    margin-bottom: 4.4rem;
  }
}
.home-space__content-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.4rem;
}
.home-space__content-text h2 {
  font-weight: 600;
  font-size: 3.2rem;
  line-height: 42px;
}
@media (max-width: 767px) {
  .home-space__content-text h2 {
    font-size: 2.8rem;
  }
}
.home-space__content-text p {
  font-size: 1.8rem;
}
@media (max-width: 575px) {
  .home-space__content .btn {
    width: 100%;
  }
}
.home-space__items {
  margin: 3.6rem 0 6.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2.4rem;
  row-gap: 3.6rem;
}
@media (max-width: 767px) {
  .home-space__items {
    margin-bottom: 3.6rem;
  }
}
@media (max-width: 575px) {
  .home-space__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
.home-space__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}
.home-space__item img {
  height: 7rem;
  width: auto;
}
.home-space__item h3 {
  font-weight: 600;
  text-align: center;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .home-space__item h3 {
    font-size: 1.4rem;
  }
}
@media (max-width: 575px) {
  .home-space [class^=col-md-] {
    overflow: hidden;
  }
  .home-space [class^=col-md-]:last-child {
    padding-right: 0;
  }
}
.home-space__images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
}
@media (max-width: 575px) {
  .home-space__images {
    display: none;
  }
}
.home-space__images > a {
  aspect-ratio: 302/420;
  transition: all 0.2s ease-in;
}
.home-space__images > a:hover {
  transform: scale(1.05);
}
.home-space__images > a:first-child {
  grid-column: 1/3;
  aspect-ratio: 628/331;
}
.home-space__images > a:first-child img {
  object-position: bottom;
}
.home-space__images > a img {
  border-radius: 0.8rem;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-space__carousel {
  display: none !important;
}
@media (max-width: 575px) {
  .home-space__carousel {
    display: block !important;
  }
}
.home-space__carousel img {
  aspect-ratio: 241/331;
  object-fit: cover;
  border-radius: 8px;
}
.home-space__carousel .owl-stage-outer {
  overflow: unset !important;
}
.home-space__carousel .owl-dots {
  margin-top: 3.2rem !important;
}
.home-space__carousel .owl-dots .owl-dot span {
  width: 0.8rem;
  height: 0.8rem;
  background-color: #e1e1e1 !important;
}
.home-space__carousel .owl-dots .owl-dot.active span {
  background-color: #7e7e7e !important;
}
.home-artist {
  background-color: #d12b5e;
  padding: 8rem 0;
  background-image: url("../images/home-artist-bg.svg");
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 33%;
  margin: 6.5rem 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .home-artist {
    background-image: none;
    padding: 2rem 0 5rem;
    margin: 4.8rem 0 5.7rem;
  }
  .home-artist::before {
    content: "";
    position: absolute;
    background-image: url(../images/home-artist-bg.svg);
    background-repeat: no-repeat;
    background-position: 0;
    background-size: 100%;
    transform: rotate(90deg);
    width: 100%;
    height: 100%;
    left: 0px;
    top: -456px;
  }
}
@media (max-width: 767px) {
  .home-artist__image {
    margin-bottom: 3.2rem;
  }
}
.home-artist__image img {
  max-width: 100%;
  display: block;
  margin: auto;
  position: relative;
  z-index: 1;
  padding: 0 3.2rem;
}
.home-artist__text {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4rem;
}
@media (max-width: 575px) {
  .home-artist__text {
    gap: 2rem;
  }
}
.home-artist__text h2 {
  font-family: "Chelsea Market";
  font-size: 6.4rem;
}
@media (max-width: 575px) {
  .home-artist__text h2 {
    font-size: 4rem;
  }
}
@media (max-width: 575px) {
  .home-artist__text .btn {
    width: 100%;
  }
}
.home-testimonial {
  margin-bottom: 7.5rem;
}
.home-testimonial__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.home-testimonial__text .label {
  margin-bottom: 4.8rem;
}
@media (max-width: 767px) {
  .home-testimonial__text .label {
    margin-bottom: 3.2rem;
  }
}
.home-testimonial__text img {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .home-testimonial__text img {
    margin-bottom: 2.4rem;
  }
}
.home-testimonial__text h2 {
  margin-bottom: 4rem;
  font-size: 4.8rem;
  font-weight: 600;
}
@media (max-width: 767px) {
  .home-testimonial__text h2 {
    font-size: 3.2rem;
    margin-bottom: 2.4rem;
  }
}
.home-testimonial__text p {
  font-size: 1.8rem;
  width: 40.9rem;
  max-width: 100%;
}
@media (max-width: 767px) {
  .home-testimonial__text p {
    width: 100%;
  }
}
.home-testimonial__items {
  padding-right: 7rem;
}
@media (max-width: 767px) {
  .home-testimonial__items {
    padding-right: 0;
  }
}
@media (max-width: 575px) {
  .home-testimonial__items {
    display: none;
  }
}
.home-testimonial__carousel {
  display: none !important;
}
@media (max-width: 575px) {
  .home-testimonial__carousel {
    display: block !important;
  }
}
.home-testimonial__carousel .owl-prev, .home-testimonial__carousel .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.4rem !important;
  color: #35373b !important;
}
.home-testimonial__carousel .owl-prev:hover, .home-testimonial__carousel .owl-next:hover {
  color: #35373b !important;
  background-color: transparent !important;
}
.home-testimonial__carousel .owl-prev {
  left: 0;
}
.home-testimonial__carousel .owl-next {
  right: 0;
}
.home-customers {
  padding: 5.3rem 0 9.6rem 0;
  background-color: #f6f6f6;
}
@media (max-width: 575px) {
  .home-customers {
    display: none;
  }
}
.home-customers h2 {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 3.2rem;
}
.home-customers__carousel {
  padding: 0 4rem;
}
.home-customers__carousel .owl-nav {
  height: 0 !important;
  margin: 0 !important;
}
.home-customers__carousel .owl-nav .owl-prev,
.home-customers__carousel .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem !important;
  opacity: 0.7;
  transition: all 0.2s ease-in;
}
.home-customers__carousel .owl-nav .owl-prev:hover,
.home-customers__carousel .owl-nav .owl-next:hover {
  background-color: transparent;
  color: #35373b;
  opacity: 1;
}
.home-customers__carousel .owl-nav .owl-prev {
  left: -4rem;
}
@media (max-width: 1340px) {
  .home-customers__carousel .owl-nav .owl-prev {
    left: 0;
  }
}
.home-customers__carousel .owl-nav .owl-next {
  right: -4rem;
}
@media (max-width: 1340px) {
  .home-customers__carousel .owl-nav .owl-next {
    right: 0;
  }
}
.home-blog {
  padding: 7rem 0 8rem 0;
  background-image: url("../images/home-blog-bg.svg");
  background-repeat: no-repeat;
  background-size: 40rem;
}
@media (max-width: 1300px) {
  .home-blog {
    background-size: 30%;
  }
}
@media (max-width: 991px) {
  .home-blog {
    background-image: none;
  }
}
@media (max-width: 575px) {
  .home-blog {
    background-color: #f6f6f6;
  }
}
.home-blog__header {
  width: 60.2rem;
  max-width: 100%;
  margin: auto;
  margin-bottom: 6.4rem;
}
@media (max-width: 767px) {
  .home-blog__header {
    margin-bottom: 3.2rem;
  }
}
@media (max-width: 767px) {
  .home-blog__header p {
    font-size: 1.4rem;
  }
}
.home-blog__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.8rem;
  margin-bottom: 1.2rem;
}
.home-blog__title h2 {
  font-size: 4.8rem;
  font-weight: 600;
  width: 31.3rem;
  max-width: 100%;
}
@media (max-width: 767px) {
  .home-blog__title h2 {
    font-size: 3.2rem;
    width: 20rem;
  }
}
@media (max-width: 575px) {
  .home-blog__title h2 {
    font-size: 2.8rem;
    width: 15rem;
  }
}
.home-blog__subtitle {
  text-align: center;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .home-blog__subtitle {
    font-size: 1.6rem;
  }
}
@media (max-width: 575px) {
  .home-blog__subtitle {
    font-size: 1.4rem;
  }
}
.home-blog__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media (max-width: 767px) {
  .home-blog__list {
    margin-top: 2.2rem;
    gap: 3.2rem;
  }
}
@media (max-width: 575px) {
  .home-blog__list {
    grid-template-columns: 1fr;
  }
}
.home-blog__cta {
  margin-top: 9.6rem;
  text-align: center;
}
@media (max-width: 575px) {
  .home-blog__cta {
    margin-top: 3.2rem;
  }
}
@media (max-width: 575px) {
  .home-blog__cta .btn {
    width: 100%;
  }
}
.home-contact {
  overflow: hidden;
}
.home-contact__left {
  background-color: #312f77;
  height: 100%;
  background-image: url("../images/home-contact-infos-bg.png");
  background-repeat: no-repeat;
  background-position: right bottom;
}
@media (max-width: 767px) {
  .home-contact__left {
    background-size: 50%;
  }
}
.home-contact__infos {
  width: 64rem;
  max-width: 100%;
  margin-left: auto;
  padding: 13rem 7rem 28rem 1.8rem;
}
@media (max-width: 767px) {
  .home-contact__infos {
    width: 100%;
    padding: 4.2rem 2rem 15.6rem 2rem;
  }
}
.home-contact__title {
  color: #fff;
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 12rem;
}
@media (max-width: 767px) {
  .home-contact__title {
    font-size: 2.8rem;
    margin-bottom: 4.8rem;
  }
}
.home-contact__items {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  width: 41.3rem;
  max-width: 100%;
}
.home-contact__items li a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.home-contact__items li a i {
  color: #286fb7;
  width: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  flex: 1 0 3.2rem;
}
.home-contact__items li a span,
.home-contact__items li a address {
  margin: 0;
  font-weight: 600;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .home-contact__items li a span,
  .home-contact__items li a address {
    font-size: 1.4rem;
  }
}
@media (max-width: 344px) {
  .home-contact__items li a span,
  .home-contact__items li a address {
    width: 25rem;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.home-contact__items li a:hover span,
.home-contact__items li a:hover address {
  text-decoration: underline;
}
.home-contact__blocks {
  display: flex;
}
.home-contact__blocks .block-item {
  background-color: #286fb7;
  color: #fff;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.6rem 4.5rem;
}
@media (max-width: 767px) {
  .home-contact__blocks .block-item {
    padding: 2.5rem 1.9rem;
  }
}
@media (max-width: 767px) {
  .home-contact__blocks .block-item img {
    width: 5.6rem;
  }
}
@media (max-width: 575px) {
  .home-contact__blocks .block-item img {
    width: 4.4rem;
  }
}
@media (max-width: 400px) {
  .home-contact__blocks .block-item img {
    width: 3.2rem;
  }
}
.home-contact__blocks .block-item--2 {
  background-color: #312f77;
}
.home-contact__blocks .block-item--3 {
  background-color: #d12b5e;
}
.home-contact__blocks .block-item--4 {
  background-color: #de7783;
}
.home-contact__blocks .block-item--5 {
  background-color: #312f77;
}
@media (max-width: 767px) {
  .home-contact__blocks .block-item--5 {
    display: none;
  }
}
.home-contact__blocks .block-item img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7492%) hue-rotate(319deg) brightness(103%) contrast(101%);
}
.home-contact__blocks .block-item img.blue {
  filter: brightness(0) saturate(100%) invert(23%) sepia(16%) saturate(2344%) hue-rotate(202deg) brightness(93%) contrast(102%);
}
.home-contact__blocks .block-item img.red {
  filter: brightness(0) saturate(100%) invert(21%) sepia(80%) saturate(2595%) hue-rotate(323deg) brightness(93%) contrast(88%);
}
.home-contact__form {
  width: 64rem;
  max-width: 100%;
  margin-right: auto;
  padding: 7rem 1.8rem 10rem 6.5rem;
}
@media (max-width: 1300px) {
  .home-contact__form {
    padding: 7rem 2rem 2rem 2rem;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .home-contact__form {
    padding: 5.5rem 2rem 6.4rem 2rem;
    width: 100%;
  }
}
.home-contact__form > h3 {
  font-size: 4.8rem;
  width: 26.2rem;
  margin-bottom: 5.3rem;
  font-weight: 600;
}
@media (max-width: 767px) {
  .home-contact__form > h3 {
    font-size: 3.2rem;
    width: 17rem;
    margin-bottom: 3.2rem;
  }
}
.home-contact__form textarea {
  min-height: 13.7rem;
}
.home-contact__form .form-group {
  margin-bottom: 2.4rem;
}
.home-contact__form .form-submit {
  margin-top: 3.8rem;
}
@media (max-width: 767px) {
  .home-contact__form .form-submit {
    margin-top: 0;
  }
}
@media (max-width: 575px) {
  .home-contact__form .form-submit .btn {
    width: 100%;
  }
}

.page-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
}
.page-404 .container {
  width: 80rem;
}
.page-404-main {
  padding: 20rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #312f77;
  padding: 4rem 2rem;
  border-radius: 40px;
  width: 80rem;
  max-width: 100%;
  margin: auto;
}
.page-404-main * {
  max-width: 100%;
}
.page-404-main h1 {
  text-align: center;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: 2rem;
  color: #fff;
}
.page-404-main h1 span {
  font-size: 8rem;
  display: block;
  color: #fff;
}
.page-404-main h2 {
  font-size: 2.4rem;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2rem;
  margin-top: 3.2rem;
  color: #fff;
}
.page-404-main p {
  color: #fff;
}
.page-404-main a {
  display: block;
  margin: auto;
  width: 35rem;
  max-width: 100%;
  text-decoration: underline;
  margin-bottom: 2rem;
}

.contact .home-contact__blocks {
  overflow: hidden;
}
@media (max-width: 767px) {
  .contact .home-contact__blocks .block-item:nth-child(n+5) {
    display: none;
  }
}
.contact .container {
  max-width: 886px;
  margin: 11rem auto;
}
@media (max-width: 767px) {
  .contact .container {
    margin: 4.4rem 0;
  }
}
.contact-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4.4rem;
}
@media (max-width: 767px) {
  .contact-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
  }
}
.contact-header h1 {
  font-size: 4.8rem;
  font-weight: 600;
}
@media (max-width: 767px) {
  .contact-header h1 {
    font-size: 2.8rem;
  }
}
.contact-header .btn {
  padding: 0;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .contact-header .btn {
    font-size: 1.6rem;
  }
}
.contact-header .btn i {
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  .contact-header .btn i {
    font-size: 2rem;
  }
}
.contact-form > p {
  width: 60rem;
  max-width: 100%;
  text-align: center;
  font-weight: 500;
  margin: auto;
  margin-bottom: 4.6rem;
}
@media (max-width: 767px) {
  .contact-form > p {
    text-align: left;
    font-size: 1.4rem;
    margin-bottom: 2.8rem;
  }
}
@media (max-width: 575px) {
  .contact-form form .form-group textarea {
    height: 18rem;
  }
}
.contact-form form .form-submit {
  text-align: center;
}
@media (max-width: 575px) {
  .contact-form form .form-submit .btn {
    width: 100%;
  }
}

.thanks {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
}
.thanks .container {
  width: 80rem;
}
.thanks-main {
  padding: 20rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #292929;
  padding: 4rem 2rem;
  border-radius: 40px;
  width: 80rem;
  max-width: 100%;
  margin: auto;
}
.thanks-main * {
  max-width: 100%;
}
.thanks-main h1 {
  text-align: center;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: 2rem;
  color: #fff;
}
.thanks-main h1 span {
  font-size: 8rem;
  display: block;
  color: #292929;
}
.thanks-main h2 {
  font-size: 2.4rem;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2rem;
  margin-top: 3.2rem;
  color: #fff;
}
.thanks-main p {
  color: #fff;
}
.thanks-main a {
  display: block;
  margin: auto;
  width: 35rem;
  max-width: 100%;
  text-decoration: underline;
}

.experiences {
  padding-top: 8rem;
}
.experiences-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2.4rem;
  margin-bottom: 3.2rem;
}
.experiences-header h2 {
  font-size: 3.2rem;
  font-weight: 600;
  width: 44.4rem;
  max-width: 100%;
}
@media (max-width: 767px) {
  .experiences-header h2 {
    font-size: 2.8rem;
  }
}
@media (max-width: 575px) {
  .experiences-header .btn {
    width: 100%;
  }
}
.experiences-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
  margin-bottom: 6.4rem;
}
@media (max-width: 991px) {
  .experiences-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .experiences-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 575px) {
  .experiences-list {
    grid-template-columns: 1fr;
  }
}
.experiences-location__header {
  text-align: center;
  margin-bottom: 6.4rem;
}
@media (max-width: 767px) {
  .experiences-location__header {
    margin-bottom: 3.2rem;
  }
}
.experiences-location__header h2 {
  font-size: 4.8rem;
  font-weight: 600;
  margin-bottom: 1.6rem;
}
@media (max-width: 767px) {
  .experiences-location__header h2 {
    font-size: 3.2rem;
  }
}
.experiences-location__header p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .experiences-location__header p {
    font-size: 1.4rem;
  }
}
.experiences-location__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}
@media (max-width: 767px) {
  .experiences-location__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .experiences-location__list {
    grid-template-columns: 1fr;
  }
}
.experiences-location .location-item {
  background-color: #f6f6f6;
  padding: 2.2rem 0 0 3rem;
  height: 14.1rem;
  min-height: 100%;
  border-radius: 1.2rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  overflow: hidden;
  transition: all 0.2s ease-in;
}
.experiences-location .location-item__title {
  padding-bottom: 2.4rem;
  font-weight: 600;
  font-size: 2.4rem;
}
@media (max-width: 991px) {
  .experiences-location .location-item__title {
    font-size: 1.8rem;
  }
}
.experiences-location .location-item__icon {
  width: 11.5rem;
  height: auto !important;
}
.experiences-location .location-item:hover {
  background-color: #e9e9e9;
}
.experiences-location__cta {
  margin: 8rem 0 4.4rem 0;
  text-align: center;
}
@media (max-width: 767px) {
  .experiences-location__cta {
    margin: 4.8rem 0 8rem 0;
  }
}
@media (max-width: 575px) {
  .experiences-location__cta .btn {
    width: 100%;
  }
}

.artist {
  padding: 9.4rem 0 9.6rem 0;
}
@media (max-width: 767px) {
  .artist {
    padding: 2.8rem 0 0 0;
  }
}
.artist-main {
  margin-bottom: 14rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .artist-main {
    margin-bottom: 2.5rem;
  }
}
.artist-text {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media (max-width: 767px) {
  .artist-text {
    margin-bottom: 3.2rem;
  }
}
.artist-text img {
  width: 5.7rem;
}
@media (max-width: 767px) {
  .artist-text img {
    width: auto;
    height: 6.4rem;
    margin-right: auto;
  }
}
.artist-text h2 {
  font-weight: 600;
  font-size: 4.8rem;
  width: 58.5rem;
  max-width: 100%;
}
@media (max-width: 767px) {
  .artist-text h2 {
    font-size: 3.2rem;
  }
}
.artist-text p {
  margin-bottom: 0;
}
.artist-text__awards {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.artist-text__awards-item h3 {
  display: block;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .artist-text__awards-item h3 {
    font-size: 1.4rem;
  }
}
@media (max-width: 575px) {
  .artist-text .btn {
    width: 100%;
  }
}
.artist-images {
  padding-left: 7.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (max-width: 767px) {
  .artist-images {
    padding-left: 0;
  }
}
@media (max-width: 575px) {
  .artist-images {
    display: none;
  }
}
.artist-images a img {
  width: 100%;
  max-width: 100%;
  border-radius: 1.2rem;
}
.artist-images a:first-child {
  width: calc(100% - 4rem);
}
.artist-images a:first-child img {
  display: block;
  width: 43.6rem;
}
.artist-images a:nth-child(2) {
  width: 40%;
}
.artist-images a:nth-child(3) {
  width: calc(60% - 2rem);
}
.artist-images--atelier {
  padding-left: 3.2rem;
}
.artist-images--atelier a:first-child img {
  display: block;
  width: 44.2rem;
}
.artist-images--atelier a:nth-child(2) {
  width: calc(50% - 1.2rem);
}
.artist-images--atelier a:nth-child(3) {
  width: calc(50% - 1.2rem);
}
.artist-banner img {
  width: 100%;
  min-height: 20rem;
  object-fit: cover;
}
.artist-jobs {
  padding: 6.8rem 0 8rem 0;
  background-image: url("../images/artist-job-bg.svg");
  background-repeat: no-repeat;
  background-size: 32rem;
}
@media (max-width: 1300px) {
  .artist-jobs {
    background-size: 30%;
  }
}
@media (max-width: 991px) {
  .artist-jobs {
    background-image: none;
  }
}
@media (max-width: 767px) {
  .artist-jobs {
    padding: 6.4rem 0 8rem 0;
  }
}
.artist-jobs__header {
  text-align: center;
  margin-bottom: 6.4rem;
}
@media (max-width: 767px) {
  .artist-jobs__header {
    margin-bottom: 3.2rem;
  }
}
.artist-jobs__header h2 {
  color: #312f77;
  font-weight: 600;
  font-size: 4.8rem;
  margin-bottom: 1.6rem;
}
@media (max-width: 767px) {
  .artist-jobs__header h2 {
    font-size: 3.2rem;
  }
}
.artist-jobs__header p {
  font-weight: 500;
}
.artist-jobs__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  margin-bottom: 10.4rem;
}
@media (max-width: 767px) {
  .artist-jobs__list {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 4.8rem;
  }
}
@media (max-width: 575px) {
  .artist-jobs__list {
    grid-template-columns: 1fr;
  }
}
.artist-jobs__list a img {
  aspect-ratio: 408/489;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.2rem;
}
@media (max-width: 575px) {
  .artist-jobs__cta .btn {
    width: 100%;
  }
}
.artist-spaces {
  padding: 6.8rem 0 0 0;
  background-image: url("../images/home-blog-bg.svg");
  background-repeat: no-repeat;
  background-size: 32rem;
}
@media (max-width: 1300px) {
  .artist-spaces {
    background-size: 30%;
  }
}
@media (max-width: 991px) {
  .artist-spaces {
    background-image: none;
  }
}
@media (max-width: 767px) {
  .artist-spaces {
    padding: 6.4rem 0 8rem 0;
  }
}
.artist-spaces__header {
  text-align: center;
  margin-bottom: 6.4rem;
}
@media (max-width: 767px) {
  .artist-spaces__header {
    margin-bottom: 3.2rem;
  }
}
.artist-spaces__header h2 {
  color: #d12b5e;
  font-weight: 600;
  font-size: 4.8rem;
  margin-bottom: 1.6rem;
}
@media (max-width: 767px) {
  .artist-spaces__header h2 {
    font-size: 3.2rem;
  }
}
.artist-spaces__header p {
  font-weight: 500;
}
.artist-spaces__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2.4rem;
  row-gap: 4.2rem;
  margin-bottom: 10.4rem;
}
@media (max-width: 767px) {
  .artist-spaces__list {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 4.8rem;
  }
}
@media (max-width: 575px) {
  .artist-spaces__list {
    grid-template-columns: 1fr;
  }
}
.artist-spaces__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.artist-spaces__item a img {
  aspect-ratio: 408/329;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.2rem;
}
.artist-spaces__item h3 {
  text-align: center;
  font-weight: 600;
  font-size: 1.8rem;
}

.experience {
  padding: 5rem 0;
}
@media (max-width: 767px) {
  .experience {
    padding: 3rem 0;
  }
}
.experience .container {
  max-width: 886px;
}
.experience-content {
  color: #000;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media (max-width: 767px) {
  .experience-content {
    gap: 1.2rem;
  }
}
.experience-back {
  font-size: 1.4rem;
  padding: 0;
  align-self: flex-start;
}
.experience-back i {
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .experience-back {
    font-size: 1.2rem;
  }
}
.experience-title {
  font-weight: 600;
  font-size: 4.8rem;
}
@media (max-width: 767px) {
  .experience-title {
    font-size: 2.8rem;
  }
}
.experience-thumbnail {
  margin-bottom: 2.4rem;
}
.experience-thumbnail img {
  aspect-ratio: 846/477;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.2rem;
}
.experience-text {
  margin-bottom: 2.4rem;
}
@media (max-width: 767px) {
  .experience-text {
    margin-bottom: 0.2rem;
    font-size: 1.4rem;
  }
}
.experience-cta {
  text-align: center;
  margin-bottom: 3.2rem;
}
@media (max-width: 575px) {
  .experience-cta .btn {
    width: 100%;
  }
}
.experience-gallery h2 {
  font-size: 3.2rem;
  font-weight: 600;
  color: #d12b5e;
  margin-bottom: 2.4rem;
}
@media (max-width: 767px) {
  .experience-gallery h2 {
    font-size: 2.4rem;
  }
}
.experience-gallery__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 767px) {
  .experience-gallery__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 400px) {
  .experience-gallery__list {
    grid-template-columns: 1fr;
  }
}
.experience-gallery__list a img {
  aspect-ratio: 268/236;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

body .blog {
  margin: 7rem 0;
}
@media (max-width: 767px) {
  body .blog {
    margin: 3rem 0;
  }
}
body .blog-header {
  width: 60.2rem;
  max-width: 100%;
  margin: auto;
  margin-bottom: 4.8rem;
}
@media (max-width: 767px) {
  body .blog-header {
    margin-bottom: 3.2rem;
  }
}
@media (max-width: 767px) {
  body .blog-header p {
    font-size: 1.4rem;
  }
}
body .blog-header__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.8rem;
  margin-bottom: 1.2rem;
}
body .blog-header__title h2 {
  font-size: 4.8rem;
  font-weight: 600;
  width: 31.3rem;
  max-width: 100%;
}
@media (max-width: 767px) {
  body .blog-header__title h2 {
    font-size: 3.2rem;
    width: 20rem;
  }
}
@media (max-width: 575px) {
  body .blog-header__title h2 {
    font-size: 2.8rem;
    width: 15rem;
  }
}
body .blog-header__subtitle {
  text-align: center;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  body .blog-header__subtitle {
    font-size: 1.6rem;
  }
}
@media (max-width: 575px) {
  body .blog-header__subtitle {
    font-size: 1.4rem;
  }
}
body .blog-search {
  width: 50rem;
  max-width: 100%;
  margin-bottom: 3.2rem;
}
body .blog-search .form-group {
  position: relative;
}
body .blog-search .form-group input {
  padding-right: 5rem;
}
body .blog-search .form-group button {
  background-color: transparent;
  border: none;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
}
body .blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media (max-width: 767px) {
  body .blog-list {
    margin-top: 2.2rem;
    gap: 3.2rem;
  }
}
@media (max-width: 575px) {
  body .blog-list {
    grid-template-columns: 1fr;
  }
}
body .blog-pagination {
  text-align: center;
  margin-top: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .blog-pagination .page-numbers {
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7e7e7e;
  border-radius: 0.4rem;
  font-weight: 600;
  font-size: 1.4rem;
}
body .blog-pagination .page-numbers:hover {
  background-color: #f6f6f6;
}
body .blog-pagination .page-numbers.current {
  background-color: #312f77;
  color: #fff;
}
body .blog-pagination .page-numbers.current:hover {
  background-color: #312f77;
}

body .single-blog {
  padding: 5rem 0;
}
@media (max-width: 767px) {
  body .single-blog {
    padding: 3rem 0;
  }
}
body .single-blog .container {
  max-width: 886px;
}
body .single-blog-content {
  color: #000;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media (max-width: 767px) {
  body .single-blog-content {
    gap: 1.2rem;
  }
}
body .single-blog-tags {
  display: flex;
  gap: 1.2rem;
}
body .single-blog-tags span {
  color: #312f77;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 16px;
  padding: 0.4rem 1rem;
  border: 1px solid #312f77;
  border-radius: 8px;
}
body .single-blog-infos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
body .single-blog-author-date {
  color: #d12b5e;
  font-weight: 500;
}
body .single-blog-share {
  font-size: 2.4rem;
  color: #35373b;
  background-color: transparent;
  border: none;
  transition: all 0.2s ease-in;
}
body .single-blog-share:hover {
  color: #7e7e7e;
}
body .single-blog-social {
  display: flex;
  gap: 1.2rem;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translate(10px, -50%);
  transition: all 0.2s ease-in;
  padding: 0.8rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  border-radius: 0.8rem;
  background-color: #fff;
}
body .single-blog-social.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0, -50%);
}
body .single-blog-social a {
  width: 2.4rem;
  height: 2.4rem;
  background-color: #d12b5e;
  color: #fff;
  border-radius: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in;
}
body .single-blog-social a:hover {
  background-color: #de7783;
}
body .single-blog-title {
  font-weight: 600;
  font-size: 4.8rem;
}
@media (max-width: 767px) {
  body .single-blog-title {
    font-size: 2.8rem;
  }
}
body .single-blog-thumbnail {
  margin-bottom: 2.4rem;
}
body .single-blog-thumbnail img {
  aspect-ratio: 846/477;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.2rem;
}
body .single-blog-text {
  margin-bottom: 2.4rem;
}
@media (max-width: 767px) {
  body .single-blog-text {
    margin-bottom: 0.2rem;
    font-size: 1.4rem;
  }
}
body .single-blog-all {
  font-size: 1.4rem;
  padding: 0;
  align-self: flex-start;
}
body .single-blog-all i {
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  body .single-blog-all {
    font-size: 1.2rem;
  }
}
body .single-blog-cta {
  text-align: center;
  margin-bottom: 3.2rem;
}
@media (max-width: 575px) {
  body .single-blog-cta .btn {
    width: 100%;
  }
}
body .single-blog hr {
  color: #e1e1e1;
}
body .single-blog-others h2 {
  font-size: 3.2rem;
  font-weight: 600;
  color: #d12b5e;
  margin-bottom: 2.4rem;
}
@media (max-width: 767px) {
  body .single-blog-others h2 {
    font-size: 2.4rem;
  }
}
body .single-blog-others__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
}
@media (max-width: 575px) {
  body .single-blog-others__list {
    grid-template-columns: 1fr;
  }
}

.container {
  max-width: 1280px;
}

.container,
.row {
  --bs-gutter-x: 3.6rem !important;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0 !important;
}

/*# sourceMappingURL=main.css.map */
