@charset "UTF-8";
/* Fonts */
@font-face {
  font-family: "BPG Mrgvlovani 2010";
  src: url("../fonts/BPGMrgvlovani2010.woff2") format("woff2"), url("../fonts/BPGMrgvlovani2010.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BPG Mrgvlovani Caps 2010";
  src: url("../fonts/BPGMrgvlovaniCaps2010.woff2") format("woff2"), url("../fonts/BPGMrgvlovaniCaps2010.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BPG ExtraSquare Mtavruli";
  src: url("../fonts/BPGExtraSquareMtavruli.woff2") format("woff2"), url("../fonts/BPGExtraSquareMtavruli.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --clr-black: 0 0% 0%;
  --clr-white: 0 0% 100%;
  --clr-theme: 14 100% 60%;
  --clr-gray: 0 0% 44%;
  --ff-regular: "BPG Mrgvlovani 2010", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
    sans-serif;
  --ff-caps: "BPG Mrgvlovani Caps 2010", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
    sans-serif;
  --ff-caps-extra: "BPG ExtraSquare Mtavruli", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
    sans-serif;
  --box-shadow: 0 3px 6px hsl(var(--clr-black) / 0.16);
}

/* ტიპოგრაფია */
/* განლაგება */
.text-justify {
  text-align: justify;
}

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

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

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

/* ფერი */
.text-white {
  color: hsl(var(--clr-white)) !important;
}

.text-black {
  color: hsl(var(--clr-black)) !important;
}

.text-gray {
  color: hsl(var(--clr-gray)) !important;
}

.text-accent {
  color: hsl(var(--clr-theme)) !important;
}

/* დაშორებები */
.mt-2 {
  margin-top: 27px !important;
}

/* Global Styles */
/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "BPG Mrgvlovani 2010", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

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

p {
  font-family: "BPG Mrgvlovani 2010", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 1rem;
}

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

button {
  cursor: pointer;
}

html:focus-within {
  scroll-behavior: smooth;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
*::before,
*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.backlink {
  margin-top: 30px;
}
.backlink a {
  display: flex;
  align-items: center;
  gap: 50px;
  text-decoration: none;
}
.backlink a i {
  display: grid;
  place-content: center;
  width: 50px;
  height: 60px;
  font-size: 24px;
  color: hsl(var(--clr-white));
  background: hsl(var(--clr-theme));
  border-radius: 10px;
}
.backlink a span {
  font-family: var(--ff-caps-extra);
  font-size: 18px;
  color: #343434;
}

.content-wrapper {
  padding: 22px 30px;
  background-color: #fff;
  box-shadow: var(--box-shadow);
  border-radius: 10px;
}

.heading-2 {
  margin-bottom: 16px;
  font-family: var(--ff-caps);
  font-size: 1.25rem;
  font-weight: 400;
  color: hsl(var(--clr-black));
  text-transform: uppercase;
  text-align: center;
}

.index-tabs {
  position: relative;
  width: 100%;
  height: 523px;
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 523px;
}
@media only screen and (max-width: 1365px) {
  .index-tabs {
    margin-bottom: 240px;
  }
}
@media only screen and (max-width: 660px) {
  .index-tabs {
    margin-bottom: 180px;
  }
}
.index-tabs [data-index-tab-content] {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: all 200ms ease-in-out;
}
.index-tabs [data-index-tab-content].shown {
  opacity: 1;
  pointer-events: all;
}
.index-tabs [data-index-tab-content] figure {
  width: 100%;
  height: 100%;
}
.index-tabs [data-index-tab-content] figure img {
  width: 100%;
  height: 100%;
}
.index-tabs [data-index-tab-content] .container div {
  position: absolute;
  bottom: 150px;
  display: flex;
  gap: 16px;
}
@media only screen and (max-width: 1365px) {
  .index-tabs [data-index-tab-content] .container div {
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding-inline: 15px;
    justify-content: center;
  }
}
@media only screen and (max-width: 660px) {
  .index-tabs [data-index-tab-content] .container div {
    flex-direction: column;
  }
}
.index-tabs [data-index-tab-content] .container div h2 {
  padding: 24px;
  max-width: 556px;
  width: 100%;
  font-size: 20px;
  font-weight: 400;
  color: hsl(var(--clr-black));
  background-color: hsl(var(--clr-white)/0.93);
  border-radius: 5px;
}
@media only screen and (max-width: 992px) {
  .index-tabs [data-index-tab-content] .container div h2 {
    max-width: unset;
  }
}
.index-tabs [data-index-tab-content] .container div a {
  flex-shrink: 0;
  display: grid;
  place-content: center;
  width: 130px;
  font-family: var(--ff-caps);
  font-size: 1rem;
  font-weight: 400;
  color: hsl(var(--clr-white));
  text-decoration: none;
  background-color: hsl(var(--clr-theme));
  border-radius: 5px;
  transition: background-color 150ms ease-in-out;
}
.index-tabs [data-index-tab-content] .container div a:hover, .index-tabs [data-index-tab-content] .container div a:focus {
  outline: none;
  background-color: hsl(var(--clr-black));
}
@media only screen and (max-width: 660px) {
  .index-tabs [data-index-tab-content] .container div a {
    width: 100%;
    padding: 10px;
  }
}
.index-tabs__navigation .container {
  position: relative;
}
.index-tabs__navigation ul {
  position: absolute;
  bottom: -22px;
  right: 0;
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 1365px) {
  .index-tabs__navigation ul {
    bottom: -180px;
    right: unset;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media only screen and (max-width: 992px) {
  .index-tabs__navigation ul {
    bottom: -120px;
  }
}
.index-tabs__navigation button {
  padding: 0;
  margin: 0 7px;
  border: none;
  background-color: transparent;
  display: block;
  width: 277px;
  height: 160px;
  border-radius: 5px;
  overflow: hidden;
}
@media only screen and (max-width: 992px) {
  .index-tabs__navigation button {
    width: 160px;
    height: 80px;
  }
}
.index-tabs__navigation button.hidden {
  display: none;
}
.index-tabs__navigation button img {
  width: 100%;
  height: 100%;
}

* {
  outline-color: hsl(var(--clr-theme));
}

.container {
  max-width: 1380px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 20px;
}

.page-wrapper {
  margin-top: 50px;
  margin-bottom: 70px;
}

.contact__banner {
  height: 360px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.contact__banner .container {
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.contact__address {
  padding-block: 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(276px, 1fr));
  justify-content: center;
  gap: 100px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .contact__address {
    gap: 50px;
  }
}
.contact__address__logo {
  margin-bottom: 36px;
  height: 70px;
  display: grid;
  place-content: center;
}
.contact__address h3 {
  margin-bottom: 15px;
  font-family: var(--ff-caps);
  font-size: 20px;
  font-weight: 400;
  color: hsl(var(--clr-black));
  text-transform: uppercase;
}
.contact__address p,
.contact__address a {
  font-size: 1rem;
  color: #707070;
}
.contact__address a {
  text-decoration: none;
}
.contact__social {
  padding: 0;
  margin: 0 auto;
  margin-top: 10px;
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.contact__social a:hover, .contact__social a:active, .contact__social a:focus {
  outline: none;
}
.contact__social a:hover i, .contact__social a:active i, .contact__social a:focus i {
  color: hsl(var(--clr-theme));
}
.contact__social i {
  color: #707070;
  transition: color 150ms ease-in-out;
}
.contact__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media only screen and (max-width: 1200px) {
  .contact__options {
    grid-template-columns: 1fr;
  }
  .contact__options #map {
    height: 400px;
  }
}
.contact__form {
  padding: 28px 30px;
  background-color: #484848;
}
.contact__form form {
  display: flex;
  flex-direction: column;
  color: hsl(var(--clr-white));
  max-width: 690px;
}
@media only screen and (max-width: 1200px) {
  .contact__form form {
    max-width: 540px;
    width: 100%;
    margin: 0 auto;
  }
}
.contact__form h2 {
  font-family: var(--ff-caps);
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
}
.contact__form input,
.contact__form textarea {
  margin-bottom: 15px;
  padding-block: 15px;
  font-family: inherit;
  font-size: 14px;
  color: hsl(var(--clr-white));
  background-color: transparent;
  border: none;
  border-bottom: 1px solid hsl(var(--clr-white));
  transition: all 150ms ease-in-out;
}
.contact__form input::placeholder,
.contact__form textarea::placeholder {
  font-family: inherit;
  color: inherit;
}
.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: hsl(var(--clr-theme));
}
.contact__form button {
  align-self: flex-end;
  width: 176px;
  height: 56px;
  font-family: var(--ff-caps);
  font-size: 14px;
  color: hsl(var(--clr-white));
  text-transform: uppercase;
  background-color: transparent;
  border: 1px solid hsl(var(--clr-white));
  transition: all 150ms ease-in-out;
}
.contact__form button:hover, .contact__form button:focus {
  outline: none;
  background-color: hsl(var(--clr-theme));
  border-color: transparent;
}

/* Header */
.header {
  box-shadow: var(--box-shadow);
}
.header__content {
  display: flex;
  justify-content: space-between;
}
.header__right {
  display: flex;
}
.header__logo {
  display: flex;
  align-items: center;
  padding-block: 14px;
}
.header__logo img {
  height: 50px;
  width: auto;
}
@media only screen and (min-width: 1200px) {
  .header__logo img {
    height: 86px;
  }
}
.header__actions {
  height: 100%;
  display: flex;
  align-items: center;
  transform: translateX(1em);
}
.header button {
  height: 100%;
  display: grid;
  place-content: center;
  background-color: transparent;
  border: none;
  margin: 0;
  color: black;
  transition: all 150ms ease-in-out;
  padding-inline: 1em;
}
.header button:hover {
  color: hsl(var(--clr-white));
  background-color: hsl(var(--clr-theme));
}
.header button span {
  display: block;
}
.header__search {
  position: relative;
  height: 100%;
}
.header__search__box {
  position: absolute;
  right: 0;
  top: 78%;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: all 150ms ease-in-out;
  width: 333px;
  z-index: 100;
}
@media only screen and (max-width: 520px) {
  .header__search__box {
    width: 200px;
    right: unset;
    left: -140px;
    top: 100%;
  }
}
.header__search__box.active {
  opacity: 1;
  transform: scaleY(1);
}
.header__search__box input {
  width: 100%;
  height: 46px;
  padding: 16px 35px;
  background-color: hsl(var(--clr-white));
  border: 1px solid #e9e9e9;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  transition: all 150ms ease-in-out;
}
@media only screen and (max-width: 520px) {
  .header__search__box input {
    padding: 10px 15px;
  }
}
.header__search__box input:focus {
  outline-color: hsl(var(--clr-theme));
}
.header__lang {
  position: relative;
  height: 100%;
}
.header__lang:hover .header__lang__options {
  transform: scaleY(1);
  opacity: 1;
}
.header__lang.active .header__lang__options {
  opacity: 1;
  transform: scaleY(1);
}
.header__lang button {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: hsl(var(--clr-white));
  background-color: hsl(var(--clr-theme));
}
.header__lang button i {
  transform: translateY(-2px);
}
.header__lang__options {
  position: absolute;
  top: 78%;
  margin: 0;
  padding: 0;
  width: 75px;
  list-style-type: none;
  background-color: hsl(var(--clr-white));
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: all 150ms ease-in-out;
}
.header__lang__options a {
  display: block;
  padding-inline: 1em;
  padding-block: 13px;
  font-family: var(--ff-caps);
  font-size: 1rem;
  color: #707070;
  text-decoration: none;
  transition: all 150ms ease-in-out;
}
.header__lang__options a:hover, .header__lang__options a:focus {
  color: hsl(var(--clr-white));
  background-color: hsl(var(--clr-theme));
}

.footer {
  padding-block: 70px;
  box-shadow: inset var(--box-shadow);
}
.footer__wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 134px;
}
@media only screen and (max-width: 1300px) {
  .footer__wrapper {
    gap: 50px;
  }
}
@media only screen and (max-width: 768px) {
  .footer__wrapper {
    gap: 30px;
  }
}
.footer ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.footer h3 {
  margin-bottom: 15px;
  font-family: var(--ff-caps);
  font-size: 18px;
  color: hsl(var(--clr-black));
}
.footer a {
  font-family: var(--ff-regular);
  font-size: 14px;
  color: #707070;
  text-decoration: none;
  transition: color 150ms ease-in-out;
}
.footer a:hover, .footer a:active {
  color: hsl(var(--clr-theme));
}
.footer p {
  font-family: var(--ff-regular);
  font-size: 14px;
  color: #707070;
}
.footer address {
  font-style: normal;
}
.footer address a {
  color: hsl(var(--clr-theme));
  transition: color 150ms ease-in-out;
}
.footer address a:hover, .footer address a:active {
  color: hsl(var(--clr-black));
}

.social-media {
  display: flex;
  gap: 20px;
  list-style-type: none;
  padding: 0;
}
.social-media--right {
  justify-content: flex-end;
}
@media only screen and (max-width: 560px) {
  .social-media--right {
    justify-content: center;
  }
}
.social-media a {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  display: grid;
  place-content: center;
  border: 2px solid hsl(var(--clr-black));
  text-decoration: none;
  transition: all 150ms ease-in-out;
}
.social-media a:hover, .social-media a:active {
  border-color: hsl(var(--clr-theme));
}
.social-media a:hover i, .social-media a:active i {
  color: hsl(var(--clr-theme));
}
.social-media a i {
  color: hsl(var(--clr-black));
  transition: all 150ms ease-in-out;
}

.text-wrapper {
  padding: 22px 30px;
  box-shadow: var(--box-shadow);
  border-radius: 10px;
}
.text-wrapper:not(:last-child) {
  margin-bottom: 30px;
}
.text-wrapper ul,
.text-wrapper ol {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.text-wrapper ul {
  list-style-type: none;
}
.text-wrapper ul li::before {
  content: "•";
  color: hsl(var(--clr-theme));
  font-size: 1.25rem;
}
.text-wrapper h2,
.text-wrapper h3,
.text-wrapper h4 {
  font-family: var(--ff-caps);
  font-weight: 400;
  color: hsl(var(--clr-theme));
}
.text-wrapper p {
  font-size: 1rem;
  color: hsl(var(--clr-black));
  margin-bottom: 30px;
}
.text-wrapper h2 {
  font-size: 1rem;
}

.page-title {
  margin-bottom: 31px;
  font-family: var(--ff-caps);
  font-size: 30px;
  font-weight: 400;
  color: hsl(var(--clr-theme));
  text-transform: uppercase;
}

.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  column-gap: 79px;
  row-gap: 72px;
}

.team-member--w-border {
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}
.team-member--w-border > div {
  padding-bottom: 20px;
  padding-inline: 10px;
}
.team-member__photo {
  width: 100%;
  height: 376px;
  overflow: hidden;
  border-radius: 10px;
}
.team-member__photo img {
  margin-inline: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-member__name {
  margin-top: 28px;
  margin-bottom: 11px;
  font-family: var(--ff-caps);
  font-size: 18px;
  font-weight: 400;
  color: hsl(var(--clr-black));
  text-transform: uppercase;
  text-align: center;
}
.team-member__name a {
  color: inherit;
  text-decoration: none;
  transition: color 150ms ease-in-out;
}
.team-member__name a:hover, .team-member__name a:focus {
  outline: none;
  color: hsl(var(--clr-theme));
}
.team-member__job {
  margin-bottom: 20px;
  font-family: var(--ff-regular);
  font-size: 14px;
  color: #707070;
  text-align: center;
}
.team-member .social-media {
  padding: 0;
  justify-content: center;
}

.team-member-grid {
  display: grid;
  grid-template-columns: 315px auto;
  gap: 30px;
}

.videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media only screen and (max-width: 768px) {
  .videos {
    grid-template-columns: 1fr;
  }
}
.videos--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 768px) {
  .videos--3 {
    grid-template-columns: 1fr;
  }
}

.video__placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 6/4;
  overflow: hidden;
}
.video__placeholder--rounded {
  border-radius: 10px;
}
.video__placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-decoration: none;
  background: transparent;
  border: none;
}
.video__btn:hover i, .video__btn:focus i {
  color: hsl(var(--clr-white));
}
.video__btn i {
  font-size: 5rem;
  color: hsl(var(--clr-theme));
  transition: all 150ms ease-in-out;
}
.video__title {
  margin-top: 30px;
  font-family: var(--ff-caps);
  font-size: 1.25rem;
  font-weight: 400;
  color: hsl(var(--clr-black));
  text-transform: uppercase;
}
@media only screen and (max-width: 768px) {
  .video__title {
    margin-top: 1em;
    font-size: 1rem;
  }
}
.video__title--sm {
  margin-top: 20px;
  font-size: 12px;
}

.video-gallery {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 4fr 6fr;
  column-gap: 30px;
}
@media only screen and (max-width: 1200px) {
  .video-gallery {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
}
.video-gallery__player iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

.video-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
}
.video-list__item {
  padding-block: 20px;
  border-bottom: 1px solid #d1d1d1;
}
.video-list__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background-color: transparent;
  border: none;
}
.video-list__btn:hover span {
  color: hsl(var(--clr-theme));
}
.video-list__btn span {
  font-family: var(--ff-caps);
  font-size: 14px;
  font-weight: 400;
  color: hsl(var(--clr-black));
  text-transform: uppercase;
  text-decoration: none;
  text-align: left;
  transition: color 150ms ease-in-out;
}
.video-list__btn i {
  color: hsl(var(--clr-theme));
}

.nav {
  position: fixed;
  top: 0;
  right: 0;
  min-height: 100vh;
  overflow-y: auto;
  padding-block: 1em;
  background-color: hsl(var(--clr-white));
  box-shadow: var(--box-shadow);
  transform: scaleX(0);
  opacity: 0;
  transform-origin: right;
  transition: all 200ms ease-in-out;
}
@media only screen and (min-width: 1200px) {
  .nav {
    position: relative;
    top: unset;
    bottom: unset;
    left: unset;
    min-height: unset;
    padding-block: unset;
    background-color: unset;
    box-shadow: unset;
    transform: unset;
    overflow-y: unset;
    opacity: 1;
    height: 100%;
  }
}
.nav.active {
  opacity: 1;
  transform: scaleX(1);
  z-index: 10;
}
.nav > ul {
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 1200px) {
  .nav > ul {
    height: 100%;
    display: flex;
    align-items: center;
  }
}
.nav ul {
  list-style-type: none;
}
.nav span {
  margin-block: 0.75em;
}
.nav a {
  padding: 13px 2.5em;
}
@media only screen and (max-width: 992px){
  .nav a {
    padding-block: 6px;
  }
}
.nav span {
  padding-inline: 1.75em;
}
.nav a,
.nav span {
  display: block;
  font-size: 12px;
  color: hsl(var(--clr-black));
  text-decoration: none;
}

.nav a {
  transition: all 150ms ease-in-out;
}
.nav a:hover, .nav a:active, .nav a:focus {
  background-color: hsl(var(--clr-theme));
  color: hsl(var(--clr-white));
}
@media only screen and (min-width: 1200px) {
  .nav a:hover, .nav a:active, .nav a:focus {
    background-color: transparent;
    color: hsl(var(--clr-theme));
  }
}
.nav button {
  position: absolute;
  top: 10px;
  right: 10px;
  margin-left: auto;
  display: grid;
  place-content: center;
  width: 48px;
  height: 48px;
  background-color: transparent;
  border: none;
  transition: all 150ms ease-in-out;
}
.nav button:hover, .nav button:active, .nav button:focus {
  background-color: hsl(var(--clr-theme));
  color: hsl(var(--clr-white));
}

@media only screen and (min-width: 1200px) {
  .open-nav,
.close-nav {
    display: none !important;
  }
}

@media only screen and (min-width: 1200px) {
  .nav > ul {
    gap: 30px;
  }
  .nav > ul > li > a {
    padding-inline: 0;
  }

  .dropdown {
    position: relative;
    z-index: 10;
  }
  .dropdown:hover .dropdown__content, .dropdown.active .dropdown__content {
    opacity: 1;
    transform: scaleY(1);
  }
  .dropdown:focus-within span, .dropdown.active span {
    color: hsl(var(--clr-theme));
  }
  .dropdown span {
    cursor: pointer;
    padding-inline: 0;
  }
  .dropdown span:hover, .dropdown span:active, .dropdown span:focus {
    color: hsl(var(--clr-theme));
  }
  .dropdown__content {
    position: absolute;
    display: flex;
    flex-direction: column;
    background-color: white;
    list-style-type: none;
    margin: 0;
    padding: 0;
    border-radius: 0 0 10px 10px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: all 150ms ease-in-out;
  }
  .dropdown__content a:hover, .dropdown__content a:active, .dropdown__content a:focus {
    outline: none;
    background-color: hsl(var(--clr-theme));
    color: hsl(var(--clr-white));
  }
}
.article__image {
  float: left;
  margin-right: 30px;
  max-width: 730px;
  width: 50%;
}
@media only screen and (max-width: 992px) {
  .article__image {
    float: unset;
    margin-right: unset;
    width: 100%;
    max-width: unset;
  }
}
.article__image img {
  width: 100%;
  height: auto;
}
.article > * + * {
  margin-top: 30px;
}
.article__footer {
  margin-top: 35px;
}
.article__footer ul,
.article__footer ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.article__actions {
  margin-top: 45px;
  display: flex;
  gap: 20px;
}
.article__actions a {
  height: 50px;
  padding-inline: 18px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 10px;
}
.article__actions a span {
  font-family: var(--ff-caps);
  color: hsl(var(--clr-white));
  font-size: 14px;
  text-transform: uppercase;
}
.article__actions a i {
  color: hsl(var(--clr-white));
}
.article__share-fb {
  background-color: #0071c8;
}
.article__backlink {
  background-color: hsl(var(--clr-theme));
}

.date {
  font-family: var(--ff-regular);
  font-size: 1rem;
  color: #707070;
}

.banner {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.banner--home {
  height: 240px;
  display: grid;
  place-content: center;
}
@media only screen and (min-width: 992px) {
  .banner--home {
    height: 420px;
  }
}
@media only screen and (min-width: 1480px) {
  .banner--home {
    height: 600px;
  }
}
.banner--home button {
  display: grid;
  place-content: center;
  /*width: 150px;*/
  /*height: 150px;*/
  height: 90px;
  width: 90px;
  background-color: hsl(var(--clr-theme));
  border: none;
  border-radius: 100%;
  transition: background-color 150ms ease-in-out;
}
.banner--home button:hover,
.banner--home button:focus {
  background-color: #000;
}
.banner--home button i {
  color: hsl(var(--clr-white));
  transform: translateX(5px);
}
.home-card {
  padding: 60px 50px 80px;
  border-radius: 10px;
  border: 1px solid #d4d4d4;
}
@media only screen and (max-width: 520px) {
  .home-card {
    padding: 20px;
  }
}
.home-card > div {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 520px) {
  .home-card > div {
    gap: 15px;
  }
}
.home-card h2 {
  font-family: var(--ff-caps);
  /*font-size: 30px;*/
  font-size: 24px;
  font-weight: 400;
  color: hsl(var(--clr-black));
  text-transform: uppercase;
}
@media only screen and (max-width: 520px) {
  .home-card h2 {
    font-size: 1.25rem;
  }
}
.home-card p {
  color: #707070;
}

@media only screen and (min-width: 1300px) {
  .alternating .blog-card:nth-child(2n) {
    flex-direction: row-reverse;
  }
}
.article-card {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 730px 1fr;
  gap: 30px;
}
@media only screen and (max-width: 1300px) {
  .article-card {
    grid-template-columns: 1fr;
  }
}
.article-card figure {
  height: 100%;
  max-height: 424px;
}
.article-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.article-card__date {
  margin-bottom: 25px;
  font-family: var(--ff-caps);
  font-size: 20px;
  color: #aaaaaa;
  text-transform: uppercase;
}
@media only screen and (max-width: 992px) {
  .article-card__date {
    margin-bottom: 15px;
  }
}
.article-card__title {
  margin-bottom: 13px;
  font-family: var(--ff-caps);
  font-size: 20px;
  font-weight: 400;
  color: hsl(var(--clr-black));
  text-transform: uppercase;
}
.article-card p {
  margin-bottom: 20px;
  font-size: 1rem;
  color: hsl(var(--clr-black));
}
.article-card__btn {
  margin-top: 50px;
  width: 222px;
  height: 60px;
  display: grid;
  place-content: center;
  font-family: var(--ff-caps);
  font-size: 18px;
  color: hsl(var(--clr-white));
  text-decoration: none;
  background-color: hsl(var(--clr-theme));
  border-radius: 10px;
  transition: background-color 150ms ease-in-out;
}
.article-card__btn:hover, .article-card__btn:focus {
  outline: none;
  background-color: hsl(var(--clr-black));
}
@media only screen and (max-width: 992px) {
  .article-card__btn {
    margin-top: 20px;
  }
}

.blog-articles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media only screen and (min-width: 992px) {
  .blog-articles {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 1300px) {
  .blog-articles {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  margin-bottom: 50px;
  display: flex;
  flex-direction: row;
  border: 1px solid #e3e3e3;
}
@media only screen and (max-width: 1300px) {
  .blog-card {
    flex-direction: column;
  }
}
.blog-card > * {
  flex-basis: 50%;
}
@media only screen and (max-width: 1300px) {
  .blog-card > * {
    flex-basis: 100%;
  }
}
.blog-card figure {
  height: 100%;
  max-height: 424px;
}
.blog-card figure img {
  width: 100%;
  height: 100%;
  object-position: center;
}
.blog-card__content {
  padding: 50px;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 768px) {
  .blog-card__content {
    padding: 15px;
  }
}
.blog-card__title {
  margin-bottom: 20px;
  font-family: var(--ff-caps);
  font-size: 20px;
  font-weight: 400;
  color: hsl(var(--clr-black));
  text-transform: uppercase;
}
.blog-card p {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #6e6e6e;
}
.blog-card__btn {
  margin-top: auto;
  width: 200px;
  height: 60px;
  display: grid;
  place-content: center;
  font-family: var(--ff-caps);
  font-size: 18px;
  color: hsl(var(--clr-white));
  text-decoration: none;
  background-color: hsl(var(--clr-theme));
  border-radius: 15px;
  transition: background-color 150ms ease-in-out;
}
.blog-card__btn:hover, .blog-card__btn:focus {
  outline: none;
  background-color: hsl(var(--clr-black));
}

[data-tab-content] {
  display: none;
}
[data-tab-content].active {
  display: block;
}

.deputy {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media only screen and (min-width: 1080px) {
  .deputy {
    grid-template-columns: 1fr 426px;
  }
}
@media only screen and (max-width: 1080px) {
  .deputy__tabs {
    grid-row: 2/3;
  }
}
.deputy__tabs > div {
  height: 100%;
}
.deputy__info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media only screen and (max-width: 1080px) {
  .deputy__info {
    flex-direction: row;
  }
}
@media only screen and (max-width: 880px) {
  .deputy__info {
    flex-direction: column;
  }
}
.deputy__personal-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.deputy__bio {
  padding: 20px 30px;
  display: flex;
  gap: 30px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  text-align: right;
  height: max-content;
}
@media only screen and (max-width: 880px) {
  .deputy__bio {
    justify-content: center;
  }
}
@media only screen and (max-width: 560px) {
  .deputy__bio {
    flex-direction: column-reverse;
    align-items: center;
    gap: 50px;
    text-align: center;
  }
}
.deputy__bio h3 {
  font-family: var(--ff-caps);
  font-size: 10px;
  font-weight: 400;
  color: hsl(var(--clr-black));
  text-transform: uppercase;
}
.deputy__bio p {
  font-size: 10px;
}
.deputy__contact-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
@media only screen and (min-width: 560px) {
  .deputy__contact-links {
    justify-content: flex-end;
  }
}
.deputy__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  text-decoration: none;
}
@media only screen and (min-width: 560px) {
  .deputy__link {
    justify-content: flex-end;
  }
}
.deputy__link:hover, .deputy__link:active, .deputy__link:focus {
  outline: none;
}
.deputy__link:hover span,
.deputy__link:hover i, .deputy__link:active span,
.deputy__link:active i, .deputy__link:focus span,
.deputy__link:focus i {
  color: hsl(var(--clr-theme));
}
.deputy__link span {
  font-size: 10px;
  color: hsl(var(--clr-black));
  transition: color 150ms ease-in-out;
}
.deputy__link i {
  flex-shrink: 0;
  color: #707070;
  transition: color 150ms ease-in-out;
}
.deputy__birthdate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
}
@media only screen and (min-width: 560px) {
  .deputy__birthdate {
    justify-content: flex-end;
  }
}
.deputy__birthdate h3 {
  font-size: 8px;
}
.deputy__birthdate p {
  font-size: 10px;
}
.deputy__birthdate i {
  color: #707070;
}
.deputy__image {
  position: relative;
}
.deputy__photo {
  width: 166px;
  height: 166px;
  overflow: hidden;
  border-radius: 10px;
}
.deputy__photo img {
  width: 100%;
  height: 100%;
}
.deputy__party {
  position: absolute;
  top: 125px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  overflow: hidden;
  border-radius: 100%;
  box-shadow: var(--box-shadow);
}
.deputy__party img {
  width: 100%;
  height: 100%;
}
.deputy__name {
  font-family: var(--ff-caps);
  font-size: 14px;
  font-weight: 400;
  color: hsl(var(--clr-theme));
  text-transform: uppercase;
}
.deputy__nav {
  margin-bottom: 30px;
}
.deputy__nav ul {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.deputy__nav li:first-child button {
  border-radius: 10px 10px 0 0;
}
.deputy__nav li:last-child button {
  border-radius: 0 0 10px 10px;
}
.deputy__nav button {
  width: 100%;
  height: 60px;
  font-family: var(--ff-caps);
  font-size: 1rem;
  color: hsl(var(--clr-black));
  text-transform: uppercase;
  text-align: right;
  padding-right: 24px;
  background-color: hsl(var(--clr-white));
  border: 1px solid #d1d1d1;
  transition: all 150ms ease-in-out;
}
.deputy__nav button:hover, .deputy__nav button:focus {
  color: hsl(var(--clr-white));
  background-color: hsl(var(--clr-theme));
  outline: none;
}
.deputy__nav button.active {
  color: hsl(var(--clr-white));
  background-color: hsl(var(--clr-theme));
  border-color: transparent;
}
.deputy__analitycs, .deputy__backlink {
  margin-bottom: 30px;
}
.deputy__analitycs button,
.deputy__analitycs a, .deputy__backlink button,
.deputy__backlink a {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 24px;
  text-decoration: none;
  background-color: hsl(var(--clr-white));
  border: 1px solid #d1d1d1;
  border-radius: 10px;
  transition: all 150ms ease-in-out;
}
.deputy__analitycs button:hover, .deputy__analitycs button:focus,
.deputy__analitycs a:hover,
.deputy__analitycs a:focus, .deputy__backlink button:hover, .deputy__backlink button:focus,
.deputy__backlink a:hover,
.deputy__backlink a:focus {
  background-color: hsl(var(--clr-theme));
  outline: none;
}
.deputy__analitycs button:hover span,
.deputy__analitycs button:hover i, .deputy__analitycs button:focus span,
.deputy__analitycs button:focus i,
.deputy__analitycs a:hover span,
.deputy__analitycs a:hover i,
.deputy__analitycs a:focus span,
.deputy__analitycs a:focus i, .deputy__backlink button:hover span,
.deputy__backlink button:hover i, .deputy__backlink button:focus span,
.deputy__backlink button:focus i,
.deputy__backlink a:hover span,
.deputy__backlink a:hover i,
.deputy__backlink a:focus span,
.deputy__backlink a:focus i {
  color: hsl(var(--clr-white));
}
.deputy__analitycs button.active,
.deputy__analitycs a.active, .deputy__backlink button.active,
.deputy__backlink a.active {
  background-color: hsl(var(--clr-theme));
  border-color: transparent;
}
.deputy__analitycs button.active span,
.deputy__analitycs button.active i,
.deputy__analitycs a.active span,
.deputy__analitycs a.active i, .deputy__backlink button.active span,
.deputy__backlink button.active i,
.deputy__backlink a.active span,
.deputy__backlink a.active i {
  color: hsl(var(--clr-white));
}
.deputy__analitycs button span,
.deputy__analitycs a span, .deputy__backlink button span,
.deputy__backlink a span {
  font-family: var(--ff-caps);
  font-size: 1rem;
  color: hsl(var(--clr-black));
  text-transform: uppercase;
  transition: all 150ms ease-in-out;
}
.deputy__analitycs button i,
.deputy__analitycs a i, .deputy__backlink button i,
.deputy__backlink a i {
  color: #b4b4b4;
}
.deputy__backlink {
  margin-bottom: 0;
}
.deputy__backlink a {
  border-color: hsl(var(--clr-theme));
}
.deputy__backlink a span {
  color: hsl(var(--clr-theme));
}
.deputy__backlink a i {
  color: hsl(var(--clr-theme));
}
.deputy .social-media {
  margin-top: 0;
}

.general-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  height: 100%;
}
@media only screen and (min-width: 1300px) {
  .general-info {
    grid-template-columns: 1fr 1fr;
  }
}
.general-info__col {
  background-color: hsl(var(--clr-white));
  border: 1px solid #d1d1d1;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}
.general-info h2 {
  padding: 16px 30px;
  font-family: var(--ff-caps);
  font-size: 18px;
  font-weight: 400;
  color: hsl(var(--clr-theme));
  text-transform: uppercase;
  border-bottom: 1px solid #d1d1d1;
}
.general-info__section {
  padding: 20px 30px;
}
.general-info__section:not(:last-child) {
  border-bottom: 1px solid #d1d1d1;
}
.general-info h3 {
  margin-bottom: 18px;
  font-family: var(--ff-caps);
  font-size: 16px;
  font-weight: 400;
  color: hsl(var(--clr-black));
  text-transform: uppercase;
}
.general-info ul {
  padding: 0;
  padding-left: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.general-info li,
.general-info p {
  word-break: break-word;
  font-size: 14px;
  color: hsl(var(--clr-black));
}

.analitycs-block {
  margin-bottom: 30px;
}
.analitycs-block--lg {
  margin-bottom: 50px;
}
.analitycs-block__title {
  margin-bottom: 20px;
  font-family: var(--ff-caps);
  font-size: 1rem;
  font-weight: 400;
  color: hsl(var(--clr-black));
  text-transform: uppercase;
  text-align: center;
}
.analitycs-block__title--lg {
  font-size: 1.25rem;
}
.analitycs-block__btn {
  margin-top: 20px;
  margin-left: auto;
  display: block;
  max-width: 425px;
  width: 100%;
  height: 50px;
  font-family: var(--ff-caps);
  font-size: 1rem;
  color: hsl(var(--clr-white));
  text-transform: uppercase;
  text-align: center;
  background-color: #858585;
  border: none;
  box-shadow: var(--box-shadow);
}

.accordion__trigger {
  margin-bottom: 30px;
}
.accordion__trigger h2 {
  font-family: var(--ff-caps);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  color: hsl(var(--clr-black));
}
.accordion__trigger button {
  padding: 14px 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--ff-caps);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  color: hsl(var(--clr-black));
  background-color: transparent;
  border: none;
  box-shadow: var(--box-shadow);
  border-radius: 10px;
}
.accordion__trigger button i {
  transform: translateY(-5px);
  color: hsl(var(--clr-theme));
  transition: all 150ms ease-in-out;
}
.accordion.active .accordion__content {
  max-height: 20000px;
  transform: scaleY(1);
  opacity: 1;
  margin-bottom: 30px;
}
.accordion.active i {
  transform: rotate(180deg);
}
.accordion__content {
  max-height: 0;
  transform: scaleY(0);
  transform-origin: top;
  opacity: 0;
  transition: all 150ms ease-in-out;
}
.accordion__content .content-wrapper > * {
  word-break: break-word;
}
.accordion__content .content-wrapper > * + * {
  margin-top: 20px;
}
.accordion__content .content-wrapper ul,
.accordion__content .content-wrapper ol {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.divider {
  margin-block: 30px;
  width: 200px;
  height: 1px;
  background-color: hsl(var(--clr-black));
}

.vacancy {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: 3fr 2fr 2fr;
  gap: 30px;
}
.vacancy__title {
  padding: 30px;
  font-family: var(--ff-regular);
  font-size: 1rem;
  font-weight: 400;
  color: hsl(var(--clr-black));
  box-shadow: var(--box-shadow);
  border-radius: 10px;
}
.vacancy__time {
  display: grid;
  place-content: center;
  font-family: var(--ff-caps);
  font-size: 1rem;
  font-weight: 400;
  color: hsl(var(--clr-black));
  text-transform: uppercase;
  background-color: #f3f3f3;
  box-shadow: var(--box-shadow);
  border-radius: 10px;
}
.vacancy__details {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  font-family: var(--ff-caps);
  font-size: 1rem;
  font-weight: 400;
  color: hsl(var(--clr-white));
  text-decoration: none;
  background-color: hsl(var(--clr-theme));
  box-shadow: var(--box-shadow);
  border-radius: 10px;
}
.vacancy__details i {
  color: hsl(var(--clr-white));
  font-size: 30px;
}

.file {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: 5fr 2fr;
  gap: 30px;
}
@media only screen and (max-width: 680px) {
  .file {
    margin-bottom: 50px;
    gap: 20px;
    grid-template-columns: 1fr;
  }
}
.file--w-time {
  grid-template-columns: 3fr 2fr 2fr;
}
@media only screen and (max-width: 1080px) {
  .file--w-time {
    grid-template-columns: 1fr 1fr;
  }
  .file--w-time .file__title {
    grid-column: span 2;
  }
  .file--w-time .file__details,
.file--w-time .file__time {
    padding-block: 10px;
  }
}
@media only screen and (max-width: 580px) {
  .file--w-time {
    grid-template-columns: 1fr;
  }
  .file--w-time .file__title,
.file--w-time .file__details,
.file--w-time .file__time {
    grid-column: 1/2;
  }
}
.file__title {
  padding: 30px;
  font-family: var(--ff-regular);
  font-size: 1rem;
  font-weight: 400;
  color: hsl(var(--clr-black));
  box-shadow: var(--box-shadow);
  border-radius: 10px;
}
.file__time {
  display: grid;
  place-content: center;
  font-family: var(--ff-caps);
  font-size: 1rem;
  font-weight: 400;
  color: hsl(var(--clr-black));
  text-transform: uppercase;
  background-color: #f3f3f3;
  box-shadow: var(--box-shadow);
  border-radius: 10px;
}
.file__details {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  font-family: var(--ff-caps);
  font-size: 1rem;
  font-weight: 400;
  color: hsl(var(--clr-white));
  text-decoration: none;
  background-color: hsl(var(--clr-theme));
  box-shadow: var(--box-shadow);
  border-radius: 10px;
  transition: background-color 150ms ease-in-out;
}
.file__details:hover, .file__details:focus {
  outline: none;
  background-color: hsl(var(--clr-black));
}
@media only screen and (max-width: 680px) {
  .file__details {
    padding-block: 10px;
  }
}
.file__details i {
  color: hsl(var(--clr-white));
  font-size: 30px;
}
@media only screen and (max-width: 992px) {
  .file__details span {
    display: none;
  }
}
@media only screen and (max-width: 680px) {
  .file__details span {
    display: block;
  }
}

.filters {
  margin-block: 38px 57px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.filter {
  padding-inline: 20px;
  height: 56px;
  font-family: var(--ff-caps);
  font-size: 1rem;
  color: hsl(var(--clr-black));
  text-transform: uppercase;
  background-color: hsl(var(--clr-white));
  border: 1px solid hsl(var(--clr-theme));
  border-radius: 10px;
  transition: all 150ms ease-in-out;
}
.filter:hover, .filter:focus, .filter.active {
  color: hsl(var(--clr-white));
  background-color: hsl(var(--clr-theme));
}
.party-filters {
  display: flex;
  align-items: center;
  gap: 100px;
}
@media (max-width: 992px) {
  .party-filters {
    flex-direction: column;
    gap: 30px;
  }
}
.party-filter {
  position: relative;
  max-width: 426px;
  width: 100%;
}
.party-filter:hover > .party-filter__list, .party-filter:focus > .party-filter__list {
  opacity: 1;
  transform: scaleY(1);
}
.party-filter__btn {
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #d1d1d1;
  background-color: hsl(var(--clr-white));
  box-shadow: var(--box-shadow);
  border-radius: 10px;
  max-width: 426px;
  width: 100%;
}
.party-filter__btn i {
  color: hsl(var(--clr-theme));
}
.party-filter__text {
  text-align: left;
}
.party-filter__list {
  position: absolute;
  top: 100%;
  border-radius: 10px;
  max-width: 426px;
  width: 100%;
  border: 1px solid #d1d1d1;
  border-radius: 10px;
  overflow: hidden;
  background-color: hsl(var(--clr-white));
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: all 150ms ease-in-out;
}
.party-filter__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.party-filter__list ul li button {
  width: 100%;
  padding: 30px 20px;
  background-color: hsl(var(--clr-white));
  border: none;
  text-align: left;
  transition: all 150ms ease-in-out;
}
.party-filter__list ul li button:hover, .party-filter__list ul li button:active, .party-filter__list ul li button:focus, .party-filter__list ul li button.active {
  outline: none;
  background-color: hsl(var(--clr-theme));
  color: hsl(var(--clr-white));
}
.party-filter__list ul li:not(:last-child) {
  border-bottom: 1px solid #d1d1d1;
}

.pagination {
  margin-top: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  list-style-type: none;
}
.pagination a {
  display: block;
  font-family: var(--ff-caps);
  font-size: 18px;
  color: hsl(var(--clr-black));
  text-decoration: none;
  transition: all 150ms ease-in-out;
}
.pagination a.active {
  color: hsl(var(--clr-theme));
}
.pagination a:hover, .pagination a:active {
  color: hsl(var(--clr-theme));
}
.pagination i {
  font-size: 22px;
  color: hsl(var(--clr-theme));
  transform: translateY(2px);
}

.parties {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

@media(max-width: 1200px) {
  .parties {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width: 768px) {
  .parties {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.party figure {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
}
.party figure:hover img {
  transform: scale(1.05);
}
.party figure img {
  width: 100%;
  height: 100%;
  transition: transform 150ms ease-in-out;
  object-fit: cover;
}
.party a {
  text-decoration: none;
}
.party__name {
  margin-top: 22px;
  font-family: var(--ff-regular);
  font-size: 18px;
  font-weight: 400;
  color: hsl(var(--clr-black));
}

.party-distribution {
  margin-bottom: 50px;
}

.party-dropdown .container {
  padding: 0;
}
.party-dropdown.active .party-dropdown__content {
  max-height: 10000px;
  transform: scaleY(1);
  opacity: 1;
  margin-bottom: 40px;
  padding-top: 20px;
  padding-bottom: 40px;
}
.party-dropdown.active i {
  transform: rotate(180deg);
  text-align: left;
  color: hsl(var(--clr-theme));
}
.party-dropdown.active .percent,
.party-dropdown.active .deputy-count {
  border: none;
}
.party-dropdown button {
  padding: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 40px 1fr 252px 200px 200px 100px;
  align-items: center;
  background-color: hsl(var(--clr-white));
  border: none;
}
@media only screen and (max-width: 1200px) {
  .party-dropdown button {
    grid-template-columns: 40px 1fr 200px 200px 100px;
  }
}
@media only screen and (max-width: 992px) {
  .party-dropdown button {
    grid-template-columns: 40px 1fr 100px 160px 40px;
  }
}
@media only screen and (max-width: 680px) {
  .party-dropdown button {
    grid-template-columns: 40px 1fr 20px;
  }
}
.party-dropdown button > * {
  margin-block: 5px;
}
.party-dropdown h3 {
  text-align: left;
  padding-left: 30px;
}
.party-dropdown h3 a {
  font-family: var(--ff-regular);
  font-size: 1rem;
  color: hsl(var(--clr-black));
  text-decoration: none;
}
.party-dropdown h3,
.party-dropdown .percent,
.party-dropdown .deputy-count {
  font-size: 1rem;
  font-weight: 400;
  color: hsl(var(--clr-black));
}
.party-dropdown img {
  width: 40px;
  height: 40px;
  border-radius: 100%;
}
.party-dropdown .bar {
  width: 172px;
  height: 30px;
  border: 1px solid #d1d1d1;
  margin-right: 80px;
}
@media only screen and (max-width: 1200px) {
  .party-dropdown .bar {
    display: none;
  }
}
.party-dropdown .bar__filled {
  height: 100%;
}
.party-dropdown i {
  text-align: right;
  color: #707070;
  transition: color 150ms ease-in-out;
}
.party-dropdown__content {
  margin-left: 70px;
  border-bottom: 1px solid #d1d1d1;
  max-height: 0;
  transform: scaleY(0);
  transform-origin: top;
  opacity: 0;
  transition: all 150ms ease-in-out;
}
.party-dropdown__content ol {
  margin: 0;
  padding: 0;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.party-dropdown__content ol li {
  font-size: 1rem;
  color: hsl(var(--clr-black));
}
.party-dropdown .percent,
.party-dropdown .deputy-count {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 150ms ease-in-out;
}
@media only screen and (max-width: 680px) {
  .party-dropdown .percent,
.party-dropdown .deputy-count {
    display: none;
  }
}
.party-dropdown .percent {
  border-left: 1px solid #d1d1d1;
}
.party-dropdown .deputy-count {
  border-left: 1px solid #d1d1d1;
  /* border-right: 1px solid #d1d1d1; */
}

.fraction button {
  grid-template-columns: 40px 500px 270px 1fr 50px;
}
@media only screen and (max-width: 820px) {
  .fraction button {
    grid-template-columns: 40px 1fr 1fr 20px;
  }
}
@media only screen and (max-width: 540px) {
  .fraction button {
    grid-template-columns: 40px 1fr 20px;
  }
}
.fraction__color {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  box-shadow: var(--box-shadow);
  background-color: #ff6231;
}
.fraction .deputy-count {
  /* all: unset; */
}
@media only screen and (max-width: 540px) {
  .fraction .deputy-count {
    display: none;
  }
}
.fraction .line {
  width: 100%;
  height: 1px;
  background-color: #dcdcdc;
}
@media only screen and (max-width: 820px) {
  .fraction .line {
    display: none;
  }
}
.fraction h3 {
  display: flex;
  align-items: center;
  height: 100%;
  /* border-right: 1px solid #d1d1d1; */
}
@media only screen and (max-width: 540px) {
  .fraction h3 {
    border-right: none;
  }
}

.parliament-visual {
  position: relative;
  margin-bottom: 44px;
  margin-top: 50px;
}
.parliament-visual img {
  margin-inline: auto;
}
.parliament-visual svg {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 640px;
}
@media only screen and (max-width: 1365px) {
  .parliament-visual svg {
    display: none;
  }
}
.parliament-visual__stats {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 1365px) {
  .parliament-visual__stats {
    position: relative;
    text-align: center;
  }
}
.parliament-visual__stats p {
  margin-bottom: 10px;
  font-family: var(--ff-caps);
  font-size: 14px;
  font-weight: 400;
  color: hsl(var(--clr-black));
  text-transform: uppercase;
}
.parliament-visual__stats .logo {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
.parliament-visual__stats .logo img {
  width: 127px;
  height: auto;
}
.parliament-visual__info {
  position: absolute;
  padding: 15px 25px;
  display: none;
  flex-direction: column;
  gap: 6px;
  background-color: hsl(var(--clr-white));
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}
.parliament-visual__info.shown {
  display: flex;
}
.parliament-visual__info .name {
  font-family: var(--ff-caps);
  font-size: 12px;
  text-transform: uppercase;
  color: hsl(var(--clr-black));
}
.parliament-visual__info p {
  font-family: var(--ff-caps);
  font-size: 10px;
  text-transform: uppercase;
  color: #b2b2b2;
}

.gender-balance {
  margin-block: 90px;
}
.gender-balance > p {
  margin: 0 auto;
  max-width: 896px;
  width: 100%;
  text-align: center;
}
.gender-balance__distribution {
  margin-top: 80px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media only screen and (max-width: 820px) {
  .gender-balance__distribution {
    margin-top: 40px;
    flex-direction: column;
    gap: 40px;
  }
}
.gender-balance .deputies {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media only screen and (max-width: 820px) {
  .gender-balance .deputies {
    gap: 20px;
  }
}
.gender-balance .deputies p {
  font-size: 1.25rem;
}
@media only screen and (max-width: 820px) {
  .gender-balance .deputies p {
    font-size: 1rem;
  }
}
.gender-balance .deputies i {
  color: hsl(var(--clr-theme));
}

.home-cards {
  padding-block: 50px 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(397px, 1fr));
  gap: 30px;
}
@media only screen and (max-width: 520px) {
  .home-cards {
    grid-template-columns: 1fr;
  }
}

.newest-articles {
  margin-block: 50px;
}

.newest-articles-slider {
  height: 523px;
}

.swiper-slide figure {
  width: 100%;
  height: 100%;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.newest-articles-slider .swiper-slide figure {
  position: absolute;
  inset: 0;
}

.newest-articles-slider .container {
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 80px;
}

.newest-articles-content {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: auto;
}

.newest-articles-controls-wrapper {
  max-width: 800px;
  margin-top: -40px;
  padding-inline: 20px;
  margin-inline: auto;
}

.newest-articles-controls button {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 140px;
  background: transparent;
  border: none;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
}

.newest-articles-controls img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.newest-articles-slider h2 {
  padding: 24px;
  max-width: 70ch;
  width: 100%;
  font-family: var(--ff-regular);
  font-size: 20px;
  font-weight: 400;
  color: hsl(var(--clr-black));
  background-color: hsl(var(--clr-white) / 0.93);
  border-radius: 5px;
}

.newest-articles-slider a {
  padding-block: 8px;
  flex-shrink: 0;
  display: grid;
  place-content: center;
  width: 130px;
  font-family: var(--ff-caps);
  font-size: 1rem;
  font-weight: 400;
  color: hsl(var(--clr-white));
  text-decoration: none;
  background-color: hsl(var(--clr-theme));
  border-radius: 5px;
  transition: background-color 150ms ease-in-out;
}

.newest-articles-slider a:hover,
.newest-articles-slider a:focus {
  background-color: hsl(var(--clr-black));
}

@media only screen and (max-width: 780px) {
  .newest-articles-content {
    flex-direction: column;
  }

  .newest-articles-slider h2 {
    font-size: 16px;
  }

  .newest-articles-slider a {
    width: 100%;
  }
}

.party-search-form {
  position: relative;
}

.search-btn {
  position: absolute;
  right: 10px;
  top: 0;
  height: 100%;
  background-color: transparent;
  border: none;
  color: #333;
}

/*# sourceMappingURL=styles.css.map */
