/* 

1. Variables
	- imports
	- colours
	- gradients
	- media queries
	- fonts
	- times
2. General
	2.1 Layout
	2.2 Forms
3. Banner

4. Main Content
	4.1 Home Panels
5. Modules
6. News
7. Events
8. Footer
*/
/*
	1. Variables
*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

a {
  text-decoration: none;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  font-family: "Outfit", sans-serif;
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 147.5%;
  overflow-x: hidden;
  color: #515645;
}
@media only screen and (min-width: 741px) and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  body {
    font-size: 1.4rem;
  }
}
body.modal {
  overflow: hidden;
  height: 100vh;
}
body.menu-open {
  overflow: hidden;
}
body.menu-open #main-menu a {
  color: white;
}

h5 {
  color: #FF514B;
  font-size: 1.8rem;
  font-weight: 450;
  margin-bottom: 2rem;
}

p {
  font-size: 1.8rem;
  line-height: 2.4rem;
}
p.large {
  font-size: 2.4rem;
  line-height: 3.2rem;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  p.large {
    font-size: 2.1rem;
  }
}

p strong, li strong {
  font-weight: bold;
}
p em, li em {
  font-style: italic;
}
p a, li a {
  transition-duration: 0.2s;
}

.caption {
  font-size: 1.2rem;
}

a.underline {
  text-decoration: underline;
}
.link-button a, a.link-button {
  display: inline-block;
  padding: 0.2rem 1.3rem;
  border-radius: 20px;
  border: 1px solid #515645;
  color: #515645;
  font-weight: 600;
  transition-duration: 0.3s;
  text-decoration: none !important;
}
.link-button a:hover, a.link-button:hover {
  border-color: #FF514B;
}

/* 2. General */
.outer {
  width: 100vw;
  position: relative;
  overflow: hidden;
}
.outer .inner {
  position: relative;
  width: calc(100vw - 88px);
  max-width: 1364px;
  margin: 0 auto;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  .outer .inner {
    width: calc(100vw - 38px);
  }
}
.outer.grey {
  background-color: #515645;
}
.outer.pink {
  background-color: #FDEAFF;
}

.social li {
  display: inline-block;
}
.social li a {
  display: block;
  text-indent: -99999px;
  width: 32px;
  height: 32px;
}
.social.grey .ig {
  margin-right: 2rem;
}
.social.grey .ig a {
  background-image: url("../images/ig-grey.svg");
}
.social.grey .in a {
  background-image: url("../images/in-grey.svg");
}
.social.red .ig {
  margin-right: 2rem;
}
.social.red .ig a {
  background-image: url("../images/ig-red.svg");
}
.social.red .in a {
  background-image: url("../images/in-red.svg");
}

#banner {
  position: fixed;
  z-index: 99999;
}
#banner .inner {
  padding-top: 3rem;
  display: flex;
  justify-content: space-between;
}
#banner #site-title {
  width: 13.96rem;
  height: 7.64rem;
}
#banner #site-title a {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../images/animo-grey-red.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  text-indent: -99999px;
  position: relative;
}
.page-about #banner #site-title a:after, .home #banner #site-title a:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../images/animo-pink-red.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 1;
  transition-duration: 0.3s;
  pointer-events: none;
}
.page-about.small-banner #banner #site-title a:after, .home.dark-logo #banner #site-title a:after, .home.small-banner #banner #site-title a:after {
  opacity: 0;
}
#banner #main-menu {
  margin-top: 1rem;
  padding: 0.35rem 2.5rem 1rem 2.5rem;
  height: 3.6rem;
  border-radius: 1.8rem;
  box-sizing: border-box;
  background-color: #FDEAFF;
  border: 1px solid #FDEAFF;
  transition-duration: 0.2s;
  cursor: pointer;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #banner #main-menu {
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 1.8rem;
    padding: 0.35rem 0rem 1rem 0rem;
    overflow: hidden;
    border: 1px solid #515645;
    position: relative;
  }
  #banner #main-menu ul {
    opacity: 0;
  }
  #banner #main-menu:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url("../images/dotdotdot.svg");
    background-size: contain;
    width: 22px;
    height: 6px;
    background-position: center;
    z-index: 9999;
  }
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  .menu-open #banner #main-menu {
    width: 50%;
    height: auto;
    border: none;
    padding: 1.5rem;
  }
  .menu-open #banner #main-menu ul {
    opacity: 1;
  }
  .menu-open #banner #main-menu ul li {
    display: block;
    position: relative;
    width: 100%;
    height: 36px;
  }
  .menu-open #banner #main-menu ul li a {
    font-size: 2.3rem;
    position: absolute;
    z-index: 9999;
  }
  .menu-open #banner #main-menu:after {
    display: none;
  }
}
.small-banner.menu-closed #banner #main-menu {
  width: 3.6rem;
  padding: 0.35rem 0rem 1rem 0rem;
  overflow: hidden;
  border: 1px solid #515645;
  position: relative;
}
.small-banner.menu-closed #banner #main-menu ul {
  opacity: 0;
}
.small-banner.menu-closed #banner #main-menu:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("../images/dotdotdot.svg");
  background-size: contain;
  width: 22px;
  height: 6px;
  background-position: center;
  z-index: 9999;
}
#banner #main-menu ul {
  width: 100%;
}
#banner #main-menu li {
  display: inline-block;
  margin-left: 2.25rem;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #banner #main-menu li {
    margin-left: 1rem;
  }
}
#banner #main-menu li:first-child {
  margin-left: 0;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #banner #main-menu li:first-child {
    margin-left: 1rem;
  }
}
#banner #main-menu li a {
  color: #515645;
  font-size: 1.8rem;
  line-height: 1rem;
  font-weight: 550;
  transition-duration: 0.4s;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #banner #main-menu li a {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
}
#banner #main-menu li a:hover {
  font-weight: 650;
  letter-spacing: -0.02rem;
  color: #FF514B;
}

