/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */
a,
a:link,
a:visited {
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
}

a {
  color: inherit;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type="submit"] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type="file"] {
  max-width: 100%;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

input[type="search"] {
  -moz-appearance: none;
}

input[type="search"]::-moz-search-cancel-button {
  display: none;
}

input[type="search"]::-webkit-search-cancel-button {
  display: none;
}

* {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}

.none {
  display: none;
}

.button-show-more {
  display: flex;
  justify-content: end;
  align-items: center;
  margin-right: auto;
  gap: 2px;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #0e7bcd;
}
.button-show-more svg {
  transition: all 0.3s;
}
.button-show-more.active svg {
  transform: rotate(180deg);
}

.button-show-more .btn-hidden {
  display: block;
}

.button-show-more .btn-visible {
  display: none;
}

.button-show-more.active .btn-hidden {
  display: none;
}

.button-show-more.active .btn-visible {
  display: block;
}

/* .show-full-text {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.show-full-text.active {
  max-height: 100%;
  overflow: visible;
  opacity: 1;
  position: static;
} */

.show-full-text {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.3s ease;
}

.show-full-text.active {
  max-height: 5000px; /* должно быть больше чем возможная высота текста */
  opacity: 1;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Noto Sans Hebrew", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}
@media (max-width: 992px) {
  body {
    font-stretch: 75%;
  }
}

main {
  flex: 1;
}

.padding-section {
  padding: 40px 0;
}

.container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 30px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 160px;
}

.title-section {
  font-weight: 600;
  font-size: 50px;
  line-height: 120%;
  text-align: justify;
  color: #032169;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tags__tag {
  white-space: nowrap;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  text-align: justify;
  color: #0e7bcd;
  background: #e6e6e6;
  border-radius: 10px;
  padding: 5px 7px;
}
.tags__tag.active {
  color: #fff;
  background: #bfbfc1;
}

@media (max-width: 992px) {
  .tags {
    flex-wrap: nowrap;
    overflow: auto;
  }
}
.text-WYSIWYG p {
  margin-bottom: 20px;
}
.text-WYSIWYG ul {
  list-style-position: outside;
  margin-bottom: 30px;
}
.text-WYSIWYG ul li {
  padding-right: 12px;
  position: relative;
}
.text-WYSIWYG ul li p {
  margin-bottom: 0;
}
.text-WYSIWYG ul li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 4px;
  height: 4px;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: #000;
}

.text-WYSIWYG p + ul {
  margin-top: -20px;
}

blockquote {
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  text-align: justify;
  color: #000;
  padding: 0 80px;
}

.loading {
  width: 100%;
  display: flex;
  justify-content: center;
}

.loading img {
  width: 20px;
  height: 20px;
}

.no-scroll {
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}

.footer {
  margin-top: 100px;
  font-weight: 400;
  font-size: 14px;
  color: #848484;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
  background: #f8f8f8;
}
.footer__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
}
.footer__right {
  display: flex;
  gap: 50px;
}
.footer__right li a {
  transition: all 0.3s;
}
.footer__right li a:hover {
  color: rgba(132, 132, 132, 0.6901960784);
}

