@import url("https://fonts.googleapis.com/css2?family=Poiret+One&display=swap");
/* main font size */
.hide-for-mobile {
  display: none;
}

.hide-for-web {
  display: block;
}

.container {
  margin-inline: auto;
  margin-block: 0;
  padding: 5rem 1rem;
}

@media screen and (min-width: 641px) {
  .hide-for-web {
    display: none;
  }
  .hide-for-mobile {
    display: block;
  }
  .container {
    width: 100%;
    padding: 5rem 3rem;
    margin-inline: auto;
    max-width: 1535px;
  }
}
h1 {
  font-size: clamp(1.5rem, 2vw, 2rem);
}

h2 {
  font-size: clamp(1.3rem, 1.5vw, 1.5rem);
}

h3 {
  font-size: clamp(1rem, 1.3vw, 1.3rem);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poiret One", sans-serif;
}

p,
span,
a,
button,
em,
b,
i,
label {
  font-size: clamp(1rem, 0.9vw, 1.3rem);
  font-family: "Poiret One", sans-serif;
  font-weight: 500;
}

@font-face {
  font-family: "Inter-Regular";
  src: url("../assets/fonts/Inter-Regular.ttf");
}
@font-face {
  font-family: "Inter-Light";
  src: url("../assets/fonts/Inter-Light.ttf");
}
@font-face {
  font-family: "Inter-Bold";
  src: url("../assets/fonts/Inter-Bold.ttf");
}
@media screen and (min-width: 641px) {
  h2 {
    font-size: clamp(2rem, 1.5vw, 2.5rem);
  }
  h3 {
    font-size: clamp(1rem, 1.3vw, 1.3rem);
  }
}
.button {
  font-weight: 900;
  padding: 5px 10px;
  font-size: clamp(1rem, 0.9vw, 1.3rem);
  text-align: center;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  text-decoration: none;
  max-width: -moz-max-content;
  max-width: max-content;
  border-radius: 20px;
}
.button.button-white-bg {
  background-color: white;
  color: #202a44;
  border: 0.2rem solid #202a44;
  transition: all 0.3s ease;
}
.button.button-white-bg:hover {
  background-color: #202a44;
  color: #232323;
  border: 0.2rem solid #232323;
}
.button.button-primary-color-bg {
  background-color: #202a44;
  color: white;
  border: 0.2rem solid #232323;
  transition: all 0.3s ease;
}
.button.button-primary-color-bg:hover {
  background-color: #232323;
  color: white;
  border: 0.2rem solid #202a44;
}
.button.button-white-bg {
  background-color: #232323;
  color: white;
  border: 0.2rem solid white;
  transition: all 0.3s ease;
}
.button.button-white-bg:hover {
  background-color: white;
  color: #232323;
  border: 0.2rem solid #232323;
}

@media screen and (max-width: 641px) {
  .nav-for-mobile {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem;
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 641px) {
  .nav-for-web {
    margin-bottom: 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 3rem;
  }
  .nav-for-web .right-menu {
    display: flex;
    align-items: center;
  }
  .nav-for-web .right-menu li {
    list-style: none;
    margin-right: 2rem;
  }
  .nav-for-web .right-menu li a {
    padding: 5px 10px;
    background-color: rgba(35, 35, 35, 0.5);
    border-radius: 20px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: clamp(1rem, 0.9vw, 1.3rem);
  }
  .nav-for-web .right-menu li a:hover {
    background-color: white;
    color: #232323;
  }
  .nav-for-web .logo {
    margin-inline: auto;
    height: 50px;
  }
}
.fixed-navbar-personal {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(32, 42, 68, 0.3); /* Adjust the background color as needed */
  z-index: 1000; /* Adjust the z-index to make sure it's above other elements */
  transition: transform 0.3s ease-in-out;
}
.fixed-navbar-personal.fixed {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}

.fixed-navbar-political {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(32, 42, 68, 0.7); /* Adjust the background color as needed */
  z-index: 1000; /* Adjust the z-index to make sure it's above other elements */
  transition: transform 0.3s ease-in-out;
}
.fixed-navbar-political.fixed {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}

#hamburgerMenuHide {
  font-size: clamp(1.5rem, 1vw, 1.8rem);
  position: fixed;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  padding-top: 5rem;
  padding-left: 1rem;
  background-color: white;
  border-left: 5px solid #232323;
  border-bottom: 5px solid #232323;
}
#hamburgerMenuHide .navigation {
  -webkit-tap-highlight-color: transparent;
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#hamburgerMenuHide .navigation ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#hamburgerMenuHide .navigation ul li {
  list-style: none;
}
#hamburgerMenuHide .navigation ul li:hover {
  color: black;
}
#hamburgerMenuHide .navigation ul li a {
  color: #202a44;
  text-decoration: none;
}

