@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --header-height: 108px;
  --hoverGradient: linear-gradient(45deg, #4456A8 0%, #F8C8E0 100%);
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

body {
  margin: 0;
  padding: var(--header-height) 0 0;
  font-family: "Roboto", sans-serif;
  line-height: 35px;
  font-size: 30px;
  color: #000000;
}
body.admin-bar {
  padding-top: calc(var(--header-height) - 32px);
}

.autoCon01 {
  width: 100%;
  max-width: 1850px;
  padding: 0 20px;
  margin: auto;
}

header {
  width: 100%;
  background-color: #000;
  padding: 0 55px;
  height: var(--header-height);
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  z-index: 9;
}
header .autoCon01 {
  padding: 0;
}
header .headerInn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .headerInn .logo {
  min-width: 306px;
  width: 306px;
}
header .headerInn .grayScaleCtrl, header .headerInn .searchCon {
  width: 44px;
  min-width: 44px;
  height: 30px;
  border: solid 1px #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 18px;
}
header .headerInn .grayScaleCtrl.active, header .headerInn .searchCon.active {
  background-color: #fff;
}
header .headerInn .grayScaleCtrl.active img, header .headerInn .searchCon.active img {
  filter: brightness(0);
}
header .headerInn .mainNav {
  width: 100%;
  text-align: center;
  justify-content: center;
}
header .headerInn .mainNav ul {
  display: flex;
  justify-content: space-evenly;
  margin: 0;
  padding: 0;
}
header .headerInn .mainNav ul li {
  list-style: none;
}
header .headerInn .mainNav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: block;
  padding-top: 3px;
  text-transform: uppercase;
}
header .headerInn .mainNav ul li.langCtrl {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
}
header .headerInn .mainNav ul li.langCtrl a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  border: solid 1px #fff;
  cursor: pointer;
  border-radius: 18px;
  width: 91px;
  min-width: 91px;
}
header .headerInn .mainNav ul li.langCtrl a:hover {
  background-color: #fff;
  color: #000;
}

.headerSearchToggle {
  display: none;
}

