:root {
  --textColor: #212121;
  --textColorLight: #f5f5f5;
  --brandColor: #0C2675;
  --bgColor: #F2F1F4;
}

* {
    -webkt-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@font-face {
  font-family: 'ClashDisplay-Regular';
  src: url('../fonts/ClashDisplay-Regular.woff2') format('woff2'),
       url('../fonts/ClashDisplay-Regular.woff') format('woff'),
       url('../fonts/ClashDisplay-Regular.ttf') format('truetype');
       font-weight: 400;
       font-display: swap;
       font-style: normal;
}


@font-face {
  font-family: 'ClashDisplay-Medium';
  src: url('../fonts/ClashDisplay-Medium.woff2') format('woff2'),
       url('../fonts/ClashDisplay-Medium.woff') format('woff'),
       url('../fonts/ClashDisplay-Medium.ttf') format('truetype');
       font-weight: 500;
       font-display: swap;
       font-style: normal;
}


@font-face {
  font-family: 'ClashDisplay-Semibold';
  src: url('../fonts/ClashDisplay-Semibold.woff2') format('woff2'),
       url('../fonts/ClashDisplay-Semibold.woff') format('woff'),
       url('../fonts/ClashDisplay-Semibold.ttf') format('truetype');
       font-weight: 600;
       font-display: swap;
       font-style: normal;
}

@font-face {
  font-family: 'RedHatDisplay-Regular';
  src: url('../fonts/RedHatDisplay-Regular.woff2') format('woff2'),
       url('../fonts/RedHatDisplay-Regular.woff') format('woff'),
       url('../fonts/RedHatDisplay-Regular.ttf') format('truetype');
       font-weight: 400;
       font-display: swap;
       font-style: normal;
}

@font-face {
  font-family: 'RedHatDisplay-Bold';
  src: url('../fonts/RedHatDisplay-Bold.woff2') format('woff2'),
       url('../fonts/RedHatDisplay-Bold.woff') format('woff'),
       url('../fonts/RedHatDisplay-Bold.ttf') format('truetype');
       font-weight: 700;
       font-display: swap;
       font-style: normal;
}


html,
body {
	width: 100%;
	height: 100%;
}

body {
  background-color: var(--bgColor);
	color: var(--textColor);
	font-size: 18px;
  line-height: 1.4;
	font-family: 'RedHatDisplay-Regular';
	margin: 0;
  padding-top: 80px;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
 
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
 
::-webkit-scrollbar-thumb {
  background-color: var(--brandColor);
}

.hide {
    opacity: 0;
    visibility: hidden;
}
.show {
    opacity: 1;
    visibility: visible;
}

.lazy {
  border: none !important;
  background: #f5f5f5;
  background: url(../img/loader.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  /*background-size: contain;*/
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #000;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #000;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #000;
}
:-moz-placeholder { /* Firefox 18- */
  color: #000;
}

img {
  display: inline-block;
}

p {
  margin: 0 0 16px;
  line-height: 1.4;
  text-align: justify;
}

a {
  color: var(--textColor);
}

b {
  font-family: 'RedHatDisplay-Bold';
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 24px;
  font-family: 'ClashDisplay-Semibold';
  line-height: 1.1;
}
.support__page h1,
.support__page h2,
.support__page h3,
.support__page h4,
.support__page h5,
.support__page h6 {
  margin: 32px 0 16px 0;
}
.single__page h1,
.single__page h2,
.single__page h3,
.single__page h4,
.single__page h5,
.single__page h6 {
  margin: 32px 0 16px 0;
}
h1 {
  font-size: 64px;
}
h2 {
  font-size: 56px;
}
h3 {
  font-size: 48px;
}
h4 {
  font-size: 40px;
}
h5 {
  font-size: 32px;
}
h6 {
  font-size: 24px;
}

.page {
  width: 100%;
  min-height: calc(100vh - 480px);
}

.section__title {
  font-size: 48px;
  line-height: 1;
  margin: 0 0 40px;
}
/*.page__title {
  font-size: 48px;
  line-height: 1;
  margin: 80px 0;
  text-align: center;
}*/
.page__title {
  font-size: 64px;
  line-height: 1;
  margin: 80px;
  text-align: left;
  text-transform: uppercase;
}

.btn {
  min-width: 120px;
  padding: 8px 16px;
  background-color: var(--brandColor);
  color: var(--textColorLight);
  text-align: center;
  text-decoration: none;
}

.btn__readmore {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  line-height: 1;
  font-family: 'ClashDisplay-Semibold';
  text-decoration: none;
}
.btn__readmore img {
  width: 16px;
  height: 16px;
  opacity: 0;
  visibility: 0;
  transition: all .3s ease-in-out;
  transform: translateX(-10px);
}
.btn__readmore:hover img {
  opacity: 1;
  visibility: 1;
  transform: translateX(0);
}


/*header*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--bgColor);
  z-index: 99999;
}
header:after {
  position: absolute;
  top: 100%;
  left: 0;
  content: '';
  width: 100%;
  height: 5px;
  background: linear-gradient(#ffffff, #ffffff) 50% 50%/calc(100% - 10px) calc(100% - 10px) no-repeat,
            linear-gradient(90deg, #ee3124 0%, #f57f29 20%, #fff000 40%, #58b947 60%, #0054a6 80%, #9f248f 100%);
  z-index: -1;
}
.logo {

}
.logo img {

}

.nav__wrapper {

}

.main__nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 24px;
}
.main__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 16px;
}
.menu > li {
  position: relative;
}
.main__nav li a {
  text-transform: uppercase;
  color: var(--textColor);
  text-decoration: none;
  font-family: 'ClashDisplay-Regular';
}
.main__nav .sub-menu {
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  top: 100%;
  left: -16px;
  opacity: 0;
  visibility: hidden;
  width: 200px;
  padding: 16px;
  background-color: var(--bgColor);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
  transition: all .2s ease-in-out;
  transform: translateY(10px);
  z-index: 1;
}
.menu > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main__nav .sub-menu li {
  position: relative;
  display: block;
  width: 100%;
}
.main__nav .sub-menu li .sub-menu {
  left: calc(100% + 15px);
  top: -16px;
}
.main__nav .sub-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.current-menu-item {
  color: var(--brandColor);
}
.current-menu-item:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--brandColor);
}
.lang {
  gap: 8px !important;
}
.nav__right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.btn__donate {
  cursor: pointer;
}
.btn__report {

}

.menu__btn {
  position: absolute;
  top: 50%;
  right: 16px;
  display: none;
  width: 40px;
  height: 28px;
  transform: translateY(-50%);
  transition: all .3s ease-in-out;
  cursor: pointer;
}
.menu__btn span {
  display: block;
  position: absolute;
  height: 4px;
  width: 50%;
  background: #212121;
  opacity: 1;
  transform: rotate(0deg);
  transition: all .3s ease-in-out;
}
.menu__btn span:nth-child(even) {
  left: 50%;
}
.menu__btn span:nth-child(odd) {
  left:0px;
}
.menu__btn span:nth-child(1), .menu__btn span:nth-child(2) {
  top: 0px;
}
.menu__btn span:nth-child(3), .menu__btn span:nth-child(4) {
  top: 12px;
}
.menu__btn span:nth-child(5), .menu__btn span:nth-child(6) {
  top: 24px;
}
.menu__btn.active span:nth-child(1),.menu__btn.active span:nth-child(6) {
  transform: rotate(45deg);
}
.menu__btn.active span:nth-child(2),.menu__btn.active span:nth-child(5) {
  transform: rotate(-45deg);
}
.menu__btn.active span:nth-child(1) {
  left: 5px;
  top: 7px;
}
.menu__btn.active span:nth-child(2) {
  left: calc(50% - 5px);
  top: 7px;
}
.menu__btn.active span:nth-child(3) {
  left: -50%;
  opacity: 0;
}
.menu__btn.active span:nth-child(4) {
  left: 100%;
  opacity: 0;
}
.menu__btn.active span:nth-child(5) {
  left: 5px;
  top: 17px;
}
.menu__btn.active span:nth-child(6) {
  left: calc(50% - 5px);
  top: 17px;
}

/*Homepage*/
.big__slider {
  width: 100%;
  height: calc(100vh - 85px);
  position: relative;
  background-color: rgba(0, 0, 0, 1);
}
.big__slider > div {
  position: relative;
  width: 100%;
  height: 100%;
}
/*.big__slider > div:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}*/
.big__slider .slick-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.big__slider img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6 !important;
}
.big__slider-info {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--textColorLight);
  transform: translate(-50%, -50%);
  z-index: 1;
}
.big__slider-info h2 {
  font-size: 80px;
  line-height: 1;
}
.big__slider-info p {
  max-width: 960px;
  font-size: 24px;
}
.big__slider-info .btn__readmore {
  justify-content: center;
  color: var(--textColorLight);
}
.big__slider-info .btn__readmore img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  opacity: 0;
  visibility: hidden;
}
.big__slider-info .btn__readmore:hover img {
  opacity: 1;
  visibility: visible;
}


