@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: "Open Sans", sans-serif;
}

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

.header {
  background: #2196f3;
  text-align: center;
  height: 6.6rem;
  width: 100%;
  display: flex;
  align-items: center;
}
.header__nav {
  width: 100%;
  padding: 0 8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 1350px) {
  .header__nav {
    padding: 0 2rem;
  }
}
.header .nav__desktop__left {
  display: flex;
  z-index: 9999;
}
.header .nav__desktop__left a {
  width: 100%;
  height: 100%;
}
.header .nav__desktop__left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1200px) {
  .header .nav__desktop__left img {
    width: 12rem;
  }
}
.header .nav__desktop__middle .nav__list {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.header .nav__desktop__middle .nav__item {
  display: flex;
  position: relative;
}
.header .nav__desktop__middle .nav__item:hover > a {
  color: #e1e1e1;
}
.header .nav__desktop__middle .nav__item:hover > a::after {
  border-top: 0.4rem solid #e1e1e1;
}
.header .nav__desktop__middle .nav__item:hover::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #e1e1e1;
}
.header .nav__desktop__middle .nav__item a {
  color: #ffffff;
  font-size: 1.2rem;
  font-family: "Open Sans", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.1px;
}
.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: #2196f3;
  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: #e1e1e1;
}
.header .nav__desktop__right .search-container {
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 4px;
  transition: outline 0.2s ease;
  outline: 1px solid transparent;
}
.header .nav__desktop__right .search-container:focus-within {
  outline: 1px solid #ffffff;
}
.header .nav__desktop__right .search-container .search-input {
  background: none;
  width: 20rem;
  padding: 8px;
  font-size: 1.2rem;
  border-radius: 4px;
  pointer-events: all;
  font-family: "Open Sans", sans-serif;
  color: #ffffff;
  font-weight: 600;
  outline: none;
  border: none;
}
.header .nav__desktop__right .search-container .search-input::-moz-placeholder {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.2rem;
  font-family: "Open Sans", sans-serif;
}
.header .nav__desktop__right .search-container .search-input::placeholder {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.2rem;
  font-family: "Open Sans", sans-serif;
}
@media (min-width: 901px) {
  .header .nav__desktop__right .search-container .search-input {
    width: 12rem;
  }
}
@media (min-width: 1100px) {
  .header .nav__desktop__right .search-container .search-input {
    width: 16rem;
  }
}
.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;
  font-weight: 700;
}

