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

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

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

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

html,
body {
  width: 100%;
  min-height: 100%;
}

button,
input,
optgroup,
select,
textarea,
html input[type=button],
input[type=reset],
input[type=submit],
button[disabled],
html input[disabled],
button::-moz-focus-inner,
input::-moz-focus-inner,
input[type=checkbox],
input[type=radio],
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button,
input[type=search],
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  border: none;
  background-image: none;
  background-color: transparent;
  box-shadow: none;
}

button {
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
}

html,
:root {
  font-size: 62.5%;
}

html, body {
  line-height: 1;
  font-size: 1.6rem;
  font-weight: normal;
  font-family: "Mohave", sans-serif;
}

.header {
  background: #000000;
  text-align: center;
  height: 8rem;
  width: 100%;
  display: flex;
  align-items: center;
}
.header__nav {
  width: 100%;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 1300px) {
  .header__nav {
    padding: 0 8rem;
  }
}
.header .nav__desktop__left {
  z-index: 9999;
}
.header .nav__desktop__left img {
  height: 4rem;
}
.header .nav__desktop__middle .nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header .nav__desktop__middle .nav__item {
  display: flex;
  position: relative;
}
.header .nav__desktop__middle .nav__item:hover > a {
  color: #ffcb04;
}
.header .nav__desktop__middle .nav__item:hover > a::after {
  border-top: 0.4rem solid #ffcb04;
}
.header .nav__desktop__middle .nav__item:hover::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0rem;
  right: 0rem;
  height: 2px;
  background-color: #ffcb04;
}
.header .nav__desktop__middle .nav__item a {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
}
.header .nav__desktop__middle .nav__item--dropdown > a {
  cursor: pointer;
}
.header .nav__desktop__middle .nav__item--dropdown > a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.5rem;
  vertical-align: middle;
  border-left: 0.4rem solid transparent;
  border-right: 0.4rem solid transparent;
  border-top: 0.4rem solid #ffffff;
  transition: transform 0.3s ease;
}
.header .nav__desktop__middle .nav__item--dropdown:hover > a::after {
  transform: rotate(180deg);
}
.header .nav__desktop__middle .nav__item--dropdown:hover .dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header .nav__desktop__middle .nav__item--dropdown.active > a::after {
  transform: rotate(180deg);
}
.header .nav__desktop__middle .nav__item--dropdown.active .dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header .nav__desktop__middle .dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #000000;
  min-width: 20rem;
  padding: 1rem 0;
  margin-top: 0.5rem;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1rem);
  transition: all 0.3s ease;
  z-index: 1000;
}
.header .nav__desktop__middle .dropdown__menu li {
  list-style: none;
}
.header .nav__desktop__middle .dropdown__menu li a {
  display: block;
  padding: 2rem;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 400;
  text-transform: none;
  transition: background 0.2s ease;
}
.header .nav__desktop__middle .dropdown__menu li a:hover {
  color: #ffcb04;
}
.header .nav__desktop__right .search-container {
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 4px;
  transition: outline 0.2s ease;
}
.header .nav__desktop__right .search-container:focus-within {
  outline: 2px solid #4a4a4a;
}
.header .nav__desktop__right .search-container .search-input {
  background: none;
  width: 15rem;
  padding: 8px;
  font-size: 1.5rem;
  border-radius: 4px;
  pointer-events: all;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
  outline: none;
  border: none;
}
@media (min-width: 1300px) {
  .header .nav__desktop__right .search-container .search-input {
    width: 20rem;
  }
}
.header .nav__desktop__right .search-container .search-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header .nav__desktop__right .search-container .search-button svg {
  height: 1.6rem;
  width: 1.6rem;
}