.home__mission {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  background: rgb(246,0,75);
  background: linear-gradient(45deg, rgba(246,0,75,1) 0%, rgba(254,120,82,1) 14%, rgba(255,215,42,1) 28%, rgba(171,238,36,1) 42%, rgba(68,228,66,1) 56%, rgba(38,202,185,1) 70%, rgba(88,134,250,1) 84%, rgba(185,3,244,1) 100%);
}
.mission__shape {
  position: absolute;
  top: 50%;
  left: 50%;
  mix-blend-mode: luminosity;
  transform: translate(-50%, -50%);
  opacity: 0.5;
}
.mission__item {
  position: relative;
  width: 33.333%;
}
.mission__item:after {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  padding-top: 100%;
}
.mission__item-info {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 480px;
  max-width: 100%;
  padding: 40px;
  text-align: center;
  color: var(--textColorLight);
  transform: translate(-50%, -50%);
}
.mission__item h2 {
  font-size: 64px;
  line-height: 1;
  text-transform: uppercase;
}
.mission__item p {
  font-size: 24px;
}


.home__about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.home__about-img {
  width: 50%;
  position: relative;
  overflow: hidden;
}
.home__about-img:after {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  padding-top: 100%;
}
.home__about-img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.home__about-info {
  position: relative;
  width: 50%;
  background: var(--brandColor);
}
.home__about-info:after {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  padding-top: 100%;
}
.home__about-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 720px;
  max-width: 100%;
  padding: 40px;
  transform: translate(-50%, -50%);
}
.home__about h2 {
  font-size: 64px;
  line-height: 1.2;
  color: var(--textColorLight);
  margin-bottom: 40px;
}
.home__about-desc {

}
.home__about p {
  font-size: 24px;
  color: var(--textColorLight);
  margin-bottom: 24px;
}
.home__about a {
  color: var(--textColorLight);
}
.home__about a img {
  width: 16px;
  height: 16px;
}