@media (max-width: 900px) {
  .header {
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
  .header__nav {
    padding: 0 2rem;
  }
  .header .nav__desktop__middle,
  .header .nav__desktop__right {
    display: none;
  }
  .header .nav__desktop__right .search-container:focus-within {
    outline: 1px solid #ffffff;
  }
  .header .nav__desktop__right .search-container .search-input {
    width: 16rem;
  }
  .header .nav__desktop__right .search-container .search-input::-moz-placeholder {
    color: #ffffff;
  }
  .header .nav__desktop__right .search-container .search-input::placeholder {
    color: #ffffff;
  }
}
.footer {
  width: 100%;
  background-color: #124a82;
  color: #ffffff;
  padding: 6rem 0 0;
}
.footer__container {
  max-width: 114rem;
  margin: 0 auto;
  padding: 0 20px;
}
.footer__content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}
.footer__column {
  display: flex;
  flex-direction: column;
}
.footer__title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-family: "Open Sans", Sans-serif;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ffffff;
}
.footer__text {
  font-size: 1.4rem;
  line-height: 1.7;
  font-family: "Open Sans", Sans-serif;
  color: #ffffff;
}
.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__list li {
  margin-bottom: 1.2rem;
}
.footer__list li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.6rem;
  font-family: "Open Sans", Sans-serif;
  transition: opacity 0.3s;
}
.footer__list li a:hover {
  opacity: 0.7;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer__contact-item img {
  width: 2.4rem;
  height: 2.4rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__contact-item p, .footer__contact-item a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.4rem;
  font-family: "Open Sans", Sans-serif;
  transition: opacity 0.3s;
  margin: 0;
}
.footer__contact-item a:hover {
  opacity: 0.7;
}
.footer__bottom {
  padding: 3rem 0 2rem;
  background: #124a82;
  filter: brightness(90%);
}
.footer__bottom__wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 114rem;
  margin: 0 auto;
}
.footer__deen {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.footer__deen h6 {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
  font-weight: 400;
  color: #ffffff;
  font-family: "Open Sans", Sans-serif;
}
.footer__deen .deen {
  width: 4rem;
  position: relative;
  opacity: 0.26;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 3px;
}
.footer__deen .deen svg {
  width: 40px;
  height: 15px;
}
.footer__deen .deen svg path {
  stroke-dasharray: 800;
  transition: all 2s cubic-bezier(0.47, 0, 0.745, 0.715);
  stroke: #fff;
}
.footer__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__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.footer__social a {
  transition: all 0.3s;
  color: #ffffff;
}
.footer__social a:hover {
  transform: translateY(-2px);
  opacity: 0.7;
}

@media (max-width: 900px) {
  .footer__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer__bottom__wrapper {
    flex-direction: column;
    gap: 2rem;
    text-align: 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: 10001;
    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: #ffffff;
    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: #ffffff;
  }
  .nav__hamburger.active svg {
    stroke: #ffffff;
  }
  .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: #2196f3;
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(-1200px);
    transition: all 0.5s ease-in;
    z-index: 10000;
  }
  .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: #ffffff;
    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: #ffffff;
    font-size: 1.8rem;
    transition: 0.3s all ease;
    text-transform: uppercase;
    font-family: "Open Sans", sans-serif;
    padding: 0.5rem 0;
  }
  .nav__mobile .nav__item > a .nav__arrow {
    margin-left: auto;
    color: #ffffff;
  }
  .nav__mobile .nav__mobile__footer {
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav__mobile .nav__mobile__search {
    position: relative;
    display: flex;
    align-items: center;
    background: #e1e1e1;
    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 > 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;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 1.6rem;
    gap: 2rem;
  }
  .nav__mobile .nav__submenu .nav__submenu-item a {
    font-size: 1.6rem;
    line-height: 200%;
    color: #ffffff;
    opacity: 0.9;
    text-transform: uppercase;
    font-family: "Open Sans", sans-serif;
    padding: 0;
  }
  .nav__mobile .nav__submenu .nav__submenu-item a:hover {
    opacity: 0.6;
  }
  .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: "Open 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: "Open 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;
}

.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: "Open 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;
  }
}
.home-banner {
  position: relative;
}
.home-banner .prev-arrow {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  width: 32px;
  height: 32px;
  cursor: pointer;
}
.home-banner .prev-arrow.slick-disabled {
  opacity: 0.3;
  cursor: default;
}
.home-banner .next-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  width: 32px;
  height: 32px;
  cursor: pointer;
}
.home-banner .next-arrow.slick-disabled {
  opacity: 0.3;
  cursor: default;
}
.home-banner__navigation {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 2rem 0;
  z-index: 888;
}
.home-banner__navigation .dots {
  width: 100%;
}
.home-banner__navigation .dots ul {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.home-banner__navigation .dots ul li {
  margin: 0;
}
.home-banner__navigation .dots ul li a {
  display: block;
  background: rgba(0, 0, 0, 0.3) !important;
  width: 3rem;
  height: 3px;
  padding: 0;
  font-size: 0;
  line-height: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}
.home-banner__navigation .dots ul li a:hover {
  background: #999;
}
.home-banner__navigation .dots ul li.slick-active a {
  background: rgba(0, 0, 0, 0.7) !important;
}
.home-banner .pagination {
  display: none;
  align-items: center;
  padding: 2.6rem 5.3rem;
  gap: 2.4rem;
}
.home-banner .pagination .dots {
  flex: 1;
}
.home-banner .pagination .dots ul {
  flex: 1;
  display: flex;
  gap: 5px;
}
.home-banner .pagination .dots ul li {
  flex: 1;
  height: 1px;
  background: #ffffff;
  opacity: 0.3;
}
.home-banner .pagination .dots ul li.slick-active {
  opacity: 1;
}
.home-banner .pagination .arrows {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.home-banner .pagination .arrows .prev-arrow {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid #ffffff;
  cursor: pointer;
  background: #ffffff;
}
.home-banner .pagination .arrows .prev-arrow svg path {
  stroke: #fff;
}
.home-banner .pagination .arrows .prev-arrow.slick-disabled {
  background: transparent;
}
.home-banner .pagination .arrows .prev-arrow.slick-disabled svg path {
  stroke: #ffffff;
}
.home-banner .pagination .arrows .next-arrow {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid #ffffff;
  cursor: pointer;
  background: #ffffff;
}
.home-banner .pagination .arrows .next-arrow svg {
  transform: rotate(180deg);
}
.home-banner .pagination .arrows .next-arrow svg path {
  stroke: #fff;
}
.home-banner .pagination .arrows .next-arrow.slick-disabled {
  background: transparent;
}
.home-banner .pagination .arrows .next-arrow.slick-disabled svg {
  transform: rotate(180deg);
}
.home-banner .pagination .arrows .next-arrow.slick-disabled svg path {
  stroke: #ffffff;
}
.home-banner__slider {
  position: relative;
  width: 100%;
  display: flex;
}
.home-banner__slider .slick-list {
  width: 100% !important;
  overflow: visible;
}
.home-banner__slider .slick-track {
  width: 100% !important;
  display: flex !important;
}
.home-banner__slider .slick-slide {
  width: 100% !important;
}
.home-banner__slider .slick-slide > div {
  width: 100%;
}
.home-banner__item {
  width: 100%;
  position: relative;
  display: flex !important;
  align-items: flex-end;
  height: 40rem;
}
.home-banner__item__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 1;
}
.home-banner__item__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-banner__item__bottom-text {
  position: relative;
  width: 100%;
  z-index: 10;
  padding: 2rem 1.5rem;
  line-height: 2.4rem;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}
.home-banner__item__bottom-text__title {
  font-family: "Open Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
}

@media (max-width: 900px) {
  .home-banner__item {
    height: 30rem;
  }
  .home-banner__item__bottom-text {
    padding: 1.5rem 1rem;
  }
  .home-banner__item__bottom-text__title {
    font-size: 1.4rem;
    line-height: 2rem;
  }
}
.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;
}
@media (max-width: 1024px) {
  .popular-articles__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .popular-articles__grid {
    grid-template-columns: 1fr;
  }
}