.headerSearchCon {
  width: 100%;
  height: 289px;
  position: fixed;
  top: var(--header-height);
  left: 0;
  z-index: 10;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(206, 212, 235) 70%, rgba(255, 255, 255, 0.9) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.searchBar01 {
  width: 100%;
  max-width: 990px;
  padding: 0 20px;
  display: flex;
}
.searchBar01 .searchField {
  width: 100%;
  border: none;
  border-bottom: solid 1px #000;
  padding: 0 0 20px;
  outline: none;
  font-size: 36px;
  background-color: transparent;
}
.searchBar01 .searchSubmit {
  width: 45px;
  height: 45px;
  border: none;
  background-color: transparent;
  color: transparent;
  cursor: pointer;
  overflow: hidden;
  background-image: url("../img/searchIcon.svg");
  background-size: cover;
  filter: brightness(1) invert(1);
  margin-left: 30px;
}

body.darkMode {
  background: #000000;
  background-image: unset !important;
}
body.darkMode .svgInline, body.darkMode .svgInline path {
  fill: #FFFFFF !important;
}
body.darkMode *:not(.active, .active *,
.tabCon .tabs .tabsList ul li,
.tabContentCon, .postBox01Inn, .searchSubmit, .podcastBanner, .podcastBanner *, .heroBanner, .heroBanner *, .workspaceBox, .workspaceBox *,
.contactForm, .contactForm *, .bannerLeft, .bannerLeft *) {
  background: #000000 !important;
  border-color: #FFFFFF !important;
  color: #FFFFFF !important;
}
body.darkMode .searchSubmit {
  filter: invert(0);
}

@media (max-width: 1440px) {
  :root {
    --header-height: 90px;
  }
  header {
    padding: 0 20px;
  }
  header .headerInn .logo {
    min-width: 200px;
  }
  header .headerInn .mainNav ul li a {
    font-size: 14px;
  }
}
@media (max-width: 1200px) {
  header .headerInn .logo {
    min-width: 150px;
  }
  header .headerInn .mainNav ul li a {
    font-size: 13px;
  }
  header .headerInn .mainNav ul li.langCtrl a {
    max-width: 75px;
    min-width: auto;
  }
}
.showMobile {
  display: none;
}

@media (max-width: 992px) {
  :root {
    --header-height: 36px;
  }
  .hideMobile {
    display: none !important;
  }
  .showMobile {
    display: flex;
  }
  header {
    padding: 0 10px;
  }
  header .headerInn .logo {
    min-width: 200px;
    max-width: 200px;
  }
  .mobileMenuBtn {
    margin-left: 28px;
  }
  .mobileMenu {
    width: 321px;
    position: fixed;
    height: calc(100% - var(--header-height));
    top: var(--header-height);
    overflow: auto;
    right: 0;
    background-color: #000000;
    display: none;
  }
  .mobileMenu ul {
    margin: 0;
    padding: 0;
  }
  .mobileMenu ul li {
    list-style: none;
    border-bottom: solid 1px #fff;
    display: block;
  }
  .mobileMenu ul li a {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 20px;
    line-height: 23px;
    font-weight: 500;
    display: block;
    padding: 15px 20px;
    text-align: center;
  }
  .mobileMenu ul li.langSearch {
    display: flex;
  }
  .mobileMenu ul li.langSearch a {
    width: 50%;
    text-decoration: none;
  }
  .mobileMenu ul li.langSearch a:first-child {
    border-right: solid 1px #fff;
  }
  .headerSearchToggle .headerSearchCon {
    height: 170px;
  }
  .searchBar01 {
    max-width: 80%;
  }
  .searchBar01 .searchField {
    font-size: 25px;
  }
  .searchBar01 .searchSubmit {
    width: 35px;
    height: 35px;
    margin-left: 15px;
  }
}
@media (max-width: 576px) {
  .searchBar01 {
    max-width: 263px;
  }
  .searchBar01 .searchField {
    font-size: 14px;
    padding: 0 0 10px;
  }
  .searchBar01 .searchSubmit {
    width: 14px;
    height: 14px;
    margin-left: 5px;
  }
}
footer {
  width: 100%;
  border-top: solid 1px #000;
  padding: 55px 0;
  text-align: center;
  display: block;
  margin-top: 120px;
}
footer a {
  display: inline-block;
}
footer .footerLogo {
  line-height: 1rem;
}
footer .footerLogo a svg {
  min-width: 300px;
}
footer .socialIcons {
  margin-top: 20px;
}
footer .socialIcons ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: baseline;
}
footer .socialIcons ul li {
  margin: 0 5px 0 5px;
}
footer .socialIcons ul li:last-child {
  margin: 0 5px 0 3px;
}
footer .socialIcons ul li a {
  display: block;
}
footer .footerMenu ul {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
footer .footerMenu ul li {
  margin: 0 15px;
}
footer .footerMenu ul li a {
  text-decoration: none;
  color: #000;
  font-size: 12px;
  display: block;
}
footer .copyrightText {
  color: #000;
  font-size: 12px;
  line-height: 100%;
  margin: 20px 0 0;
  letter-spacing: 0.1px;
}

.showMobile2 {
  display: none !important;
}

@media (max-width: 576px) {
  .hideMobile2 {
    display: none !important;
  }
  .showMobile2 {
    display: block !important;
  }
  footer {
    padding: 12px 10px;
    margin-top: 20px;
  }
  footer .footerInn {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    text-align: left;
  }
  footer .footerInn .footCol2 {
    width: 134px;
  }
  footer .footerInn .footCol2 .copyrightText {
    color: #000;
    font-size: 6.5px;
    margin-top: 10px;
  }
  footer .footerInn .footCol2 .footerLogo {
    width: 118px;
  }
  footer .footerInn .footCol2 .footerLogo a {
    display: block;
  }
  footer .footerInn .socialIcons {
    margin-top: 0;
  }
  footer .footerInn .socialIcons ul li {
    margin: 0 2px;
  }
  footer .footerInn .socialIcons ul li img {
    height: 8px;
  }
  footer .footerInn .socialIcons ul li:last-child img {
    height: 10px;
  }
  footer .footerInn .footerMenu {
    text-align: center;
  }
  footer .footerInn .footerMenu ul {
    margin: 0;
    padding: 0;
    display: inline-block;
  }
  footer .footerInn .footerMenu ul li {
    text-align: left;
    padding: 0 0 5px;
    display: block;
    width: 100%;
  }
  footer .footerInn .footerMenu ul li a {
    font-size: 10px;
    line-height: 100%;
    font-family: "Roboto", sans-serif;
  }
}
.content-wrapper {
  position: relative;
  z-index: 2;
  background-color: #FFFFFF;
  width: 100%;
  flex-direction: column;
  display: flex;
}

.heroBanner {
  width: 100%;
  position: fixed;
  top: var(--header-height);
  z-index: 0;
  background: #00002E;
  background: linear-gradient(0deg, #00002E 0%, #710056 43%, #69ED8B 100%);
  background: -webkit-linear-gradient(0deg, #00002E 0%, #710056 43%, #69ED8B 100%);
}
.heroBanner .bannerInn {
  display: flex;
  padding: 100px 0;
  font-size: 180px;
  line-height: 220px;
  color: #FFFFFF;
  font-family: "instrument-serif";
}
.heroBanner .bannerInn p {
  margin: 0;
  padding: 0;
}

.autoCon02 {
  max-width: 1920px;
  width: 100%;
  margin: auto;
  padding: 0 120px;
}

@media (max-width: 1440px) {
  .heroBanner .bannerInn {
    padding: 70px 0;
    font-size: 130px;
    line-height: 150px;
  }
}
@media (max-width: 1200px) {
  .autoCon02 {
    padding: 0 70px;
  }
  .heroBanner .bannerInn {
    padding: 50px 0;
    font-size: 90px;
    line-height: 110px;
  }
}
@media (max-width: 768px) {
  .autoCon02 {
    padding: 0 40px;
  }
  .heroBanner .bannerInn {
    padding: 50px 0;
    font-size: 50px;
    line-height: 70px;
  }
}
@media (max-width: 576px) {
  .autoCon02 {
    padding: 0 30px;
  }
  .heroBanner .bannerInn {
    padding: 30px 0;
  }
}
.autoCon03 {
  width: 100%;
  max-width: 1314px;
  padding: 0 20px;
  margin: auto;
}

.tabCon.hasWSBox .tabPostCon .tabPost .tabPostImg img {
  height: 329px;
}

.tabCon {
  display: flex;
  gap: 25px;
  margin-top: 30px;
}
.tabCon .tabPostCon {
  width: 59%;
  flex: 1;
}
.tabCon .tabPostCon .tabPost {
  background-color: #B0A1CC;
  border-radius: 20px;
  padding: 25px 15px;
  text-align: center;
  color: #0A1045;
  font-family: "Roboto", sans-serif;
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  line-height: 100%;
  font-weight: 700;
}
.tabCon .tabPostCon .tabPost .tabPostImg {
  width: 100%;
  margin-bottom: 15px;
}
.tabCon .tabPostCon .tabPost .tabPostImg img {
  width: 100%;
  height: 571px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.tabCon .tabPostCon .tabPost h2 {
  font-family: "Roboto", sans-serif;
  font-size: 36px;
  line-height: 40px;
  font-weight: 800;
}
.tabCon .tabPostCon .tabPost a {
  color: #0A1045;
  text-decoration: none;
}
.tabCon .tabPostCon .tabWsBoxCon {
  flex: 0 0 auto;
  margin-top: 15px;
}
.tabCon .tabs {
  width: 41%;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.tabCon .tabs .tabsList ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  overflow: hidden;
}
.tabCon .tabs .tabsList ul li {
  flex: 1 1 auto;
  text-align: center;
  background-color: #002A22;
  color: #5EF38C;
  height: 96px;
  padding-bottom: 21px;
  align-content: center;
  font-size: 24px;
  font-family: "Roboto", sans-serif;
  font-weight: 800;
  border-radius: 20px 20px 0 0;
  cursor: pointer;
}
.tabCon .tabs .tabsList ul li:last-child {
  margin-right: 0;
  background-color: #5EF38C;
  color: #002A22;
}
.tabCon .tabs .tabContentCon {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
  margin-top: -21px;
}
.tabCon .tabs .tabContentCon .eachTabContent {
  border-radius: 20px;
  padding: 25px 15px;
  background-color: #002A22;
  height: 100%;
  display: none;
}
.tabCon .tabs .tabContentCon .eachTabContent:last-child {
  background-color: #5EF38C;
  color: #002A22;
}
.tabCon .tabs .tabContentCon .eachTabContent:last-child ul li {
  border-bottom-color: #002A22;
  color: #002A22;
}
.tabCon .tabs .tabContentCon .eachTabContent:last-child ul li a {
  color: #002A22;
}
.tabCon .tabs .tabContentCon .eachTabContent.active {
  display: block;
}
.tabCon .tabs .tabContentCon .eachTabContent ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.tabCon .tabs .tabContentCon .eachTabContent ul li {
  border-bottom: solid 1px #000;
  padding: 15px 0;
  border-bottom: solid 1px #5EF38C;
  color: #5EF38C;
}
.tabCon .tabs .tabContentCon .eachTabContent ul li:last-child {
  border-bottom: none;
}
.tabCon .tabs .tabContentCon .eachTabContent ul li a {
  text-decoration: none;
  display: inline;
  color: #5EF38C;
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  line-height: 28px;
  font-weight: 800;
}
.tabCon .tabs .tabContentCon .eachTabContent ul li a.articles_Categories {
  border-radius: 18px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 7px 10px 5px;
  display: inline-block;
  margin-right: 10px;
}
@media (max-width: 768px) {
  .tabCon .tabs .tabContentCon .eachTabContent ul li a.articles_Categories {
    font-size: 10px;
    line-height: 11px;
    padding: 5px 15px 5px;
  }
}
.tabCon .tabs .tabContentCon .eachTabContent ul li a.author_name {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
}
.tabCon .tabs .tabContentCon .eachTabContent ul li span {
  display: inline-block;
}

@media (max-width: 768px) {
  .tabCon .tabPostCon .tabPost {
    padding: 10px;
    font-size: 14px;
    line-height: 20px;
  }
  .tabCon .tabPostCon .tabPost h2 {
    font-size: 20px;
    line-height: 24px;
  }
  .tabCon .tabPostCon .tabPost .tabPostImg img {
    height: 206px !important;
  }
  .tabCon .tabs .tabContentCon .eachTabContent {
    padding: 0 15px;
  }
  .tabCon .tabs .tabContentCon .eachTabContent ul li:last-child {
    border: none !important;
  }
  .tabCon .tabs .tabContentCon .eachTabContent ul li a {
    font-size: 16px;
    line-height: 18px;
  }
  .tabCon .tabs .tabContentCon .eachTabContent ul li a.author_name {
    font-size: 14px;
    line-height: 18px;
  }
  .tabCon .tabs .tabsList ul li {
    height: 57px;
    font-size: 16px;
    line-height: 18px;
  }
}
.workspaceBox {
  width: 100%;
  border-radius: 20px;
  background-color: #2541B2;
  color: #FFC4EB;
  max-width: 900px;
  margin: auto;
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  line-height: 24px;
  font-weight: 400;
  display: flex;
  border-radius: 20px;
  padding: 15px 10px;
  gap: 11px;
}
.workspaceBox a {
  color: #FFC4EB;
  text-decoration: none;
}
.workspaceBox h3 {
  margin: 0;
  padding: 0;
  width: 100%;
}
.workspaceBox .wsImg {
  flex: 0 0 50%;
  width: 50%;
  height: 236px;
}
.workspaceBox .wsImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.workspaceBox .wsContent {
  display: flex;
  flex-wrap: wrap;
  padding-right: 20px;
}
.workspaceBox .wsContent > * {
  width: 100%;
}
.workspaceBox .wsContent .wsMeta {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.workspaceBox .wsContent .wsBoxCTA a {
  border: solid 1px #FFC4EB;
  border-radius: 20px;
  padding: 7px 20px 5px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  text-transform: uppercase;
}

@media (max-width: 1200px) {
  .workspaceBox .wsImg {
    min-width: 200px;
    width: 200px;
  }
}
@media (max-width: 768px) {
  .workspaceBox {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
  }
  .workspaceBox .wsImg {
    min-width: 165px;
    width: 165px;
    height: 144px;
  }
  .workspaceBox h3 {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .workspaceBox .wsContent .wsMeta {
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
  }
  .workspaceBox .wsContent .wsBoxCTA a {
    font-family: "Roboto", sans-serif;
    font-size: 10px;
    line-height: 10px;
    font-weight: 400;
    padding: 4px 10px 2px;
  }
}
@media (max-width: 992px) {
  .tabCon {
    flex-direction: column;
  }
  .tabCon .tabPostCon {
    width: 100%;
  }
  .tabCon .tabs {
    width: 100%;
  }
}
.masonryBoxesCon h2 {
  margin: 70px 0 30px;
  padding: 0;
  font-family: "instrument-serif";
  font-size: 80px;
  line-height: 80px;
  font-weight: normal;
  text-align: center;
}
@media (max-width: 1200px) {
  .masonryBoxesCon h2 {
    font-family: "instrument-serif";
    font-size: 26px;
    line-height: 26px;
    font-weight: normal;
    margin: 50px 0 30px;
  }
}

.masonryBoxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(410px, 1fr));
  grid-auto-rows: 336px;
  grid-gap: 20px;
  grid-auto-flow: row dense;
  font-weight: 400;
  margin-bottom: 20px;
  position: relative;
}
.masonryBoxes.twoColumns {
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 536px;
}
@media (max-width: 1200px) {
  .masonryBoxes.twoColumns {
    grid-auto-rows: 380px;
  }
}
.masonryBoxes.twoColumns .postBox01 .imgWrap img {
  height: 341px;
}
.masonryBoxes.twoColumns .postBox01.twoSpanRow .imgWrap img {
  height: 906px;
}
@media (max-width: 1200px) {
  .masonryBoxes.twoColumns {
    grid-auto-rows: 380px;
  }
  .masonryBoxes.twoColumns .postBox01 .imgWrap img {
    height: 190px;
  }
  .masonryBoxes.twoColumns .postBox01.twoSpanRow .imgWrap img {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .masonryBoxes.twoColumns {
    display: block;
  }
  .masonryBoxes.twoColumns .postBox01:not(:first-child) {
    display: none;
  }
  .masonryBoxes.twoColumns .postBox01 .imgWrap img {
    height: 206px !important;
  }
}
@media (max-width: 768px) {
  .masonryBoxes {
    grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
  }
}
.masonryBoxes .postBox01 {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border: solid 1px #0A1045;
  background: white;
  border-radius: 20px;
  gap: 20px;
  /* For image hover */
  /* end image hover */
}
.masonryBoxes .postBox01 .hoverText {
  position: absolute;
  left: -270px;
  color: #2541B2;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  display: none;
  width: 250px;
  z-index: 999;
  font-family: "instrument-serif";
  font-size: 28px;
  line-height: 32px;
  font-weight: normal;
  font-style: italic;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 70px;
}
.masonryBoxes .postBox01 .hoverText.posRightTop {
  left: auto;
  right: -270px;
}
.masonryBoxes .postBox01 .hoverText.posLeftBottom {
  top: auto;
  bottom: 10px;
  left: -270px;
}
.masonryBoxes .postBox01 .hoverText.posRightBottom {
  top: auto;
  left: auto;
  right: -270px;
  bottom: 10px;
}
.masonryBoxes .postBox01 .hoverText p {
  margin: 0.5em;
  padding: 0;
}
.masonryBoxes .postBox01:hover {
  background: var(--hoverGradient);
}
.masonryBoxes .postBox01:hover .hoverText {
  display: block;
}
.masonryBoxes .postBox01.hoverImage .postBox01Inn {
  position: relative;
}
.masonryBoxes .postBox01.hoverImage .postBox01Inn::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hoverImage);
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.masonryBoxes .postBox01.hoverImage .postBox01Inn:hover::after {
  opacity: 1;
}
@media (max-width: 576px) {
  .masonryBoxes .postBox01 {
    gap: 10px;
  }
}
.masonryBoxes .postBox01 .imgWrap {
  z-index: 2;
  position: relative;
}
.masonryBoxes .postBox01 .imgWrap img {
  width: 100%;
  height: 302px;
  border: solid #0A1045 1px;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
.masonryBoxes .postBox01.twoSpanRow {
  grid-row: auto/span 2;
}
.masonryBoxes .postBox01 .postBox01Inn {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 15px;
}
.masonryBoxes .postBox01.twoSpanColumn {
  grid-column: auto/span 2;
  flex-direction: row;
}
.masonryBoxes .postBox01.twoSpanColumn .postBox01Inn {
  flex-direction: row;
}
.masonryBoxes .postBox01.twoSpanColumn .imgWrap {
  flex: 0 0 50%;
  height: auto;
}
.masonryBoxes .postBox01.twoSpanColumn .imgWrap img {
  height: 100%;
}
.masonryBoxes .postBox01 .postBoxContent {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 15px;
  position: relative;
  z-index: 2;
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  line-height: 28px;
  font-weight: 700;
}
.masonryBoxes .postBox01 .postBoxContent .termWrap {
  margin-bottom: 10px;
}
.masonryBoxes .postBox01 .postBoxContent .termWrap a {
  border: solid 1px #000000;
  border-radius: 18px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
  padding: 7px 10px 5px;
  display: inline-block;
  text-transform: uppercase;
}
.masonryBoxes .postBox01 .postBoxContent a {
  text-decoration: none;
  color: #000000;
}
.masonryBoxes .postBox01 .postBoxContent a.author_name {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  line-height: 100%;
  font-weight: 700;
}
.masonryBoxes .postBox01 .postBoxContent a.post_title {
  font-family: "Roboto", sans-serif;
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 4; /* number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.masonryBoxes .postBox01 .postBoxContent h4 {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-size: 28px;
  line-height: 32px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .masonryBoxesCon .autoCon03 {
    padding: 0 6px;
  }
  .masonryBoxesCon .masonryBoxes {
    gap: 13px;
    grid-auto-rows: 162px;
  }
  .masonryBoxesCon .masonryBoxes .postBox01 {
    border-width: 1px;
  }
  .masonryBoxesCon .masonryBoxes .postBox01 .postBox01Inn {
    padding: 8px;
  }
  .masonryBoxesCon .masonryBoxes .postBox01 .imgWrap img {
    height: 144px;
  }
  .masonryBoxesCon .masonryBoxes .postBox01 .postBoxContent .termWrap {
    margin-bottom: 10px;
  }
  .masonryBoxesCon .masonryBoxes .postBox01 .postBoxContent .termWrap a {
    font-size: 10px;
    line-height: 10px;
  }
  .masonryBoxesCon .masonryBoxes .postBox01 .postBoxContent a.author_name {
    font-size: 14px;
    line-height: 20px;
  }
  .masonryBoxesCon .masonryBoxes .postBox01 .postBoxContent a.post_title {
    font-size: 18px;
    line-height: 20px;
  }
}
h2 {
  font-family: "Roboto", sans-serif;
  font-size: 36px;
  line-height: 38px;
}

h3 {
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  line-height: 24px;
  font-weight: 700;
}

._heading01 {
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 48px;
  line-height: 48px;
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 48px;
  line-height: 48px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 50px 0 60px;
}

.articoliNav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  row-gap: 10px;
  flex-wrap: wrap;
}
.articoliNav ul li a {
  text-decoration: none;
  font-family: "instrument-serif";
  font-size: 48px;
  line-height: 100%;
  font-weight: normal;
  text-transform: lowercase;
  color: #000000;
  display: block;
  padding: 10px 0;
  border-bottom: solid 2px transparent;
}
.articoliNav ul li a:hover, .articoliNav ul li a.active {
  border-bottom: solid 2px #000000;
}
.articoliNav ul li.active a {
  border-bottom: solid 1px #000000;
}

.searchBar02 {
  margin: 90px auto 150px;
}

.searchBar03 {
  margin: 90px auto 60px;
}

@media (max-width: 768px) {
  ._heading01 {
    font-size: 32px;
    line-height: 36px;
  }
  h1 {
    font-size: 32px;
    line-height: 36px;
    margin: 30px 0 40px;
  }
  .articoliNav ul li a {
    font-size: 24px;
    line-height: 100%;
  }
  .searchBar02 {
    margin: 50px auto 75px;
  }
  .searchBar03 {
    margin: 50px auto 50px;
  }
}
@media (max-width: 576px) {
  h1 {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    line-height: 100%;
    font-weight: 700;
    margin: 30px 0 40px;
  }
  ._heading01 {
    font-size: 20px;
    line-height: 100%;
  }
  .articoliNav ul {
    gap: 20px;
  }
  .articoliNav ul li a {
    font-size: 18px;
    line-height: 100%;
  }
  .searchBar02 {
    margin: 20px auto 35px;
  }
  .searchBar03 {
    margin: 20px auto 35px;
  }
}
.autoCon04 {
  width: 100%;
  max-width: 990px;
  padding: 0 20px;
  margin: auto;
}

.postListView {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.postListView .postListItem {
  display: flex;
  gap: 20px;
}
.postListView .postListItem .posListtImg {
  flex: 0 0 232px;
  width: 232px;
  height: 193px;
}
.postListView .postListItem .posListtImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  border: solid 3px #000000;
}
.postListView .postListItem .posListContent {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
}
.postListView .postListItem .posListContent a.postTermEach {
  text-decoration: none;
  color: #000000;
  border: solid 1px #000000;
  border-radius: 18px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 7px 10px 5px;
  display: inline;
}
.postListView .postListItem .posListContent a.postTermEach:hover {
  background-color: #000000;
  color: #FFFFFF;
}
.postListView .postListItem .posListContent h3 {
  margin: 0 0 20px;
  padding: 0;
  display: inline;
  font-family: "Roboto", sans-serif;
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
}
.postListView .postListItem .posListContent h3 a {
  text-decoration: none;
  color: #000000;
}
.postListView .postListItem .posListContent .postAuthor {
  text-decoration: none;
  color: #000000;
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
}
.postListView .postListItem .posListContent .postListMeta {
  display: flex;
  justify-content: space-between;
}
.postListView .postListItem .posListContent .postListMeta .postTime {
  width: 140px;
}

@media (max-width: 768px) {
  .postListView {
    gap: 0;
  }
  .postListView .postListItem {
    border-bottom: solid 1px #000000;
    padding: 15px;
  }
  .postListView .postListItem .posListtImg {
    flex: 0 0 96px;
    width: 96px;
    height: 90px;
  }
  .postListView .postListItem .posListContent {
    font-family: "Roboto", sans-serif;
    font-size: 8px;
    line-height: 10px;
    font-weight: 400;
  }
  .postListView .postListItem .posListContent h3 {
    margin-bottom: 10px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
  }
  .postListView .postListItem .posListContent .postAuthor {
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    line-height: 12px;
    font-weight: 700;
  }
  .postListView .postListItem .posListContent .postListMeta .postTime {
    width: auto;
  }
}
.rubricheNav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.rubricheNav ul li {
  display: inline-block;
}
.rubricheNav ul li a {
  margin: 15px;
  font-family: "Roboto", sans-serif;
  font-size: 48px;
  line-height: 56px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 14px 30px 6px;
  border: solid 2px #000000;
  display: inline-block;
  border-radius: 38px;
  color: #000000;
  text-decoration: none;
}
.rubricheNav ul li a:hover, .rubricheNav ul li a.active {
  background-color: #000000;
  color: #FFFFFF;
}
@media (max-width: 992px) {
  .rubricheNav ul li a {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    padding: 14px 12px 6px;
    margin: 6px;
  }
}

.pad-0 {
  padding: 0;
}

.emptySpace90 {
  height: 90px;
  display: flex;
}
@media (max-width: 576px) {
  .emptySpace90 {
    height: 45px;
  }
}

.catInfoBlock {
  width: 100%;
  background: #C9C8E3;
  background: linear-gradient(45deg, #C9C8E3 0%, #E5DAEC 100%);
  background: -webkit-linear-gradient(45deg, #C9C8E3 0%, #E5DAEC 100%);
  margin-bottom: 60px;
  padding: 80px 0;
}
.catInfoBlock .catInfoInn {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}
.catInfoBlock .catInfoInn .catName {
  width: 38%;
}
.catInfoBlock .catInfoInn .catName h2 {
  font-family: "Roboto", sans-serif;
  font-size: 48px;
  line-height: 56px;
  font-weight: 400;
  padding: 14px 50px 6px;
  text-transform: uppercase;
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 38px;
  text-align: center;
  margin: 0;
}
.catInfoBlock .catInfoInn .catContent {
  width: 62%;
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  line-height: 38px;
  font-weight: 400;
}

@media (max-width: 992px) {
  .catInfoBlock {
    margin-bottom: 35px;
    padding: 15px 0 25px;
  }
  .catInfoBlock .catInfoInn {
    flex-direction: column;
    gap: 30px;
  }
  .catInfoBlock .catInfoInn .catName {
    width: 100%;
    text-align: center;
  }
  .catInfoBlock .catInfoInn .catName h2 {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    padding: 6px 15px 4px;
    display: inline-block;
  }
  .catInfoBlock .catInfoInn .catContent {
    width: 100%;
    font-size: 16px;
    line-height: 18px;
  }
}
.authorDetail {
  display: flex;
  width: 100%;
  gap: 50px;
}
.authorDetail .authorImgCon {
  width: 301px;
  flex: 0 0 301px;
}
.authorDetail .authorImgCon .authorImg {
  margin-bottom: 20px;
}
.authorDetail .authorImgCon .authorImg img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 301/398;
  border-radius: 20px;
}
.authorDetail .authorImgCon .authorSocial ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0 15px;
  display: flex;
  gap: 15px;
  align-items: center;
}
.authorDetail .authorContent {
  flex: 1;
}
.authorDetail .authorContent .accordion {
  padding: 40px;
  border-bottom: solid 2px #000000;
}
.authorDetail .authorContent .accordion:first-child {
  padding-top: 0;
}
.authorDetail .authorContent .accordion .accordionCtrl {
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-size: 28px;
  line-height: 28px;
  font-weight: 800;
  text-transform: uppercase;
}
.authorDetail .authorContent .accordion .accordionContent {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  line-height: 28px;
  font-weight: 400;
  margin-top: 40px;
}
.authorDetail .authorContent .accordion .workspaceBox {
  max-width: 717px;
}
.authorDetail .authorContent .accordion .postListView .postListItem:last-child {
  border: none;
}

@media (min-width: 1440px) and (max-width: 2500px) {
  .postListView02 {
    gap: 30px;
  }
  .postListView02 .postListItem .posListContent h3 {
    font-family: "Roboto", sans-serif;
    font-size: 28px;
    line-height: 36px;
    font-weight: 700;
  }
  .postListView02 .postListItem .posListContent .postListMeta {
    justify-content: flex-start;
    gap: 70px;
  }
}
@media (max-width: 992px) {
  .authorDetail {
    flex-direction: column;
  }
  .authorDetail .authorImgCon {
    margin: auto;
  }
  .authorDetail .authorImgCon .authorSocial ul {
    margin: 0;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .authorDetail .authorContent .accordion {
    padding: 15px;
  }
  .authorDetail .authorContent .accordion .accordionContent {
    margin-top: 25px;
  }
  .authorDetail .authorContent .accordion .accordionCtrl {
    text-align: center;
    font-size: 20px;
    line-height: 20px;
  }
  .authorDetail .authorContent .accordion .accordionContent {
    font-size: 16px;
    line-height: 18px;
  }
  .authorDetail .authorContent .accordion .workspaceBox {
    margin: 0 -20px;
    width: calc(100% + 40px);
  }
}
.pageContent {
  font-family: "Roboto", sans-serif;
  font-size: 40px;
  line-height: 48px;
  font-weight: 400;
  margin-bottom: 100px;
}

.workSpaceOuter {
  border-top: solid 2px #000000;
  padding: 0 0 100px;
}
.workSpaceOuter h2 {
  text-align: center;
  margin: 80px 0 120px;
  font-family: "Roboto", sans-serif;
  font-size: 48px;
  line-height: 100%;
  font-weight: 800;
}
.workSpaceOuter .workspaceBox {
  margin: 0;
}

.workSpaceCon {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* adjust */
}
.workSpaceCon > * {
  flex: 0 0 calc(50% - 10px); /* two columns */
  min-width: 0; /* allow children to shrink for overflow/scroll to work */
}

.contactForm {
  background-color: #0A1045;
  padding: 50px 100px 80px;
}
.contactForm h2 {
  font-family: "instrument-serif";
  font-size: 90px;
  line-height: 110px;
  font-weight: normal;
  color: #5EF38C;
  text-align: center;
  margin: 0 0 75px;
}
.contactForm .contactFormInn {
  width: 100%;
}
.contactForm .contactFormInn .formInn {
  display: flex;
  width: 100%;
  gap: 80px;
}
.contactForm .contactFormInn .formInn .formFeild {
  width: 100%;
}
.contactForm .contactFormInn .formInn .formFeild.submitButtonCon01 {
  margin-top: auto;
}
.contactForm .contactFormInn .formInn .formFeild p {
  margin: 0;
}
.contactForm .contactFormInn .formInn .formFeild .textField, .contactForm .contactFormInn .formInn .formFeild .submitButton, .contactForm .contactFormInn .formInn .formFeild .textArea {
  width: 100%;
  border: solid 2px #5EF38C;
  color: #5EF38C;
  /* Chrome, Safari, Opera */
  /* IE 10+ */
  /* Modern browsers */
  /* Firefox 4-18 */
  /* Firefox 19+ */
  background-color: transparent;
  font-family: "Roboto", sans-serif;
  font-size: 40px;
  line-height: 41px;
  font-weight: 500;
  height: 55px;
  padding: 7px 20px;
  text-align: center;
  border-radius: 27.5px;
  text-transform: lowercase;
  outline: none;
}
.contactForm .contactFormInn .formInn .formFeild .textField::-moz-placeholder, .contactForm .contactFormInn .formInn .formFeild .submitButton::-moz-placeholder, .contactForm .contactFormInn .formInn .formFeild .textArea::-moz-placeholder {
  color: #5EF38C;
  opacity: 1;
}
.contactForm .contactFormInn .formInn .formFeild .textField::placeholder, .contactForm .contactFormInn .formInn .formFeild .submitButton::placeholder, .contactForm .contactFormInn .formInn .formFeild .textArea::placeholder {
  color: #5EF38C;
  opacity: 1;
}
.contactForm .contactFormInn .formInn .formFeild .textField:-moz-placeholder, .contactForm .contactFormInn .formInn .formFeild .submitButton:-moz-placeholder, .contactForm .contactFormInn .formInn .formFeild .textArea:-moz-placeholder {
  color: #5EF38C;
  opacity: 1;
}
.contactForm .contactFormInn .formInn .formFeild .textField::-moz-placeholder, .contactForm .contactFormInn .formInn .formFeild .submitButton::-moz-placeholder, .contactForm .contactFormInn .formInn .formFeild .textArea::-moz-placeholder {
  color: #5EF38C;
  opacity: 1;
}
.contactForm .contactFormInn .formInn .formFeild .textField:focus, .contactForm .contactFormInn .formInn .formFeild .submitButton:focus, .contactForm .contactFormInn .formInn .formFeild .textArea:focus {
  outline: none;
}
.contactForm .contactFormInn .formInn .formFeild .textArea {
  text-align: left;
  height: 255px;
  padding-top: 20px !important;
}
.contactForm .contactFormInn .formInn .formFeild .submitButton {
  cursor: pointer;
  width: auto;
  padding-left: 40px;
  padding-right: 40px;
  text-transform: uppercase;
}
.contactForm .contactFormInn .formInn .checkBoxCon {
  width: 100%;
  border: solid 2px #5EF38C;
  border-radius: 27.5px;
  padding: 25px 30px 0;
}
.contactForm .contactFormInn .formInn .checkBoxCon p {
  margin: 0;
}
.contactForm .contactFormInn .formInn .checkBoxCon h4 {
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-size: 40px;
  line-height: 41px;
  font-weight: 500;
  color: #5EF38C;
  margin: 0;
  padding: 0;
  margin-bottom: 25px;
}
.contactForm .contactFormInn .formInn .checkBoxCon .wpcf7-list-item {
  margin: 0;
}
.contactForm .contactFormInn .formInn .checkBoxCon label {
  display: flex;
  font-family: "Roboto", sans-serif;
  font-size: 40px;
  line-height: 41px;
  font-weight: 500;
  color: #5EF38C;
  padding-left: 37px;
  position: relative;
  margin-right: 35px;
  margin-bottom: 35px;
}
.contactForm .contactFormInn .formInn .checkBoxCon label input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.contactForm .contactFormInn .formInn .checkBoxCon label:before {
  content: "";
  width: 24px;
  height: 24px;
  border: solid 2px #5EF38C;
  border-radius: 5px;
  position: absolute;
  left: 0px;
  margin-top: 8px;
}
.contactForm .contactFormInn .formInn .checkBoxCon label:after {
  content: "";
  width: 14px;
  height: 14px;
  background-color: #5EF38C;
  position: absolute;
  left: 7px;
  display: none;
  margin-top: 15px;
}
.contactForm .contactFormInn .formInn .checkBoxCon label:has(:checked):after {
  display: block;
}
.contactForm .contactFormInn .formInn .checkBoxCon > div {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  row-gap: 20px;
}
.contactForm .contactFormInn .formInn .formLeft {
  flex: 0 1 365px;
  width: 365px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contactForm .contactFormInn .formInn .formRight {
  flex: 1;
  gap: 22px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1440px) {
  .workSpaceCon {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .contactForm {
    margin: 0 -20px;
  }
  .contactForm h2 {
    font-family: "instrument-serif";
    font-size: 42px;
    line-height: 52px;
    font-weight: normal;
    margin: 0 0 38px;
  }
  .contactForm .contactFormInn .formInn .checkBoxCon label {
    font-size: 20px;
    line-height: 21px;
    padding-left: 21px;
  }
  .contactForm .contactFormInn .formInn .checkBoxCon label:before {
    height: 14px;
    width: 14px;
    border-radius: 3px;
    margin-top: 0;
  }
  .contactForm .contactFormInn .formInn .checkBoxCon label:after {
    width: 8px;
    height: 8px;
    left: 5px;
    margin-top: 5px;
  }
  .contactForm .contactFormInn .formInn .checkBoxCon h4 {
    font-size: 20px;
    line-height: 21px;
  }
  .contactForm .contactFormInn .formInn .formFeild .textField, .contactForm .contactFormInn .formInn .formFeild .submitButton, .contactForm .contactFormInn .formInn .formFeild .textArea {
    border: solid 1px #5EF38C;
    font-size: 20px;
    line-height: 21px;
    height: 31px;
    padding: 5px 20px;
  }
  .contactForm .contactFormInn .formInn .formFeild .textArea {
    height: 148px;
  }
  .contactForm .contactFormInn .formInn .formFeild .submitButton {
    padding-left: 25px;
    padding-right: 25px;
  }
  .contactForm .contactFormInn .formInn .formLeft {
    gap: 16px;
    flex: 0 1 265px;
    width: 265px;
  }
}
@media (max-width: 768px) {
  .pageContent {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    margin-bottom: 20px;
  }
  .workSpaceOuter {
    border-top: solid 1px #000000;
    padding: 0 0 40px;
  }
  .workSpaceOuter h2 {
    margin: 20px 0 40px;
    font-size: 32px;
    line-height: 36px;
  }
  .contactForm {
    padding: 50px 15px;
    margin: 0 -20px;
  }
  .contactForm h2 {
    font-family: "instrument-serif";
    font-size: 42px;
    line-height: 52px;
    font-weight: normal;
    margin: 0 0 38px;
  }
  .contactForm .contactFormInn .formInn {
    display: flex;
    width: 100%;
    gap: 0;
    flex-direction: column;
  }
  .contactForm .contactFormInn .formInn .checkBoxCon label {
    font-size: 20px;
    line-height: 21px;
    padding-left: 21px;
  }
  .contactForm .contactFormInn .formInn .checkBoxCon label:before {
    height: 14px;
    width: 14px;
    border-radius: 3px;
  }
  .contactForm .contactFormInn .formInn .checkBoxCon label:after {
    width: 8px;
    height: 8px;
    left: 5px;
    margin-top: 5px;
  }
  .contactForm .contactFormInn .formInn .checkBoxCon h4 {
    font-size: 20px;
    line-height: 21px;
  }
  .contactForm .contactFormInn .formInn .formFeild {
    text-align: center;
  }
  .contactForm .contactFormInn .formInn .formFeild.mobileW50 {
    width: calc(50% - 8px);
  }
  .contactForm .contactFormInn .formInn .formFeild .textField, .contactForm .contactFormInn .formInn .formFeild .submitButton, .contactForm .contactFormInn .formInn .formFeild .textArea {
    border: solid 1px #5EF38C;
    font-size: 20px;
    line-height: 21px;
    height: 31px;
    padding: 5px 20px;
  }
  .contactForm .contactFormInn .formInn .formFeild .textArea {
    height: 178px;
  }
  .contactForm .contactFormInn .formInn .formFeild .submitButton {
    padding-left: 25px;
    padding-right: 25px;
  }
  .contactForm .contactFormInn .formInn .formLeft {
    gap: 16px;
    margin-bottom: 16px;
    width: 100%;
    flex: 1;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.showMobile3 {
  display: none !important;
}

@media (max-width: 768px) {
  .hideMobile3 {
    display: none !important;
  }
  .showMobile3 {
    display: block !important;
  }
}
.autoCon05 {
  width: 100%;
  max-width: 1635px;
  padding: 0 20px;
  margin: auto;
}

.bannerSec {
  display: flex;
  margin: 45px 0 80px;
  gap: 20px;
}
.bannerSec h1 {
  text-align: left;
  font-family: "Roboto", sans-serif;
  font-size: 54px;
  line-height: 62px;
  font-weight: 800;
  text-transform: none;
  margin: 0;
}
.bannerSec .bannerLeft {
  font-family: "Roboto", sans-serif;
  font-size: 38px;
  line-height: 58px;
  font-weight: 700;
  width: 39%;
  background-color: #0A1045;
  color: #FD7B7B;
  padding: 0 40px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.bannerSec .bannerLeft .catAndTitle .taxonomyCTA {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  line-height: 36px;
  font-weight: 400;
  border: solid 2px #FD7B7B;
  padding: 13px 40px 9px;
  border-radius: 38px;
  margin-bottom: 20px;
  text-transform: uppercase;
  margin-right: 10px;
  margin-bottom: 10px;
}
.bannerSec .bannerLeft a.btn01 {
  text-transform: uppercase;
}
.bannerSec .bannerLeft a {
  color: #FD7B7B;
  text-decoration: none;
}
.bannerSec .bannerLeft .postMeta {
  display: flex;
  width: 100%;
  justify-content: space-between;
  font-family: "instrument-serif";
  font-size: 36px;
  line-height: 36px;
  font-weight: normal;
}
.bannerSec .bannerLeft .postMeta > div {
  border: solid 1px #FD7B7B;
  border-radius: 18px;
  padding: 4px 17px 2px;
  display: inline-block;
}
.bannerSec .bannerLeft.post_type_post .postMeta > div {
  border: none;
  border-radius: 0;
  padding: 0;
}
.bannerSec .bannerLeft .articoliCat {
  display: flex;
  gap: 25px;
}
.bannerSec .bannerLeft .articoliCat a {
  font-family: "instrument-serif";
  font-size: 32px;
  line-height: 24px;
  font-weight: normal;
  text-transform: lowercase;
}
.bannerSec .bannerRight {
  flex: 1;
  height: 640px;
}
.hasTaxnomy.bannerSec .bannerRight {
  height: 840px;
}

.bannerSec .bannerRight img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

.workShopSingleContent .postContent {
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  line-height: 36px;
  font-weight: 400;
  margin-bottom: 130px;
}
.workShopSingleContent .postAuthorDetail {
  display: flex;
  gap: 25px;
  margin-bottom: 120px;
}
.workShopSingleContent .postAuthorDetail .authorImgCon {
  margin-bottom: 20px;
  width: 301px;
  flex: 0 0 301px;
}
.workShopSingleContent .postAuthorDetail .authorImgCon img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 301/398;
  border-radius: 20px;
}
.workShopSingleContent .postAuthorDetail .authorDetail02 {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 25px;
  padding-top: 25px;
}
.workShopSingleContent .postAuthorDetail .authorDetail02 h3 {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-size: 48px;
  line-height: 48px;
  font-weight: 800;
  text-transform: uppercase;
}
.workShopSingleContent .postAuthorDetail .authorDetail02 .authorSocial02 ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
  align-items: center;
}
.workShopSingleContent .postAuthorDetail .authorDetail02 .authorSocial02 ul li img {
  height: 32px;
}
.workShopSingleContent .postCTA {
  text-align: center;
  margin-bottom: 192px;
}

.btn01 {
  font-family: "Roboto", sans-serif;
  font-size: 36px;
  line-height: 36px;
  font-weight: 400;
  padding: 14px 28px 10px;
  border-radius: 38px;
  border: solid 2px #FD7B7B;
}

.btn02 {
  font-family: "Roboto", sans-serif;
  font-size: 55px;
  line-height: 64px;
  font-weight: 400;
  padding: 19px 175px 11px;
  color: #5EF38C;
  background-color: #0A1045;
  text-decoration: none;
  border-radius: 47px;
}

@media (max-width: 768px) {
  .btn02 {
    font-size: 20px;
    line-height: 21px;
    padding: 7px 37px 3px;
    border-radius: 27.5px;
  }
  .workShopSingleContent {
    padding: 20px 20px;
  }
  .workShopSingleContent .postContent {
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 0;
  }
  .workShopSingleContent .postCTA {
    margin-bottom: 17px;
  }
  .workShopSingleContent .postAuthorDetail {
    gap: 15px;
    margin-bottom: 33px;
  }
  .workShopSingleContent .postAuthorDetail .authorDetail02 {
    padding-top: 5px;
  }
  .workShopSingleContent .postAuthorDetail .authorDetail02 h3 {
    font-size: 14px;
    line-height: 16px;
  }
  .workShopSingleContent .postAuthorDetail .authorDetail02 .authorSocial02 ul {
    gap: 10px;
  }
  .workShopSingleContent .postAuthorDetail .authorDetail02 .authorSocial02 ul li img {
    height: 20px;
  }
  .workShopSingleContent .postAuthorDetail .authorImgCon {
    margin-bottom: 20px;
    width: 136px;
    flex: 0 0 136px;
  }
}
.mt-30 {
  margin-top: 30px;
}

.showMobile04 {
  display: none !important;
}

@media (max-width: 1440px) {
  .bannerSec h1 {
    font-size: 32px;
    line-height: 40px;
  }
  .bannerSec .bannerLeft {
    font-size: 26px;
    line-height: 40px;
  }
  .bannerSec .bannerLeft .postMeta {
    font-size: 26px;
    line-height: 40px;
  }
  .bannerSec .bannerRight {
    height: 540px;
  }
  .btn01 {
    font-family: "Roboto", sans-serif;
    font-size: 26px;
    line-height: 40px;
    font-weight: 400;
    padding: 14px 18px 10px;
    border-radius: 38px;
    border: solid 2px #FD7B7B;
  }
}
@media (max-width: 1200px) {
  .hideMobile04 {
    display: none !important;
  }
  .showMobile04 {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .bannerSec {
    flex-direction: column;
    flex-flow: column-reverse;
    margin: 30px 0;
  }
  .bannerSec h1 {
    font-size: 22px;
    line-height: 26px;
    text-align: center;
  }
  .bannerSec .bannerRight {
    flex: auto;
    height: 324px !important;
  }
  .bannerSec .bannerLeft {
    width: 100%;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    padding: 15px;
  }
  .bannerSec .bannerLeft .labBtn {
    display: none;
  }
  .bannerSec .bannerLeft .catAndTitle .taxonomyCTA {
    font-size: 16px;
    line-height: 16px;
    padding: 4px 10px 2px;
    margin-right: 5px;
    margin-bottom: 5px;
  }
  .bannerSec .bannerLeft .postMeta {
    font-size: 16px;
    line-height: 16px;
    gap: 0;
    justify-content: space-between;
    margin: 20px 0 10px;
  }
  .bannerSec .bannerLeft .postMeta .postDate {
    padding: 4px 11px 1px;
    border: solid 1px #FD7B7B;
    border-radius: 18px;
  }
  .bannerSec .bannerLeft .articoliCat {
    justify-content: center;
  }
  .bannerSec .bannerLeft .articoliCat a {
    font-size: 16px;
    line-height: 16px;
  }
}
.divider01 {
  height: 2px;
  width: 100%;
  background-color: #000000;
  margin: 138px 0;
}

.divider02 {
  height: 2px;
  width: 100%;
  background-color: #000000;
  margin: 0 0 80px;
}

.eventBlock ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
.eventBlock ul li {
  flex: 0 1 calc((100% - 50px) / 3);
  padding: 30px;
  border: solid 3px #000000;
  border-radius: 20px;
  min-height: 336px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
}
.eventBlock ul li:hover {
  background: var(--hoverGradient);
  background-size: cover;
  background-position: center;
}
.eventBlock ul li h3 {
  font-family: "Roboto", sans-serif;
  font-size: 50px;
  line-height: 52px;
  font-weight: 800;
}
.eventBlock ul li a {
  text-decoration: none;
  color: #000000;
}
.eventBlock ul li * {
  margin: 0;
  padding: 0;
}

.autoCon06 {
  width: 100%;
  max-width: 1670px;
  padding: 0 20px;
  margin: auto;
}

.pageHead02 {
  margin: 150px 0 60px;
}

._heading02 {
  font-family: "instrument-serif";
  font-size: 180px;
  line-height: 220px;
  font-weight: normal;
  text-align: left;
  margin: 0;
  padding: 0;
  text-transform: none;
}

@media (max-width: 1440px) {
  ._heading02 {
    font-family: "instrument-serif";
    font-size: 86px;
    line-height: 86px;
    font-weight: normal;
  }
  .pageHead02 {
    margin: 60px 0;
  }
}
@media (max-width: 768px) {
  ._heading02 {
    font-family: "instrument-serif";
    font-size: 56px;
    line-height: 56px;
    font-weight: normal;
  }
  .pageHead02 {
    margin: 30px 0 30px;
  }
  .divider01, .divider02 {
    background-color: transparent;
    margin: 30px 0;
  }
  .eventBlock ul {
    gap: 13px;
  }
  .eventBlock ul li {
    font-size: 18px;
    line-height: 20px;
    min-height: 162px;
    border-width: 1px;
    flex: 1 1 calc(50% - 26px);
  }
  .eventBlock ul li h3 {
    font-size: 25px;
    line-height: 20px;
  }
}
.singlePostContent h5.wp-block-heading {
  font-weight: 700 !important;
}
.singlePostContent > *:not(figure, blockquote) {
  width: 100%;
  max-width: 961px;
  padding: 0 21px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  line-height: 36px;
  font-weight: 400;
}
.singlePostContent a {
  color: #000000;
  text-decoration: underline;
}
.singlePostContent a:hover {
  text-decoration: none;
}
.singlePostContent > blockquote {
  width: 100%;
  padding: 50px;
  margin-left: 0;
  margin-right: 0;
  border-top: solid 2px #000000;
  border-bottom: solid 2px #000000;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(206, 212, 235, 0.75) 50%, rgb(255, 255, 255) 100%);
  text-align: center;
  font-family: "instrument-serif";
  font-size: 60px;
  line-height: 66px;
  font-weight: normal;
}
.singlePostContent > blockquote p:first-child {
  margin-top: 0;
}
.singlePostContent > blockquote p:last-child {
  margin-bottom: 0;
}
.singlePostContent > blockquote + figure {
  margin-top: -60px;
  border-top: none;
}
@media (max-width: 768px) {
  .singlePostContent > blockquote + figure {
    margin-top: -20px;
  }
}
.singlePostContent > blockquote * {
  max-width: 1314px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
}
.singlePostContent > blockquote.removeTopBorder {
  border-top: none;
  margin-top: 0;
}
.singlePostContent > blockquote.removeBottomBorder {
  border-bottom: none;
  margin-bottom: 0;
}
.singlePostContent figure.wp-block-image {
  border-left: solid 2px #000000;
  padding: 90px;
  text-align: center;
}
.singlePostContent figure.wp-block-image img + figcaption {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}
.singlePostContent figure.wp-block-image:last-child {
  border-right: solid 2px #000000;
}
.singlePostContent > figure {
  width: 100%;
  border-top: solid 2px #000000;
  border-bottom: solid 2px #000000;
  margin-left: 0;
  margin-right: 0;
}
.singlePostContent > figure + blockquote {
  margin-top: -30px;
  border-top: none;
}
.singlePostContent > figure img {
  height: 796px;
  display: inline-block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.singlePostContent > figure figcaption {
  margin-top: 70px;
  font-family: "instrument-serif";
  font-size: 32px;
  line-height: 38px;
  font-weight: normal;
  text-align: left;
}
.singlePostContent > figure.wp-block-image {
  border-left: none;
  border-right: none;
  padding: 0;
}
.singlePostContent > figure.wp-block-image img {
  border-left: solid 2px #000000;
  border-right: solid 2px #000000;
  padding: 90px;
  width: auto;
}
.singlePostContent .slick-slide {
  margin: 0; /* remove horizontal gap */
  padding: 0; /* remove inner spacing if any */
  float: none !important; /* avoid inline float offset */
}
.singlePostContent .slick-list {
  margin: 0; /* remove default list gutter */
}
.singlePostContent .slick-track {
  display: flex !important;
  justify-content: center; /* centers slide(s) */
}

@media (max-width: 768px) {
  .singlePostContent > *:not(figure, blockquote) {
    font-size: 16px;
    line-height: 20px;
    padding: 0 30px;
  }
  .singlePostContent > blockquote {
    font-size: 20px;
    line-height: 24px;
    padding: 0;
  }
  .singlePostContent > blockquote border * {
    padding: 0 15px;
  }
  .singlePostContent > figure img {
    height: 180px;
  }
  .singlePostContent > figure figcaption {
    font-size: 14px;
    line-height: 18px;
    margin-top: 0;
  }
  .singlePostContent figure.wp-block-image {
    padding: 20px;
  }
}
.mtb-80 {
  margin-top: 80px;
  margin-bottom: 75px;
}

.authorList {
  text-align: center;
  border-top: solid 2px #000000;
}
.authorList ul {
  margin: 0;
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  border-top: solid 2px #000000;
  border-bottom: solid 2px #000000;
}
.authorList ul li {
  flex: 1 1 25%;
  border-right: solid 2px #000000;
  border-bottom: solid 2px #000000;
  margin-bottom: -2px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 45px;
}
.authorList ul li a {
  text-decoration: none;
  color: #000000;
}
.authorList ul li img {
  max-width: 301px;
  height: 398px;
  margin: auto;
  border-radius: 20px;
  margin-bottom: 50px;
  -o-object-fit: cover;
     object-fit: cover;
}

._heading03 {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.twoColList {
  border-top: solid 2px #000000;
}
.twoColList ul {
  list-style: none;
  margin: 0;
  padding: 85px;
  display: flex;
  flex-wrap: wrap;
  gap: 85px;
  row-gap: 65px;
}
.twoColList ul li {
  flex: 0 1 calc(50% - 85px);
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  line-height: 34px;
  font-weight: 400;
}
.twoColList ul li h5 {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  line-height: 34px;
  font-weight: 700;
}
.twoColList ul li p {
  margin: 0 0 20px;
  padding: 0;
}
@media (min-width: 768px) {
  .twoColList ul li .accordionContent02 {
    display: block !important;
  }
}

.bodyGradient {
  background: #1A0029;
  background: linear-gradient(0deg, #1A0029 0%, #8C4578 100%);
  background: -webkit-linear-gradient(0deg, #1A0029 0%, #8C4578 100%);
}

.darkTheme * {
  color: #FFFFFF !important;
  border-color: #FFFFFF !important;
}
.darkTheme * .footerLogo svg, .darkTheme * .footerLogo svg path, .darkTheme * .socialIcons svg, .darkTheme * .socialIcons svg path {
  fill: #FFFFFF !important;
}
.darkTheme * .footerLogo img, .darkTheme * .socialIcons img {
  filter: invert(1);
}

body.tax-series .footerLogo svg, body.tax-series .footerLogo svg path, body.tax-series .socialIcons svg, body.tax-series .socialIcons svg path {
  fill: #FFFFFF !important;
}
body.tax-series .footerLogo img, body.tax-series .socialIcons img {
  filter: invert(1);
}

.whiteTheme * {
  color: #000000 !important;
  border-color: #000000 !important;
}

.creditsAndPartner {
  border-top: solid 2px #000000;
  padding-top: 80px;
}
.creditsAndPartner .logoCon02 {
  display: flex;
  justify-content: center;
  margin-bottom: 42px;
}
.creditsAndPartner .creditsCon ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 45px;
  row-gap: 45px;
}
.creditsAndPartner .creditsCon ul li {
  flex: 0 1 calc(50% - 45px);
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
}
.creditsAndPartner .creditsCon ul li span {
  display: block;
  clear: both;
  text-transform: none;
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  line-height: 40px;
  font-weight: 400;
}

.autoCon07 {
  width: 100%;
  max-width: 1260px;
  padding: 0 20px;
  margin: auto;
}

.partnersCon {
  text-align: center;
}
.partnersCon h4 {
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 75px 0 35px;
}
.partnersCon ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

@media (max-width: 768px) {
  .mtb-80 {
    margin: 22px 0;
  }
  .twoColListCon ._heading01 {
    font-size: 20px;
    line-height: 20px;
  }
  .twoColList {
    border-width: 1px;
  }
  .twoColList ul {
    padding: 0;
    flex-direction: column;
    row-gap: 0;
  }
  .twoColList ul li {
    padding: 0 35px;
    font-size: 16px;
    line-height: 20px;
    border-bottom: solid 1px #000000;
  }
  .twoColList ul li:last-child {
    border: none;
  }
  .twoColList ul li h5 {
    text-align: center;
    font-size: 14px;
    line-height: 16px;
    padding: 17px 35px;
  }
  .authorList {
    border-width: 1px;
  }
  .authorList ._heading01 {
    font-size: 20px;
    line-height: 20px;
  }
  .authorList ul {
    border-width: 1px;
  }
  .authorList ul li {
    padding: 20px;
    border-width: 1px;
    margin-bottom: -1px;
  }
  .authorList ul li img {
    max-width: 136px;
    height: 170px;
  }
  ._heading03 {
    font-size: 14px;
    line-height: 16px;
  }
  .creditsAndPartner {
    border-width: 1px;
    padding-top: 30px;
  }
  .creditsAndPartner .logoCon02 {
    justify-content: flex-start;
    margin-bottom: 20px;
  }
  .creditsAndPartner .logoCon02 img {
    width: 200px;
  }
  .creditsAndPartner .creditsCon ul {
    flex-direction: column;
    row-gap: 20px;
  }
  .creditsAndPartner .creditsCon ul li {
    font-size: 10px;
    line-height: 14px;
  }
  .creditsAndPartner .creditsCon ul li span {
    font-size: 12px;
    line-height: 14px;
  }
  .partnersCon {
    text-align: left;
    display: flex;
    margin: 20px 0 0;
    gap: 15px;
    align-items: center;
  }
  .partnersCon h4 {
    font-size: 10px;
    line-height: 14px;
    margin: 0;
  }
  .partnersCon ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    justify-content: center;
  }
  .partnersCon ul img {
    height: 20px;
  }
}
.podcastBanner {
  width: 100%;
  height: calc(100vh - var(--header-height));
  background-color: #000000;
  background-size: cover;
  background-image: url(../img/podcastBanne.jpg);
  text-align: center;
  display: flex;
  justify-content: center;
}
.podcastBanner img {
  max-width: 900px;
  max-height: 500px;
  margin-top: 35px;
}

.taxContent01 {
  background-color: #0A1045;
  color: #FFFFFF;
  padding: 30px 0;
}
.taxContent01 .contentHead01 {
  display: flex;
  justify-content: space-between;
}
.taxContent01 .contentHead01 ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 20px;
}
.taxContent01 .contentHead01 ul li svg, .taxContent01 .contentHead01 ul li path {
  fill: #FFFFFF;
}
.taxContent01 .contentHead01 .text01 {
  font-family: "instrument-serif";
  font-size: 30px;
  line-height: 30px;
  font-weight: normal;
}
.taxContent01 .taxContentInn {
  font-family: "Roboto", sans-serif;
  font-size: 60px;
  line-height: 75px;
  font-weight: 400;
  max-width: 1475px;
  margin: 90px auto;
  padding: 0 20px;
}

.podCastEpisods {
  width: 100%;
  background-color: #DADADA;
  padding: 35px 0 50px;
  display: flex;
  flex-direction: column;
}
.podCastEpisods .podCastRow {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
}
.podCastEpisods .podCastRow .eachPodcast {
  flex: 1 1 calc(50% - 80px);
  padding: 80px 40px;
}
.podCastEpisods .podCastRow .eachPodcast a {
  text-decoration: none;
  color: #000000;
}
.podCastEpisods .podCastRow .eachPodcast .podcastInn {
  display: flex;
  gap: 25px;
  margin-bottom: 45px;
}
.podCastEpisods .podCastRow .eachPodcast .podcastInn .podcastImg {
  flex: 0 0 232px;
  height: 193px;
}
.podCastEpisods .podCastRow .eachPodcast .podcastInn .podcastImg img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: solid 3px #000000;
  -o-object-fit: cover;
     object-fit: cover;
}
.podCastEpisods .podCastRow .eachPodcast .podcastInn .podccastInfo {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
}
.podCastEpisods .podCastRow .eachPodcast .podcastInn .podccastInfo h5 {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
}
.podCastEpisods .podCastRow .eachPodcast .podcastInn02 {
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  line-height: 32px;
  font-weight: 400;
}

.podcastGradient {
  background: #FF9172;
  background: linear-gradient(0deg, #FF9172 0%, #740038 100%);
  background: -webkit-linear-gradient(0deg, #FF9172 0%, #740038 100%);
}

.taxContent02 {
  padding: 150px 0;
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-size: 34px;
  line-height: 40px;
  font-weight: 400;
  color: #FFFFFF;
}

.podcastHostsCon {
  padding: 95px 0 65px;
}
.podcastHostsCon h2 {
  margin: 0 0 90px;
  text-align: center;
}
.podcastHostsCon .podcastHosts {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.podcastHostsCon .podcastHosts ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: solid 2px #000000;
  border-bottom: solid 2px #000000;
}
.podcastHostsCon .podcastHosts ul li {
  flex: 0 0 768px;
  border-right: solid 2px #000000;
  padding: 90px;
}
.podcastHostsCon .podcastHosts ul li .hostImg img {
  width: 786px;
  aspect-ratio: 786/716;
  border-radius: 60px;
  -o-object-fit: cover;
     object-fit: cover;
}
.podcastHostsCon .podcastHosts ul li .hostText {
  font-family: "instrument-serif";
  font-size: 32px;
  line-height: 38px;
  font-weight: normal;
  margin-top: 125px;
}

._heading04 {
  font-family: "instrument-serif";
  font-size: 80px;
  line-height: 80px;
  font-weight: normal;
}

.podcastCredits {
  font-family: "Roboto", sans-serif;
  font-size: 34px;
  line-height: 40px;
  font-weight: 400;
}

.podCastPage footer {
  margin-top: 0;
  border-color: #FFFFFF;
}
.podCastPage footer * {
  color: #fff !important;
}
.podCastPage footer * img {
  filter: invert(1);
}

@media (max-width: 768px) {
  .podcastBanner {
    height: 324px;
  }
  .podcastBanner img {
    max-width: 284px;
    max-height: 120px;
  }
  .taxContent01 .contentHead01 {
    flex-direction: column;
  }
  .taxContent01 .taxContentInn {
    font-size: 36px;
    line-height: 38px;
    padding: 0;
    margin: 30px 0 0;
  }
  .podCastEpisods {
    padding: 20px 0;
  }
  .podCastEpisods .podCastRow {
    flex-direction: column;
    border: none;
    gap: 0;
  }
  .podCastEpisods .podCastRow:last-child .eachPodcast:last-child {
    border: none;
  }
  .podCastEpisods .podCastRow .eachPodcast {
    padding: 15px;
  }
  .podCastEpisods .podCastRow .eachPodcast .podcastInn {
    margin: 0;
  }
  .podCastEpisods .podCastRow .eachPodcast .podcastInn .podcastImg {
    flex: 0 0 96px;
    height: 90px;
  }
  .podCastEpisods .podCastRow .eachPodcast .podcastInn .podcastImg img {
    border-radius: 12px;
  }
  .podCastEpisods .podCastRow .eachPodcast .podcastInn .podccastInfo {
    font-family: "Roboto", sans-serif;
    font-size: 8px;
    line-height: 10px;
    font-weight: 400;
  }
  .podCastEpisods .podCastRow .eachPodcast .podcastInn .podccastInfo h5 {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
  }
  .podCastEpisods .podCastRow .eachPodcast .podcastInn02 {
    display: none;
  }
  .taxContent02 {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    padding: 35px 15px;
  }
  .podcastHostsCon {
    padding: 20px 0 0;
  }
  .podcastHostsCon h2 {
    margin-bottom: 10px;
  }
  .podcastHostsCon .podcastHosts ul li {
    padding: 20px;
  }
  .podcastHostsCon .podcastHosts ul li .hostImg img {
    width: 100%;
    border-radius: 20px;
  }
  .podcastHostsCon .podcastHosts ul li .hostText {
    margin-top: 30px;
    font-family: "instrument-serif";
    font-size: 14px;
    line-height: 18px;
    font-weight: normal;
  }
  ._heading04 {
    font-family: "instrument-serif";
    font-size: 26px;
    line-height: 26px;
    font-weight: normal;
  }
}
body.newLetterPage, body.newLetterPage.darkMode {
  background-color: #000000;
}
body.newLetterPage footer, body.newLetterPage.darkMode footer {
  border-color: #5EF38C !important;
}
body.newLetterPage footer .svgInline, body.newLetterPage footer .svgInline path, body.newLetterPage.darkMode footer .svgInline, body.newLetterPage.darkMode footer .svgInline path {
  fill: #5EF38C !important;
}
body.newLetterPage footer *, body.newLetterPage.darkMode footer * {
  color: #5EF38C !important;
}

.gifImg01 {
  display: flex;
  justify-content: center;
  padding: 50px 20px;
}
.gifImg01 img {
  max-height: 90px;
}

.newsletterSliderCon {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.newsletterSlider {
  width: 100%;
  margin-bottom: 110px;
}
.newsletterSlider ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.newsletterSlider ul li {
  font-family: "instrument-serif";
  font-size: 80px;
  line-height: 110px;
  font-weight: normal;
  color: #7C3AED;
  margin: 0 60px;
}
.newsletterSlider ul li a {
  text-decoration: none;
  color: #7C3AED;
}

.newsLetterContent {
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-size: 52px;
  line-height: 60px;
  font-weight: 400;
  padding: 65px;
  color: #7C3AED;
  background-color: #FFFEFE;
  border-radius: 37px;
}

.autoCon08 {
  width: 100%;
  max-width: 1100px;
  padding: 0 20px;
  margin: auto;
}

.newsletterList {
  margin-top: 100px;
  color: #5EF38C;
}
.newsletterList .postListView {
  row-gap: 0;
}
.newsletterList .postListView .postListItem {
  border-bottom: solid 2px #5EF38C;
  padding: 40px 58px;
}
.newsletterList .postListView .postListItem .posListtImg img {
  border-color: #5EF38C;
}
.newsletterList .postListView .postListItem:last-child {
  border: none;
}
.newsletterList .postListView .postListItem .posListContent h3, .newsletterList .postListView .postListItem .posListContent a {
  color: #5EF38C;
}

@media (max-width: 1440px) {
  .newsletterSlider {
    margin-bottom: 50px;
  }
  .newsletterSlider ul li {
    font-size: 40px;
    line-height: 50px;
    margin: 0 30px;
  }
  .newsletterList {
    margin-top: 50px;
  }
  .newsLetterContent {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 768px) {
  .gifImg01 {
    padding: 20px;
  }
  .newsletterSlider {
    margin-bottom: 35px;
  }
  .newsletterSlider ul li {
    font-family: "instrument-serif";
    font-size: 25px;
    line-height: 32px;
    font-weight: normal;
    margin: 0 15px;
  }
  .newsLetterContent {
    font-size: 16px;
    line-height: 20px;
    padding: 15px;
    border-radius: 20px;
  }
  .newsletterList {
    margin: 50px 0;
  }
  .newsletterList .postListView .postListItem {
    padding: 15px;
  }
}
.popupContent {
  position: fixed;
  width: 90%;
  max-width: 600px;
  height: 500px;
  max-height: calc(90% - 100px);
  overflow: auto;
  border-radius: 20px;
  top: 50%;
  z-index: 91;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  border-radius: 20px;
  border: solid 5px #7C3AED !important;
  background-color: #faf6ff;
  overflow: auto;
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: blackgreen yellow; /* thumb color | track color */
}
.popupContent::-webkit-scrollbar {
  width: 8px;
  height: 8px; /* for horizontal scroll */
}
.popupContent::-webkit-scrollbar-track {
  background: yellow;
  border-radius: 8px;
}
.popupContent::-webkit-scrollbar-thumb {
  background: blackgreen;
  border-radius: 8px;
}
.popupContent iframe {
  width: 100%;
  height: 100%;
  overflow: auto;
  position: absolute;
  padding: 50px 0;
}
.popupContent .clasePopup {
  color: #000000;
  position: absolute;
  z-index: 2;
  right: 25px;
  top: 25px;
  cursor: pointer;
}

.popupOverlay {
  position: fixed;
  background-color: #000000;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 9;
  opacity: 0.8;
}

.load-more-btn {
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.article .tabPost {
  display: none;
}
.article .tabPost.active {
  display: block;
}

.rubiche .tabPost {
  display: none;
}
.rubiche .tabPost.active {
  display: block;
}

.wpcf7 form .wpcf7-response-output {
  border: none;
  color: red;
  padding: 0;
  text-align: left;
  font-size: 25px;
}
@media (max-width: 1440px) {
  .wpcf7 form .wpcf7-response-output {
    font-size: 18px;
  }
}
.wpcf7 form .wpcf7-not-valid-tip {
  font-size: 25px;
  color: red;
}
@media (max-width: 1440px) {
  .wpcf7 form .wpcf7-not-valid-tip {
    font-size: 18px;
  }
}
.wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  color: red;
}
.wpcf7 form.sent .wpcf7-response-output {
  color: #5EF38C;
}

.podCastEpisods .slick-prev {
  transform: rotate(180deg);
  position: absolute;
  top: 0px;
  left: 0;
  z-index: 9999;
}
.podCastEpisods .slick-prev:before {
  display: none;
}
.podCastEpisods .slick-next {
  position: absolute;
  top: 30px;
  right: 0;
  z-index: 9999;
}
.podCastEpisods .slick-next:before {
  display: none;
}
.podCastEpisods .slick-arrow {
  width: 70px;
  height: 70px;
}
.podCastEpisods .slick-arrow.slick-disabled {
  opacity: 0;
}

@media (max-width: 768px) {
  .podCastEpisods .slick-next {
    top: 5px;
    right: 15px;
  }
  .podCastEpisods .slick-prev {
    left: 5px;
    top: -8px;
  }
  .podCastEpisods .slick-arrow {
    width: 30px;
    height: 30px;
  }
}
.podcastCon {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 70px;
}
.podcastCon .podcastLeft {
  width: 36%;
  font-family: "Roboto", sans-serif;
  font-size: 34px;
  line-height: 40px;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.podcastCon .podcastLeft .podcastText02 {
  font-family: "instrument-serif";
  font-size: 30px;
  line-height: 30px;
  font-weight: normal;
}
.podcastCon .podcastSeries {
  width: 56%;
}
.podcastCon .podcastSeries ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  row-gap: 30px;
}
.podcastCon .podcastSeries ul li {
  flex: 0 1 calc(50% - 20px);
}
.podcastCon .podcastSeries ul li.noThumb a {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  background-color: #000000;
  text-decoration: none;
}
.podcastCon .podcastSeries ul li img {
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .mPad0 {
    padding: 0 !important;
  }
  .podcastCon {
    margin-top: 30px;
    flex-direction: column;
  }
  .podcastCon .podcastLeft {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    width: 100%;
    padding: 0 35px;
    margin-bottom: 30px;
  }
  .podcastCon .podcastLeft .podcastText02 {
    margin-top: 20px;
    font-family: "instrument-serif";
    font-size: 16px;
    line-height: 16px;
    font-weight: normal;
  }
  .podcastCon .podcastSeries {
    width: 100%;
  }
  .podcastCon .podcastSeries ul {
    padding: 20px 35px;
  }
  .podcastCon .podcastSeries ul li img {
    width: 100%;
    aspect-ratio: 1;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 20px;
  }
}
@media (max-width: 576px) {
  .podcastCon .podcastSeries {
    width: 100%;
  }
  .podcastCon .podcastSeries ul {
    row-gap: 0;
    padding: 0;
  }
  .podcastCon .podcastSeries ul li {
    flex: 100%;
    border-top: solid 1px #000000;
    padding: 20px 35px;
  }
  .podcastCon .podcastSeries ul li img {
    width: 100%;
    aspect-ratio: 1;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 20px;
  }
}
.gradientBG {
  background-image: url("../img/podcast_series_bg.png") !important;
  background-size: cover !important;
  background-position: center !important;
}
.gradientBG > footer {
  background-color: transparent !important;
}

.colorSwitch {
  position: fixed;
  z-index: 9;
  width: 50px;
  height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  bottom: 30px;
  right: 30px;
  border-radius: 50%;
  cursor: pointer;
  color: #FFFFFF;
  background-color: #000000;
}
.colorSwitch.active {
  color: #000000;
  background-color: #FFFFFF;
}

html.grayScale {
  background-color: #fff;
}
html.grayScale:before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgb(0, 0, 0);
  mix-blend-mode: saturation;
  pointer-events: none; /* ensures CTAs remain clickable */
  z-index: 9999;
}/*# sourceMappingURL=main.css.map */