.home__events-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 80px 80px 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #212121;
}
.home__events-title h2 {
  margin: 0;
}
.home__events-title .btn__readmore img {
  width: 24px;
  height: 24px;
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}
.home__events .list__view-wrapper {

}

.home__parade {
  position: relative;
  width: 100%;
  height: 560px;
}
.home__parade a {
  position: relative;
  display: block;
  height: 100%;
}
.home__parade a:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.home__parade a > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home__parade-info {
  position: absolute;
  bottom: 0px;
  left: 0px;
  padding: 80px;
}
.home__parade h3 {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0;
  color: var(--textColorLight);
}
.home__parade h3 img {
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease-in-out;
  transform: translateX(-10px);
}
.home__parade:hover h3 img {
  opacity: 1;
  visibility: visible;
  transform: translateX(0px);
}


/*about page*/
.about__intro {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.about__image {
  width: 100%;
  height: 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.about__image img,
.about__image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__info {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 960px;
  max-width: 100%;
  padding: 40px;
}
.about__info:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  filter: blur(40px);
}
.about__info-inner {
  position: relative;
  z-index: 1;
}
.about__info h1 {
  color: var(--textColorLight);
  margin-bottom: 32px;
}
.about__desc {
  color: var(--textColorLight);
}
.about__desc p {

}

.program__item {
  position: relative;
  display: flex;
  overflow: hidden;
}
.program__item:nth-child(odd) .program-img {
  order: 2;
}
.program-img {
  width: 50%;
  position: relative;
}
.program-img:after {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  padding-top: 100%;
}
.program__item img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.program-info {
  position: relative;
  width: 50%;
}
.program-info:after {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  padding-top: 100%;
}
.program-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 720px;
  max-width: 100%;
  padding: 40px;
  transform: translate(-50%, -50%);
}
.program__item h2 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 40px;
}
.program-desc {

}
.program__item p {
  font-size: 16px;
  margin-bottom: 16px;
}