#hamburgerMenuHide.shown {
  transform: translateX(0%);
}

body.shown {
  overflow-y: scroll;
}

.hamburger-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 8000;
}
.hamburger-menu .ham {
  height: 100%;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.hamRotate.active {
  transform: rotate(45deg);
}
.hamRotate.active .line {
  stroke: #232323;
}

.hamRotate180.active {
  transform: rotate(180deg);
}
.hamRotate180.active .line {
  stroke: #232323;
}

.line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #fff;
  stroke-width: 5.5;
  stroke-linecap: round;
}

.ham1 .top {
  stroke-dasharray: 40 139;
}

.ham1 .bottom {
  stroke-dasharray: 40 180;
}

.ham1.active .top {
  stroke-dashoffset: -98px;
}

.ham1.active .bottom {
  stroke-dashoffset: -138px;
}

.ham2 .top {
  stroke-dasharray: 40 121;
}

.ham2 .bottom {
  stroke-dasharray: 40 121;
}

.ham2.active .top {
  stroke-dashoffset: -102px;
}

.ham2.active .bottom {
  stroke-dashoffset: -102px;
}

.ham3 .top {
  stroke-dasharray: 40 130;
}

.ham3 .middle {
  stroke-dasharray: 40 140;
}

.ham3 .bottom {
  stroke-dasharray: 40 205;
}

.ham3.active .top {
  stroke-dasharray: 75 130;
  stroke-dashoffset: -63px;
}

.ham3.active .middle {
  stroke-dashoffset: -102px;
}

.ham3.active .bottom {
  stroke-dasharray: 110 205;
  stroke-dashoffset: -86px;
}

.ham4 .top {
  stroke-dasharray: 40 121;
}

.ham4 .bottom {
  stroke-dasharray: 40 121;
}

.ham4.active .top {
  stroke-dashoffset: -68px;
}

.ham4.active .bottom {
  stroke-dashoffset: -68px;
}

.ham5 .top {
  stroke-dasharray: 40 82;
}

.ham5 .bottom {
  stroke-dasharray: 40 82;
}

.ham5.active .top {
  stroke-dasharray: 14 82;
  stroke-dashoffset: -72px;
}

.ham5.active .bottom {
  stroke-dasharray: 14 82;
  stroke-dashoffset: -72px;
}

.ham6 .top {
  stroke-dasharray: 40 172;
}

.ham6 .middle {
  stroke-dasharray: 40 111;
}

.ham6 .bottom {
  stroke-dasharray: 40 172;
}

.ham6.active .top {
  stroke-dashoffset: -132px;
}

.ham6.active .middle {
  stroke-dashoffset: -71px;
}

.ham6.active .bottom {
  stroke-dashoffset: -132px;
}

.ham7 .top {
  stroke-dasharray: 40 82;
}

.ham7 .middle {
  stroke-dasharray: 40 111;
}

.ham7 .bottom {
  stroke-dasharray: 40 161;
}

.ham7.active .top {
  stroke-dasharray: 17 82;
  stroke-dashoffset: -62px;
}