@media (max-width: 900px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }
  .header .nav__desktop__middle,
  .header .nav__desktop__right {
    display: none;
  }
}
.footer {
  width: 100%;
}
.footer__blue {
  width: 100%;
  height: 7.5rem;
  background: #000000;
  display: flex;
  align-items: center;
}
.footer__blue__wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8rem;
}
.footer__blue__logo img {
  height: 2.5rem;
}
.footer__blue__middle-policy {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.footer__blue__middle-policy__text {
  font-size: 1.3rem;
  color: #ffffff;
}
.footer__blue__middle-policy__text a {
  font-size: 1.3rem;
  font-family: "Montserrat", Sans-serif;
  color: #ffcb04;
  margin: 0 5px;
  transition: all 0.3s ease;
}
.footer__blue__middle-policy__text a:hover {
  opacity: 0.6;
}
.footer__blue__deen {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.footer__blue__deen .social-links {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.footer__blue__deen .social-links a {
  margin-right: 10px;
  transition: all 0.3s ease;
}
.footer__blue__deen .social-links a:hover {
  opacity: 0.6;
  transform: translateY(-2px);
}
.footer__blue__deen .social-links span {
  font-size: 1.4rem;
  font-weight: 400;
  color: #ffffff;
  font-family: "Montserrat", Sans-serif;
}
.footer__blue__deen .separator {
  width: 2px;
  height: 2.5rem;
  background: #5f625f;
  margin: 0 2rem 0 1rem;
}
.footer__blue__deen h6 {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #5f625f;
  white-space: nowrap;
}
.footer__blue__deen .deen {
  width: 4rem;
  position: relative;
  opacity: 0.26;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 3px;
}
.footer__blue__deen .deen svg {
  width: 40px;
  height: 15px;
}
.footer__blue__deen .deen svg path {
  stroke-dasharray: 800;
  transition: all 2s cubic-bezier(0.47, 0, 0.745, 0.715);
  stroke: #fff;
}
.footer__blue__deen .deen svg:hover path {
  animation-name: deen;
  animation-timing-function: linear;
  animation-duration: 5s;
  animation-fill-mode: forwards;
}
@keyframes deen {
  0% {
    stroke-dashoffset: 800;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 900px) {
  .footer__blue {
    height: auto;
    padding: 2rem 0;
  }
  .footer__blue__wrapper {
    flex-direction: column;
    padding: 0 2rem;
    gap: 2rem;
  }
  .footer__blue__logo img {
    height: 2rem;
  }
  .footer__blue__middle-policy {
    order: 3;
  }
  .footer__blue__middle-policy__text {
    font-size: 1.1rem;
    text-align: center;
  }
  .footer__blue__middle-policy__text a {
    font-size: 1.1rem;
  }
  .footer__blue__deen {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer__blue__deen .social-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
  }
  .footer__blue__deen .social-links span {
    font-size: 1.2rem;
  }
  .footer__blue__deen .separator {
    display: none;
  }
  .footer__blue__deen h6 {
    font-size: 1.1rem;
    justify-content: center;
  }
}
/*** MOBILE ***/
.nav__hamburger {
  display: none;
}

.nav__mobile {
  display: none;
}
.nav__mobile .nav__list li > a {
  position: relative;
}
.nav__mobile .nav__list li > a:hover::before {
  width: 100%;
}

@media (max-width: 900px) {
  .nav__hamburger {
    display: flex;
    z-index: 1000;
    background: none;
    border: 0;
    outline: none;
    border: none;
    cursor: pointer;
    -webkit-appearence: none;
    -webkit-tap-highlight-color: transparent;
  }
  .nav__hamburger:focus {
    outline: none;
  }
  .nav__hamburger svg {
    width: 64px;
    height: 48px;
    stroke: #ffcb04;
    stroke-width: 2px;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    display: block;
  }
  .nav__hamburger svg path {
    transition: stroke-dasharray var(--duration, 0.85s) var(--easing, ease) var(--delay, 0s), stroke-dashoffset var(--duration, 0.85s) var(--easing, ease) var(--delay, 0s);
    stroke-dasharray: var(--array-1, 26px) var(--array-2, 100px);
    stroke-dashoffset: var(--offset, 126px);
    transform: translateZ(0);
  }
  .nav__hamburger svg path:nth-child(2) {
    --duration: 0.7s;
    --easing: ease-in;
    --offset: 100px;
    --array-2: 74px;
  }
  .nav__hamburger svg path:nth-child(3) {
    --offset: 133px;
    --array-2: 107px;
  }
  .nav__hamburger.nav__hamburger--black svg {
    stroke: #ffcb04;
  }
  .nav__hamburger.active svg {
    stroke: #ffcb04;
  }
  .nav__hamburger.active svg path {
    --offset: 57px;
  }
  .nav__hamburger.active svg path:nth-child(1), .nav__hamburger.active svg path:nth-child(3) {
    --delay: 0.15s;
    --easing: cubic-bezier(0.2, 0.4, 0.2, 1.1);
  }
  .nav__hamburger.active svg path:nth-child(2) {
    --duration: 0.4s;
    --offset: 2px;
    --array-1: 1px;
  }
  .nav__hamburger.active svg path:nth-child(3) {
    --offset: 58px;
  }
  .nav__mobile {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    overflow-y: auto;
    background: #000000;
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(-1200px);
    transition: all 0.5s ease-in;
    z-index: 999;
  }
  .nav__mobile.active {
    transition: all 0.5s ease-in;
    transform: translateY(0);
    opacity: 1;
  }
  .nav__mobile .nav__mobile__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 3rem;
  }
  .nav__mobile .nav__mobile__logo {
    height: 40px;
  }
  .nav__mobile .nav__mobile__close {
    background: none;
    border: none;
    color: #ffcb04;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav__mobile .nav__list {
    list-style: none;
    flex: 1;
    padding: 10rem 0;
  }
  .nav__mobile .nav__item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav__mobile .nav__item > a,
  .nav__mobile .nav__item .nav__item-header a {
    white-space: nowrap;
    line-height: 200%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    font-size: 2rem;
    transition: 0.3s all ease;
    padding: 0.5rem 0;
    font-family: "Montserrat", Sans-serif;
    transition: 0.3s all ease;
  }
  .nav__mobile .nav__item > a:hover,
  .nav__mobile .nav__item .nav__item-header a:hover {
    color: #ffcb04;
  }
  .nav__mobile .nav__item .nav__arrow {
    cursor: pointer;
    color: #ffffff;
    transition: 0.3s all ease;
  }
  .nav__mobile .nav__item .nav__arrow:hover {
    color: #ffcb04;
  }
  .nav__mobile .nav__mobile__footer {
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav__mobile .nav__mobile__search {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 8px;
    overflow: hidden;
  }
  .nav__mobile .nav__mobile__search-input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border: none;
    font-size: 1.6rem;
    outline: none;
    color: #000000;
  }
  .nav__mobile .nav__mobile__search-input::-moz-placeholder {
    color: #000000;
  }
  .nav__mobile .nav__mobile__search-input::placeholder {
    color: #000000;
  }
  .nav__mobile .nav__mobile__search-button {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav__mobile .nav__item--has-submenu {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav__mobile .nav__item--has-submenu .nav__arrow {
    transition: transform 0.3s ease;
  }
  .nav__mobile .nav__item--has-submenu.active .nav__arrow {
    transform: rotate(180deg);
  }
  .nav__mobile .nav__item-header {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  .nav__mobile .nav__submenu {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }
  .nav__mobile .nav__submenu .nav__submenu-item {
    display: flex;
    align-items: flex-start;
    padding: 0 0 0 1rem;
  }
  .nav__mobile .nav__submenu .nav__submenu-item a {
    font-size: 1.4rem;
    line-height: 200%;
    padding: 1rem 0;
    opacity: 0.8;
    color: #ffffff;
    font-family: "Montserrat", Sans-serif;
  }
  .nav__mobile .nav__submenu .nav__submenu-item a:hover {
    opacity: 1;
  }
  .nav__mobile .nav__item--has-submenu.active .nav__submenu {
    max-height: 1000px;
    transition: max-height 0.5s ease-in;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/**
 * @license
 *
 * Font Family: Satoshi
 * Designed by: Deni Anggara
 * URL: https://www.fontshare.com/fonts/satoshi
 * © 2024 Indian Type Foundry
 *
 * Font Styles:
 * Satoshi Variable(Variable font)
 * Satoshi Variable Italic(Variable font)
 * Satoshi Light
 * Satoshi Light Italic
 * Satoshi Regular
 * Satoshi Italic
 * Satoshi Medium
 * Satoshi Medium Italic
 * Satoshi Bold
 * Satoshi Bold Italic
 * Satoshi Black
 * Satoshi Black Italic
 *
*/
/**
* This is a variable font
* You can controll variable axes as shown below:
* font-variation-settings: 'wght' 900.0;
*
* available axes:

* 'wght' (range from 300.0 to 900.0)

*/
@font-face {
  font-family: "Satoshi-Variable";
  src: url("/assets/site/fonts/Satoshi-Variable.woff2") format("woff2"), url("/assets/site/fonts/Satoshi-Variable.woff") format("woff"), url("/assets/site/fonts/Satoshi-Variable.ttf") format("truetype");
  font-weight: 300 900;
  font-display: swap;
  font-style: normal;
}
/**
* This is a variable font
* You can controll variable axes as shown below:
* font-variation-settings: 'wght' 900.0;
*
* available axes:

* 'wght' (range from 300.0 to 900.0)

*/
@font-face {
  font-family: "Satoshi-VariableItalic";
  src: url("/assets/site/fonts/Satoshi-VariableItalic.woff2") format("woff2"), url("/assets/site/fonts/Satoshi-VariableItalic.woff") format("woff"), url("/assets/site/fonts/Satoshi-VariableItalic.ttf") format("truetype");
  font-weight: 300 900;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Satoshi-Light";
  src: url("/assets/site/fonts/Satoshi-Light.woff2") format("woff2"), url("/assets/site/fonts/Satoshi-Light.woff") format("woff"), url("/assets/site/fonts/Satoshi-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi-LightItalic";
  src: url("/assets/site/fonts/Satoshi-LightItalic.woff2") format("woff2"), url("/assets/site/fonts/Satoshi-LightItalic.woff") format("woff"), url("/assets/site/fonts/Satoshi-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Satoshi-Regular";
  src: url("/assets/site/fonts/Satoshi-Regular.woff2") format("woff2"), url("/assets/site/fonts/Satoshi-Regular.woff") format("woff"), url("/assets/site/fonts/Satoshi-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi-Italic";
  src: url("/assets/site/fonts/Satoshi-Italic.woff2") format("woff2"), url("/assets/site/fonts/Satoshi-Italic.woff") format("woff"), url("/assets/site/fonts/Satoshi-Italic.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Satoshi-Medium";
  src: url("/assets/site/fonts/Satoshi-Medium.woff2") format("woff2"), url("/assets/site/fonts/Satoshi-Medium.woff") format("woff"), url("/assets/site/fonts/Satoshi-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi-MediumItalic";
  src: url("/assets/site/fonts/Satoshi-MediumItalic.woff2") format("woff2"), url("/assets/site/fonts/Satoshi-MediumItalic.woff") format("woff"), url("/assets/site/fonts/Satoshi-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Satoshi-Bold";
  src: url("/assets/site/fonts/Satoshi-Bold.woff2") format("woff2"), url("/assets/site/fonts/Satoshi-Bold.woff") format("woff"), url("/assets/site/fonts/Satoshi-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi-BoldItalic";
  src: url("/assets/site/fonts/Satoshi-BoldItalic.woff2") format("woff2"), url("/assets/site/fonts/Satoshi-BoldItalic.woff") format("woff"), url("/assets/site/fonts/Satoshi-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Satoshi-Black";
  src: url("/assets/site/fonts/Satoshi-Black.woff2") format("woff2"), url("/assets/site/fonts/Satoshi-Black.woff") format("woff"), url("/assets/site/fonts/Satoshi-Black.ttf") format("truetype");
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi-BlackItalic";
  src: url("/assets/site/fonts/Satoshi-BlackItalic.woff2") format("woff2"), url("/assets/site/fonts/Satoshi-BlackItalic.woff") format("woff"), url("/assets/site/fonts/Satoshi-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-display: swap;
  font-style: italic;
}
.btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 2rem;
  height: 40px;
  border-radius: 4px;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  transition: 0.3s all ease;
  overflow: hidden;
  z-index: 1;
  position: relative;
}
.btn svg {
  transition: 0.3s all ease;
}
.btn--primary {
  background-color: #000000;
}
.btn--primary:hover {
  background-color: #00c8ff;
}
.btn--lp {
  background-color: var(--lp-theme);
}
.btn--lp:hover {
  border: 2px solid var(--lp-theme);
  background-color: transparent !important;
  color: var(--lp-theme);
}
.btn--lp:hover svg path {
  fill: var(--lp-theme);
  stroke: var(--lp-theme);
}
.btn--outlined {
  border: 2px solid #000000;
}
.btn--outlined--primary {
  color: #000000;
}
.btn--outlined--primary:hover {
  color: #fff;
}
.btn--outlined--primary:hover svg path {
  fill: #fff;
}
.btn--outlined--white {
  border-color: white;
  color: white;
}
.btn--outlined:hover {
  background-color: #00c8ff;
  border-color: #00c8ff;
}
.btn--large {
  height: 70px;
  font-size: 1.8rem;
  font-family: "Satoshi-Bold";
  justify-content: space-between;
  gap: 2rem;
}
.btn--secondary {
  background-color: #000;
}
.btn--gray {
  border-color: #E9E9E9;
  color: #9D9D9D;
}
.btn--gray:hover {
  color: #fff;
}
.btn--gray:hover svg path {
  fill: #fff;
}
.btn--whatsapp {
  color: #4ae26a;
  border-color: #4ae26a;
}
.btn--whatsapp:hover {
  background-color: #4ae26a;
  border-color: #4ae26a;
  color: #fff;
}
.btn--whatsapp:hover svg path {
  fill: #fff;
}

.link {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: #000000;
  transition: 0.3s all ease;
  font-size: 1.5rem;
}
.link:hover {
  color: #00c8ff;
}
.link:hover svg path {
  fill: #00c8ff;
}
.link--white {
  color: #fff;
}

@media (max-width: 900px) {
  .btn {
    height: 35px;
  }
  .btn--large {
    height: 55px;
    font-size: 1.8rem;
  }
}
.inputWrapper {
  border-radius: 4px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.16), 0px 12px 24px 0px rgba(0, 0, 0, 0.02);
  background-color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
}
.inputWrapper .input {
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border: none;
  height: 70px;
  padding: 0 2.5rem;
  color: #363636;
  font-family: "Satoshi-Medium";
  font-size: 1.8rem;
  line-height: 133.333%;
  letter-spacing: -0.72px;
}
.inputWrapper .input--select {
  cursor: pointer;
}
.inputWrapper--outlined {
  background-color: transparent;
  border: 2px solid #ffffff;
  box-shadow: none;
}
.inputWrapper--outlined .input {
  background-color: transparent;
}

.form {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  flex-direction: column;
  width: 100%;
}
.form__row {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  width: 100%;
  position: relative;
}
.form__col {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.form__col.hide {
  display: none;
}
.form .wrapper {
  flex: 1;
  position: relative;
  border: 2px solid var(--Produto-Ativo, #F1F1F1);
  border-radius: 4px;
  overflow: hidden;
}
.form .wrapper input, .form .wrapper select, .form .wrapper textarea {
  width: 100%;
  color: #AFAFAF;
  font-family: "Satoshi-Medium";
  font-size: 1.8rem;
  line-height: 133.333%;
  letter-spacing: -0.5px;
  resize: none;
  background-color: transparent;
  outline: none;
  border: none;
  padding: 2rem 3rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: 0.3s all ease;
  position: relative;
  background-color: #fff;
}
.form .wrapper svg {
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
}
.form .wrapper--small {
  max-width: 150px;
}
.form .wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  border-bottom: 2px solid #000000;
  transition: 0.3s all ease;
  z-index: 2;
}
.form .wrapper:hover::before, .form .wrapper.valid::before {
  width: 100%;
}
.form .wrapper.error::before {
  width: 100%;
  border-color: #f00;
}
.form .wrapper--transparent {
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.form .wrapper--transparent input, .form .wrapper--transparent select, .form .wrapper--transparent textarea {
  background-color: transparent;
}
.form span.error {
  position: absolute;
  left: 3rem;
  bottom: 0.5rem;
  color: #f00;
}
.form span.error.agree {
  left: 0.5rem;
  bottom: -1.5rem;
}
.form button[type=submit] {
  position: relative;
}
.form button[type=submit].disabled {
  opacity: 0.5;
  pointer-events: none;
}
.form button[type=submit].disabled svg {
  opacity: 0;
}
.form button[type=submit].disabled:after {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  margin: 8px;
  border-radius: 50%;
  border: 3px solid #fff;
  border-color: #fff transparent #fff transparent;
  animation: ring 1.2s linear infinite;
  position: absolute;
  right: 1rem;
}
@keyframes ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 900px) {
  .form__row {
    flex-direction: column;
    width: 100%;
  }
  .form__col {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .form .wrapper {
    width: 100%;
  }
  .form .wrapper--small {
    max-width: 100%;
  }
  .inputWrapper .input {
    height: 55px;
  }
}
.hero-section {
  margin-top: 2rem;
  margin-bottom: 8rem;
}
.hero-section__content {
  display: flex;
  gap: 6px;
  height: 40rem;
  width: 100%;
}
.hero-section .hero-banner {
  flex: 0 0 10rem;
  position: relative;
  min-width: 0;
  border-radius: 1.2rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.15);
}
.hero-section .hero-banner.is-active {
  transition: all 0.5s ease;
  flex: 1;
}
.hero-section .hero-banner.is-active::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgb(0, 0, 0));
  z-index: 1;
}
.hero-section .hero-banner.is-active .hero-banner__content {
  opacity: 1;
  transition: opacity 0.2s ease 0.2s;
}
.hero-section .hero-banner__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.hero-section .hero-banner .hero-banner__content {
  display: flex;
  opacity: 0;
  position: absolute;
  bottom: 4rem;
  left: 4rem;
  flex-direction: column;
  gap: 1.6rem;
  z-index: 2;
  transition: all 0.2s ease;
}
.hero-section .hero-banner .hero-banner__content .date {
  font-size: 1.6rem;
  color: #ffffff;
}
.hero-section .hero-banner .hero-banner__content .title {
  font-size: 2.5rem;
  color: #ffffff;
}
.hero-section .hero-banner .hero-banner__content .read-more {
  width: -moz-max-content;
  width: max-content;
  font-size: 1.3rem;
  color: #000000;
  line-height: 1.8rem;
  font-weight: 400;
  padding: 1rem 1.5rem;
  background-color: #ffcb04;
}

@media (max-width: 900px) {
  .hero-section .hero-banner {
    flex: 0 0 6rem;
  }
  .hero-section .hero-banner .hero-banner__content {
    left: 2rem;
  }
  .hero-section .hero-banner .hero-banner__content .date {
    font-size: 1.4rem;
  }
  .hero-section .hero-banner .hero-banner__content .title {
    font-size: 2rem;
  }
  .hero-section .hero-banner .hero-banner__content .read-more {
    font-size: 1.2rem;
    padding: 1rem;
    line-height: 1.4rem;
  }
}
.popular-articles {
  margin-bottom: 6rem;
}
.popular-articles__header {
  margin-bottom: 3rem;
}
.popular-articles__title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}
.popular-articles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.popular-article-card {
  background: white;
  border-radius: 0.8rem;
  overflow: hidden;
  box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.popular-article-card:hover {
  box-shadow: 0 0.6rem 1.8rem rgba(0, 0, 0, 0.15);
  transform: translateY(-0.4rem);
}
.popular-article-card__image {
  width: 100%;
  height: 22rem;
  overflow: hidden;
  background-color: #f5f5f5;
}
.popular-article-card__image .article-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.popular-article-card:hover .popular-article-card__image .article-img {
  transform: scale(1.05);
}
.popular-article-card__content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.popular-article-card__content .article-tags {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.popular-article-card__content .article-tags .article-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #f0f0f0;
  color: #666;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0.3rem;
  letter-spacing: 0.05rem;
  transition: 0.2s all ease;
  cursor: pointer;
}
.popular-article-card__content .article-tags .article-tag:hover {
  color: #13367a;
}
.popular-article-card__content .article-title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.2rem;
  color: #1a1a1a;
  transition: color 0.2s ease;
  cursor: pointer;
}
.popular-article-card__content .article-title:hover {
  color: #13367a;
}
.popular-article-card__content .article-excerpt {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 2rem;
  flex: 1;
}
.popular-article-card__content .article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.8rem;
  border-top: 0.1rem solid #e0e0e0;
}
.popular-article-card__content .article-meta .article-date {
  font-size: 1.2rem;
  color: #999;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}
.popular-article-card__content .article-meta .article-link {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffcb04;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
}
.popular-article-card__content .article-meta .article-link:hover {
  color: #ffcb04;
  transform: translateX(0.3rem);
}

@media (max-width: 900px) {
  .popular-articles {
    margin-bottom: 4rem;
  }
  .popular-articles__header {
    margin-bottom: 2rem;
  }
  .popular-articles__title {
    font-size: 2rem;
  }
  .popular-articles__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .popular-article-card__image {
    height: 20rem;
  }
  .popular-article-card__content {
    padding: 2rem;
  }
  .popular-article-card__content .article-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  .popular-article-card__content .article-excerpt {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }
  .popular-article-card__content .article-meta {
    padding-top: 1.5rem;
  }
  .popular-article-card__content .article-meta .article-date {
    font-size: 1.1rem;
  }
  .popular-article-card__content .article-meta .article-link {
    font-size: 1.2rem;
  }
}
.content-bottom-section {
  display: flex;
  flex-direction: column;
}
.content-bottom-section__header {
  margin-bottom: 3rem;
}
.content-bottom-section__title {
  font-size: 2.5rem;
  font-weight: 400;
  color: #ffcb04;
  margin: 0;
}
.content-bottom-section__wrapper {
  display: grid;
  grid-template-columns: 1fr 38rem;
  gap: 2rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 1200px) {
  .content-bottom-section__wrapper {
    grid-template-columns: 1fr 26rem;
  }
}
.content-bottom-section__articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.content-bottom-section__articles-grid .article-card {
  height: 43rem;
  overflow: hidden;
  box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.content-bottom-section__articles-grid .article-card:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 0.6rem 1.6rem rgba(0, 0, 0, 0.12);
}
.content-bottom-section__articles-grid .article-card:hover .article-image img {
  transform: scale(1.05);
}
.content-bottom-section__articles-grid .article-card:hover .article-link::before {
  background-image: linear-gradient(180deg, #000000 0%, #ffcb04 100%) !important;
}
.content-bottom-section__articles-grid .article-card .article-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px;
}
.content-bottom-section__articles-grid .article-card .article-content .article-date {
  padding-left: 5px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.5rem;
  color: #ffffff;
  font-family: "Roboto", Sans-serif;
}
.content-bottom-section__articles-grid .article-card .article-content .article-title {
  font-size: 2.1rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 2.8rem;
  transition: color 0.2s ease;
  cursor: pointer;
  font-family: "Roboto", Sans-serif;
}
.content-bottom-section__articles-grid .article-card .article-content .article-title:hover {
  color: #ffcb04;
}
.content-bottom-section__articles-grid .article-card .article-content .article-excerpt {
  font-size: 1.4rem;
  font-family: "Montserrat", Sans-serif;
  font-weight: 400;
  line-height: 2rem;
  color: #ffffff;
  transition: color 0.2s ease;
  cursor: pointer;
}
.content-bottom-section__articles-grid .article-card .article-content .article-excerpt:hover {
  opacity: 0.8;
}
.content-bottom-section__articles-grid .article-card .article-content .article-link {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  font-size: 1.3rem;
  color: #000000;
  margin-left: 8px;
  line-height: 1.8rem;
  font-weight: 400;
  padding: 8px 15px;
  background-color: transparent;
  isolation: isolate;
  transition: all 0.3s ease-in-out;
}
.content-bottom-section__articles-grid .article-card .article-content .article-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  background-image: linear-gradient(180deg, #ffcb04 0%, #eb9129 100%);
  transform: skewX(-8deg);
  transition: all 0.3s ease-in-out;
  z-index: -1;
}
.content-bottom-section__articles-grid .article-card .article-image {
  width: 100%;
  height: 18rem;
  flex-shrink: 0;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.content-bottom-section__articles-grid .article-card .article-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content-bottom-section__articles-grid .load-more-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.content-bottom-section__articles-grid .load-more-wrapper .btn-load-more {
  padding: 1.4rem 4rem;
  background-color: white;
  color: #333;
  border: 0.2rem solid #ddd;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.content-bottom-section__articles-grid .load-more-wrapper .btn-load-more:hover {
  background-color: #ffcb04;
  color: white;
  border-color: #ffcb04;
  transform: translateY(-0.2rem);
}
.content-bottom-section__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 2rem 0 8rem;
}
.content-bottom-section__pagination .pagination-btn {
  min-width: 5rem;
  height: 5rem;
  padding: 1rem 1.5rem;
  border: none;
  background-color: #7a7a7a;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.content-bottom-section__pagination .pagination-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.content-bottom-section__pagination .pagination-btn--active {
  background: #ffcb04;
  color: #000000;
  font-weight: 600;
}
.content-bottom-section__pagination .pagination-btn--ellipsis {
  cursor: default;
}
.content-bottom-section__pagination .pagination-btn--ellipsis:hover {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .content-bottom-section__header {
    margin-bottom: 3rem;
  }
  .content-bottom-section__title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #ffcb04;
    margin: 0;
  }
  .content-bottom-section__wrapper {
    display: grid;
    grid-template-columns: 1fr 12rem;
    gap: 2rem;
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 900px) and (min-width: 600px) {
  .content-bottom-section__wrapper {
    grid-template-columns: 1fr 24rem;
  }
}
@media (max-width: 900px) {
  .content-bottom-section__articles-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
  .content-bottom-section__articles-grid .article-card {
    height: 100%;
    overflow: hidden;
    box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  .content-bottom-section__articles-grid .article-card:hover {
    transform: translateY(-0.3rem);
    box-shadow: 0 0.6rem 1.6rem rgba(0, 0, 0, 0.12);
  }
  .content-bottom-section__articles-grid .article-card:hover .article-image img {
    transform: scale(1.05);
  }
  .content-bottom-section__articles-grid .article-card:hover .article-link::before {
    background-image: linear-gradient(180deg, #000000 0%, #ffcb04 100%) !important;
  }
  .content-bottom-section__articles-grid .article-card .article-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
  }
  .content-bottom-section__articles-grid .article-card .article-content .article-date {
    padding-left: 5px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 2.5rem;
    color: #ffffff;
    font-family: "Roboto", Sans-serif;
  }
  .content-bottom-section__articles-grid .article-card .article-content .article-title {
    font-size: 1.9rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 2.4rem;
    transition: color 0.2s ease;
    cursor: pointer;
    font-family: "Roboto", Sans-serif;
  }
  .content-bottom-section__articles-grid .article-card .article-content .article-title:hover {
    color: #ffcb04;
  }
  .content-bottom-section__articles-grid .article-card .article-content .article-excerpt {
    font-size: 1.4rem;
    margin-bottom: 0;
    font-family: "Montserrat", Sans-serif;
    font-weight: 400;
    line-height: 2rem;
    color: #ffffff;
    transition: color 0.2s ease;
    cursor: pointer;
  }
  .content-bottom-section__articles-grid .article-card .article-content .article-excerpt:hover {
    opacity: 0.8;
  }
  .content-bottom-section__articles-grid .article-card .article-content .article-link {
    position: relative;
    width: -moz-max-content;
    width: max-content;
    font-size: 1.3rem;
    color: #000000;
    margin-left: 8px;
    line-height: 1.8rem;
    font-weight: 400;
    padding: 1rem 1.5rem;
    background-color: transparent;
    isolation: isolate;
    transition: all 0.3s ease-in-out;
  }
  .content-bottom-section__articles-grid .article-card .article-content .article-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    background-image: linear-gradient(180deg, #ffcb04 0%, #eb9129 100%);
    transform: skewX(-8deg);
    transition: all 0.3s ease-in-out;
    z-index: -1;
  }
  .content-bottom-section__articles-grid .article-card .article-image {
    width: 100%;
    height: 20.5rem;
    flex-shrink: 0;
    -o-object-fit: cover;
       object-fit: cover;
    transition: transform 0.3s ease;
  }
  .content-bottom-section__articles-grid .article-card .article-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .content-bottom-section__articles-grid .load-more-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
  }
  .content-bottom-section__articles-grid .load-more-wrapper .btn-load-more {
    padding: 1.4rem 4rem;
    background-color: white;
    color: #333;
    border: 0.2rem solid #ddd;
    border-radius: 0.8rem;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .content-bottom-section__articles-grid .load-more-wrapper .btn-load-more:hover {
    background-color: #ffcb04;
    color: white;
    border-color: #ffcb04;
    transform: translateY(-0.2rem);
  }
  .content-bottom-section__pagination {
    padding: 2rem 0;
  }
}
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: sticky;
  top: 2rem;
}
.sidebar__newsletter {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  padding: 4rem 2rem;
  position: relative;
  isolation: isolate;
}
.sidebar__newsletter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  background-image: linear-gradient(180deg, #ffcb04 0%, #eb9129 100%);
  transform: skewY(-5deg);
  z-index: -1;
}
.sidebar__newsletter .newsletter-title {
  text-align: center;
  font-family: "Mohave", Sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 26px;
  color: #000000;
}
.sidebar__newsletter .newsletter-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.sidebar__newsletter .newsletter-buttons .newsletter-input {
  color: #7a7a7a;
  font-family: "Roboto", Sans-serif;
  font-weight: 400;
  padding: 1.6rem;
  outline: none;
  border: none;
  font-size: 1.5rem;
}
.sidebar__newsletter .newsletter-buttons .newsletter-input::-moz-placeholder {
  color: #7a7a7a;
  font-family: "Roboto", Sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
}
.sidebar__newsletter .newsletter-buttons .newsletter-input::placeholder {
  color: #7a7a7a;
  font-family: "Roboto", Sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
}
.sidebar__newsletter .newsletter-buttons .agreement-form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
}
.sidebar__newsletter .newsletter-buttons .agreement-form-group__wrapper {
  width: 100%;
  display: flex;
  flex-direction: row !important;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
}
.sidebar__newsletter .newsletter-buttons .agreement-form-group__wrapper label {
  font-size: 1.1rem;
  color: rgb(33, 34, 30);
  font-family: "Roboto", Sans-serif;
  font-weight: 400;
  letter-spacing: 0.05rem;
  line-height: 1.4rem;
}
.sidebar__newsletter .newsletter-buttons .agreement-form-group__wrapper input[type=checkbox] {
  margin: 0;
  padding: 0;
  width: 1.6rem;
  border-radius: 4px;
  border: 1px solid var(--Stroke, rgba(34, 45, 65, 0.15));
  background: #f0f4fb;
}
.sidebar__newsletter .newsletter-buttons .newsletter-btn {
  position: relative;
  padding: 1.4rem 2rem;
  font-family: "Mohave", Sans-serif;
  color: #ffffff;
  border: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  isolation: isolate;
  font-style: italic;
}
.sidebar__newsletter .newsletter-buttons .newsletter-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  transform: skewX(-8deg);
  z-index: -1;
}
.sidebar__newsletter .newsletter-buttons .newsletter-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.sidebar__materials {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  isolation: isolate;
  padding-bottom: 6rem;
}
.sidebar__materials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  transform: skewY(-5deg);
  z-index: -1;
}
.sidebar__materials .material-title {
  font-size: 2.5rem;
  color: #ffcb04;
  font-family: "Mohave", Sans-serif;
  font-weight: 400;
  line-height: 26px;
  text-align: center;
  margin: 4rem 0 3rem 0;
}
.sidebar__materials .material-card {
  display: flex;
  height: 24rem;
  padding: 0 3rem;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-bottom: 2rem;
}
.sidebar__materials .material-card:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}
.sidebar__materials .material-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

@media (max-width: 900px) {
  .sidebar {
    position: static;
    gap: 2rem;
  }
  .sidebar__newsletter {
    padding: 30px 8px;
  }
  .sidebar__newsletter .newsletter-title {
    font-size: 1.8rem;
  }
  .sidebar__newsletter .newsletter-buttons {
    width: 100%;
  }
  .sidebar__newsletter .newsletter-buttons .newsletter-input {
    width: 100%;
    font-size: 1.2rem;
    padding: 1.4rem;
  }
  .sidebar__newsletter .newsletter-buttons .agreement-form-group__wrapper label {
    font-size: 1rem;
  }
  .sidebar__newsletter .newsletter-buttons .newsletter-btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.4rem;
  }
  .sidebar__materials {
    padding-bottom: 4rem;
    margin-bottom: 4rem;
  }
  .sidebar__materials .material-title {
    font-size: 2rem;
    margin: 3rem 0 2rem 0;
  }
  .sidebar__materials .material-card {
    height: 18rem;
    padding: 0 1rem;
    margin-bottom: 1.5rem;
  }
}
.newsletter-bottom {
  padding: 6rem 5.5rem 4rem;
  max-width: 150rem;
  margin: 0 auto;
}
.newsletter-bottom__container {
  position: relative;
  padding: 5rem 0 3rem 0;
  background: transparent;
  isolation: isolate;
}
.newsletter-bottom__container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  background-image: linear-gradient(180deg, #ffcb04 0%, #eb9129 100%);
  transform: skewX(-8deg);
  z-index: -1;
}
.newsletter-bottom__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10rem;
}
.newsletter-bottom__text-box {
  height: 12.2rem;
  display: flex;
  position: relative;
  padding: 0 1rem 0 8rem;
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1000px) {
  .newsletter-bottom__text-box {
    padding: 0 1rem 0 4rem;
  }
}
.newsletter-bottom__text-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #474847;
  transform: skewX(-8deg);
  z-index: 1;
}
.newsletter-bottom__text-box::after {
  content: "";
  position: absolute;
  bottom: -2rem;
  left: -3px;
  width: calc(100% + 2rem);
  height: 100%;
  background: #000000;
  transform: skewX(-8deg);
  z-index: -1;
}
.newsletter-bottom__description {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  font-family: "Montserrat", Sans-serif;
  font-size: 1.6rem;
  line-height: 2rem;
  font-weight: 400;
  color: #000000;
}
.newsletter-bottom__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
.newsletter-bottom__input {
  width: 100%;
  max-width: 40rem;
  padding: 1.4rem 2rem;
  border: none;
  outline: none;
  font-family: "Roboto", Sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: rgb(122, 122, 122);
  background-color: #ffffff;
}
.newsletter-bottom__input::-moz-placeholder {
  color: #7a7a7a;
}
.newsletter-bottom__input::placeholder {
  color: #7a7a7a;
}
.newsletter-bottom__checkbox {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.newsletter-bottom__checkbox input[type=checkbox] {
  margin-top: 0.2rem;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 4px;
  border: 1px solid rgba(34, 45, 65, 0.15);
  background: #f0f4fb;
  cursor: pointer;
}
.newsletter-bottom__checkbox label {
  font-family: "Roboto", Sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6rem;
  color: rgb(33, 34, 30);
  cursor: pointer;
}
.newsletter-bottom__btn {
  position: relative;
  padding: 1.4rem 4rem;
  color: #ffffff;
  border: none;
  font-family: "Mohave", Sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  isolation: isolate;
}
.newsletter-bottom__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  transform: skewX(-8deg);
  z-index: -1;
}
.newsletter-bottom__btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .newsletter-bottom {
    padding: 4rem 2rem 3rem;
  }
  .newsletter-bottom__container {
    padding: 3rem 0 2rem 0;
  }
  .newsletter-bottom__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .newsletter-bottom__text-box {
    height: auto;
    min-height: 10rem;
    padding: 2rem 2rem 2rem 4rem;
  }
  .newsletter-bottom__text-box::before {
    left: 1rem;
  }
  .newsletter-bottom__text-box::after {
    left: 7px;
    width: 100%;
  }
  .newsletter-bottom__description {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
  .newsletter-bottom__form {
    gap: 1.2rem;
  }
  .newsletter-bottom__input {
    margin-left: 4px;
    max-width: 90%;
    font-size: 1.4rem;
    padding: 1.2rem 1.6rem;
  }
  .newsletter-bottom__checkbox label {
    font-size: 1.1rem;
  }
  .newsletter-bottom__btn {
    width: 90%;
    padding: 1.2rem;
    font-size: 1.4rem;
  }
}
.category-hero-section {
  padding: 6rem 0;
}
.category-hero-section__wrapper {
  padding: 2rem 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10rem;
}
.category-hero-section__left {
  width: 100%;
  max-width: 55rem;
  height: 9rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding: 0 0 0 10rem;
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.category-hero-section__left::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10px;
  width: 100%;
  height: 100%;
  background: #ffcb04;
  transform: skewX(-8deg);
  z-index: 1;
}
.category-hero-section__left__title {
  position: relative;
  z-index: 10;
  font-size: 3rem;
  line-height: 4.2rem;
  font-weight: 400;
  color: #000000;
  font-family: "Mohave", Sans-serif;
}
.category-hero-section__right {
  margin-right: 2.8rem;
  width: 100%;
  max-width: 86rem;
  display: flex;
  position: relative;
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background: transparent;
  isolation: isolate;
  padding: 4rem 4rem 6rem;
}
.category-hero-section__right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #5f625f;
  transform: skewX(-8deg);
  z-index: 1;
}
.category-hero-section__right::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 100%;
  height: 100%;
  background: transparent;
  background-image: linear-gradient(180deg, #ffcb04 0%, #eb9129 100%);
  transform: skewX(-8deg);
  z-index: -1;
}
.category-hero-section__right__description {
  font-size: 1.9rem;
  font-family: "Mohave", Sans-serif;
  font-weight: 400;
  color: #ffffff;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
}

@media (max-width: 900px) {
  .category-hero-section {
    padding: 4rem 0;
  }
  .category-hero-section__wrapper {
    flex-direction: column;
    gap: 3rem;
  }
  .category-hero-section__left {
    max-width: 100%;
    height: auto;
    padding: 2rem 4rem;
  }
  .category-hero-section__left::before {
    left: 0;
  }
  .category-hero-section__left__title {
    font-size: 2.2rem;
    line-height: 3rem;
  }
  .category-hero-section__right {
    max-width: 100%;
    margin-right: 0;
    padding: 1.5rem 1.5rem 2rem;
  }
  .category-hero-section__right::after {
    display: none;
  }
  .category-hero-section__right__description {
    font-size: 1.6rem;
    text-align: center;
  }
}
.results-hero-section {
  padding: 6rem 0;
}
.results-hero-section__wrapper {
  padding: 2rem 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10rem;
}
.results-hero-section__left {
  width: 100%;
  max-width: 55rem;
  height: 9rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding: 0 0 0 10rem;
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background: transparent;
}
.results-hero-section__left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8px;
  width: 100%;
  height: 100%;
  background: transparent;
  background-image: linear-gradient(180deg, #ffcb04 0%, #eb9129 100%);
  transform: skewX(-8deg);
  z-index: 2;
}
.results-hero-section__left::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 100%;
  height: 100%;
  background: #5f625f;
  transform: skewX(-8deg);
  z-index: 1;
}
.results-hero-section__left__title,
.results-hero-section__left .result {
  position: relative;
  z-index: 10;
  font-size: 3rem;
  line-height: 4.2rem;
  font-weight: 400;
  color: #000000;
  font-family: "Mohave", Sans-serif;
}
.results-hero-section__left .result {
  color: #4a4a4a;
}
.results-hero-section__right {
  margin-right: 2.8rem;
  width: 100%;
  max-width: 86rem;
  display: flex;
  position: relative;
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background: transparent;
  isolation: isolate;
  padding: 4rem 4rem 6rem;
}
.results-hero-section__right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #5f625f;
  transform: skewX(-8deg);
  z-index: 1;
}
.results-hero-section__right::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 100%;
  height: 100%;
  background: transparent;
  background-image: linear-gradient(180deg, #ffcb04 0%, #eb9129 100%);
  transform: skewX(-8deg);
  z-index: -1;
}
.results-hero-section__right__description {
  font-size: 1.9rem;
  font-family: "Mohave", Sans-serif;
  font-weight: 400;
  color: #ffffff;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
}

@media (max-width: 900px) {
  .results-hero-section {
    padding: 4rem 0;
  }
  .results-hero-section__wrapper {
    flex-direction: column;
    gap: 3rem;
  }
  .results-hero-section__left {
    max-width: 100%;
    height: auto;
    padding: 2rem 4rem;
  }
  .results-hero-section__left::before {
    left: 0;
  }
  .results-hero-section__left::after {
    display: none;
  }
  .results-hero-section__left__title,
  .results-hero-section__left .result {
    font-size: 2rem;
    line-height: 2.8rem;
  }
  .results-hero-section__right {
    max-width: 100%;
    margin-right: 0;
    padding: 2rem 2rem 3rem;
  }
  .results-hero-section__right::after {
    display: none;
  }
  .results-hero-section__right__description {
    font-size: 1.6rem;
    text-align: center;
  }
}
.home {
  padding: 1rem 2rem;
  background-color: #21221e;
}
.home .container {
  max-width: 133.6rem;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .home {
    padding: 8rem 1rem;
  }
}
@media (max-width: 900px) and (min-width: 600px) {
  .home {
    padding: 8rem 2rem;
  }
}
.blog-details {
  background-color: #21221e;
  padding: 0 2rem;
}
.blog-details__hero-image {
  width: 100%;
  height: 45rem;
  padding-bottom: 2rem;
  overflow: hidden;
}
.blog-details__hero-image .blog-hero-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-details__wrapper {
  display: grid;
  grid-template-columns: 1fr 38rem;
  gap: 4rem;
  padding: 2.5rem 4rem;
  align-items: start;
}
@media screen and (max-width: 1200px) {
  .blog-details__wrapper {
    grid-template-columns: 1fr 26rem;
    gap: 2rem;
  }
}
.blog-details__content {
  position: relative;
  padding: 3rem 3rem 5rem 3rem;
  background: white;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.08);
}
.blog-details__content__social-share {
  position: absolute;
  bottom: 1.6rem;
  left: 3rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  transition: all 0.3s ease-in-out;
}
.blog-details__content__social-share a:hover svg path {
  fill: #ffcb04;
}
.blog-details__title {
  font-size: 3rem;
  font-weight: 500;
  color: #000000;
  line-height: 2.8rem;
  margin-bottom: 1.6rem;
  font-family: "Roboto", Sans-serif;
}
.blog-details__date {
  font-size: 1.2rem;
  font-weight: 400;
  color: #000000;
  margin-left: 1rem;
  font-family: "Montserrat", Sans-serif;
}
.blog-details__audio {
  margin-top: 3rem;
}
.blog-details .audio-player {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem 1.8rem;
  background-color: #f8f8f8;
  border-radius: 5rem;
  box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.06);
  max-width: 100%;
}
.blog-details .audio-player__play-btn {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: white;
  border: 0.2rem solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  padding: 0;
}
.blog-details .audio-player__play-btn:hover {
  background-color: #f0f0f0;
  border-color: #d0d0d0;
}
.blog-details .audio-player__play-btn.playing .play-icon {
  display: none;
}
.blog-details .audio-player__play-btn.playing .pause-icon {
  display: block !important;
}
.blog-details .audio-player__play-btn svg {
  width: 2rem;
  height: 2rem;
  color: #333;
}
.blog-details .audio-player__info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  flex-shrink: 1;
  overflow: hidden;
}
.blog-details .audio-player__label {
  font-size: 1.4rem;
  font-weight: 400;
  color: #333;
  white-space: nowrap;
  flex-shrink: 0;
}
.blog-details .audio-player__title {
  font-size: 1.4rem;
  font-weight: 400;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}
