@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%;
  font-family: "Nunito Sans", sans-serif;
}

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

.header {
  background: #f7f7f7;
  text-align: center;
  height: 8rem;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  z-index: 999;
}
.header__nav {
  width: 100%;
  max-width: 110rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.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: 1.4rem;
}
.header .nav__desktop__middle .nav__item {
  display: flex;
  padding: 0.5rem 1rem;
  position: relative;
}
@media (max-width: 1000px) {
  .header .nav__desktop__middle .nav__item {
    padding: 0;
  }
}
.header .nav__desktop__middle .nav__item:hover > a {
  color: #13367a;
}
.header .nav__desktop__middle .nav__item:hover > a::after {
  border-top: 0.4rem solid #13367a;
}
.header .nav__desktop__middle .nav__item:hover::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background-color: #13367a;
}
.header .nav__desktop__middle .nav__item a {
  color: #ed3237;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}
.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 #ed3237;
  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: white;
  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: #4a4a4a;
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: none;
  transition: background 0.2s ease;
}
.header .nav__desktop__middle .dropdown__menu li a:hover {
  background: #f5f5f5;
}
.header .nav__desktop__right .search-container {
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
}
@media (max-width: 1000px) {
  .header .nav__desktop__right .search-container {
    gap: 1rem;
  }
}
.header .nav__desktop__right .search-container .search-input {
  position: absolute;
  bottom: -5rem;
  left: 0rem;
  width: 0;
  padding: 0;
  border: none;
  opacity: 0;
  transition: all 0.3s ease;
  outline: none;
  pointer-events: none;
  font-size: 1.6rem;
  color: #4a4a4a;
}
.header .nav__desktop__right .search-container.active .search-input {
  width: 25rem;
  padding: 1.4rem;
  opacity: 1;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-right: 1rem;
  pointer-events: all;
}
.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: 2rem;
  width: 2rem;
}
.header .nav__desktop__right .search-container .search-button img {
  height: 2rem;
  width: 2rem;
}
.header .nav__desktop__right .search-container .speak-with-us {
  width: 18rem;
  height: 4.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a4a4a;
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  padding: 1rem 1.8rem;
  border: 1px solid #4a4a4a;
  background: #ed3237;
  flex-shrink: 0;
  color: #4a4a4a;
  border: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media (max-width: 1000px) {
  .header .nav__desktop__right .search-container .speak-with-us {
    width: 14rem;
    font-size: 1.6rem;
  }
}
.header .nav__desktop__right .search-container .speak-with-us:hover {
  color: #ffffff;
}

@media (max-width: 900px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
  .header .nav__desktop__middle,
  .header .nav__desktop__right {
    display: none;
  }
}
.footer {
  width: 100%;
}
.footer__white {
  width: 100%;
  height: 7.5rem;
  background: #edebe6 !important;
  display: flex;
  align-items: center;
}
.footer__white__wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 114rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.footer__white__social {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
}
.footer__white__social a {
  color: #5f625f;
  transition: color 0.3s ease;
}
.footer__white__social a:hover {
  color: #000000;
}
.footer__blue {
  width: 100%;
  height: 7.5rem;
  background: #18a0b7;
  display: flex;
  align-items: center;
}
.footer__blue__wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 114rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.footer__blue__logo img {
  width: 100%;
  height: 4.2rem;
}
.footer__blue__search-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #5f625f;
  border-radius: 8px;
  overflow: hidden;
}
.footer__blue__search-form .search-input {
  width: 25rem;
  height: 4.2rem;
  border: none;
  border-radius: 4px;
  padding: 6px 12px;
  outline: none;
  background: none;
  font-weight: 700;
}
.footer__blue__search-form .search-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  font-weight: 700;
  color: #4a4a4a;
}
.footer__blue__deen {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.footer__blue__deen h6 {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #5f625f;
}
.footer__blue__deen .deen {
  width: 40px;
  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;
  }
}
.footer__blue p {
  color: #ffffff;
  font-family: "Nunito Sans", sans-serif;
  font-size: 0.875rem;
  margin: 0;
  text-align: center;
  width: 100%;
}