.ham7.active .middle {
  stroke-dashoffset: 23px;
}

.ham7.active .bottom {
  stroke-dashoffset: -83px;
}

.ham8 .top {
  stroke-dasharray: 40 160;
}

.ham8 .middle {
  stroke-dasharray: 40 142;
  transform-origin: 50%;
  transition: transform 400ms;
}

.ham8 .bottom {
  stroke-dasharray: 40 85;
  transform-origin: 50%;
  transition: transform 400ms, stroke-dashoffset 400ms;
}

.ham8.active .top {
  stroke-dashoffset: -64px;
}

.ham8.active .middle {
  transform: rotate(90deg);
}

.ham8.active .bottom {
  stroke-dashoffset: -64px;
}

.lang-links-mobile {
  position: relative;
  padding-right: 2rem;
}
.lang-links-mobile #toggle_lang-mobile {
  display: none;
}
.lang-links-mobile .active-lang {
  cursor: pointer;
  text-transform: uppercase;
  border: 1px solid #202a44;
  background-color: white;
  padding: 16px;
  border-radius: 50px;
  font-size: clamp(1rem, 0.9vw, 1.3rem);
  width: 24px;
  height: 24px;
  color: #202a44;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lang-links-mobile .inactive-lang {
  z-index: 99;
  display: none;
  position: absolute;
  margin-top: 10px;
  padding: 5px;
  text-decoration: none;
  border: 1px solid #202a44;
  background-color: white;
  border-radius: 50%;
  color: black;
  text-transform: uppercase;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 16px;
  font-size: clamp(1rem, 0.9vw, 1.3rem);
}
.lang-links-mobile .inactive-lang:hover {
  color: #202a44;
  background-color: white;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.93, 0.88, 0.1, 0.8);
}
.lang-links-mobile #toggle_lang-mobile:checked ~ .inactive-lang {
  display: flex;
}

.lang-links-web {
  position: relative;
  padding-right: 2rem;
}
.lang-links-web #toggle_lang-web {
  display: none;
}
.lang-links-web .active-lang {
  cursor: pointer;
  text-transform: uppercase;
  border: 1px solid #202a44;
  background-color: white;
  padding: 16px;
  border-radius: 50px;
  font-size: clamp(1rem, 0.9vw, 1.3rem);
  width: 24px;
  height: 24px;
  color: #202a44;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lang-links-web .inactive-lang {
  z-index: 99;
  display: none;
  position: absolute;
  margin-top: 10px;
  padding: 5px;
  text-decoration: none;
  border: 1px solid #202a44;
  background-color: white;
  border-radius: 50%;
  color: black;
  text-transform: uppercase;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 16px;
  font-size: clamp(1rem, 0.9vw, 1.3rem);
}
.lang-links-web .inactive-lang:hover {
  color: #202a44;
  background-color: white;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.93, 0.88, 0.1, 0.8);
}
.lang-links-web #toggle_lang-web:checked ~ .inactive-lang {
  display: flex;
}