.blog-details .audio-player__progress-container {
  flex: 1;
  min-width: 10rem;
  position: relative;
}
.blog-details .audio-player__progress {
  width: 100%;
  height: 0.6rem;
  background: transparent;
  outline: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.blog-details .audio-player__progress::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.6rem;
  background: #e0e0e0;
  border-radius: 0.3rem;
  position: relative;
}
.blog-details .audio-player__progress::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 1.4rem;
  height: 1.4rem;
  background: #666;
  border-radius: 50%;
  cursor: pointer;
  margin-top: -0.4rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.blog-details .audio-player__progress::-webkit-slider-thumb:hover {
  background: #333;
  transform: scale(1.2);
}
.blog-details .audio-player__progress::-moz-range-track {
  width: 100%;
  height: 0.6rem;
  background: #e0e0e0;
  border-radius: 0.3rem;
}
.blog-details .audio-player__progress::-moz-range-thumb {
  width: 1.4rem;
  height: 1.4rem;
  background: #666;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.blog-details .audio-player__progress::-moz-range-thumb:hover {
  background: #333;
  transform: scale(1.2);
}
.blog-details .audio-player__progress::-webkit-slider-runnable-track {
  background: linear-gradient(to right, #666 0%, #666 var(--progress, 0%), #e0e0e0 var(--progress, 0%), #e0e0e0 100%);
}
.blog-details .audio-player__progress::-moz-range-progress {
  background-color: #666;
  height: 0.6rem;
  border-radius: 0.3rem;
}
.blog-details .audio-player__time {
  font-size: 1.3rem;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 4.5rem;
  text-align: center;
}
.blog-details .audio-player__live {
  font-size: 1.3rem;
  font-weight: 400;
  color: #999;
  white-space: nowrap;
  flex-shrink: 0;
}
.blog-details .audio-player audio {
  display: none;
}
.blog-details__body {
  position: relative;
  margin-top: 4rem;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #000000;
  font-family: "Montserrat", Sans-serif;
}
.blog-details__body p {
  margin-bottom: 2rem;
  line-height: 1.8;
}
.blog-details__body h2 {
  font-size: 2.3rem;
  font-weight: 500;
  color: #000000;
  margin-top: 3.5rem;
  margin-bottom: 2rem;
  line-height: 1.3;
}
.blog-details__body h3 {
  font-size: 2.1rem;
  font-weight: 500;
  color: #000000;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
.blog-details__body ul {
  list-style: unset;
}
.blog-details__body ul,
.blog-details__body ol {
  margin-bottom: 2rem;
  padding-left: 3rem;
}
.blog-details__body ul li,
.blog-details__body ol li {
  margin-bottom: 1rem;
  line-height: 1.7;
}
.blog-details__body blockquote {
  border-left: 0.4rem solid #ffcb04;
  padding-left: 2rem;
  margin: 2.5rem 0;
  font-style: italic;
  color: #666;
}
.blog-details__body img {
  max-width: 100%;
  height: auto;
  border-radius: 0.8rem;
  margin: 2.5rem 0;
}
.blog-details__body a {
  color: #ffcb04;
  text-decoration: none;
  border-bottom: 0.1rem solid transparent;
  transition: border-color 0.2s ease;
}
.blog-details__body a:hover {
  border-bottom-color: #ffcb04;
}
.blog-details__related-posts {
  padding: 4rem;
}
.blog-details__related-posts__title {
  font-size: 2.6rem;
  font-weight: 400;
  color: #ffcb04;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.blog-details__related-posts__title svg {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}
.blog-details__related-posts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
.blog-details__related-post-card {
  position: relative;
  height: 32rem;
  background: white;
  border-radius: 0.8rem;
  overflow: hidden;
  box-shadow: 0 0.2rem 0.6rem rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.blog-details__related-post-card:hover {
  transform: translateY(-0.4rem);
  box-shadow: 0 0.6rem 1.6rem rgba(0, 0, 0, 0.12);
}
.blog-details__related-post-card:hover .blog-details__related-post-card__title {
  color: #ffcb04;
}
.blog-details__related-post-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.blog-details__related-post-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-details__related-post-card__image:hover img {
  transform: scale(1.05);
}
.blog-details__related-post-card__content {
  position: relative;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1rem;
}
.blog-details__related-post-card__title {
  font-size: 1.8rem;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 2.8rem;
  transition: color 0.2s ease;
}
@media (max-width: 1200px) {
  .blog-details__related-post-card__title {
    font-size: 1.6rem;
    line-height: 1.8rem;
  }
}
.blog-details__related-post-card__date {
  margin-top: 1.6rem;
  font-size: 1.2rem;
  color: #ffffff;
  font-family: "Montserrat", Sans-serif;
  font-weight: 400;
}
.blog-details__sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: sticky;
  top: 2rem;
}
.blog-details__sidebar .sidebar-section {
  background: white;
  border-radius: 1.2rem;
  padding: 2.5rem;
  box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.08);
}
.blog-details__sidebar .sidebar-section.latest-articles .sidebar-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 0.3rem solid #ffcb04;
}
.blog-details__sidebar .sidebar-section.latest-articles .latest-article-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.blog-details__sidebar .sidebar-section.latest-articles .latest-article-item:last-child {
  margin-bottom: 0;
}
.blog-details__sidebar .sidebar-section.latest-articles .latest-article-item .latest-article-thumb-link {
  flex-shrink: 0;
}
.blog-details__sidebar .sidebar-section.latest-articles .latest-article-item .latest-article-thumb {
  width: 10rem;
  height: 10rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.8rem;
  background-color: #e0e0e0;
  display: block;
}
.blog-details__sidebar .sidebar-section.latest-articles .latest-article-item .latest-article-info {
  flex: 1;
}
.blog-details__sidebar .sidebar-section.latest-articles .latest-article-item .latest-article-info .latest-category {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffcb04;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.8rem;
}
.blog-details__sidebar .sidebar-section.latest-articles .latest-article-item .latest-article-info .latest-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.8rem;
  line-height: 1.3;
  display: block;
  text-decoration: none;
  transition: color 0.2s ease;
}
.blog-details__sidebar .sidebar-section.latest-articles .latest-article-item .latest-article-info .latest-title:hover {
  color: #ffcb04;
}
.blog-details__sidebar .sidebar-section.latest-articles .latest-article-item .latest-article-info .latest-excerpt {
  font-size: 1.3rem;
  color: #666;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-details__sidebar .sidebar-section.promo-banner {
  background: linear-gradient(135deg, #2d5a9e 0%, #1e3d6f 100%);
  color: white;
  text-align: center;
}
.blog-details__sidebar .sidebar-section.promo-banner h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.4;
}
.blog-details__sidebar .sidebar-section.promo-banner .btn-promo {
  padding: 1.2rem 2.5rem;
  background-color: white;
  color: #2d5a9e;
  border: none;
  border-radius: 0.6rem;
  font-weight: 700;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}