@media (max-width: 768px) {
  .footer {
    margin-top: 0px;
  }
  .footer__right {
    gap: 20px;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
}
.header__top {
  background: #032169;
  font-family: "Noto Sans Hebrew";
  font-weight: 400;
  font-size: 26px;
  text-align: justify;
  color: #fff;
}
.header__top h1 {
  padding: 19px 0;
}
.header__body {
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
  background: #f8f8f8;
}
.header__body .current-menu-item {
  background: #e6e6e6;
  border-bottom: 5px solid #042269;
}
.header__menu ul {
  display: flex;
}
.header__menu ul li a {
  display: block;
  font-family: "Noto Sans Hebrew";
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  color: #032169;
  white-space: nowrap;
  padding: 33px 14px;
  transition: all 0.3s;
  cursor: pointer;
}
.header__menu ul li:hover {
  background: rgba(230, 230, 230, 0.5882352941);
}
.header__body-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__search {
  width: 300px;
  height: 40px;
  position: relative;
}
.header__search input {
  border: 1px solid #032169;
  border-radius: 5px;
  width: 100%;
  height: 100%;
  padding-left: 40px;
  padding-right: 15px;
}
.header__search-btn {
  height: 40px;
  width: 40px;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.header__search-body {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: translateY(100%);
  z-index: 1;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  background: #e6e6e6;
}
.header__search-body li a {
  margin-top: 10px;
  display: block;
  padding: 6px 25px 6px 0px;
  transition: all 0.3s;
  background-color: #e6e6e6;
}
.header__search-body li a:hover {
  background-color: #d7d7d7;
}
.header__search-body li:first-child {
  margin-top: 10px;
}
.header__search-body li:last-child {
  margin-bottom: 10px;
}
.header__burger {
  width: 22px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  display: none;
}
.header__burger--open {
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s;
  opacity: 0;
  transform: translateX(3px);
}
.header__burger--close {
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s;
  opacity: 1;
}
.header__burger.active .header__burger--open {
  opacity: 1;
}
.header__burger.active .header__burger--close {
  opacity: 0;
}

@media (max-width: 1200px) {
  .header__menu ul li a {
    font-size: 18px;
    padding: 33px 10px;
  }
}
@media (max-width: 1050px) {
  .header .header {
    font-stretch: 75%;
  }
  .header .header__top {
    font-size: 18px;
  }
  .header .header__top h1 {
    padding: 13px 0;
  }
  .header .header__body .current-menu-item {
    background: #e6e6e6;
    border-bottom: 5px solid #042269;
  }
  .header .header__body-wrapper {
    position: relative;
  }
  .header .header__menu {
    z-index: -1;
    opacity: 0;
    transition: all 0.3s;
    position: fixed;
    top: 102px;
    left: 0;
    width: 100vw;
    height: max-content;
    background: #e6e6e6;
    display: flex;
    justify-content: center;
    padding: 15px 0;
    transform: translateY(-100%);
  }
  .header .header__menu ul {
    width: max-content;
    flex-direction: column;
    align-items: center;
  }
  .header .header__menu ul li a {
    padding: 15px 0;
    font-size: 20px;
  }
  .header .header__burger {
    display: block;
  }
  .header .header__menu.active {
    z-index: 1;
    opacity: 1;
    transform: translateY(0);
  }
  .header .header__search {
    margin: 11px 0;
    max-width: 230px;
    height: 32px;
  }
  .header .header__search-btn {
    height: 100%;
  }
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  text-align: justify;
  color: #032169;
}
.breadcrumbs li::after {
  display: none;
}

.sidebar-featured-topics {
  width: 300px;
  position: fixed;
}
.sidebar-featured-topics__title {
  font-family: "Noto Sans Hebrew";
  font-weight: 400;
  font-size: 24px;
  text-align: justify;
  color: #032169;
  margin-bottom: 20px;
}
.sidebar-featured-topics ul li {
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  text-align: justify;
  color: #000;
}
.sidebar-featured-topics ul li a {
  display: block;
  background: #e6e6e6;
  border-radius: 10px;
  padding: 15px 30px;
  position: relative;
  transition: all 0.3s;
}
.sidebar-featured-topics ul li a:hover {
  background-color: rgba(230, 230, 230, 0.5137254902);
}

@media (max-width: 992px) {
  .sidebar-featured-topics {
    width: 100%;
    position: static;
  }
}
.sidebar-legal-practice {
  position: fixed;
  width: 300px;
}
.sidebar-legal-practice__btn {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100%);
  border-radius: 0 20px 20px 0;
  background: #032169;
  width: 44px;
  padding: 9px 10px;
  display: none;
}
.sidebar-legal-practice__btn-wrapper {
  display: flex;
  gap: 5px;
  height: 12px;
}
.sidebar-legal-practice__btn-wrapper svg {
  height: 100%;
}
.sidebar-legal-practice__btn--arrow-l {
  display: none;
}
.sidebar-legal-practice__btn--arrow-c {
  transition: all 0.3s;
}
.sidebar-legal-practice__btn--arrow-r {
  display: block;
}
.sidebar-legal-practice__title {
  font-weight: 400;
  font-size: 24px;
  text-align: justify;
  color: #032169;
  margin-bottom: 40px;
  display: none;
}
.sidebar-legal-practice__list {
  position: relative;
  list-style: none;
}
.sidebar-legal-practice__list::after {
  content: "";
  position: absolute;
  top: 0;
  right: 10px;
  transform: translateY(2px);
  width: 1px;
  height: 99%;
  border-radius: 50%;
  background-color: #d9d9d9;
}
.sidebar-legal-practice__list li {
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  text-align: justify;
  color: #000;
  margin-bottom: 1.7vh;
  position: relative;
  padding-right: 35px;
  cursor: pointer;
  position: relative;
}
.sidebar-legal-practice__list li a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.sidebar-legal-practice__list li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-40%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #d9d9d9;
  z-index: 1;
  border: 5px solid #d9d9d9;
  transition: all 0.3s;
}
.sidebar-legal-practice__list li.active::after {
  border: 5px solid #000;
}