.partners {
  margin: 120px 0 80px;
  padding: 0 80px;
}
.partners__slider {
  position: relative;
}
.partners__slider img {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  object-fit: contain;
}
.partners .prev__btn {
  position: absolute;
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
  cursor: pointer;
}
.partners .next__btn {
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  cursor: pointer;
}
.partners .prev__btn svg,
.partners .next__btn svg {
  width: 32px;
  height: 32px;
}

/*press release*/
.media__wrapper {
  display: flex;
  flex-wrap: wrap;
  border-left: 1px solid #212121;
  border-top: 1px solid #212121;
}
.media__item {
  position: relative;
  width: 25%;
  border-right: 1px solid #212121;
  border-bottom: 1px solid #212121;
}
.media__item:before {
  content: '';
  display: block;
  width: 100%;
  height: auto;
  padding-top: 75%;
}
.media__item-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 24px;
  overflow: hidden;
  transition: all .3s cubic-bezier(.17,.67,1,1);
}
.media__item:hover .media__item-inner {
  background-color: var(--brandColor);
}
.media__item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transition: all .3s cubic-bezier(.17,.67,1,1);
  transform: translateY(-24px);
}
.media__item:hover .media__item-img {
  opacity: 0.5;
  visibility: visible;
  transition: transform .3s cubic-bezier(.17,.67,1,1);
  transform: translateY(0);
}

.media__item-info {
  position: relative;
  z-index: 1;
}
.media__item:hover .media__item-title,
.media__item:hover .media__item-date,
.media__item:hover .media__item-desc {
  color: var(--textColorLight);
}
.media__item-date {

}
.media__item-title {
  font-size: 40px;
  margin: 16px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.media__item-desc {
  margin: 24px 0 0;
}

.media__item .btn__readmore {
  margin-top: 24px;
  opacity: 0;
  visibility: hidden;
  color: var(--textColorLight);
  transition: all .3s cubic-bezier(.17,.67,1,1) .1s;
  transform: translateY(8px);
}
.media__item .btn__readmore img {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}
.media__item:hover .btn__readmore {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/*workshops*/
.workshops {

}
.workshop__shape {
  position: absolute;
  top: -30%;
  right: -30%;
  width: 66.666%;
  max-width: 1280px;
  height: auto;
  filter: blur(8px);
  z-index: -1;
}
.workshop__item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  text-decoration: none;
}
.workshop__img {
  width: 50%;
  height: 480px;
}
.workshop__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.workshop__info {
  width: 50%;
  padding: 40px;
}
.workshop__info-inner {
  width: 960px;
  max-width: 100%;
}
.workshop__info h2 {
  font-size: 48px;
  margin-bottom: 24px;
} 
.workshop__desc {
  max-width: 100%;
  font-size: 18px;
}
.workshop__desc p {

}
.workshop__info .btn__readmore {
  margin-top: 40px;
}
.workshop__item:hover .btn__readmore img {
  opacity: 1;
  visibility: 1;
  transform: translateX(0);
}
.workshop__item:hover h2,
.workshop__item:hover p,
.workshop__item:hover span {
  color: var(--brandColor) !important;
}


/*pride week*/
.prideweek {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 80px);
  margin-bottom: 80px;
}
.prideweek__flag {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.prideweek__flag:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(20px);
}
.prideweek__flag img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}
.progressive__flag-mobile {
  display: none;
}
.prideweek__info {
  position: relative;
  width: 50%;
  margin-left: auto;
  padding: 80px;
  max-width: 100%;
  color: var(--textColorLight);
}
.prideweek__info-inner {
  position: relative;
  max-width: 960px;
  z-index: 1;
}
.prideweek__info-inner:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  filter: blur(20px);
  z-index: -1;
}
.prideweek__info h1 {
  font-size: 64px;
  line-height: 1;
  margin: 0 0 16px;
}
.prideweek__date {
  display: block;
  font-size: 24px;
  line-height: 24px;
}
.prideweek__desc {
  margin-top: 40px;
}
.prideweek__desc p {
  font-size: 24px;
}