.blog-details__sidebar .sidebar-section.promo-banner .btn-promo:hover {
  transform: translateY(-0.2rem);
  box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.2);
}
.blog-details__sidebar .sidebar-section.promo-card {
  padding: 0;
  overflow: hidden;
  position: relative;
}
.blog-details__sidebar .sidebar-section.promo-card .promo-image {
  width: 100%;
  height: 14rem;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #e0e0e0;
  display: block;
}
.blog-details__sidebar .sidebar-section.promo-card .promo-content {
  padding: 2rem;
}
.blog-details__sidebar .sidebar-section.promo-card .promo-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  min-height: 6rem;
}
.blog-details__sidebar .sidebar-section.promo-card .promo-content .btn-promo-red {
  width: 100%;
  padding: 1.2rem 2rem;
  background-color: #ffcb04;
  color: white;
  border: none;
  border-radius: 0.6rem;
  font-weight: 700;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.blog-details__sidebar .sidebar-section.promo-card .promo-content .btn-promo-red:hover {
  background-color: #d62828;
  transform: translateY(-0.2rem);
  box-shadow: 0 0.4rem 0.8rem rgba(230, 57, 70, 0.3);
}
.blog-details .newsletter-bottom {
  max-width: 100%;
}

@media (max-width: 900px) {
  .blog-details {
    padding: 1rem 1.5rem;
    margin-top: 8rem;
  }
  .blog-details__hero-image {
    height: 25rem;
  }
  .blog-details__wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding: 0;
  }
  .blog-details__content {
    padding: 2rem 2rem 4rem 2rem;
  }
  .blog-details__content__social-share {
    position: static;
    margin-top: 2rem;
    justify-content: center;
  }
  .blog-details__title {
    font-size: 2.2rem;
    line-height: 2.4rem;
    margin-bottom: 1.2rem;
  }
  .blog-details__date {
    font-size: 1.1rem;
    margin-left: 0.5rem;
  }
  .blog-details__audio {
    margin-top: 2rem;
  }
  .blog-details .audio-player {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 1.4rem;
  }
  .blog-details .audio-player__play-btn {
    width: 3.5rem;
    height: 3.5rem;
  }
  .blog-details .audio-player__play-btn svg {
    width: 1.8rem;
    height: 1.8rem;
  }
  .blog-details .audio-player__info {
    flex: 1;
    max-width: calc(100% - 5rem);
  }
  .blog-details .audio-player__title {
    font-size: 1.3rem;
  }
  .blog-details .audio-player__label {
    font-size: 1.3rem;
  }
  .blog-details .audio-player__progress-container {
    order: 3;
    width: 100%;
    flex: 0 0 100%;
  }
  .blog-details .audio-player__time {
    order: 4;
    margin-left: auto;
    font-size: 1.2rem;
  }
  .blog-details .audio-player__live {
    display: none;
  }
  .blog-details__body {
    margin-top: 2rem;
    font-size: 1.4rem;
  }
  .blog-details__body h2 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
  }
  .blog-details__body h3 {
    font-size: 1.8rem;
    margin-top: 1.5rem;
    margin-bottom: 1.2rem;
  }
  .blog-details__body ul,
  .blog-details__body ol {
    padding-left: 2rem;
  }
  .blog-details__body img {
    margin: 2rem 0;
  }
  .blog-details__related-posts {
    padding: 2rem 1.5rem;
  }
  .blog-details__related-posts__title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .blog-details__related-posts__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 900px) and (max-width: 500px) {
  .blog-details__related-posts__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .blog-details__related-post-card {
    height: 28rem;
  }
  .blog-details__related-post-card__title {
    font-size: 1.4rem;
    line-height: 1.6rem;
  }
  .blog-details__related-post-card__date {
    font-size: 1.1rem;
  }
  .blog-details__sidebar {
    position: static;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .blog-details__sidebar .sidebar-section {
    padding: 2rem;
  }
  .blog-details__sidebar .sidebar-section.latest-articles .sidebar-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  .blog-details__sidebar .sidebar-section.latest-articles .latest-article-item .latest-article-thumb {
    width: 8rem;
    height: 8rem;
  }
  .blog-details__sidebar .sidebar-section.latest-articles .latest-article-item .latest-article-info .latest-category {
    font-size: 1rem;
  }
  .blog-details__sidebar .sidebar-section.latest-articles .latest-article-item .latest-article-info .latest-title {
    font-size: 1.4rem;
  }
  .blog-details__sidebar .sidebar-section.latest-articles .latest-article-item .latest-article-info .latest-excerpt {
    font-size: 1.2rem;
  }
  .blog-details__sidebar .sidebar-section.promo-banner h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
  .blog-details__sidebar .sidebar-section.promo-banner .btn-promo {
    font-size: 1.2rem;
  }
  .blog-details__sidebar .sidebar-section.promo-card .promo-image {
    height: 12rem;
  }
  .blog-details__sidebar .sidebar-section.promo-card .promo-content {
    padding: 1.5rem;
  }
  .blog-details__sidebar .sidebar-section.promo-card .promo-content h4 {
    font-size: 1.4rem;
    min-height: auto;
    margin-bottom: 1.2rem;
  }
  .blog-details__sidebar .sidebar-section.promo-card .promo-content .btn-promo-red {
    font-size: 1.1rem;
  }
}
.category-page {
  padding: 4rem 2rem;
  background-color: #21221e;
}
.category-page .container {
  max-width: 114rem;
  margin: 0 auto;
}
.category-page .container .content-bottom-section .content-bottom-section__header .content-bottom-section__title {
  font-size: 2rem;
  font-family: "Roboto", Sans-serif;
}
@media (min-width: 1400px) {
  .category-page .container .content-bottom-section .content-bottom-section__wrapper {
    grid-template-columns: 1fr 34rem;
  }
}

@media (max-width: 900px) {
  .category-page {
    padding: 4.5rem 1.5rem;
  }
  .category-page .container .content-bottom-section .content-bottom-section__header {
    margin-bottom: 2rem;
  }
  .category-page .container .content-bottom-section .content-bottom-section__header .content-bottom-section__title {
    font-size: 1.8rem;
  }
}
.privacy-policy {
  min-height: 100vh;
  background-color: #21221e;
}
.privacy-policy .container {
  max-width: 133.4rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 4rem;
  padding: 12rem 2rem;
}
.privacy-policy__title {
  font-size: 2.4rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  color: #ffcb04;
  text-align: center;
}
.privacy-policy__text {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  font-family: "Montserrat", sans-serif;
  color: #e1e1e1;
}

@media (max-width: 900px) {
  .privacy-policy .container {
    padding: 3rem 1.5rem;
    gap: 3rem;
  }
  .privacy-policy__title {
    font-size: 2rem;
  }
  .privacy-policy__text {
    font-size: 1.4rem;
  }
}
.results {
  padding: 4rem 2rem;
  background-color: #21221e;
}
.results .container {
  max-width: 114rem;
  margin: 0 auto;
}
.results .container .content-bottom-section .content-bottom-section__header .content-bottom-section__title {
  font-size: 2rem;
  font-family: "Roboto", Sans-serif;
}
@media (min-width: 1400px) {
  .results .container .content-bottom-section .content-bottom-section__wrapper {
    grid-template-columns: 1fr 34rem;
  }
}

@media (max-width: 900px) {
  .results {
    padding: 2rem 1.5rem;
  }
  .results .container .content-bottom-section .content-bottom-section__header {
    margin-bottom: 2rem;
  }
  .results .container .content-bottom-section .content-bottom-section__header .content-bottom-section__title {
    font-size: 1.8rem;
  }
}
.notFound__banner {
  position: relative;
}
.notFound__banner__bg {
  position: absolute;
  inset: 0;
}
.notFound__banner__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.notFound__banner__bg img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.notFound__banner__content {
  position: relative;
  z-index: 2;
  padding: 20rem 10rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  max-width: 1024px;
  margin: auto;
  text-align: center;
}

@media (max-width: 900px) {
  .notFound__banner__content {
    padding: 10rem 2rem;
  }
}
