@charset "UTF-8";
@font-face {
  font-family: 'Metropolis';
  src: url("../fonts/metropolis/Metropolis-Regular.eot");
  src: url("../fonts/metropolis/Metropolis-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/metropolis/Metropolis-Regular.woff2") format("woff2"), url("../fonts/metropolis/Metropolis-Regular.woff") format("woff"), url("../fonts/metropolis/Metropolis-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: 'Metropolis';
  src: url("../fonts/metropolis/Metropolis-Medium.eot");
  src: url("../fonts/metropolis/Metropolis-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/metropolis/Metropolis-Medium.woff2") format("woff2"), url("../fonts/metropolis/Metropolis-Medium.woff") format("woff"), url("../fonts/metropolis/Metropolis-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: 'Metropolis';
  src: url("../fonts/metropolis/Metropolis-SemiBold.eot");
  src: url("../fonts/metropolis/Metropolis-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/metropolis/Metropolis-SemiBold.woff2") format("woff2"), url("../fonts/metropolis/Metropolis-SemiBold.woff") format("woff"), url("../fonts/metropolis/Metropolis-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap; }
html {
  box-sizing: border-box; }

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

body, h1, h2, h3, h4, h5, h6, p, ol, ul, small {
  margin: 0;
  padding: 0; }

ol, ul {
  list-style: none; }

a,
a img {
  border: 0;
  outline: none;
  background: transparent;
  text-decoration: none; }
  a:active, a:hover,
  a img:active,
  a img:hover {
    outline: 0;
    text-decoration: none; }

figure {
  margin: 0; }

body {
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
  min-height: -webkit-fill-available; }

header,
footer,
main,
aside,
section,
article {
  position: relative;
  width: 100%; }

.w-100 {
  width: 100%; }

.w-fit {
  width: fit-content; }

.h-100 {
  height: 100%; }

.vh-full {
  min-height: 100vh; }

.dvh-full {
  min-height: 100dvh; }

.h-parent {
  min-height: inherit; }

.f-grid {
  display: grid; }

.relative {
  position: relative; }

.inline-flex {
  display: inline-flex; }

.inline-block {
  display: inline-block; }

.hide {
  display: none; }

.show {
  display: block; }

.block {
  display: block; }

.sticky {
  position: sticky;
  top: 0; }

.flex {
  display: flex;
  align-items: center;
  gap: 12px; }

.f-central {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center; }

.f-auto {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px; }

.pos-full {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0; }

.f-row {
  display: flex;
  flex-direction: column; }

.item-top {
  align-items: flex-start; }

.item-middle {
  align-items: center; }

.item-center {
  justify-content: center; }

.item-left {
  justify-content: flex-start; }

.item-right {
  justify-content: flex-end; }

.item-bottom {
  align-items: flex-end; }

.item-around {
  justify-content: space-around;
  align-content: space-around; }

.item-between {
  justify-content: space-between; }

.item-column {
  flex-direction: row; }

.item-row {
  flex-direction: column; }

.item-stretch {
  align-items: stretch; }

.item-grow {
  flex-grow: 1; }

.f-grid {
  gap: 12px; }
  .f-grid.row-afa {
    grid-template-rows: auto 1fr auto; }
  .f-grid.row-af {
    grid-template-rows: auto 1fr; }
  .f-grid.row-fa {
    grid-template-rows: 1fr auto; }
  .f-grid.col-afa {
    grid-template-columns: auto 1fr auto; }
  .f-grid.col-af {
    grid-template-columns: auto 1fr; }
  .f-grid.col-fa {
    grid-template-columns: 1fr auto; }
  .f-grid.col-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .f-grid.col-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .f-grid.col-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .f-grid.col-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .f-grid.col-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .f-grid.col-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr)); }
  @media screen and (max-width: 1100px) {
    .f-grid.md-col-1 {
      grid-template-columns: repeat(1, minmax(0, 1fr)); }
    .f-grid.md-col-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .f-grid.md-col-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .f-grid.md-col-4 {
      grid-template-columns: repeat(4, minmax(0, 1fr)); } }
  @media screen and (max-width: 920px) {
    .f-grid.sm-col-1 {
      grid-template-columns: repeat(1, minmax(0, 1fr)); }
    .f-grid.sm-col-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .f-grid.sm-col-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .f-grid.sm-col-4 {
      grid-template-columns: repeat(4, minmax(0, 1fr)); } }
  @media screen and (max-width: 768px) {
    .f-grid.xs-col-1 {
      grid-template-columns: repeat(1, minmax(0, 1fr)); }
    .f-grid.xs-col-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .f-grid.xs-col-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .f-grid.xs-col-4 {
      grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.f-span {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px; }
  @media screen and (max-width: 1100px) {
    .f-span {
      grid-template-columns: 1fr;
      gap: 12px; } }
  .f-span > div {
    grid-column: auto / span 2; }
  .f-span .span-1 {
    grid-column: auto/span 1; }
  .f-span .span-2 {
    grid-column: auto/span 2; }
  .f-span .span-3 {
    grid-column: auto/span 3; }
  .f-span .span-4 {
    grid-column: auto/span 4; }
  .f-span .span-5 {
    grid-column: auto/span 5; }
  .f-span .span-6 {
    grid-column: auto/span 6; }
  .f-span .span-7 {
    grid-column: auto/span 7; }
  .f-span .span-8 {
    grid-column: auto/span 8; }
  .f-span .span-9 {
    grid-column: auto/span 9; }
  .f-span .span-10 {
    grid-column: auto/span 10; }
  .f-span .span-11 {
    grid-column: auto/span 11; }
  .f-span .span-12 {
    grid-column: auto/span 12; }
  @media screen and (max-width: 920px) {
    .f-span > div {
      grid-column: auto/span 12 !important; } }

@media screen and (max-width: 920px) {
  .sm-f-reset {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px; }
    .sm-f-reset > div {
      width: 100%; } }
@media screen and (max-width: 768px) {
  .xs-f-reset {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px; }
    .xs-f-reset > div {
      width: 100%; } }
.uppercase {
  text-transform: uppercase; }

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

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

.margin-center {
  margin-left: auto;
  margin-right: auto; }

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

@media screen and (max-width: 768px) {
  .xs-text-center {
    text-align: center; } }
hr {
  height: 0;
  display: block;
  clear: both;
  border: none;
  margin: 0;
  position: relative; }
  hr.line {
    min-height: 1px; }
    hr.line:after {
      content: '';
      left: 0;
      border-bottom: 1px solid #ddd;
      width: 100%;
      position: absolute;
      top: 50%;
      margin-top: -0.5px; }

.hr-1 {
  height: 24px; }

.hr-2 {
  height: 48px; }

.hr-3 {
  height: 72px; }

.hr-4 {
  height: 96px; }

.img-resize,
.img-resize img {
  width: 100%;
  display: block;
  height: auto; }

.vid-resize,
.map-resize {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden; }
  .vid-resize iframe,
  .vid-resize object,
  .vid-resize embed,
  .vid-resize video,
  .map-resize iframe,
  .map-resize object,
  .map-resize embed,
  .map-resize video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.r-1-1,
.r-1-1 img {
  aspect-ratio: 1 / 1; }

.r-4-3,
.r-4-3 img {
  aspect-ratio: 4 / 3; }

.r-3-4,
.r-3-4 img {
  aspect-ratio: 3 / 4; }

.r-16-9,
.r-16-9 img {
  aspect-ratio: 16 / 9; }

.fit-cover,
.fit-contain {
  position: relative; }
  .fit-cover img,
  .fit-cover video,
  .fit-contain img,
  .fit-contain video {
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0; }

.fit-cover img {
  object-fit: cover; }

.fit-contain img {
  object-fit: contain; }

.modal {
  display: none;
  transition: all ease 0.5s;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: rgba(0, 0, 0, 0.2);
  pointer-events: none; }
  .modal.active {
    pointer-events: initial;
    overflow-y: auto;
    display: flex;
    align-items: center;
    justify-content: center; }
  .modal .modal-inner {
    min-width: 360px;
    padding: 24px; }
  .modal.full .modal-inner {
    min-height: 100%;
    width: 100%; }

.modal.full .modal-close {
  position: absolute;
  right: 24px;
  top: 24px; }

body.modal-active {
  position: fixed;
  width: 100%;
  left: 0;
  overflow: hidden; }
  body.modal-active header,
  body.modal-active main,
  body.modal-active footer {
    filter: blur(5px); }

.owl {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1; }
  .owl .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden; }
    .owl .owl-stage:after {
      content: ".";
      display: block;
      clear: both;
      visibility: hidden;
      line-height: 0;
      height: 0; }
  .owl .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl .owl-wrapper,
  .owl .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
    .owl .owl-item img {
      display: block;
      width: 100%; }
  .owl .owl-nav.disabled,
  .owl .owl-dots.disabled {
    display: none; }
  .owl .owl-prev,
  .owl .owl-next,
  .owl .owl .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    width: auto; }
  .owl button.owl-btn {
    width: auto; }
  .owl.owl-loaded {
    display: block; }
  .owl.owl-loading {
    opacity: 0;
    display: block; }
  .owl.owl-hidden {
    opacity: 0; }
  .owl.owl-refresh .owl-item {
    visibility: hidden; }
  .owl.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl.owl-rtl {
    direction: rtl; }
  .owl.owl-rtl .owl-item {
    float: right; }
  .owl .animated {
    animation-duration: 1000ms;
    animation-fill-mode: both; }
  .owl .owl-animated-in {
    z-index: 0; }
  .owl .owl-animated-out {
    z-index: 1; }
  .owl .fadeOut {
    animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
.no-js .owl {
  display: block; }

.owl-height {
  transition: height 500ms ease-in-out; }

.owl .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease; }
.owl .owl-item .owl-lazy[src^=""], .owl .owl .owl-item .owl-lazy:not([src]) {
  max-height: 0; }
.owl .owl-item img.owl-lazy {
  transform-style: preserve-3d; }

.owl .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }
.owl .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }
.owl .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3); }
.owl .owl-video-playing .owl-video-tn,
.owl .owl-video-playing .owl-video-play-icon {
  display: none; }