#carousel {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  /* make the SVG fill and scale */
  /* text fixed in center */
  /* hover effect */
}
#carousel #carousel-message {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100vw - 180px);
  min-width: 320px;
  max-width: 780px;
  font-size: 8rem;
  font-weight: 300;
  line-height: 9rem;
  letter-spacing: -0.1rem;
  color: white;
  z-index: 18;
  text-align: left;
  transform: translate(-50%, -50%);
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #carousel #carousel-message {
    font-size: 5rem;
    line-height: 5.5rem;
  }
}
#carousel #carousel-slides {
  width: 100%;
  height: 100%;
}
#carousel #carousel-slides .swiper-slide {
  width: 100%;
  height: 100%;
}
#carousel #carousel-slides .swiper-slide .image {
  display: block;
  background-size: cover;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition-duration: 18s;
}
#carousel #carousel-slides .swiper-slide.swiper-slide-active .image {
  transform: scale(1.15);
}
#carousel .circle-wrapper {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 96px;
  height: 48px;
  cursor: pointer;
  z-index: 20;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #carousel .circle-wrapper {
    display: none;
  }
}
#carousel .circle-wrapper:before {
  content: "";
  position: absolute;
  z-index: 990;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/down-arrow-red.svg");
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
  transition-duration: 0.4s;
}
#carousel .circle-wrapper:after {
  content: "";
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/down-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
  transition-duration: 0.4s;
}
#carousel .semi-circle {
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease;
  transform-origin: bottom center;
}
#carousel .semi-circle path {
  fill: #FDEAFF;
}
#carousel .circle-text {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50vh - 50%));
  color: #515645;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition-duration: 0.8s;
  max-width: 780px;
  width: calc(100vw - 100px);
}
#carousel .circle-text h2 {
  font-size: 4.8rem;
  margin-bottom: 4.8rem;
}
#carousel .circle-text p {
  font-size: 2.4rem;
  line-height: 3.2rem;
  margin-bottom: 5rem;
}
#carousel .circle-text p a {
  font-size: 1.8rem;
}
#carousel .circle-wrapper:hover:after {
  opacity: 0;
  top: 5px;
}
#carousel .circle-wrapper:hover:before {
  top: 5px;
}
#carousel .circle-wrapper:hover .semi-circle {
  transform: scale(40); /* adjust so it fully covers viewport */
}
#carousel .circle-wrapper:hover .circle-text {
  opacity: 1;
  pointer-events: all;
}

#carousel-spacer {
  width: 100vw;
  height: 100vh;
}

