/* stylelint-disable max-line-length */
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-sm-s: 550px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
  --breakpoint-xxxs: 375px;
}

.activity {
  padding: 35px 0;
}
@media (min-width: 992px) {
  .activity {
    padding: 85px 0;
  }
}
@media (min-width: 1280px) {
  .activity {
    padding: 175px 0;
  }
}
@media (min-width: 992px) {
  .activity__container {
    display: flex;
    justify-content: space-between;
  }
}
.activity__title_mobile p:first-child {
  margin-bottom: 5px;
  font-weight: 300;
}
@media (min-width: 992px) {
  .activity__title_mobile {
    display: none;
  }
}
.activity__left {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .activity__left {
    margin-bottom: 0;
    width: 43%;
  }
}
@media (min-width: 1440px) {
  .activity__left {
    width: 45.4%;
  }
}
.activity__left ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-between;
  margin: 5px 0 0 0;
  padding: 0;
}
@media (min-width: 1280px) {
  .activity__left ul {
    justify-content: flex-start;
    margin-bottom: -25px;
  }
}
@media (min-width: 1280px) {
  .activity__left ul li:nth-child(odd) {
    margin-right: 25px;
  }
}
.activity__left ul li {
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .activity__left ul li {
    width: 46%;
    position: relative;
    padding-bottom: 29%;
    height: 0;
  }
}
@media (min-width: 992px) {
  .activity__left ul li {
    margin-bottom: 25px;
    padding-bottom: 46%;
  }
}
.activity__left ul li a {
  width: 100%;
  height: 100%;
  padding: 15px 25px;
  border: 1px solid var(--sk-color-primary);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .activity__left ul li a {
    position: absolute;
  }
}
@media (min-width: 992px) {
  .activity__left ul li a {
    font-size: 21px;
    line-height: 25px;
    align-items: unset;
  }
}
.activity__left ul li a p {
  margin-bottom: 0;
  line-height: 25px;
}
.activity__left ul li a picture {
  width: 100%;
  align-self: end;
  text-align: center;
}
.activity__left ul li a img {
  width: 100%;
  height: 100px;
  max-width: 215px;
  opacity: 0.2;
  margin-bottom: 10px;
  transition-duration: 0.3s;
}
.activity__left ul li a:hover, .activity__left ul li a:active, .activity__left ul li a:focus {
  color: var(--sk-color-white);
  text-decoration: none;
}
.activity__left ul li a:hover img, .activity__left ul li a:active img, .activity__left ul li a:focus img {
  opacity: 1;
}
.activity__left ul li a.active {
  color: var(--sk-color-white);
  border: 1px solid var(--sk-color-third);
}
.activity__left ul li a.active img {
  opacity: 1;
}
@media (min-width: 992px) {
  .activity__right {
    width: 50%;
  }
}
@media (min-width: 1440px) {
  .activity__right {
    width: 43.4%;
  }
}
.activity__title {
  display: none;
  margin-bottom: 90px;
}
.activity__title p:first-child {
  font-weight: 300;
  margin-bottom: 5px;
}
@media (min-width: 992px) {
  .activity__title {
    display: block;
  }
}
.activity__tab-description {
  margin-bottom: 40px;
}
.activity__tab-keywords p:first-child {
  margin-bottom: 15px;
}
.activity__tab-keywords p:not(:first-child) {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sk-color-primary);
  margin-bottom: 0;
  margin-right: 8px;
  font-size: 12px;
  line-height: 25px;
}