.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: #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);
}

.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: #333;
  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: #e63946;
  color: #e63946;
  transform: translateY(-0.2rem);
}
.category-filters .filter-btn.active {
  background-color: #e63946;
  color: white;
  border-color: #e63946;
}

@media (max-width: 900px) {
  .category-filters {
    gap: 1rem;
    margin-bottom: 4rem;
    padding: 0 1rem;
  }
  .category-filters .filter-btn {
    padding: 1rem 2rem;
    font-size: 1.3rem;
  }
}
.content-bottom-section {
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
}
.content-bottom-section__wrapper {
  display: grid;
  grid-template-columns: 1fr 30rem;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media screen and (min-width: 1100px) {
  .content-bottom-section__wrapper {
    grid-template-columns: 1fr 24rem;
  }
}
@media screen and (min-width: 1200px) {
  .content-bottom-section__wrapper {
    grid-template-columns: 1fr 30rem;
  }
}
.content-bottom-section__articles-grid {
  height: -moz-max-content;
  height: max-content;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media screen and (max-width: 1100px) {
  .content-bottom-section__articles-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.content-bottom-section__articles-grid .article-card {
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid #ebebeb;
}
.content-bottom-section__articles-grid .article-card:hover {
  transform: translateY(-0.3rem);
}
.content-bottom-section__articles-grid .article-card:hover .article-image img {
  transform: scale(1.05);
}
.content-bottom-section__articles-grid .article-card .article-image {
  width: 100%;
  height: 28rem;
  flex-shrink: 0;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
  overflow: hidden;
}
.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 .article-card .article-content {
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.content-bottom-section__articles-grid .article-card .article-content .article-category {
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  color: #1f5082;
  text-transform: uppercase;
  font-family: "Open Sans", Sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
}
.content-bottom-section__articles-grid .article-card .article-content .article-category:hover {
  color: #102841;
  font-weight: 500;
}
.content-bottom-section__articles-grid .article-card .article-content .article-title {
  font-size: 2.3rem;
  font-weight: 400;
  color: #161616;
  line-height: 2.7rem;
  transition: all 0.2s ease;
  cursor: pointer;
  font-family: "Open Sans", Sans-serif;
  margin-top: 1.6rem;
}
.content-bottom-section__articles-grid .article-card .article-content .article-title:hover {
  color: #000000;
  font-weight: 500;
}
.content-bottom-section__articles-grid .article-card .article-content .article-excerpt {
  font-size: 1.4rem;
  font-family: "Open Sans", Sans-serif;
  font-weight: 400;
  line-height: 2rem;
  color: #212529;
  margin: 1.5rem 0;
}
.content-bottom-section__articles-grid .article-card .article-content .article-published-by,
.content-bottom-section__articles-grid .article-card .article-content .article-published-by-name {
  font-size: 1.1rem;
  font-family: "Open Sans", Sans-serif;
  font-weight: 400;
  font-style: italic;
  color: #999999;
  margin-top: 2rem;
  transition: all 0.2s ease;
}
.content-bottom-section__articles-grid .article-card .article-content .article-published-by-name:hover {
  color: #1f5082;
  font-weight: 500;
}
.content-bottom-section__pagination {
  display: flex;
  align-items: center;
  padding: 2rem 0;
}
.content-bottom-section__pagination .pagination-btn {
  width: -moz-max-content;
  width: max-content;
  height: 3.6rem;
  padding: 8px 12px;
  border: 1px solid #dee2e6;
  background-color: #ffffff;
  color: #1f5082;
  font-size: 1.6rem;
  font-weight: 500;
  cursor: pointer;
}
.content-bottom-section__pagination .pagination-btn:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.content-bottom-section__pagination .pagination-btn:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.content-bottom-section__pagination .pagination-btn:hover {
  opacity: 0.9;
  background: #e9ecef;
}
.content-bottom-section__pagination .pagination-btn--active {
  background: #124a82;
  color: #ffffff;
  font-weight: 600;
}
.content-bottom-section__pagination .pagination-btn--active:hover {
  background: #124a82;
}
.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__wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  .content-bottom-section__articles-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .content-bottom-section__articles-grid .article-card {
    padding-bottom: 2rem;
  }
  .content-bottom-section__articles-grid .article-card .article-image {
    height: 20rem;
  }
  .content-bottom-section__articles-grid .article-card .article-content .article-title {
    font-size: 1.8rem;
    line-height: 2.2rem;
    margin-top: 1rem;
  }
  .content-bottom-section__articles-grid .article-card .article-content .article-excerpt {
    font-size: 1.3rem;
    margin: 1rem 0;
  }
  .content-bottom-section__pagination {
    padding: 1rem 0;
    flex-wrap: wrap;
    justify-content: center;
  }
  .content-bottom-section__pagination .pagination-btn {
    height: 3.2rem;
    font-size: 1.4rem;
  }
}
.sidebar {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 38rem;
  flex: 1;
}
.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 {
  border-radius: 8px;
  box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.08);
}
.sidebar .promo-card {
  overflow: hidden;
  position: relative;
  display: flex;
  width: 100%;
  height: 34rem;
  transition: all 0.3s ease-in-out;
}
.sidebar .promo-card .promo-link {
  width: 100%;
  height: 100%;
}
.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: 100%;
  -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;
    margin: 0 0 1.5rem;
  }
  .sidebar .promo-card {
    height: 28rem;
  }
}
.home {
  padding: 0 0 4rem;
  background-color: #fff;
}
.home .container {
  max-width: 114rem;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .home {
    padding: 14rem 0 4rem;
  }
}
.blog-details {
  padding: 8rem 0;
  background-color: #ffffff;
}
.blog-details .container {
  max-width: 114rem;
  margin: 0 auto;
  padding: 0 2rem;
}
.blog-details__wrapper {
  display: grid;
  grid-template-columns: 1fr 24rem;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1200px) {
  .blog-details__wrapper {
    grid-template-columns: 1fr 30rem;
  }
}
@media (min-width: 1500px) {
  .blog-details__wrapper {
    grid-template-columns: 1fr 38rem;
  }
}
.blog-details__meta {
  padding: 2.5rem 4rem 0;
  margin-bottom: 2.5rem;
}
.blog-details__meta .blog-meta__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding-bottom: 2rem;
  flex-wrap: wrap;
}
.blog-details__meta .blog-meta__categories {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.blog-details__meta .blog-meta__category {
  font-size: 1.3rem;
  font-family: "Open Sans", Sans-serif;
  color: #1f5082;
  text-transform: uppercase;
}
.blog-details__meta .blog-meta__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-style: italic;
}
.blog-details__meta .blog-meta__author .blog-meta__author__text {
  font-size: 1.1rem;
  font-family: "Open Sans", Sans-serif;
  color: #999999;
}
.blog-details__hero-image {
  width: 100%;
  height: 45rem;
  margin-bottom: 3rem;
  overflow: hidden;
}
.blog-details__hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-details__readtime {
  font-size: 1.4rem;
  font-family: "Open Sans", Sans-serif;
  color: #999999;
  font-weight: 700;
  font-style: italic;
}
.blog-details__title {
  font-size: 2.2rem;
  font-family: "Open Sans", Sans-serif;
  color: #212529;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
}
.blog-details__body {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #535353;
  font-family: "Open Sans", Sans-serif;
}
.blog-details__body p {
  margin-bottom: 2rem;
  line-height: 1.8;
}
.blog-details__body h1 {
  font-size: 3rem;
  font-weight: 600;
  color: #161616;
  margin: 3rem 0;
  line-height: 1.5;
}
.blog-details__body h2 {
  font-size: 2.8rem;
  font-weight: 600;
  color: #161616;
  margin: 3rem 0;
  line-height: 1.4;
}
.blog-details__body h3 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #161616;
  margin: 2.5rem 0;
  line-height: 1.3;
}
.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 #1f5082;
  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: #1f5082;
  text-decoration: none;
  border-bottom: 0.1rem solid transparent;
  transition: border-color 0.2s ease;
}
.blog-details__body a:hover {
  border-bottom-color: #1f5082;
}
.blog-details .related-posts {
  margin: 4rem 0;
  border-top: 0.1rem solid #e0e0e0;
}
.blog-details .related-posts__title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1a1a1a;
  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: #666;
  font-size: 1.1rem;
  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: #1f5082;
}
.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__link {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f5082;
  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: #1a1a1a;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 0.3rem solid #1f5082;
}
.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: #1f5082;
  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: #1f5082;
}
.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: #1f5082;
  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: #1f5082;
  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-section__also-read {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4rem;
  margin-top: 4rem;
}
.blog-details__bottom-section__title {
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  position: relative;
  border-bottom: 2px solid #444;
  letter-spacing: 2px;
  line-height: 1.6rem;
  font-size: 1.4rem;
  padding-bottom: 6px;
  font-family: "Open Sans", Sans-serif;
  color: #212529;
}
.blog-details__bottom-section__related-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-details__bottom-section__card__image {
  overflow: hidden;
  display: flex;
  width: 100%;
  height: 18rem;
}
.blog-details__bottom-section__card__image:hover img {
  transform: scale(1.05);
}
.blog-details__bottom-section__card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-details__bottom-section__card__content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.blog-details__bottom-section__card__title {
  margin-top: 1.2rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: #161616;
  font-family: "Open Sans", Sans-serif;
  transition: color 0.3s ease;
}
.blog-details__bottom-section__card__title:hover {
  color: #1f5082;
}
.blog-details__bottom-section__card__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.blog-details__bottom-section__card__author, .blog-details__bottom-section__card__published-date {
  font-size: 1.1rem;
  color: #999999;
  font-weight: 400;
  font-family: "Open Sans", Sans-serif;
  font-style: italic;
}
.blog-details__bottom-section__card__author {
  transition: color 0.3s ease;
}
.blog-details__bottom-section__card__author:hover {
  color: #1f5082;
}