#mobile-intro {
  opacity: 0;
  transition-duration: 0.6s;
}
#mobile-intro.active {
  opacity: 1;
}
#mobile-intro.active .text {
  transform: translateY(0);
}
#mobile-intro .inner {
  padding: 24rem 0;
  max-width: 780px;
}
#mobile-intro .text {
  transform: translateY(800px);
  transition-duration: 0.9s;
}
#mobile-intro .text h2 {
  font-size: 4.8rem;
  margin-bottom: 4.8rem;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #mobile-intro .text h2 {
    font-size: 3.2rem;
    line-height: 3.2rem;
  }
}
#mobile-intro .text p {
  font-size: 2.4rem;
  line-height: 3.2rem;
  margin-bottom: 5rem;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #mobile-intro .text p {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
#mobile-intro .text p a {
  font-size: 1.8rem;
}

#title-banner.outer {
  background-position: center;
  background-size: cover;
}
#title-banner.outer.no-image {
  background-color: #FDEAFF;
  padding: 20rem 0 10rem 0;
  font-size: 4.8rem;
  color: #515645;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #title-banner.outer.no-image {
    padding: 15rem 0 5rem 0;
  }
}
.single-news #title-banner.outer.no-image h2 {
  font-size: 7.2rem;
  line-height: 8.2rem;
  font-weight: 700;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  .single-news #title-banner.outer.no-image h2 {
    font-size: 3rem;
    line-height: 3.8rem;
  }
}
.single-news #title-banner.outer.no-image h4 {
  margin-top: 4rem;
  font-size: 1.6rem;
}
.single-news #title-banner.outer.no-image .inner {
  max-width: 108rem;
  box-sizing: border-box;
  padding-right: 215px;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  .single-news #title-banner.outer.no-image .inner {
    padding-right: 0;
  }
}
.single-news #title-banner.outer.no-image .inner.back-to-news {
  max-width: 1362px;
  margin-bottom: 10rem;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  .single-news #title-banner.outer.no-image .inner.back-to-news {
    margin-bottom: 2rem;
  }
}
.single-news #title-banner.outer.no-image .inner.back-to-news a {
  font-size: 2.4rem;
  text-decoration: underline;
  color: #515645;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  .single-news #title-banner.outer.no-image .inner.back-to-news a {
    font-size: 1.6rem;
  }
}
.single-news #title-banner.outer.no-image .news-socials {
  margin-top: 5rem;
}
.single-news #title-banner.outer.no-image .news-socials li {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 1rem;
}
.single-news #title-banner.outer.no-image .news-socials li a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -999999px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.single-news #title-banner.outer.no-image .news-socials li.linkedin a {
  background-image: url("../images/linkedin-icon.svg");
}
.single-news #title-banner.outer.no-image .news-socials li.email a {
  background-image: url("../images/mail-icon.svg");
}
.single-news #title-banner.outer.no-image .news-socials li.share a {
  background-image: url("../images/share-icon.svg");
}
.single-work #title-banner.outer.no-image h2 {
  font-size: 12rem;
  line-height: 12rem;
  letter-spacing: -1.5px;
  font-weight: 650;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  .single-work #title-banner.outer.no-image h2 {
    font-size: 5rem;
    line-height: 5rem;
  }
}
.single-work #title-banner.outer.no-image h4 {
  margin-top: 4rem;
  font-size: 2rem;
  line-height: 2.8rem;
  text-transform: uppercase;
}
.single-work #title-banner.outer.no-image .inner {
  box-sizing: border-box;
  padding-right: 215px;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  .single-work #title-banner.outer.no-image .inner {
    padding-right: 0;
  }
}
#title-banner.outer.narrow .inner {
  max-width: 1064px;
}
#title-banner.outer.banner-with-image {
  height: 100vh;
  max-height: 60vw;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #title-banner.outer.banner-with-image {
    max-height: none;
    height: 75vh;
  }
}
#title-banner.outer.banner-with-image .inner {
  height: 100%;
}
#title-banner.outer.banner-with-image h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 8rem;
  line-height: 9rem;
  color: white;
}
.page-about #title-banner.outer.banner-with-image h2 {
  width: 642px;
  height: 106px;
  text-indent: -99999px;
  background-image: url("https://animopr.co.uk/wp-content/uploads/2025/12/Animo-Definition.svg");
  background-repeat: no-repeat;
  background-position: center;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  .page-about #title-banner.outer.banner-with-image h2 {
    width: calc(100vw - 50px);
  }
}