@media (max-width: 992px) {
  .sidebar-legal-practice {
    width: auto;
    left: 0;
    top: 103px;
    background-color: #e6e6e6;
    padding: 21px 19px 0px 32px;
    transform: translateX(-100%);
    transition: all 0.3s;
  }
  .sidebar-legal-practice__btn {
    display: block;
  }
  .sidebar-legal-practice__title {
    display: block;
    font-size: 20px;
    margin-bottom: 15px;
  }
  .sidebar-legal-practice__list li {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .sidebar-legal-practice__list li:hover::after {
    border: 5px solid rgba(0, 0, 0, 0.5647058824);
  }
}
.sidebar-legal-practice.active {
  transform: translateX(0);
}

.sidebar-legal-practice.active .sidebar-legal-practice__btn--arrow-l {
  display: block;
}

.sidebar-legal-practice.active .sidebar-legal-practice__btn--arrow-r {
  display: none;
}

.sidebar-legal-practice.active .sidebar-legal-practice__btn--arrow-r {
  display: none;
}

.sidebar-legal-practice.active .sidebar-legal-practice__btn--arrow-c {
  transform: rotate(180deg);
}

.sidebar-judgments {
  margin-top: 20px;
  position: fixed;
  width: 300px;
}
.sidebar-judgments__title {
  font-weight: 400;
  font-size: 24px;
  text-align: justify;
  color: #032169;
  margin-bottom: 20px;
}
.sidebar-judgments__list {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  text-align: justify;
  color: #000;
}
.sidebar-judgments__list li {
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 10px 0;
}
.sidebar-judgments__list li a {
  transition: all 0.3s;
}
.sidebar-judgments__list li:hover a {
  color: rgba(0, 0, 0, 0.5568627451);
}

@media (max-width: 992px) {
  .sidebar-judgments {
    position: static;
    margin-top: 0;
  }
}
.layout {
  margin-top: 200px;
}
.layout__wrapper {
  display: flex;
  align-items: flex-start;
  gap: 33px;
}
.layout__content {
  width: 100%;
}
.layout__breadcrumbs {
  margin-bottom: 30px;
}
.layout__sidebar {
  width: 300px;
  min-height: 100vh;
  flex-shrink: 0;
  position: relative;
}

@media (max-width: 1050px) {
  .layout {
    margin-top: 130px;
  }
}
@media (max-width: 992px) {
  .layout__wrapper {
    gap: 15px;
    flex-direction: column;
  }
  .layout__sidebar {
    min-height: auto;
    margin-bottom: 30px;
  }
}
.articles-post {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 15px;
  display: flex;
}
.articles-post__img {
  border-radius: 10px;
  width: 300px;
  height: 165px;
  object-fit: cover;
  flex-shrink: 0;
  margin-left: 30px;
}
.articles-post__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  text-align: justify;
  color: #000;
  margin-bottom: 5px;
}
.articles-post__subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  text-align: justify;
  color: #032169;
  margin-bottom: 10px;
}
.articles-post__text {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  text-align: justify;
  color: #000;
  margin-bottom: 20px;
}
.articles-post__text p {
  margin-bottom: 10px;
}
.articles-post__text a {
  background-color: red;
}
@media (max-width: 1200px) {
  .articles-post__img {
    margin-left: 10px;
    width: auto;
    max-width: 300px;
  }
}
@media (max-width: 992px) {
  .articles-post {
    flex-direction: column;
  }
  .articles-post__img {
    margin-left: 0px;
    margin-bottom: 30px;
    width: auto;
    max-width: 300px;
  }
}
.background {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.background__body {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  text-align: justify;
  color: #000;
  font-stretch: 88%;
}
.background__body ul {
  list-style-position: outside;
  margin-bottom: 30px;
  padding-right: 6px;
}
.background__body ul li {
  padding-right: 12px;
  position: relative;
}
.background__body ul li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 4px;
  height: 4px;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: #000;
}
.background__body p {
  margin-bottom: 30px;
}
.background__body p + ul {
  margin-top: -30px;
}
.background__title {
  margin-top: -10px;
  margin-bottom: 30px;
}
@media (max-width: 1150px) {
  .background {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .background__body {
    border-bottom: 1px solid #bfbfc1;
    padding-bottom: 30px;
  }
}
.book {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.book__title {
  margin-bottom: 20px;
}
.book__item h5 {
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  text-align: justify;
  color: #032169;
  margin-bottom: 15px;
}
.book__item p {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  text-align: justify;
  color: #000;
  margin-bottom: 15px;
}
.book__item a {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #0e7bcd;
}
.book__btn p {
  color: #0e7bcd;
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .book__img {
    margin-left: 10px;
    width: auto;
    max-width: 300px;
  }
}
@media (max-width: 992px) {
  .book {
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 15px;
    margin-bottom: 15px;
    flex-direction: column;
  }
  .book__img {
    margin-left: 0px;
    margin-bottom: 30px;
    width: auto;
    max-width: 300px;
  }
}
.contacts {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.contacts__title {
  margin-bottom: 20px;
}
.my-form {
  max-width: 480px;
}

.my-form .wpcf7-form-control {
  border: 1px solid #000;
  border-radius: 5px;
}

.my-form .wpcf7-text {
  padding: 13px 15px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: rgba(105, 104, 111, 0.5);
  width: 100%;
}

.my-form .wpcf7-textarea {
  padding: 21px 15px;
  resize: none;
  max-height: 134px;
  outline: none;
  width: 100%;
  direction: rtl;
  text-align: justify;
}

.my-form .wpcf7-radio {
  background-color: rgb(0, 47, 255);
  direction: rtl;
  text-align: justify;
}

.my-form .wpcf7-submit {
  padding: 10px 30px;
  background: #d1cdce;
  direction: rtl;
  text-align: justify;
}

.home {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.home__body {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  text-align: justify;
  color: #000;
  font-stretch: 88%;
}
.home__body ul {
  list-style-position: outside;
  margin-bottom: 30px;
  padding-right: 6px;
}
.home__body ul li {
  padding-right: 12px;
  position: relative;
}
.home__body ul li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 4px;
  height: 4px;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: #000;
}
.home__body p {
  margin-bottom: 30px;
}
.home__body p + ul {
  margin-top: -30px;
}
.home__title {
  margin-top: -10px;
  margin-bottom: 30px;
}
@media (max-width: 1150px) {
  .home {
    flex-direction: column;
  }
}
@media (max-width: 992px) {
  .home__body {
    border-bottom: 1px solid #bfbfc1;
    padding-bottom: 30px;
  }
}
.judgments__tags {
  margin-bottom: 30px;
}
.judgments__sidebar {
  background-color: red;
}

.judgments-post {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 15px;
  display: flex;
}
.judgments-post__title-box {
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  text-align: justify;
  color: #032169;
  margin-bottom: 20px;
  width: 300px;
  flex-shrink: 0;
  margin-left: 30px;
  font-stretch: 80%;
}
.judgments-post__title-date {
  font-weight: 600;
  font-size: 50px;
  line-height: 100%;
  margin-bottom: 10px;
}
.judgments-post__title-bottom {
  font-size: 24px;
}
.judgments-post__text {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  text-align: justify;
  color: #000;
  margin-bottom: 20px;
}
.judgments-post__text p {
  margin-bottom: 10px;
}
.judgments-post__btn {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-right: auto;
  gap: 2px;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #0e7bcd;
}

@media (max-width: 1200px) {
  .judgments-post__title-box {
    margin-left: 10px;
    width: auto;
    max-width: 300px;
  }
}
@media (max-width: 992px) {
  .judgments-post {
    flex-direction: column;
  }
  .judgments-post__title-date {
    font-size: 50px;
  }
}
.landmarks-post {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 15px;
  display: flex;
}
.landmarks-post__title-box {
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  text-align: justify;
  color: #032169;
  margin-bottom: 20px;
  width: 300px;
  flex-shrink: 0;
  margin-left: 30px;
}
.landmarks-post__title-top {
  font-weight: 600;
  font-size: 50px;
  line-height: 100%;
  font-stretch: 80%;
}
.landmarks-post__title-bottom {
  font-size: 24px;
  font-stretch: 80%;
}
.landmarks-post__text {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  text-align: justify;
  color: #000;
  margin-bottom: 20px;
}
.landmarks-post__text p {
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .landmarks-post__title-box {
    margin-left: 10px;
    width: auto;
    max-width: 300px;
  }
  .landmarks-post__title-top {
    font-size: 40px;
  }
}
@media (max-width: 992px) {
  .landmarks-post {
    flex-direction: column;
  }
  .landmarks-post__title-top {
    font-size: 50px;
  }
}
.lectures__tags {
  margin-bottom: 30px;
}
.lectures-post {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 15px;
  display: flex;
}
.lectures-post__img {
  border-radius: 10px;
  width: 300px;
  height: 165px;
  object-fit: cover;
  flex-shrink: 0;
  margin-left: 30px;
}
.lectures-post__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  text-align: justify;
  color: #000;
  margin-bottom: 5px;
}
.lectures-post__subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  text-align: justify;
  color: #032169;
  margin-bottom: 10px;
}
.lectures-post__text {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  text-align: justify;
  color: #000;
  margin-bottom: 20px;
}
.lectures-post__text p {
  margin-bottom: 10px;
}
.lectures-post__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #0e7bcd;
}