/*past pride weeks*/
.pastpride__page {

}
.pastpride__wrapper {
  display: flex;
  flex-wrap: wrap;
}
.pastpride__sidebar {
  position: relative;
  width: 40%;
  padding: 0 80px 80px;
  display: flex;
  flex-direction: column;
}
.pastpride__item {
  position: relative;
  text-decoration: none;
  padding: 24px;
  transition: all .3s cubic-bezier(.17,.67,1,1);
}
.pastpride__item:hover,
.pastpride__item#current {
  background: var(--brandColor);
  color: var(--textColorLight);
}
.pastpride__title {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 8px;
  font-family: 'ClashDisplay-Regular';
}
.pastpride__slogan {
  font-size: 40px;
  line-height: 1;
  font-family: 'ClashDisplay-SemiBold';
}

.pastpride__content {
  width: 60%;
  padding-bottom: 80px;
}
.pastpride__info {
  margin-bottom: 40px;
}
.past__title {
  font-size: 64px;
  line-height: 1;
  margin: 0 0 16px;
}
.past__slogan {
  font-size: 32px;
  line-height: 1;
  font-family: 'ClashDisplay-Medium';
}
.pastpride__content .single__page-img {
  margin: 0;
}

.single__pride-data {
  display: flex;
  gap: 40px;
}
.single__pride-data > div {
  display: flex;
  gap: 16px;
}

/*events*/
.events__page {

}
.events__shape {
  position: absolute;
  top: -33.333%;
  right: -33.333%;
  width: 66.666%;
  max-width: 1280px;
  filter: blur(8px);
}

/*news*/
.news__page {

}
.news__shape {
  position: absolute;
  top: -30%;
  right: -30%;
  width: 66.666%;
  max-width: 1280px;
  height: auto;
  filter: blur(8px);
  z-index: -1;
}


/*List View - Evemts, Workshops, News, Blog*/
.list__view-wrapper {
  position: relative;
  padding: 0 80px 80px;
}
.list__item {
  position: relative;
  display: flex;
  gap: 40px;
  padding: 16px;
  text-decoration: none;
  transition: all .2s cubic-bezier(.17,.67,1,1);
  border-bottom: 1px solid #212121;
}
.list__item:last-child {
  border-bottom: 0;
}
.list__item-data {
  width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: 'ClashDisplay-Regular';
}
.list__item-date {
  display: block;
}
.list__item-time {
/*  font-family: 'ClashDisplay-Semibold';*/
}
.list__item-location {

}
.list__item-info {
  width: 960px;
  max-width: 100%;
  z-index: 1;
}
.list__item-title {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 16px;
} 
.list__item-desc {
  font-size: 18px;
}
.list__item-desc p {
  margin: 0;
}
.list__item-img {
  width: 400px;
  height: 200px;
  object-fit: cover;
  margin-left: auto;
  opacity: 0;
  visibility: hidden;
  transition: all .3s cubic-bezier(.17,.67,1,1);
  transform: translateX(16px);
}
.list__item:hover .list__item-img {
  opacity: 1;
  visibility: visible;
  transition: transform .3s cubic-bezier(.17,.67,1,1);
  transform: translateX(0);
}