.tile-group {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  .tile-group {
    display: block;
  }
}
.tile-group .tile {
  color: #515645;
  cursor: pointer;
}
.tile-group .tile.reveal {
  transform: translateY(-50%);
}
.tile-group .tile.reveal.active {
  transform: translateY(0);
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  .tile-group .tile {
    margin-bottom: 5rem;
  }
}
.tile-group .tile h4 {
  font-size: 1.8rem;
  font-weight: 650;
  line-height: 2.3rem;
  margin-top: 2rem;
}
.tile-group .tile h4 a {
  color: #515645;
}
.tile-group .tile h5 {
  font-size: 1.8rem;
  line-break: 2.3rem;
  font-weight: 430;
  color: #515645;
}
.tile-group .tile .image-outer {
  overflow: hidden;
  aspect-ratio: 1/0.88073394;
  width: 100%;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  .tile-group .tile .image-outer {
    aspect-ratio: 5/4;
  }
}
.tile-group .tile .image-outer .image {
  background-size: cover;
  background-position: center;
  width: 100%;
  aspect-ratio: 1/0.88073394;
  transition: transform 400ms ease-in-out;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  .tile-group .tile .image-outer .image {
    aspect-ratio: 5/4;
  }
}
.tile-group .tile:hover h4 a {
  text-decoration: underline;
}
.tile-group .tile:hover .image {
  transform: scale(1.1);
}
.module.tiles .tile-group .tile:nth-child(4n-3) {
  width: calc(58.577713% - 2rem);
}
.module.tiles .tile-group .tile:nth-child(4n-3) .image-outer {
  background-size: cover;
  aspect-ratio: 1/0.61617458;
}
.module.tiles .tile-group .tile:nth-child(4n-2) {
  width: calc(41.422287% - 2rem);
}
.module.tiles .tile-group .tile:nth-child(4n-1) {
  width: calc(41.422287% - 2rem);
}
.module.tiles .tile-group .tile:nth-child(4n) {
  width: calc(58.577713% - 2rem);
}
.module.tiles .tile-group .tile:nth-child(4n) .image-outer {
  background-size: cover;
  aspect-ratio: 1/0.61617458;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  .module.tiles .tile-group .tile:nth-child(1n) {
    width: 100%;
  }
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  .module.tiles .tile-group .tile:nth-child(1n) .image-outer {
    aspect-ratio: 5/4;
  }
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  .module.tiles .tile-group .tile:nth-child(1n) .image-outer .image {
    aspect-ratio: 5/4;
  }
}
#work-posts .tile-group .tile.large-tile {
  width: calc(58.577713% - 2rem);
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #work-posts .tile-group .tile.large-tile {
    width: 100%;
    aspect-ratio: 5/4;
  }
}
#work-posts .tile-group .tile.large-tile .image-outer {
  background-size: cover;
  aspect-ratio: 1/0.61617458;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #work-posts .tile-group .tile.large-tile .image-outer {
    width: 100%;
    aspect-ratio: 5/4;
  }
}
#work-posts .tile-group .tile.small-tile {
  width: calc(41.422287% - 2rem);
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #work-posts .tile-group .tile.small-tile {
    width: 100%;
    aspect-ratio: 5/4;
  }
}

#work-filter {
  padding-bottom: 7rem;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #work-filter {
    padding-bottom: 4rem;
  }
}
#work-filter ul li {
  margin-right: 2rem;
  display: inline-block;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #work-filter ul li {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
#work-filter ul li.active a {
  border-color: #FF514B;
}

#work-posts {
  padding-bottom: 20rem;
}

#news-content {
  padding-bottom: 12rem;
}
#news-content .inner {
  max-width: 108rem;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #news-content .inner {
    max-width: none;
  }
}
#news-content .inner img {
  max-width: calc(100% + 234px);
  height: auto;
  margin-bottom: 4rem;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #news-content .inner img {
    max-width: 100%;
  }
}
#news-content .inner p {
  padding-right: 234px;
  margin-bottom: 2.4rem;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #news-content .inner p {
    padding-right: 0;
  }
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #news-content .inner p img {
    max-width: 100%;
  }
}
#news-content .inner a {
  text-decoration: underline;
  color: #515645;
}
#news-content .back-button {
  padding: 8rem 0 12rem 0;
  text-align: center;
}