.video-modal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
  overflow: auto;
}
.video-modal.active {
  display: flex;
}
.video-modal__wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.video-modal__left-column-title {
  font-weight: 400;
  font-size: 24px;
  text-align: justify;
  color: #fff;
  margin-bottom: 20px;
}
.video-modal__more-videos {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.video-modal__title {
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  text-align: justify;
  color: #fff;
  max-width: 90%;
  margin: 0 auto;
}
.video-modal__content {
  border-radius: 10px;
  width: 100%;
  height: 540px;
}
.video-modal__content iframe {
  width: 100%;
  height: 100%;
}
.video-modal__btn-close {
  display: flex;
  align-items: center;
  gap: 7px;
  border: 2px solid #fff;
  border-radius: 10px;
  padding: 5px 15px;
  height: 34px;
  background: #000;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  color: #fff;
  margin-bottom: 10px;
}

.additional-video {
  position: relative;
  width: 300px;
  height: 170px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 20px;
}
.additional-video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2470588235);
}
.additional-video__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.additional-video__title {
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  text-align: justify;
  color: #fff;
  margin-bottom: 2px;
}
.additional-video__subtitle {
  position: relative;
  z-index: 1;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  text-align: justify;
  color: #fff;
}

@media (max-width: 1200px) {
  .lectures-post__img {
    margin-left: 10px;
    width: auto;
    max-width: 300px;
  }
  .video-modal {
    padding: 30px 0;
  }
  .video-modal.active {
    display: block;
  }
  .video-modal__wrapper {
    margin-top: 90px;
    flex-direction: column;
    gap: 40px;
  }
  .video-modal__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 992px) {
  .lectures-post {
    flex-direction: column;
  }
  .lectures-post__img {
    margin-left: 0px;
    margin-bottom: 30px;
  }
  .video-modal {
    padding: 30px 0;
  }
  .video-modal.active {
    display: block;
  }
  .video-modal__wrapper {
    margin-top: 90px;
    flex-direction: column;
  }
  .video-modal__title {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .video-modal__content {
    height: 480px;
  }
}
@media (max-width: 576px) {
  .video-modal__title {
    font-size: 16px;
  }
  .video-modal__content {
    height: 358px;
  }
}
.legal-practice__title {
  margin-bottom: 20px;
}
.legal-practice-post {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 15px;
}
.legal-practice-post__title {
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  text-align: justify;
  color: #032169;
  margin-bottom: 20px;
  font-stretch: 80%;
}
.legal-practice-post__text {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  text-align: justify;
  color: #000;
  margin-bottom: 20px;
}
.legal-practice-post__text p {
  margin-bottom: 20px;
}
.news-post {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 15px;
  display: flex;
}
.news-post__img {
  border-radius: 10px;
  width: 300px;
  height: 165px;
  object-fit: cover;
  flex-shrink: 0;
  margin-left: 30px;
}
.news-post__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  text-align: justify;
  color: #000;
  margin-bottom: 5px;
}
.news-post__subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  text-align: justify;
  color: #032169;
  margin-bottom: 10px;
}
.news-post__text {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  text-align: justify;
  color: #000;
  margin-bottom: 20px;
}
.news-post__text p {
  margin-bottom: 10px;
}
.news-post__text a {
  background-color: red;
}
@media (max-width: 1200px) {
  .news-post__img {
    margin-left: 10px;
    width: auto;
    max-width: 300px;
  }
}
@media (max-width: 992px) {
  .news-post {
    flex-direction: column;
  }
  .news-post__img {
    margin-left: 0px;
    margin-bottom: 30px;
    width: auto;
    max-width: 300px;
  }
}
.search__result-subtitle {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  text-align: justify;
  color: #000;
  margin-bottom: 20px;
}
.search__result-subtitle span {
  color: #0e7bcd;
}
.search__tags {
  margin-bottom: 40px;
}
.search-result {
  display: flex;
  flex-direction: column;
  padding: 15px 0;
  border-bottom: 1px solid #e6e6e6;
}
.search-result span {
  color: #0e7bcd;
}
.search-result__location {
  margin-bottom: 10px;
}
.search-result__text {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  text-align: right;
  color: #000;
  margin-bottom: 15px;
}
.select-page-article__body {
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}
.select-page-article__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  text-align: justify;
  color: #000;
  margin-bottom: 5px;
}
.select-page-article__subtitle {
  line-height: 130%;
  text-align: justify;
  color: #032169;
  margin-bottom: 10px;
}
.select-page-article__text {
  font-size: 20px;
}

.select-page-article-more-articles__title {
  font-size: 24px;
  text-align: justify;
  color: #032169;
  margin-bottom: 15px;
}
.select-page-article-more-articles__list {
  display: flex;
  gap: 20px;
}
.select-page-article-more-articles__link {
  width: 33.3333333333%;
  height: 174px;
  position: relative;
  display: flex;
  align-items: self-end;
  padding: 20px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}
.select-page-article-more-articles__link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: #000;
  opacity: 0.4; */
  background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
  z-index: 1;
}
.select-page-article-more-articles__link p {
  position: relative;
  z-index: 2;
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  text-align: justify;
  color: #fff;
}
.select-page-article-more-articles__link img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1200px) {
  .select-page-article-more-articles {
    padding-bottom: 30px;
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 30px;
  }
  .select-page-article-more-articles__list {
    flex-direction: column;
  }
  .select-page-article-more-articles__link {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .select-page-article-more-articles__link {
    width: 100%;
  }
}
