/* Add styles */
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
* {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

:root {
  --color_orange: #EC7B5D;
  --color_blue: #0D0E38;
  scroll-behavior: unset;
}

html {
  scroll-behavior: smooth !important;
}

strong, b {
  font-weight: 700;
}

p:not(:last-child) {
  margin-bottom: 15px;
}

h1 {
  font-weight: 500;
  font-size: 72px;
  line-height: 1.2;
  text-align: center;
  color: var(--color_blue);
}

ul,
ol {
  list-style-type: none;
  padding-right: 0;
}
ul:not(:last-child),
ol:not(:last-child) {
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  ul:not(:last-child),
  ol:not(:last-child) {
    margin-bottom: 12px;
  }
}
ul li:not(:last-child),
ol li:not(:last-child) {
  margin-bottom: 12px;
}

a {
  font-family: "Rubik", sans-serif;
  text-decoration: none;
  color: var(--color_blue);
  transition: 0.3s;
}

button {
  font-family: "Rubik", sans-serif;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  transition: 0.3s;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  font-family: "Rubik", sans-serif;
  -webkit-appearance: none;
  outline: none;
}

input,
input::placeholder,
textarea,
textarea::placeholder {
  font-family: "Rubik", sans-serif;
  -webkit-appearance: none;
  outline: none;
}

input[type=text],
input[type=email],
input[type=tel] {
  width: 100%;
  background: #fff;
  border: none;
  font-weight: 500;
  font-size: 17px;
  border-radius: 8px;
  height: 54px;
  line-height: 1;
  color: var(--color_blue);
  padding: 10px 16px;
  text-align: right;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

input[type=text]:-webkit-autofill,
input[type=email]:-webkit-autofill,
input[type=tel]:-webkit-autofill {
  box-shadow: 0 0 0 1000px white inset !important;
  width: 100%;
  background-color: #fff;
  border: none;
  font-weight: 500;
  font-size: 17px;
  border-radius: 8px;
  height: 54px;
  line-height: 1;
  color: var(--color_blue);
  padding: 10px 16px;
  text-align: right;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  background-origin: border-box !important;
  background-clip: padding-box, border-box !important;
}

input[type=text]:-webkit-autofill:hover,
input[type=email]:-webkit-autofill:hover,
input[type=tel]:-webkit-autofill:hover {
  background-image: linear-gradient(white, white), linear-gradient(to right, #EEFF00 0%, #8FB1FB 50%, #0D0E38 100%) !important;
}

input[type=text]:-webkit-autofill:focus,
input[type=email]:-webkit-autofill:focus,
input[type=tel]:-webkit-autofill:focus {
  background-image: linear-gradient(white, white), linear-gradient(to right, #EEFF00 0%, #8FB1FB 50%, #0D0E38 100%) !important;
}

input[type=text]:hover,
input[type=email]:hover,
input[type=tel]:hover {
  background-image: linear-gradient(white, white), linear-gradient(to right, #EEFF00 0%, #8FB1FB 50%, #0D0E38 100%) !important;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus {
  background-image: linear-gradient(white, white), linear-gradient(to right, #0D0E38 0%, #8FB1FB 50%, #EEFF00 100%) !important;
}

input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 1;
  color: rgba(13, 14, 56, 0.3019607843);
}

input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 1;
  color: rgba(13, 14, 56, 0.3019607843);
}

input[type=submit] {
  padding: 21px 28px;
  border: 1px solid var(--color_blue);
  background: var(--color_blue);
  border-radius: 104px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.1;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}
input[type=submit]:hover {
  background: var(--color_yellow);
  border-color: var(--color_yellow);
  color: var(--color_blue);
}

textarea {
  width: 100%;
  background: #fff;
  border: none;
  font-weight: 500;
  font-size: 17px;
  border-radius: 8px;
  height: 134px;
  line-height: 1;
  color: var(--color_blue);
  padding: 16px;
  text-align: right;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  resize: none;
}

textarea:hover {
  background-image: linear-gradient(white, white), linear-gradient(to right, #EEFF00 0%, #8FB1FB 50%, #0D0E38 100%);
}

textarea:focus {
  background-image: linear-gradient(white, white), linear-gradient(to right, #0D0E38 0%, #8FB1FB 50%, #EEFF00 100%);
}

textarea::-moz-placeholder {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 1;
  color: rgba(13, 14, 56, 0.3019607843);
}

textarea::placeholder {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 1;
  color: rgba(13, 14, 56, 0.3019607843);
}

.hide, .hidden {
  display: none;
}

.text_center {
  text-align: center;
}

.flex_col {
  display: flex;
  flex-direction: column;
}

.flex_row {
  display: flex;
  flex-direction: row;
}

.container {
  max-width: 1684px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
.container.max-width {
  max-width: 1890px;
}

body {
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  color: #3D3D3D;
  background: #fff;
}
body .l-canvas {
  overflow-x: hidden;
}

main {
  min-height: 70vh;
}

section {
  scroll-margin-top: 115px;
}

.pointer-events_none {
  pointer-events: none;
}

.swiper-wrapper {
  height: auto;
}

.swiper-scrollbar-drag {
  height: 5px !important;
}

.wpcf7-form {
  direction: rtl;
}
.wpcf7-form .form_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 19px;
}
.wpcf7-form .form_row .wpcf7-form-control-wrap {
  width: 100%;
}
.wpcf7-form .form_row .wpcf7-submit {
  width: 100%;
}
.wpcf7-form .form_row .wpcf7-spinner {
  position: absolute;
}

/* Flexible Content - Common Styles */
.section_title {
  font-family: "Rubik", sans-serif;
  font-weight: 300;
  font-size: 32px;
  line-height: 1.2;
  color: #000000;
  margin: 0 0 60px;
}
@media (max-width: 1400px) {
  .section_title {
    font-size: 28px;
  }
}
.section_title.has-color-line {
  position: relative;
  padding-right: 23px;
}
.section_title.has-color-line::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 65px;
  background-color: var(--title-color, transparent);
}
@media (max-width: 768px) {
  .section_title.has-color-line::before {
    width: 6px;
    height: 46px;
  }
}
@media (max-width: 768px) {
  .section_title {
    font-size: 24px;
    margin: 0 0 40px;
  }
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  transition: all 0.3s ease;
}
header .header_top {
  background: linear-gradient(270deg, #851E1D 0%, #303030 100%);
  max-height: 100px;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}
header .header_top .container {
  transition: padding 0.3s ease;
}
header .header_top .container .header_top__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 6px 0;
}
header .header_top .container .header_top__content .header_top__soc ul {
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 15px;
}
header .header_top .container .header_top__content .header_top__soc ul li {
  margin: 0;
}
header .header_top .container .header_top__content .header_top__soc ul li a {
  opacity: 0.5;
  transition: 0.3s;
}
header .header_top .container .header_top__content .header_top__soc ul li a:hover {
  opacity: 1;
}
header .header_top .container .header_top__content .header_top__soc ul li a:hover img {
  transform: scale(1.2);
}
header .header_top .container .header_top__content .header_top__soc ul li a img {
  max-width: 18px;
  width: auto;
  max-height: 18px;
  height: auto;
  display: block;
  transition: 0.3s;
}
header .header_top .container .header_top__content .header_top__title {
  font-family: "Rubik";
  font-weight: 600;
  font-size: 24px;
  line-height: 1.17;
  color: #fff;
  text-align: center;
}
header .header_top .container .header_top__content .header_top__eng_link {
  font-family: "Rubik";
  font-weight: 400;
  font-size: 16px;
  line-height: 1.15;
  color: #fff;
  transition: 0.3s;
}
header .header_top .container .header_top__content .header_top__eng_link:hover {
  color: var(--color_orange);
}
header .header_main {
  background: #fff;
  position: relative;
}
header .header_main .header_main__mobile_search {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.3s ease;
}
header .header_main .header_main__mobile_search.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
header .header_main .header_main__mobile_search .mobile_search_form {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  position: relative;
}
header .header_main .header_main__mobile_search .mobile_search_form input[type=search] {
  flex: 1;
  height: 44px;
  border: 1px solid #e0e0e0;
  border-radius: 22px;
  padding: 0 50px 0 20px;
  font-family: "Rubik";
  font-weight: 400;
  font-size: 16px;
  background: #f5f5f5;
  transition: 0.3s;
}
header .header_main .header_main__mobile_search .mobile_search_form input[type=search]:focus {
  outline: none;
  border-color: var(--color_orange);
  background: #fff;
}
header .header_main .header_main__mobile_search .mobile_search_form input[type=search]::-moz-placeholder {
  color: #999;
}
header .header_main .header_main__mobile_search .mobile_search_form input[type=search]::placeholder {
  color: #999;
}
header .header_main .header_main__mobile_search .mobile_search_form button[type=submit] {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  transition: 0.3s;
}
header .header_main .header_main__mobile_search .mobile_search_form button[type=submit]:before {
  display: none !important;
}
header .header_main .header_main__mobile_search .mobile_search_form button[type=submit] .icon {
  width: 20px;
  height: 20px;
  fill: #666;
  transition: 0.3s;
}
header .header_main .header_main__mobile_search .mobile_search_form button[type=submit]:hover .icon {
  fill: var(--color_orange);
}
header .header_main .header_main__mobile_search .mobile_search_form .mobile_search_close {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: #666;
  transition: 0.3s;
  flex-shrink: 0;
}
header .header_main .header_main__mobile_search .mobile_search_form .mobile_search_close:hover {
  color: var(--color_orange);
}
header .header_main .header_main__mobile_search .mobile_search_form .mobile_search_close svg {
  width: 20px;
  height: 20px;
}
header .header_main .header_main__mobile_search .mobile_search_results {
  max-height: 400px;
  overflow-y: auto;
  padding: 0 15px 15px;
  display: none;
}
header .header_main .header_main__mobile_search .mobile_search_results.active {
  display: block;
}
header .header_main .header_main__mobile_search .mobile_search_results__inner::-webkit-scrollbar {
  width: 6px;
}
header .header_main .header_main__mobile_search .mobile_search_results__inner::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
header .header_main .header_main__mobile_search .mobile_search_results__inner::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}
header .header_main .header_main__mobile_search .mobile_search_results__inner::-webkit-scrollbar-thumb:hover {
  background: #999;
}
header .header_main .header_main__mobile_search .mobile_search_results .mobile_search_results__item {
  display: flex;
  position: relative;
  padding: 8px 128px 8px 8px;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-bottom: 8px;
  min-height: 86px;
}
header .header_main .header_main__mobile_search .mobile_search_results .mobile_search_results__item:last-child {
  margin-bottom: 0;
}
header .header_main .header_main__mobile_search .mobile_search_results .mobile_search_results__item:hover {
  background: #f8f8f8;
}
header .header_main .header_main__mobile_search .mobile_search_results .mobile_search_results__item:hover .search_item__title {
  color: var(--color_orange);
}
header .header_main .header_main__mobile_search .mobile_search_results .mobile_search_results__item .search_item__image {
  position: absolute;
  right: 8px;
  top: 8px;
  bottom: 8px;
  width: 110px;
  border-radius: 6px;
  overflow: hidden;
}
header .header_main .header_main__mobile_search .mobile_search_results .mobile_search_results__item .search_item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
header .header_main .header_main__mobile_search .mobile_search_results .mobile_search_results__item .search_item__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
header .header_main .header_main__mobile_search .mobile_search_results .mobile_search_results__item .search_item__content .search_item__category {
  display: inline-block;
  padding: 3px 9px;
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  color: #fff;
  background-color: #ec7b5d;
  border-radius: 3px;
  margin-bottom: 5px;
}
header .header_main .header_main__mobile_search .mobile_search_results .mobile_search_results__item .search_item__content .search_item__title {
  font-family: "Assistant", sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.3;
  color: #000;
  margin-bottom: 6px;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
header .header_main .header_main__mobile_search .mobile_search_results .mobile_search_results__item .search_item__content .search_item__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #666;
}
header .header_main .header_main__mobile_search .mobile_search_results .mobile_search_results__item .search_item__content .search_item__meta .search_item__lecturer,
header .header_main .header_main__mobile_search .mobile_search_results .mobile_search_results__item .search_item__content .search_item__meta .search_item__date {
  display: flex;
  align-items: center;
  gap: 4px;
}
header .header_main .header_main__mobile_search .mobile_search_results .mobile_search_results__item .search_item__content .search_item__meta .search_item__lecturer .icon,
header .header_main .header_main__mobile_search .mobile_search_results .mobile_search_results__item .search_item__content .search_item__meta .search_item__date .icon {
  width: 15px;
  height: 15px;
  fill: #666;
}
header .header_main .header_main__mobile_search .mobile_search_results .mobile_search_results__empty,
header .header_main .header_main__mobile_search .mobile_search_results .mobile_search_results__loading {
  padding: 30px 20px;
  text-align: center;
  font-family: "Assistant", sans-serif;
  font-size: 16px;
  color: #666;
}
header .header_main .header_main__mobile_search .mobile_search_results .mobile_search_results__empty {
  color: #999;
}
header .header_main .container .header_main__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
}
header .header_main .container .header_main__content .header_main__mobile_menu_btn {
  display: none;
}
header .header_main .container .header_main__content .header__logo {
  display: block;
  margin-bottom: -35px;
}
header .header_main .container .header_main__content .header__logo img {
  display: block;
  width: auto;
  height: 81px;
}
header .header_main .container .header_main__content .header_search_wrapper {
  max-width: 826px;
  width: 50%;
  position: relative;
}
header .header_main .container .header_main__content .header_search_form {
  position: relative;
}
header .header_main .container .header_main__content .header_search_form input[name=search] {
  font-family: "Assistant";
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  color: #000;
  width: 100%;
  height: 45px;
  background: #F5F5F5;
  border: 1px solid #DDDDDD;
  border-radius: 28px;
  padding: 0 59px 0 20px;
  transition: 0.3s;
}
header .header_main .container .header_main__content .header_search_form input[name=search]::-moz-placeholder {
  font-family: "Assistant";
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  color: #929292;
}
header .header_main .container .header_main__content .header_search_form input[name=search]::placeholder {
  font-family: "Assistant";
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  color: #929292;
}
header .header_main .container .header_main__content .header_search_form input[name=search]:focus {
  outline: none;
  border-color: var(--color_orange);
}
header .header_main .container .header_main__content .header_search_form button {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 18px;
  height: 18px;
  border: none;
  padding: 0;
  color: #000;
  transition: 0.3s;
}
header .header_main .container .header_main__content .header_search_form button:before, header .header_main .container .header_main__content .header_search_form button:after {
  display: none;
}
header .header_main .container .header_main__content .header_search_form button:hover {
  color: var(--color_orange);
}
header .header_main .container .header_main__content .header_search_form button svg {
  display: block;
  width: 100%;
  height: 100%;
}
header .header_main .container .header_main__content .header_search_results {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  max-height: 500px;
}
header .header_main .container .header_main__content .header_search_results.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
header .header_main .container .header_main__content .header_search_results__inner {
  max-height: 400px;
  overflow-y: auto;
  padding: 15px;
}
header .header_main .container .header_main__content .header_search_results__inner::-webkit-scrollbar {
  width: 6px;
}
header .header_main .container .header_main__content .header_search_results__inner::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
header .header_main .container .header_main__content .header_search_results__inner::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}
header .header_main .container .header_main__content .header_search_results__inner::-webkit-scrollbar-thumb:hover {
  background: #999;
}
header .header_main .container .header_main__content .header_search_results__item {
  display: flex;
  position: relative;
  padding: 8px 128px 8px 8px;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-bottom: 8px;
  min-height: 86px;
}
header .header_main .container .header_main__content .header_search_results__item:last-child {
  margin-bottom: 0;
}
header .header_main .container .header_main__content .header_search_results__item:hover {
  background: #f8f8f8;
  transform: translateX(-3px);
}
header .header_main .container .header_main__content .header_search_results__item:hover .search_item__title {
  color: var(--color_orange);
}
header .header_main .container .header_main__content .header_search_results__item .search_item__image {
  position: absolute;
  right: 8px;
  top: 8px;
  bottom: 8px;
  width: 110px;
  border-radius: 6px;
  overflow: hidden;
}
header .header_main .container .header_main__content .header_search_results__item .search_item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
header .header_main .container .header_main__content .header_search_results__item .search_item__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
header .header_main .container .header_main__content .header_search_results__item .search_item__content .search_item__category {
  display: inline-block;
  padding: 3px 9px;
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  color: #fff;
  background-color: #ec7b5d;
  border-radius: 3px;
  margin-bottom: 5px;
}
header .header_main .container .header_main__content .header_search_results__item .search_item__content .search_item__title {
  font-family: "Assistant", sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.3;
  color: #000;
  margin-bottom: 6px;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
header .header_main .container .header_main__content .header_search_results__item .search_item__content .search_item__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #666;
}
header .header_main .container .header_main__content .header_search_results__item .search_item__content .search_item__meta .search_item__lecturer,
header .header_main .container .header_main__content .header_search_results__item .search_item__content .search_item__meta .search_item__date {
  display: flex;
  align-items: center;
  gap: 4px;
}
header .header_main .container .header_main__content .header_search_results__item .search_item__content .search_item__meta .search_item__lecturer .icon,
header .header_main .container .header_main__content .header_search_results__item .search_item__content .search_item__meta .search_item__date .icon {
  width: 15px;
  height: 15px;
  fill: #666;
}
header .header_main .container .header_main__content .header_search_results__empty {
  padding: 30px 20px;
  text-align: center;
  font-family: "Assistant", sans-serif;
  font-size: 16px;
  color: #999;
}
header .header_main .container .header_main__content .header_search_results__loading {
  padding: 30px 20px;
  text-align: center;
  font-family: "Assistant", sans-serif;
  font-size: 16px;
  color: #666;
}
header .header_main .container .header_main__content .header_main__mobile_search_btn {
  display: none;
}
header .header_main .container .header_main__content .header_btn {
  padding: 10px 22px;
  font-family: "Rubik";
  font-weight: 500;
  font-size: 18px;
  line-height: 1.1;
  color: #fff;
  background: var(--color_orange);
  border: 1px solid var(--color_orange);
  text-align: center;
  border-radius: 22px;
}
header .header_main .container .header_main__content .header_btn:hover {
  background: #fff;
  color: var(--color_orange);
}
header .header_foot {
  background: linear-gradient(270deg, #FFFFFF 0%, #F5F5F5 100%);
  padding: 10px 0;
}
header .header_foot .header__nav ul {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  list-style-type: none;
}
header .header_foot .header__nav ul li {
  margin: 0;
}
header .header_foot .header__nav ul li.current-menu-item a {
  color: var(--color_orange);
}
header .header_foot .header__nav ul li a {
  font-family: "Rubik";
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  color: #000;
}
header .header_foot .header__nav ul li a:hover {
  color: var(--color_orange);
}
header .header_foot .header_foot__bottom {
  display: none;
}
header.scrolled .header_top {
  max-height: 0;
  opacity: 0;
  padding: 0;
}
header.scrolled .header_top .container {
  padding-top: 0;
  padding-bottom: 0;
}

@media (max-width: 1700px) {
  header .header_main .container .header_main__content .header__logo {
    margin-bottom: -15px;
  }
  header .header_main .container .header_main__content .header__logo img {
    height: 70px;
  }
}
@media (max-width: 1600px) {
  header .header_top .container .header_top__content .header_top__title {
    font-size: 22px;
  }
  header .header_foot .header__nav ul li a {
    font-size: 18px;
  }
}
@media (max-width: 1440px) {
  header .header_top .container .header_top__content .header_top__title {
    font-size: 20px;
  }
  header .header_main .container .header_main__content .header_search_wrapper {
    margin-left: auto;
  }
  header .header_main .container .header_main__content .header_main__mobile_menu_btn {
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    width: 21px;
    height: 18px;
    transition: 0.3s;
    background: none;
    padding: 0;
    margin: 0 0 0 10px;
    z-index: 999;
  }
  header .header_main .container .header_main__content .header_main__mobile_menu_btn span {
    width: 21px;
    min-width: 21px;
    height: 2px;
    background: #000;
    transition: 0.3s;
    display: block;
  }
  header .header_main .container .header_main__content .header_main__mobile_menu_btn span:nth-child(2) {
    width: 15px;
    min-width: 15px;
  }
  header .header_main .container .header_main__content .header_main__mobile_menu_btn:hover span {
    background: var(--color_orange);
  }
  header .header_main .container .header_main__content .header_main__mobile_menu_btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  header .header_main .container .header_main__content .header_main__mobile_menu_btn.active span:nth-child(2) {
    opacity: 0;
    width: 0;
  }
  header .header_main .container .header_main__content .header_main__mobile_menu_btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  header .header_main .container .header_main__content .header__logo {
    margin-bottom: 0px;
    margin-left: auto;
  }
  header .header_main .container .header_main__content .header__logo img {
    height: 60px;
  }
  header .header_main .container .header_main__content .header_search_form {
    margin: 0 0 0 auto;
  }
  header .header_foot {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: linear-gradient(270deg, #FFFFFF 0%, #F5F5F5 100%);
    z-index: 1001;
    overflow-y: auto;
    transition: right 0.3s ease, top 0.3s ease, height 0.3s ease;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
  }
  header .header_foot.active {
    right: 0;
  }
  header .header_foot .header__nav {
    flex: 1;
  }
  header .header_foot .header__nav ul {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    margin: 0;
    padding: 0 20px;
  }
  header .header_foot .header__nav ul li {
    width: 100%;
  }
  header .header_foot .header__nav ul li:not(:last-child) {
    border-bottom: 1px solid #e0e0e0;
  }
  header .header_foot .header__nav ul li a {
    display: block;
    padding: 15px 10px;
    font-size: 18px;
  }
  header .header_foot .header_foot__bottom {
    padding: 20px;
    border-top: 1px solid #e0e0e0;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  header .header_foot .header_foot__bottom .header_foot__soc ul {
    list-style-type: none;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
    padding: 0;
  }
  header .header_foot .header_foot__bottom .header_foot__soc ul li {
    margin: 0;
  }
  header .header_foot .header_foot__bottom .header_foot__soc ul li a {
    opacity: 0.5;
    transition: 0.3s;
  }
  header .header_foot .header_foot__bottom .header_foot__soc ul li a:hover {
    opacity: 1;
  }
  header .header_foot .header_foot__bottom .header_foot__soc ul li a:hover img {
    transform: scale(1.2);
  }
  header .header_foot .header_foot__bottom .header_foot__soc ul li a img {
    max-width: 18px;
    width: auto;
    max-height: 18px;
    height: auto;
    display: block;
    transition: 0.3s;
    filter: brightness(0);
  }
  header .header_foot .header_foot__bottom .header_foot__eng_link {
    font-family: "Rubik";
    font-weight: 400;
    font-size: 16px;
    line-height: 1.15;
    color: #000;
    transition: 0.3s;
    display: inline-block;
  }
  header .header_foot .header_foot__bottom .header_foot__eng_link:hover {
    color: var(--color_orange);
  }
  body.menu-open::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 1;
    transition: opacity 0.3s ease;
  }
  body.menu-open {
    overflow: hidden;
  }
}
@media (max-width: 1024px) {
  header .header_top .container .header_top__content .header_top__title {
    font-size: 16px;
  }
  header .header_main .container .header_main__content {
    padding: 10px 0;
  }
  header .header_main .container .header_main__content .header_search_wrapper {
    display: none;
  }
  header .header_main .container .header_main__content .header__logo img {
    height: 54px;
  }
  header .header_main .container .header_main__content .header_btn {
    font-size: 16px;
    padding: 8px 15px;
  }
  header .header_main .container .header_main__content .header_main__mobile_search_btn {
    display: block;
    background: none;
    margin: 0;
    padding: 0;
    transition: 0.3s;
    color: #000;
  }
  header .header_main .container .header_main__content .header_main__mobile_search_btn:hover {
    color: var(--color_orange);
  }
  header .header_main .container .header_main__content .header_main__mobile_search_btn svg {
    display: block;
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 768px) {
  header .header_top .container .header_top__content {
    justify-content: center;
  }
  header .header_top .container .header_top__content .header_top__title {
    font-size: 14px;
  }
  header .header_top .container .header_top__content .header_top__eng_link {
    display: none;
  }
  header .header_top .container .header_top__content .header_top__soc {
    display: none;
  }
  header .header_main .container .header_main__content .header__logo img {
    height: 46px;
  }
  header .header_main .container .header_main__content .header_btn {
    font-size: 14px;
    padding: 8px 10px;
  }
}
@media (max-width: 424px) {
  header .header_main .container .header_main__content .header__logo img {
    height: 42px;
  }
  header .header_main .container .header_main__content .header_main__mobile_menu_btn {
    margin: 0;
  }
}
/* Footer (without builder) */
.footer_main {
  background: transparent linear-gradient(256deg, rgba(245, 246, 250, 0.5882352941) 0%, #E7E9EF 100%);
  padding: 100px 0;
}
.footer_main .container {
  text-align: right;
}
.footer_main .footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1.1fr; /* brand + 4 columns */
  gap: 32px 24px;
}
@media (max-width: 1200px) {
  .footer_main .footer-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (max-width: 960px) {
  .footer_main .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.footer_main .footer-col {
  color: #2a2f33;
}
@media (max-width: 1200px) {
  .footer_main .footer-brand {
    grid-column: 1/-1;
    max-width: 300px;
    order: -1;
  }
}
.footer_main .footer-brand .footer-logo {
  width: 100%;
  display: inline-block;
  margin-bottom: 40px;
}
.footer_main .footer-brand .footer-logo img {
  width: 100%;
  display: block;
  height: auto;
}
.footer_main .footer-brand .footer-badges {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.footer_main .footer-brand .footer-badges a {
  display: block;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.footer_main .footer-brand .footer-badges a:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}
.footer_main .footer-brand .footer-badges img {
  width: 100%;
  height: auto;
  display: block;
}
.footer_main .footer-title {
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  color: #450E11;
  margin-bottom: 17px;
}
.footer_main .footer-title::after {
  content: "";
  display: block;
  width: 80%;
  max-width: 118px;
  height: 3px;
  background: var(--color_orange);
  margin-top: 8px;
}
.footer_main .footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer_main .footer-links li {
  margin: 0;
}
.footer_main .footer-links a {
  font-family: "Rubik";
  font-weight: 300;
  font-size: 16px;
  line-height: 1.25;
  color: #5E5E5E;
}
.footer_main .footer-links a:hover, .footer_main .footer-links a:focus {
  color: var(--color_orange);
}
.footer_main .footer-contacts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer_main .footer-contacts li {
  margin: 0;
}
.footer_main .footer-contacts .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer_main .footer-contacts .contact-item .contact-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer_main .footer-contacts .contact-item .contact-icon img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer_main .footer-contacts .contact-item a,
.footer_main .footer-contacts .contact-item span {
  font-family: "Rubik";
  font-weight: 300;
  font-size: 16px;
  line-height: 1.2;
  color: #5E5E5E;
  text-decoration: none;
}
.footer_main .footer-contacts .contact-item a:hover,
.footer_main .footer-contacts .contact-item a:focus {
  color: var(--color_orange);
}
@media (max-width: 1600px) {
  .footer_main {
    padding: 80px 0;
  }
  .footer_main .footer-title {
    font-size: 22px;
  }
  .footer_main .footer-links a {
    font-size: 15px;
  }
  .footer_main .footer-contacts .contact-item a, .footer_main .footer-contacts .contact-item span {
    font-size: 15px;
  }
}
@media (max-width: 1440px) {
  .footer_main {
    padding: 70px 0;
  }
  .footer_main .footer-grid {
    gap: 28px 20px;
  }
  .footer_main .footer-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .footer_main .footer-links a {
    font-size: 14px;
  }
  .footer_main .footer-contacts .contact-item a, .footer_main .footer-contacts .contact-item span {
    font-size: 14px;
  }
  .footer_main .footer-brand .footer-logo {
    margin-bottom: 30px;
  }
}
@media (max-width: 1024px) {
  .footer_main {
    padding: 50px 0;
  }
  .footer_main .footer-grid {
    gap: 24px 18px;
  }
  .footer_main .footer-links {
    gap: 10px;
  }
  .footer_main .footer-contacts {
    gap: 10px;
  }
  .footer_main .footer-contacts .contact-item {
    gap: 8px;
  }
  .footer_main .footer-contacts .contact-item .contact-icon {
    width: 18px;
    height: 18px;
  }
  .footer_main .footer-brand .footer-logo {
    margin-bottom: 25px;
  }
  .footer_main .footer-brand .footer-badges {
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .footer_main {
    padding: 30px 0;
  }
  .footer_main .footer-grid {
    gap: 30px 16px;
  }
  .footer_main .footer-title::after {
    max-width: 90px;
    height: 2px;
    margin-top: 6px;
  }
  .footer_main .footer-links {
    gap: 6px;
  }
  .footer_main .footer-contacts {
    gap: 8px;
  }
  .footer_main .footer-contacts .contact-item {
    gap: 6px;
  }
  .footer_main .footer-contacts .contact-item .contact-icon {
    width: 16px;
    height: 16px;
  }
  .footer_main .footer-brand {
    max-width: 100% !important;
    margin: 0 auto;
    text-align: center;
  }
  .footer_main .footer-brand .footer-logo {
    margin-bottom: 20px;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer_main .footer-brand .footer-badges {
    gap: 12px;
    max-width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 424px) {
  .footer_main {
    padding: 40px 0;
  }
  .footer_main .footer-grid {
    gap: 25px 12px;
  }
  .footer_main .footer-title {
    margin-bottom: 8px;
  }
  .footer_main .footer-title::after {
    max-width: 80px;
  }
  .footer_main .footer-links {
    gap: 2px;
  }
  .footer_main .footer-contacts {
    gap: 6px;
  }
  .footer_main .footer-contacts .contact-item {
    gap: 5px;
  }
  .footer_main .footer-contacts .contact-item .contact-icon {
    width: 14px;
    height: 14px;
  }
  .footer_main .footer-brand .footer-logo {
    margin-bottom: 15px;
  }
  .footer_main .footer-brand .footer-badges {
    gap: 8px;
    max-width: 100%;
  }
}

.footer_bot {
  background: #303030;
  padding: 10px 0;
}
.footer_bot .footer-bottom-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}
@media (max-width: 760px) {
  .footer_bot .footer-bottom-inner {
    grid-template-columns: 1fr;
    text-align: center;
    row-gap: 8px;
  }
}
.footer_bot .footer-social {
  display: flex;
  align-items: center;
  gap: 23px;
}
.footer_bot .footer-social .social:hover img {
  transform: scale(1.2);
}
.footer_bot .footer-social .social img {
  max-width: 18px;
  width: auto;
  max-height: 18px;
  height: auto;
  display: block;
  transition: 0.3s;
}
.footer_bot .footer-copy {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.25;
  color: #fff;
  text-align: center;
}
.footer_bot .footer-madeby {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.25;
  color: #AEAEAE;
  text-align: center;
}
.footer_bot .footer-madeby a {
  color: #AEAEAE;
}
.footer_bot .footer-madeby a:hover {
  color: #fff;
}
@media (max-width: 1440px) {
  .footer_bot {
    padding: 8px 0;
  }
  .footer_bot .footer-bottom-inner {
    gap: 14px;
  }
  .footer_bot .footer-social {
    gap: 20px;
  }
  .footer_bot .footer-social .social img {
    max-width: 16px;
    max-height: 16px;
  }
  .footer_bot .footer-copy,
  .footer_bot .footer-madeby {
    font-size: 11px;
  }
}
@media (max-width: 1024px) {
  .footer_bot {
    padding: 8px 0;
  }
  .footer_bot .footer-bottom-inner {
    gap: 12px;
  }
  .footer_bot .footer-social {
    gap: 18px;
  }
  .footer_bot .footer-social .social img {
    max-width: 15px;
    max-height: 15px;
  }
  .footer_bot .footer-copy,
  .footer_bot .footer-madeby {
    font-size: 11px;
  }
}
@media (max-width: 768px) {
  .footer_bot {
    padding: 12px 0;
  }
  .footer_bot .footer-bottom-inner {
    justify-content: center;
  }
  .footer_bot .footer-social {
    gap: 20px;
    justify-content: center;
    order: 1;
  }
  .footer_bot .footer-social .social img {
    max-width: 20px;
    max-height: 20px;
  }
  .footer_bot .footer-copy {
    order: 2;
    font-size: 14px;
  }
  .footer_bot .footer-madeby {
    order: 3;
    font-size: 14px;
  }
}
@media (max-width: 424px) {
  .footer_bot {
    padding: 10px 0;
  }
  .footer_bot .footer-bottom-inner {
    gap: 14px;
  }
  .footer_bot .footer-social {
    gap: 18px;
  }
  .footer_bot .footer-social .social img {
    max-width: 18px;
    max-height: 18px;
  }
  .footer_bot .footer-copy,
  .footer_bot .footer-madeby {
    font-size: 14px;
  }
}

.single_podcasts_header {
  padding: 50px 0 178px;
  position: relative;
}
.single_podcasts_header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(79deg, rgba(224, 226, 231, 0.55) 0%, rgba(245, 246, 250, 0.85) 100%);
  z-index: 1;
}
.single_podcasts_header .container {
  position: relative;
  z-index: 2;
}
.single_podcasts_header .single_podcasts_header__content {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.single_podcasts_header .single_podcasts_header__content .single_podcasts_header__icon {
  width: 81px;
  min-width: 81px;
  height: 81px;
  border-radius: 19px;
  background: #fff;
  padding: 7px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  display: flex;
  align-items: center;
  justify-content: center;
}
.single_podcasts_header .single_podcasts_header__content .single_podcasts_header__icon img {
  max-width: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.single_podcasts_header .single_podcasts_header__content .single_podcasts_header__body {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.single_podcasts_header .single_podcasts_header__content .single_podcasts_header__body .single_podcasts_header__body_title {
  font-weight: 700;
  font-size: 38px;
  line-height: 1.2;
  color: #000000;
  margin: 0;
  text-align: right;
  min-height: 92px;
}
.single_podcasts_header .single_podcasts_header__content .single_podcasts_header__body .single_podcasts_header__body_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.single_podcasts_header .single_podcasts_header__content .single_podcasts_header__body .single_podcasts_header__body_row .single_podcasts_header__body_row_info {
  display: flex;
  align-items: center;
  gap: 35px;
}
.single_podcasts_header .single_podcasts_header__content .single_podcasts_header__body .single_podcasts_header__body_row .single_podcasts_header__body_row_info .single_podcasts_header__body_row_info_author {
  padding: 6px 20px;
  border: 1px solid var(--color_orange);
  border-radius: 22px;
  background: #fff;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.1;
  color: #000;
  transition: 0.3s;
}
.single_podcasts_header .single_podcasts_header__content .single_podcasts_header__body .single_podcasts_header__body_row .single_podcasts_header__body_row_info .single_podcasts_header__body_row_info_author:hover {
  color: #fff;
  background: var(--color_orange);
}
.single_podcasts_header .single_podcasts_header__content .single_podcasts_header__body .single_podcasts_header__body_row .single_podcasts_header__body_row_info .single_podcasts_header__body_row_info_date {
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.1;
  color: #000000;
}
.single_podcasts_header .single_podcasts_header__content .single_podcasts_header__body .single_podcasts_header__body_row .single_podcasts_header__body_row_info .single_podcasts_header__body_row_info_date svg {
  width: 20px;
  min-width: 20px;
  height: 20px;
  display: block;
  color: #707070;
}
.single_podcasts_header .single_podcasts_header__content .single_podcasts_header__body .single_podcasts_header__body_row .single_podcasts_header__body_row_breadcrumbs .breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0;
  direction: rtl;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.1;
}
.single_podcasts_header .single_podcasts_header__content .single_podcasts_header__body .single_podcasts_header__body_row .single_podcasts_header__body_row_breadcrumbs .breadcrumbs .breadcrumbs__separator {
  font-weight: 300;
  color: #676767;
  margin: 0 8px;
}
.single_podcasts_header .single_podcasts_header__content .single_podcasts_header__body .single_podcasts_header__body_row .single_podcasts_header__body_row_breadcrumbs .breadcrumbs .breadcrumbs__link {
  color: #676767;
  text-decoration: none;
  transition: 0.3s;
}
.single_podcasts_header .single_podcasts_header__content .single_podcasts_header__body .single_podcasts_header__body_row .single_podcasts_header__body_row_breadcrumbs .breadcrumbs .breadcrumbs__link:first-child {
  color: var(--color_orange);
}
.single_podcasts_header .single_podcasts_header__content .single_podcasts_header__body .single_podcasts_header__body_row .single_podcasts_header__body_row_breadcrumbs .breadcrumbs .breadcrumbs__link:hover {
  color: var(--color_orange);
}
@media (max-width: 768px) {
  .single_podcasts_header {
    padding: 30px 0 120px;
  }
  .single_podcasts_header .single_podcasts_header__content {
    flex-direction: column;
    gap: 20px;
  }
  .single_podcasts_header .single_podcasts_header__content .single_podcasts_header__icon {
    width: 65px;
    min-width: 65px;
    height: 65px;
    border-radius: 15px;
    padding: 6px;
  }
  .single_podcasts_header .single_podcasts_header__content .single_podcasts_header__body {
    gap: 16px;
  }
  .single_podcasts_header .single_podcasts_header__content .single_podcasts_header__body .single_podcasts_header__body_title {
    font-size: 28px;
    line-height: 1.3;
    min-height: auto;
  }
  .single_podcasts_header .single_podcasts_header__content .single_podcasts_header__body .single_podcasts_header__body_row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .single_podcasts_header .single_podcasts_header__content .single_podcasts_header__body .single_podcasts_header__body_row .single_podcasts_header__body_row_info {
    flex-wrap: wrap;
    gap: 20px;
  }
  .single_podcasts_header .single_podcasts_header__content .single_podcasts_header__body .single_podcasts_header__body_row .single_podcasts_header__body_row_info .single_podcasts_header__body_row_info_author {
    padding: 6px 18px;
    font-size: 16px;
  }
  .single_podcasts_header .single_podcasts_header__content .single_podcasts_header__body .single_podcasts_header__body_row .single_podcasts_header__body_row_info .single_podcasts_header__body_row_info_date {
    gap: 10px;
    font-size: 16px;
  }
  .single_podcasts_header .single_podcasts_header__content .single_podcasts_header__body .single_podcasts_header__body_row .single_podcasts_header__body_row_info .single_podcasts_header__body_row_info_date svg {
    width: 18px;
    min-width: 18px;
    height: 18px;
  }
  .single_podcasts_header .single_podcasts_header__content .single_podcasts_header__body .single_podcasts_header__body_row .single_podcasts_header__body_row_breadcrumbs {
    width: 100%;
  }
  .single_podcasts_header .single_podcasts_header__content .single_podcasts_header__body .single_podcasts_header__body_row .single_podcasts_header__body_row_breadcrumbs .breadcrumbs {
    font-size: 13px;
    flex-wrap: wrap;
  }
  .single_podcasts_header .single_podcasts_header__content .single_podcasts_header__body .single_podcasts_header__body_row .single_podcasts_header__body_row_breadcrumbs .breadcrumbs .breadcrumbs__separator {
    margin: 0 6px;
  }
}
@media (max-width: 480px) {
  .single_podcasts_header {
    padding: 25px 0 100px;
  }
  .single_podcasts_header .single_podcasts_header__content {
    gap: 16px;
  }
  .single_podcasts_header .single_podcasts_header__content .single_podcasts_header__icon {
    width: 55px;
    min-width: 55px;
    height: 55px;
    border-radius: 12px;
    padding: 5px;
  }
  .single_podcasts_header .single_podcasts_header__content .single_podcasts_header__body {
    gap: 14px;
  }
  .single_podcasts_header .single_podcasts_header__content .single_podcasts_header__body .single_podcasts_header__body_title {
    font-size: 21px;
    line-height: 1.4;
  }
  .single_podcasts_header .single_podcasts_header__content .single_podcasts_header__body .single_podcasts_header__body_row {
    gap: 16px;
  }
  .single_podcasts_header .single_podcasts_header__content .single_podcasts_header__body .single_podcasts_header__body_row .single_podcasts_header__body_row_info {
    gap: 16px;
  }
  .single_podcasts_header .single_podcasts_header__content .single_podcasts_header__body .single_podcasts_header__body_row .single_podcasts_header__body_row_info .single_podcasts_header__body_row_info_author {
    padding: 5px 16px;
    font-size: 15px;
    border-radius: 20px;
  }
  .single_podcasts_header .single_podcasts_header__content .single_podcasts_header__body .single_podcasts_header__body_row .single_podcasts_header__body_row_info .single_podcasts_header__body_row_info_date {
    gap: 8px;
    font-size: 15px;
  }
  .single_podcasts_header .single_podcasts_header__content .single_podcasts_header__body .single_podcasts_header__body_row .single_podcasts_header__body_row_info .single_podcasts_header__body_row_info_date svg {
    width: 16px;
    min-width: 16px;
    height: 16px;
  }
  .single_podcasts_header .single_podcasts_header__content .single_podcasts_header__body .single_podcasts_header__body_row .single_podcasts_header__body_row_breadcrumbs .breadcrumbs {
    font-size: 12px;
  }
  .single_podcasts_header .single_podcasts_header__content .single_podcasts_header__body .single_podcasts_header__body_row .single_podcasts_header__body_row_breadcrumbs .breadcrumbs .breadcrumbs__separator {
    margin: 0 5px;
  }
}

.single_podcasts_content {
  margin-top: -140px;
  position: relative;
  z-index: 2;
}
.single_podcasts_content .single_podcasts_content__row {
  display: flex;
  align-items: flex-start;
  gap: 34px;
  padding-bottom: 20px;
}
.single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main {
  max-width: 1188px;
  width: 100%;
  padding-bottom: 56px;
}
.single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__media {
  width: 100%;
  margin-bottom: 40px;
}
.single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__media .podcasts_item__head_video,
.single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__media .podcasts_item__head_audio_youtube {
  position: relative;
  width: 100%;
  aspect-ratio: 1.8;
  background: #000;
  overflow: hidden;
  cursor: pointer;
  border-radius: 10px;
}
.single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__media .podcasts_item__head_video:hover .podcasts_item__head_play_button,
.single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__media .podcasts_item__head_audio_youtube:hover .podcasts_item__head_play_button {
  color: #fff;
}
.single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__media .podcasts_item__head_preview_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 2;
  background: #000;
}
.single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__media .podcasts_item__head_play_button {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  margin: auto;
  transition: 0.3s;
  color: var(--color_orange);
  z-index: 9;
}
.single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__media .podcasts_item__head_play_button svg {
  width: 100%;
  height: 100%;
  display: block;
}
.single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__media .podcasts_item__head_video_iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: none;
  border: 0;
}
.single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__media .podcasts_item__head_video_file {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
  display: none;
}
.single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__media .podcasts_item__head_audio {
  position: relative;
  width: 100%;
  aspect-ratio: 1.7;
  background: #000;
  overflow: hidden;
  border-radius: 10px;
}
.single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__media .podcasts_item__head_audio img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  background: #000;
}
.single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__media .podcasts_item__head_audio > div {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 5px;
  z-index: 3;
  background: #000;
}
.single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__media .podcasts_item__head_audio audio {
  width: 100%;
  filter: invert(1);
  height: 20px;
}
.single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__description {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  color: #000;
}
.single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__description p:not(:last-child) {
  margin-bottom: 20px;
}
.single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__description p a {
  color: var(--color_orange);
  text-decoration: none;
  transition: 0.3s;
}
.single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__description p a:hover {
  opacity: 0.8;
}
.single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__keywords {
  margin-top: 46px;
  width: 100%;
}
.single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__keywords .single_podcasts_content__main__keywords_title {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  color: #000;
  margin-bottom: 15px;
}
.single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__keywords .single_podcasts_content__main__keywords_list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__keywords .single_podcasts_content__main__keywords_list li {
  padding: 6px 15px;
  border: 1px solid var(--color_orange);
  border-radius: 22px;
  background: #fff;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.1;
  color: #000000;
  transition: 0.3s;
  margin: 0;
}
.single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__keywords .single_podcasts_content__main__keywords_list li:hover {
  color: #fff;
  background: var(--color_orange);
}
.single_podcasts_content .single_podcasts_content__row .single_podcasts_content__sidebar {
  max-width: 424px;
  width: 100%;
  background: #F5F5F5;
  border-radius: 10px;
  padding: 60px 30px 30px;
  position: sticky;
  top: 174px;
}
.single_podcasts_content .single_podcasts_content__row .single_podcasts_content__sidebar .single_podcasts_content__sidebar__content {
  max-width: 284px;
  width: 100%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.single_podcasts_content .single_podcasts_content__row .single_podcasts_content__sidebar .single_podcasts_content__sidebar__content .single_podcasts_content__sidebar__media_links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.single_podcasts_content .single_podcasts_content__row .single_podcasts_content__sidebar .single_podcasts_content__sidebar__content .single_podcasts_content__sidebar__media_links a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  min-height: 64px;
  border: 2px solid #646464;
  border-radius: 8px;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  padding: 5px 15px;
  transition: 0.3s;
}
.single_podcasts_content .single_podcasts_content__row .single_podcasts_content__sidebar .single_podcasts_content__sidebar__content .single_podcasts_content__sidebar__media_links a:hover {
  border-color: var(--color_orange);
  color: var(--color_orange);
  transform: translateY(-2px);
}
.single_podcasts_content .single_podcasts_content__row .single_podcasts_content__sidebar .single_podcasts_content__sidebar__content .single_podcasts_content__sidebar__media_links a img {
  width: auto;
  height: 42px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.single_podcasts_content .single_podcasts_content__row .single_podcasts_content__sidebar .single_podcasts_content__sidebar__content .single_podcasts_content__sidebar__btns {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: auto;
}
.single_podcasts_content .single_podcasts_content__row .single_podcasts_content__sidebar .single_podcasts_content__sidebar__content .single_podcasts_content__sidebar__btns .single_podcasts_content__sidebar__btn {
  width: 100%;
  border: 1px solid var(--color_orange);
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 24px;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.1;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  background: var(--color_orange);
  transition: 0.3s;
}
.single_podcasts_content .single_podcasts_content__row .single_podcasts_content__sidebar .single_podcasts_content__sidebar__content .single_podcasts_content__sidebar__btns .single_podcasts_content__sidebar__btn:hover {
  background: #fff;
  color: var(--color_orange);
}
.single_podcasts_content .single_podcasts_content__row .single_podcasts_content__sidebar .single_podcasts_content__sidebar__content .single_podcasts_content__sidebar__btns .single_podcasts_content__sidebar__btn svg {
  display: block;
  width: 23px;
  height: 16px;
  transform: rotate(180deg);
  transition: 0.3s;
}
.single_podcasts_content .single_podcasts_content__row .single_podcasts_content__sidebar .single_podcasts_content__sidebar__content .single_podcasts_content__sidebar__share {
  margin-top: 26px;
}
.single_podcasts_content .single_podcasts_content__row .single_podcasts_content__sidebar .single_podcasts_content__sidebar__content .single_podcasts_content__sidebar__share .single_podcasts_content__sidebar__share_list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}
.single_podcasts_content .single_podcasts_content__row .single_podcasts_content__sidebar .single_podcasts_content__sidebar__content .single_podcasts_content__sidebar__share .single_podcasts_content__sidebar__share_list .single_podcasts_content__sidebar__share_item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  color: rgba(0, 0, 0, 0.4509803922);
  transition: color 0.3s ease;
  position: relative;
  text-decoration: none;
}
.single_podcasts_content .single_podcasts_content__row .single_podcasts_content__sidebar .single_podcasts_content__sidebar__content .single_podcasts_content__sidebar__share .single_podcasts_content__sidebar__share_list .single_podcasts_content__sidebar__share_item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 24px;
  background: #E4E4E4;
}
.single_podcasts_content .single_podcasts_content__row .single_podcasts_content__sidebar .single_podcasts_content__sidebar__content .single_podcasts_content__sidebar__share .single_podcasts_content__sidebar__share_list .single_podcasts_content__sidebar__share_item:hover {
  color: var(--color_orange);
}
.single_podcasts_content .single_podcasts_content__row .single_podcasts_content__sidebar .single_podcasts_content__sidebar__content .single_podcasts_content__sidebar__share .single_podcasts_content__sidebar__share_list .single_podcasts_content__sidebar__share_item svg {
  width: 20px;
  height: 20px;
  display: block;
}
@media (max-width: 1024px) {
  .single_podcasts_content .single_podcasts_content__row {
    flex-direction: column;
    gap: 30px;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__sidebar {
    max-width: 100%;
    position: static;
    padding: 40px 25px;
  }
}
@media (max-width: 768px) {
  .single_podcasts_content {
    margin-top: -100px;
  }
  .single_podcasts_content .single_podcasts_content__row {
    gap: 25px;
    padding-bottom: 15px;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main {
    padding-bottom: 40px;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__media {
    margin-bottom: 30px;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__media .podcasts_item__head_video,
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__media .podcasts_item__head_audio_youtube {
    aspect-ratio: 1.6;
    border-radius: 8px;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__media .podcasts_item__head_video .podcasts_item__head_play_button,
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__media .podcasts_item__head_audio_youtube .podcasts_item__head_play_button {
    width: 70px;
    height: 70px;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__media .podcasts_item__head_audio {
    aspect-ratio: 1.6;
    border-radius: 8px;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__media .podcasts_item__head_audio > div {
    padding: 10px;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__media .podcasts_item__head_audio audio {
    height: 18px;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__description {
    font-size: 18px;
    line-height: 1.4;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__keywords {
    margin-top: 35px;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__keywords .single_podcasts_content__main__keywords_title {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__keywords .single_podcasts_content__main__keywords_list {
    gap: 8px;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__keywords .single_podcasts_content__main__keywords_list li {
    padding: 6px 14px;
    font-size: 16px;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__sidebar {
    padding: 35px 20px;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__sidebar .single_podcasts_content__sidebar__content {
    max-width: 100%;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__sidebar .single_podcasts_content__sidebar__content .single_podcasts_content__sidebar__media_links {
    gap: 12px;
    margin-bottom: 18px;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__sidebar .single_podcasts_content__sidebar__content .single_podcasts_content__sidebar__media_links a {
    min-height: 58px;
    padding: 5px 12px;
    font-size: 15px;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__sidebar .single_podcasts_content__sidebar__content .single_podcasts_content__sidebar__media_links a img {
    height: 38px;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__sidebar .single_podcasts_content__sidebar__content .single_podcasts_content__sidebar__btns {
    gap: 20px;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__sidebar .single_podcasts_content__sidebar__content .single_podcasts_content__sidebar__btns .single_podcasts_content__sidebar__btn {
    padding: 12px 20px;
    font-size: 18px;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__sidebar .single_podcasts_content__sidebar__content .single_podcasts_content__sidebar__btns .single_podcasts_content__sidebar__btn svg {
    width: 20px;
    height: 14px;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__sidebar .single_podcasts_content__sidebar__content .single_podcasts_content__sidebar__share {
    margin-top: 20px;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__sidebar .single_podcasts_content__sidebar__content .single_podcasts_content__sidebar__share .single_podcasts_content__sidebar__share_list .single_podcasts_content__sidebar__share_item {
    padding: 10px 0;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__sidebar .single_podcasts_content__sidebar__content .single_podcasts_content__sidebar__share .single_podcasts_content__sidebar__share_list .single_podcasts_content__sidebar__share_item svg {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 480px) {
  .single_podcasts_content {
    margin-top: -80px;
  }
  .single_podcasts_content .single_podcasts_content__row {
    gap: 20px;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main {
    padding-bottom: 30px;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__media {
    margin-bottom: 25px;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__media .podcasts_item__head_video,
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__media .podcasts_item__head_audio_youtube {
    aspect-ratio: 1.5;
    border-radius: 6px;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__media .podcasts_item__head_video .podcasts_item__head_play_button,
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__media .podcasts_item__head_audio_youtube .podcasts_item__head_play_button {
    width: 60px;
    height: 60px;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__media .podcasts_item__head_audio {
    aspect-ratio: 1.5;
    border-radius: 6px;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__media .podcasts_item__head_audio > div {
    padding: 8px;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__description {
    font-size: 16px;
    line-height: 1.5;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__keywords {
    margin-top: 30px;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__keywords .single_podcasts_content__main__keywords_title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__keywords .single_podcasts_content__main__keywords_list {
    gap: 6px;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__main .single_podcasts_content__main__keywords .single_podcasts_content__main__keywords_list li {
    padding: 5px 12px;
    font-size: 15px;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__sidebar {
    padding: 30px 16px;
    border-radius: 8px;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__sidebar .single_podcasts_content__sidebar__content .single_podcasts_content__sidebar__media_links {
    gap: 10px;
    margin-bottom: 16px;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__sidebar .single_podcasts_content__sidebar__content .single_podcasts_content__sidebar__media_links a {
    min-height: 54px;
    padding: 5px 10px;
    font-size: 14px;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__sidebar .single_podcasts_content__sidebar__content .single_podcasts_content__sidebar__media_links a img {
    height: 35px;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__sidebar .single_podcasts_content__sidebar__content .single_podcasts_content__sidebar__btns {
    gap: 16px;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__sidebar .single_podcasts_content__sidebar__content .single_podcasts_content__sidebar__btns .single_podcasts_content__sidebar__btn {
    padding: 11px 18px;
    font-size: 16px;
    border-radius: 40px;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__sidebar .single_podcasts_content__sidebar__content .single_podcasts_content__sidebar__btns .single_podcasts_content__sidebar__btn svg {
    width: 18px;
    height: 12px;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__sidebar .single_podcasts_content__sidebar__content .single_podcasts_content__sidebar__share {
    margin-top: 18px;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__sidebar .single_podcasts_content__sidebar__content .single_podcasts_content__sidebar__share .single_podcasts_content__sidebar__share_list .single_podcasts_content__sidebar__share_item {
    padding: 8px 0;
  }
  .single_podcasts_content .single_podcasts_content__row .single_podcasts_content__sidebar .single_podcasts_content__sidebar__content .single_podcasts_content__sidebar__share .single_podcasts_content__sidebar__share_list .single_podcasts_content__sidebar__share_item svg {
    width: 16px;
    height: 16px;
  }
}

.single_podcasts_related {
  margin-bottom: 40px;
  background: linear-gradient(90deg, transparent, #F5F5F5);
}
.single_podcasts_related .single_podcasts_related__content {
  background: #F5F5F5;
  padding-top: 70px;
  padding-bottom: 60px;
  border-radius: 20px 0 0 20px;
}
.single_podcasts_related .single_podcasts_related__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 60px;
  padding-left: 20px;
}
.single_podcasts_related .single_podcasts_related__head .single_podcasts_related__head_title {
  font-weight: 300;
  font-size: 32px;
  line-height: 1.2;
  color: #000;
  margin: 0;
}
.single_podcasts_related .single_podcasts_related__head .single_podcasts_related__head_link {
  max-width: 217px;
  width: 100%;
  border: 1px solid var(--color_orange);
  border-radius: 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  color: var(--color_orange);
  text-decoration: none;
  transition: all 0.3s ease;
  background: none;
}
.single_podcasts_related .single_podcasts_related__head .single_podcasts_related__head_link:hover {
  background: var(--color_orange);
  color: #fff;
}
.single_podcasts_related .single_podcasts_related__head .single_podcasts_related__head_link svg {
  display: block;
  width: 23px;
  height: 16px;
  transform: rotate(180deg);
  transition: 0.3s;
}
@media (max-width: 768px) {
  .single_podcasts_related {
    margin-bottom: 30px;
  }
  .single_podcasts_related .single_podcasts_related__content {
    padding-top: 40px;
    padding-bottom: 40px;
    border-radius: 15px 0 0 15px;
  }
  .single_podcasts_related .single_podcasts_related__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    padding-left: 15px;
  }
  .single_podcasts_related .single_podcasts_related__head .single_podcasts_related__head_title {
    font-size: 26px;
  }
  .single_podcasts_related .single_podcasts_related__head .single_podcasts_related__head_link {
    max-width: 100%;
    width: 100%;
    font-size: 18px;
    padding: 12px 18px;
    justify-content: center;
  }
  .single_podcasts_related .single_podcasts_related__head .single_podcasts_related__head_link svg {
    width: 20px;
    height: 14px;
  }
}
@media (max-width: 480px) {
  .single_podcasts_related {
    margin-bottom: 25px;
  }
  .single_podcasts_related .single_podcasts_related__content {
    padding-top: 30px;
    padding-bottom: 30px;
    border-radius: 12px 0 0 12px;
  }
  .single_podcasts_related .single_podcasts_related__head {
    gap: 16px;
    margin-bottom: 30px;
    padding-left: 12px;
  }
  .single_podcasts_related .single_podcasts_related__head .single_podcasts_related__head_title {
    font-size: 22px;
  }
  .single_podcasts_related .single_podcasts_related__head .single_podcasts_related__head_link {
    font-size: 16px;
    padding: 11px 16px;
    border-radius: 20px;
  }
  .single_podcasts_related .single_podcasts_related__head .single_podcasts_related__head_link svg {
    width: 18px;
    height: 12px;
  }
}
.single_podcasts_related .podcasts_row__slider_wrapper {
  position: relative;
  overflow: visible;
}
.single_podcasts_related .podcasts_row__slider_wrapper .swiper-button-prev,
.single_podcasts_related .podcasts_row__slider_wrapper .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  height: auto;
  margin-top: 0;
  z-index: 10;
  color: #3D3D3D;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transition: all 0.3s ease;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
.single_podcasts_related .podcasts_row__slider_wrapper .swiper-button-prev:after,
.single_podcasts_related .podcasts_row__slider_wrapper .swiper-button-next:after {
  font-size: 34px;
  font-weight: 300;
}
.single_podcasts_related .podcasts_row__slider_wrapper .swiper-button-prev:hover,
.single_podcasts_related .podcasts_row__slider_wrapper .swiper-button-next:hover {
  background: transparent;
  color: var(--color_orange);
  box-shadow: none;
}
.single_podcasts_related .podcasts_row__slider_wrapper .swiper-button-prev:focus, .single_podcasts_related .podcasts_row__slider_wrapper .swiper-button-prev:active,
.single_podcasts_related .podcasts_row__slider_wrapper .swiper-button-next:focus,
.single_podcasts_related .podcasts_row__slider_wrapper .swiper-button-next:active {
  outline: none;
}
.single_podcasts_related .podcasts_row__slider_wrapper .swiper-button-prev.swiper-button-disabled,
.single_podcasts_related .podcasts_row__slider_wrapper .swiper-button-next.swiper-button-disabled {
  opacity: 0.3;
}
@media (max-width: 1780px) {
  .single_podcasts_related .podcasts_row__slider_wrapper .swiper-button-prev,
  .single_podcasts_related .podcasts_row__slider_wrapper .swiper-button-next {
    display: none;
  }
}
.single_podcasts_related .podcasts_row__slider_wrapper .swiper-button-prev {
  right: -60px;
  left: auto;
  transform: rotate(180deg);
}
.single_podcasts_related .podcasts_row__slider_wrapper .swiper-button-next {
  left: -60px;
  right: auto;
  transform: rotate(180deg);
}
.single_podcasts_related .podcasts_row__slider {
  position: relative;
  width: 100%;
}
.single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide {
  height: auto !important;
}
.single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item {
  background: #fff;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.0509803922);
  border: 1px solid #E4E4E4;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__head {
  width: 100%;
}
.single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__head .podcasts_item__head_video,
.single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__head .podcasts_item__head_audio_youtube {
  position: relative;
  width: 100%;
  aspect-ratio: 1.7;
  background: #000;
  overflow: hidden;
  cursor: pointer;
}
.single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__head .podcasts_item__head_video:hover .podcasts_item__head_play_button,
.single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__head .podcasts_item__head_audio_youtube:hover .podcasts_item__head_play_button {
  color: #fff;
}
.single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__head .podcasts_item__head_preview_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 2;
  background: #000;
}
.single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__head .podcasts_item__head_play_button {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  width: 70px;
  height: 70px;
  margin: auto;
  transition: 0.3s;
  color: var(--color_orange);
  z-index: 9;
}
.single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__head .podcasts_item__head_play_button svg {
  width: 100%;
  height: 100%;
  display: block;
}
.single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__head .podcasts_item__head_video_iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: none;
  border: 0;
}
.single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__head .podcasts_item__head_audio {
  position: relative;
  width: 100%;
  aspect-ratio: 1.7;
  background: #000;
  overflow: hidden;
}
.single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__head .podcasts_item__head_audio img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  background: #000;
}
.single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__head .podcasts_item__head_audio > div {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 5px;
  z-index: 3;
  background: #000;
}
.single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__head .podcasts_item__head_audio audio {
  width: 100%;
  filter: invert(1);
  height: 20px;
}
.single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_title {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.15;
  color: #3D3D3D;
  border-bottom: 1px solid #D5D5D5;
  padding-bottom: 15px;
  margin-bottom: 20px;
  min-height: 92px;
}
.single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_title a:hover {
  color: var(--color_orange);
}
.single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_description {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  color: #3D3D3D;
  margin-bottom: 30px;
}
.single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
}
.single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_button {
  max-width: 124px;
  width: 100%;
  padding: 10px;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--color_orange);
  border-radius: 7px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.2;
  color: #3D3D3D;
  transition: 0.3s;
  text-decoration: none;
}
.single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_button:hover {
  background: var(--color_orange);
  color: #fff;
}
.single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  min-width: 58px;
  width: auto;
  min-height: 58px;
  padding: 10px;
  border: 1px solid #D4D4D4;
  border-radius: 7px;
}
.single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_date .podcasts_item__body_foot_date_day {
  display: block;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  color: #3D3D3D;
}
.single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_date .podcasts_item__body_foot_date_month {
  display: block;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.2;
  color: #3D3D3D;
  margin-top: 2px;
}
.single_podcasts_related .podcasts_row__slider .swiper-pagination {
  position: relative;
  bottom: auto;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  z-index: 10;
}
@media (min-width: 1781px) {
  .single_podcasts_related .podcasts_row__slider .swiper-pagination {
    display: none;
  }
}
.single_podcasts_related .podcasts_row__slider .swiper-pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background: rgba(0, 0, 0, 0.27);
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
  margin: 0;
  cursor: pointer;
}
.single_podcasts_related .podcasts_row__slider .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--color_orange);
  width: 29px;
  border-radius: 7px;
}
.single_podcasts_related .podcasts_row__slider .swiper-pagination .swiper-pagination-bullet:hover {
  background: var(--color_orange);
}
@media (max-width: 768px) {
  .single_podcasts_related {
    padding: 30px 0;
  }
  .single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__head .podcasts_item__head_video,
  .single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__head .podcasts_item__head_audio_youtube {
    aspect-ratio: 1.6;
  }
  .single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__head .podcasts_item__head_video .podcasts_item__head_play_button,
  .single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__head .podcasts_item__head_audio_youtube .podcasts_item__head_play_button {
    width: 60px;
    height: 60px;
  }
  .single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__head .podcasts_item__head_audio {
    aspect-ratio: 1.6;
  }
  .single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__head .podcasts_item__head_audio > div {
    padding: 12px 15px;
  }
  .single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body {
    padding: 18px;
  }
  .single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_title {
    font-size: 20px;
    padding-bottom: 12px;
    margin-bottom: 16px;
    min-height: auto;
  }
  .single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_description {
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 24px;
  }
  .single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_foot {
    gap: 15px;
    padding-top: 16px;
  }
  .single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_button {
    max-width: 100%;
    flex: 1;
    font-size: 15px;
    padding: 12px;
    min-height: 52px;
  }
  .single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_date {
    min-width: 58px;
    width: auto;
    min-height: 52px;
    padding: 8px 10px;
    white-space: nowrap;
  }
  .single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_date .podcasts_item__body_foot_date_day {
    font-size: 16px;
  }
  .single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_date .podcasts_item__body_foot_date_month {
    font-size: 12px;
  }
  .single_podcasts_related .podcasts_row__slider .swiper-pagination {
    margin-top: 25px;
    gap: 5px;
  }
  .single_podcasts_related .podcasts_row__slider .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
  .single_podcasts_related .podcasts_row__slider .swiper-pagination .swiper-pagination-bullet-active {
    width: 26px;
  }
}
@media (max-width: 424px) {
  .single_podcasts_related {
    padding: 25px 0;
  }
  .single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__head .podcasts_item__head_video .podcasts_item__head_play_button,
  .single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__head .podcasts_item__head_audio_youtube .podcasts_item__head_play_button {
    width: 55px;
    height: 55px;
  }
  .single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body {
    padding: 16px;
  }
  .single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_title {
    font-size: 18px;
    padding-bottom: 10px;
    margin-bottom: 14px;
  }
  .single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_description {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_foot {
    gap: 12px;
    padding-top: 14px;
  }
  .single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_button {
    font-size: 14px;
    padding: 11px;
    min-height: 48px;
    order: 1;
    flex: 1 1 100%;
  }
  .single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_date {
    min-width: 58px;
    width: auto;
    min-height: 48px;
    padding: 7px 10px;
    order: 2;
    white-space: nowrap;
  }
  .single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_date .podcasts_item__body_foot_date_day {
    font-size: 15px;
  }
  .single_podcasts_related .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_date .podcasts_item__body_foot_date_month {
    font-size: 11px;
  }
  .single_podcasts_related .podcasts_row__slider .swiper-pagination {
    margin-top: 20px;
  }
}

.tax_topics {
  padding: 0;
}
.tax_topics .tax_topics__head {
  display: flex;
  flex-direction: column;
  padding: 80px 0 0;
  border-radius: 0 0 24px 24px;
}
.tax_topics .tax_topics__head .tax_topics__title {
  font-weight: 700;
  font-size: 38px;
  line-height: 1.2;
  color: #000000;
  margin: 0 0 84px;
  text-align: center;
}
@media (max-width: 768px) {
  .tax_topics .tax_topics__head {
    padding: 50px 0 0;
  }
  .tax_topics .tax_topics__head .tax_topics__title {
    font-size: 28px;
    margin: 0 0 50px;
  }
}
.tax_topics .tax_topics__content {
  padding: 50px 0;
}
@media (max-width: 768px) {
  .tax_topics .tax_topics__content {
    padding: 30px 0;
  }
}
.tax_topics .tax_topics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 45px;
}
.tax_topics .tax_topics__grid .tax_topics__item .podcasts_item {
  background: #fff;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.0509803922);
  border: 1px solid #E4E4E4;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.tax_topics .tax_topics__grid .tax_topics__item .podcasts_item .podcasts_item__head {
  width: 100%;
}
.tax_topics .tax_topics__grid .tax_topics__item .podcasts_item .podcasts_item__head .podcasts_item__head_video,
.tax_topics .tax_topics__grid .tax_topics__item .podcasts_item .podcasts_item__head .podcasts_item__head_audio_youtube {
  position: relative;
  width: 100%;
  aspect-ratio: 1.7;
  background: #000;
  overflow: hidden;
  cursor: pointer;
}
.tax_topics .tax_topics__grid .tax_topics__item .podcasts_item .podcasts_item__head .podcasts_item__head_video:hover .podcasts_item__head_play_button,
.tax_topics .tax_topics__grid .tax_topics__item .podcasts_item .podcasts_item__head .podcasts_item__head_audio_youtube:hover .podcasts_item__head_play_button {
  color: #fff;
}
.tax_topics .tax_topics__grid .tax_topics__item .podcasts_item .podcasts_item__head .podcasts_item__head_preview_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 2;
  background: #000;
}
.tax_topics .tax_topics__grid .tax_topics__item .podcasts_item .podcasts_item__head .podcasts_item__head_play_button {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  width: 70px;
  height: 70px;
  margin: auto;
  transition: 0.3s;
  color: var(--color_orange);
  z-index: 9;
}
.tax_topics .tax_topics__grid .tax_topics__item .podcasts_item .podcasts_item__head .podcasts_item__head_play_button svg {
  width: 100%;
  height: 100%;
  display: block;
}
.tax_topics .tax_topics__grid .tax_topics__item .podcasts_item .podcasts_item__head .podcasts_item__head_video_iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: none;
  border: 0;
}
.tax_topics .tax_topics__grid .tax_topics__item .podcasts_item .podcasts_item__head .podcasts_item__head_video_file {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
  display: none;
}
.tax_topics .tax_topics__grid .tax_topics__item .podcasts_item .podcasts_item__head .podcasts_item__head_audio {
  position: relative;
  width: 100%;
  aspect-ratio: 1.52;
  background: #000;
  overflow: hidden;
}
.tax_topics .tax_topics__grid .tax_topics__item .podcasts_item .podcasts_item__head .podcasts_item__head_audio img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  background: #000;
}
.tax_topics .tax_topics__grid .tax_topics__item .podcasts_item .podcasts_item__head .podcasts_item__head_audio > div {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 5px;
  z-index: 3;
  background: #000;
}
.tax_topics .tax_topics__grid .tax_topics__item .podcasts_item .podcasts_item__head .podcasts_item__head_audio audio {
  width: 100%;
  filter: invert(1);
  height: 20px;
}
.tax_topics .tax_topics__grid .tax_topics__item .podcasts_item .podcasts_item__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.tax_topics .tax_topics__grid .tax_topics__item .podcasts_item .podcasts_item__body .podcasts_item__body_title {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.15;
  color: #3D3D3D;
  border-bottom: 1px solid #D5D5D5;
  padding-bottom: 15px;
  margin-bottom: 20px;
  min-height: 92px;
}
.tax_topics .tax_topics__grid .tax_topics__item .podcasts_item .podcasts_item__body .podcasts_item__body_title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.tax_topics .tax_topics__grid .tax_topics__item .podcasts_item .podcasts_item__body .podcasts_item__body_title a:hover {
  color: var(--color_orange);
}
.tax_topics .tax_topics__grid .tax_topics__item .podcasts_item .podcasts_item__body .podcasts_item__body_description {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  color: #3D3D3D;
  margin-bottom: 30px;
}
.tax_topics .tax_topics__grid .tax_topics__item .podcasts_item .podcasts_item__body .podcasts_item__body_foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
}
.tax_topics .tax_topics__grid .tax_topics__item .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_button {
  max-width: 124px;
  width: 100%;
  padding: 10px;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--color_orange);
  border-radius: 7px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #3D3D3D;
  transition: 0.3s;
  text-decoration: none;
}
.tax_topics .tax_topics__grid .tax_topics__item .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_button:hover {
  background: var(--color_orange);
  color: #fff;
}
.tax_topics .tax_topics__grid .tax_topics__item .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  min-width: 58px;
  width: auto;
  min-height: 58px;
  padding: 10px;
  border: 1px solid #D4D4D4;
  border-radius: 7px;
}
.tax_topics .tax_topics__grid .tax_topics__item .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_date .podcasts_item__body_foot_date_day {
  display: block;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  color: #3D3D3D;
}
.tax_topics .tax_topics__grid .tax_topics__item .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_date .podcasts_item__body_foot_date_month {
  display: block;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.2;
  color: #3D3D3D;
  margin-top: 2px;
}
@media (max-width: 1400px) {
  .tax_topics .tax_topics__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  .tax_topics .tax_topics__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .tax_topics .tax_topics__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.tax_topics .tax_topics__load_more_wrapper {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tax_topics .tax_topics__load_more_wrapper .tax_topics__load_more_btn {
  padding: 15px 40px;
  border: 1px solid var(--color_orange);
  border-radius: 50px;
  background: transparent;
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  color: var(--color_orange);
  cursor: pointer;
  transition: all 0.3s ease;
}
.tax_topics .tax_topics__load_more_wrapper .tax_topics__load_more_btn:hover:not(:disabled) {
  background: var(--color_orange);
  color: #fff;
}
.tax_topics .tax_topics__load_more_wrapper .tax_topics__load_more_btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
@media (max-width: 768px) {
  .tax_topics .tax_topics__load_more_wrapper {
    margin-top: 30px;
  }
  .tax_topics .tax_topics__load_more_wrapper .tax_topics__load_more_btn {
    padding: 12px 30px;
    font-size: 18px;
  }
}

/* Flexible content */
/* Podcasts Topics Section */
.podcasts_topics {
  padding: 60px 0;
  background: #fff;
}
@media (max-width: 768px) {
  .podcasts_topics {
    padding: 30px 0;
  }
}
.podcasts_topics .section_title {
  margin: 0 0 40px;
}
.podcasts_topics .podcasts_topics__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 768px) {
  .podcasts_topics .podcasts_topics__head {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .podcasts_topics .podcasts_topics__head .section_title {
    margin: 0 0 10px;
  }
}
.podcasts_topics .podcasts_topics__head .podcasts_topics__filter_form {
  max-width: 488px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 500px) {
  .podcasts_topics .podcasts_topics__head .podcasts_topics__filter_form {
    flex-direction: column;
  }
}
.podcasts_topics .podcasts_topics__head .podcasts_topics__filter_form .custom_select_wrapper {
  position: relative;
  max-width: 234px;
  width: 100%;
}
@media (max-width: 500px) {
  .podcasts_topics .podcasts_topics__head .podcasts_topics__filter_form .custom_select_wrapper {
    max-width: 100%;
  }
}
.podcasts_topics .podcasts_topics__head .podcasts_topics__filter_form .custom_select_wrapper .custom_select_trigger {
  width: 100%;
  height: 44px;
  padding: 10px 36px 10px 30px;
  border: 1px solid #841E1D;
  border-radius: 5px;
  background: #fff;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #8E8E8E;
  text-align: right;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .podcasts_topics .podcasts_topics__head .podcasts_topics__filter_form .custom_select_wrapper .custom_select_trigger {
    height: 40px;
    padding: 10px 30px 10px 20px;
    font-size: 14px;
  }
}
.podcasts_topics .podcasts_topics__head .podcasts_topics__filter_form .custom_select_wrapper .custom_select_trigger:hover {
  border-color: #a02a28;
}
.podcasts_topics .podcasts_topics__head .podcasts_topics__filter_form .custom_select_wrapper .custom_select_trigger:focus {
  outline: none;
  border-color: #851E1D;
  box-shadow: 0 0 0 3px rgba(133, 30, 29, 0.1);
}
.podcasts_topics .podcasts_topics__head .podcasts_topics__filter_form .custom_select_wrapper .custom_select_trigger .custom_select_value {
  flex: 1;
  text-align: right;
}
.podcasts_topics .podcasts_topics__head .podcasts_topics__filter_form .custom_select_wrapper .custom_select_trigger .custom_select_arrow {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 7px solid #ACACAC;
  transition: transform 0.3s ease;
}
.podcasts_topics .podcasts_topics__head .podcasts_topics__filter_form .custom_select_wrapper .custom_select_trigger::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  pointer-events: none;
}
.podcasts_topics .podcasts_topics__head .podcasts_topics__filter_form .custom_select_wrapper--authors .custom_select_trigger::after {
  background-image: url('data:image/svg+xml,<svg width="800px" height="800px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 12C14.7614 12 17 9.76142 17 7C17 4.23858 14.7614 2 12 2C9.23858 2 7 4.23858 7 7C7 9.76142 9.23858 12 12 12Z" stroke="%231F1F1F" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M3.40991 22C3.40991 18.13 7.25994 15 11.9999 15" stroke="%231F1F1F" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M18.2 21.4C19.9673 21.4 21.4 19.9673 21.4 18.2C21.4 16.4327 19.9673 15 18.2 15C16.4327 15 15 16.4327 15 18.2C15 19.9673 16.4327 21.4 18.2 21.4Z" stroke="%231F1F1F" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M22 22L21 21" stroke="%231F1F1F" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.podcasts_topics .podcasts_topics__head .podcasts_topics__filter_form .custom_select_wrapper--keywords .custom_select_trigger::after {
  background-image: url('data:image/svg+xml,<svg fill="%231F1F1F" width="800px" height="800px" viewBox="-2 -4 24 24" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin" class="jam jam-settings-alt"><path d="M9 12V1a1 1 0 1 1 2 0v11h1a1 1 0 0 1 0 2h-1v1a1 1 0 0 1-2 0v-1H8a1 1 0 0 1 0-2h1zm7-10V1a1 1 0 0 1 2 0v1h1a1 1 0 0 1 0 2h-1v11a1 1 0 0 1-2 0V4h-1a1 1 0 0 1 0-2h1zM4 5h1a1 1 0 1 1 0 2H4v8a1 1 0 0 1-2 0V7H1a1 1 0 1 1 0-2h1V1a1 1 0 1 1 2 0v4z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.podcasts_topics .podcasts_topics__head .podcasts_topics__filter_form .custom_select_wrapper.is-open {
  z-index: 1001;
}
.podcasts_topics .podcasts_topics__head .podcasts_topics__filter_form .custom_select_wrapper.is-open .custom_select_trigger {
  border-color: #851E1D;
  box-shadow: 0 0 0 3px rgba(133, 30, 29, 0.1);
  z-index: 1002;
}
.podcasts_topics .podcasts_topics__head .podcasts_topics__filter_form .custom_select_wrapper.is-open .custom_select_trigger .custom_select_arrow {
  transform: translateY(-50%) rotate(180deg);
  border-top-color: #851E1D;
}
.podcasts_topics .podcasts_topics__head .podcasts_topics__filter_form .custom_select_wrapper.is-open .custom_select_dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.podcasts_topics .podcasts_topics__head .podcasts_topics__filter_form .custom_select_wrapper .custom_select_dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  padding: 4px 0;
}
.podcasts_topics .podcasts_topics__head .podcasts_topics__filter_form .custom_select_wrapper .custom_select_dropdown::-webkit-scrollbar {
  width: 6px;
}
.podcasts_topics .podcasts_topics__head .podcasts_topics__filter_form .custom_select_wrapper .custom_select_dropdown::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
.podcasts_topics .podcasts_topics__head .podcasts_topics__filter_form .custom_select_wrapper .custom_select_dropdown::-webkit-scrollbar-thumb {
  background: #851E1D;
  border-radius: 3px;
}
.podcasts_topics .podcasts_topics__head .podcasts_topics__filter_form .custom_select_wrapper .custom_select_dropdown::-webkit-scrollbar-thumb:hover {
  background: #a02a28;
}
.podcasts_topics .podcasts_topics__head .podcasts_topics__filter_form .custom_select_wrapper .custom_select_dropdown .custom_select_option {
  padding: 10px 15px;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  text-align: right;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  background: transparent;
}
.podcasts_topics .podcasts_topics__head .podcasts_topics__filter_form .custom_select_wrapper .custom_select_dropdown .custom_select_option:hover {
  background: #f8f8f8;
  color: #851E1D;
}
.podcasts_topics .podcasts_topics__head .podcasts_topics__filter_form .custom_select_wrapper .custom_select_dropdown .custom_select_option.is-selected {
  background: #fff5f4;
  color: #851E1D;
}
.podcasts_topics .podcasts_topics__head .podcasts_topics__filter_form .custom_select_wrapper .custom_select_dropdown .custom_select_option:focus {
  outline: none;
  background: #f8f8f8;
}
.podcasts_topics .podcasts_topics__head .podcasts_topics__filter_form .custom_select_wrapper .custom_select_dropdown .custom_select_option.is-placeholder {
  color: #8E8E8E;
  cursor: default;
  pointer-events: none;
  opacity: 0.6;
}
.podcasts_topics .podcasts_topics__head .podcasts_topics__filter_form .custom_select_wrapper .custom_select_dropdown .custom_select_option.is-placeholder:hover {
  background: transparent;
  color: #8E8E8E;
}
.podcasts_topics .podcasts_topics__head .podcasts_topics__filter_form .custom_select_wrapper .custom_select_dropdown .custom_select_option.is-placeholder:focus {
  background: transparent;
}
@media (max-width: 768px) {
  .podcasts_topics .podcasts_topics__head .podcasts_topics__filter_form .custom_select_wrapper {
    min-width: 150px;
  }
  .podcasts_topics .podcasts_topics__head .podcasts_topics__filter_form .custom_select_wrapper .custom_select_trigger {
    min-width: 150px;
    font-size: 15px;
    padding: 10px 45px 10px 35px;
  }
}
.podcasts_topics .podcasts_topics_slider {
  margin: 0 auto;
  padding: 20px 10px;
}
.podcasts_topics .podcasts_topics_slider .swiper-wrapper {
  padding: 4px 0;
}
.podcasts_topics .podcasts_topics_slider .swiper-slide {
  width: 100%;
  display: flex;
  height: auto;
}
.podcasts_topics .podcasts_topics_slider .swiper-pagination {
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 10;
  margin-top: 30px;
  position: relative;
}
.podcasts_topics .podcasts_topics_slider .swiper-pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background: rgba(0, 0, 0, 0.2705882353);
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
  margin: 0;
  cursor: pointer;
}
.podcasts_topics .podcasts_topics_slider .swiper-pagination .swiper-pagination-bullet-active {
  background: #303030;
  width: 29px; /* Horizontal elongated */
  border-radius: 7px;
}
.podcasts_topics .podcasts_topics_slider .swiper-pagination .swiper-pagination-bullet:hover {
  background: var(--color_orange);
}
.podcasts_topics .podcasts_topic_item {
  width: 100%;
  display: flex;
  justify-content: center;
}
.podcasts_topics .podcasts_topic_item .podcasts_topic_link {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 15px 25px;
  width: 100%;
  background: #fff;
  box-shadow: 0px 3px 18px rgba(5, 20, 62, 0.0901960784);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border-top: 11px solid transparent;
}
.podcasts_topics .podcasts_topic_item .podcasts_topic_link:hover {
  background: transparent linear-gradient(180deg, #F8EDEB 0%, #FFFFFF 100%);
  border-color: var(--color_orange);
  box-shadow: 0px 3px 30px rgba(5, 20, 62, 0.2);
  transform: translateY(-4px);
}
.podcasts_topics .podcasts_topic_item .podcasts_topic_link:hover .podcasts_topic_name {
  color: #851E1D;
}
.podcasts_topics .podcasts_topic_item .podcasts_topic_link:focus-visible {
  outline: 2px solid var(--color_orange);
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .podcasts_topics .podcasts_topic_item .podcasts_topic_link {
    padding: 20px 10px;
    gap: 12px;
  }
}
.podcasts_topics .podcasts_topic_item .podcasts_topic_icon {
  width: 100%;
  height: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.podcasts_topics .podcasts_topic_item .podcasts_topic_icon img {
  max-width: 100%;
  width: auto;
  max-height: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease;
}
.podcasts_topics .podcasts_topic_item .podcasts_topic_name {
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  color: #000000;
  text-align: center;
  margin: 0;
  text-align: center;
}
@media (max-width: 768px) {
  .podcasts_topics .podcasts_topic_item .podcasts_topic_name {
    font-size: 18px;
  }
}
.podcasts_topics .podcasts_topic_item.active .podcasts_topic_link {
  background: #fff5f4;
  border-color: var(--color_orange);
  box-shadow: 0 2px 12px rgba(232, 90, 59, 0.2);
}
.podcasts_topics .podcasts_topic_item.active .podcasts_topic_icon {
  background: var(--color_orange);
}
.podcasts_topics .podcasts_topic_item.active .podcasts_topic_icon img {
  filter: brightness(0) invert(1);
}
.podcasts_topics .podcasts_topic_item.active .podcasts_topic_name {
  color: var(--color_orange);
  font-weight: 500;
}

.podcasts_row {
  padding: 0;
}
.podcasts_row.podcasts_row--odd {
  background: linear-gradient(90deg, transparent, #f5f5f5);
}
.podcasts_row.podcasts_row--odd .podcasts_row_content {
  background: #f5f5f5;
  border-radius: 20px 0 0 20px;
}
.podcasts_row.podcasts_row--even .podcasts_row__head .podcasts_row__head_icon {
  background: #f5f5f5;
}
.podcasts_row .podcasts_row_content {
  padding: 50px 0;
}
.podcasts_row .podcasts_row__head {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 25px;
  padding-left: 20px;
}
.podcasts_row .podcasts_row__head .podcasts_row__head_icon {
  width: 81px;
  min-width: 81px;
  height: 81px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 19px;
  background: #ffffff;
  padding: 7px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}
.podcasts_row .podcasts_row__head .podcasts_row__head_icon img {
  max-width: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.podcasts_row .podcasts_row__head .podcasts_row__head_title {
  font-weight: 300;
  font-size: 32px;
  line-height: 1.2;
  color: #000000;
}
.podcasts_row .podcasts_row__head .podcasts_row__head_description {
  position: relative;
  z-index: 9;
}
.podcasts_row .podcasts_row__head .podcasts_row__head_description .podcasts_row__head_description_icon {
  cursor: pointer;
}
.podcasts_row .podcasts_row__head .podcasts_row__head_description .podcasts_row__head_description_icon svg {
  display: block;
  width: 21px;
  height: 21px;
  color: #7c1321;
}
.podcasts_row .podcasts_row__head .podcasts_row__head_description:hover .podcasts_row__head_description_text {
  opacity: 1;
}
.podcasts_row .podcasts_row__head .podcasts_row__head_description .podcasts_row__head_description_text {
  min-width: 354px;
  position: absolute;
  opacity: 0;
  transition: 0.3s;
  bottom: calc(100% + 20px);
  right: -50px;
  background: rgba(0, 0, 0, 0.5803921569);
  padding: 20px 30px;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none;
}
.podcasts_row .podcasts_row__head .podcasts_row__head_description .podcasts_row__head_description_text::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 45px;
  border-width: 15px 15px 0 15px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.5803921569) transparent transparent transparent;
  display: block;
  width: 0;
  height: 0;
}
.podcasts_row .podcasts_row__head .podcasts_row__head_button {
  margin-right: auto;
  max-width: 217px;
  width: 100%;
  border: 1px solid var(--color_orange);
  border-radius: 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  color: var(--color_orange);
  text-decoration: none;
  transition: all 0.3s ease;
  background: none;
}
.podcasts_row .podcasts_row__head .podcasts_row__head_button:hover {
  background: var(--color_orange);
  color: #fff;
}
.podcasts_row .podcasts_row__head .podcasts_row__head_button svg {
  display: block;
  width: 23px;
  height: 16px;
  transform: rotate(180deg);
  transition: 0.3s;
}
.podcasts_row .podcasts_row__slider_wrapper {
  position: relative;
  overflow: visible;
}
.podcasts_row .podcasts_row__slider_wrapper .swiper-button-prev,
.podcasts_row .podcasts_row__slider_wrapper .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  height: auto;
  margin-top: 0;
  z-index: 10;
  color: #3d3d3d;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transition: all 0.3s ease;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
.podcasts_row .podcasts_row__slider_wrapper .swiper-button-prev:after,
.podcasts_row .podcasts_row__slider_wrapper .swiper-button-next:after {
  font-size: 34px;
  font-weight: 300;
}
.podcasts_row .podcasts_row__slider_wrapper .swiper-button-prev:hover,
.podcasts_row .podcasts_row__slider_wrapper .swiper-button-next:hover {
  background: transparent;
  color: var(--color_orange);
  box-shadow: none;
}
.podcasts_row .podcasts_row__slider_wrapper .swiper-button-prev:focus,
.podcasts_row .podcasts_row__slider_wrapper .swiper-button-next:focus {
  outline: none;
}
.podcasts_row .podcasts_row__slider_wrapper .swiper-button-prev:active,
.podcasts_row .podcasts_row__slider_wrapper .swiper-button-next:active {
  outline: none;
}
.podcasts_row .podcasts_row__slider_wrapper .swiper-button-prev.swiper-button-disabled,
.podcasts_row .podcasts_row__slider_wrapper .swiper-button-next.swiper-button-disabled {
  opacity: 0.3;
}
@media (max-width: 1780px) {
  .podcasts_row .podcasts_row__slider_wrapper .swiper-button-prev,
  .podcasts_row .podcasts_row__slider_wrapper .swiper-button-next {
    display: none;
  }
}
.podcasts_row .podcasts_row__slider_wrapper .swiper-button-prev {
  right: -60px;
  left: auto;
  transform: rotate(180deg);
}
.podcasts_row .podcasts_row__slider_wrapper .swiper-button-next {
  left: -60px;
  right: auto;
  transform: rotate(180deg);
}
.podcasts_row .podcasts_row__slider {
  position: relative;
  width: 100%;
}
.podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide {
  height: auto !important;
}
.podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item {
  background: #fff;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.0509803922);
  border: 1px solid #e4e4e4;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__head {
  width: 100%;
}
.podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__head .podcasts_item__head_video,
.podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__head .podcasts_item__head_audio_youtube {
  position: relative;
  width: 100%;
  aspect-ratio: 1.7;
  background: #000;
  overflow: hidden;
  cursor: pointer;
}
.podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__head .podcasts_item__head_video:hover .podcasts_item__head_play_button,
.podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__head .podcasts_item__head_audio_youtube:hover .podcasts_item__head_play_button {
  color: #fff;
}
.podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__head .podcasts_item__head_preview_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 2;
  background: #000;
}
.podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__head .podcasts_item__head_play_button {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  width: 70px;
  height: 70px;
  margin: auto;
  transition: 0.3s;
  color: var(--color_orange);
  z-index: 9;
}
.podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__head .podcasts_item__head_play_button svg {
  width: 100%;
  height: 100%;
  display: block;
}
.podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__head .podcasts_item__head_video_iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: none;
  border: 0;
}
.podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__head .podcasts_item__head_video_file {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
  display: none;
}
.podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__head .podcasts_item__head_audio {
  position: relative;
  width: 100%;
  aspect-ratio: 1.7;
  background: #000;
  overflow: hidden;
}
.podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__head .podcasts_item__head_audio img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  background: #000;
}
.podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__head .podcasts_item__head_audio > div {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 5px;
  z-index: 3;
  background: #000;
}
.podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__head .podcasts_item__head_audio audio {
  width: 100%;
  filter: invert(1);
  height: 20px;
}
.podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_title {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.15;
  color: #3d3d3d;
  border-bottom: 1px solid #d5d5d5;
  padding-bottom: 20px;
  margin-bottom: 20px;
  min-height: 92px;
}
.podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_title a:hover {
  color: var(--color_orange);
}
.podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_description {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  color: #3d3d3d;
  margin-bottom: 20px;
}
.podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_button {
  max-width: 124px;
  width: 100%;
  padding: 10px;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--color_orange);
  border-radius: 7px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.2;
  color: #3d3d3d;
  transition: 0.3s;
}
.podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_button:hover {
  background: var(--color_orange);
  color: #fff;
}
.podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  min-width: 58px;
  width: auto;
  min-height: 58px;
  padding: 10px;
  border: 1px solid #d4d4d4;
  border-radius: 7px;
}
.podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_date .podcasts_item__body_foot_date_day {
  display: block;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  color: #3d3d3d;
}
.podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_date .podcasts_item__body_foot_date_month {
  display: block;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.2;
  color: #3d3d3d;
  margin-top: 2px;
}
.podcasts_row .podcasts_row__slider .swiper-pagination {
  position: relative;
  bottom: auto;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  z-index: 10;
}
@media (min-width: 1781px) {
  .podcasts_row .podcasts_row__slider .swiper-pagination {
    display: none;
  }
}
.podcasts_row .podcasts_row__slider .swiper-pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background: rgba(0, 0, 0, 0.27);
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
  margin: 0;
  cursor: pointer;
}
.podcasts_row .podcasts_row__slider .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--color_orange);
  width: 29px;
  border-radius: 7px;
}
.podcasts_row .podcasts_row__slider .swiper-pagination .swiper-pagination-bullet:hover {
  background: var(--color_orange);
}
@media (max-width: 768px) {
  .podcasts_row .podcasts_row_content {
    padding: 30px 0;
  }
  .podcasts_row .podcasts_row__head {
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
  }
  .podcasts_row .podcasts_row__head .podcasts_row__head_icon {
    width: 60px;
    min-width: 60px;
    height: 60px;
    border-radius: 15px;
    padding: 5px;
    order: 1;
  }
  .podcasts_row .podcasts_row__head .podcasts_row__head_title {
    font-size: 24px;
    order: 3;
  }
  .podcasts_row .podcasts_row__head .podcasts_row__head_description {
    order: 2;
  }
  .podcasts_row .podcasts_row__head .podcasts_row__head_description .podcasts_row__head_description_icon svg {
    width: 18px;
    height: 18px;
  }
  .podcasts_row .podcasts_row__head .podcasts_row__head_description .podcasts_row__head_description_text {
    min-width: 280px;
    font-size: 15px;
    padding: 15px 20px;
    bottom: calc(100% + 15px);
    right: -32px;
  }
  .podcasts_row .podcasts_row__head .podcasts_row__head_description .podcasts_row__head_description_text::after {
    right: 30px;
    border-width: 12px 12px 0 12px;
  }
  .podcasts_row .podcasts_row__head .podcasts_row__head_button {
    margin-right: 0;
    max-width: 100%;
    width: 100%;
    font-size: 18px;
    padding: 14px 20px;
    justify-content: center;
    order: 4;
  }
  .podcasts_row .podcasts_row__head .podcasts_row__head_button svg {
    width: 20px;
    height: 14px;
  }
  .podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__head .podcasts_item__head_video,
  .podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__head .podcasts_item__head_audio_youtube {
    aspect-ratio: 1.6;
  }
  .podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__head .podcasts_item__head_video .podcasts_item__head_play_button,
  .podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__head .podcasts_item__head_audio_youtube .podcasts_item__head_play_button {
    width: 60px;
    height: 60px;
  }
  .podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__head .podcasts_item__head_audio {
    aspect-ratio: 1.6;
  }
  .podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__head .podcasts_item__head_audio > div {
    padding: 12px 15px;
  }
  .podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body {
    padding: 18px;
  }
  .podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_title {
    font-size: 20px;
    padding-bottom: 12px;
    margin-bottom: 16px;
    min-height: auto;
  }
  .podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_description {
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 24px;
  }
  .podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_foot {
    gap: 15px;
    padding-top: 16px;
  }
  .podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_button {
    max-width: 100%;
    flex: 1;
    font-size: 15px;
    padding: 12px;
    min-height: 52px;
  }
  .podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_date {
    min-width: 58px;
    width: auto;
    min-height: 52px;
    padding: 8px 10px;
    white-space: nowrap;
  }
  .podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_date .podcasts_item__body_foot_date_day {
    font-size: 16px;
  }
  .podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_date .podcasts_item__body_foot_date_month {
    font-size: 12px;
  }
  .podcasts_row .podcasts_row__slider .swiper-pagination {
    margin-top: 25px;
    gap: 5px;
  }
  .podcasts_row .podcasts_row__slider .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
  .podcasts_row .podcasts_row__slider .swiper-pagination .swiper-pagination-bullet-active {
    width: 26px;
  }
}
@media (max-width: 424px) {
  .podcasts_row .podcasts_row_content {
    padding: 25px 0;
  }
  .podcasts_row .podcasts_row__head {
    gap: 16px;
    margin-bottom: 25px;
  }
  .podcasts_row .podcasts_row__head .podcasts_row__head_icon {
    width: 55px;
    min-width: 55px;
    height: 55px;
    border-radius: 12px;
  }
  .podcasts_row .podcasts_row__head .podcasts_row__head_title {
    font-size: 24px;
  }
  .podcasts_row .podcasts_row__head .podcasts_row__head_button {
    font-size: 16px;
    padding: 12px 18px;
  }
  .podcasts_row .podcasts_row__head .podcasts_row__head_button svg {
    width: 18px;
    height: 12px;
  }
  .podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__head .podcasts_item__head_video .podcasts_item__head_play_button,
  .podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__head .podcasts_item__head_audio_youtube .podcasts_item__head_play_button {
    width: 55px;
    height: 55px;
  }
  .podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body {
    padding: 16px;
  }
  .podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_title {
    font-size: 18px;
    padding-bottom: 10px;
    margin-bottom: 14px;
  }
  .podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_description {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_foot {
    gap: 12px;
    padding-top: 14px;
  }
  .podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_button {
    font-size: 14px;
    padding: 11px;
    min-height: 48px;
    order: 1;
    flex: 1 1 100%;
  }
  .podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_date {
    min-width: 58px;
    width: auto;
    min-height: 48px;
    padding: 7px 10px;
    order: 2;
    white-space: nowrap;
  }
  .podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_date .podcasts_item__body_foot_date_day {
    font-size: 15px;
  }
  .podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_date .podcasts_item__body_foot_date_month {
    font-size: 11px;
  }
  .podcasts_row .podcasts_row__slider .swiper-pagination {
    margin-top: 20px;
  }
}
@media (max-width: 424px) {
  .podcasts_row .podcasts_row__slider .swiper-wrapper .swiper-slide .podcasts_item .podcasts_item__head .podcasts_item__head_audio > div {
    padding: 10px 12px;
  }
}

.podcasts_slider {
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.podcasts_slider .podcasts_slider__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  max-height: 580px;
  background-size: cover;
  background-position: 50% 100%;
  background-repeat: no-repeat;
}
.podcasts_slider .podcasts_slider__overlay:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7137254902) 60%, #ffffff 100%);
  z-index: 1;
}
.podcasts_slider .container {
  position: relative;
  z-index: 2;
}
.podcasts_slider .podcasts_slider__head {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.podcasts_slider .podcasts_slider__head .podcasts_slider__head_icon {
  width: 81px;
  min-width: 81px;
  height: 81px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 19px;
}
.podcasts_slider .podcasts_slider__head .podcasts_slider__head_icon img {
  max-width: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.podcasts_slider .podcasts_slider__head .podcasts_slider__head_title {
  font-weight: 300;
  font-size: 38px;
  line-height: 1.1;
  color: #000000;
}
.podcasts_slider .podcasts_slider__head .podcasts_slider__head_title span {
  display: block;
  font-weight: 700;
  color: #7C1321;
}
.podcasts_slider .podcasts_slider__wrapper {
  position: relative;
  overflow: visible;
}
.podcasts_slider .podcasts_slider__slider {
  position: relative;
  width: 100%;
  margin: 0 -7vw;
  width: calc(100% + 14vw);
  padding: 0 7vw;
}
.podcasts_slider .podcasts_slider__slider .swiper-slide {
  height: auto !important;
}
.podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__head {
  width: 100%;
  position: relative;
  aspect-ratio: 1.8;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  padding: 25px 20px;
}
.podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__head .podcasts_slider__slider__item__head__image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background: #000;
  overflow: hidden;
}
.podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__head .podcasts_slider__slider__item__head__image .podcasts_slider__slider__item__head__image__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__head .podcasts_slider__slider__item__head__image .podcasts_slider__slider__item__head__image__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
  display: none;
}
.podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__head .podcasts_slider__slider__item__head__image iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__head .podcasts_slider__slider__item__head__info {
  display: flex;
  gap: 6px;
}
.podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__head .podcasts_slider__slider__item__head__info .podcasts_slider__slider__item__head__info__topic {
  min-width: 63px;
  min-height: 43px;
  padding: 5px;
  background: rgba(0, 0, 0, 0.37);
  backdrop-filter: blur(37px);
  -webkit-backdrop-filter: blur(37px);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.15;
  color: #fff;
}
.podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__head .podcasts_slider__slider__item__head__info .podcasts_slider__slider__item__head__info__date {
  min-width: 56px;
  min-height: 43px;
  padding: 5px;
  background: rgba(0, 0, 0, 0.37);
  backdrop-filter: blur(37px);
  -webkit-backdrop-filter: blur(37px);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.15;
  color: #fff;
}
.podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__head .podcasts_slider__slider__item__head__info .podcasts_slider__slider__item__head__info__date .podcasts_slider__slider__item__head__info__date__month {
  font-weight: 600;
}
.podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__head .podcasts_slider__slider__item__head__row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  position: relative;
}
.podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__head .podcasts_slider__slider__item__head__row .podcasts_slider__slider__item__head__row__title {
  max-width: 560px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  padding: 13px 20px;
}
.podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__head .podcasts_slider__slider__item__head__row .podcasts_slider__slider__item__head__row__title h2 {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  color: #fff;
  text-align: right;
}
.podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__head .podcasts_slider__slider__item__head__row .podcasts_slider__slider__item__head__row__icon_play {
  width: 64px;
  min-width: 64px;
  height: 64px;
  color: var(--color_orange);
  transition: 0.3s;
  cursor: pointer;
}
.podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__head .podcasts_slider__slider__item__head__row .podcasts_slider__slider__item__head__row__icon_play svg {
  width: 100%;
  height: 100%;
  display: block;
}
.podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__head .podcasts_slider__slider__item__head__row .podcasts_slider__slider__item__head__row__icon_play:hover {
  color: #fff;
}
.podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__head .podcasts_slider__slider__item__head__row .podcasts_slider__slider__item__head__row__icon_microphone {
  width: 64px;
  min-width: 64px;
  height: 64px;
  color: var(--color_orange);
  transition: 0.3s;
  cursor: pointer;
}
.podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__head .podcasts_slider__slider__item__head__row .podcasts_slider__slider__item__head__row__icon_microphone svg {
  width: 100%;
  height: 100%;
  display: block;
}
.podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__head .podcasts_slider__slider__item__head__row .podcasts_slider__slider__item__head__row__icon_microphone:hover {
  color: #fff;
}
.podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__foot {
  padding: 17px 25px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  background: #F1F3F4;
  flex-grow: 1;
}
.podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__foot .podcasts_slider__slider__item__foot__excerpt {
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  color: #3D3D3D;
  text-align: right;
}
.podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__foot .podcasts_slider__slider__item__foot__audio {
  width: 100%;
}
.podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__foot .podcasts_slider__slider__item__foot__audio audio {
  width: 100%;
  height: 47px;
}
.podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__foot .podcasts_slider__slider__item__foot__button {
  max-width: 124px;
  width: 100%;
  padding: 10px;
  min-height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color_orange);
  border-radius: 7px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.2;
  color: #3D3D3D;
  transition: 0.3s;
  margin-right: auto;
}
.podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__foot .podcasts_slider__slider__item__foot__button:hover {
  background: var(--color_orange);
  color: #fff;
}
.podcasts_slider .swiper-pagination {
  position: relative;
  bottom: auto;
  margin-top: 35px;
  width: 100%;
  height: 9px;
  background: #E4E4E4;
  border-radius: 17px;
  overflow: hidden;
  z-index: 10;
}
.podcasts_slider .swiper-pagination .swiper-pagination-progressbar-fill {
  background: #851E1D;
  height: 100%;
  border-radius: 17px;
  transition: transform 0.3s ease;
}
@media (max-width: 1600px) {
  .podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__head {
    padding: 12px 15px;
  }
  .podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__head .podcasts_slider__slider__item__head__row .podcasts_slider__slider__item__head__row__title {
    padding: 8px 14px;
  }
  .podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__head .podcasts_slider__slider__item__head__row .podcasts_slider__slider__item__head__row__title h2 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .podcasts_slider {
    padding: 30px 0;
  }
  .podcasts_slider .podcasts_slider__head {
    margin-bottom: 25px;
    gap: 16px;
  }
  .podcasts_slider .podcasts_slider__head .podcasts_slider__head_icon {
    width: 60px;
    min-width: 60px;
    height: 60px;
    border-radius: 14px;
  }
  .podcasts_slider .podcasts_slider__head .podcasts_slider__head_title {
    font-size: 24px;
    line-height: 1.2;
  }
  .podcasts_slider .podcasts_slider__wrapper {
    overflow: visible;
  }
  .podcasts_slider .podcasts_slider__slider {
    margin: 0 -5vw;
    width: calc(100% + 10vw);
    padding: 0 5vw;
  }
  .podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item {
    border-radius: 8px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1019607843);
  }
  .podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__head {
    aspect-ratio: 1.6;
    gap: 20px;
    padding: 18px 15px;
  }
  .podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__head .podcasts_slider__slider__item__head__info {
    gap: 8px;
  }
  .podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__head .podcasts_slider__slider__item__head__info .podcasts_slider__slider__item__head__info__topic {
    min-width: 55px;
    min-height: 38px;
    padding: 4px 8px;
    font-size: 11px;
    border-radius: 4px;
  }
  .podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__head .podcasts_slider__slider__item__head__info .podcasts_slider__slider__item__head__info__date {
    min-width: 50px;
    min-height: 38px;
    padding: 4px 8px;
    font-size: 11px;
    border-radius: 4px;
  }
  .podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__head .podcasts_slider__slider__item__head__row {
    gap: 16px;
    align-items: flex-end;
  }
  .podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__head .podcasts_slider__slider__item__head__row .podcasts_slider__slider__item__head__row__title {
    max-width: 100%;
    padding: 10px 15px;
    border-radius: 4px;
  }
  .podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__head .podcasts_slider__slider__item__head__row .podcasts_slider__slider__item__head__row__title h2 {
    font-size: 18px;
    line-height: 1.25;
  }
  .podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__head .podcasts_slider__slider__item__head__row .podcasts_slider__slider__item__head__row__icon_play,
  .podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__head .podcasts_slider__slider__item__head__row .podcasts_slider__slider__item__head__row__icon_microphone {
    width: 50px;
    min-width: 50px;
    height: 50px;
  }
  .podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__foot {
    padding: 15px 18px;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__foot .podcasts_slider__slider__item__foot__excerpt {
    font-size: 15px;
    line-height: 1.3;
  }
  .podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__foot .podcasts_slider__slider__item__foot__audio audio {
    height: 42px;
  }
  .podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__foot .podcasts_slider__slider__item__foot__button {
    max-width: 100%;
    width: 100%;
    padding: 12px;
    min-height: 44px;
    font-size: 15px;
    margin-right: 0;
  }
  .podcasts_slider .swiper-pagination {
    margin-top: 25px;
    height: 6px;
    border-radius: 12px;
  }
}
@media (max-width: 560px) {
  .podcasts_slider {
    padding: 25px 0;
  }
  .podcasts_slider .podcasts_slider__head {
    margin-bottom: 20px;
    gap: 12px;
  }
  .podcasts_slider .podcasts_slider__head .podcasts_slider__head_icon {
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 12px;
  }
  .podcasts_slider .podcasts_slider__head .podcasts_slider__head_title {
    font-size: 20px;
  }
  .podcasts_slider .podcasts_slider__slider {
    margin: 0 -4vw;
    width: calc(100% + 8vw);
    padding: 0 4vw;
  }
  .podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__head {
    aspect-ratio: 1.5;
    gap: 16px;
    padding: 15px 12px;
  }
  .podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__head .podcasts_slider__slider__item__head__info {
    gap: 6px;
  }
  .podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__head .podcasts_slider__slider__item__head__info .podcasts_slider__slider__item__head__info__topic {
    min-width: 50px;
    min-height: 35px;
    padding: 3px 6px;
    font-size: 10px;
  }
  .podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__head .podcasts_slider__slider__item__head__info .podcasts_slider__slider__item__head__info__date {
    min-width: 45px;
    min-height: 35px;
    padding: 3px 6px;
    font-size: 10px;
  }
  .podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__head .podcasts_slider__slider__item__head__row {
    gap: 12px;
  }
  .podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__head .podcasts_slider__slider__item__head__row .podcasts_slider__slider__item__head__row__title {
    padding: 8px 12px;
  }
  .podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__head .podcasts_slider__slider__item__head__row .podcasts_slider__slider__item__head__row__title h2 {
    font-size: 16px;
    line-height: 1.3;
  }
  .podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__head .podcasts_slider__slider__item__head__row .podcasts_slider__slider__item__head__row__icon_play,
  .podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__head .podcasts_slider__slider__item__head__row .podcasts_slider__slider__item__head__row__icon_microphone {
    width: 44px;
    min-width: 44px;
    height: 44px;
  }
  .podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__foot {
    padding: 12px 15px;
    gap: 16px;
  }
  .podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__foot .podcasts_slider__slider__item__foot__excerpt {
    font-size: 14px;
    line-height: 1.35;
  }
  .podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__foot .podcasts_slider__slider__item__foot__audio audio {
    height: 40px;
  }
  .podcasts_slider .podcasts_slider__slider .podcasts_slider__slider__item .podcasts_slider__slider__item__foot .podcasts_slider__slider__item__foot__button {
    padding: 11px;
    min-height: 42px;
    font-size: 14px;
  }
  .podcasts_slider .swiper-pagination {
    margin-top: 20px;
    height: 5px;
  }
}

/* All Podcasts and Search Section */
.all_podcasts_and_search .all_podcasts_and_search__head {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 80px 0 0;
  border-radius: 0 0 24px 24px;
}
.all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__title {
  font-weight: 700;
  font-size: 38px;
  line-height: 1.2;
  color: #000000;
  margin: 0 0 84px;
  text-align: center;
}
.all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap {
  max-width: 1434px;
  width: 100%;
  margin: 0 auto -40px;
  background: #fff;
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.1098039216);
  border-radius: 15px;
  padding: 26px 60px 40px;
}
.all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form_title {
  font-weight: 400;
  font-size: 30px;
  line-height: 1.2;
  color: #000;
  margin: 0 0 38px;
  text-align: center;
}
.all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item {
  display: flex;
  align-items: center;
  gap: 24px;
}
.all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .custom_select_wrapper {
  position: relative;
  width: 100%;
}
.all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .custom_select_wrapper.has-value .custom_select_trigger {
  color: #000;
}
.all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .custom_select_wrapper .custom_select_trigger {
  width: 100%;
  height: 58px;
  padding: 10px 40px 10px 30px;
  border: 1px solid #A5A5A5;
  border-radius: 5px;
  background: #fff;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #8E8E8E;
  text-align: right;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .custom_select_wrapper .custom_select_trigger:hover {
  border-color: #a02a28;
}
.all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .custom_select_wrapper .custom_select_trigger:focus {
  outline: none;
  border-color: #851E1D;
  box-shadow: 0 0 0 3px rgba(133, 30, 29, 0.1);
}
.all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .custom_select_wrapper .custom_select_trigger .custom_select_value {
  flex: 1;
  text-align: right;
}
.all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .custom_select_wrapper .custom_select_trigger .custom_select_arrow {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 7px solid #ACACAC;
  transition: transform 0.3s ease;
}
.all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .custom_select_wrapper .custom_select_trigger::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  pointer-events: none;
}
.all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .custom_select_wrapper--topics .custom_select_trigger::after {
  background-image: url('data:image/svg+xml,<svg width="800px" height="800px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 2L2 7L12 12L22 7L12 2Z" stroke="%231F1F1F" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M2 17L12 22L22 17" stroke="%231F1F1F" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M2 12L12 17L22 12" stroke="%231F1F1F" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .custom_select_wrapper--authors .custom_select_trigger::after {
  background-image: url('data:image/svg+xml,<svg width="800px" height="800px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 12C14.7614 12 17 9.76142 17 7C17 4.23858 14.7614 2 12 2C9.23858 2 7 4.23858 7 7C7 9.76142 9.23858 12 12 12Z" stroke="%231F1F1F" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M3.40991 22C3.40991 18.13 7.25994 15 11.9999 15" stroke="%231F1F1F" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M18.2 21.4C19.9673 21.4 21.4 19.9673 21.4 18.2C21.4 16.4327 19.9673 15 18.2 15C16.4327 15 15 16.4327 15 18.2C15 19.9673 16.4327 21.4 18.2 21.4Z" stroke="%231F1F1F" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M22 22L21 21" stroke="%231F1F1F" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .custom_select_wrapper--keywords .custom_select_trigger::after {
  background-image: url('data:image/svg+xml,<svg fill="%231F1F1F" width="800px" height="800px" viewBox="-2 -4 24 24" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin" class="jam jam-settings-alt"><path d="M9 12V1a1 1 0 1 1 2 0v11h1a1 1 0 0 1 0 2h-1v1a1 1 0 0 1-2 0v-1H8a1 1 0 0 1 0-2h1zm7-10V1a1 1 0 0 1 2 0v1h1a1 1 0 0 1 0 2h-1v11a1 1 0 0 1-2 0V4h-1a1 1 0 0 1 0-2h1zM4 5h1a1 1 0 1 1 0 2H4v8a1 1 0 0 1-2 0V7H1a1 1 0 1 1 0-2h1V1a1 1 0 1 1 2 0v4z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .custom_select_wrapper.is-open {
  z-index: 1001;
}
.all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .custom_select_wrapper.is-open .custom_select_trigger {
  border-color: #851E1D;
  box-shadow: 0 0 0 3px rgba(133, 30, 29, 0.1);
  z-index: 1002;
}
.all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .custom_select_wrapper.is-open .custom_select_trigger .custom_select_arrow {
  transform: translateY(-50%) rotate(180deg);
  border-top-color: #851E1D;
}
.all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .custom_select_wrapper.is-open .custom_select_dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .custom_select_wrapper .custom_select_dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #851E1D;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  padding: 4px 0;
}
.all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .custom_select_wrapper .custom_select_dropdown::-webkit-scrollbar {
  width: 6px;
}
.all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .custom_select_wrapper .custom_select_dropdown::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
.all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .custom_select_wrapper .custom_select_dropdown::-webkit-scrollbar-thumb {
  background: #851E1D;
  border-radius: 3px;
}
.all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .custom_select_wrapper .custom_select_dropdown::-webkit-scrollbar-thumb:hover {
  background: #a02a28;
}
.all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .custom_select_wrapper .custom_select_dropdown .custom_select_option {
  padding: 10px 15px;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  text-align: right;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  background: transparent;
}
.all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .custom_select_wrapper .custom_select_dropdown .custom_select_option:hover {
  background: #f8f8f8;
  color: #851E1D;
}
.all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .custom_select_wrapper .custom_select_dropdown .custom_select_option.is-selected {
  background: #fff5f4;
  color: #851E1D;
}
.all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .custom_select_wrapper .custom_select_dropdown .custom_select_option:focus {
  outline: none;
  background: #f8f8f8;
}
.all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .custom_select_wrapper .custom_select_dropdown .custom_select_option.is-placeholder {
  color: #8E8E8E;
  cursor: default;
  pointer-events: none;
  opacity: 0.6;
}
.all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .custom_select_wrapper .custom_select_dropdown .custom_select_option.is-placeholder:hover {
  background: transparent;
  color: #8E8E8E;
}
.all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .custom_select_wrapper .custom_select_dropdown .custom_select_option.is-placeholder:focus {
  background: transparent;
}
.all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .all_podcasts_and_search__search_form__submit {
  min-width: 192px;
  width: 192px;
  padding: 10px 12px;
  height: 58px;
  border: 1px solid var(--color_orange);
  border-radius: 5px;
  background: var(--color_orange);
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .all_podcasts_and_search__search_form__submit:hover {
  background: #fff;
  color: var(--color_orange);
}
.all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .all_podcasts_and_search__search_form__submit svg {
  width: 26px;
  height: 26px;
  display: block;
}
.all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .all_podcasts_and_search__search_form__reset_btn {
  min-width: 58px;
  width: 58px;
  padding: 10px 12px;
  height: 58px;
  border: 1px solid #A5A5A5;
  border-radius: 5px;
  background: #fff;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  color: #3D3D3D;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .all_podcasts_and_search__search_form__reset_btn:hover {
  border-color: var(--color_orange);
  color: var(--color_orange);
}
.all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .all_podcasts_and_search__search_form__reset_btn svg {
  width: 30px;
  height: 30px;
  display: block;
}
.all_podcasts_and_search .all_podcasts_and_search__content {
  margin: 125px 0 90px;
}
.all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 45px;
}
.all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item {
  background: #fff;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.0509803922);
  border: 1px solid #E4E4E4;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__head {
  width: 100%;
}
.all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__head .podcasts_item__head_video,
.all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__head .podcasts_item__head_audio_youtube {
  position: relative;
  width: 100%;
  aspect-ratio: 1.7;
  background: #000;
  overflow: hidden;
  cursor: pointer;
}
.all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__head .podcasts_item__head_video:hover .podcasts_item__head_play_button,
.all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__head .podcasts_item__head_audio_youtube:hover .podcasts_item__head_play_button {
  color: #fff;
}
.all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__head .podcasts_item__head_preview_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 2;
  background: #000;
}
.all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__head .podcasts_item__head_play_button {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  width: 70px;
  height: 70px;
  margin: auto;
  transition: 0.3s;
  color: var(--color_orange);
  z-index: 9;
}
.all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__head .podcasts_item__head_play_button svg {
  width: 100%;
  height: 100%;
  display: block;
}
.all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__head .podcasts_item__head_video_iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: none;
  border: 0;
}
.all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__head .podcasts_item__head_video_file {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
  display: none;
}
.all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__head .podcasts_item__head_audio {
  position: relative;
  width: 100%;
  aspect-ratio: 1.7;
  background: #000;
  overflow: hidden;
}
.all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__head .podcasts_item__head_audio img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  background: #000;
}
.all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__head .podcasts_item__head_audio > div {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 5px;
  z-index: 3;
  background: #000;
}
.all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__head .podcasts_item__head_audio audio {
  width: 100%;
  filter: invert(1);
  height: 20px;
}
.all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__body .podcasts_item__body_title {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.15;
  color: #3D3D3D;
  border-bottom: 1px solid #D5D5D5;
  padding-bottom: 20px;
  margin-bottom: 20px;
  min-height: 92px;
}
.all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__body .podcasts_item__body_title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__body .podcasts_item__body_title a:hover {
  color: var(--color_orange);
}
.all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__body .podcasts_item__body_description {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  color: #3D3D3D;
  margin-bottom: 20px;
}
.all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__body .podcasts_item__body_foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_button {
  max-width: 124px;
  width: 100%;
  padding: 10px;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--color_orange);
  border-radius: 7px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.2;
  color: #3D3D3D;
  transition: 0.3s;
  text-decoration: none;
}
.all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_button:hover {
  background: var(--color_orange);
  color: #fff;
}
.all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  min-width: 58px;
  width: auto;
  min-height: 58px;
  padding: 10px;
  border: 1px solid #D4D4D4;
  border-radius: 7px;
}
.all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_date .podcasts_item__body_foot_date_day {
  display: block;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  color: #3D3D3D;
}
.all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_date .podcasts_item__body_foot_date_month {
  display: block;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.2;
  color: #3D3D3D;
  margin-top: 2px;
}
.all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__load_more_wrapper {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
.all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__load_more_wrapper .all_podcasts_and_search__load_more_indicator {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 400;
  font-size: 18px;
  color: #666;
}
.all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__load_more_wrapper .all_podcasts_and_search__load_more_indicator .all_podcasts_and_search__load_more_spinner {
  width: 24px;
  height: 24px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid var(--color_orange);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 1400px) {
  .all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  .all_podcasts_and_search .all_podcasts_and_search__head {
    gap: 50px;
    padding: 50px 0 0;
  }
  .all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__title {
    font-size: 32px;
    margin: 0 0 50px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap {
    padding: 24px 40px 32px;
    margin: 0 auto -30px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form_title {
    font-size: 24px;
    margin: 0 0 30px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .custom_select_wrapper .custom_select_trigger {
    height: 52px;
    font-size: 17px;
    padding: 10px 38px 10px 28px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .all_podcasts_and_search__search_form__submit {
    min-width: 160px;
    width: 160px;
    height: 52px;
    font-size: 22px;
    gap: 20px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .all_podcasts_and_search__search_form__submit svg {
    width: 22px;
    height: 22px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .all_podcasts_and_search__search_form__reset_btn {
    min-width: 52px;
    width: 52px;
    height: 52px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__content {
    margin: 80px 0 60px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__body {
    padding: 18px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__body .podcasts_item__body_title {
    font-size: 20px;
    min-height: 84px;
    padding-bottom: 14px;
    margin-bottom: 18px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__body .podcasts_item__body_description {
    font-size: 15px;
    margin-bottom: 26px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_button {
    max-width: 120px;
    min-height: 52px;
    font-size: 13px;
    padding: 9px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_date {
    min-width: 52px;
    min-height: 52px;
    padding: 9px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_date .podcasts_item__body_foot_date_day {
    font-size: 17px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__load_more_wrapper {
    margin-top: 40px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__load_more_wrapper .all_podcasts_and_search__load_more_btn {
    padding: 14px 36px;
    font-size: 19px;
  }
}
@media (max-width: 768px) {
  .all_podcasts_and_search .all_podcasts_and_search__head {
    gap: 40px;
    padding: 40px 0 0;
    border-radius: 0 0 16px 16px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__title {
    font-size: 28px;
    margin: 0 0 30px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap {
    padding: 20px 24px 28px;
    border-radius: 12px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form_title {
    font-size: 20px;
    margin: 0 0 24px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item {
    flex-direction: column;
    gap: 16px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .custom_select_wrapper {
    max-width: 100%;
    min-width: 150px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .custom_select_wrapper .custom_select_trigger {
    min-width: 150px;
    height: 48px;
    padding: 10px 35px 10px 25px;
    font-size: 16px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .custom_select_wrapper .custom_select_dropdown .custom_select_option {
    padding: 9px 14px;
    font-size: 15px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .all_podcasts_and_search__search_form__submit {
    min-width: 100%;
    width: 100%;
    height: 50px;
    font-size: 20px;
    gap: 18px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .all_podcasts_and_search__search_form__submit svg {
    width: 20px;
    height: 20px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .all_podcasts_and_search__search_form__reset_btn {
    height: 50px;
    font-size: 16px;
    min-width: auto;
    width: 100%;
  }
  .all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .all_podcasts_and_search__search_form__reset_btn svg {
    width: 16px;
    height: 16px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__content {
    margin: 70px 0 40px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__body {
    padding: 16px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__body .podcasts_item__body_title {
    font-size: 19px;
    min-height: auto;
    padding-bottom: 12px;
    margin-bottom: 16px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__body .podcasts_item__body_description {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_button {
    max-width: 110px;
    min-height: 50px;
    font-size: 13px;
    padding: 8px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_date {
    min-width: 50px;
    min-height: 50px;
    padding: 8px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_date .podcasts_item__body_foot_date_day {
    font-size: 16px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_date .podcasts_item__body_foot_date_month {
    font-size: 12px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__load_more_wrapper {
    margin-top: 30px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__load_more_wrapper .all_podcasts_and_search__load_more_btn {
    padding: 12px 30px;
    font-size: 18px;
  }
}
@media (max-width: 560px) {
  .all_podcasts_and_search .all_podcasts_and_search__head {
    gap: 30px;
    padding: 30px 0 0;
  }
  .all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__title {
    margin: 0 0 24px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap {
    padding: 18px 20px 24px;
    border-radius: 10px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form_title {
    font-size: 18px;
    margin: 0 0 20px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .custom_select_wrapper .custom_select_trigger {
    height: 46px;
    padding: 10px 32px 10px 22px;
    font-size: 15px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .custom_select_wrapper .custom_select_dropdown .custom_select_option {
    padding: 8px 12px;
    font-size: 14px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .all_podcasts_and_search__search_form__submit {
    height: 48px;
    font-size: 18px;
    gap: 16px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .all_podcasts_and_search__search_form__submit svg {
    width: 18px;
    height: 18px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__head .all_podcasts_and_search__search_form_wrap .all_podcasts_and_search__search_form .all_podcasts_and_search__search_form__item .all_podcasts_and_search__search_form__reset_btn {
    height: 48px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__body {
    padding: 14px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__body .podcasts_item__body_title {
    font-size: 18px;
    padding-bottom: 10px;
    margin-bottom: 14px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__body .podcasts_item__body_description {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_button {
    max-width: 100%;
    min-height: 48px;
    font-size: 14px;
    padding: 10px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_date {
    min-width: 48px;
    min-height: 48px;
    padding: 8px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_date .podcasts_item__body_foot_date_day {
    font-size: 15px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__grid .tax_topics__item .podcasts_item .podcasts_item__body .podcasts_item__body_foot .podcasts_item__body_foot_date .podcasts_item__body_foot_date_month {
    font-size: 11px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__load_more_wrapper {
    margin-top: 24px;
  }
  .all_podcasts_and_search .all_podcasts_and_search__content .all_podcasts_and_search__load_more_wrapper .all_podcasts_and_search__load_more_btn {
    padding: 12px 28px;
    font-size: 17px;
  }
}/*# sourceMappingURL=app.css.map */