#modules .module.pink {
  background-color: #FDEAFF;
}
#modules .module .module-title {
  padding: 6rem 0 6rem 0;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #modules .module .module-title {
    padding: 3rem 0;
  }
}
#modules .module .module-title h3 {
  font-weight: 400;
  font-size: 4.8rem;
  line-height: 5.2rem;
  color: #515645;
}
#modules .module.team .team-group {
  max-width: 896px;
}
#modules .module.team .team-member {
  margin: 9rem 0;
  display: flex;
  justify-content: space-between;
  /* Looping colours */
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #modules .module.team .team-member {
    margin: 3rem 0 6rem 0;
    display: block;
  }
}
#modules .module.team .team-member .image-outer {
  width: 311px;
  height: 311px;
  aspect-ratio: 1/1;
  max-width: 40vw;
  max-height: 40vw;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #modules .module.team .team-member .image-outer {
    padding-left: 15vw;
    width: 50vw;
    height: 50vw;
    max-width: none;
    max-height: none;
    margin-bottom: 5rem;
  }
}
#modules .module.team .team-member .image-outer .image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  position: relative;
}
#modules .module.team .team-member .image-outer .image:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #FF514B;
  border-radius: 50%;
  mix-blend-mode: multiply;
  pointer-events: none; /* keeps it invisible to the mouse */
  z-index: 1;
  transform: translateX(-80%);
  transition-duration: 1.2s;
}
#modules .module.team .team-member .text-outer {
  width: calc(100% - 341px);
}
@media only screen and (min-width: 1531px) {
  #modules .module.team .team-member .text-outer {
    width: calc(100% - 331px);
  }
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #modules .module.team .team-member .text-outer {
    width: 100%;
  }
}
#modules .module.team .team-member:nth-child(even) {
  flex-direction: row-reverse;
}
#modules .module.team .team-member:nth-child(even) .image-outer .image:before {
  transform: translateX(80%);
}
#modules .module.team .team-member.active .image-outer .image:before {
  transform: translateX(0);
}
#modules .module.team .team-member:nth-child(5n+1) .image-outer .image:before {
  background-color: #FF514B;
}
#modules .module.team .team-member:nth-child(5n+2) .image-outer .image:before {
  background-color: #FFE02B;
}
#modules .module.team .team-member:nth-child(5n+3) .image-outer .image:before {
  background-color: #7CF29B;
}
#modules .module.team .team-member:nth-child(5n+4) .image-outer .image:before {
  background-color: #78F5FF;
}
#modules .module.team .team-member:nth-child(5n+5) .image-outer .image:before {
  background-color: #FF89FF;
}
#modules .module.team h4 {
  font-size: 2rem;
  font-weight: 700;
}
#modules .module.team h5 {
  margin-bottom: 2rem;
}
#modules .module.team p, #modules .module.team h5 {
  font-size: 1.6rem;
}
#modules .module.team a {
  color: #515645;
  text-decoration: underline;
}
#modules .module.team .contact {
  font-size: 1.6rem;
  margin-top: 2rem;
}
#modules .module.team .separator {
  margin: 0 2rem;
  font-weight: 900;
  color: #FF514B;
}
#modules .module.stacked-title-and-text {
  padding-bottom: 13rem;
}
#modules .module.stacked-title-and-text .title {
  margin-bottom: 8rem;
}
#modules .module.stacked-title-and-text .stacked-blocks {
  border-top: 1px solid #515645;
}
#modules .module.stacked-title-and-text .stacked-blocks .block {
  display: flex;
  flex-wrap: wrap;
  padding: 4rem 0 8rem 0;
  border-bottom: 1px solid #515645;
  color: #515645;
}
#modules .module.stacked-title-and-text .stacked-blocks .block h4 {
  width: 50%;
  font-size: 3.2rem;
  line-height: 3.6rem;
  font-weight: 700;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #modules .module.stacked-title-and-text .stacked-blocks .block h4 {
    font-size: 2rem;
    line-height: 2.3rem;
    width: 100%;
    margin-bottom: 2rem;
  }
}
#modules .module.stacked-title-and-text .stacked-blocks .block .text {
  width: 50%;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #modules .module.stacked-title-and-text .stacked-blocks .block .text {
    width: 100%;
  }
}
#modules .module.full-width-image {
  width: 100vw;
}
#modules .module.full-width-image img {
  width: 100%;
  height: auto;
  opacity: 0 !important;
}
#modules .module.full-width-image .image {
  background-size: contain;
  background-position: center;
}
#modules .module.full-width-image .image.fixed-scroll {
  background-attachment: fixed;
}
#modules .module.two-image-columns {
  padding-bottom: 4rem;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #modules .module.two-image-columns {
    padding-bottom: 3rem;
  }
}
#modules .module.two-image-columns .inner {
  display: flex;
  column-gap: 4rem;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #modules .module.two-image-columns .inner {
    display: block;
  }
}
#modules .module.two-image-columns .inner .image {
  width: calc(50% - 2rem);
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #modules .module.two-image-columns .inner .image {
    width: 100%;
    margin-bottom: 3rem;
  }
}
#modules .module.two-image-columns .inner .image img {
  max-width: 100%;
  height: auto;
}
#modules .module.columns {
  background-color: #FDEAFF;
}
#modules .module.columns.padding-big {
  padding-top: 12rem;
}
#modules .module.columns p {
  color: #515645;
  font-size: 1.8rem;
  line-height: 2.4rem;
  margin-bottom: 2.4rem;
}
#modules .module.columns p.large {
  font-size: 2.4rem;
  line-height: 3.2rem;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #modules .module.columns p.large {
    font-size: 2.1rem;
    line-height: 2.8rem;
  }
}
#modules .module.columns ul {
  list-style: disc;
  margin-bottom: 2rem;
}
#modules .module.columns h4 {
  font-size: 3.2rem;
  line-height: 3.6rem;
  font-weight: 600;
  margin-bottom: 3.6rem;
}
#modules .module.columns a {
  color: #515645;
  text-decoration: underline;
}
#modules .module.columns .link-button {
  margin: 4rem 0 2.4rem 0;
}
#modules .module.columns .title-single h3 {
  font-size: 4.8rem;
  line-height: 5.2rem;
}
#modules .module.columns .title-two-columns {
  max-width: 1052px;
  padding: 7.5rem 0 6rem 0;
}
#modules .module.columns .title-two-columns h3 {
  font-size: 4.8rem;
  line-height: 5.2rem;
}
#modules .module.columns .single-column {
  width: calc(100% - 200px);
  max-width: 662px;
  min-width: 320px;
  padding: 1rem 0 14rem 0;
}
#modules .module.columns .column-group {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 6rem;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #modules .module.columns .column-group {
    display: block;
  }
}
#modules .module.columns .column-group .column {
  width: calc(50% - 20px);
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #modules .module.columns .column-group .column {
    width: 100%;
  }
}
#modules .module.columns .column-group .column img {
  max-width: 100%;
  height: auto;
}
#modules .module.columns .column-group .column.image-column {
  background-size: contain;
  background-repeat: no-repeat;
}
#modules .module.columns .column-group .column.text-column {
  box-sizing: border-box;
}
#modules .module.columns .column-group .column.text-column:nth-child(odd) {
  padding-left: 157px;
}
@media only screen and (min-width: 1531px) {
  #modules .module.columns .column-group .column.text-column:nth-child(odd) {
    padding-left: 157px;
  }
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #modules .module.columns .column-group .column.text-column:nth-child(odd) {
    padding-left: 0;
  }
}
#modules .module.columns .column-group .column.text-column:nth-child(even) {
  padding-right: 157px;
}
@media only screen and (min-width: 1531px) {
  #modules .module.columns .column-group .column.text-column:nth-child(even) {
    padding-right: 157px;
  }
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #modules .module.columns .column-group .column.text-column:nth-child(even) {
    padding-right: 0;
  }
}
#modules .module.testimonial-columns {
  padding: 10rem 0;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #modules .module.testimonial-columns {
    padding: 3rem 0;
  }
}
#modules .module.testimonial-columns .inner {
  max-width: 1030px;
}
#modules .module.testimonial-columns .inner.module-title {
  max-width: 1364px;
}
#modules .module.testimonial-columns .testimonial p {
  font-size: 1.8rem;
  line-height: 2.4rem;
  margin-bottom: 1.2rem;
}
#modules .module.testimonial-columns .testimonial .title h4 {
  font-size: 2.4rem;
  line-height: 3rem;
  font-weight: 600;
  margin-bottom: 2.4rem;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #modules .module.testimonial-columns .testimonial .title h4 {
    display: block;
  }
}
#modules .module.testimonial-columns .testimonial .columns {
  display: flex;
  justify-content: flex-end;
  margin: 5rem 0 10rem 0;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #modules .module.testimonial-columns .testimonial .columns {
    display: block;
  }
}
#modules .module.testimonial-columns .testimonial .columns .column {
  max-width: 662px;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #modules .module.testimonial-columns .testimonial .columns .column {
    width: 100%;
  }
}
#modules .module.testimonial-columns .testimonial .columns .column .attr {
  font-size: 2rem;
  font-weight: 600;
  margin: 2rem 0;
}
#modules .module.testimonial-columns .testimonial .columns .column .role {
  font-size: 1.6rem;
  line-height: 2rem;
}
#modules .module.testimonial-columns .testimonial .columns .column.circle-col {
  position: relative;
}
#modules .module.testimonial-columns .testimonial .columns .column.circle-col:before {
  content: "";
  width: 310px;
  height: 310px;
  position: absolute;
  top: 50%;
  right: 0;
  background-color: #78F5FF;
  border-radius: 50%;
  transform: translate(-40px, -50%);
  z-index: -1;
}
#modules .module.testimonial-columns .testimonial:nth-child(even) .columns {
  justify-content: flex-start;
}
#modules .module.testimonial-columns .testimonial:nth-child(4n-2) .columns .column.circle-col:before {
  background: #FFE02B;
  transform: translate(-80px, -30%);
}
#modules .module.testimonial-columns .testimonial:nth-child(4n-1) .columns .column.circle-col:before {
  background: #7CF29B;
  transform: translate(-10px, -80%);
}
#modules .module.testimonial-columns .testimonial:nth-child(4n) .columns .column.circle-col:before {
  background: #FF89FF;
  transform: translate(-80%, -70%);
}
#modules .module.testimonial-columns .testimonial.two-column .columns {
  justify-content: space-between;
}
#modules .module.testimonial-columns .testimonial.two-column .columns .column {
  width: calc(50% - 40px);
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #modules .module.testimonial-columns .testimonial.two-column .columns .column {
    width: 100%;
  }
}
#modules .module.testimonials {
  aspect-ratio: 5/3;
  width: 100vw;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #modules .module.testimonials {
    aspect-ratio: 3/6;
  }
}
#modules .module.testimonials .swiper-slide {
  aspect-ratio: 5/3;
  position: relative;
  width: 100vw;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #modules .module.testimonials .swiper-slide {
    aspect-ratio: 3/6;
  }
}
#modules .module.testimonials .swiper-slide .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 5/3;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #modules .module.testimonials .swiper-slide .image {
    aspect-ratio: 3/6;
  }
}
#modules .module.testimonials .swiper-slide .text {
  position: absolute;
  top: 50%;
  left: 5rem;
  transform: translateY(-50%);
  z-index: 999;
  width: 520px;
  max-width: 66.66667%;
  min-width: 300px;
  padding: 4rem;
  box-sizing: border-box;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #modules .module.testimonials .swiper-slide .text {
    padding: 2rem;
    left: 2rem;
    width: calc(100% - 4rem);
    max-width: none;
    top: auto;
    bottom: 1rem;
    transform: none;
  }
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #modules .module.testimonials .swiper-slide .text p {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 1rem;
  }
}
#modules .module.testimonials .swiper-slide .text.yellow {
  background-color: #FFE02B;
}
#modules .module.testimonials .swiper-slide .text.red {
  background-color: #FF514B;
}
#modules .module.testimonials .swiper-slide .text.green {
  background-color: #7CF29B;
}
#modules .module.testimonials .swiper-slide .text.cyan {
  background-color: #78F5FF;
}
#modules .module.testimonials .swiper-slide .text.magenta {
  background-color: #FF89FF;
}
@media only screen and (min-width: 1531px) {
  #modules .module.testimonials .swiper-slide .text {
    left: 50%;
    transform: translate(-682px);
  }
}
#modules .module.testimonials .swiper-slide .text a {
  color: #515645;
  text-decoration: underline;
}
#modules .module.tiles {
  background-color: #FDEAFF;
  padding-bottom: 10rem;
}
#modules .module.tiles .more-link {
  margin-top: 4rem;
}