.list__item .btn__readmore {
  position: absolute;
  top: 50%;
  right: 40px;
  color: var(--textColorLight);
  opacity: 0;
  visibility: hidden;
  transition: all .3s cubic-bezier(.17,.67,1,1);
  transform: translateX(30px);
}
.list__item:hover .btn__readmore {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.list__item:hover .btn__readmore img {
  opacity: 1;
  visibility: visible;
}
.list__item:hover {
  background-color: var(--brandColor);
  color: var(--textColorLight);
}

/*publications*/
.publication__page {

}
.publications__wrapper {
  display: flex;
  flex-wrap: wrap;
  border-left: 1px solid #212121;
  border-top: 1px solid #212121;
}
.publication__item {
  position: relative;
  width: 33.333%;
  border-right: 1px solid #212121;
  border-bottom: 1px solid #212121;
}
.publication__item:before {
  content: '';
  display: block;
  width: 100%;
  height: auto;
  padding-top: 75%;
}
.publication__item-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
}
.publication__item-img {
  width: 50%;
  height: 100%;
  object-fit: cover;
}
.publication__item-info {
  width: 50%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.publication__item-title {
  font-size: 32px;
}
.publication__item-download {
  display: flex;
  align-items: center;
  gap: 24px;
}
.publication__item-download a {
  width: 50%;
  padding: 8px 16px;
  background-color: var(--brandColor);
  color: var(--textColorLight);
  text-decoration: none;
  text-align: center;
}

/*donate*/
.donate__popup {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--brandColor);
  transition: all .3s cubic-bezier(.17,.67,1,1);
  z-index: -1;
}
.donate__popup.active {
  opacity: 1;
  visibility: visible;
  z-index: 99999;
}
.donate__popup-close {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.donate__info {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 640px;
  max-width: 100%;
  text-align: center;
  color: var(--textColorLight);
  transform: translate(-50%,-50%);
}
.donate__info h2 {
  font-size: 48px;
  line-height: 1;
  margin: 0 0 24px;
}
.donate__info p {
  font-size: 24px;
}
.donate__info a {
  text-decoration: none;
  color: var(--textColorLight);
  font-size: 18px;
}

/*Support page*/
.support__page {
  position: relative;
  display: flex;
  align-items: flex-end;
}
.support__shape {
  position: absolute;
  top: -30%;
  left: -30%;
  width: 66.666%;
  max-width: 1280px;
  height: auto;
  filter: blur(8px);
  z-index: -1;
}
.support__content {
  width: 66.666%;
  margin-left: auto;
  padding: 0 80px 80px;
}
.support__content .page__title {
  text-align: left;
  margin: 80px 0;
}
.support__desc {
  width: 960px;
  max-width: 100%;
  margin-bottom: 40px;
}
.support__form {
  width: 480px;
  max-width: 100%;
}
.form__item {
  margin-bottom: 16px;
}
.form__item label {
  display: block;
  margin-bottom: 4px;
}
.form__item input {
  width: 100%;
  height: 64px;
  background-color: var(--bgColor);
  border: 1px solid var(--textColor);
}
.form__item textarea {
  width: 100%;
  height: 160px;
  resize: vertical;
  background-color: var(--bgColor);
  border: 1px solid var(--textColor);
}
.form__item input[type="submit"] {
  width: 180px;
  height: 48px;
  padding: 8px 24px;
  text-align: center;
  font-family: 'ClashDisplay-Semibold';
  color: #f5f5f5;
  background-color: var(--brandColor);
  cursor: pointer;
}

/*single page*/
.single__page {
  display: flex;
  align-items: flex-end;
}
.single__shape {
  position: absolute;
  top: -30%;
  left: -30%;
  width: 66.666%;
  max-width: 1280px;
  height: auto;
  filter: blur(8px);
  z-index: -1;
}
.single__page-wrapper {
  position: relative;
  width: 66.666%;
  margin-left: auto;
  padding: 80px 0;
}
.single__page-title {
  width: 1120px;
  max-width: 100%;
  padding: 0 80px;
}
.single__page-title h1 {
  margin: 0;
  text-align: left;
}
.single__page-data {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
}
.single__page-date {
  font-size: 18px;
  line-height: 1;
  display: block;
}
.single__page-slider {
  width: 100%;
  height: auto;
  position: relative;
  margin-top: 40px;
  aspect-ratio: 16 / 9;
}
.single__page-slider > div {
  position: relative;
  width: 100%;
  height: 100%;
}
.single__page-slider > div:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.single__page-slider img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prev__btn {
  position: absolute;
  top: auto;
  left: auto;
  bottom: 80px;
  right: 0px;
  cursor: pointer;
  width: 80px;
  height: 80px;
  background: var(--bgColor);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(0);
}
.next__btn {
  position: absolute;
  top: auto;
  bottom: 0;
  right: 0px;
  cursor: pointer;
  width: 80px;
  height: 80px;
  background: var(--bgColor);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(0);
}
.prev__btn svg,
.next__btn svg {
  width: 24px;
  height: 24px;
}
.prev__btn:hover svg path,
.next__btn:hover svg path{
  fill: #f5f5f5;
}
.prev__btn::before,
.next__btn::before {
  content: "";
  inset: 0;
  position: absolute;
  background: var(--brandColor);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
  z-index: -1;
}
.prev__btn:hover::before,
.next__btn:hover::before {
  transform: scaleX(1);
  transform-origin: right;
}
.next__btn::before {
  transform-origin: right;
}
.next__btn:hover::before {
  transform-origin: left;
}
.slider__counter {
  width: 80px !important;
  height: 80px !important;
  background: #f2f1f4;
  position: absolute !important;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #212121;
}
.slider__counter:before {
  display: none;
}
.single__page-video {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin: 40px 0 0;
  aspect-ratio: 16 / 9;
}

.single__page-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-top: 40px;
}
.single__page-content {
  width: 1120px;
  max-width: 100%;
  padding: 0 80px;
  margin-top: 40px;
}