.showcase {
  position: relative;
  height: 100vh;
}
.showcase .swiper-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  padding: 0;
}
.showcase .swiper-container .swiper-wrapper .swiper-slide {
  width: 100% !important;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.showcase .swiper-container .swiper-wrapper .swiper-slide video {
  height: 100%;
  width: 100%;
}
.showcase .header {
  position: absolute;
  margin: 0 1rem;
  top: 55%;
  left: 0;
  padding: 20px;
  background-color: rgba(35, 35, 35, 0.3);
  color: white;
  z-index: 9;
  max-width: -moz-max-content;
  max-width: max-content;
  border-radius: 20px;
}
.showcase .header h3 {
  color: white;
}
.showcase .header .headline {
  color: white;
}

@media screen and (min-width: 641px) {
  .showcase {
    height: 100vh;
    align-items: unset;
    justify-content: center;
  }
  .showcase .header {
    margin-left: 3rem;
  }
  .showcase .header .headline {
    max-width: 55ch;
    font-weight: 900;
  }
}
.quote {
  padding: 5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  /* Blockquote main style */
  /* Blockquote header */
  /* Blockquote right double quotes */
  /* Blockquote subheader */
}
.quote .blockquote {
  background-color: #ffffff;
  position: relative;
  align-self: center;
  border: 0.3rem solid #202a44;
  border-radius: 20px;
  padding: 4rem 1.5rem;
}
.quote .blockquote h1 {
  font-size: 2rem;
  font-weight: 200;
  line-height: 1.1;
  margin: 0;
  width: 100%;
  letter-spacing: -1px;
}
.quote .blockqoute h1 strong {
  font-weight: 500;
}
.quote .curly1 {
  position: absolute;
  display: block;
  width: 5rem;
  bottom: -0.5rem;
  left: -0.5rem;
}
.quote .curly2 {
  position: absolute;
  display: block;
  width: 5rem;
  top: -0.5rem;
  right: -0.5rem;
  z-index: 2;
  transform: rotatez(180deg);
}
.quote .blockquote h4 {
  text-align: right;
  position: relative;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
  padding-top: 1.5rem;
  z-index: 1;
}
.quote .blockquote h4:first-letter {
  margin-left: -12px;
}
.quote .pinkish {
  color: #202a44;
}
.quote .text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media screen and (min-width: 641px) {
  .quote {
    padding: 5rem 3rem;
  }
  .quote .image-and-text {
    flex-direction: row;
    justify-content: flex-start;
    gap: 2rem;
  }
  .quote .image-and-text img {
    max-height: 500px;
    width: auto;
    margin-block: 0;
  }
  .quote .image-and-text .text {
    max-width: 40ch;
    display: flex;
    flex-direction: column;
    align-self: center;
    gap: 2rem;
    /* Blockquote subheader */
  }
  .quote .image-and-text .text .blockquote {
    padding: 3rem;
  }
  .quote .image-and-text .text .blockquote h1 {
    font-size: 1.3rem;
    width: calc(100% - 7rem);
  }
  .quote .image-and-text .text .curly1 {
    width: 10rem;
    bottom: -3rem;
    left: -3rem;
  }
  .quote .image-and-text .text .curly2 {
    width: 10rem;
    top: -1rem;
    right: -1rem;
  }
  .quote .image-and-text .text .blockquote h4 {
    text-align: right;
  }
}
.home-articles {
  padding-block: 5rem;
  padding-inline: 1rem;
}
.home-articles .header {
  padding-inline: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.home-articles .header a {
  color: #232323;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.home-articles .cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.home-articles .cards .card {
  border-radius: 20px;
  border: 1px solid #b5bcc9;
  background-image: url("../assets/decorative.webp");
  padding: 0.5rem 1rem;
  width: 100%;
  height: 400px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.home-articles .cards .card-article-type {
  border-radius: 20px;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  border: 1px solid #232323;
  background-color: transparent;
  padding: 5px 10px;
}
.home-articles .cards .card .lower {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.home-articles .cards .card .lower .card-article-title {
  border-radius: 20px;
  padding-block: 5px;
  padding-inline: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  width: -moz-max-content;
  width: max-content;
  color: white;
}
.home-articles .cards .card .lower .card-article-date {
  border-radius: 20px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding-inline: 10px;
  width: -moz-max-content;
  width: max-content;
  align-self: flex-end;
}
.home-articles .cards .card-test {
  border-radius: 20px;
  border: 1px solid #b5bcc9;
  background-image: url("../assets/about.jpg");
  padding: 0.5rem 1rem;
  width: 100%;
  height: 400px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.home-articles .cards .card-test-article-type {
  border-radius: 20px;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  border: 1px solid #232323;
  background-color: transparent;
  padding: 5px 10px;
}
.home-articles .cards .card-test .lower {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.home-articles .cards .card-test .lower .card-article-title {
  border-radius: 20px;
  padding-block: 5px;
  padding-inline: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  width: -moz-max-content;
  width: max-content;
}
.home-articles .cards .card-test .lower .card-article-date {
  border-radius: 20px;
  padding-inline: 10px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  width: -moz-max-content;
  width: max-content;
  align-self: flex-end;
}

@media screen and (min-width: 641px) {
  .home-articles {
    padding-block: 3rem;
    padding-inline: 3rem;
  }
  .home-articles .header {
    padding: 0;
  }
  .home-articles .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .home-articles .cards .card {
    background-image: url("../assets/decorative.webp");
    padding: 0.5rem 1rem;
    width: 100%;
    height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .home-articles .cards .card-article-type {
    width: -moz-max-content;
    width: max-content;
    height: -moz-max-content;
    height: max-content;
    border: 1px solid #232323;
    background-color: transparent;
    padding: 5px 10px;
  }
  .home-articles .cards .card .lower {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .home-articles .cards .card .lower .card-article-title {
    padding-block: 5px;
    background-color: rgba(0, 0, 0, 0.5);
    width: -moz-max-content;
    width: max-content;
    color: white;
  }
  .home-articles .cards .card .lower .card-article-date {
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    width: -moz-max-content;
    width: max-content;
    align-self: flex-end;
  }
}
.error-message {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  color: #ff9494;
}

.show-error {
  opacity: 1;
  max-height: 50px;
}

button[type=submit] {
  transition: all 0.3s ease;
  max-width: 100%;
  width: 100%;
  justify-content: center;
}

.contact .header {
  margin-bottom: 2rem;
}

.contact form {
  background-color: #232323;
  color: #fff;
  border-radius: 20px;
  padding-block: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact .contact-div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.container form .form-row {
  display: flex;
  margin: 2rem 0;
}

form .form-row .input-data {
  width: 100%;
  height: 40px;
  margin: 0 20px;
  position: relative;
}

.input-data label {
  color: #e8eeff;
}

form .form-row .textarea {
  min-height: 100px;
}

.input-data input,
.textarea textarea {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  border-bottom: 2px solid #fff;
  background-color: transparent;
  color: #fff;
}
.input-data input:focus-visible,
.textarea textarea:focus-visible {
  outline: none;
}

.textarea textarea {
  resize: none;
  padding-top: 10px;
}

.input-data .underline {
  position: absolute;
  bottom: 0;
  height: 2px;
  width: 100%;
}

.input-data .underline:before,
.textarea .underline:before {
  position: absolute;
  content: "";
  height: 2px;
  width: 100%;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.input-data input:not(:-moz-placeholder-shown) ~ .underline:before, .textarea textarea:not(:-moz-placeholder-shown) ~ .underline:before {
  transform: scale(1);
}

.input-data input:focus ~ .underline:before,
.input-data input:not(:placeholder-shown) ~ .underline:before,
.textarea textarea:focus ~ .underline:before,
.textarea textarea:not(:placeholder-shown) ~ .underline:before {
  transform: scale(1);
}

.submit-btn .input-data input {
  background: none;
  border: none;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 641px) {
  .contact .contact-div {
    flex-direction: row;
  }
}
.timeline-container {
  padding: 5rem 0;
}
.timeline-container h1 {
  padding-inline: 1rem;
  margin-bottom: 2rem;
}

.timeline {
  list-style-type: none;
  display: flex;
  padding: 0;
  text-align: center;
}

.timeline li {
  transition: all 200ms ease-in;
}

.timestamp {
  width: 100%;
  margin-bottom: 20px;
  padding: 0px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 100;
}

.status {
  padding: 0px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 4px solid #232323;
  position: relative;
  transition: all 200ms ease-in;
}

.status span {
  font-weight: 600;
  padding-top: 20px;
}
.status span:nth-child(2) {
  padding: 0;
  font-weight: normal;
}

.status span:before {
  content: "";
  width: 25px;
  height: 25px;
  background-color: #e8eeff;
  border-radius: 25px;
  border: 4px solid #232323;
  position: absolute;
  top: -15px;
  left: calc(50% - 12px);
  transition: all 200ms ease-in;
}

.swiper-control {
  text-align: right;
}

.swiper-container {
  width: 100%;
  overflow: hidden;
  padding: 0 20px 0 0;
}

.swiper-slide {
  width: 200px;
  text-align: center;
  font-size: 18px;
}

.swiper-slide:nth-child(2n) {
  width: 40%;
}

.swiper-slide:nth-child(3n) {
  width: 20%;
}

@media screen and (min-width: 641px) {
  .timeline-container {
    padding: 5rem 0;
  }
  .timeline-container h1 {
    padding-inline: 3rem;
  }
}
footer {
  text-align: left;
  display: flex;
  flex-direction: column;
  background-color: #232323;
  color: #fff;
  padding-block: 1rem;
  gap: 1.5rem;
}
footer .upper {
  display: flex;
  flex-flow: column;
  gap: 2rem;
}
footer .upper .socials {
  display: flex;
  flex-direction: column;
  margin: 0 1em;
  gap: 1.5rem;
}
footer .upper .socials a {
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}
footer .upper .contacts .fa:before {
  display: inline-block;
  margin-bottom: 1rem;
}
footer .upper .contacts li {
  display: inline-block;
  list-style-type: none;
  margin: 0 1em;
  text-align: center;
}
footer .upper .contacts p {
  text-align: left;
  display: flex;
  flex-direction: column;
}
footer .upper .contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  justify-content: flex-end;
}
footer .lower {
  text-align: right;
  padding-right: 1rem;
}

@media screen and (min-width: 641px) {
  footer .upper {
    flex-direction: row-reverse;
    align-items: flex-end;
    justify-content: space-between;
  }
  footer .upper .socials {
    flex-direction: row;
  }
  footer .upper .contacts {
    flex-direction: row;
  }
}
.social-links {
  position: fixed;
  top: 60%;
  right: 0;
  background-color: #e8eeff;
  padding: 10px 5px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
  border: 1px solid #232323;
  border-right: none;
}
.social-links img {
  width: 100%;
  height: 32px;
}

.article-full {
  padding-bottom: 5rem;
}
.article-full img {
  min-height: 50vh;
}
.article-full .text {
  padding: 0 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.article-full .text .header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.article-full .text .content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.actuality {
  padding-block: 5rem;
  padding-inline: 1rem;
}
.actuality .cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.actuality .cards .card {
  border-radius: 20px;
  border: 1px solid #b5bcc9;
  background-image: url("../assets/decorative.webp");
  padding: 0.5rem 1rem;
  width: 100%;
  height: 400px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.actuality .cards .card-article-type {
  border-radius: 20px;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  border: 1px solid #232323;
  background-color: transparent;
  padding: 5px 10px;
}
.actuality .cards .card .lower {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.actuality .cards .card .lower .card-article-title {
  border-radius: 20px;
  padding-block: 5px;
  padding-inline: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  width: -moz-max-content;
  width: max-content;
  color: white;
}
.actuality .cards .card .lower .card-article-date {
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  padding-inline: 10px;
  width: -moz-max-content;
  width: max-content;
  align-self: flex-end;
}
.actuality .cards .card-test {
  border-radius: 20px;
  border: 1px solid #b5bcc9;
  background-image: url("../assets/about.jpg");
  padding: 0.5rem 1rem;
  width: 100%;
  height: 400px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.actuality .cards .card-test-article-type {
  border-radius: 20px;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  border: 1px solid #232323;
  background-color: transparent;
  padding: 5px 10px;
}
.actuality .cards .card-test .lower {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.actuality .cards .card-test .lower .card-article-title {
  border-radius: 20px;
  padding-block: 5px;
  padding-inline: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  width: -moz-max-content;
  width: max-content;
}
.actuality .cards .card-test .lower .card-article-date {
  border-radius: 20px;
  padding-inline: 10px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  width: -moz-max-content;
  width: max-content;
  align-self: flex-end;
}

@media screen and (min-width: 641px) {
  .actuality {
    padding-block: 5rem;
    padding-inline: 3rem;
  }
  .actuality .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .actuality .cards .card {
    background-image: url("../assets/decorative.webp");
    padding: 0.5rem 1rem;
    width: 100%;
    height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .actuality .cards .card-article-type {
    width: -moz-max-content;
    width: max-content;
    height: -moz-max-content;
    height: max-content;
    border: 1px solid #232323;
    background-color: transparent;
    padding: 5px 10px;
  }
  .actuality .cards .card .lower {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .actuality .cards .card .lower .card-article-title {
    padding-block: 5px;
    background-color: rgba(0, 0, 0, 0.5);
    width: -moz-max-content;
    width: max-content;
    color: white;
  }
  .actuality .cards .card .lower .card-article-date {
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    width: -moz-max-content;
    width: max-content;
    align-self: flex-end;
  }
}
.parlamentary-activity {
  padding: 5rem 0;
}
.parlamentary-activity .swiper-container {
  height: 70vh;
  position: relative;
  overflow: hidden;
  padding: 0;
}
.parlamentary-activity .swiper-container .swiper-slide {
  text-align: center;
  position: relative;
}
.parlamentary-activity .swiper-container .swiper-slide p {
  position: absolute;
  left: 1rem;
  top: 1rem;
  padding: 0.5rem 1rem;
  color: #fff;
  background-color: rgba(35, 35, 35, 0.5);
}
.parlamentary-activity .swiper-container .section-photo {
  max-height: 70vh;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.parlamentary-activity #parlamentary-articles {
  padding: 0 1rem;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.parlamentary-activity #parlamentary-articles .card {
  opacity: 0;
  transition: opacity 0.5s ease;
  background-image: url("../assets/decorative.webp");
  padding: 0.5rem 1rem;
  width: 100%;
  height: 400px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.parlamentary-activity #parlamentary-articles .card.loaded {
  opacity: 1;
}
.parlamentary-activity #parlamentary-articles .card-article-type {
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  border: 1px solid #232323;
  background-color: transparent;
  padding: 5px 10px;
}
.parlamentary-activity #parlamentary-articles .card .lower {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.parlamentary-activity #parlamentary-articles .card .lower .card-article-title {
  padding-block: 5px;
  background-color: rgba(0, 0, 0, 0.5);
  width: -moz-max-content;
  width: max-content;
  color: white;
}
.parlamentary-activity #parlamentary-articles .card .lower .card-article-date {
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  width: -moz-max-content;
  width: max-content;
  align-self: flex-end;
}

@media screen and (min-width: 641px) {
  .parlamentary-activity #parlamentary-articles {
    padding: 5rem;
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
.media {
  padding: 5rem 0;
}
.media .swiper-container {
  height: 70vh;
  position: relative;
  overflow: hidden;
  padding: 0;
}
.media .swiper-container .swiper-slide {
  text-align: center;
  position: relative;
}
.media .swiper-container .swiper-slide p {
  position: absolute;
  left: 1rem;
  top: 1rem;
  padding: 0.5rem 1rem;
  color: #fff;
  background-color: rgba(35, 35, 35, 0.5);
}
.media .swiper-container .section-photo {
  max-height: 70vh;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.media .videos {
  padding: 0 1rem;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.media .videos iframe {
  width: 100%;
  height: 250px;
}

@media screen and (min-width: 641px) {
  .media {
    padding: 5rem 0;
  }
  .media .videos {
    padding: 5rem;
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
.hiddenContent {
  max-height: 0;
  display: inline-block;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.visibleContent {
  max-height: 1000px;
  transition: max-height 0.5s ease-in-out;
}

.biography {
  padding: 5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.biography .image-and-text {
  display: flex;
  flex-direction: column;
}
.biography .image-and-text img {
  max-height: 30rem;
}
.biography a {
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.biography h1 {
  font-size: 200%;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 400;
}
.biography header {
  padding: 150px 0;
}
.biography header p {
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 0;
  font-size: 60px;
  margin-top: -30px;
}
.biography .timeline-and-map {
  padding: 5rem 1rem;
  display: flex;
  flex-direction: column;
}
.biography .timeline-and-map .timeline {
  position: relative;
}
.biography .timeline-and-map .timeline::before {
  content: "";
  background-color: #232323;
  width: 5px;
  height: 95%;
  position: absolute;
  transform: translateX(-50%);
}
.biography .timeline-and-map .timeline-item {
  width: 100%;
  margin-bottom: 70px;
}
.biography .timeline-and-map .timeline-content {
  position: relative;
  width: 100%;
  padding: 10px 30px;
  border-radius: 4px;
  background: #f5f5f5;
  box-shadow: 0 20px 25px -15px rgba(0, 0, 0, 0.3);
}
.biography .timeline-and-map .timeline-img {
  width: 30px;
  height: 30px;
  background-color: #202a44;
  border: 1px solid rgba(32, 42, 68, 0.5);
  border-radius: 50%;
  position: absolute;
  left: 0;
  margin-top: 25px;
  margin-left: -15px;
}
.biography .timeline-and-map .timeline-card {
  padding: 0 !important;
}
.biography .timeline-and-map .timeline-card p {
  padding: 1.5rem 1rem;
}
.biography .timeline-and-map .timeline-card a {
  margin-left: 20px;
}
.biography .timeline-and-map .timeline-item .timeline-img-header {
  background: url("../assets/decorative.webp") center center no-repeat;
  background-size: cover;
}
.biography .timeline-and-map .timeline-img-header {
  height: 200px;
  position: relative;
  margin-bottom: 20px;
}
.biography .timeline-and-map .timeline-img-header h2 {
  position: absolute;
  bottom: 5px;
  left: 20px;
  color: white;
  background-color: rgba(35, 35, 35, 0.5);
  border-radius: 20px;
  padding: 5px 10px;
  max-width: -moz-max-content;
  max-width: max-content;
}
.biography .timeline-and-map img {
  width: 100%;
  height: 100%;
}
.biography .timeline-and-map blockquote {
  margin-top: 30px;
  padding: 0 20px;
}
.biography .timeline-and-map .date {
  display: inline-block;
  padding: 10px;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #202a44;
  color: #fff;
}

@media screen and (min-width: 641px) {
  .biography .image-and-text {
    flex-direction: row;
  }
  .biography .timeline-and-map {
    flex-direction: row;
  }
  .biography .timeline-and-map .timeline::before {
    left: 50px;
  }
  .biography .timeline-and-map .timeline .timeline-img {
    left: 50px;
  }
  .biography .timeline-and-map .timeline .timeline-content {
    max-width: 45%;
    margin-left: 70px;
  }
  .biography .timeline-and-map .timeline .timeline-item:nth-child(odd) .timeline-content::after {
    content: "";
    position: absolute;
    border-style: solid;
    width: 0;
    height: 0;
    top: 30px;
    left: -15px;
    border-width: 10px 15px 10px 0;
    border-color: transparent #f5f5f5 transparent transparent;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  font-size: 16px;
}

body {
  background-image: url("../assets/groovepaper.png");
  margin: 0 auto;
  padding: 0;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

:root {
  --swiper-theme-color: #7d1eb4 !important;
}

@media screen and (min-width: 641px) {
  body {
    width: 100%;
  }
}/*# sourceMappingURL=styles.css.map */