/* News */
#latest-news-post {
  padding-bottom: 10rem;
}
#latest-news-post .inner {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  transition-duration: 0.8s;
  box-shadow: inset 0 0 0 1px #515645;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #latest-news-post .inner {
    display: block;
  }
}
#latest-news-post .inner:hover {
  background-color: white;
  box-shadow: inset 0 0 0 1px white;
}
#latest-news-post .inner:hover a {
  border-color: #FF514B;
}
#latest-news-post .inner:hover .image {
  transform: scale(1.1);
}
#latest-news-post .image-outer {
  width: 57.111437%;
  aspect-ratio: 78/48;
  overflow: hidden;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #latest-news-post .image-outer {
    width: 100%;
    aspect-ratio: 78/48;
  }
}
#latest-news-post .image-outer .image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition-duration: 0.4s;
}
#latest-news-post .image-outer .image img {
  display: none;
}
#latest-news-post .text {
  width: 39.956012%;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #latest-news-post .text {
    width: 100%;
  }
}
#latest-news-post .text .text-inner {
  padding: 12rem 6rem 4rem 0;
  box-sizing: border-box;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #latest-news-post .text .text-inner {
    padding: 2rem 2rem 3rem 2rem;
  }
}
#latest-news-post .text h3 {
  font-size: 3.6rem;
  line-height: 4.6rem;
  font-weight: 650;
  margin-bottom: 2rem;
}
#latest-news-post .text h4 {
  font-size: 1.6rem;
  line-height: 2rem;
  margin-bottom: 4rem;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #latest-news-post .text h4 {
    margin-bottom: 2rem;
  }
}