.single__page-pagination {
  display: flex;
  border: 1px solid var(--textColor);
  margin-top: 120px;
}
.single__pagination-btn {
  position: relative;
  width: 50%;
  transition: all .3s cubic-bezier(.17,.67,1,1);
}
.single__pagination-btn:first-child {
  border-right: 1px solid var(--textColor);
}
.single__pagination-btn a {
  display: block;
  width: 100%;
  height: 240px;
  text-decoration: none;
}
.single__pagination-btn:hover {
  color: #f5f5f5;
  background-color: var(--brandColor);
}
.single__pagination-info {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 24px;
  display: flex;
  align-items: flex-end;
  z-index: 1;
}
.single__pagination-title {
  position: absolute;
  top: 24px;
  left: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}
.single__pagination-title svg {
  width: 16px;
  height: 16px;
}
.single__pagination-next .single__pagination-title {
  left: auto;
  right: 24px;
}
.single__pagination-btn:hover .single__pagination-title {
  color: #f5f5f5;
}
.single__pagination-btn:hover .single__pagination-title svg path {
  fill: #f5f5f5;
}
.single__pagination-btn h3 {
  font-size: 24px;
  margin: 0;
  max-width: 640px;
}
.single__pagination-btn:hover h3 {
  color: #f5f5f5;
}
.single__pagination-img {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all .3s ease-in-out;
}
.single__pagination-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.single__pagination-btn:hover .single__pagination-img {
  opacity: 0.4;
  visibility: visible;
}
/*footer*/
footer {
  position: relative;
  padding: 80px;
  background-color: var(--brandColor);
  color: var(--textColorLight);
  z-index: 9999;
}
.footer__content {
  display: flex;
}
.footer__info {
  width: 33.333%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer__logo {
  width: 120px;
  height: auto;
  display: block;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--textColorLight);
  text-decoration: none;
}
.footer__contact a img {
  width: 16px;
  height: 16px;
  display: block; 
}

.footer__links {
  width: 66.666%;
}
.footer__links ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 640px;
  max-width: 100%;
  margin-left: auto;
  justify-content: flex-end;
}
.footer__links li {
  width: calc(50% - 24px);
  text-align: right;
  white-space: nowrap;
}
.footer__links a {
  color: var(--textColorLight);
  text-decoration: none;
}

.copyright {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #f5f5f5;
}
.copyright p {
  margin: 0;
  font-size: 14px;
}
.copyright .social__links {
  display: flex;
  align-items: center;
  gap: 16px;
}
.copyright .social__links a {
  display: block;
  text-decoration: none;
}
.copyright .social__links a img {
  display: block;
  width: 16px;
  height: 16px;
}