@media (max-width: 900px) {
  .footer__white {
    height: auto;
    padding: 2rem 0;
  }
  .footer__white__wrapper {
    flex-direction: column;
    gap: 2rem;
    padding: 0 2rem;
  }
  .footer__white__social {
    justify-content: center;
    gap: 1.5rem;
  }
  .footer__blue {
    height: auto;
    padding: 2rem 0;
  }
  .footer__blue__wrapper {
    flex-direction: column;
    gap: 2rem;
    padding: 0 2rem;
  }
  .footer__blue__logo {
    order: 1;
    text-align: center;
  }
  .footer__blue__search-form {
    order: 2;
    width: -moz-max-content;
    width: max-content;
  }
  .footer__blue__search-form .search-input {
    font-size: 1.4rem;
  }
  .footer__blue__deen {
    order: 3;
    justify-content: center;
  }
  .footer__blue__deen h6 {
    font-size: 1.1rem;
  }
  .footer__blue p {
    font-size: 0.75rem;
    padding: 1rem 0;
  }
}
/*** 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: #5f5f5f;
    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: #4A4A4A;
  }
  .nav__hamburger.active svg {
    stroke: #4A4A4A;
  }
  .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: #f7f7f7;
    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: #5f625f;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav__mobile .nav__list {
    list-style: none;
    flex: 1;
    padding: 6rem 0;
  }
  .nav__mobile .nav__item > a {
    line-height: 250%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #5f625f;
    font-size: 2.4rem;
    transition: 0.3s all ease;
    padding: 0.5rem 0;
  }
  .nav__mobile .nav__item > a .nav__arrow {
    margin-left: auto;
    color: #5f625f;
  }
  .nav__mobile .nav__mobile__footer {
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav__mobile .nav__mobile__cta {
    display: block;
    background: #ed3237;
    color: white;
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
  }
  .nav__mobile .nav__mobile__cta:hover {
    background: #d91318;
  }
  .nav__mobile .nav__mobile__search {
    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: #5f625f;
  }
  .nav__mobile .nav__mobile__search-input::-moz-placeholder {
    color: #4A4A4A;
  }
  .nav__mobile .nav__mobile__search-input::placeholder {
    color: #4A4A4A;
  }
  .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 > a .nav__arrow {
    transition: transform 0.3s ease;
  }
  .nav__mobile .nav__item--has-submenu.active > a .nav__arrow {
    transform: rotate(180deg);
  }
  .nav__mobile .nav__submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }
  .nav__mobile .nav__submenu .nav__submenu-item a {
    font-size: 2rem;
    line-height: 200%;
    opacity: 0.8;
    color: #5f625f;
  }
  .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;
  }
  .nav__mobile .nav__item--has-submenu.active .nav__submenu a {
    padding: 2rem 0;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.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: "Nunito Sans", sans-serif;
  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: "Nunito Sans", sans-serif;
  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;
}

@media (max-width: 900px) {
  .inputWrapper {
    width: 100%;
    padding: 0 1.5rem;
  }
  .inputWrapper .input {
    font-size: 1.6rem;
    height: 55px;
    padding: 0 1.5rem;
  }
}
.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: "Nunito Sans", sans-serif;
  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-bottom: 8rem;
}
.hero-section__content {
  position: relative;
  height: 45rem;
  display: flex;
  align-items: center;
}
.hero-section__content .hero-card {
  position: relative;
  background: white;
  padding: 3.5rem 4rem;
  border-radius: 0.8rem;
  max-width: 45rem;
  z-index: 2;
  box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.15);
}
.hero-section__content .hero-card .hero-tags {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.hero-section__content .hero-card .hero-tags .hero-tag {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: #f0f0f0;
  color: #666;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0.4rem;
  letter-spacing: 0.05rem;
  transition: 0.2s all ease;
  cursor: pointer;
}
.hero-section__content .hero-card .hero-tags .hero-tag:hover {
  color: #13367a;
}
.hero-section__content .hero-card .hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: #4a4a4a;
  transition: 0.2s all ease;
  cursor: pointer;
}
.hero-section__content .hero-card .hero-title:hover {
  color: #13367a;
}
.hero-section__content .hero-card p {
  font-size: 1.6rem;
  line-height: 1.4;
  margin-top: 1.8rem;
  margin-bottom: 2.5rem;
  color: #5f625f;
}
.hero-section__content .hero-card .hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 0.1rem solid #e0e0e0;
}
.hero-section__content .hero-card .hero-meta .hero-date {
  font-size: 1.3rem;
  color: #999;
}
.hero-section__content .hero-card .hero-meta .hero-link {
  font-size: 1.4rem;
  font-weight: 600;
  color: #e63946;
  text-decoration: none;
  transition: all 0.2s ease;
}
.hero-section__content .hero-card .hero-meta .hero-link:hover {
  color: #d62828;
  transform: translateX(0.3rem);
}
.hero-section__content-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 82%;
  height: 100%;
  z-index: 1;
  border-radius: 1.2rem;
  box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.hero-section__content-image .hero-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

@media (max-width: 900px) {
  .hero-section {
    margin-bottom: 4rem;
  }
  .hero-section__content {
    height: auto;
    display: flex;
    flex-direction: column;
  }
  .hero-section__content .hero-card {
    max-width: 100%;
    padding: 2.5rem 2rem;
    margin: 0 6px;
    margin-top: -6rem;
  }
  .hero-section__content .hero-card .hero-tags {
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }
  .hero-section__content .hero-card .hero-tags .hero-tag {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
  .hero-section__content .hero-card .hero-title {
    font-size: 2rem;
  }
  .hero-section__content .hero-card p {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
  }
  .hero-section__content .hero-card .hero-meta {
    padding-top: 1.5rem;
  }
  .hero-section__content .hero-card .hero-meta .hero-date {
    font-size: 1.2rem;
  }
  .hero-section__content .hero-card .hero-meta .hero-link {
    font-size: 1.3rem;
  }
  .hero-section__content-image {
    width: 100%;
    position: relative;
    height: 25rem;
    margin-bottom: 0;
    border-radius: 0.8rem;
  }
  .hero-section__content-image .hero-image {
    border-radius: 0.8rem;
  }
}
.popular-articles {
  margin-bottom: 6rem;
}
.popular-articles__header {
  margin-bottom: 3rem;
}
.popular-articles__title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 2.2rem;
  line-height: 3rem;
  font-weight: 700;
  color: #38393f;
  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: #38393f;
  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: #e63946;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
}
.popular-article-card__content .article-meta .article-link:hover {
  color: #d62828;
  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;
  }
  .popular-article-card__content .article-excerpt {
    font-size: 1.3rem;
  }
}
.category-filters {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 8rem;
  flex-wrap: wrap;
  background: #edebe6;
}
.category-filters .filter-btn {
  padding: 1.2rem 2.8rem;
  border: 0.2rem solid #ddd;
  background-color: white;
  color: #5f625f;
  font-size: 1.5rem;
  font-weight: 600;
  border-radius: 2.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.category-filters .filter-btn:hover {
  border-color: #ed3237;
  color: #ed3237;
  transform: translateY(-0.2rem);
}
.category-filters .filter-btn.active {
  background-color: #ed3237;
  color: white;
  border-color: #ed3237;
}

@media (max-width: 900px) {
  .category-filters {
    margin-bottom: 4rem;
    gap: 1rem;
  }
  .category-filters .filter-btn {
    padding: 1rem 2rem;
    font-size: 1.3rem;
  }
}
.content-bottom-section {
  display: flex;
  flex-direction: column;
}
.content-bottom-section__header {
  margin-bottom: 3rem;
}
.content-bottom-section__title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 2.2rem;
  line-height: 3rem;
  font-weight: 700;
  color: #38393f;
  margin: 0;
}
.content-bottom-section__wrapper {
  display: grid;
  grid-template-columns: 1fr 28rem;
  gap: 2rem;
  margin-bottom: 4rem;
}
.content-bottom-section__articles-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.content-bottom-section__articles-grid .article-card {
  background: white;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: row;
}
.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 .article-content {
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.content-bottom-section__articles-grid .article-card .article-content .article-tags {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.content-bottom-section__articles-grid .article-card .article-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;
}
.content-bottom-section__articles-grid .article-card .article-content .article-tags .article-tag:hover {
  color: #13367a;
}
.content-bottom-section__articles-grid .article-card .article-content .article-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #4a4a4a;
  margin-bottom: 1rem;
  line-height: 1.4;
  transition: color 0.2s ease;
  cursor: pointer;
}
.content-bottom-section__articles-grid .article-card .article-content .article-title:hover {
  color: #13367a;
}
.content-bottom-section__articles-grid .article-card .article-content .article-excerpt {
  font-size: 1.4rem;
  color: #5f625f;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  transition: color 0.2s ease;
  cursor: pointer;
}
.content-bottom-section__articles-grid .article-card .article-content .article-excerpt:hover {
  color: #2b2c2b;
}
.content-bottom-section__articles-grid .article-card .article-content .article-link {
  font-size: 1.3rem;
  font-weight: 600;
  color: #e63946;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
}
.content-bottom-section__articles-grid .article-card .article-content .article-link:after {
  content: " →";
  margin-left: 0.5rem;
  transition: margin-left 0.2s ease;
}
.content-bottom-section__articles-grid .article-card .article-content .article-link:hover {
  color: #d62828;
}
.content-bottom-section__articles-grid .article-card .article-content .article-link:hover:after {
  margin-left: 1rem;
}
.content-bottom-section__articles-grid .article-card .article-image {
  width: 24rem;
  height: 24rem;
  flex-shrink: 0;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #e0e0e0;
}
.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 {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.content-bottom-section__articles-grid .load-more-wrapper .btn-load-more {
  width: 100%;
  padding: 1.4rem 4rem;
  background-color: #13367a;
  color: #fff;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
.content-bottom-section__articles-grid .load-more-wrapper .btn-load-more:hover {
  background-color: #0f244d;
}

@media (max-width: 900px) {
  .content-bottom-section__title {
    font-size: 2rem;
  }
  .content-bottom-section__wrapper {
    display: flex;
    flex-direction: column;
    gap: 3.2rem;
    margin-bottom: 3rem;
  }
  .content-bottom-section__articles-grid {
    gap: 1.5rem;
  }
  .content-bottom-section__articles-grid .article-card {
    flex-direction: column;
  }
  .content-bottom-section__articles-grid .article-card .article-content {
    padding: 8px;
  }
  .content-bottom-section__articles-grid .article-card .article-content .article-title {
    font-size: 1.6rem;
  }
  .content-bottom-section__articles-grid .article-card .article-content .article-excerpt {
    font-size: 1.3rem;
  }
  .content-bottom-section__articles-grid .article-card .article-image {
    width: 100%;
    height: 20rem;
  }
  .content-bottom-section__articles-grid .load-more-wrapper {
    margin-top: 0;
  }
  .content-bottom-section__articles-grid .load-more-wrapper .btn-load-more {
    font-size: 1.4rem;
    padding: 1.2rem 3rem;
  }
}
.sidebar {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 28rem;
}
.sidebar .title {
  font-size: 2.2rem;
  font-weight: 700;
  width: 100%;
  position: relative;
  margin: 0 0 2rem;
  color: #5f625f;
  font-family: "Nunito Sans", sans-serif;
}
.sidebar .sidebar-section {
  background: white;
  border-radius: 1.2rem;
  padding: 1.5rem;
  box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.08);
}
.sidebar .sidebar-section.newsletter-section {
  background: #f4f6f9;
  text-align: center;
  padding: 3rem 2.5rem;
}
.sidebar .sidebar-section.newsletter-section .newsletter-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2d5a9e;
  margin-bottom: 2rem;
  line-height: 1.4;
}
.sidebar .sidebar-section.newsletter-section .newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.sidebar .sidebar-section.newsletter-section .newsletter-form .newsletter-input {
  padding: 1.4rem 1.8rem;
  border: none;
  border-radius: 0.6rem;
  font-size: 1.4rem;
  background-color: white;
  color: #333;
  transition: all 0.3s ease;
  box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.1);
}
.sidebar .sidebar-section.newsletter-section .newsletter-form .newsletter-input::-moz-placeholder {
  color: #999;
}
.sidebar .sidebar-section.newsletter-section .newsletter-form .newsletter-input::placeholder {
  color: #999;
}
.sidebar .sidebar-section.newsletter-section .newsletter-form .newsletter-input:focus {
  outline: none;
  box-shadow: 0 0.2rem 0.8rem rgba(45, 90, 158, 0.15);
}
.sidebar .sidebar-section.newsletter-section .newsletter-form .newsletter-btn {
  padding: 1.4rem 2rem;
  background-color: #e63946;
  color: white;
  border: none;
  border-radius: 0.6rem;
  font-weight: 700;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.sidebar .sidebar-section.newsletter-section .newsletter-form .newsletter-btn:hover {
  background-color: #d62828;
  transform: translateY(-0.2rem);
  box-shadow: 0 0.4rem 1.2rem rgba(230, 57, 70, 0.3);
}
.sidebar .sidebar-section.newsletter-section .newsletter-form .newsletter-disclaimer {
  font-size: 1.2rem;
  color: #2d5a9e;
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.sidebar .sidebar-section.latest-articles .sidebar-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #38393F;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 0.3rem solid #e63946;
}
.sidebar .sidebar-section.latest-articles .latest-article-item {
  width: 100%;
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid #e0e0e0;
}
.sidebar .sidebar-section.latest-articles .latest-article-item:hover {
  background: #f4f6f9;
}
.sidebar .sidebar-section.latest-articles .latest-article-item:last-child {
  border-bottom: none;
}
.sidebar .sidebar-section.latest-articles .latest-article-item .latest-article-thumb-link {
  width: 10rem;
  height: 8rem;
}
.sidebar .sidebar-section.latest-articles .latest-article-item .latest-article-thumb {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.8rem;
  flex-shrink: 0;
  background-color: #e0e0e0;
}
.sidebar .sidebar-section.latest-articles .latest-article-item .latest-article-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.sidebar .sidebar-section.latest-articles .latest-article-item .latest-article-info .latest-category {
  font-size: 1.1rem;
  font-weight: 600;
  color: #e63946;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.8rem;
}
.sidebar .sidebar-section.latest-articles .latest-article-item .latest-article-info .latest-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #4A4A4A;
  margin-bottom: 0.4rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.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;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sidebar .sidebar-section.auto-catalog .catalog-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2rem;
  text-align: center;
}
.sidebar .sidebar-section.auto-catalog .catalog-banner {
  width: 100%;
  height: 15rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.8rem;
  margin-bottom: 2rem;
  background-color: #e0e0e0;
}
.sidebar .sidebar-section.auto-catalog .catalog-qr {
  display: flex;
  justify-content: center;
}
.sidebar .sidebar-section.auto-catalog .catalog-qr .qr-code {
  width: 12rem;
  height: 12rem;
  background-color: #f0f0f0;
  border: 0.2rem solid #ddd;
  border-radius: 0.8rem;
}
.sidebar .sidebar-section.recent-posts {
  background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
  color: white;
}
.sidebar .sidebar-section.recent-posts .section-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  line-height: 1.4;
}
.sidebar .sidebar-section.recent-posts .section-description {
  font-size: 1.4rem;
  line-height: 1.6;
  opacity: 0.95;
}
.sidebar .autoexperts-section .img-div {
  width: 28rem;
  height: 28rem;
  overflow: hidden;
  border-radius: 1.2rem;
}
.sidebar .autoexperts-section .img-div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sidebar .promo-card {
  overflow: hidden;
  position: relative;
  display: flex;
  width: 28rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #d0d0cb;
  transition: all 0.3s ease-in-out;
}
.sidebar .promo-card:last-child {
  border-bottom: none;
}
.sidebar .promo-card:hover {
  filter: brightness(1.2);
}
.sidebar .promo-card:hover .promo-image {
  transform: scale(1.05);
}
.sidebar .promo-card .promo-image {
  width: 100%;
  height: 32rem;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 900px) {
  .sidebar {
    max-width: 100%;
  }
  .sidebar .title {
    font-size: 2rem;
  }
  .sidebar .sidebar-section {
    padding: 2rem 1.5rem;
  }
  .sidebar .sidebar-section.newsletter-section {
    padding: 2rem;
  }
  .sidebar .sidebar-section.newsletter-section .newsletter-title {
    font-size: 1.4rem;
  }
  .sidebar .sidebar-section.newsletter-section .newsletter-form .newsletter-input {
    font-size: 1.3rem;
    padding: 1.2rem 1.5rem;
  }
  .sidebar .sidebar-section.newsletter-section .newsletter-form .newsletter-btn {
    font-size: 1.3rem;
    padding: 1.2rem 1.5rem;
  }
  .sidebar .sidebar-section.newsletter-section .newsletter-form .newsletter-disclaimer {
    font-size: 1.1rem;
  }
  .sidebar .sidebar-section.latest-articles .sidebar-title {
    font-size: 2rem;
  }
  .sidebar .sidebar-section.latest-articles .latest-article-item {
    flex-direction: column;
  }
  .sidebar .sidebar-section.latest-articles .latest-article-item .latest-article-thumb {
    width: 100%;
    height: 18rem;
  }
  .sidebar .sidebar-section.latest-articles .latest-article-item .latest-article-info .latest-title {
    font-size: 1.4rem;
  }
  .sidebar .sidebar-section.latest-articles .latest-article-item .latest-article-info .latest-excerpt {
    font-size: 1.2rem;
  }
  .sidebar .sidebar-section.auto-catalog .catalog-title {
    font-size: 1.8rem;
  }
  .sidebar .sidebar-section.auto-catalog .catalog-banner {
    height: 12rem;
  }
  .sidebar .autoexperts-section .img-div {
    width: 100%;
    height: 25rem;
  }
  .sidebar .promo-card {
    width: 100%;
  }
  .sidebar .promo-card .promo-image {
    height: 25rem;
  }
}
.home {
  padding: 4rem 2rem;
  background-color: #edebe6;
}
.home .container {
  max-width: 110rem;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .home {
    padding: 10rem 0 6rem;
  }
  .home .container {
    padding: 0 1.5rem;
  }
}
.blog-details {
  padding: 2rem 0;
  background-color: #ededed;
}
.blog-details .container {
  max-width: 114rem;
  margin: 0 auto;
  padding: 0 2rem;
}
.blog-details__hero-image {
  width: 100%;
  height: 45rem;
  padding-bottom: 4rem;
  overflow: hidden;
}
.blog-details__hero-image .blog-hero-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.blog-details__wrapper {
  display: grid;
  grid-template-columns: 1fr 28rem;
  gap: 4rem;
  align-items: start;
}
.blog-details__content {
  background: #edebe6;
  border-radius: 1.2rem;
  box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.08);
}
.blog-details__meta {
  padding: 4.5rem 4rem 0;
  border-bottom: 0.1rem solid #e0e0e0;
  margin-bottom: 4rem;
}
.blog-details__meta .blog-meta__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
  padding-bottom: 3.5rem;
  flex-wrap: wrap;
}
.blog-details__meta .blog-meta__label,
.blog-details__meta .blog-meta__category {
  font-size: 1.4rem;
  font-weight: 700;
  color: #5f625f;
  letter-spacing: 0.05rem;
}
.blog-details__meta .blog-meta__category {
  font-size: 1.2rem;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.blog-details__meta .blog-meta__category:hover {
  color: #13367a;
}
.blog-details__meta .blog-meta__date-reading-time,
.blog-details__meta .blog-meta__categories {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.blog-details__meta .blog-meta__date-reading-time .blog-meta__date,
.blog-details__meta .blog-meta__date-reading-time .blog-meta__reading-time,
.blog-details__meta .blog-meta__categories .blog-meta__date,
.blog-details__meta .blog-meta__categories .blog-meta__reading-time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #afb0af;
  text-transform: uppercase;
}
.blog-details__meta .blog-meta__date-reading-time .blog-meta__date svg,
.blog-details__meta .blog-meta__date-reading-time .blog-meta__reading-time svg,
.blog-details__meta .blog-meta__categories .blog-meta__date svg,
.blog-details__meta .blog-meta__categories .blog-meta__reading-time svg {
  margin: 0;
}
.blog-details__meta .blog-meta__category {
  background-color: #e1e1e1;
  padding: 1rem;
}
.blog-details__title {
  padding: 0 4rem;
  font-size: 2.8rem;
  font-weight: 700;
  color: #4a4a4a;
  line-height: 1.3;
  margin-bottom: 3rem;
  text-align: center;
}
.blog-details__body {
  padding: 0 4rem 4rem;
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: #5f625f;
}
.blog-details__body p {
  margin-bottom: 2rem;
  line-height: 1.8;
}
.blog-details__body h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #5f625f;
  margin-top: 3.5rem;
  margin-bottom: 2.5rem;
  line-height: 1.3;
}
.blog-details__body h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #5f625f;
  margin-top: 3rem;
  margin-bottom: 2.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 #13367a;
  padding-left: 2rem;
  margin: 2.5rem 0;
  font-style: italic;
  color: #13367a;
}
.blog-details__body img {
  max-width: 100%;
  height: auto;
  border-radius: 0.8rem;
  margin: 2.5rem 0;
}
.blog-details__body a {
  color: #13367a;
  text-decoration: none;
  border-bottom: 0.1rem solid transparent;
  transition: border-color 0.2s ease;
}
.blog-details__body a:hover {
  border-bottom-color: #13367a;
}
.blog-details .related-posts {
  margin: 4rem 0;
  border-top: 0.1rem solid #e0e0e0;
}
.blog-details .related-posts__title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #38393f;
  margin-top: 3.5rem;
  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(3, 1fr);
  gap: 2.5rem;
}
.blog-details .related-posts .related-post-card {
  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;
  border: 0.1rem solid #f0f0f0;
}
.blog-details .related-posts .related-post-card__tags {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.blog-details .related-posts .related-post-card .related-post-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #f0f0f0;
  color: #5f625f;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0.3rem;
  letter-spacing: 0.05rem;
  transition: 0.2s all ease;
}
.blog-details .related-posts .related-post-card .related-post-tag:hover {
  color: #13367a;
}
.blog-details .related-posts .related-post-card:hover {
  transform: translateY(-0.4rem);
  box-shadow: 0 0.6rem 1.6rem rgba(0, 0, 0, 0.12);
}
.blog-details .related-posts .related-post-card__image {
  display: block;
  width: 100%;
  height: 18rem;
  overflow: hidden;
  background-color: #e0e0e0;
}
.blog-details .related-posts .related-post-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-details .related-posts .related-post-card__image:hover img {
  transform: scale(1.05);
}
.blog-details .related-posts .related-post-card__content {
  min-height: 21rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
}
.blog-details .related-posts .related-post-card__title {
  font-size: 1.8rem;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  color: #4a4a4a;
  line-height: 2.8rem;
  transition: color 0.2s ease;
  display: block;
}
.blog-details .related-posts .related-post-card__title:hover {
  color: #e63946;
}
.blog-details .related-posts .related-post-card__excerpt {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-details .related-posts .related-post-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.2rem;
  border-top: 0.1rem solid #f0f0f0;
}
.blog-details .related-posts .related-post-card__date {
  font-size: 1.2rem;
  color: #5f625f;
  font-weight: 600;
}
.blog-details .related-posts .related-post-card__link {
  font-size: 1.3rem;
  font-weight: 700;
  color: #e63946;
  text-decoration: none;
  transition: all 0.2s ease;
}
.blog-details .related-posts .related-post-card__link:hover {
  color: #d62828;
}
.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: #38393F;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 0.3rem solid #e63946;
}
.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: #e63946;
  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: #5f625f;
  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: #e63946;
}
.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: #e63946;
  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__not-found {
  background: white;
  border-radius: 1.2rem;
  padding: 6rem 4rem;
  text-align: center;
  box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.08);
}
.blog-details__not-found h1 {
  font-size: 3.6rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2rem;
}
.blog-details__not-found p {
  font-size: 1.6rem;
  color: #666;
  margin-bottom: 3rem;
}
.blog-details__not-found .btn-back-home {
  display: inline-block;
  padding: 1.4rem 3.5rem;
  background-color: #e63946;
  color: white;
  text-decoration: none;
  border-radius: 0.8rem;
  font-weight: 700;
  font-size: 1.6rem;
  transition: all 0.3s ease;
}
.blog-details__not-found .btn-back-home:hover {
  background-color: #d62828;
  transform: translateY(-0.2rem);
  box-shadow: 0 0.6rem 1.6rem rgba(230, 57, 70, 0.3);
}
.blog-details__bottom-sections {
  display: flex;
  gap: 4rem;
  margin-top: 4rem;
}
.blog-details__bottom-sections .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #38393f;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.blog-details__bottom-sections .section-title svg {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}
.blog-details__bottom-sections .popular-articles-section,
.blog-details__bottom-sections .latest-articles-section {
  flex: 1;
}
.blog-details__bottom-sections .popular-articles-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.blog-details__bottom-sections .popular-article-item {
  background: white;
  border-radius: 1.2rem;
  padding: 1rem;
  box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 2rem;
  align-items: center;
  transition: all 0.3s ease;
}
.blog-details__bottom-sections .popular-article-item:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 0.6rem 1.6rem rgba(0, 0, 0, 0.12);
}
.blog-details__bottom-sections .popular-article-item .popular-article-image {
  width: 12rem;
  height: 12rem;
  flex-shrink: 0;
  border-radius: 0.8rem;
  overflow: hidden;
  background-color: #e0e0e0;
}
.blog-details__bottom-sections .popular-article-item .popular-article-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-details__bottom-sections .popular-article-item .popular-article-image:hover img {
  transform: scale(1.05);
}
.blog-details__bottom-sections .popular-article-item .popular-article-content {
  flex: 1;
}
.blog-details__bottom-sections .popular-article-item .popular-article-tags {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}
.blog-details__bottom-sections .popular-article-item .popular-article-tags .article-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #f0f0f0;
  color: #5f625f;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0.3rem;
  letter-spacing: 0.05rem;
  transition: 0.2s all ease;
}
.blog-details__bottom-sections .popular-article-item .popular-article-tags .article-tag:hover {
  color: #13367a;
}
.blog-details__bottom-sections .popular-article-item .popular-article-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #4a4a4a;
  line-height: 1.4;
  text-decoration: none;
  display: block;
  transition: color 0.2s ease;
}
.blog-details__bottom-sections .popular-article-item .popular-article-title:hover {
  color: #e63946;
}
.blog-details__bottom-sections .latest-articles-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.blog-details__bottom-sections .latest-article-item {
  background: white;
  border-radius: 1.2rem;
  padding: 1rem;
  box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 2rem;
  align-items: center;
  transition: all 0.3s ease;
}
.blog-details__bottom-sections .latest-article-item:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 0.6rem 1.6rem rgba(0, 0, 0, 0.12);
}
.blog-details__bottom-sections .latest-article-item .latest-article-image {
  width: 12rem;
  height: 12rem;
  flex-shrink: 0;
  border-radius: 0.8rem;
  overflow: hidden;
  background-color: #e0e0e0;
}
.blog-details__bottom-sections .latest-article-item .latest-article-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-details__bottom-sections .latest-article-item .latest-article-image:hover img {
  transform: scale(1.05);
}
.blog-details__bottom-sections .latest-article-item .latest-article-content {
  flex: 1;
}
.blog-details__bottom-sections .latest-article-item .latest-article-tags {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}
.blog-details__bottom-sections .latest-article-item .latest-article-tags .article-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #f0f0f0;
  color: #5f625f;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0.3rem;
  letter-spacing: 0.05rem;
  transition: 0.2s all ease;
}
.blog-details__bottom-sections .latest-article-item .latest-article-tags .article-tag:hover {
  color: #13367a;
}
.blog-details__bottom-sections .latest-article-item .latest-article-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #4a4a4a;
  line-height: 1.4;
  text-decoration: none;
  display: block;
  transition: color 0.2s ease;
}
.blog-details__bottom-sections .latest-article-item .latest-article-title:hover {
  color: #e63946;
}

@media (max-width: 900px) {
  .blog-details {
    padding: 14rem 0 4rem;
  }
  .blog-details .container {
    padding: 0 1.5rem;
  }
  .blog-details__hero-image {
    height: 25rem;
    padding-bottom: 2rem;
  }
  .blog-details__wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .blog-details__meta {
    padding: 1.5rem 2rem 0;
    margin-bottom: 2rem;
  }
  .blog-details__meta .blog-meta__info {
    gap: 2rem;
  }
  .blog-details__meta .blog-meta__date-reading-time {
    flex-direction: column;
    gap: 1rem;
  }
  .blog-details__meta .blog-meta__categories {
    flex-wrap: wrap;
  }
  .blog-details__title {
    padding: 0 2rem;
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .blog-details__body {
    padding: 0 1rem 2.5rem;
    font-size: 1.4rem;
  }
  .blog-details__body h2 {
    font-size: 2rem;
    margin-top: 2rem;
  }
  .blog-details__body h3 {
    font-size: 1.8rem;
    margin-top: 1.5rem;
  }
  .blog-details .related-posts {
    padding: 0 0 2.5rem;
  }
  .blog-details .related-posts__title {
    font-size: 2rem;
    margin-top: 2rem;
  }
  .blog-details .related-posts__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .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: 2rem;
  }
  .blog-details__bottom-sections {
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
  }
  .blog-details__bottom-sections .section-title {
    font-size: 2rem;
  }
  .blog-details .popular-article-item,
  .blog-details .latest-article-item {
    flex-direction: column;
    gap: 1.5rem;
  }
  .blog-details .popular-article-item .popular-article-image,
  .blog-details .popular-article-item .latest-article-image,
  .blog-details .latest-article-item .popular-article-image,
  .blog-details .latest-article-item .latest-article-image {
    width: 100%;
    height: 20rem;
  }
  .blog-details__not-found {
    padding: 4rem 2rem;
  }
  .blog-details__not-found h1 {
    font-size: 2.8rem;
  }
  .blog-details__not-found p {
    font-size: 1.4rem;
  }
}
.results {
  min-height: calc(100vh - 20rem);
  height: 100%;
  padding: 6rem 2rem 8rem;
  background-color: #edebe6;
}
.results .container {
  max-width: 120rem;
  margin: 0 auto;
}
.results__filter {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 4rem;
  margin-bottom: 40px;
}
.results__filter .filter__category {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.results__filter .filter__category label {
  font-family: "Nunito Sans", sans-serif;
  font-size: 3rem;
  color: #5f625f;
}
.results__filter .filter__category .category-select {
  padding: 12px 40px 12px 16px;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #5f625f;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%2338393F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  min-width: 20rem;
}
.results__filter .filter__category .category-select:focus {
  outline: none;
  border-color: #38393f;
}
.results__count {
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.4rem;
  color: #5f625f;
  margin: 2.5rem 0;
}
.results__search-form {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #5f625f;
  border-radius: 8px;
  overflow: hidden;
}
.results__search-form .search-input {
  width: 28rem;
  height: 4.2rem;
  border: none;
  border-radius: 4px;
  padding: 6px 12px;
  outline: none;
  background: none;
  font-weight: 700;
  color: #5f625f;
}
.results__search-form .search-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #5f625f;
}
.results__search-form .search-button svg path {
  fill: #5f625f;
}
.results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 5rem;
}
.results__empty {
  grid-column: 1/-1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 40rem;
}
.results .empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 4rem;
  border: 3px dashed #c7c7c7;
  border-radius: 8px;
  background-color: transparent;
  max-width: 50rem;
}
.results .empty-state__title {
  font-family: "Nunito Sans", sans-serif;
  font-size: 4.8rem;
  color: #c7c7c7;
  margin: 0 0 2rem;
}
.results .empty-state__message {
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #8e8e8e;
  margin: 0 0 3rem;
}
.results .empty-state__button {
  display: inline-block;
  padding: 1.4rem 3rem;
  background-color: #003a70;
  color: #fff;
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.6rem;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.results .empty-state__button:hover {
  background-color: #002850;
}
.results .result-card {
  display: flex;
  flex-direction: column;
  height: 32rem;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.results .result-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.results .result-card__image {
  width: 100%;
  height: 100%;
  max-height: 18rem;
  overflow: hidden;
}
.results .result-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.results .result-card:hover .results .result-card__image img {
  transform: scale(1.05);
}
.results .result-card__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 2rem;
}
.results .result-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.results .result-card .result-tag {
  display: inline-block;
  padding: 4px 10px;
  background-color: transparent;
  border: 1px solid #c7c7c7;
  border-radius: 4px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #5f625f;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}
.results .result-card .result-tag:hover {
  background-color: #38393f;
  color: #fff;
  border-color: #38393f;
}
.results .result-card__title {
  display: block;
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  color: #4a4a4a;
  text-decoration: none;
  margin-bottom: 16px;
  transition: color 0.2s ease;
}
.results .result-card__title:hover {
  color: #ed3237;
}
.results .result-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.results .result-card__date {
  font-family: "Nunito Sans", sans-serif;
  font-size: 12px;
  color: #afb1af;
}
.results .result-card__link {
  font-family: "Nunito Sans", sans-serif;
  font-size: 12px;
  color: #ed3237;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.results .result-card__link:hover {
  opacity: 0.8;
}
.results__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding-top: 20px;
}
.results .pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 14px;
  color: #38393f;
  text-decoration: none;
  transition: all 0.2s ease;
}
.results .pagination__item:hover {
  background-color: #f5f5f5;
  border-color: #38393f;
}
.results .pagination__item--active {
  background-color: #38393f;
  color: #fff;
  border-color: #38393f;
}
.results .pagination__item--active:hover {
  background-color: #2a2b30;
}
.results .pagination__ellipsis {
  font-family: "Nunito Sans", sans-serif;
  font-size: 14px;
  color: #8e8e8e;
  padding: 0 4px;
}

@media (max-width: 900px) {
  .results {
    padding: 14rem 2rem 6rem;
  }
  .results__filter {
    gap: 2rem;
  }
  .results__filter .filter__category {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .results__filter .filter__category label {
    font-size: 2.4rem;
  }
  .results__filter .filter__category .category-select {
    width: 100%;
    font-size: 1.8rem;
  }
  .results__search-form {
    width: 100%;
  }
  .results__search-form .search-input {
    width: 100%;
    font-size: 1.6rem;
  }
  .results__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 900px) and (max-width: 600px) {
  .results__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .results__empty {
    min-height: 30rem;
  }
  .results .empty-state {
    padding: 4rem 2rem;
    max-width: 100%;
  }
  .results .empty-state__title {
    font-size: 3.6rem;
  }
  .results .empty-state__message {
    font-size: 1.4rem;
  }
  .results .empty-state__button {
    font-size: 1.4rem;
    padding: 1.2rem 2.4rem;
  }
  .results .result-card {
    height: auto;
  }
  .results .result-card__image {
    max-height: 20rem;
  }
  .results .result-card__content {
    padding: 1.5rem;
  }
  .results .result-card__title {
    font-size: 1.6rem;
  }
  .results__pagination {
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  .results .pagination__item {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}
.category-page {
  min-height: calc(100vh - 20rem);
  height: 100%;
  padding: 6rem 0 8rem;
  background-color: #edebe6;
}
.category-page .container {
  max-width: 120rem;
  margin: 0 auto;
}
.category-page__filter {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 4rem;
  margin-bottom: 40px;
}
.category-page__filter .filter__category {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.category-page__filter .filter__category label {
  font-family: "Nunito Sans", sans-serif;
  font-size: 3rem;
  color: #5f625f;
}
.category-page__filter .filter__category .category-select {
  padding: 12px 40px 12px 16px;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #5f625f;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%2338393F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  min-width: 20rem;
}
.category-page__filter .filter__category .category-select:focus {
  outline: none;
  border-color: #38393f;
}
.category-page__count {
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.4rem;
  color: #5f625f;
  text-align: center;
}
.category-page__search-form {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #5f625f;
  border-radius: 8px;
  overflow: hidden;
}
.category-page__search-form .search-input {
  width: 28rem;
  height: 4.2rem;
  border: none;
  border-radius: 4px;
  padding: 6px 12px;
  outline: none;
  background: none;
  font-weight: 700;
  color: #5f625f;
}
.category-page__search-form .search-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #5f625f;
}
.category-page__search-form .search-button svg path {
  fill: #5f625f;
}
.category-page__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 5rem;
}
.category-page__empty {
  grid-column: 1/-1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 40rem;
}
.category-page .empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 4rem;
  border: 3px dashed #c7c7c7;
  border-radius: 8px;
  background-color: transparent;
  max-width: 50rem;
}
.category-page .empty-state__title {
  font-family: "Nunito Sans", sans-serif;
  font-size: 4.8rem;
  color: #c7c7c7;
  margin: 0 0 2rem;
}
.category-page .empty-state__message {
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #8e8e8e;
  margin: 0 0 3rem;
}
.category-page .empty-state__button {
  display: inline-block;
  padding: 1.4rem 3rem;
  background-color: #003A70;
  color: #fff;
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.6rem;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.category-page .empty-state__button:hover {
  background-color: #002850;
}
.category-page .result-card {
  display: flex;
  flex-direction: column;
  height: 32rem;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.category-page .result-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.category-page .result-card__image {
  width: 100%;
  height: 100%;
  max-height: 18rem;
  overflow: hidden;
}
.category-page .result-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.category-page .result-card:hover .category-page .result-card__image img {
  transform: scale(1.05);
}
.category-page .result-card__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 2rem;
}
.category-page .result-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.category-page .result-card .result-tag {
  display: inline-block;
  padding: 4px 10px;
  background-color: transparent;
  border: 1px solid #c7c7c7;
  border-radius: 4px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #5f625f;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}
.category-page .result-card .result-tag:hover {
  background-color: #38393f;
  color: #fff;
  border-color: #38393f;
}
.category-page .result-card__title {
  display: block;
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  color: #4a4a4a;
  text-decoration: none;
  margin-bottom: 16px;
  transition: color 0.2s ease;
}
.category-page .result-card__title:hover {
  color: #ed3237;
}
.category-page .result-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.category-page .result-card__date {
  font-family: "Nunito Sans", sans-serif;
  font-size: 12px;
  color: #afb1af;
}
.category-page .result-card__link {
  font-family: "Nunito Sans", sans-serif;
  font-size: 12px;
  color: #ed3237;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.category-page .result-card__link:hover {
  opacity: 0.8;
}
.category-page__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding-top: 20px;
}
.category-page .pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 14px;
  color: #38393f;
  text-decoration: none;
  transition: all 0.2s ease;
}
.category-page .pagination__item:hover {
  background-color: #f5f5f5;
  border-color: #38393f;
}
.category-page .pagination__item--active {
  background-color: #38393f;
  color: #fff;
  border-color: #38393f;
}
.category-page .pagination__item--active:hover {
  background-color: #2a2b30;
}
.category-page .pagination__ellipsis {
  font-family: "Nunito Sans", sans-serif;
  font-size: 14px;
  color: #8e8e8e;
  padding: 0 4px;
}

@media (max-width: 900px) {
  .category-page {
    padding: 14rem 2rem 6rem;
  }
  .category-page__filter {
    gap: 2rem;
  }
  .category-page__filter .filter__category {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .category-page__filter .filter__category label {
    font-size: 2.4rem;
  }
  .category-page__filter .filter__category .category-select {
    width: 100%;
    font-size: 1.8rem;
  }
  .category-page__search-form {
    width: 100%;
  }
  .category-page__search-form .search-input {
    width: 100%;
    font-size: 1.6rem;
  }
  .category-page__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 900px) and (max-width: 600px) {
  .category-page__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 900px) {
  .category-page__empty {
    min-height: 30rem;
  }
  .category-page .empty-state {
    padding: 4rem 2rem;
    max-width: 100%;
  }
  .category-page .empty-state__title {
    font-size: 3.6rem;
  }
  .category-page .empty-state__message {
    font-size: 1.4rem;
  }
  .category-page .empty-state__button {
    font-size: 1.4rem;
    padding: 1.2rem 2.4rem;
  }
  .category-page .result-card {
    height: 30rem;
  }
  .category-page .result-card__image {
    max-height: 20rem;
  }
  .category-page .result-card__content {
    padding: 1.5rem;
  }
  .category-page .result-card__title {
    font-size: 1.6rem;
  }
  .category-page__pagination {
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  .category-page .pagination__item {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}
.materials {
  padding: 8rem;
  background: #ededed;
}
.materials__container {
  max-width: 114rem;
  margin: 0 auto;
  padding: 0 2rem;
}
.materials__top-content {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
.materials__top-content__title {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  font-family: "Nunito Sans", sans-serif;
  color: #4A4A4A;
}
.materials__top-content__description {
  align-self: self-start;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
  font-family: "Nunito Sans", sans-serif;
  margin-bottom: 4rem;
  color: #4A4A4A;
}
.materials__bottom-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.materials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}
@media screen and (max-width: 1200px) {
  .materials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 992px) {
  .materials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 450px) {
  .materials__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.materials__grid__category {
  display: flex;
}
.materials__grid__category__title {
  font-size: 2.6rem;
  font-weight: 700;
  font-family: "Nunito Sans", sans-serif;
  color: #5f625f;
}
.materials__grid__card {
  display: flex;
  height: 18rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.materials__grid__card__image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.materials__grid__card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 900px) {
  .materials {
    padding: 12rem 4rem 6rem;
  }
}
.notFound {
  width: 100%;
  height: calc(100vh - 23rem);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #edebe6;
}
.notFound__empty {
  display: flex;
  justify-content: center;
  align-items: center;
}
.notFound .empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 4rem;
  border-radius: 8px;
  background-color: transparent;
}
.notFound .empty-state__title {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  font-size: 6.2rem;
  color: #afb0af;
  margin: 0 0 2rem;
}
.notFound .empty-state__message {
  font-family: "Nunito Sans", sans-serif;
  font-size: 2.4rem;
  line-height: 3.2rem;
  color: #5f625f;
  margin: 0 0 3rem;
}
.notFound .empty-state__button {
  display: inline-block;
  padding: 1.4rem 3rem;
  background-color: #003a70;
  color: #fff;
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.6rem;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  margin-top: 3rem;
  font-weight: 700;
}
.notFound .empty-state__button:hover {
  background-color: #002850;
}
.notFound .svg-wrapper {
  position: relative;
}
.notFound .svg-wrapper .text {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Nunito Sans", sans-serif;
  font-size: 10rem;
  color: #4a4a4a;
  line-height: 12.5rem;
  text-align: center;
}

@media (max-width: 900px) {
  .notFound {
    min-height: 100vh;
    height: 100%;
  }
  .notFound .empty__empty .empty-state {
    padding: 1rem;
  }
}