#news-posts {
  padding-bottom: 20rem;
}
#news-posts .inner {
  display: flex;
  column-gap: 4rem;
  row-gap: 10rem;
  flex-wrap: wrap;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #news-posts .inner {
    display: block;
  }
}
#news-posts .inner .news-item {
  width: calc(50% - 2rem);
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #news-posts .inner .news-item {
    display: block;
    width: 100%;
  }
}
#news-posts .inner .news-item:hover .image {
  transform: scale(1.1);
}
#news-posts .inner .news-item:hover a {
  border-color: #FF514B;
}
#news-posts .inner .news-item .image-outer {
  width: 46.978852%;
  aspect-ratio: 16/11.5;
  overflow: hidden;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #news-posts .inner .news-item .image-outer {
    width: 100%;
  }
}
#news-posts .inner .news-item .image-outer .image {
  width: 100%;
  aspect-ratio: 16/11.5;
  background-size: cover;
  transition-duration: 0.4s;
}
#news-posts .inner .news-item .image-outer .image img {
  display: none;
}
#news-posts .inner .news-item .text {
  width: 49.5%;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #news-posts .inner .news-item .text {
    width: 100%;
    margin-bottom: 5rem;
  }
}
#news-posts .inner .news-item .text h3 {
  font-size: 2.4rem;
  line-height: 2.8rem;
  font-weight: 600;
  margin: 1rem 0 2rem 0;
}
#news-posts .inner .news-item .text h4 {
  font-size: 1.6rem;
  line-height: 2rem;
  margin-bottom: 2rem;
}

