* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
html {
  font-size: calc(0.25rem + 0.3vw);
}
body {
  font-family: 'ClashDisplay-Light';
  color: #101010;
  font-size: 2.3rem;
}
@media (max-width: 500px) {
  body {
    font-size: 3rem;
  }
}
.responsive-image {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.image-wrap {
  position: relative;
  z-index: 2;
}
.mask {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #D53F34;
  z-index: 1;
}
.image {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
@media (max-width: 500px) {
  .max-w-container {
    overflow: hidden;
  }
}
.max-w-container.w-1400 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.max-w-container.w-1600 {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}
.header.sticky {
  position: sticky;
  top: 0px;
  left: 0;
  z-index: 44;
  background-color: #ffffff;
}
@media (max-width: 500px) {
  .header.sticky {
    top: 0;
  }
  .header.sticky .top-header {
    margin-top: 10px;
  }
}
.top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
.top-header .logo-wrap {
  position: relative;
  z-index: 44;
}
.top-header .logo-wrap a {
  color: #101010;
  font-size: 24px;
  text-transform: uppercase;
}
.menu-opener {
  position: relative;
  z-index: 44;
  cursor: pointer;
}
.menu-opener span {
  display: block;
  margin-bottom: 10px;
  width: 30px;
  height: 1px;
  background-color: #101010;
}
.menu-opener.opened-menu-btn span:nth-child(1),
.menu-opener.opened-menu-btn span:nth-child(3) {
  visibility: hidden;
}
.cta-wrap {
  display: inline-block;
}
.cta-wrap .cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
  border-radius: 20px;
  border: 1px solid #D53F34;
}
.cta-wrap .cta a {
  color: #D53F34;
  text-transform: capitalize;
  display: inline-block;
  margin-right: 15px;
}
.menu {
  display: none;
}
.menu.opened-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #eeedee;
  z-index: 22;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu.opened-menu .nav-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.menu.opened-menu .nav-link {
  color: #101010;
  text-transform: uppercase;
  font-size: 100px;
  font-family: 'ClashDisplay-Extralight';
  transition: color 0.3s ease-in-out;
  display: flex;
  align-items: center;
}
.menu.opened-menu .nav-link span {
  color: #D53F34;
  font-size: 4rem;
  display: inline-block;
  margin-right: 3rem;
}
.menu.opened-menu .nav-link:hover {
  color: #D53F34;
  transition: color 0.3s ease-in-out;
}
.hero-section {
  margin-top: 70px;
}
.hero-section .max-w-container {
  position: relative;
}
.hero-section .content-wrap {
  display: flex;
  justify-content: flex-end;
}
.hero-section .content-wrap .left {
  position: absolute;
  z-index: 3;
  top: 70px;
  left: 0;
  width: 940px;
}
.hero-section .main-title {
  color: #D53F34;
  font-size: 20rem;
  line-height: 0.8;
  margin-bottom: 40px;
}
.hero-section .subheading {
  font-size: 6rem;
  text-transform: uppercase;
  line-height: 1;
  text-align: center;
  font-weight: 500;
}
.hero-section .subheading.part-two {
  position: relative;
  left: 80px;
}
.hero-section .jacob-box {
  position: relative;
  display: flex;
}
.hero-section .jacob-box .cta {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-color: #D53F34;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  margin-left: 30px;
  margin-top: 30px;
}
.hero-section .jacob-box .cta:after {
  content: '';
  position: absolute;
  z-index: 2;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px solid #D53F34;
  background-color: transparent;
}
.hero-section .jacob-box .cta .cta-text {
  text-align: center;
  color: #ffffff;
  font-size: 20px;
  text-transform: uppercase;
}
.hero-section .greeting-message {
  margin-top: 15px;
}
.services-section {
  margin-top: 150px;
}
.services-section .content-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.services-section .content-wrap .right {
  width: 900px;
}
.services-section .content-wrap .left {
  margin-right: 200px;
  padding-top: 50px;
}
.services-section .content-wrap .single-service {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 50px 0;
  border-bottom: 1px solid #10101010;
}
.services-section .content-wrap .description {
  margin-left: 60px;
}
.services-section .content-wrap .number {
  font-size: 30px;
  color: #D53F34;
}
.services-section .content-wrap .title {
  font-size: 30px;
  font-weight: 500;
  text-transform: uppercase;
}
.services-section .content-wrap .text {
  margin-top: 20px;
}
.latest-work-section {
  margin-top: 150px;
  position: relative;
}
.latest-work-section .heading-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.latest-work-section .title {
  font-size: 100px;
  text-transform: uppercase;
}
.latest-work-section .title span {
  color: #D53F34;
  text-transform: capitalize;
}
.latest-work-section .view-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #101010;
}
.latest-work-section .view-all .text {
  text-transform: capitalize;
  margin-right: 20px;
  color: #101010;
}
.latest-work-section .projects-wrap {
  margin-top: 100px;
}
.latest-work-section .projects-wrap .row {
  display: flex;
  justify-content: space-between;
}
.latest-work-section .projects-wrap .row.second {
  position: relative;
  margin-top: 100px;
}
.latest-work-section .projects-wrap .row.second .single-project {
  position: absolute;
}
.latest-work-section .projects-wrap .row.second .single-project.project-three {
  left: 100px;
}
.latest-work-section .projects-wrap .row.second .single-project.project-four {
  right: 80px;
  top: -260px;
}
.latest-work-section .projects-wrap .row.second-projects-page {
  position: relative;
  margin-top: 100px;
}
.latest-work-section .projects-wrap .row.second-projects-page .single-project.project-three {
  margin-left: 100px;
}
.latest-work-section .projects-wrap .project-title {
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.latest-work-section .projects-wrap .project-title span {
  color: #D53F34;
  text-transform: capitalize;
}
.exhibitions-section {
  margin-top: 750px;
}
.exhibitions-section.page-exhibitions {
  margin-top: 0;
}
.exhibitions-section .heading-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.exhibitions-section .title {
  font-size: 100px;
  text-transform: uppercase;
}
.exhibitions-section .title span {
  color: #D53F34;
  text-transform: capitalize;
}
.exhibitions-section .view-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #101010;
}
.exhibitions-section .view-all .text {
  text-transform: capitalize;
  margin-right: 20px;
  color: #101010;
}
.exhibitions-section .exhibitions-wrap {
  margin-top: 100px;
}
.exhibitions-section .exhibition-element {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 100px;
  font-size: 2rem;
}
.exhibitions-section .exhibition-element .image-and-description {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.exhibitions-section .exhibition-element .image-and-description .description {
  width: 700px;
  margin-left: 50px;
}
.exhibitions-section .exhibition-element .image-and-description .description .text {
  margin-top: 15px;
}
.exhibitions-section .exhibition-element .exhibition-details {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.exhibitions-section .exhibition-element .exhibition-details span {
  display: inline-block;
  margin-right: 15px;
}
.exhibitions-section .exhibition-element .exhibition-title {
  font-size: 40px;
  text-transform: uppercase;
}
.exhibitions-section .exhibition-element .exhibition-title span {
  color: #D53F34;
  text-transform: capitalize;
}
.exhibitions-section .exhibition-element .tickets-and-date {
  display: flex;
  justify-content: space-between;
  width: 20%;
}
.exhibitions-section .exhibition-element .tickets {
  color: #D53F34;
  display: flex;
  align-items: center;
  justify-content: center;
}
.exhibitions-section .exhibition-element .tickets span {
  display: inline-block;
  margin-right: 10px;
}
.exhibitions-section .exhibition-element .date {
  color: #D53F34;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}
.exhibitions-section .exhibition-element .date .day {
  font-size: 100px;
  line-height: 1;
  font-weight: 500;
}
.testimonials-section {
  margin-top: 150px;
}
.testimonials-section .content-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.testimonials-section .content-wrap .left-side {
  width: 30%;
}
.testimonials-section .content-wrap .right-side {
  width: 50%;
}
.testimonials-section .title-wrap {
  width: 480px;
  margin-right: 220px;
}
.testimonials-section .title-wrap .title {
  text-transform: uppercase;
  font-size: 60px;
  line-height: 1.1;
}
.testimonials-section .title-wrap span {
  text-transform: capitalize;
  color: #D53F34;
}
.testimonials-section .title-wrap .subtitle {
  font-size: 30px;
  text-transform: uppercase;
  margin: 15px 0 30px 0;
}
.testimonials-section .title-wrap .subtitle span {
  color: #D53F34;
  text-transform: uppercase;
}
.testimonials-section .testimonials-wrap,
.testimonials-section .right-side {
  overflow: hidden;
}
@media (max-width: 500px) {
  .testimonials-section .left-side {
    width: 100%;
  }
}
.testimonials-section .single-testimonial {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #10101010;
  padding: 90px 0;
}
.testimonials-section .single-testimonial .text {
  margin-left: 40px;
}
.testimonials-section .single-testimonial .title {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
}
.testimonials-section .single-testimonial .title .title-text {
  font-size: 30px;
  margin-left: 20px;
}
.testimonials-section .single-testimonial .testimonial-text p {
  margin-bottom: 30px;
}
.testimonials-section .single-testimonial .testimonial-author {
  display: flex;
  align-items: center;
}
.testimonials-section .single-testimonial .testimonial-author .separator {
  height: 1px;
  width: 20px;
  background-color: #101010;
  display: inline-block;
  margin: 0 20px;
}
.footer-cta {
  margin-top: 150px;
}
.footer-cta .content-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-cta .content-wrap .cta {
  background-color: #D53F34;
  border-radius: 50%;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-cta .content-wrap .cta span {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 24px;
}
.footer-cta .content-wrap .title-wrap {
  margin-left: 50px;
}
.footer-cta .content-wrap .title-wrap .title {
  font-size: 100px;
  text-transform: uppercase;
  line-height: 1.1;
}
.footer-cta .content-wrap .title-wrap .title span {
  color: #D53F34;
  text-transform: capitalize;
  display: block;
}
.footer {
  margin-top: 200px;
  padding-bottom: 50px;
}
.footer .content-wrap {
  padding: 90px 40px 0px 70px;
  border-top: 1px solid #10101010;
  display: flex;
  justify-content: space-between;
}
.footer .logo {
  display: flex;
  flex-direction: column;
}
.footer .logo a {
  color: #D53F34;
  font-size: 100px;
  line-height: 1;
  font-weight: 600;
}
.footer .menu-column .menu-title {
  color: #D53F34;
  text-transform: uppercase;
  font-size: 30px;
}
.footer .menu-items {
  margin-top: 30px;
}
.footer .menu-items .item {
  display: block;
  font-size: 18px;
  margin-bottom: 20px;
  color: #101010;
}
.footer .colophon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 100px;
}
.footer .colophon .left-side {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .colophon .left-side .separator {
  height: 1px;
  width: 20px;
  background-color: #101010;
  display: inline-block;
  margin: 0 20px;
}
.footer .colophon .socials {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .colophon .socials .social-link {
  margin-left: 20px;
  text-transform: uppercase;
  color: #101010;
}
@media (max-width: 500px) {
  .menu.opened-menu .nav-link {
    font-size: 30px;
    display: block;
    margin-top: 20px;
  }
  .hero-section {
    margin-top: 20px;
  }
  .hero-section .content-wrap {
    flex-direction: column;
  }
  .hero-section .content-wrap .left {
    position: static;
    width: 100%;
    order: 2;
  }
  .hero-section .content-wrap .right {
    order: 1;
  }
  .hero-section .content-wrap .right .image-wrap img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .hero-section .main-title {
    font-size: 8rem;
    margin-bottom: 20px;
  }
  .hero-section .subheading {
    font-size: 3rem;
    text-align: left;
  }
  .hero-section .jacob-box {
    display: flex;
    margin-top: 30px;
    position: relative;
  }
  .hero-section .jacob-box .image-wrap {
    width: 40%;
    margin-right: 10%;
  }
  .hero-section .jacob-box .image-wrap img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .hero-section .jacob-box .greeting-message {
    position: absolute;
    bottom: -30px;
    font-size: 4rem;
  }
  .services-section {
    margin-top: 30px;
  }
  .services-section .content-wrap {
    flex-direction: column;
  }
  .services-section .content-wrap .left .section-title {
    font-size: 6rem;
  }
  .services-section .content-wrap .right {
    width: 100%;
  }
  .services-section .content-wrap .number p {
    font-size: 6rem;
  }
  .latest-work-section .title {
    font-size: 10rem;
    line-height: 0.9;
    width: 60%;
  }
  .latest-work-section .projects-wrap {
    margin-top: 50px;
  }
  .latest-work-section .projects-wrap .project-image-wrap img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .latest-work-section .projects-wrap .row {
    flex-direction: column;
  }
  .latest-work-section .projects-wrap .row.second .project-four,
  .latest-work-section .projects-wrap .row.second .project-three {
    position: static;
  }
  .latest-work-section .projects-wrap .row.second-projects-page .single-project.project-three {
    margin-left: 0;
  }
  .exhibitions-section {
    margin-top: 30px;
  }
  .exhibitions-section .heading-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .exhibitions-section .title {
    font-size: 10rem;
    line-height: 0.9;
    width: 100%;
    margin-bottom: 20px;
  }
  .exhibitions-section .exhibition-element {
    flex-direction: column;
    align-items: flex-start;
    font-size: 2.8rem;
    margin-bottom: 50px;
  }
  .exhibitions-section .exhibition-element .image-and-description {
    flex-direction: column;
    align-items: flex-start;
  }
  .exhibitions-section .exhibition-element .image-and-description .image-wrap {
    width: 100%;
  }
  .exhibitions-section .exhibition-element .image-and-description .image-wrap img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .exhibitions-section .exhibition-element .image-and-description .description {
    margin-left: 0;
    width: auto;
  }
  .exhibitions-section .exhibition-element .image-and-description .description .exhibition-title {
    line-height: 0.9;
    margin-top: 15px;
  }
  .exhibitions-section .exhibition-element .tickets {
    margin: 20px 0;
  }
  .exhibitions-section .exhibition-element .tickets-and-date {
    width: 100%;
  }
  .testimonials-section .content-wrap {
    flex-direction: column;
  }
  .testimonials-section .content-wrap .title-wrap {
    width: 100%;
  }
  .testimonials-section .content-wrap .title-wrap .title {
    font-size: 10rem;
    line-height: 0.9;
    width: 100%;
    margin-bottom: 20px;
  }
  .testimonials-section .content-wrap .title-wrap .subtitle {
    font-size: 4rem;
  }
  .testimonials-section .content-wrap .right-side,
  .testimonials-section .content-wrap .testimonials-wrap {
    width: 100%;
  }
  .testimonials-section .content-wrap .left-side {
    width: 100%;
  }
  .testimonials-section .content-wrap .single-testimonial {
    flex-direction: column;
    width: 100%!important;
  }
  .testimonials-section .content-wrap .single-testimonial .text {
    margin-left: 0;
  }
  .footer-cta {
    margin-top: 10rem;
  }
  .footer-cta .content-wrap {
    flex-direction: column;
  }
  .footer-cta .content-wrap .title-wrap {
    margin-left: 0;
  }
  .footer-cta .content-wrap .title-wrap .title {
    font-size: 10rem;
    text-align: center;
    line-height: 1;
    margin-top: 3rem;
  }
  .footer {
    margin-top: 8rem;
  }
  .footer .content-wrap,
  .footer .colophon {
    flex-direction: column;
  }
  .footer .content-wrap {
    padding: 2rem;
  }
  .footer .logo {
    margin-bottom: 3rem;
  }
  .footer .logo a {
    font-size: 10rem;
  }
  .footer .menu-items {
    margin-top: 3rem;
  }
  .footer .menu-items .item {
    margin-bottom: 2rem;
  }
}
.page-exhibitions-title {
  padding-top: 7rem;
}
.page-exhibitions-title .content-wrap {
  text-align: center;
}
.page-exhibitions-title .description {
  text-align: center;
  width: 60%;
  margin: 0 auto;
}
.page-exhibitions-title .arrow {
  margin: 30px 0;
}
.inner-page-title {
  color: #D53F34;
  text-align: center;
  font-size: 20rem;
}
@media (max-width: 500px) {
  .inner-page-title {
    font-size: 10rem;
  }
}
.exh-hero {
  margin-top: 30px;
}
.exh-hero .exh-date {
  text-align: center;
}
.exh-hero .title {
  font-size: 10rem;
  text-align: center;
  line-height: 0.9;
  color: #D53F34;
  z-index: 3;
  position: relative;
}
.exh-hero .image-wrap {
  position: relative;
  top: -20px;
}
.exh-hero .image-wrap img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.details-section .content-wrap {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}
.details-section .content-wrap .left .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D53F34;
  border: 1px solid #D53F34;
  padding: 15px 25px;
  border-radius: 100px;
}
.details-section .content-wrap .left .btn span {
  font-size: 4rem;
}
.details-section .content-wrap .left .btn svg {
  margin-left: 10px;
}
.details-section .content-wrap .right {
  width: 75%;
  margin-top: 30px;
}
.details-section .content-wrap .right .subtitle {
  font-size: 7rem;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.details-section .content-wrap .right p:not(.subtitle) {
  margin-bottom: 20px;
}
.contact-form-section .contact-form {
  width: 60%;
  margin: 0 auto;
}
@media (max-width: 500px) {
  .contact-form-section .contact-form {
    width: 100%;
  }
}
.contact-form-section .form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}
.contact-form-section .form-row input,
.contact-form-section .form-row textarea {
  padding: 10px 20px;
  border: 1px solid #101010;
  font-size: 1.8rem;
  font-family: 'ClashDisplay-Light';
}
.contact-form-section .form-row .submit-btn {
  background-color: #D53F34;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 15px;
}
@media (min-width: 501px) and (max-width: 1024px) {
  .menu.opened-menu .nav-link {
    font-size: 30px;
    display: block;
    margin-top: 20px;
  }
  .hero-section {
    margin-top: 20px;
  }
  .hero-section .max-w-container {
    position: relative;
  }
  .hero-section .content-wrap {
    display: flex;
    justify-content: flex-end;
  }
  .hero-section .content-wrap .left {
    position: absolute;
    z-index: 3;
    top: 70px;
    left: 30px;
    width: 440px;
  }
  .hero-section .content-wrap .right .image-wrap {
    width: 400px;
  }
  .hero-section .main-title {
    font-size: 15rem;
    width: 60%;
  }
  .hero-section .jacob-box {
    margin-top: 60px;
  }
  .services-section {
    margin-top: 200px;
  }
  .services-section .content-wrap .right {
    width: 100%;
  }
  .services-section .content-wrap .left {
    margin-right: 50px;
    padding-top: 60px;
  }
  .latest-work-section {
    margin-top: 8rem;
  }
  .latest-work-section .title {
    font-size: 10rem;
  }
  .latest-work-section .projects-wrap {
    margin-top: 10rem;
  }
  .latest-work-section .projects-wrap .row {
    display: flex;
    justify-content: space-between;
  }
  .latest-work-section .projects-wrap .row .project-one {
    width: 45%;
  }
  .latest-work-section .projects-wrap .row .project-two {
    width: 50%;
  }
  .latest-work-section .projects-wrap .row.second {
    position: relative;
    margin-top: 10rem;
  }
  .latest-work-section .projects-wrap .row.second .single-project {
    position: absolute;
  }
  .latest-work-section .projects-wrap .row.second .single-project.project-three {
    left: 8rem;
    width: 55%;
    top: -5rem;
  }
  .latest-work-section .projects-wrap .row.second .single-project.project-four {
    right: 0;
    top: 10rem;
    width: 30%;
  }
  .latest-work-section .projects-wrap .row.second-projects-page {
    position: relative;
    margin-top: 10rem;
  }
  .latest-work-section .projects-wrap .row.second-projects-page .single-project.project-three {
    margin-left: 100px;
  }
  .latest-work-section .projects-wrap .project-title {
    font-size: 3rem;
  }
  .exhibitions-section {
    margin-top: 80rem;
  }
  .exhibitions-section .title {
    font-size: 10rem;
    line-height: 1;
  }
  .exhibitions-section .exhibitions-wrap {
    margin-top: 5rem;
  }
  .exhibitions-section .exhibition-element {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5rem;
    font-size: 2rem;
  }
  .exhibitions-section .exhibition-element .image-and-description .image-wrap {
    width: 200px;
  }
  .exhibitions-section .exhibition-element .image-and-description .image-wrap img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .exhibitions-section .exhibition-element .image-and-description .description {
    width: 50%;
    margin-left: 2rem;
  }
  .exhibitions-section .exhibition-element .image-and-description .description .text {
    margin-top: 15px;
  }
  .exhibitions-section .exhibition-element .exhibition-title {
    font-size: 4rem;
    text-transform: uppercase;
  }
  .exhibitions-section .exhibition-element .exhibition-title span {
    color: #D53F34;
    text-transform: capitalize;
  }
  .exhibitions-section .exhibition-element .tickets-and-date {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .exhibitions-section .exhibition-element .tickets {
    color: #D53F34;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .exhibitions-section .exhibition-element .tickets span {
    display: inline-block;
    margin-right: 10px;
  }
  .exhibitions-section .exhibition-element .date {
    color: #D53F34;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
  }
  .exhibitions-section .exhibition-element .date .day {
    font-size: 5rem;
    line-height: 1;
    font-weight: 500;
  }
  .testimonials-section {
    margin-top: 13rem;
  }
  .testimonials-section .content-wrap {
    flex-direction: column;
  }
  .testimonials-section .content-wrap .left-side {
    width: 100%;
  }
  .testimonials-section .content-wrap .right-side {
    width: 100%;
  }
  .testimonials-section .title-wrap {
    width: 80%;
    margin-right: 220px;
  }
  .testimonials-section .title-wrap .title {
    font-size: 10rem;
    line-height: 1;
  }
  .testimonials-section .title-wrap .subtitle {
    font-size: 4rem;
    text-transform: uppercase;
    margin: 15px 0 30px 0;
  }
  .testimonials-section .single-testimonial {
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #10101010;
    padding: 5rem 0;
  }
  .testimonials-section .single-testimonial .text {
    margin-left: 40px;
  }
  .testimonials-section .single-testimonial .right-side .image {
    width: 30%;
  }
  .footer-cta {
    margin-top: 15rem;
  }
  .footer-cta .content-wrap .cta {
    width: 200px;
    height: 200px;
  }
  .footer-cta .content-wrap .cta span {
    font-size: 24px;
  }
  .footer-cta .content-wrap .title-wrap {
    margin-left: 5rem;
  }
  .footer-cta .content-wrap .title-wrap .title {
    font-size: 10rem;
    line-height: 1;
  }
  .footer {
    margin-top: 10rem;
    padding-bottom: 5rem;
  }
  .footer .content-wrap {
    padding: 5rem 3rem 0px 3rem;
  }
  .footer .logo {
    display: flex;
    flex-direction: column;
  }
  .footer .logo a {
    color: #D53F34;
    font-size: 10rem;
    line-height: 0.9;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 2rem;
  }
  .footer .menu-column .menu-title {
    font-size: 3rem;
  }
  .footer .menu-items {
    margin-top: 30px;
  }
  .footer .menu-items .item {
    display: block;
    font-size: 18px;
    margin-bottom: 1rem;
    color: #101010;
  }
  .footer .colophon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 100px;
  }
  .footer .colophon .left-side {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer .colophon .left-side .separator {
    height: 1px;
    width: 20px;
    background-color: #101010;
    display: inline-block;
    margin: 0 20px;
  }
  .footer .colophon .socials {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer .colophon .socials .social-link {
    margin-left: 20px;
    text-transform: uppercase;
    color: #101010;
  }
  .inner-page-title {
    font-size: 10rem;
  }
}
@media (min-width: 840px) {
  .exh-hero .image-wrap {
    width: 50%;
    margin: 0 auto;
  }
  .details-section .content-wrap {
    flex-direction: row;
    align-items: flex-start;
  }
  .details-section .content-wrap .left {
    width: 15%;
  }
  .details-section .content-wrap .left .btn span {
    font-size: 2rem;
  }
  .details-section .content-wrap .right {
    width: 75%;
    margin-top: 0;
  }
}
@media (min-width: 1440px) {
  #circle {
    width: 30px;
    height: 30px;
    border: 1px solid #D53F34;
    border-radius: 50%;
    position: absolute;
    top: 500px;
    left: 500px;
    z-index: 6;
  }
}
.breadcrumb {
  display: flex;
  margin-top: 30px;
  font-size: 1.5rem;
}
.breadcrumb .separator {
  display: inline-block;
  margin: 0 10px;
}
.breadcrumb a {
  color: #D53F34;
}
.skip-to-content-link {
  background-color: #D53F34;
  color: #ffffff;
  padding: 5px;
  top: 30px;
  left: 0;
  position: absolute;
  transform: translateY(-200%);
  transition: transform 0.3s ease-in-out;
}
.skip-to-content-link:focus {
  transform: translateY(0%);
}
.toggle-animation {
  position: fixed;
  right: 0;
  top: 40%;
  z-index: 5;
  transform: rotate(-90deg) translateY(50%);
  transform-origin: 74% 50%;
  background-color: #D53F34;
  color: #ffffff;
  border: none;
  font-size: 2rem;
  font-family: 'ClashDisplay-Regular';
  padding: 10px;
  cursor: pointer;
}
.error-message {
  color: #f20000;
}
