@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

ol,
ul {
  list-style: none;
}

img,
svg,
video,
canvas,
picture {
  display: block;
  max-width: 100%;
}

input,
button,
select,
textarea {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
span {
  overflow-wrap: break-word;
}

* {
  font-family: "Inter";
}

.sidebar {
  background-color: #352F87;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  overflow: auto;
  width: 475px;
  z-index: 100000;
  -webkit-transition: 0.3s -webkit-transform linear;
  transition: 0.3s -webkit-transform linear;
  transition: 0.3s transform linear;
  transition: 0.3s transform linear, 0.3s -webkit-transform linear;
}
@media (max-width: 1200px) {
  .sidebar {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@media (max-width: 768px) {
  .sidebar {
    width: 250px;
  }
}
.sidebar.open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.sidebar::-webkit-scrollbar {
  width: 0;
  background: transparent;
}
.sidebar__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 200px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 80px;
  min-height: 100%;
}
@media (max-width: 768px) {
  .sidebar__body {
    padding: 40px 30px;
    gap: 100px;
  }
}
.sidebar__top {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.sidebar__logo {
  margin-bottom: 100px;
  display: block;
}
@media (max-width: 768px) {
  .sidebar__logo {
    margin-bottom: 50px;
  }
}
.sidebar__logo img {
  max-width: 100%;
}
.sidebar__langs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .sidebar__langs {
    margin-bottom: 50px;
  }
}
.sidebar__langs a {
  color: #FFFFFF;
  font-size: 22px;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}
.sidebar__langs a::before {
  content: "";
  position: absolute;
  top: 0;
  right: -30px;
  height: 100%;
  width: 2px;
  background-color: white;
  opacity: 0.5;
}
.sidebar__langs a:last-child::before {
  display: none;
}
.sidebar__langs a.current {
  opacity: 0.5;
}
.sidebar__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 45px;
  margin-bottom: 140px;
}
@media (max-width: 768px) {
  .sidebar__menu {
    gap: 20px;
    margin-bottom: 70px;
  }
}
.sidebar__menu > li > a {
  font-size: 30px;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .sidebar__menu > li > a {
    font-size: 20px;
  }
}
.sidebar__menu > li:has(ul):hover > a {
  margin-bottom: 44px;
}
@media (max-width: 768px) {
  .sidebar__menu > li:has(ul):hover > a {
    margin-bottom: 30px;
  }
}
.sidebar__menu > li:has(ul):hover > a img {
  rotate: 180deg;
}
.sidebar__menu > li:has(ul):hover > ul {
  display: block;
}
.sidebar__menu > li > ul {
  display: none;
}
.sidebar__menu > li > ul > li {
  padding: 10px;
  border-radius: 6px;
}
.sidebar__menu > li > ul > li:hover {
  background-color: white;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.sidebar__menu > li > ul > li:hover > a {
  font-weight: 900;
  color: #352F87;
}
.sidebar__menu > li > ul > li > a {
  font-size: 23px;
  text-transform: uppercase;
  color: white;
  text-decoration: none;
}
@media (max-width: 768px) {
  .sidebar__menu > li > ul > li > a {
    font-size: 16px;
  }
}
.sidebar__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.sidebar__ever {
  font-size: 24px;
  font-weight: 300;
  color: white;
}
@media (max-width: 768px) {
  .sidebar__ever {
    font-size: 16px;
  }
}
.sidebar__ever div {
  margin-bottom: 50px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media (max-width: 768px) {
  .sidebar__ever div {
    margin-bottom: 25px;
  }
}
@media (max-width: 768px) {
  .sidebar__ever img {
    width: 50px;
  }
}

.msidebar {
  background-color: #352F87;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 155px;
  z-index: 10000;
  display: none;
  overflow: auto;
}
@media (max-width: 1200px) {
  .msidebar {
    display: block;
  }
}
@media (max-width: 768px) {
  .msidebar {
    width: 100px;
  }
}
.msidebar::-webkit-scrollbar {
  width: 0;
  background: transparent;
}
.msidebar__body {
  padding: 35px 25px;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 100px;
}
@media (max-width: 768px) {
  .msidebar__body {
    padding: 30px 15px;
  }
}
.msidebar__top {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.msidebar__logo {
  margin-bottom: 67px;
  display: inline-block;
}
.msidebar__burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  margin-bottom: 26px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .msidebar__burger {
    gap: 10px;
  }
}
.msidebar__burger span {
  width: 100%;
  height: 13px;
  border-radius: 20px;
  background-color: #FFFFFF;
}
@media (max-width: 768px) {
  .msidebar__burger span {
    height: 5px;
  }
}
.msidebar__lang {
  text-align: center;
  margin-bottom: 70px;
}
.msidebar__lang a {
  font-size: 22px;
  text-transform: uppercase;
  color: white;
  opacity: 0.5;
  text-decoration: none;
}
.msidebar__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.msidebar__ever {
  font-size: 24px;
  font-weight: 300;
  color: white;
}
@media (max-width: 768px) {
  .msidebar__ever {
    font-size: 18px;
  }
}
.msidebar__ever div {
  margin-bottom: 50px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media (max-width: 768px) {
  .msidebar__ever div {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .msidebar__ever img {
    width: 50px;
  }
}

.content {
  margin-left: 475px;
}
@media (max-width: 1200px) {
  .content {
    margin-left: 155px;
  }
}
@media (max-width: 768px) {
  .content {
    margin-left: 100px;
  }
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.first {
  padding: 770px 0 100px 0;
  background-size: cover;
  background-position: left;
}
@media (max-width: 768px) {
  .first {
    padding: 0;
    height: 614px;
  }
}
.first__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.first__block {
  max-width: 680px;
}
@media (max-width: 768px) {
  .first__block {
    display: none;
  }
}
.first__title {
  font-size: 40px;
  font-weight: 500;
  color: white;
  margin-bottom: 20px;
}
.first__text {
  font-size: 32px;
  font-weight: 300;
  color: white;
}

.pol {
  background-color: #0F0D27;
  padding: 70px 0;
}
@media (max-width: 768px) {
  .pol {
    padding: 40px 0;
  }
}
.pol__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 768px) {
  .pol__body {
    gap: 15px;
  }
}
.pol__body span {
  font-size: 85px;
  font-weight: 100;
  color: white;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .pol__body span {
    font-weight: 900;
    font-size: 36px;
  }
}

.about {
  padding: 200px 0 60px 0;
  background-size: cover;
}
@media (max-width: 768px) {
  .about {
    background-image: none !important;
    padding: 0;
    background-color: #0F0D27;
  }
}
.about__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 285px;
}
@media (max-width: 768px) {
  .about__title {
    padding: 330px 20px 150px 20px;
    margin-bottom: 0;
    margin: 0 -20px 0 -20px;
  }
}
@media (max-width: 500px) {
  .about__title {
    padding: 150px 20px 150px 20px;
  }
}
.about__title span {
  font-size: 111px;
  font-weight: 600;
  color: white;
}
@media (max-width: 768px) {
  .about__title span {
    font-size: 70px;
    font-weight: 900;
  }
}
@media (max-width: 500px) {
  .about__title span {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .about__title a {
    width: 40px;
  }
}
@media (max-width: 500px) {
  .about__title a {
    width: 30px;
  }
}
.about__text {
  font-weight: 300;
  font-size: 29px;
  color: white;
}
@media (max-width: 768px) {
  .about__text {
    padding: 25px 0 60px 0;
  }
}
@media (max-width: 500px) {
  .about__text {
    font-size: 20px;
    padding: 30px 0;
  }
}
.about__body {
  max-width: 730px;
}

.pub {
  padding: 150px 0 100px 0;
  background-position: center;
  background-size: cover;
}
@media (max-width: 768px) {
  .pub {
    background-image: none !important;
    background-color: #282459;
    padding: 65px 0;
  }
}
.pub__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.pub.left .pub__body {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.pub__block {
  max-width: 464px;
}
@media (max-width: 768px) {
  .pub__block {
    max-width: none;
  }
}
.pub__title {
  font-size: 64px;
  color: white;
  font-weight: 300;
  margin-bottom: 70px;
  line-height: 1.1;
}
@media (max-width: 768px) {
  .pub__title {
    font-size: 40px;
    margin-bottom: 35px;
  }
}
.pub__title span {
  font-weight: 900;
}
.pub__img {
  display: none;
}
@media (max-width: 768px) {
  .pub__img {
    display: block;
    height: 380px;
    margin: 0 -20px 0 -20px;
    margin-bottom: 35px;
  }
}
.pub__img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pub__subtitle {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 20px;
  color: white;
}
@media (max-width: 768px) {
  .pub__subtitle {
    font-size: 31px;
  }
}
.pub__text {
  font-size: 25px;
  color: white;
}
@media (max-width: 768px) {
  .pub__text {
    font-size: 22px;
  }
}

.items {
  padding: 57px 0;
  background-color: #12161A;
}
.items__slider {
  margin-bottom: 55px;
}
.items__slide img {
  height: 230px;
  border-radius: 28px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.items__pag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.items__pag span {
  background-color: #FFFFFF !important;
  opacity: 1 !important;
}

.videos {
  padding: 70px 0 110px 0;
  background-color: #282459;
}
.videos .container {
  max-width: none;
}
@media (max-width: 768px) {
  .videos {
    padding: 31px 0 31px 0;
  }
}
.videos.black {
  background-color: #0F0D27;
}
.videos__title {
  font-size: 64px;
  font-weight: 300;
  color: white;
  margin-bottom: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media (max-width: 768px) {
  .videos__title {
    font-size: 41px;
    margin-bottom: 25px;
  }
}
.videos__title span {
  font-weight: 900;
}
.videos__slider {
  margin: 0 -20px 0 -20px;
}
.videos__slider img {
  border-radius: 34px;
  height: 392px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}
@media (max-width: 768px) {
  .videos__slider img {
    height: 217px;
  }
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7137254902);
  z-index: 111111111;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
}
.popup.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.popup__body {
  padding: 30px;
}
.popup__body iframe {
  height: 754px;
  width: 1350px;
  max-width: 100%;
  border-radius: 34px;
}
@media (max-width: 768px) {
  .popup__body iframe {
    height: 500px;
  }
}

body.lock {
  overflow-y: hidden;
}

.banner {
  height: 1025px;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 768px) {
  .banner {
    height: 560px;
  }
}
.banner__text {
  font-size: 105px;
  color: white;
  text-transform: uppercase;
  font-weight: 1000;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  padding: 70px 70px 0 0;
  line-height: 1;
}
@media (max-width: 768px) {
  .banner__text {
    font-size: 70px;
    padding: 30px 30px 0 0;
  }
}

.info {
  padding: 60px 0 90px 0;
  background-color: #282459;
}
@media (max-width: 768px) {
  .info {
    padding: 40px 0;
  }
}
.info__text {
  font-size: 300;
  font-size: 29px;
  color: white;
  margin-bottom: 93px;
}
@media (max-width: 768px) {
  .info__text {
    margin-bottom: 50px;
    font-size: 20px;
  }
}
.info__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 45px 1fr 45px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 45px;
}
@media (max-width: 768px) {
  .info__items {
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media (max-width: 500px) {
  .info__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.info__item img {
  border-radius: 20px;
}

.gallery {
  background-color: #12161A;
}
.gallery__title {
  font-size: 64px;
  color: white;
  font-weight: 1000;
  padding: 50px 0;
}
@media (max-width: 768px) {
  .gallery__title {
    font-size: 44px;
    padding: 25px 0;
  }
}
.gallery__slide img {
  height: 520px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}
@media (max-width: 768px) {
  .gallery__slide img {
    height: 320px;
  }
}
.gallery__slider {
  margin-bottom: 45px;
}
@media (max-width: 768px) {
  .gallery__slider {
    margin-bottom: 30px;
  }
}
.gallery__pag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.gallery__pag span {
  background-color: white !important;
  opacity: 1;
}

.media {
  background-color: #12161A;
  padding: 50px 0 40px 0;
}
@media (max-width: 768px) {
  .media {
    padding: 50px 0 40px 0;
  }
}
.media.light {
  background-color: #282459;
}
.media__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.text {
  background-color: #282459;
}
.text__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
  padding: 110px 0;
}
@media (max-width: 1024px) {
  .text__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    padding: 50px 0;
  }
}
.text__left {
  width: 70%;
  font-size: 39px;
  color: white;
  font-weight: 300;
}
@media (max-width: 1024px) {
  .text__left {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    font-size: 16px;
  }
}
.text__right {
  width: 30%;
}
@media (max-width: 1024px) {
  .text__right {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.text__right img {
  width: 100%;
}

.bio {
  background-color: #282459;
  padding-bottom: 300px;
}
@media (max-width: 1024px) {
  .bio {
    padding-bottom: 85px;
  }
}
.bio__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
}
@media (max-width: 1024px) {
  .bio__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}
.bio__left {
  width: 70%;
  font-size: 29px;
  color: white;
  font-weight: 300;
}
@media (max-width: 1024px) {
  .bio__left {
    width: 100%;
    font-size: 13px;
  }
}
.bio__right {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
@media (max-width: 1024px) {
  .bio__right {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 768px) {
  .bio__right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.bio__img {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.bio__img img {
  border-radius: 50%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.bio__text {
  font-size: 13px;
  color: white;
  font-weight: 300;
}

.archives {
  padding: 0 0 92px 0;
  background-color: #282459;
}
.archives .container {
  max-width: none;
}
@media (max-width: 768px) {
  .archives {
    padding: 0 0 31px 0;
  }
}
.archives__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  margin-bottom: 71px;
  font-size: 59px;
}
@media (max-width: 768px) {
  .archives__title {
    font-size: 41px;
    margin-bottom: 25px;
  }
}
.archives__title span:first-child {
  font-weight: 1000;
  text-transform: uppercase;
  color: white;
}
.archives__title span:last-child {
  font-weight: 300;
  color: white;
}
.archives__slider {
  margin-right: -20px;
}
@media (max-width: 768px) {
  .archives__slider {
    margin-right: 0;
  }
}
.archives__slide img {
  border-radius: 34px;
  height: 236px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.list {
  background-color: #282459;
  padding: 50px 0 140px 0;
}
@media (max-width: 1400px) {
  .list {
    padding: 20px 0;
  }
}
@media (max-width: 768px) {
  .list {
    padding: 20px 0;
  }
}
.list__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 65px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 1400px) {
  .list__title {
    margin-bottom: 40px;
  }
}
.list__title > div:first-child div:first-child {
  color: white;
  font-size: 105px;
  font-weight: 900;
}
@media (max-width: 1400px) {
  .list__title > div:first-child div:first-child {
    font-size: 70px;
  }
}
@media (max-width: 768px) {
  .list__title > div:first-child div:first-child {
    font-size: 40px;
  }
}
.list__title > div:first-child div:last-child {
  color: white;
  font-size: 82px;
  font-weight: 300;
}
@media (max-width: 1400px) {
  .list__title > div:first-child div:last-child {
    font-size: 50px;
  }
}
@media (max-width: 768px) {
  .list__title > div:first-child div:last-child {
    font-size: 30px;
  }
}
.list__title > div:first-child div:last-child span {
  font-weight: 1000;
}
.list__title > div:last-child {
  color: white;
  font-size: 82px;
  font-weight: 300;
}
@media (max-width: 1400px) {
  .list__title > div:last-child {
    font-size: 50px;
  }
}
@media (max-width: 768px) {
  .list__title > div:last-child {
    font-size: 30px;
  }
}
.list__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 1fr 50px 1fr 50px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 50px;
}
@media (max-width: 1400px) {
  .list__items {
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .list__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.list__item {
  height: 236px;
  border-radius: 34px;
  overflow: hidden;
  cursor: pointer;
}
.list__item img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.news {
  background-color: #282459;
  padding: 56px 0 115px 0;
}
@media (max-width: 768px) {
  .news {
    padding: 50px 0;
  }
}
.news__text {
  font-size: 29px;
  color: white;
  font-weight: 300;
  max-width: 1074px;
  margin: 0 auto;
  margin-bottom: 116px;
}
@media (max-width: 768px) {
  .news__text {
    font-size: 20px;
    margin-bottom: 50px;
  }
}
.news__imgs img {
  border-radius: 20px;
}

.posts {
  background-color: #282459;
  padding: 0 0 122px 0;
}
@media (max-width: 768px) {
  .posts {
    padding-bottom: 50px;
  }
}
.posts__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 55px;
}
@media (max-width: 1500px) {
  .posts__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
}
.posts .item {
  text-decoration: none;
}
.posts .item__img {
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .posts .item__img {
    margin-bottom: 10px;
  }
}
.posts .item__img img {
  border-radius: 22px;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media (max-width: 768px) {
  .posts .item__img img {
    height: 250px;
  }
}
.posts .item__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media (max-width: 768px) {
  .posts .item__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.posts .item__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
@media (max-width: 768px) {
  .posts .item__left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.posts .item__date {
  font-size: 29px;
  color: white;
  font-weight: 300;
}
.posts .item__title {
  font-size: 29px;
  color: white;
  font-weight: 700;
}
.posts .item__number {
  font-size: 29px;
  color: white;
  font-weight: 300;
}

.year {
  background-color: #282459;
  padding-bottom: 50px;
}
.year__title {
  font-size: 82px;
  color: white;
  font-weight: 300;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .year__title {
    font-size: 50px;
  }
}
.year__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 90px;
}
@media (max-width: 1024px) {
  .year__items {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .year__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin-bottom: 45px;
  }
}
.year__items .item__img {
  margin-bottom: 20px;
}
.year__items .item__img img {
  height: 300px;
  width: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
.year__items .item__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.year__items .item__date {
  font-size: 19px;
  color: white;
  font-weight: 300;
}
.year__items .item__title {
  font-size: 19px;
  color: white;
  font-weight: 700;
}
.year__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}
.year__list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
@media (max-width: 768px) {
  .year__list .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.year__list .item__date {
  font-size: 19px;
  color: white;
  font-weight: 300;
}
.year__list .item__text {
  font-size: 19px;
  color: white;
  font-weight: 300;
}
.year__list .item__text span {
  font-weight: 700;
}

.top {
  background-color: #282459;
  padding: 70px 0 140px 0;
}
@media (max-width: 768px) {
  .top {
    padding: 70px 0;
  }
}
.top__title {
  font-size: 105px;
  text-transform: uppercase;
  color: white;
  font-weight: 1000;
  margin-bottom: 140px;
  word-break: break-all;
}
@media (max-width: 1400px) {
  .top__title {
    font-size: 80px;
  }
}
@media (max-width: 1024px) {
  .top__title {
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .top__title {
    font-size: 50px;
  }
}
.top__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 140px;
}
@media (max-width: 1024px) {
  .top__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}
.top__text {
  font-size: 29px;
  color: white;
  font-weight: 300;
}
@media (max-width: 768px) {
  .top__text {
    font-size: 20px;
  }
}
.top__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.top__img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 225px;
  width: 225px;
  border-radius: 40px;
}
@media (max-width: 1024px) {
  .top__img img {
    width: 100%;
  }
}

.imgs {
  background-color: #282459;
}
.imgs__imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .imgs__imgs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
  }
}
.imgs__imgs img {
  border-radius: 20px;
}
.imgs__left {
  width: 50%;
  height: 560px;
}
@media (max-width: 1024px) {
  .imgs__left {
    width: 100%;
    height: 300px;
  }
}
.imgs__left img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.imgs__right {
  width: 50%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 1024px) {
  .imgs__right {
    width: 100%;
    gap: 10px;
  }
}
.imgs__right img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.imgs__bottom {
  font-size: 29px;
  color: white;
  font-weight: 300;
}
@media (max-width: 1024px) {
  .imgs__bottom {
    font-size: 20px;
  }
}
.imgs__bottom span {
  font-weight: 700;
}

/* Customize the label (the container) */
.form__radio .container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.form__radio .container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom radio button */
.form__radio .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #68658A;
  border-radius: 10px;
}

/* On mouse-over, add a grey background color */
.form__radio .container:hover input ~ .checkmark {
  background-color: #68658A;
}

/* When the radio button is checked, add a blue background */
.form__radio .container input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.form__radio .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.form__radio .container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.form__radio .container .checkmark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 10px;
  background: white;
}

.contact {
  background-color: #282459;
  padding: 70px 0 130px 0;
}
@media (max-width: 1024px) {
  .contact {
    padding: 20px 0 50px 0;
  }
}
.contact__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 110px;
}
@media (max-width: 1024px) {
  .contact__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}
.contact__left {
  width: 40%;
}
@media (max-width: 1024px) {
  .contact__left {
    width: 100%;
  }
}
.contact__right {
  width: 60%;
}
@media (max-width: 1024px) {
  .contact__right {
    width: 100%;
  }
}
.contact__title {
  font-size: 82px;
  font-weight: 1000;
  color: white;
  margin-bottom: 180px;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .contact__title {
    margin-bottom: 40px;
    font-size: 50px;
  }
}
.contact__text {
  font-size: 29px;
  color: white;
  font-weight: 300;
}
@media (max-width: 1024px) {
  .contact__text {
    font-size: 20px;
  }
}
.contact__subtitle {
  font-size: 49px;
  color: white;
  text-transform: uppercase;
  padding: 40px 0;
  font-weight: 1000;
}
@media (max-width: 1024px) {
  .contact__subtitle {
    font-size: 35px;
    padding: 20px 0;
  }
}

.form__title {
  font-size: 29px;
  font-weight: 700;
  color: white;
  margin-bottom: 28px;
}
@media (max-width: 1024px) {
  .form__title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.form__input {
  margin-bottom: 28px;
}
.form__input input, .form__input textarea {
  width: 100%;
  padding: 15px 18px;
  border-radius: 10px;
  background-color: #68658A;
  color: white;
}
.form__input input::-webkit-input-placeholder, .form__input textarea::-webkit-input-placeholder {
  color: white;
  font-size: 23px;
}
.form__input input::-moz-placeholder, .form__input textarea::-moz-placeholder {
  color: white;
  font-size: 23px;
}
.form__input input:-ms-input-placeholder, .form__input textarea:-ms-input-placeholder {
  color: white;
  font-size: 23px;
}
.form__input input::-ms-input-placeholder, .form__input textarea::-ms-input-placeholder {
  color: white;
  font-size: 23px;
}
.form__input input::placeholder, .form__input textarea::placeholder {
  color: white;
  font-size: 23px;
}
.form__input textarea {
  width: 100%;
}
.form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 21px;
}
.form__row > * {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.form__radio {
  margin-bottom: 28px;
  color: white;
  font-size: 23px;
}
.form__btn button {
  font-size: 29px;
  color: #282459;
  font-weight: 700;
  padding: 17px 36px;
  background-color: white;
  border-radius: 10px;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .form__btn button {
    font-size: 20px;
  }
}

.d-none {
  display: none;
}

.sub {
  background-color: #282459;
}
@media (max-width: 1024px) {
  .sub {
    padding-bottom: 50px;
  }
}
.sub__top {
  font-size: 82px;
  color: white;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .sub__top {
    font-size: 50px;
  }
}
.sub__top span {
  font-weight: 1000;
}
.sub__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 110px;
}
@media (max-width: 1024px) {
  .sub__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}
.sub__left {
  width: 40%;
  font-size: 29px;
  color: white;
  font-weight: 300;
}
@media (max-width: 1024px) {
  .sub__left {
    width: 100%;
    font-size: 20px;
  }
}
.sub__right {
  width: 60%;
}
@media (max-width: 1024px) {
  .sub__right {
    width: 100%;
  }
}

.loading {
  position: relative;
}

.loading::before {
  content: "";
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(40%, #eeeeee), color-stop(50%, #dddddd), color-stop(60%, #eeeeee));
  background: linear-gradient(to bottom right, #eeeeee 40%, #dddddd 50%, #eeeeee 60%);
  background-size: 200% 200%;
  background-repeat: no-repeat;
  -webkit-animation: placeholderShimmer 2s infinite linear;
  animation: placeholderShimmer 2s infinite linear;
  height: 100%;
  width: 100%;
  opacity: 0.6;
}

@-webkit-keyframes placeholderShimmer {
  0% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0 0;
  }
}
@keyframes placeholderShimmer {
  0% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0 0;
  }
}

.sidebar__ever a {
  color: white;
  text-decoration: none;
}

.archives__slide {
  cursor: pointer;
}
.year__item {
  text-decoration: none;
}