@media (max-width: 900px) {
  .blog-details {
    padding: 14rem 0 4rem;
  }
  .blog-details .container {
    padding: 0 1.5rem;
  }
  .blog-details__wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .blog-details__meta {
    padding: 1.5rem 1.5rem 0;
    margin-bottom: 2rem;
  }
  .blog-details__meta .blog-meta__info {
    gap: 1.5rem;
  }
  .blog-details__meta .blog-meta__categories {
    gap: 1rem;
    flex-wrap: wrap;
  }
  .blog-details__meta .blog-meta__category {
    font-size: 1.2rem;
  }
  .blog-details__meta .blog-meta__author {
    flex-direction: column;
  }
  .blog-details__meta .blog-meta__author .blog-meta__author__text {
    font-size: 1rem;
  }
  .blog-details__hero-image {
    height: 25rem;
    margin-bottom: 2rem;
  }
  .blog-details__title {
    font-size: 1.8rem;
  }
  .blog-details__readtime {
    font-size: 1.3rem;
  }
  .blog-details__body {
    font-size: 1.3rem;
  }
  .blog-details__body h1 {
    font-size: 3rem;
    margin: 2.5rem 0;
  }
  .blog-details__body h2 {
    font-size: 2.6rem;
    margin: 2.5rem 0;
  }
  .blog-details__body h3 {
    font-size: 2.2rem;
    margin: 2rem 0;
  }
  .blog-details__body ul,
  .blog-details__body ol {
    padding-left: 2rem;
  }
  .blog-details__body blockquote {
    padding-left: 1.5rem;
    margin: 2rem 0;
  }
  .blog-details .related-posts {
    margin: 3rem 0;
  }
  .blog-details .related-posts__title {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
  }
  .blog-details .related-posts__title svg {
    width: 1.8rem;
    height: 1.8rem;
  }
  .blog-details .related-posts__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .blog-details .related-posts .related-post-card__image {
    height: 20rem;
  }
  .blog-details .related-posts .related-post-card__content {
    min-height: auto;
    padding: 1.5rem;
  }
  .blog-details .related-posts .related-post-card__title {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
  .blog-details .related-posts .related-post-card__excerpt {
    font-size: 1.3rem;
  }
  .blog-details .related-posts .related-post-card__link {
    font-size: 1.2rem;
  }
  .blog-details__sidebar {
    position: static;
    max-width: 70rem;
    margin: 0 auto;
  }
  .blog-details__sidebar .sidebar-section {
    padding: 2rem;
  }
  .blog-details__sidebar .sidebar-section.latest-articles .sidebar-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    padding-bottom: 1.2rem;
  }
  .blog-details__sidebar .sidebar-section.latest-articles .latest-article-item {
    gap: 1.2rem;
    margin-bottom: 1.5rem;
  }
  .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;
  }
  .blog-details__sidebar .sidebar-section.promo-banner .btn-promo {
    padding: 1rem 2rem;
    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 {
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
  }
  .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;
  }
  .blog-details__not-found .btn-back-home {
    padding: 1.2rem 2.5rem;
    font-size: 1.4rem;
  }
  .blog-details__bottom-section__also-read {
    gap: 3rem;
    margin-top: 3rem;
  }
  .blog-details__bottom-section__title {
    font-size: 1.3rem;
    letter-spacing: 1.5px;
  }
  .blog-details__bottom-section__related-posts {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .blog-details__bottom-section__card__image {
    height: 20rem;
  }
  .blog-details__bottom-section__card__title {
    font-size: 1.5rem;
  }
  .blog-details__bottom-section__card__author, .blog-details__bottom-section__card__published-date {
    font-size: 1rem;
  }
}
.results {
  padding: 14rem 2rem;
  background-color: #ffffff;
}
.results__container {
  max-width: 114rem;
  margin: 0 auto;
}
.results__filter {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 4rem;
  margin-bottom: 40px;
}
.results__title, .results__result {
  font-size: 3.4rem;
  font-family: "Open Sans", Sans-serif;
  line-height: 2rem;
  font-weight: 500;
  color: #212529;
  margin-bottom: 3rem;
}
.results__result {
  font-weight: 400;
}
.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__wrapper {
  display: grid;
  grid-template-columns: 1fr 30rem;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media screen and (min-width: 1100px) {
  .results__wrapper {
    grid-template-columns: 1fr 24rem;
  }
}
@media screen and (min-width: 1200px) {
  .results__wrapper {
    grid-template-columns: 1fr 30rem;
  }
}
.results__grid {
  height: -moz-max-content;
  height: max-content;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media screen and (max-width: 1100px) {
  .results__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.results__grid .result-card {
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid #ebebeb;
}
.results__grid .result-card:hover {
  transform: translateY(-0.3rem);
}
.results__grid .result-card:hover .result-card__image img {
  transform: scale(1.05);
}
.results__grid .result-card .result-card__image {
  width: 100%;
  height: 28rem;
  flex-shrink: 0;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
  overflow: hidden;
}
.results__grid .result-card .result-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.results__grid .result-card .result-card__content {
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.results__grid .result-card .result-card__content .result-card__tags {
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  font-family: "Open Sans", Sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
}
.results__grid .result-card .result-card__content .result-card__tags .result-tag {
  color: #1f5082;
}
.results__grid .result-card .result-card__content .result-card__tags:hover {
  color: #102841;
  font-weight: 500;
}
.results__grid .result-card .result-card__content .result-card__title {
  font-size: 2.3rem;
  font-weight: 400;
  color: #161616;
  line-height: 2.7rem;
  transition: all 0.2s ease;
  cursor: pointer;
  font-family: "Open Sans", Sans-serif;
  margin-top: 1.6rem;
}
.results__grid .result-card .result-card__content .result-card__title:hover {
  color: #000000;
  font-weight: 500;
}
.results__grid .result-card .result-card__content .result-card__excerpt {
  font-size: 1.4rem;
  font-family: "Open Sans", Sans-serif;
  font-weight: 400;
  line-height: 2rem;
  color: #212529;
  margin: 1.5rem 0;
}
.results__grid .result-card .result-card__content .result-card__meta {
  font-size: 1.4rem;
  font-family: "Open Sans", Sans-serif;
  font-weight: 400;
  line-height: 2rem;
  color: #212529;
  margin: 1.5rem 0;
}
.results__grid .result-card .result-card__content .result-card__meta .result-card__date, .results__grid .result-card .result-card__content .result-card__meta .result-card__link {
  font-size: 1.1rem;
  font-family: "Open Sans", Sans-serif;
  font-weight: 400;
  font-style: italic;
  color: #999999;
  margin-top: 2rem;
  transition: all 0.2s ease;
}
.results__grid .result-card .result-card__content .result-card__meta .result-card__link:hover {
  color: #1f5082;
  font-weight: 500;
}
.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: "Open Sans", sans-serif;
  font-size: 4.8rem;
  color: #c7c7c7;
  margin: 0 0 2rem;
}
.results .empty-state__message {
  font-family: "Open 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: #2196f3;
  color: #fff;
  font-family: "Open 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: #124a82;
}
.results__pagination {
  display: flex;
  align-items: center;
  padding: 2rem 0;
}
.results__pagination .pagination-btn {
  width: -moz-max-content;
  width: max-content;
  height: 3.6rem;
  padding: 8px 12px;
  border: 1px solid #dee2e6;
  background-color: #ffffff;
  color: #1f5082;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.2rem;
  cursor: pointer;
}
.results__pagination .pagination-btn:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.results__pagination .pagination-btn:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.results__pagination .pagination-btn:hover {
  opacity: 0.9;
  background: #e9ecef;
}
.results__pagination .pagination-btn--active {
  background: #124a82;
  color: #ffffff;
  font-weight: 600;
}
.results__pagination .pagination-btn--active:hover {
  background: #124a82;
}
.results__pagination .pagination-btn--ellipsis {
  cursor: default;
}
.results__pagination .pagination-btn--ellipsis:hover {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .results {
    padding: 14rem 2rem 4rem;
  }
  .results__title, .results__result {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
  .results__wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  .results__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .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;
  }
}
.notFound {
  width: 100%;
  height: calc(100vh - 23rem);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}
.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: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 6.2rem;
  color: #afb0af;
  margin: 0 0 2rem;
}
.notFound .empty-state__message {
  font-family: "Open 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: #2196f3;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 1.6rem;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  margin-top: 3rem;
  font-weight: 700;
}
.notFound .empty-state__button:hover {
  background-color: #124a82;
}
.notFound .svg-wrapper {
  position: relative;
}
.notFound .svg-wrapper .text {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Open 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;
  }
}
.category-page {
  padding: 14rem 2rem;
  background-color: #ffffff;
}
.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;
  }
}
.category-page__title, .category-page__result {
  font-size: 3.4rem;
  font-family: "Open Sans", Sans-serif;
  line-height: 2rem;
  font-weight: 500;
  color: #212529;
  margin-bottom: 2rem;
}
.category-page__result {
  font-weight: 400;
}
.category-page__description {
  font-size: 1.6rem;
  font-family: "Open Sans", Sans-serif;
  line-height: 1.5rem;
  color: #212529;
}

@media (max-width: 900px) {
  .category-page {
    padding: 14rem 2rem 4rem;
  }
  .category-page__title, .category-page__result {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
  }
  .category-page__description {
    font-size: 1.4rem;
    line-height: 1.4rem;
  }
}