#footer {
  padding: 7.5rem 0 0 0;
  color: #FDEAFF;
}
#footer a {
  color: #FDEAFF;
}
#footer a:hover {
  color: white;
}
#footer #footer-links ul {
  text-align: right;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #footer #footer-links ul {
    text-align: left;
  }
}
#footer #footer-links ul li {
  font-size: 1.8rem;
  font-weight: 500;
  display: inline-block;
  margin-left: 1.8rem;
}
#footer #footer-links ul li:first-child {
  margin-left: 0;
}
#footer #footer-links ul li a:hover {
  font-weight: 600;
  letter-spacing: -0.02rem;
  color: white;
}
#footer .inner.main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#footer .inner.main #footer-logo {
  margin-top: 6rem;
  width: calc(100% - 360px);
  min-width: 320px;
  height: 12.93rem;
  display: block;
  text-indent: -99999px;
  background-image: url("../images/animo-pink-red.svg");
  background-position: top right;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #footer .inner.main #footer-logo {
    width: 100%;
    margin-top: 0rem;
    margin-bottom: 1rem;
  }
}
#footer .inner.main #footer-contact {
  width: 360px;
  max-width: 100%;
  padding: 7.5rem 0 5rem 0;
}
#footer .inner.main #footer-contact p {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #footer .inner.main #footer-contact p {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 1px) and (max-width: 740px) {
  #footer .inner.main #footer-contact {
    width: 100%;
  }
}
#footer .inner.legal-social {
  font-size: 1.6rem;
  padding-bottom: 6rem;
}
#footer .inner.legal-social .social {
  margin-bottom: 2rem;
}
#footer .inner.legal-social a {
  color: rgba(255, 255, 255, 0.66);
}
#footer .inner.legal-social a:hover {
  color: white;
}
