/*
 Theme Name:   Fluxo
 Author:       Fluxo
 Author URI:   https://fluxo.design
*/

@font-face {
  font-family: "Geograph";
  src: url("fonts/geograph-bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geograph";
  src: url("fonts/geograph-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geograph";
  src: url("fonts/geograph-regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geograph";
  src: url("fonts/geograph-bold-italic.woff2") format("woff2");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Geograph";
  src: url("fonts/geograph-medium-italic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Geograph";
  src: url("fonts/geograph-regular-italic.woff2") format("woff2");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Karrik";
  src: url("fonts/Karrik-Regular.woff2") format("woff2"),
    url("fonts/Karrik-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

html body {
  font-family: "Geograph", sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  cursor: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
html {
  height: -webkit-fill-available;
}
body {
  min-height: -webkit-fill-available;
}
body::-webkit-scrollbar {
  display: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
ul,
li {
  /* list-style: none; */
  margin: 0;
  padding: 0;
}

ul li {
  list-style: inside;
}

ol {
  margin: 0;
  padding: 0;
  counter-reset: item;
}

ol > li {
  margin: 0;
  padding: 0;
  text-indent: 0;
  list-style-type: none;
  counter-increment: item;
}

ol > li:before {
  display: inline-block;
  font-weight: bold;
  text-align: right;
  content: counter(item) ".";
  font-size: 0.9vw;
  margin-right: 1.3vw;
}
nav li {
  list-style: none !important;
}

input:-webkit-autofill,
input:-webkit-autofill::first-line,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset !important;
  -webkit-text-fill-color: #000 !important;
  font-weight: 600;
  font-size: 0.93vw !important;
  line-height: 100% !important;
  font-family: "Work Sans", sans-serif !important;
}
::placeholder {
  color: #ccc;
}
.hidden {
  display: none;
}
.mobile-view {
  display: none;
}
.desktop-view {
  display: block;
}
a[href^="tel"] {
  color: inherit;
  text-decoration: none;
}
.bg-img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  outline: none !important;
  width: 100%;
  height: 100%;
}
a {
  text-decoration: none;
  color: inherit;
  /* transition: 0.3s; */
  color: inherit;
  cursor: none;
  /* cursor: url(images/cursor-black.svg) 6 6, auto !important; */
}
a:hover,
a:active,
a:focus {
  text-decoration: none;
  color: inherit;
}
p a {
  text-decoration: underline;
}
p a:hover {
  text-decoration: none;
}
p {
  line-height: inherit;
  margin: 0 0 1.5em 0;
}
p:last-child {
  margin-bottom: 0;
}
.overflow_hidden {
  overflow-y: hidden;
}
.overflow_scroll {
  overflow-y: scroll;
  height: 100%;
}
.post-edit {
  display: none !important;
}

svg,
img,
embed,
object {
  display: block;
  height: auto;
  max-width: 100%;
}

/* ENTRY ANIMATION */
.animate_trigger {
  transform: translate3d(0, 1.5vw, 0);
  opacity: 0;
  transition: all 0.5s ease 0.1s;
  will-change: transform;
}
.animate_trigger.animate_in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* MAIN LAYOUT */

::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
  background-color: transparent;
}
::-webkit-scrollbar {
  width: 0;
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: transparent;
}

/* LAYOUT */

.site-content {
  /* padding: 3.33vw 0; */
}
.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2.4vw;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2.4vw;
}
.grid-1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.grid-span-1 {
  grid-column: span 1;
}
.grid-span-2 {
  grid-column: span 2;
}
.grid-span-3 {
  grid-column: span 3;
}
.grid-span-4 {
  grid-column: span 4;
}
.grid-span-5 {
  grid-column: span 5;
}
.grid-span-6 {
  grid-column: span 6;
}
.grid-span-7 {
  grid-column: span 7;
}
.grid-span-8 {
  grid-column: span 8;
}
.grid-span-9 {
  grid-column: span 9;
}
.grid-span-10 {
  grid-column: span 10;
}
.grid-span-11 {
  grid-column: span 11;
}
.grid-span-12 {
  grid-column: span 12;
}

.flex {
  display: flex;
}
.flex-center {
  align-items: center;
}
.flex-baseline {
  align-items: baseline;
}
.flex-justify {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.justify-end {
  justify-content: flex-end;
}
.flex-column {
  flex-direction: column;
}
.flex-align-end {
  align-items: flex-end;
}
.flex-row-reverse {
  flex-direction: row-reverse;
}

.w-25 {
  width: 25%;
}
.w-33 {
  width: 33.33%;
}
.w-50 {
  width: 50%;
}
.w-66 {
  width: 66.66%;
}
.w-70 {
  width: 70%;
}
.w-75 {
  width: 75%;
}
.w-80 {
  width: 80%;
}

/* TYPOGRAPHY */
.font-karrik,
.menu-item a {
  font-family: Karrik, Geograph, sans-serif;
}
.font-50,
.page-about h2 {
  font-size: 2.6vw;
  line-height: 120%;
}
.font-40 {
  font-size: 2.1vw;
  line-height: 110%;
}
.font-35,
.menu-item a {
  font-size: 1.8vw;
  line-height: 100%;
}
.font-30 {
  font-size: 1.6vw;
  line-height: 120%;
}
.font-28 {
  font-size: 1.5vw;
  line-height: 120%;
}
.font-25 {
  font-size: 1.3vw;
  line-height: 115%;
}
.font-20 {
  font-size: 1vw;
  line-height: 110%;
}
.font-15 {
  font-size: 0.8vw;
  line-height: 120%;
}

.font-light {
  font-weight: 300;
}
.font-regular {
  font-weight: 400;
}
.font-medium {
  font-weight: 500;
}
.font-bold,
b,
strong {
  font-weight: 700;
}

.align-center {
  text-align: center;
}

/* COLORS */
:root {
  --bg-blue: #9abed8;
  --bg-pink: #ea73a1;
  --yellow: #ffff00;
  --orange: #fd584b;
  --red: #ff0000;
  --white: #ffffff;
  --black: #000000;
  --beige: #efba93;
}

/* HEADER */
.logo {
  position: absolute;
  top: 48vh;
  left: 2.61vw;
  display: block;
}
.logo svg {
  width: 18.5vw;
}
.logo .hover {
  display: none;
}
.link-about {
  top: 49.5vh;
  left: 68.5vw;
  position: absolute;
}
.link-about .social {
  margin-left: 4.2vw;
}
header ul.menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu-menu-top-container {
  padding: 3.1vw 7vw 0 2.6vw;
}
.menu-item a {
  text-transform: uppercase;
  display: table-caption;
  letter-spacing: 0.01em;
}
.menu-item a:hover,
.link-about a:hover {
  color: var(--white);
}
.menu-menu-bottom-container {
  position: absolute;
  bottom: 0;
  left: 0;
  text-transform: uppercase;
  width: 100%;
  padding: 0 7vw 2.1vw 2.6vw;
}
/* .menu-item {
  min-width: 10.4vw;
  margin-right: 5.6vw;
}
.menu-item:last-child {
  margin-right: 0;
} */
.menu-menu-bottom-container .menu-item:last-child a,
.menu-menu-bottom-container .menu-item:nth-last-child(2) a {
  display: block;
  max-width: 15.1vw;
}
.menu-menu-bottom-container .menu-item:last-child a {
  color: var(--white);
}
.menu-menu-bottom-container .menu-item:last-child a:hover {
  color: var(--black);
}
.menu-menu-bottom-container .menu-item:last-child {
  position: absolute;
  right: 6.6vw;
  top: 0;
}
.menu-menu-bottom-container .menu {
  justify-content: flex-start;
}
.menu-menu-bottom-container .menu-item:first-child {
  margin-right: 8.1vw;
}
.menu-menu-bottom-container .menu-item:nth-child(2) {
  margin-right: 9.5vw;
}
#menu-item-95 a {
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0.2)
  );
  background-size: 200% auto;
  color: #000;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s linear infinite;
}
#menu-item-95 a:hover {
  animation: none;
  background: var(--black);
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@keyframes shine {
  to {
    background-position: -200% center;
  }
}
.header-page {
  position: fixed;
  padding: 1.9vw 2vw 1.7vw;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  min-height: 7vw;
}
.header-logo {
  width: 18.5vw;
}
.close-btn {
  width: 1.7vw;
}
.header-title {
  position: absolute;
  left: 53%;
  transform: translateX(-50%);
  text-transform: uppercase;
}
.header-page-block {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.page-about .header-title {
  display: none;
}

/* FOOTER */

/* LINES */
.horizontal-line {
  left: 0;
  width: 100%;
  height: 1px;
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s ease 0s;
  border-top: 2px var(--black) dashed;
  z-index: 1;
}
.vertical-line {
  top: 0;
  width: 1px;
  height: 100%;
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s ease 0s;
  border-left: 2px var(--black) dashed;
  z-index: 1;
}

/* HOMEPAGE */
.page-homepage {
  background-color: var(--bg-blue) !important;
  height: 100vh;
  overflow: hidden;
  color: var(--black) !important;
}
.page-homepage.active {
  background-color: var(--bg-pink) !important;
  transition: background-color 3s ease-in-out;
}
.page-homepage .circle {
  position: absolute;
  width: 100vw;
  height: 100vw;
  top: -100vw;
  left: 0;
  border-radius: 800vw;
  background-color: var(--yellow);
  transition: all 3s ease-in-out;
  z-index: -10;
}
.page-homepage.active .circle {
  top: 115%;
  transform: translateY(-50%);
  background-color: var(--orange);
}
.page-homepage .header-page {
  display: none;
}

/* ABOUT */
.page-about .header-page {
  background-color: var(--beige);
  border-bottom: 2px dashed var(--red);
}
.page-about {
  background-color: var(--beige);
  color: var(--red);
  cursor: url(images/cursor-red.svg), auto !important;
}
.page-about a {
  cursor: url(images/cursor-red-hover.svg), auto !important;
}
.about-content {
  margin: 8.3vw 2.1vw 2.6vw;
  width: 72.4vw;
}
.about-content a {
  color: var(--red) !important;
  display: block;
}
.about-content h2 {
  font-family: Karrik, Geograph, sans-serif;
  margin-bottom: 1.5em;
  width: 23.4vw;
  line-height: 90%;
  text-transform: uppercase;
}
.crew .title {
  margin-bottom: 1.6vw;
  text-transform: uppercase;
}
.crew .artistic {
  margin-right: 13vw;
}
.page-about .bottom-content {
  margin-top: 4.3vw;
  display: flex;
  flex-wrap: wrap;
}
.page-about .bottom-content .sponsor {
  margin-bottom: 2.1vw;
}
.page-about .bottom-content .sponsor div {
  max-width: 10.4vw;
}
.page-about .bottom-content .sponsor-logo {
  width: auto;
  height: 5.2vw;
}
.page-about .bottom-content .column-1 {
  margin: 0 3.2vw 0 1.7vw;
}
.page-about .bottom-content .column-2 {
  margin-right: 2.5vw;
}
.footer-about {
  width: 100%;
  border-top: 2px dashed var(--red);
  padding: 1.4vw 2vw 1.6vw;
}
.footer-about a {
  color: var(--red);
}
.footer-about a:first-child {
  margin-right: 9.9vw;
}

/* DEFAULT PAGES */
.page-template-page-defaultsection .content {
  width: 21.5vw;
  padding: 8.5vw 0 4vw 2vw;
}
.page-attention-algorithmes-and-social-justice .header-title {
  font-size: 2.1vw;
  top: calc(50% + 4px);
}
.elements-container {
  position: fixed;
  flex-direction: row;
  overflow-x: auto;
  overflow-y: hidden;
  bottom: -1vw;
  left: 0;
  width: 100vw;
  white-space: nowrap;
}
.elements-container .element-block {
  display: inline-block;
  margin-right: 1vw;
  position: relative;
}
.elements-container .element-block:last-child {
  margin-right: 0;
}
.elements-container .element-item .title {
  white-space: normal;
}

.elements-container.monday-learning .spacer,
.elements-container.school .spacer,
.elements-container.residence .spacer,
.elements-container.sunday .spacer,
.elements-container.tunog .spacer,
.elements-container.attention .spacer,
.elements-container.tuesday .spacer,
.elements-container.tvchannel .spacer,
.elements-container.guest .spacer {
  width: 31.2vw;
}

.elements-container.monday-learning .element-block:first-child,
.elements-container.school .element-block:first-child,
.elements-container.residence .element-block:first-child,
.elements-container.sunday .element-block:first-child,
.elements-container.attention .element-block:first-child,
.elements-container.tunog .element-block:first-child,
.elements-container.tuesday .element-block:first-child,
.elements-container.tvchannel .element-block.first,
.elements-container.guest .element-block.first {
  min-width: inherit;
}
.elements-container.monday-learning .element-block {
  min-width: 36.5vw;
  min-height: 20.2vw;
}
.elements-container.monday-learning .element-item {
  border-radius: 100vw 100vw 0 0;
  text-align: center;
  width: 36.5vw;
  height: 18.2vw;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
}
.elements-container.monday-learning .element-item:hover {
  width: 37.5vw;
  height: 20.2vw;
}
.elements-container.monday-learning .element-item .title {
  padding-top: 9.4vw;
  max-width: 20.8vw;
  height: fit-content;
}

.elements-container.school .element-block {
  min-width: 36.5vw;
  min-height: 24.2vw;
}
.elements-container.school .element-item {
  border-radius: 0 0 100vw 100vw;
  text-align: center;
  width: 36.5vw;
  height: 18.2vw;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotate(0);
  display: flex;
  justify-content: center;
}
.elements-container.school .element-item:hover {
  transform: translateX(-50%) rotate(8deg);
}
.elements-container.school .element-item .title {
  padding-top: 5.2vw;
  max-width: 18.2vw;
  height: fit-content;
}

.elements-container.sunday,
.elements-container.residence,
.elements-container.attention,
.elements-container.tunog,
.elements-container.tuesday {
  bottom: inherit;
  top: 55%;
  transform: translateY(-50%);
}
.elements-container.sunday .element-block {
  min-width: 36.5vw;
  min-height: 37.5vw;
}
.elements-container.sunday .element-item {
  border-radius: 100vw 100vw 100vw 100vw;
  text-align: center;
  width: 35.5vw;
  height: 35.5vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  display: flex;
  justify-content: center;
}
.elements-container.sunday .element-item:hover {
  transform: translate(-50%, -50%) scale(1.04);
}
.elements-container.sunday .element-item .title {
  padding-top: 16.8vw;
  max-width: 20.8vw;
  height: fit-content;
}
.elements-container.sunday .element-block {
  margin-right: 0.8vw;
}
.elements-container.sunday .element-block:last-child {
  margin-right: 0;
}

.elements-container.residence .element-block {
  min-width: 38.3vw;
  min-height: 29.8vw;
  margin-right: 1vw;
}
.elements-container.residence .element-block:last-child {
  margin-right: 0;
}
.elements-container.residence .element-item {
  width: 36.1vw;
  height: 26.3vw;
  position: absolute;
  bottom: 0;
  left: 50%;
  background-color: transparent !important;
  background-image: url(images/residence.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  text-align: center;
  transform: translateX(-50%) scale(1);
  transform-origin: bottom;
  transition: all 0.2s ease-in-out !important;
}
.elements-container.residence .element-item:hover {
  transform: translateX(-50%) scale(1.13);
}
.elements-container.residence .element-item .title {
  padding-top: 10.4vw;
  max-width: 20.3vw;
  height: fit-content;
}

.elements-container.attention .element-block {
  min-width: 40.7vw;
  min-height: 40.7vw;
  margin-right: 0;
}
.elements-container.attention .element-item {
  width: 41.3vw;
  height: 41.3vw;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: transparent !important;
  background-image: url(images/attention.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transform: translate(-50%, -50%) scale(1);
}
.elements-container.attention .element-item:hover {
  transform: translate(-50%, -50%) scale(1.07);
}
.elements-container.attention .element-item .title {
  padding-top: 0;
  max-width: 11.5vw;
}

.elements-container.tunog .element-block {
  min-width: 20.5vw;
  min-height: 45.1vw;
  margin-right: 0;
}

.elements-container.tunog .element-item {
  width: 18.1vw;
  height: 36.3vw;
  border-radius: 0 100vw 100vw 0;
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  transform: translate(-50%, -50%) scale(1) rotate(0);
  transition: all 0.2s ease-in-out !important;
}
.elements-container.tunog .element-item:hover {
  transform: translate(-50%, -50%) scale(1.2, 1.15) rotate(-8deg);
}
.elements-container.tunog .element-item .title {
  padding-top: 0;
  max-width: 11.5vw;
  padding-left: 2.9vw;
}

.elements-container.tuesday .element-block {
  min-width: 19.5vw;
  min-height: 37.1vw;
  margin-right: 0;
}
.elements-container.tuesday
  .element-block:hover:not(
    .elements-container.tuesday .element-block:first-child
  ),
.elements-container.tuesday .element-block:nth-child(2) {
  min-width: 37.6vw;
  transition-delay: 0s;
}
.elements-container.tuesday .element-item.hover {
  left: calc(100% - 0.5vw);
  transform: translate(-100%, -50%) rotate3d(0, 1, 0, 90deg);
}
.elements-container.tuesday .element-item {
  width: 18.1vw;
  height: 36.3vw;
  border-radius: 0 100vw 100vw 0;
  position: absolute;
  top: 50%;
  left: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  transform: translate(-100%, -50%);
  transform-origin: left;
}
.elements-container.tuesday .element-block:hover .element-item.hover {
  transform: translate(-100%, -50%) rotate3d(0, 1, 0, 180deg);
  transition-delay: 0;
}
.elements-container.tuesday .element-item .title {
  padding-top: 0;
  max-width: 11.5vw;
  padding-left: 2.9vw;
}

.elements-container.tvchannel {
  bottom: -0.9vw;
}
.elements-container.tvchannel .element-block {
  min-width: 36.5vw;
  min-height: 20.7vw;
  margin-right: 0;
}
.elements-container.tvchannel .element-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: auto;
  gap: 0 1vw;
  height: 41.5vw;
}
.elements-container.tvchannel .element-item {
  border-radius: 0 0 100vw 100vw;
  text-align: center;
  width: 36.5vw;
  height: 18.2vw;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotate(0);
  display: flex;
  justify-content: center;
}
.elements-container.tvchannel .element-item:hover {
  transform: translateX(-50%) rotate(8deg);
}
.elements-container.tvchannel .element-item .title {
  padding-top: 5.2vw;
  max-width: 18.2vw;
  height: fit-content;
}

.elements-container.guest {
  bottom: -2.3vw;
}
.elements-container.guest .element-block {
  min-width: 21.8vw;
  min-height: 21.8vw;
  margin-right: 0;
}
.elements-container.guest .element-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: auto;
  gap: 0.6vw 1vw;
  height: 45.5vw;
}
.elements-container.guest .element-item {
  border-radius: 0 100vw 0 0;
  text-align: center;
  width: 20.8vw;
  height: 20.5vw;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scale(1);
  transform-origin: bottom left;
  display: flex;
  justify-content: center;
}
.elements-container.guest .element-item:hover {
  transform: translateX(-50%) scale(1.05);
}
.elements-container.guest .element-item .title {
  padding-top: 0;
  max-width: 9.4vw;
  height: fit-content;
  position: absolute;
  bottom: 1.4vw;
  left: 1.5vw;
  text-align: left;
  word-break: break-word;
}

/* SINGLE PAGES */
.single-cursor {
  width: 1.4vw;
  height: 1.4vw;
  border-radius: 100vw;
  position: fixed;
  opacity: 0;
  z-index: 10;
}
.single-cursor.hover {
  background-color: transparent !important;
}
.single-arrow-right,
.single-arrow-left {
  z-index: 9;
  position: fixed;
  width: 2.4vw;
  height: 2.4vw;
  opacity: 0;
}
.single .page-wrapper {
  width: 100vw;
  height: 100vh;
  display: flex;
}
.single .column-left {
  width: 27.2vw;
  min-height: 100vh;
  padding: 9.6vw 2.3vw 2.6vw;
  overflow-y: scroll;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
}
.single .column-left a,
.single .column-right a {
  text-decoration: underline;
}
.single .column-left .bottom {
  margin-top: 8vw;
}
.single .column-left .title {
  /* width: 48%; */
  margin-bottom: 1.6vw;
}
.single .column-right {
  width: calc(100vw - 27.2vw);
  min-height: 100vh;
  padding-top: 6.3vw;
  overflow-y: scroll;
}
.single .description-block {
  padding: 2.1vw 2.3vw;
  gap: 4.2vw;
}
.single .description-block.one-column {
  display: block;
  width: 100%;
}
.big-images {
  flex-direction: column;
  margin-bottom: 0.8vw;
  gap: 0.8vw;
}
.big-images img {
  width: 100%;
  /* max-height: 33.9vw; */
  object-fit: cover;
}
.single .column-right .slider-images:last-child .big-images,
.single .column-right .slider-images:last-child .medium-images,
.single .column-right .slider-images:last-child .small-images {
  margin-bottom: 0;
}
.medium-images,
.small-images {
  width: 100%;
  flex-wrap: wrap;
  gap: 0.8vw;
  margin-bottom: 0.8vw;
}
.medium-images:not(.medium-images.horizontal) .slideshow-content,
.small-images:not(.small-images.horizontal) .slideshow-content {
  width: calc(50% - 0.4vw);
}
.small-images.horizontal img {
  width: 32.1vw;
  /* max-height: 33.9vw; */
  object-fit: cover;
}
.big-images.horizontal,
.medium-images.horizontal,
.small-images.horizontal {
  flex-wrap: nowrap;
  overflow: hidden scroll;
}
.big-images.horizontal .slick-slide,
.medium-images.horizontal .slick-slide,
.small-images.horizontal .slick-slide {
  margin: 0 0.4vw;
}
.big-images.horizontal .slick-list,
.medium-images.horizontal .slick-list,
.small-images.horizontal .slick-list {
  margin: 0 -0.4vw;
}

/* .big-images.horizontal .slick-track {
  height: 33.9vw;
} */
.big-images.horizontal img,
.medium-images.horizontal img,
.small-images.horizontal img {
  object-fit: cover;
}

.video-container {
  position: relative;
  width: 100%;
  height: 40.7vw;
  cursor: inherit;
  margin-bottom: 0.8vw;
}
.single .column-right .video-container:last-child {
  margin-bottom: 0;
}
.video-container .cover-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.video-container iframe {
  width: 100%;
  height: 100%;
  margin-bottom: -1vw;
}

.slideshow-content {
  display: flex;
  flex-direction: column;
}
.slideshow-content .font-20 {
  margin: 20px;
  width: 50%;
}
.left-image {
  border-radius: 100vw;
  width: 100%;
  height: 14.1vw;
  min-height: 14.1vw;
  margin-bottom: 1.6vw;
}
.play-icon {
  display:none;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45px;
  height: 45px;
}
.slider-images {
  position: relative;
}
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  height: 100%;
  background-color: transparent;
  z-index: 2;
}
.prev {
  left: 0;
}
.next {
  right: 0;
}

@media only screen and (max-width: 2560px) {
  /*************** ADD MOBILE ONLY CSS HERE  ***************/
}

@media only screen and (max-width: 1920px) {
  /*************** ADD MOBILE ONLY CSS HERE  ***************/
}

@media only screen and (max-width: 1680px) {
  /*************** ADD MOBILE ONLY CSS HERE  ***************/
}

@media only screen and (max-width: 1440px) {
  /*************** ADD MOBILE ONLY CSS HERE  ***************/
}

@media only screen and (max-width: 1366px) and (min-height: 680px) and (max-height: 690px) {
  /*************** ADD MOBILE ONLY CSS HERE  ***************/
}

@media only screen and (max-width: 1280px) {
  /*************** ADD MOBILE ONLY CSS HERE  ***************/
}

@media only screen and (max-width: 1024px) {
  /*************** ADD MOBILE ONLY CSS HERE  ***************/
}

@media only screen and (max-width: 768px) {
  /*************** ADD MOBILE ONLY CSS HERE  ***************/

  .mobile-view {
    display: block;
  }
  .desktop-view {
    display: none !important;
  }

  /* FONTS */
  .font-15,
  .footer-about .social {
    font-size: 13px;
  }
  .font-30,
  .font-25 {
    font-size: 16px;
    line-height: 130%;
  }
  .font-20,
  .font-28 {
    font-size: 18px;
  }
  .font-35,
  .menu-item a {
    font-size: 30px;
    line-height: 130%;
  }
  .font-50,
  .page-about h2 {
    font-size: 27px;
  }

  /* HEADER */
  .header-page:not(.header-page.mobile-view) {
    z-index: 3;
  }
  .header-page.mobile-view {
    position: relative !important;
    opacity: 0;
    padding-bottom: 0;
  }
  .link-about {
    top: 0;
    right: inherit;
    position: absolute;
    left: 0;
    width: 100%;
    padding: 30px;
  }
  .logo {
    position: absolute;
    top: 50%;
    display: block;
    transform: translateY(-50px);
    width: 100%;
    left: 0;
  }
  .logo svg {
    width: 300px;
    margin: auto;
  }
  #mobile-menu-icon {
    width: 63px;
    height: 20px;
    position: absolute;
    margin: 0;
    transform: rotate(0deg) translateX(-50%);
    transition: 0.5s ease-in-out;
    cursor: pointer;
    top: calc(100% - 60px);
    left: 50%;
  }

  #mobile-menu-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--black);
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
  }
  #mobile-menu-icon span:nth-child(1) {
    top: 0px;
  }
  #mobile-menu-icon span:nth-child(2),
  #mobile-menu-icon span:nth-child(3) {
    top: 9px;
  }
  #mobile-menu-icon span:nth-child(4) {
    top: 18px;
  }
  #mobile-menu-icon.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
  }
  #mobile-menu-icon.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #mobile-menu-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  #mobile-menu-icon.open span:nth-child(2),
  #mobile-menu-icon.open span:nth-child(3) {
    width: 30px;
    left: 25%;
  }

  #mobile-menu-icon.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
  }
  .menu-item a {
    text-transform: uppercase;
    display: block;
  }
  .header-mobile {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 32px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    transition-delay: 0s;
    pointer-events: none;
  }
  .page-homepage .circle {
    top: -50%;
  }
  .page-homepage.active .circle {
    transition: all 2s ease-in-out !important;
  }

  .page-homepage.active .header-mobile {
    opacity: 1;
    transition: all 1s ease-in-out;
    transition-delay: 1.5s;
    pointer-events: all;
  }
  .header-mobile ul.menu {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }
  .menu-item a {
    line-height: 90%;
  }
  #menu-menu-mobile li {
    margin-bottom: 15px;
  }
  #menu-menu-mobile li:last-child {
    margin-bottom: 0;
  }
  #menu-menu-mobile li:last-child a {
    color: var(--white);
  }
  .header-page {
    padding: 18px 23px;
    border-bottom: 2px dashed;
    min-height: 100px;
  }
  .header-title {
    left: 0;
    transform: inherit;
    width: 100%;
    top: 0;
    padding-left: 0;
    position: relative;
  }
  .header-page-block {
    width: 100%;
    flex-direction: column;
    line-break: auto;
    justify-content: center;
    align-items: flex-start;
  }
  .close-btn {
    width: 25px;
  }
  .header-logo {
    width: 230px;
  }

  /* HOMEPAGE */
  .page-homepage .site-inner {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }
  .page-homepage .logo {
    z-index: -11;
  }
  .page-homepage .circle {
    width: 200%;
    height: 105%;
    left: 50%;
    top: -100%;
    transform: translate(-50%, -50%);
    transition: all 1s ease-in-out;
  }
  .page-homepage.active .circle {
    top: 50%;
    transition: all 3s ease-in-out;
    transform: translate(-50%, -50%);
  }

  /* ABOUT */
  .about-content {
    padding: 50px 32px 33px 26px;
    width: 100%;
    margin: 0;
  }
  .about-content h2 {
    width: 80%;
  }
  .crew {
    flex-direction: column;
  }
  .crew .artistic {
    margin-right: 0;
    margin-bottom: 45px;
  }
  .page-about .bottom-content {
    margin-top: 60px;
    flex-direction: column;
  }
  .page-about .bottom-content .sponsor-logo {
    height: 90px;
    width: auto;
    max-width: 100%;
  }
  .page-about .bottom-content .sponsor {
    flex-direction: column;
  }
  .page-about .bottom-content .sponsor div {
    max-width: inherit;
  }
  .page-about .bottom-content .column-1 {
    margin: 22px 0;
  }
  .page-about .bottom-content .sponsor {
    margin-bottom: 22px;
  }

  .footer-about {
    padding: 20px 26px 22px;
  }
  .footer-about .social {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-about a:first-child {
    margin-right: 0;
  }

  /* DEFAULT PAGES */
  .page-attention-algorithmes-and-social-justice .header-title {
    font-size: 30px;
    top: 0;
  }
  .page-template-page-defaultsection .content {
    width: 100%;
    padding: 0 23px 20px;
  }
  .page-attention-algorithmes-and-social-justice .content {
    padding: 0 23px 0;
  }
  .elements-container.monday-learning .element-block:first-child,
  .elements-container.school .element-block:first-child,
  .elements-container.residence .element-block:first-child,
  .elements-container.sunday .element-block:first-child,
  .elements-container.attention .element-block:first-child,
  .elements-container.tunog .element-block:first-child,
  .elements-container.tuesday .element-block:first-child,
  .elements-container.tvchannel .element-block.first,
  .elements-container.guest .element-block.first {
    display: none;
  }

  .elements-container {
    position: relative;
    flex-direction: column;
    overflow-x: inherit;
    overflow-y: inherit;
    bottom: 0;
    left: 0;
    width: 100%;
    white-space: nowrap;
  }
  .elements-container.monday-learning .element-block,
  .elements-container.tuesday
    .element-block:hover:not(
      .elements-container.tuesday .element-block:first-child
    ),
  .elements-container.tuesday .element-block:nth-child(2),
  .elements-container.tuesday .element-block,
  .elements-container.guest .element-block,
  .elements-container.tvchannel .element-block,
  .elements-container.tunog .element-block,
  .elements-container.attention .element-block,
  .elements-container.sunday .element-block,
  .elements-container.residence .element-block,
  .elements-container.school .element-block {
    min-width: 100%;
    min-height: inherit;
    padding: 10px 23px;
  }
  .elements-container.monday-learning .element-item,
  .elements-container.monday-learning .element-item:hover {
    width: 100%;
    height: 163px;
    position: relative;
    bottom: 0;
    left: 0;
    transform: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .elements-container.monday-learning .element-item .title {
    padding-top: 15px;
    max-width: 60%;
  }
  .elements-container.sunday,
  .elements-container.residence,
  .elements-container.attention,
  .elements-container.tunog,
  .elements-container.tuesday {
    bottom: 0;
    top: 0;
    transform: inherit;
  }
  .elements-container.tuesday .element-block {
    display: flex;
    gap: 10px;
  }
  .elements-container.tuesday .element-item.hover,
  .elements-container.tuesday .element-block:hover .element-item.hover {
    left: 0;
    transform: rotate(180deg);
  }
  .elements-container.tuesday .element-item {
    width: 100%;
    height: 326px;
    position: relative;
    top: 0;
    left: 0;
    transform: inherit;
    transform-origin: inherit;
    text-align: left;
  }
  .elements-container.tuesday .element-item .title {
    padding-top: 0;
    max-width: 70%;
    padding-left: 20px;
  }
  .elements-container.guest,
  .elements-container.tvchannel {
    bottom: 0;
  }
  .elements-container.guest .element-wrapper,
  .elements-container.tvchannel .element-wrapper {
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100%;
    gap: 0;
    height: auto;
  }
  .elements-container.guest .element-item {
    width: 225px;
    height: 225px;
    position: relative;
    bottom: 0;
    left: 0;
    transform: inherit;
    transform-origin: inherit;
  }
  .elements-container.guest .element-item .title {
    max-width: 60%;
    bottom: 10px;
    left: 10px;
  }
  .elements-container.guest .element-item:hover {
    transform: inherit;
  }
  .elements-container.tvchannel .element-item,
  .elements-container.tvchannel .element-item:hover {
    width: 100%;
    height: 170px;
    position: relative;
    bottom: 0;
    left: 0;
    transform: inherit;
  }
  .elements-container.tvchannel .element-item .title {
    padding-bottom: 10px;
    padding-top: 0;
    max-width: 60%;
    height: 100%;
    display: flex;
    align-items: center;
  }

  .elements-container.tunog .element-item,
  .elements-container.tunog .element-item:hover {
    width: 185px;
    height: 380px;
    position: relative;
    top: 0;
    left: 0;
    text-align: left;
  }
  .elements-container.tunog .element-block {
    margin-bottom: -200px;
  }
  .elements-container.tunog .element-block:nth-child(odd) .element-item,
  .elements-container.tunog .element-block:nth-child(odd) .element-item .title {
    transform: rotateY(180deg);
    margin-left: auto;
    text-align: right;
    justify-content: flex-end;
  }
  .elements-container.tunog .element-block:nth-child(even) .element-item {
    transform: inherit;
  }
  .elements-container.tunog .element-item .title {
    padding-top: 0;
    max-width: 70%;
    padding-left: 25px;
  }
  .elements-container.attention .element-block {
    padding: 10px 0;
  }
  .elements-container.attention .element-item,
  .elements-container.attention .element-item:hover {
    width: 100%;
    height: 392px;
    position: relative;
    top: 0;
    left: 0;
    transform: inherit;
  }
  .elements-container.sunday .element-block {
    margin-right: 0;
    padding: 5px 23px;
  }
  .elements-container.sunday .element-item,
  .elements-container.sunday .element-item:hover {
    width: 100%;
    height: 338px;
    position: relative;
    top: 0;
    left: 0;
    transform: inherit;
  }
  .elements-container.sunday .element-item .title {
    padding-top: 0;
    max-width: 70%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .elements-container.residence .element-item,
  .elements-container.residence .element-item:hover {
    width: 100%;
    height: 263px;
    position: relative;
    bottom: 0;
    left: 0;
    transform: inherit;
    transform-origin: inherit;
  }
  .elements-container.residence .element-item .title {
    padding-top: 0;
    max-width: 60%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
  }
  .elements-container.residence .element-block {
    margin-right: 0;
    padding: 0 23px;
  }
  .elements-container.school .element-block:nth-child(even) .element-item {
    transform: rotate(-3deg);
  }
  .elements-container.school .element-block:nth-child(odd) .element-item {
    transform: rotate(3deg);
  }
  .elements-container.school .element-item,
  .elements-container.school .element-item:hover {
    width: 100%;
    height: 167px;
    position: relative;
    bottom: 0;
    left: 0;
    transform: inherit;
  }
  .elements-container.school .element-item .title {
    padding-top: 0;
    max-width: 70%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 30px;
  }

  .single .page-wrapper {
    flex-direction: column;
  }
  .single .column-left {
    width: 100%;
    min-height: inherit;
    padding: 0 23px 28px;
    overflow-y: inherit;
  }
  .left-image {
    height: 190px;
    margin-bottom: 30px;
  }
  .single .column-right {
    width: 100%;
    min-height: inherit;
    padding-top: 0;
    overflow-y: inherit;
    padding: 0;
  }
  .single .description-block {
    padding: 30px 28px;
    gap: 0;
    flex-direction: column;
  }
  .slideshow-content .font-20 {
    width: 80%;
  }
  .big-images {
    margin-bottom: 10px;
  }
  .big-images img {
    /* height: 259px; */
    max-height: inherit;
  }
  .small-images.horizontal img {
    width: 100%;
    height: 445px;
    max-height: inherit;
  }
  .big-images.horizontal .slick-list,
  .medium-images.horizontal .slick-list,
  .small-images.horizontal .slick-list {
    margin: 0 -5px;
  }
  .big-images.horizontal .slick-slide,
  .medium-images.horizontal .slick-slide,
  .small-images.horizontal .slick-slide {
    margin: 0 5px;
  }
  .medium-images img,
  .small-images:not(.small-images.horizontal) img {
    width: 100%;
    /* height: 245px; */
  }
  .medium-images,
  .small-images {
    gap: 10px;
    margin-bottom: 10px;
  }
  .video-container iframe {
    margin-bottom: -20px;
  }
  .video-container {
    height: 220px;
  }
  .single .bottom {
    padding: 30px 28px;
  }
  .medium-images:not(.medium-images.horizontal) .slideshow-content,
  .small-images:not(.small-images.horizontal) .slideshow-content {
    width: 100%;
  }

  .prev,
  .next,
  .single-cursor {
    display: none !important;
    opacity: 0 !important;
  }

  .page-homepage {
    min-height: 90vh !important;
    height: 90vh !important;
  }
  body * {
    cursor: none !important;
  }

  .site,
  .site-inner {
    height: 100% !important;
  }
	
	.elements-container.attention .element-item .title{
		    font-size: 12px;
		max-width: 45vw;
   line-height: 130%;
	}
}

@media only screen and (max-width: 376px) {
  /*************** ADD MOBILE ONLY CSS HERE  ***************/
}

@media only screen and (max-width: 321px) {
  /*************** ADD MOBILE ONLY CSS HERE  ***************/
}