.owl .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }
.owl .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

.owl.caption-inside .item {
  display: grid; }
  .owl.caption-inside .item > * {
    grid-area: 1 / 1; }
.owl.caption-inside .caption {
  align-self: end;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 12px; }
.owl.caption-hover .caption {
  transition: all ease 0.3s;
  opacity: 0;
  transform: translateY(-50%); }
.owl.caption-hover .item:hover > .caption {
  opacity: 1;
  transform: translateY(0); }

.owl-dots {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 24px;
  width: 100%; }
  .owl-dots .owl-dot {
    min-height: inherit; }
    .owl-dots .owl-dot span {
      display: block;
      transition: opacity 200ms ease;
      width: 20px;
      height: 20px;
      border-radius: 30px;
      opacity: 1;
      border: 2px solid #565658;
      background-color: transparent; }
    .owl-dots .owl-dot.active span, .owl-dots .owl-dot:hover span {
      opacity: 1;
      background-color: #565658; }

.bg-dark .owl-dot span {
  background-color: #fff; }

.owl .owl-nav button {
  min-width: 42px;
  height: 42px;
  padding: 0; }
  .owl .owl-nav button i {
    font-size: 32px; }
.owl.nav-center .owl-nav {
  text-align: center; }
  .owl.nav-center .owl-nav .owl-prev,
  .owl.nav-center .owl-nav .owl-next {
    float: none; }
.owl.nav-over .owl-next,
.owl.nav-over .owl-prev, .owl.nav-inner .owl-next,
.owl.nav-inner .owl-prev, .owl.nav-offset .owl-next,
.owl.nav-offset .owl-prev, .owl.nav-bottom .owl-next,
.owl.nav-bottom .owl-prev, .owl.nav-top .owl-next,
.owl.nav-top .owl-prev {
  position: absolute;
  top: 50%;
  z-index: 100;
  transform: translateY(-50%); }
.owl.nav-over .owl-next, .owl.nav-inner .owl-next, .owl.nav-offset .owl-next, .owl.nav-bottom .owl-next, .owl.nav-top .owl-next {
  right: 0; }
.owl.nav-over .owl-prev, .owl.nav-inner .owl-prev, .owl.nav-offset .owl-prev, .owl.nav-bottom .owl-prev, .owl.nav-top .owl-prev {
  left: 0; }
.owl.nav-over .owl-dots, .owl.nav-inner .owl-dots, .owl.nav-offset .owl-dots, .owl.nav-bottom .owl-dots, .owl.nav-top .owl-dots {
  position: absolute;
  width: 100%;
  left: 0; }
.owl.nav-inner {
  padding-left: 72px;
  padding-right: 72px; }
.owl.nav-offset {
  padding-left: 60px;
  padding-right: 60px;
  margin-left: -60px;
  width: calc(100% + 120px); }
.owl.nav-bottom .owl-next,
.owl.nav-bottom .owl-prev {
  margin: 0;
  bottom: 0;
  top: auto;
  transform: translateY(0); }
.owl.nav-top .owl-next,
.owl.nav-top .owl-prev {
  margin: 0;
  top: 0;
  transform: translateY(0); }
.owl.nav-reveal .owl-next {
  opacity: 0;
  right: -40px;
  transition: all ease .5s; }
.owl.nav-reveal .owl-prev {
  opacity: 0;
  left: -40px;
  transition: all ease .5s; }
.owl.nav-reveal:hover .owl-prev {
  left: 0px;
  opacity: 1; }
.owl.nav-reveal:hover .owl-next {
  right: 0px;
  opacity: 1; }

.owl.nearby .item img {
  height: 50vh;
  width: auto; }
.owl.nearby .owl-stage {
  background-color: #000; }

.owl.img-vh-10 .item img {
  height: 10vh; }
.owl.img-vh-20 .item img {
  height: 20vh; }
.owl.img-vh-30 .item img {
  height: 30vh; }
.owl.img-vh-40 .item img {
  height: 40vh; }
.owl.img-vh-50 .item img {
  height: 50vh; }
.owl.img-vh-60 .item img {
  height: 60vh; }
.owl.img-vh-70 .item img {
  height: 70vh; }
.owl.img-vh-80 .item img {
  height: 80vh; }
.owl.img-vh-90 .item img {
  height: 90vh; }
.owl.img-vh-100 .item img {
  height: 100vh; }

.ck-1 {
  color: #212131; }

.ck-2 {
  color: #5ABCBF; }

.ck-3 {
  color: #F9F8F8; }

.ck-5 {
  color: #908F8E; }

.ck-6 {
  color: #565658; }

.ck-7 {
  color: #FDC36D; }

.ck-8 {
  color: #FADDB2; }

.ck-gray-90 {
  color: #ECEAEA; }

.ck-accent {
  color: #5ABCBF; }

.ck-white {
  color: #fff; }

.ck-success {
  color: #4BB867; }

.ck-error {
  color: #D94F4F; }

.ck-warning {
  color: #ECBF58; }

.bg-ck-1 {
  background-color: #212131; }

.bg-ck-2 {
  background-color: #5ABCBF; }

.bg-ck-3 {
  background-color: #F9F8F8; }

.bg-ck-5 {
  background-color: #908F8E; }

.bg-ck-6 {
  background-color: #565658; }

.bg-ck-white {
  background-color: #fff; }

.bg-ck-accent {
  background-color: #5ABCBF; }

.bg-success {
  background-color: #4BB867; }

.bg-error {
  background-color: #D94F4F; }

.bg-warning {
  background-color: #ECBF58; }

.filter-bw {
  filter: grayscale(100%);
  transition: all ease .3s; }
  .filter-bw:hover {
    filter: grayscale(0); }

:focus:not(:focus-visible) {
  outline: none; }

.btn,
button,
[type="button"],
[type="reset"],
[type="submit"] {
  appearance: button; }
  .btn::-moz-focus-inner,
  button::-moz-focus-inner,
  [type="button"]::-moz-focus-inner,
  [type="reset"]::-moz-focus-inner,
  [type="submit"]::-moz-focus-inner {
    border: 0;
    padding: 0; }

.btn,
input[type="button"],
input[type="submit"],
input[type="reset"],
button {
  text-decoration: none;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  border: 1px solid transparent;
  margin: 0;
  width: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent; }

.btn {
  line-height: 42px;
  min-height: 42px;
  padding: 0 24px;
  border: 1px solid transparent;
  gap: 8px;
  border-radius: 8px;
  height: 58px; }
  @media screen and (max-width: 768px) {
    .btn {
      height: 42px;
      padding: 0 14px; } }
  .btn i {
    font-size: 28px;
    transition: all ease 0.3s; }

.btn a,
button a,
.entry .btn {
  text-decoration: none !important; }
  .btn a:hover,
  button a:hover,
  .entry .btn:hover {
    text-decoration: none; }

.btn-full {
  width: 100%; }

.btn-fit {
  width: fit-content; }

.btn-text {
  gap: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center; }

.btn-primary {
  background-color: #5ABCBF;
  border: 1px solid #5ABCBF; }
  .btn-primary:focus-visible {
    outline: 4px solid #9CD4D2;
    outline-offset: 2px; }
  .btn-primary:active {
    box-shadow: inset 0 3px 10px rgba(0, 0, 0, 0.5); }

.btn-primary.white {
  background-color: #ffffff;
  border: 1px solid #ffffff; }

.btn-primary.yellow {
  background-color: #faddb2;
  border: 1px solid #faddb2; }

.btn-primary.disabled {
  filter: blur(3px);
  pointer-events: none; }

.btn-light {
  background-color: #F9F8F8;
  border: 1px solid #F9F8F8;
  padding: 16px 24px; }

.btn.up .arrow {
  transform: rotate(-30deg); }
.btn.up:hover .arrow {
  transform: rotate(0deg); }

.btn.down .arrow {
  transform: rotate(30deg); }
.btn.down:hover .arrow {
  transform: rotate(90deg); }

.btn-icon {
  height: 52px;
  min-width: 52px;
  padding: 0;
  transition: all ease .2s; }
  .btn-icon:hover {
    opacity: 1;
    color: #5ABCBF; }
  .btn-icon i {
    font-size: 34px; }
  @media screen and (max-width: 768px) {
    .btn-icon i {
      font-size: 26px; } }

.btn-icon.alt {
  height: 60px;
  min-width: 60px;
  background-color: #ECEAEA;
  color: #212131; }
  .btn-icon.alt:hover {
    background-color: #9CD4D2; }
  .btn-icon.alt:focus-visible {
    outline: 4px solid #9CD4D2;
    outline-offset: 2px; }
  .btn-icon.alt:active {
    box-shadow: inset 0 3px 10px rgba(0, 0, 0, 0.5); }

@font-face {
  font-family: "ic-bull";
  src: url("../fonts/icons/ic-bull.eot?blydou");
  src: url("../fonts/icons/ic-bull.eot?blydou#iefix") format("embedded-opentype"), url("../fonts/icons/ic-bull.ttf?blydou") format("truetype"), url("../fonts/icons/ic-bull.woff?blydou") format("woff"), url("../fonts/icons/ic-bull.svg?blydou#ic-bull") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block; }
.ic {
  font-family: "ic-bull" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.ic-menu:before {
  content: "\e90e"; }

.ic-search:before {
  content: "\e911"; }

.ic-filter-o:before {
  content: "\e903"; }

.ic-filter:before {
  content: "\e905"; }

.ic-sort-desc:before {
  content: "\e910"; }

.ic-sort-asc:before {
  content: "\e912"; }

.ic-doc:before {
  content: "\e92a"; }

.ic-doc-o:before {
  content: "\e92c"; }

.ic-content:before {
  content: "\e927"; }

.ic-content-o:before {
  content: "\e921"; }

.ic-vocal:before {
  content: "\e926"; }

.ic-vocal-o:before {
  content: "\e91a"; }

.ic-book:before {
  content: "\e908"; }

.ic-book-o:before {
  content: "\e920"; }

.ic-bin:before {
  content: "\e92d"; }

.ic-bin-o:before {
  content: "\e92e"; }

.ic-home:before {
  content: "\e924"; }

.ic-home-o:before {
  content: "\e923"; }

.ic-share:before {
  content: "\e913"; }

.ic-promo:before {
  content: "\e92f"; }

.ic-promo-o:before {
  content: "\e930"; }

.ic-share-o:before {
  content: "\e925"; }

.ic-play-o:before {
  content: "\e92b"; }

.ic-play:before {
  content: "\e90f"; }

.ic-pause:before {
  content: "\e91e"; }

.ic-forward:before {
  content: "\e91d"; }

.ic-rewind:before {
  content: "\e91f"; }

.ic-arrow-down:before {
  content: "\e902"; }

.ic-arrow-left:before {
  content: "\e904"; }

.ic-arrow-right:before {
  content: "\e906"; }

.ic-arrow-up:before {
  content: "\e907"; }

.ic-check:before {
  content: "\e909"; }

.ic-chevron-down:before {
  content: "\e90a"; }

.ic-cross:before {
  content: "\e90b"; }

.ic-download:before {
  content: "\e91c"; }

.ic-mail:before {
  content: "\e90d"; }

.ic-star-empty:before {
  content: "\e915"; }

.ic-star-full:before {
  content: "\e916"; }

.ic-star-half:before {
  content: "\e917"; }

.ic-time:before {
  content: "\e918"; }

.ic-user:before {
  content: "\e919"; }

.ic-youtube:before {
  content: "\e91b"; }

.ic-instagram:before {
  content: "\e90c"; }

.ic-instagram-o:before {
  content: "\e922"; }

.ic-spotify:before {
  content: "\e914"; }

.ic-applepodcast:before {
  content: "\e901"; }

.ic-amazon:before {
  content: "\e900"; }

.ic-tiktok:before {
  content: "\e928"; }

.ic-linkedin:before {
  content: "\e929"; }

.ic-globe:before {
  content: "\e931"; }

body {
  color: #212131;
  background-color: #F9F8F8; }

a, a:hover {
  color: inherit;
  text-decoration: none; }

mark {
  background-color: transparent; }

b,
strong {
  font-weight: 600; }

.hover:hover {
  opacity: 0.7;
  cursor: pointer; }

.round {
  border-radius: 8px;
  overflow: hidden; }

.ost-panel.panel-menu {
  background-color: #212131;
  color: #fff; }
  .ost-panel.panel-menu a {
    color: #fff; }

.ic {
  font-size: 34px;
  font-weight: 900; }

.gap {
  gap: 12px; }

.gap-xs {
  gap: 6px; }

.gap-md {
  gap: 18px; }

.gap-lg {
  gap: 24px; }

.gap-xl {
  gap: 48px; }

.hr-lg {
  height: 35px; }

.page-loading {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  position: fixed;
  z-index: 999999;
  background-color: #fff; }
  .page-loading:after {
    content: "";
    width: 120px;
    height: 120px;
    position: absolute;
    background-image: url("../images/loader.svg");
    background-repeat: no-repeat;
    background-position: center center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); }

html.no-js .page-loading {
  display: none; }

.screen-reader {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.bull-player {
  display: grid;
  grid-template-columns: auto 1fr;
  padding: 12px;
  border-radius: 6px;
  overflow: hidden;
  background: #212131;
  color: #fff;
  position: relative; }
  .bull-player .inner {
    margin-left: 12px;
    display: grid;
    grid-template-rows: 1fr auto; }
  .bull-player .head {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 6px; }
    .bull-player .head > div {
      flex-grow: 1; }
  .bull-player .ctrl {
    padding-top: 6px;
    display: flex; }
  .bull-player small {
    opacity: 0.7;
    display: block; }
  .bull-player p {
    font-size: 18px;
    font-weight: 700;
    color: #fff !important; }
  .bull-player img.logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 3px;
    background-color: #5ABCBF; }
  .bull-player button {
    height: 26px;
    color: #fff;
    padding: 0; }
    .bull-player button i {
      font-size: 18px; }
  .bull-player button.play {
    background: #fff;
    border-radius: 60px;
    height: 60px;
    width: 60px;
    min-width: 60px;
    color: #212131; }
    .bull-player button.play i {
      font-size: 22px; }
    .bull-player button.play .ic-pause {
      display: none; }
    .bull-player button.play .ic-play {
      display: inline-block; }
  .bull-player button.play.is-playing .ic-play {
    display: none; }
  .bull-player button.play.is-playing .ic-pause {
    display: inline-block; }
  .bull-player .time {
    font-variant-numeric: tabular-nums;
    font-size: 12px; }
  .bull-player .progress {
    min-width: 120px;
    height: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
    outline: none;
    width: 100%;
    position: relative;
    overflow: hidden; }
    .bull-player .progress .progress__track {
      position: relative;
      width: 100%;
      height: 10px;
      background: rgba(255, 255, 255, 0.15);
      border-radius: 2px; }
    .bull-player .progress .progress__current {
      position: absolute;
      inset: 0 auto 0 0;
      width: 0%;
      height: 100%;
      background: #5ABCBF;
      border-radius: 2px; }
  .bull-player .volume {
    width: 120px;
    display: none; }

.bull-player.narrow {
  max-width: 480px; }
  .bull-player.narrow img.logo {
    height: 100%; }

@media screen and (max-width: 768px) {
  .bull-player img.logo {
    height: 100%;
    width: 60px; }
  .bull-player p {
    font-size: 15px;
    line-height: 18px; }
  .bull-player small {
    display: none; }
  .bull-player button.play {
    height: 46px;
    width: 46px;
    min-width: 46px; } }
@media screen and (max-width: 576px) {
  .bull-player {
    display: block; }
    .bull-player .inner {
      margin: 0; }
    .bull-player img.logo {
      width: 100%;
      height: 80px; }
    .bull-player small {
      line-height: 16px;
      padding-bottom: 4px; }
    .bull-player p {
      font-size: 18px;
      line-height: 24px; } }
/*
.bull-player.vertical {
  max-width: 320px;
  display: block;
  .inner {
    margin: 0;
  }
  img.logo {
    width: 100%;
    height: 80px;
  }
  small {
    line-height: 16px;
    padding-bottom: 4px;
  }
  p {
    font-size: 18px;
    line-height: 24px;
  }
}
*/
.bull-player.micro {
  max-width: 420px; }
  .bull-player.micro img.logo {
    width: 36px;
    height: 36px; }
  .bull-player.micro small {
    display: none; }
  .bull-player.micro p {
    font-size: 14px;
    line-height: 14px;
    text-wrap: nowrap;
    display: inline-block; }
  .bull-player.micro button.play {
    height: 36px;
    width: 36px;
    min-width: 36px; }
  .bull-player.micro .head {
    display: grid;
    grid-template-columns: 1fr auto;
    border: 0;
    padding: 0; }
  .bull-player.micro .head > div {
    overflow: hidden;
    position: relative; }
  .bull-player.micro .marquee {
    display: flex;
    gap: 24px;
    will-change: transform;
    transform: translateX(0);
    animation-play-state: paused; }
  .bull-player.micro .marquee > p {
    flex: 0 0 auto;
    white-space: nowrap;
    display: inline-block; }
  .bull-player.micro .ctrl {
    display: none; }
  .bull-player.micro.is-playing .marquee {
    animation: bullmarquee var(--marquee-duration, 12s) linear infinite; }

@keyframes bullmarquee {
  from {
    transform: translateX(0); }
  to {
    transform: translateX(calc(-1 * var(--marquee-distance, 100%))); } }
.alm-grid .alm-listing,
.alm-grid .alm-reveal {
  display: grid;
  gap: 24px; }
.alm-grid.col-3 .alm-reveal, .alm-grid.col-3 .alm-listing {
  grid-template-columns: repeat(3, minmax(0, 1fr)); }
  @media screen and (max-width: 920px) {
    .alm-grid.col-3 .alm-reveal, .alm-grid.col-3 .alm-listing {
      grid-template-columns: repeat(2, minmax(0, 1fr)); } }
  @media screen and (max-width: 768px) {
    .alm-grid.col-3 .alm-reveal, .alm-grid.col-3 .alm-listing {
      grid-template-columns: repeat(1, minmax(0, 1fr)); } }
.alm-grid.col-2 .alm-reveal, .alm-grid.col-2 .alm-listing {
  grid-template-columns: repeat(2, minmax(0, 1fr)); }
  @media screen and (max-width: 768px) {
    .alm-grid.col-2 .alm-reveal, .alm-grid.col-2 .alm-listing {
      grid-template-columns: repeat(1, minmax(0, 1fr)); } }

.alm-placeholder {
  text-align: center;
  padding: 24px 0; }
  .alm-placeholder img {
    width: 60px; }

.alm-listing h3 {
  padding-top: 24px;
  text-align: center;
  grid-column: 1 / -1;
  width: 100%; }

.alm-btn-wrap {
  display: none; }

.ajax-load-more-wrap .alm-btn-wrap .alm-load-more-btn {
  display: none !important; }

.pagination.is-loading .alm-trigger {
  opacity: .6;
  pointer-events: none; }

.pagination .loader {
  display: none;
  padding-bottom: 24px; }

.pagination.is-loading .loader {
  display: inline-block; }

.pagination.is-disabled .alm-trigger {
  opacity: .5;
  pointer-events: none; }

.alm-filters--controls,
#alm-filters-reset-button {
  display: none !important; }

.alm-filters-container .alm-filter li div.alm-filter--link.active.field-checkbox::before,
.alm-filters-container .alm-filter li div.alm-filter--link.active.field-radio::before {
  border-color: #5ABCBF !important;
  background-color: #5ABCBF !important; }

.alm-filters .item-order {
  display: none !important; }

.alm-filters .item-search {
  display: none !important; }

h1, .fs-1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(38px, calc(-22.4444444444px + 0.0787037037 * 100vw), 72px);
  line-height: clamp(46px, calc(-14.4444444444px + 0.0787037037 * 100vw), 80px);
  letter-spacing: 7px; }
  @media screen and (max-width: 768px) {
    h1, .fs-1 {
      letter-spacing: 3px; } }

h2, .fs-2 {
  font-size: clamp(26px, calc(-2.4444444444px + 0.037037037 * 100vw), 42px);
  line-height: clamp(34px, calc(5.5555555556px + 0.037037037 * 100vw), 50px);
  font-family: "Metropolis", sans-serif;
  letter-spacing: 0;
  font-weight: 400; }

h3, .fs-3 {
  font-size: clamp(20px, calc(12.8888888889px + 0.0092592593 * 100vw), 24px);
  line-height: clamp(28px, calc(20.8888888889px + 0.0092592593 * 100vw), 32px);
  font-weight: 400; }

h4, .fs-4 {
  font-size: 18px;
  line-height: 26px; }

.fs-stats {
  font-family: "Bebas Neue", sans-serif;
  font-size: 60px;
  line-height: 68px; }
  @media screen and (max-width: 768px) {
    .fs-stats {
      font-size: 48px;
      line-height: 54px; } }

.fs-article {
  font-size: clamp(22px, calc(4.2222222222px + 0.0231481481 * 100vw), 32px);
  line-height: clamp(30px, calc(12.2222222222px + 0.0231481481 * 100vw), 40px);
  font-weight: 500; }

.cat-label {
  font-size: clamp(14px, calc(10.4444444444px + 0.0046296296 * 100vw), 16px);
  line-height: clamp(16px, calc(16px + 0 * 100vw), 16px); }

body {
  font-family: "Metropolis", sans-serif;
  font-size: clamp(16px, calc(8.8888888889px + 0.0092592593 * 100vw), 20px);
  line-height: clamp(24px, calc(20.4444444444px + 0.0046296296 * 100vw), 26px);
  font-weight: 400; }

p, .p {
  font-size: clamp(16px, calc(8.8888888889px + 0.0092592593 * 100vw), 20px);
  line-height: clamp(24px, calc(20.4444444444px + 0.0046296296 * 100vw), 26px); }

.wp-nav a {
  font-size: clamp(16px, calc(8.8888888889px + 0.0092592593 * 100vw), 20px);
  line-height: clamp(24px, calc(20.4444444444px + 0.0046296296 * 100vw), 26px);
  font-weight: 400; }

small, .small {
  font-size: clamp(14px, calc(10.4444444444px + 0.0046296296 * 100vw), 16px);
  line-height: clamp(16px, calc(16px + 0 * 100vw), 16px); }

.x-small {
  font-size: clamp(14px, calc(14px + 0 * 100vw), 14px);
  line-height: clamp(16px, calc(16px + 0 * 100vw), 16px); }

.btn {
  font-size: 20px;
  font-weight: 400; }
  @media screen and (max-width: 920px) {
    .btn {
      font-size: 16px; } }

mark, .mark {
  color: #5ABCBF; }

.entry > * {
  margin: 0; }
.entry > * + * {
  margin-top: 18px; }
.entry p + p {
  margin-top: 8px; }
.entry h1, .entry h2 {
  margin-bottom: 24px; }
.entry ul, .entry ol {
  padding-left: 18px; }
.entry ul {
  list-style: disc; }
.entry ol {
  list-style: decimal; }
.entry blockquote {
  font-size: 24px;
  font-style: italic;
  font-weight: 300;
  border-left: 4px solid #9CD4D2;
  margin-left: 0;
  padding-left: 24px; }
  .entry blockquote p {
    font-size: inherit;
    font-weight: inherit; }

.container {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto; }

section {
  padding-left: 18px;
  padding-right: 18px; }

.narrow {
  max-width: 50%;
  margin: 0 auto; }
  @media screen and (max-width: 920px) {
    .narrow {
      max-width: 70%; } }
  @media screen and (max-width: 768px) {
    .narrow {
      max-width: 100%; } }

.indent {
  max-width: 70%;
  margin: 0 auto; }
  @media screen and (max-width: 768px) {
    .indent {
      max-width: 100%; } }

.gap-120 {
  gap: 120px; }
  @media screen and (max-width: 768px) {
    .gap-120 {
      gap: 80px; } }

.gap-40 {
  gap: 40px; }
  @media screen and (max-width: 768px) {
    .gap-40 {
      gap: 24px; } }

.gap-24 {
  gap: 24px; }

.gap-18 {
  gap: 18px; }

.gap-0 {
  gap: 0; }

@media screen and (max-width: 1100px) {
  .md-gap-0 {
    gap: 0; } }
@media screen and (max-width: 768px) {
  .xs-gap-24 {
    gap: 24px; }

  .xs-gap-12 {
    gap: 12px; }

  .xs-gap-0 {
    gap: 0px; } }
.pad-18 {
  padding: 18px; }
  @media screen and (max-width: 768px) {
    .pad-18 {
      padding: 14px; } }

.pad-36 {
  padding: 32px; }
  @media screen and (max-width: 768px) {
    .pad-36 {
      padding: 16px; } }

.pl-120 {
  padding-left: 120px; }
  @media screen and (max-width: 1100px) {
    .pl-120 {
      padding-left: 60px; } }
  @media screen and (max-width: 768px) {
    .pl-120 {
      padding: 0; } }

.pr-120 {
  padding-right: 120px; }
  @media screen and (max-width: 1100px) {
    .pr-120 {
      padding-right: 60px; } }
  @media screen and (max-width: 768px) {
    .pr-120 {
      padding: 0; } }

.pt-24 {
  padding-top: 24px; }

.fs-chapter {
  font-size: clamp(28px, calc(-28.8888888889px + 0.0740740741 * 100vw), 60px);
  line-height: clamp(34px, calc(-26.4444444444px + 0.0787037037 * 100vw), 68px);
  font-family: "Bebas Neue", sans-serif;
  display: flex;
  gap: 4px;
  align-items: baseline;
  padding-top: 9px; }
  @media screen and (max-width: 768px) {
    .fs-chapter {
      padding-top: 0px; } }
  .fs-chapter sub {
    font-size: 24px; }

.breadcrumbs {
  padding-top: 26px;
  padding-bottom: 48px; }
  @media screen and (max-width: 768px) {
    .breadcrumbs {
      display: none; } }
  .breadcrumbs a:hover {
    opacity: 0.7; }

@media screen and (max-width: 768px) {
  .breadcrumb {
    height: 18px; } }
.resources h3 {
  background-color: rgba(90, 188, 191, 0.5);
  border-radius: 4px;
  padding: 8px 16px; }
.resources .item-bottom .btn {
  align-self: initial; }

.card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden; }
  .card figure {
    position: relative; }
  @media screen and (max-width: 768px) {
    .card {
      border-radius: 4px; } }

.card.article {
  border-radius: 8px; }
  .card.article figure {
    aspect-ratio: 4/3;
    width: 100%;
    border-radius: 8px;
    overflow: hidden; }
    .card.article figure img {
      display: block;
      height: 100%;
      padding: 0; }
  .card.article .content {
    padding: 24px; }
  .card.article .cat-label {
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);
    margin: 24px; }
    @media screen and (max-width: 768px) {
      .card.article .cat-label {
        margin: 12px; } }
    .card.article .cat-label.topic, .card.article .cat-label.type {
      left: auto;
      bottom: auto;
      top: 0;
      right: 0; }

.card.mini figure {
  width: 194px; }
.card.mini .fs-chapter {
  z-index: 2;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%); }
@media screen and (max-width: 768px) {
  .card.mini figure {
    width: 90px;
    aspect-ratio: 3/4; } }

.cat-label {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px; }
  .cat-label.gray {
    background-color: #ECEAEA; }
  .cat-label i {
    font-size: 22px; }

.tags span {
  padding: 8px 16px;
  background-color: #fff;
  border-radius: 10px;
  display: inline-block;
  margin: 0 6px 6px 0;
  font-size: 16px;
  text-wrap: nowrap; }
.tags.gray span {
  background-color: #ECEAEA; }

.reading-level span {
  width: 20px;
  height: 20px;
  display: block;
  border-radius: 20px;
  border: 2px solid #5ABCBF;
  background-color: transparent; }
  .reading-level span.fill {
    background-color: #5ABCBF; }

.reading-time i {
  font-size: 32px; }

@media screen and (max-width: 768px) {
  .hero-feature {
    flex-direction: column-reverse; }
    .hero-feature figure {
      aspect-ratio: 16/9; } }

.social-podcast a {
  padding-right: 12px;
  padding-left: 12px;
  margin: 0 6px 6px 0; }
.social-podcast a:before {
  font-family: "ic-bull";
  font-size: 30px; }
.social-podcast .spotify {
  border: 2px solid #1DB954; }
  .social-podcast .spotify:before {
    content: "\e914";
    color: #1DB954; }
.social-podcast .apple {
  border: 2px solid #B150E2; }
  .social-podcast .apple:before {
    content: "\e901";
    color: #B150E2; }
.social-podcast .youtube {
  border: 2px solid #FF0033; }
  .social-podcast .youtube:before {
    content: "\e91b";
    color: #FF0033; }
@media screen and (max-width: 768px) {
  .social-podcast {
    display: flex;
    flex-direction: column;
    justify-items: center !important;
    gap: 12px; }
    .social-podcast a {
      align-self: center;
      margin: 0; } }

.chapter-list ul p,
.chapter-list ul li {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 2px 0; }
  .chapter-list ul p b,
  .chapter-list ul li b {
    display: inline-block;
    padding: 2px 6px;
    min-width: 80px;
    background-color: rgba(90, 188, 191, 0.4);
    border-radius: 4px;
    text-align: center;
    font-size: 16px; }
.chapter-list ul p {
  padding: 0; }

@media screen and (max-width: 768px) {
  .social-podcast.xs-version {
    gap: 6px; }
    .social-podcast.xs-version a {
      padding-right: 8px;
      padding-left: 8px;
      font-size: 14px;
      gap: 4px; }
    .social-podcast.xs-version a:before {
      font-size: 22px; } }

.social-links a {
  display: flex;
  gap: 12px;
  align-items: center; }
.social-links i {
  font-size: 32px; }
.social-links.icon span, .social-links.text i {
  display: none; }

header.header {
  z-index: 12; }
  header.header .site-logo {
    width: 80px;
    border-radius: 4px;
    overflow: hidden; }
    @media screen and (max-width: 920px) {
      header.header .site-logo {
        width: 48px; } }
  header.header .card {
    overflow: visible; }
  header.header .wp-nav {
    font-size: clamp(16px, calc(8.8888888889px + 0.0092592593 * 100vw), 20px);
    line-height: clamp(24px, calc(20.4444444444px + 0.0046296296 * 100vw), 26px); }
    header.header .wp-nav ul {
      gap: 8px; }
    header.header .wp-nav li {
      position: relative; }
    header.header .wp-nav a {
      text-wrap: nowrap;
      padding: 8px 12px;
      border-radius: 6px;
      position: relative;
      display: block; }
      header.header .wp-nav a:before {
        content: '';
        position: absolute;
        bottom: 0;
        height: 2px;
        background-color: #5ABCBF;
        width: 100%;
        width: 0;
        left: 0;
        right: 0;
        margin: 0 auto;
        transition: all ease 0.3s; }
    header.header .wp-nav .current > a,
    header.header .wp-nav .current-menu-ancestor > a {
      background-color: rgba(90, 188, 191, 0.5); }
    header.header .wp-nav a:hover {
      border-radius: 0;
      background-color: transparent; }
      header.header .wp-nav a:hover:before {
        width: calc(100% - 24px); }
  header.header .navicon {
    display: none; }
    @media screen and (max-width: 1100px) {
      header.header .navicon {
        display: flex; } }

header.header .wp-nav .submenu a {
  padding: 8px 12px;
  display: inline-block; }
header.header .wp-nav:not(.wp-nav.mobile) .submenu-1 {
  position: absolute;
  top: 34px;
  padding-top: 38px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 3;
  min-width: 20vw;
  transition: all ease 0.7s;
  transform: translateY(50%); }
  header.header .wp-nav:not(.wp-nav.mobile) .submenu-1 .is-parent > a {
    display: none; }
header.header .wp-nav:not(.wp-nav.mobile) .submenu-1 > ul {
  background: #fff;
  border: 2px solid #F9F8F8;
  box-shadow: 0 2px 40px 0 rgba(33, 33, 49, 0.1);
  border-radius: 4px;
  padding: 18px 32px 18px 18px; }
header.header .wp-nav .submenu-1 > ul li {
  padding: 6px 0; }
header.header .wp-nav .submenu-2 {
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid #ECEAEA; }
  header.header .wp-nav .submenu-2 ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)); }
header.header .wp-nav .is-parent > a:after {
  font-family: "ic-bull";
  content: "\e90a";
  font-size: 18px;
  padding-left: 8px; }
header.header .wp-nav:not(.wp-nav.mobile) .is-parent:hover .submenu-1 {
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
  transform: translateY(0); }

body.menu-mobile-active {
  overflow: hidden; }

header.header .menu-close,
header.header .nav-mobile {
  display: none; }
header.header .nav-mobile {
  max-height: 90vh;
  overflow-Y: auto; }
header.header .wp-nav.mobile a {
  width: 100%; }
header.header .wp-nav.mobile ul {
  gap: 12px; }
header.header .wp-nav.mobile .is-parent > a:after {
  display: none; }
header.header .wp-nav.mobile .item-toggle {
  position: absolute;
  right: 8px;
  top: 8px; }
header.header .wp-nav.mobile .item-toggle:after {
  font-family: "ic-bull";
  content: "\e90a";
  font-size: 18px;
  display: block; }
header.header .wp-nav.mobile .submenu-1 {
  display: none;
  margin-bottom: 18px; }
header.header .wp-nav.mobile .is-parent.active .submenu-1 {
  display: block; }
header.header .wp-nav.mobile .is-parent.active .item-toggle:after {
  transform: rotate(-180deg); }
header.header.menu-active {
  box-shadow: 0 2px 40px 0 rgba(33, 33, 49, 0.1); }
  header.header.menu-active .social-links {
    padding: 18px 0;
    margin-bottom: 24px; }
  header.header.menu-active .navicon,
  header.header.menu-active .search {
    display: none; }
  header.header.menu-active .menu-close,
  header.header.menu-active .nav-mobile {
    display: flex; }

/*
section.cta-book {
  figure {
    max-width: 512px;
    @include screen(sm) {
      width: 400px;
    }
  }
  @include screen(xs) {
    margin-top: 300px;
    padding-top: 60px;
    h2 {
      text-align: center;
    }
    .item-right {
      justify-content: center;
    }
    .picture-area {
      position: absolute;
      bottom:100%;
      
    }
    figure {
      width: 300px;
      transform: translateY(30px);
      margin:0 auto;
      img {
         border:2px solid $key-2;
      }
    }
  }
}
*/
@media screen and (max-width: 768px) {
  .topic-buttons .card img {
    width: 60px; } }

.cta .btn {
  float: right; }
.cta .social-podcast .btn {
  float: none; }
.cta figure {
  max-width: 512px; }
  @media screen and (max-width: 920px) {
    .cta figure {
      max-width: 400px; } }
@media screen and (max-width: 768px) {
  .cta .f-grid {
    flex-direction: column-reverse; }
  .cta .picture-area {
    justify-content: center; }
  .cta .button {
    justify-content: center; } }
.cta.cta-podcast {
  background-color: transparent; }
  .cta.cta-podcast .f-grid > div:first-child {
    order: 2; }
    @media screen and (max-width: 768px) {
      .cta.cta-podcast .f-grid > div:first-child {
        order: 1; } }
  .cta.cta-podcast .f-grid > div:last-child {
    order: 1; }
    @media screen and (max-width: 768px) {
      .cta.cta-podcast .f-grid > div:last-child {
        order: 2; } }
.cta.light {
  background-color: transparent; }
.cta.cta-sponsor .fit-cover img {
  object-fit: contain; }

@media (min-width: 768px) {
  body.page-libri .cta:nth-of-type(even) .f-grid > div:first-child {
    order: 2; }
  body.page-libri .cta:nth-of-type(even) .f-grid > div:last-child {
    order: 1; }
  body.page-libri .cta:nth-of-type(even) .f-grid .picture-area {
    justify-content: start; }
  body.page-libri .cta:nth-of-type(even) .f-grid .picture-area.pl-120 {
    padding-left: 0;
    padding-right: 80px; } }
@media (min-width: 1100px) {
  body.page-libri .cta:nth-of-type(even) .f-grid .picture-area.pl-120 {
    padding-left: 0;
    padding-right: 120px; } }

body.page-podcast .loop .card .cat-label.type {
  display: none; }

body.page-blog .loop .card .cat-label.type {
  display: none; }

.guide .guide-block .giant-number {
  font-size: clamp(100px, calc(-255.5555555556px + 0.462962963 * 100vw), 300px);
  line-height: clamp(100px, calc(-255.5555555556px + 0.462962963 * 100vw), 300px); }
@media screen and (max-width: 920px) {
  .guide .guide-2 > div:first-child {
    order: 2; }
  .guide .guide-2 > div:last-child {
    order: 1; }
  .guide .guide-2 .pl-120 {
    padding: 0; } }

section.reviews .item {
  padding: 24px; }
  @media screen and (max-width: 768px) {
    section.reviews .item {
      padding: 16px; } }
  section.reviews .item p {
    min-height: 64px;
    text-align: center; }
  section.reviews .item i {
    font-size: 42px; }

@media screen and (max-width: 1100px) {
  .hero-grid .social-podcast {
    gap: 6px; }
    .hero-grid .social-podcast a {
      padding-right: 8px;
      padding-left: 8px;
      font-size: 14px;
      gap: 4px; }
    .hero-grid .social-podcast a:before {
      font-size: 22px; } }

.stats .stars i {
  height: 68px;
  font-size: 32px; }
@media screen and (max-width: 768px) {
  .stats .f-grid {
    gap: 12px; }
  .stats .stars {
    gap: 0; }
    .stats .stars i {
      font-size: 24px;
      height: 54px; } }

@media screen and (max-width: 768px) {
  section.author .main-grid {
    gap: 24px; }
  section.author figure.r-1-1 {
    aspect-ratio: 10/7; } }

section.keypoints .item img {
  width: 90px;
  /*
  margin: 0 24px 24px 0;
  float: left;
  */ }

.cat-list .item {
  padding: 32px; }
  @media screen and (max-width: 768px) {
    .cat-list .item {
      padding: 16px; }
      .cat-list .item img {
        width: 80px; } }
@media screen and (max-width: 768px) {
  .cat-list .f-grid {
    gap: 16px; } }

section.hi-fi {
  background-color: #fff;
  padding-top: 42px;
  padding-bottom: 42px;
  /*
  img {
    width: 100%;
    display: block;
    height: auto;
  }
  */ }
  section.hi-fi img {
    display: block;
    max-height: 60px;
    max-width: 180px;
    height: auto;
    width: 100%;
    object-fit: contain; }

footer.footer .footer-main {
  background-color: #fff;
  border-top: 1px solid #ECEAEA;
  padding: 75px 18px; }
  footer.footer .footer-main .main-grid {
    align-items: start; }
  footer.footer .footer-main .widget:first-child {
    width: 500px; }
    @media screen and (max-width: 768px) {
      footer.footer .footer-main .widget:first-child {
        width: 100%; } }
  footer.footer .footer-main .site-logo {
    width: 60%; }
  footer.footer .footer-main .widget a {
    padding: 4px 0;
    position: relative; }
    footer.footer .footer-main .widget a:before {
      content: '';
      position: absolute;
      bottom: 0;
      height: 2px;
      background-color: #5ABCBF;
      width: 0;
      left: 0;
      right: 0;
      margin: 0 auto;
      transition: all ease 0.3s; }
  footer.footer .footer-main .widget a:hover:before {
    width: 100%; }
  @media screen and (max-width: 768px) {
    footer.footer .footer-main {
      padding: 50px 18px; }
      footer.footer .footer-main nav ul {
        align-items: center; }
      footer.footer .footer-main .widget {
        padding-top: 36px;
        text-align: center; }
      footer.footer .footer-main .social-links {
        gap: 0; } }
footer.footer .footer-menu {
  background-color: #F9F8F8;
  padding: 16px 18px; }
  footer.footer .footer-menu a {
    color: #908F8E;
    padding: 8px 16px;
    font-size: clamp(14px, calc(10.4444444444px + 0.0046296296 * 100vw), 16px);
    line-height: clamp(16px, calc(16px + 0 * 100vw), 16px); }
    footer.footer .footer-menu a:hover {
      opacity: 0.7; }
  @media screen and (max-width: 768px) {
    footer.footer .footer-menu nav ul {
      align-items: center;
      gap: 0; } }
footer.footer .footer-colophon {
  background-color: #212131;
  color: #ECEAEA;
  padding: 16px 18px; }
  @media screen and (max-width: 768px) {
    footer.footer .footer-colophon > div {
      align-items: center; } }

.owl-latests .fs-article {
  font-size: 24px;
  line-height: 32px;
  min-height: 96px; }
  @media screen and (max-width: 768px) {
    .owl-latests .fs-article {
      min-height: auto; } }

.owl-custom-controls .dots.owl-dots {
  width: fit-content; }
.owl-custom-controls .dots.owl-dots button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  width: auto; }
@media screen and (max-width: 768px) {
  .owl-custom-controls .dots.owl-dots {
    display: none; } }

.press .loop {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; }
  .press .loop .item {
    flex: 0 0 calc(100% / 3);
    max-width: calc(100% / 3);
    box-sizing: border-box;
    border-right: 1px solid #CAC7C4;
    padding: 0 24px;
    margin-bottom: 42px; }
    .press .loop .item:nth-child(3n), .press .loop .item:last-child {
      border-right: none; }
    @media screen and (max-width: 768px) {
      .press .loop .item {
        flex: 0 0 100%;
        max-width: 100%;
        border-right: none;
        border-bottom: 1px solid #CAC7C4;
        padding: 24px 0;
        margin-bottom: 0; } }
    .press .loop .item img {
      max-width: 100px;
      border-radius: 4px;
      overflow: hidden; }
    .press .loop .item .btn {
      padding: 0; }

@media screen and (max-width: 920px) {
  .home .abstract .item-column-2 {
    display: none; } }

body.page-chi-sono .block-icons {
  display: flex;
  justify-content: space-around; }
  body.page-chi-sono .block-icons figure {
    max-width: 200px; }
    body.page-chi-sono .block-icons figure img {
      width: 100%;
      height: auto; }
    body.page-chi-sono .block-icons figure figcaption {
      font-size: 30px;
      line-height: 38px;
      text-align: center; }
      @media screen and (max-width: 768px) {
        body.page-chi-sono .block-icons figure figcaption {
          font-size: 18px;
          line-height: 26px; } }

body.search section.popular h1 {
  display: none; }
body.search .loop .card .cat-label.cat {
  display: none; }
body.search .loop .card .cat-label.topic {
  left: 0;
  bottom: 0;
  right: auto;
  top: auto; }

.blog-featured .loop {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch; }
  @media screen and (max-width: 768px) {
    .blog-featured .loop {
      grid-template-columns: initial; } }
.blog-featured .feat-big h2 {
  text-align: center;
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 4px;
  padding: 18px;
  width: fit-content; }
.blog-featured .feat-big a {
  display: block;
  height: 100%; }
.blog-featured .feat-big figure {
  height: 100%; }
.blog-featured .feat-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
  height: 100%; }
  .blog-featured .feat-side h2 {
    text-align: center;
    padding: 18px; }
  .blog-featured .feat-side .feat-item {
    display: grid;
    grid-template-rows: 1fr auto;
    min-height: 0; }
  @media screen and (max-width: 768px) {
    .blog-featured .feat-side {
      display: none; } }

.card.book figure {
  width: 130px; }
  @media screen and (max-width: 768px) {
    .card.book figure {
      width: 100px; } }

.card.tool figure {
  width: 190px; }
  @media screen and (max-width: 768px) {
    .card.tool figure {
      aspect-ratio: 3/4;
      width: 100px;
      height: 100%; } }

body.page-video .abstract .social-podcast-label {
  display: none; }
body.page-video .loop .card .cat-label.type {
  display: none; }

body.page-argomenti .loop .card .cat-label.cat {
  display: none; }
body.page-argomenti .loop .card .cat-label.topic {
  left: 0;
  bottom: 0;
  right: auto;
  top: auto; }

body.archive .loop .card .cat-label.cat {
  display: none; }
body.archive .loop .card .cat-label.topic {
  left: 0;
  bottom: 0;
  right: auto;
  top: auto; }

#modal-search.active {
  align-items: start; }
#modal-search .modal-inner {
  max-width: 860px;
  display: block;
  min-height: auto;
  padding: 0;
  margin-top: 200px; }
  @media screen and (max-width: 768px) {
    #modal-search .modal-inner {
      margin-top: 100px;
      padding: 18px; } }
#modal-search .modal-close {
  position: relative;
  right: 0;
  top: 0; }
#modal-search form > div {
  background-color: #fff; }
#modal-search form > div:first-child {
  padding-top: 6px;
  padding-bottom: 6px;
  padding-right: 2px; }
#modal-search input[type="text"] {
  border: 0;
  padding: 0 12px;
  font-size: 18px;
  height: 48px; }
  #modal-search input[type="text"]:focus {
    outline: none; }

.filter .btn.order.desc .ic-sort-asc {
  display: none; }
.filter .btn.order.asc .ic-sort-desc {
  display: none; }

.filter-form {
  display: none; }
  .filter-form.active {
    display: block; }
  .filter-form .chips span {
    background-color: rgba(90, 188, 191, 0.5);
    border-radius: 4px;
    padding: 8px 12px;
    position: relative;
    display: flex;
    align-items: center; }
    .filter-form .chips span:after {
      content: "×";
      font-size: 18px;
      line-height: 18px;
      padding-left: 8px;
      color: #000; }
  .filter-form .alm-filters.alm-filters-container {
    display: flex;
    flex-wrap: wrap;
    gap: 48px; }
    @media screen and (max-width: 768px) {
      .filter-form .alm-filters.alm-filters-container {
        gap: 18px;
        flex-direction: column; } }
    .filter-form .alm-filters.alm-filters-container > div {
      flex: 1 1 0; }
    .filter-form .alm-filters.alm-filters-container h3 {
      font-size: 24px;
      font-weight: 300; }
      @media screen and (max-width: 768px) {
        .filter-form .alm-filters.alm-filters-container h3 {
          font-size: 18px;
          margin-bottom: 18px; } }

body.filters-active .filter-form {
  display: block;
  border: 2px solid red; }

body.page-sitemap .sitemap-block {
  border-bottom: 1px solid #ddd;
  padding: 12px 0; }
  body.page-sitemap .sitemap-block summary {
    list-style: none;
    cursor: pointer;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: .5rem 0;
    position: relative; }
    body.page-sitemap .sitemap-block summary::after {
      content: none; }
    body.page-sitemap .sitemap-block summary.has-content::after {
      content: "+";
      font-weight: 300;
      font-size: 36px;
      line-height: 1;
      transition: transform .2s, content .2s; }
body.page-sitemap .sitemap-block[open] summary.has-content::after {
  content: "–"; }
body.page-sitemap .sitemap-content {
  padding: 12px 18px; }
  body.page-sitemap .sitemap-content p {
    padding: 6px 6px 6px 28px; }
  body.page-sitemap .sitemap-content b {
    font-size: 16px !important;
    font-weight: 300 !important;
    padding-right: 12px;
    display: inline-block; }
  body.page-sitemap .sitemap-content h3 {
    padding-top: 12px; }
    body.page-sitemap .sitemap-content h3:first-child {
      padding-top: 0; }

.owl .card .reading-level,
.query .card .reading-level {
  display: none; }

.py-lg {
  padding-top: 75px;
  padding-bottom: 75px; }

.scroll-area {
  max-height: 60vh;
  overflow: hidden;
  overflow-y: scroll; }

/*
@media (min-width: $screen-md + 1) and (max-width: 99999px) {
  .lg-hide {
    display: none;
  }
  .md--hide {
    display: none;
  }
}
@media (min-width: $screen-sm + 1) and (max-width: $screen-md) {
  .md-hide {
    display: none;
     background-color: pink!important;
  }
}
@media (min-width: $screen-sm + 1) and (max-width: 99999px) {
  .sm--hide {
    display: none;
  }
}

@media (min-width:$screen-xs + 1) and (max-width: $screen-sm) {
  .sm-hide {
    display: none;
    background-color: pink!important;
  }
}
@media (max-width: $screen-xs) {
  .xs-hide {
    display: none;
    background-color: pink!important;
  }
}
*/
@media (max-width: 768px) {
  .xs-hide {
    display: none; } }
@media (max-width: 920px) {
  .sm-hide {
    display: none; } }
@media (max-width: 1100px) {
  .md-hide {
    display: none; } }
@media (min-width: 769px) {
  .xs--hide {
    display: none; } }
@media (min-width: 921px) {
  .sm--hide {
    display: none; } }
@media (min-width: 1101px) {
  .md--hide {
    display: none; } }

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