* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

@keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
    transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
    transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  padding: 0 !important;
}

::-webkit-scrollbar {
  width: 7px;
  background-color: #c0c0c0;
}

::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #c0c0c0;
}

::-webkit-scrollbar-track {
  border-radius: 0;
  background-color: white;
}

i {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Index.html */
body {
  background-image: url("https://res.cloudinary.com/dizejzlnv/image/upload/v1688529320/MATRASE/montanas-doi-luang-chiang-dao-al-amanecer-chiang-mai-tailandia_njwssh.webp");
  background-size: contain;
  background-repeat: repeat;
  display: flex;
  flex-direction: column;
  place-content: center;
  color: #424242;
  position: relative;
}

header {
  display: flex;
  place-content: center;
  background-color: white;
  width: 100%;
  padding: 1.25rem;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0px 0px 15px #939393;
}
header div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 80rem;
}
header div img {
  width: max-content;
  max-height: 2rem;
}
@media (min-width: 1024px) {
  header div img {
    max-height: 4rem;
  }
}
header div nav {
  display: none;
  flex-direction: column;
  justify-content: start;
  align-items: end;
  gap: 1.25rem;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  padding: 1.25rem 2.5rem;
  width: max-content;
  height: 100vh;
  background: white;
  box-shadow: 0px 0px 30px #d1d1d1, -20px -20px 60px #ffffff;
}
header div nav div {
  width: auto;
}
@media (min-width: 1024px) {
  header div nav {
    flex-direction: row;
    position: static;
    justify-content: space-between;
    align-items: center;
    height: auto;
    padding: 0;
    box-shadow: none;
    width: 100%;
  }
}
header div nav #left-menu {
  display: flex;
  font-size: 1.25rem;
  color: #bf0010;
  cursor: pointer;
}
@media (min-width: 1024px) {
  header div nav #left-menu {
    width: 0;
    height: 0;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }
}
header div nav ul {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 0.625rem;
  list-style: none;
  font-weight: 300;
}
@media (min-width: 1024px) {
  header div nav ul {
    flex-direction: row;
    position: static;
    gap: 1.25rem;
  }
}
header div nav ul li a {
  color: #424242;
  text-decoration: none;
}
header div nav ul li:hover a {
  color: #bf0010;
  text-decoration: underline;
}
header div nav ul li.current-menu-item a {
  color: #bf0010;
  font-weight: 600;
  text-decoration: underline;
}
header div nav .income {
  display: flex;
  flex-direction: column;
  align-items: end;
  width: max-content;
  gap: 0.35rem;
}
header div nav .income p {
  font-size: 0.875rem;
  font-weight: 300;
}
header div nav .income .buttons {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 0.5rem;
  width: max-content;
}
@media (min-width: 1024px) {
  header div nav .income .buttons {
    flex-direction: row;
  }
}
header div nav .income .buttons .clients {
  background-color: #bf0010;
  color: white;
  border-style: none;
  padding: 0.5rem 2.5rem;
  border-radius: 0.375rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
header div nav .income .buttons .clients:hover {
  opacity: 0.7;
}
header div nav .income .buttons .provider {
  background-color: #424242;
  color: white;
  border-style: none;
  padding: 0.5rem 2.5rem;
  border-radius: 0.375rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
header div nav .income .buttons .provider:hover {
  opacity: 0.7;
}
header div #hamburger {
  color: #bf0010;
  font-size: 1.25rem;
  cursor: pointer;
}
@media (min-width: 1024px) {
  header div #hamburger {
    display: none;
  }
}

.whatsApp {
  position: fixed;
  right: 20px;
  bottom: 10%;
  z-index: 1000;
  cursor: pointer;
  -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
  animation: heartbeat 1.5s ease-in-out infinite both;
}

footer {
  margin-top: 3.25rem;
  background-color: #e5e5e5;
}
footer .general {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 1.25rem;
  display: grid;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}
footer .general .legales-menu h3 {
  color: #bf0010;
  text-align: left;
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  footer .general {
    padding: 5rem 1.25rem;
    gap: 5rem;
    display: grid;
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }
}
footer .general .logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
@media (min-width: 1024px) {
  footer .general .logo {
    align-items: start;
  }
}
footer .general .logo p {
  color: #bf0010;
  font-size: 1.5rem;
  font-weight: 500;
}
@media (min-width: 1024px) {
  footer .general .logo img {
    height: 5rem;
  }
}
footer .general .list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
@media (min-width: 1024px) {
  footer .general .list {
    flex-direction: row;
    justify-content: end;
    gap: 2.5rem;
  }
}
footer .general .list ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  footer .general .list ul {
    align-items: start;
    gap: 1.25rem;
  }
}
footer .general .list ul li a {
  text-decoration: none;
  color: #424242;
  font-weight: 300;
}
footer .general a {
  color: #bf0010;
  text-decoration: none;
}
footer .general a span {
  text-decoration: underline;
}
@media (min-width: 1024px) {
  footer .general a {
    text-align: left;
  }
}
footer .general .rrss {
  width: 100%;
}
footer .general .rrss .social-links {
  width: 100%;
}
footer .general .rrss .social-links .social-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  list-style: none;
}
@media (min-width: 1024px) {
  footer .general .rrss .social-links .social-menu {
    justify-content: end;
  }
}
footer .general .rrss .social-links .social-menu li {
  list-style: none;
}
footer .general .rrss .social-links .social-menu li i {
  font-size: 1.5rem;
  color: #bf0010;
  transition: all 0.3s ease;
  cursor: pointer;
}
footer .general .rrss .social-links .social-menu li i:hover {
  scale: 1.1;
}

.intro_banner {
  background-image: url("https://res.cloudinary.com/dizejzlnv/image/upload/v1688530657/MATRASE/WhatsApp_Image_2023-05-23_at_3.17_1_nemvoz.webp");
  background-position: center;
  background-size: cover;
  padding: 2.5rem 1.25rem;
  display: flex;
  place-content: center;
  position: relative;
}
.intro_banner .degrade {
  background: rgb(31, 31, 31);
  background: linear-gradient(180deg, rgb(31, 31, 31) 0%, rgba(31, 31, 31, 0.5802696078) 70%, rgba(31, 31, 31, 0) 100%);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
@media (min-width: 1024px) {
  .intro_banner .degrade {
    background: rgb(31, 31, 31);
    background: linear-gradient(90deg, rgb(31, 31, 31) 24%, rgba(31, 31, 31, 0) 100%);
  }
}
.intro_banner .general {
  position: relative;
  z-index: 20;
}
@media (min-width: 1024px) {
  .intro_banner .general {
    width: 100%;
  }
}
.intro_banner .general .info {
  text-align: center;
  padding-bottom: 5rem;
  width: 100%;
}
@media (min-width: 1024px) {
  .intro_banner .general .info {
    text-align: left;
    padding: 10rem 1.25rem;
    width: 80%;
  }
}
.intro_banner .general .info h2 {
  color: #e5e5e5;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.1;
}
.intro_banner .general .info h1 {
  color: white;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.1;
}
.intro_banner .general .info p {
  margin-top: 1.25rem;
  color: white;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 2.5rem;
}
@media (min-width: 1024px) {
  .intro_banner .general .info p {
    font-size: 1rem;
  }
}
.intro_banner .general .info a {
  background-color: #bf0010;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  border-style: none;
  border-radius: 0.625rem;
  color: white;
  width: 100%;
  padding: 0.75rem 5rem;
  -webkit-box-shadow: 0px 13px 31px -4px rgba(0, 0, 0, 0.45);
  -moz-box-shadow: 0px 13px 31px -4px rgba(0, 0, 0, 0.45);
  box-shadow: 0px 13px 31px -4px rgba(0, 0, 0, 0.45);
  transition: all 0.3s ease;
}
.intro_banner .general .info a:hover {
  opacity: 0.7;
}

.down {
  width: 1rem;
  margin: 2.5rem auto;
  animation: bounce 1s infinite;
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

.about_us {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  padding: 0 1.25rem;
  gap: 2.5rem;
  width: 70%;
  max-width: 80rem;
  margin: 0 auto;
}
.about_us .section_info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: justify;
}
.about_us .section_info h2 {
  color: #bf0010;
  font-size: 1.75rem;
  font-weight: 500;
  text-align: center;
}
.about_us .section_info p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.25;
  width: 100%;
}
.about_us .section_info div {
  background-color: white;
  border-radius: 1.25rem;
  border-radius: 0.625rem;
  padding: 2.5rem;
  position: relative;
  text-align: center;
  box-shadow: 0px 10px 30px #dcdcdc;
}
.about_us .section_info div .icon_left {
  position: absolute;
  top: -0.625rem;
  left: 0.625rem;
}
.about_us .section_info div .icon_right {
  position: absolute;
  bottom: -0.625rem;
  right: 0.625rem;
}
.about_us .section_img {
  height: 100%;
  aspect-ratio: 16/9;
}
.about_us .section_img .about-video,
.about_us .section_img .about-img,
.about_us .section_img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0.625rem;
}
.about_us .section_img .about-video {
  background-color: #000;
}

.mision-vision {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 1.25rem;
  max-width: 80rem;
  margin: 3.25rem auto 0;
}
@media (min-width: 1024px) {
  .mision-vision {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }
}
.mision-vision .card {
  padding: 40px;
  background-color: white;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mision-vision .card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.mision-vision .card .icon {
  max-width: 40px;
  max-height: 40px;
  object-fit: cover;
}
.mision-vision .card .title {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #bf0010;
}
@media (min-width: 1024px) {
  .mision-vision .card .title {
    font-size: 39px;
    line-height: 33px;
  }
}
.mision-vision .card p {
  font-size: 16px;
  font-weight: 300;
  line-height: 25px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #424242;
}
@media (min-width: 1024px) {
  .mision-vision .card p {
    font-size: 20px;
    line-height: 25px;
  }
}

.our_services {
  max-width: 80rem;
  width: 100%;
  margin: 3.25rem auto 0;
}
.our_services .title {
  display: flex;
  color: #bf0010;
  padding: 0 1.25rem;
}
.our_services .title h2 {
  font-weight: 500;
  text-align: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .our_services .title h2 {
    font-size: 1.75rem;
    text-align: center;
  }
}
.our_services .title a {
  font-size: 0.875rem;
  color: #bf0010;
  text-decoration: underline;
}
.our_services .title .change {
  display: none;
  width: max-content;
  margin-left: auto;
}
@media (min-width: 1024px) {
  .our_services .title .change {
    display: flex;
    align-items: center;
    gap: 0.675rem;
  }
}
.our_services .title .change div {
  padding: 0.325rem;
  background-color: white;
  border-radius: 9999px;
  box-shadow: 0px 0px 50px #c8c8c8;
  cursor: pointer;
}
.our_services .title .change div i {
  color: #bf0010;
}
.our_services .services .swiper-slide {
  display: flex;
  padding: 1.25rem;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  width: 100%;
  height: auto;
  gap: 1.25rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.our_services .services .swiper-slide img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 150px;
  max-height: 13rem;
  border-radius: 0.675rem 0.675rem 0 0;
}
.our_services .services .swiper-slide div {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.625rem;
  color: #424242;
}
.our_services .services .swiper-slide div h3 {
  font-weight: 600;
  font-size: 1.5rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  overflow: hidden;
  text-align: center;
}
.our_services .services .swiper-slide div p {
  font-weight: 300;
  font-size: 0.875rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  overflow: hidden;
}
.our_services .services .swiper-slide:hover {
  scale: 1.1;
}
.our_services .services .swiper-button-next {
  color: #bf0010;
}
@media (min-width: 1024px) {
  .our_services .services .swiper-button-next {
    display: none;
  }
}
.our_services .services .swiper-button-prev {
  color: #bf0010;
}
@media (min-width: 1024px) {
  .our_services .services .swiper-button-prev {
    display: none;
  }
}

.our_blog {
  max-width: 80rem;
  width: 100%;
  margin: 3.25rem auto;
}
.our_blog .title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  color: #bf0010;
  padding: 0 1.25rem;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .our_blog .title {
    justify-content: start;
    gap: 1.25rem;
  }
}
.our_blog .title h2 {
  font-weight: 500;
}
@media (min-width: 1024px) {
  .our_blog .title h2 {
    font-size: 1.75rem;
  }
}
.our_blog .title a {
  font-size: 0.875rem;
  color: #bf0010;
}
.our_blog .title .change {
  display: none;
  width: max-content;
  margin-left: auto;
}
@media (min-width: 1024px) {
  .our_blog .title .change {
    display: flex;
    align-items: center;
    gap: 0.675rem;
  }
}
.our_blog .title .change div {
  padding: 0.325rem;
  background-color: white;
  border-radius: 9999px;
  box-shadow: 0px 0px 50px #c8c8c8;
  cursor: pointer;
}
.our_blog .title .change div i {
  color: #bf0010;
}
.our_blog .blog {
  display: flex;
}
.our_blog .blog .swiper-slide {
  display: flex;
  padding: 1.25rem;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  width: 100%;
  height: auto;
  gap: 1.25rem;
  transition: all 0.3s ease;
  cursor: pointer;
}
.our_blog .blog .swiper-slide img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 150px;
  border-radius: 0.675rem 0.675rem 0 0;
}
.our_blog .blog .swiper-slide div {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.625rem;
  width: 100%;
  margin-top: 20px;
  height: 80px;
}
.our_blog .blog .swiper-slide div h3 {
  font-weight: 600;
  font-size: 1.2rem;
}
.our_blog .blog .swiper-slide div p {
  font-weight: 300;
  font-size: 0.875rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  overflow: hidden;
}
.our_blog .blog .swiper-slide div a {
  color: #bf0010;
  text-decoration: underline;
}
.our_blog .blog .swiper-slide:hover {
  scale: 1.1;
}
.our_blog .blog .swiper-button-next {
  color: #bf0010;
}
@media (min-width: 1024px) {
  .our_blog .blog .swiper-button-next {
    display: none;
  }
}
.our_blog .blog .swiper-button-prev {
  color: #bf0010;
}
@media (min-width: 1024px) {
  .our_blog .blog .swiper-button-prev {
    display: none;
  }
}

.our_comments {
  text-align: center;
  max-width: 80rem;
  width: 100%;
  margin: 3.25rem auto 0;
}
.our_comments .title {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  color: #bf0010;
  padding: 0 1.25rem;
  margin-bottom: 0.625rem;
}
.our_comments .title h2 {
  font-weight: 500;
  line-height: 1.1;
}
@media (min-width: 1024px) {
  .our_comments .title h2 {
    font-size: 1.75rem;
  }
}
.our_comments .title p {
  font-weight: 300;
  color: #424242;
  font-size: 0.875rem;
  line-height: 1;
}
@media (min-width: 1024px) {
  .our_comments .title p {
    font-size: 1rem;
    max-width: 50%;
    margin: 0 auto;
  }
}
.our_comments .options {
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .our_comments .options {
    margin-top: 1.25rem;
    justify-content: space-between;
  }
}
.our_comments .options a {
  font-size: 0.875rem;
  color: #bf0010;
}
.our_comments .options .change {
  display: none;
  width: max-content;
  margin-left: auto;
}
@media (min-width: 1024px) {
  .our_comments .options .change {
    display: flex;
    align-items: center;
    gap: 0.675rem;
  }
}
.our_comments .options .change div {
  padding: 0.325rem;
  background-color: white;
  border-radius: 9999px;
  box-shadow: 0px 0px 50px #c8c8c8;
  cursor: pointer;
}
.our_comments .options .change div i {
  color: #bf0010;
}
.our_comments .comments .swiper-slide {
  padding: 1.25rem;
  transition: all 0.3s ease;
  cursor: pointer;
}
.our_comments .comments .swiper-slide .content {
  display: flex;
  padding: 2.5rem;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  width: 100%;
  min-height: 300px;
  gap: 1.25rem;
  text-align: start;
  background-color: white;
  border-radius: 1.25rem;
}
.our_comments .comments .swiper-slide .content img {
  max-height: 1.25rem;
}
.our_comments .comments .swiper-slide .content div {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.625rem;
}
.our_comments .comments .swiper-slide .content div h3 {
  line-height: 1.25;
  font-size: 1.25rem;
  font-weight: 600;
}
.our_comments .comments .swiper-slide .content div p {
  font-weight: 300;
  font-size: 0.875rem;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  display: -webkit-box;
}
.our_comments .comments .swiper-slide .content div a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  color: #bf0010;
}
.our_comments .comments .swiper-slide:hover {
  scale: 1.1;
}
.our_comments .comments .swiper-slide:hover div p {
  -webkit-box-orient: unset;
  -webkit-line-clamp: unset;
  display: block;
}
.our_comments .comments .swiper-button-next {
  color: #bf0010;
}
@media (min-width: 1024px) {
  .our_comments .comments .swiper-button-next {
    display: none;
  }
}
.our_comments .comments .swiper-button-prev {
  color: #bf0010;
}
@media (min-width: 1024px) {
  .our_comments .comments .swiper-button-prev {
    display: none;
  }
}

.contact_us {
  max-width: 80rem;
  width: 100%;
  height: max-content;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.25rem;
  padding: 1.25rem;
  margin: 0 auto;
  padding-top: 120px;
}
@media (min-width: 1024px) {
  .contact_us {
    grid-template-columns: repeat(2, 1fr);
  }
}
.contact_us form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  color: #424242;
}
@media (min-width: 1024px) {
  .contact_us form {
    padding-right: 2.5rem;
  }
}
.contact_us form h2 {
  color: #bf0010;
  font-weight: 500;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0%;
}
@media (min-width: 1024px) {
  .contact_us form h2 {
    font-size: 1.75rem;
  }
}
.contact_us form p {
  font-family: Poppins;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
}
@media (min-width: 1024px) {
  .contact_us form p {
    font-size: 1rem;
  }
}
.contact_us form .inputs {
  display: flex;
  flex-direction: column;
}
.contact_us form .inputs .container_inputs {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.675rem;
  align-items: start;
  position: relative;
}
.contact_us form .inputs .container_inputs input {
  padding: 0.625rem 1.25rem;
  border: #a0a0a0 solid 1px;
  border-radius: 0.375rem;
  color: #424242;
  background-color: transparent;
  margin-bottom: 1.25rem;
  width: 100%;
}
.contact_us form .inputs .container_inputs input:focus-visible {
  outline-color: #bf0010;
  outline-width: 2px;
}
.contact_us form .inputs .container_inputs label {
  font-size: 0.875rem;
}
.contact_us form .inputs .container_inputs label.error {
  position: absolute;
  top: auto;
  bottom: 0.1rem;
  font-size: 0.675rem !important;
  left: 1rem;
  color: red;
}
.contact_us form .inputs .select_service {
  padding: 0.625rem 1.25rem;
  border: #a0a0a0 solid 1px;
  border-radius: 0.375rem;
  color: #424242;
}
.contact_us form .inputs .select_service select {
  width: 100%;
  border-style: none;
  background-color: transparent;
  color: #424242;
}
.contact_us form .inputs .select_service select:focus-visible {
  outline-color: transparent;
  outline-width: 0;
}
.contact_us form .text_terms {
  background: white;
  padding: 1.25rem;
  border-radius: 0.675rem;
  max-height: 8rem;
  overflow-y: auto;
}
.contact_us form .text_terms p {
  font-weight: 300;
  font-size: 12px;
  line-height: 110%;
}
@media (min-width: 1024px) {
  .contact_us form .text_terms {
    padding: 1rem;
    max-height: 5rem;
  }
}
.contact_us form .double_check {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  justify-content: center;
}
@media (min-width: 1024px) {
  .contact_us form .double_check {
    justify-content: start;
  }
}
.contact_us form .double_check div {
  display: inline-block;
}
.contact_us form .double_check div input[type=radio] {
  display: none;
}
.contact_us form .double_check div input[type=radio] + label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 0.875rem;
}
.contact_us form .double_check div input[type=radio] + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 50%;
  border: #bf0010 2px solid;
}
.contact_us form .double_check div input[type=radio]:checked + label:before {
  background-color: #bf0010;
}
.contact_us form button {
  text-transform: uppercase;
  background-color: #bf0010;
  color: white;
  padding: 0.625rem 2.5rem;
  border-style: none;
  border-radius: 0.625rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact_us form button:hover {
  opacity: 0.7;
}
.contact_us .map {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  height: 100%;
}
.contact_us .map .cities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.675rem;
}
@media (min-width: 1024px) {
  .contact_us .map .cities {
    grid-template-columns: repeat(4, 1fr);
  }
}
.contact_us .map .cities button {
  border-style: none;
  border-bottom: solid #424242 1px;
  padding: 0.675rem 0;
  font-weight: 600;
  color: #424242;
  cursor: pointer;
  background-color: transparent;
  text-transform: uppercase;
}
.contact_us .map .cities .active {
  border-bottom: solid #bf0010 2px;
  color: #bf0010;
}
.contact_us .map .frame_map {
  min-height: 20rem;
  border-radius: 40px;
}
.contact_us .map .info {
  display: grid;
  grid-template-columns: repeat(1, auto);
  gap: 0.625rem;
  justify-content: center;
}
@media (min-width: 1024px) {
  .contact_us .map .info {
    grid-template-columns: repeat(3, auto);
    gap: 1.25rem;
  }
}
.contact_us .map .info a {
  display: flex;
  align-items: center;
  gap: 0.675rem;
  text-decoration: none;
}
.contact_us .map .info a i {
  font-size: 1.5rem;
  color: #424242;
}
.contact_us .map .info a div h4 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 2%;
  color: #424242;
}
.contact_us .map .info a div p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 2%;
  color: #bf0010;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.modal_terms .swal2-actions button {
  padding: 0.675rem 2.5rem;
  text-align: center;
  color: #fff;
  font-size: 0.875rem;
  background: #bf0010;
  border-radius: 0.5rem;
  text-transform: uppercase;
}
.modal_terms .swal2-actions button:focus {
  box-shadow: 0 0 0 3px rgba(191, 0, 16, 0.5);
}
.modal_terms .container h4 {
  text-align: center;
  font-size: 1rem;
  margin: 0 0 1.25rem;
}
.modal_terms .container p {
  text-align: justify;
  margin: 0 0 0.675rem;
  font-size: 0.875rem;
}

.our_clients {
  text-align: center;
  max-width: 80rem;
  width: 100%;
  margin: 3.25rem auto 0;
}
.our_clients .title {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  color: #bf0010;
  padding: 0 1.25rem;
  margin-bottom: 0.625rem;
}
.our_clients .title h2 {
  font-weight: 500;
  line-height: 1.1;
}
.our_clients .clients_sw {
  margin-top: 1.25rem;
  padding-inline: 20px;
}
.our_clients .clients_sw .swiper-slide {
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.our_clients .clients_sw .swiper-slide img {
  object-fit: contain;
  max-height: 80px;
  width: 150px;
  filter: grayscale(1);
  opacity: 0.5;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.our_clients .clients_sw .swiper-slide img:hover {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  filter: grayscale(0);
  opacity: 1;
}
.our_clients .swiper-button-prev,
.our_clients .swiper-button-next {
  color: #bf0010 !important;
}

/* servicios.html */
.intro_banner_services {
  background-position: center;
  background-size: cover;
  padding: 2.5rem 1.25rem;
  display: flex;
  place-content: center;
  position: relative;
}
.intro_banner_services .degrade {
  background: rgb(31, 31, 31);
  background: linear-gradient(180deg, rgb(31, 31, 31) 0%, rgba(31, 31, 31, 0.5802696078) 53%, rgba(31, 31, 31, 0) 100%);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
@media (min-width: 1024px) {
  .intro_banner_services .degrade {
    background: rgb(31, 31, 31);
    background: linear-gradient(90deg, rgb(31, 31, 31) 24%, rgba(31, 31, 31, 0) 100%);
  }
}
.intro_banner_services .general {
  position: relative;
  z-index: 20;
}
@media (min-width: 1024px) {
  .intro_banner_services .general {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 80rem;
  }
}
.intro_banner_services .general .info {
  text-align: center;
  padding-bottom: 2.5rem;
}
@media (min-width: 1024px) {
  .intro_banner_services .general .info {
    text-align: left;
    padding: 2rem 1.25rem;
  }
}
.intro_banner_services .general .info h2 {
  font-size: 1.25rem;
  color: #bf0010;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .intro_banner_services .general .info h2 {
    font-weight: 400;
    font-size: 2rem;
  }
}
.intro_banner_services .general .info h1 {
  text-transform: uppercase;
  margin-top: 1.25rem;
  color: white;
  font-size: 2rem;
  line-height: 1.25;
}
@media (min-width: 1024px) {
  .intro_banner_services .general .info h1 {
    margin-top: 0;
    font-size: 3rem;
    line-height: 1.1;
  }
}
.intro_banner_services .general .info p {
  margin-top: 1.25rem;
  color: white;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 2.5rem;
}
@media (min-width: 1024px) {
  .intro_banner_services .general .info p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
}

.our_services_services {
  max-width: 80rem;
  width: 100%;
  margin: 3.25rem auto 0;
  padding: 1.25rem;
  display: grid;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  grid-template-columns: 45% 45%;
}
@media (min-width: 1024px) {
  .our_services_services {
    gap: 4rem;
  }
}
.our_services_services .service {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.our_services_services .service h2 {
  font-weight: 500;
  color: #bf0010;
}
.our_services_services .service .content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.7em;
  width: 100%;
  transition: all 0.3s ease;
  padding: 1em;
}
.our_services_services .service .content img {
  width: 100%;
  height: 350px;
  max-height: 21rem;
  object-fit: cover;
  object-position: center;
  border-radius: 0.675rem;
  transition: all 0.3s ease;
}
.our_services_services .service .content img:hover {
  scale: 0.95;
}
.our_services_services .service .content .info {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.our_services_services .service .content .info p {
  font-weight: 300;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 1024px) {
  .our_services_services .service .content .info p {
    font-size: 1rem;
  }
}
.our_services_services .service .content .info a {
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  background-color: #bf0010;
  color: white;
  padding: 0.625rem 2.5rem;
  border-style: none;
  border-radius: 0.625rem;
  font-weight: 500;
  font-size: 0.875rem;
  width: 70%;
  align-self: center;
  transition: all 0.3s ease;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.our_services_services .service .content .info a:hover {
  opacity: 0.7;
}
.our_services_services .service .content .short-description p {
  margin-top: 10%;
}
.our_services_services .service .content:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.our_clients_services {
  text-align: center;
  max-width: 80rem;
  width: 100%;
  margin: 3.25rem auto 0;
}
.our_clients_services .title {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  color: #bf0010;
  padding: 0 1.25rem;
  margin-bottom: 0.625rem;
}
.our_clients_services .title h2 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.1;
}
@media (min-width: 1024px) {
  .our_clients_services .title h2 {
    font-size: 1.5rem;
  }
}
.our_clients_services .clients_sw_services {
  margin-top: 1.25rem;
}
.our_clients_services .clients_sw_services .swiper-slide {
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.our_clients_services .clients_sw_services .swiper-slide img {
  object-fit: contain;
  max-height: 80px;
  width: 150px;
  filter: grayscale(1);
  opacity: 0.5;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.our_clients_services .clients_sw_services .swiper-slide img:hover {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  filter: grayscale(0);
  opacity: 1;
}

/* single.html */
.intro_banner_services-page {
  background-image: url("https://res.cloudinary.com/dizejzlnv/image/upload/v1688701571/MATRASE/WhatsApp_Image_2023-05-23_at_3.17_3_jp0eru.webp");
  background-position: center;
  background-size: cover;
  padding: 2.5rem 1.25rem;
  display: flex;
  place-content: center;
  position: relative;
}
.intro_banner_services-page .degrade {
  background: rgb(31, 31, 31);
  background: linear-gradient(180deg, rgb(31, 31, 31) 0%, rgba(31, 31, 31, 0.5802696078) 53%, rgba(31, 31, 31, 0) 100%);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
@media (min-width: 1024px) {
  .intro_banner_services-page .degrade {
    background: rgb(31, 31, 31);
    background: linear-gradient(90deg, rgb(31, 31, 31) 24%, rgba(31, 31, 31, 0) 100%);
  }
}
.intro_banner_services-page .general {
  position: relative;
  z-index: 20;
}
@media (min-width: 1024px) {
  .intro_banner_services-page .general {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 80rem;
  }
}
.intro_banner_services-page .general .info {
  text-align: center;
  padding-bottom: 2.5rem;
}
@media (min-width: 1024px) {
  .intro_banner_services-page .general .info {
    text-align: left;
    padding: 2rem 1.25rem;
  }
}
.intro_banner_services-page .general .info h2 {
  font-size: 1.25rem;
  color: #bf0010;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .intro_banner_services-page .general .info h2 {
    font-weight: 400;
    font-size: 2rem;
  }
}
.intro_banner_services-page .general .info h1 {
  text-transform: uppercase;
  margin-top: 1.25rem;
  color: white;
  font-size: 2rem;
  line-height: 1.25;
}
@media (min-width: 1024px) {
  .intro_banner_services-page .general .info h1 {
    margin-top: 0;
    font-size: 3rem;
    line-height: 1.1;
  }
}
.intro_banner_services-page .general .info p {
  margin-top: 1.25rem;
  color: white;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 2.5rem;
}
@media (min-width: 1024px) {
  .intro_banner_services-page .general .info p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
}

.our_services_services-page {
  max-width: 80rem;
  width: 100%;
  margin: 2rem auto 0;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}
@media (min-width: 1024px) {
  .our_services_services-page {
    gap: 4rem;
  }
}
.our_services_services-page h2 {
  font-weight: 500;
  color: #bf0010;
}
@media (min-width: 1024px) {
  .our_services_services-page h2 {
    font-size: 1.75rem;
  }
}
.our_services_services-page .services {
  width: 100%;
  display: flex;
  gap: 20px;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .our_services_services-page .services {
    gap: 4rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
.our_services_services-page .services .content {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1.25rem;
  width: 100%;
  gap: 40px;
  padding: 2em;
}
.our_services_services-page .services .content img {
  width: 50%;
  height: 350px;
  object-fit: cover;
  object-position: center;
  border-radius: 0.675rem 0.675rem 0 0;
  transition: all 0.3s;
}
.our_services_services-page .services .content img:hover {
  scale: 0.95;
}
.our_services_services-page .services .content .info {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.our_services_services-page .services .content .info h3 {
  font-weight: 600;
  font-size: 1.25rem;
  color: #bf0010;
}
.our_services_services-page .services .content .info p {
  font-weight: 300;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  /*  -webkit-box-orient: vertical;
            -webkit-line-clamp: 3;
            display: -webkit-box;
            overflow: hidden; */
  line-height: 1.25;
}
@media (min-width: 1024px) {
  .our_services_services-page .services .content .info p {
    font-size: 1rem;
  }
}
.our_services_services-page .services .content .info button {
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  background-color: transparent;
  color: #bf0010;
  padding: 0.5rem 2.5rem;
  border: #bf0010 1px solid;
  border-radius: 0.625rem;
  font-weight: 500;
  font-size: 0.875rem;
  width: 100%;
  cursor: pointer;
}
.our_services_services-page .services .content:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.our_services_services-page a {
  background-color: #bf0010;
  width: 300px;
  border-radius: 8px;
  height: 40px;
  text-decoration: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  transition: all 0.3s ease;
}
.our_services_services-page a:hover {
  opacity: 0.7;
}

.our_clients_services-page {
  text-align: center;
  max-width: 80rem;
  width: 100%;
  margin: 3.25rem auto 0;
}
.our_clients_services-page .title {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  color: #bf0010;
  padding: 0 1.25rem;
  margin-bottom: 0.625rem;
}
.our_clients_services-page .title h2 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.1;
}
@media (min-width: 1024px) {
  .our_clients_services-page .title h2 {
    font-size: 1.5rem;
  }
}
.our_clients_services-page .clients_sw_page {
  margin-top: 1.25rem;
}
.our_clients_services-page .clients_sw_page .swiper-slide {
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.our_clients_services-page .clients_sw_page .swiper-slide img {
  object-fit: contain;
  max-height: 80px;
  width: 150px;
  filter: grayscale(1);
  opacity: 0.5;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.our_clients_services-page .clients_sw_page .swiper-slide img:hover {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  filter: grayscale(0);
  opacity: 1;
}

.modal_service {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 60;
  height: 100vh;
  width: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 1.25rem;
  background-color: rgba(66, 66, 66, 0.7647058824);
}
.modal_service .general {
  max-width: 50rem;
  width: 100%;
  height: auto;
  max-height: 100%;
  overflow-y: auto;
  background-color: white;
  border-radius: 0.675rem;
  position: relative;
}
.modal_service .general button {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  border-style: none;
  border-radius: 9999px;
  background-color: white;
  box-shadow: 0px 0px 15px #939393;
  padding: 0.4rem;
  color: #bf0010;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.modal_service .general img {
  width: 100%;
  height: 100%;
  max-height: 10rem;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 1024px) {
  .modal_service .general img {
    max-height: 20rem;
  }
}
.modal_service .general .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  padding: 1.25rem;
}
@media (min-width: 1024px) {
  .modal_service .general .info {
    padding: 2.5rem;
  }
}
.modal_service .general .info h3 {
  font-weight: 600;
  font-size: 1.25rem;
}
@media (min-width: 1024px) {
  .modal_service .general .info h3 {
    font-size: 1.5rem;
  }
}
.modal_service .general .info p {
  font-size: 0.875rem;
  font-weight: 300;
}
@media (min-width: 1024px) {
  .modal_service .general .info p {
    font-size: 1rem;
  }
}
.modal_service .general .info a {
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  background-color: transparent;
  color: #bf0010;
  padding: 0.4rem 2.5rem;
  border: #bf0010 1px solid;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 0.875rem;
  width: 100%;
}

/* blog.html */
.intro_banner_blog {
  background-image: url("https://res.cloudinary.com/dizejzlnv/image/upload/v1688707105/MATRASE/interior-gran-almacen-distribucion-estantes-apilados-paletas-productos-listos-mercado_1_5_qaobi7.webp");
  background-position: center;
  background-size: cover;
  padding: 2.5rem 1.25rem;
  display: flex;
  place-content: center;
  position: relative;
}
.intro_banner_blog .degrade {
  background: rgb(31, 31, 31);
  background: linear-gradient(180deg, rgb(31, 31, 31) 0%, rgba(31, 31, 31, 0.5802696078) 53%, rgba(31, 31, 31, 0) 100%);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
@media (min-width: 1024px) {
  .intro_banner_blog .degrade {
    background: rgb(31, 31, 31);
    background: linear-gradient(90deg, rgb(31, 31, 31) 24%, rgba(31, 31, 31, 0) 100%);
  }
}
.intro_banner_blog .general {
  position: relative;
  z-index: 20;
}
@media (min-width: 1024px) {
  .intro_banner_blog .general {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 80rem;
  }
}
.intro_banner_blog .general .info {
  text-align: center;
  padding-bottom: 2.5rem;
}
@media (min-width: 1024px) {
  .intro_banner_blog .general .info {
    text-align: left;
    padding: 2rem 1.25rem;
  }
}
.intro_banner_blog .general .info h2 {
  font-size: 1.25rem;
  color: #bf0010;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .intro_banner_blog .general .info h2 {
    font-weight: 400;
    font-size: 2rem;
  }
}
.intro_banner_blog .general .info h1 {
  text-transform: uppercase;
  margin-top: 1.25rem;
  color: white;
  font-size: 2rem;
  line-height: 1.25;
}
@media (min-width: 1024px) {
  .intro_banner_blog .general .info h1 {
    margin-top: 0;
    font-size: 3rem;
    line-height: 1.1;
  }
}
.intro_banner_blog .general .info p {
  margin-top: 1.25rem;
  color: white;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 2.5rem;
}
@media (min-width: 1024px) {
  .intro_banner_blog .general .info p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
}

.blog_highlights {
  max-width: 80rem;
  width: 100%;
  margin: 3.25rem auto 0;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}
.blog_highlights h2 {
  color: #bf0010;
  font-weight: 500;
}
.blog_highlights .articles {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1.25rem;
}
@media (min-width: 1024px) {
  .blog_highlights .articles {
    flex-direction: row;
    gap: 2.5rem;
  }
}
.blog_highlights .articles .container_left {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
  width: 100%;
}
@media (min-width: 1024px) {
  .blog_highlights .articles .container_left {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}
.blog_highlights .articles .container_left article {
  width: 100%;
}
.blog_highlights .articles .container_left article img {
  width: 100%;
  max-height: 10rem;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0.675rem 0.675rem 0 0;
}
@media (min-width: 1024px) {
  .blog_highlights .articles .container_left article img {
    max-height: 15rem;
  }
}
.blog_highlights .articles .container_left article div h3 {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
}
.blog_highlights .articles .container_left article div p {
  font-weight: 300;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  overflow: hidden;
}
.blog_highlights .articles .container_left article div a {
  color: #bf0010;
}
.blog_highlights .articles .container_right {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
  width: 100%;
}
@media (min-width: 1024px) {
  .blog_highlights .articles .container_right {
    max-width: 20rem;
    gap: 2.5rem;
  }
}
.blog_highlights .articles .container_right article h3 {
  font-weight: 600;
  line-height: 1.25;
}
.blog_highlights .articles .container_right article p {
  font-weight: 300;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  overflow: hidden;
}
.blog_highlights .articles .container_right article a {
  color: #bf0010;
}

.blog_general {
  max-width: 80rem;
  width: 100%;
  margin: 3.25rem auto 0;
  padding: 1.25rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.25rem;
}
@media (min-width: 1024px) {
  .blog_general {
    grid-template-columns: repeat(4, 1fr);
  }
}
.blog_general article {
  width: 100%;
}
.blog_general article img {
  width: 100%;
  max-height: 10rem;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0.675rem 0.675rem 0 0;
  /* @include lg{
            max-height: 10rem;
        } */
}
.blog_general article div h4 {
  font-weight: 600;
  line-height: 1.25;
}
.blog_general article div p {
  font-weight: 300;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  overflow: hidden;
  font-size: 0.875rem;
}
.blog_general article div a {
  color: #bf0010;
}

/* article.html */
.intro_banner_article {
  background-image: url("https://res.cloudinary.com/dizejzlnv/image/upload/v1688707105/MATRASE/interior-gran-almacen-distribucion-estantes-apilados-paletas-productos-listos-mercado_1_5_qaobi7.webp");
  background-position: center;
  background-size: cover;
  min-height: 30rem;
}

.info_articule {
  max-width: 80rem;
  width: 100%;
  margin: 0 auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 0.675rem;
}
@media (min-width: 1024px) {
  .info_articule {
    margin: 3.25rem auto 0;
    gap: 1.25rem;
  }
}
.info_articule h2 {
  color: #bf0010;
  font-weight: 600;
  line-height: 1.25;
}
@media (min-width: 1024px) {
  .info_articule h2 {
    font-size: 2rem;
  }
}
.info_articule .description {
  width: 100%;
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 500;
}
@media (min-width: 1024px) {
  .info_articule .description {
    font-size: 1.25rem;
    width: 80%;
  }
}
.info_articule .general {
  display: flex;
  align-items: start;
  gap: 2.5rem;
}
.info_articule .general .container_info {
  width: 100%;
  font-weight: 300;
}
.info_articule .general .info_right {
  width: 100%;
  max-width: 18rem;
  display: none;
}
@media (min-width: 1024px) {
  .info_articule .general .info_right {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
}
.info_articule .general .info_right .suscription {
  padding: 1.25rem;
  background-color: white;
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.675rem;
  text-align: center;
}
.info_articule .general .info_right .suscription h3 {
  color: #bf0010;
  font-weight: 500;
}
.info_articule .general .info_right .suscription p {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.25;
}
.info_articule .general .info_right .suscription input {
  width: 100%;
  padding: 0.335rem 0.675rem;
  border-style: none;
  border-radius: 0.335rem;
  background-color: #e5e5e5;
}
.info_articule .general .info_right .suscription button {
  background-color: #bf0010;
  color: white;
  border-style: none;
  border-radius: 0.675rem;
  padding: 0.675rem;
  width: 100%;
  cursor: pointer;
}
.info_articule .general .info_right .articles_highlight {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.info_articule .general .info_right .articles_highlight article h3 {
  font-weight: 600;
  line-height: 1.25;
}
.info_articule .general .info_right .articles_highlight article p {
  font-weight: 300;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  overflow: hidden;
}
.info_articule .general .info_right .articles_highlight article a {
  color: #bf0010;
}

.blog_highlights_article {
  max-width: 80rem;
  width: 100%;
  margin: 3.25rem auto 0;
}
.blog_highlights_article .title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  color: #bf0010;
  padding: 0 1.25rem;
}
@media (min-width: 1024px) {
  .blog_highlights_article .title {
    justify-content: start;
    gap: 1.25rem;
  }
}
.blog_highlights_article .title h2 {
  font-weight: 500;
}
@media (min-width: 1024px) {
  .blog_highlights_article .title h2 {
    font-size: 1.75rem;
  }
}
.blog_highlights_article .title a {
  font-size: 0.875rem;
  color: #bf0010;
  text-decoration: underline;
}
.blog_highlights_article .title .change {
  display: none;
  width: max-content;
  margin-left: auto;
}
@media (min-width: 1024px) {
  .blog_highlights_article .title .change {
    display: flex;
    align-items: center;
    gap: 0.675rem;
  }
}
.blog_highlights_article .title .change div {
  padding: 0.325rem;
  background-color: white;
  border-radius: 9999px;
  box-shadow: 0px 0px 50px #c8c8c8;
  cursor: pointer;
}
.blog_highlights_article .title .change div i {
  color: #bf0010;
}
.blog_highlights_article .blog_article .swiper-slide {
  display: flex;
  padding: 1.25rem;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  width: 100%;
  height: auto;
  gap: 1.25rem;
}
.blog_highlights_article .blog_article .swiper-slide img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  max-height: 26.25rem;
  border-radius: 0.675rem 0.675rem 0 0;
}
.blog_highlights_article .blog_article .swiper-slide div {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.625rem;
}
.blog_highlights_article .blog_article .swiper-slide div h3 {
  font-weight: 600;
  font-size: 1.5rem;
}
.blog_highlights_article .blog_article .swiper-slide div p {
  font-weight: 300;
  font-size: 0.875rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  overflow: hidden;
}
.blog_highlights_article .blog_article .swiper-slide div a {
  color: #bf0010;
  text-decoration: underline;
}
.blog_highlights_article .blog_article .swiper-button-next {
  color: #bf0010;
}
@media (min-width: 1024px) {
  .blog_highlights_article .blog_article .swiper-button-next {
    display: none;
  }
}
.blog_highlights_article .blog_article .swiper-button-prev {
  color: #bf0010;
}
@media (min-width: 1024px) {
  .blog_highlights_article .blog_article .swiper-button-prev {
    display: none;
  }
}

/* clientes.html */
.intro_banner_clients {
  background-image: url("https://res.cloudinary.com/dizejzlnv/image/upload/v1688707105/MATRASE/interior-gran-almacen-distribucion-estantes-apilados-paletas-productos-listos-mercado_1_5_qaobi7.webp");
  background-position: center;
  background-size: cover;
  padding: 2.5rem 1.25rem;
  display: flex;
  place-content: center;
  position: relative;
}
.intro_banner_clients .degrade {
  background: rgb(31, 31, 31);
  background: linear-gradient(180deg, rgb(31, 31, 31) 0%, rgba(31, 31, 31, 0.5802696078) 53%, rgba(31, 31, 31, 0) 100%);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
@media (min-width: 1024px) {
  .intro_banner_clients .degrade {
    background: rgb(31, 31, 31);
    background: linear-gradient(90deg, rgb(31, 31, 31) 24%, rgba(31, 31, 31, 0) 100%);
  }
}
.intro_banner_clients .general {
  position: relative;
  z-index: 20;
}
@media (min-width: 1024px) {
  .intro_banner_clients .general {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 80rem;
  }
}
.intro_banner_clients .general .info {
  text-align: center;
  padding-bottom: 2.5rem;
}
@media (min-width: 1024px) {
  .intro_banner_clients .general .info {
    text-align: left;
    padding: 2rem 1.25rem;
  }
}
.intro_banner_clients .general .info h2 {
  font-size: 1.25rem;
  color: #bf0010;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .intro_banner_clients .general .info h2 {
    font-weight: 400;
    font-size: 2rem;
  }
}
.intro_banner_clients .general .info h1 {
  text-transform: uppercase;
  margin-top: 1.25rem;
  color: white;
  font-size: 2rem;
  line-height: 1.25;
}
@media (min-width: 1024px) {
  .intro_banner_clients .general .info h1 {
    margin-top: 0;
    font-size: 3rem;
    line-height: 1.1;
  }
}
.intro_banner_clients .general .info p {
  margin-top: 1.25rem;
  color: white;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 2.5rem;
}
@media (min-width: 1024px) {
  .intro_banner_clients .general .info p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
}

.our_clients_clients {
  max-width: 80rem;
  width: 100%;
  margin: 3.25rem auto 0;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}
@media (min-width: 1024px) {
  .our_clients_clients {
    gap: 4rem;
  }
}
.our_clients_clients .title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
@media (min-width: 1024px) {
  .our_clients_clients .title {
    flex-direction: row;
  }
}
.our_clients_clients .title h2 {
  font-weight: 500;
  color: #bf0010;
}
.our_clients_clients .title a {
  background-color: #bf0010;
  color: white;
  border-style: none;
  padding: 0.675rem 1.25rem;
  border-radius: 0.375rem;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.875rem;
}
@media (min-width: 1024px) {
  .our_clients_clients .title a {
    font-size: 1rem;
  }
}
.our_clients_clients .brands {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.25rem;
}
@media (min-width: 1024px) {
  .our_clients_clients .brands {
    grid-template-columns: repeat(4, 1fr);
  }
}
.our_clients_clients .brands .logo {
  background-image: url("https://res.cloudinary.com/dizejzlnv/image/upload/v1689102256/MATRASE/interior-gran-almacen-distribucion-estantes-apilados-paletas-productos-listos-mercado_1_szfllf_copia_tmbesf.webp");
  background-position: center;
  background-size: cover;
  padding: 2.5rem;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.675rem;
  filter: grayscale(1);
  opacity: 0.5;
  transition: all 0.3s ease-in-out;
}
.our_clients_clients .brands .logo:hover {
  opacity: 1;
  filter: grayscale(0);
  transition: all 0.3s ease-in-out;
}
.our_clients_clients .brands img {
  width: 100%;
  height: auto;
}

.certifications-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.certifications-container span {
  color: #bf0010;
  font-size: 1.5rem;
  font-weight: 500;
}
.certifications-container .certifications {
  display: flex;
  gap: 20px;
}
.certifications-container .certifications img {
  object-fit: contain;
  height: 80px;
  transition: all 0.3s ease;
}
.certifications-container .certifications img:hover {
  scale: 1.1;
}

.proveedores {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
}
.proveedores form {
  display: flex;
  width: 70%;
  gap: 40px;
  align-items: center;
  padding: 20px;
}
.proveedores form h2 {
  text-transform: uppercase;
}
.proveedores form section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 50%;
}
.proveedores form section h2 {
  font-weight: bold;
}
.proveedores form section label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: bold;
}
.proveedores form section label input {
  outline: none;
  height: 40px;
  padding-inline: 10px;
  border-radius: 8px;
  border: none;
  border: #a0a0a0 solid 1px;
}
.proveedores form section label span {
  font-size: 12px;
  color: #bf0010;
  font-weight: normal;
}
.proveedores form figure {
  width: 50%;
}
.proveedores form figure img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.proveedores form button {
  text-transform: uppercase;
  background-color: #bf0010;
  color: white;
  padding: 0.625rem 2.5rem;
  border-style: none;
  border-radius: 0.625rem;
  font-weight: 500;
  cursor: pointer;
  height: 45px;
  transition: all ease;
  margin-top: 20px;
}
.proveedores form button:hover {
  opacity: 0.8;
}
.proveedores .error {
  border: 1px solid #bf0010;
}
.proveedores .check {
  border: 1px solid green;
}

.intro_banner_safetyroad {
  background-position: center;
  background-size: cover;
  padding: 2.5rem 1.25rem;
  display: flex;
  place-content: center;
  position: relative;
}
@media (min-width: 1024px) {
  .intro_banner_safetyroad {
    padding: 8rem 1.25rem;
  }
}
.intro_banner_safetyroad .degrade {
  background: rgb(31, 31, 31);
  background: linear-gradient(90deg, rgb(31, 31, 31) 0%, rgba(31, 31, 31, 0.5802696078) 53%, rgba(31, 31, 31, 0) 100%);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
@media (min-width: 1024px) {
  .intro_banner_safetyroad .degrade {
    background: rgb(31, 31, 31);
    background: linear-gradient(90deg, rgb(31, 31, 31) 24%, rgba(31, 31, 31, 0) 100%);
  }
}
.intro_banner_safetyroad .general {
  position: relative;
  z-index: 20;
  max-width: 80rem;
}
@media (min-width: 1024px) {
  .intro_banner_safetyroad .general .info {
    width: 50%;
  }
}
.intro_banner_safetyroad .general .info h1 {
  font-size: 24px;
  font-weight: 700;
  line-height: 22.92px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #ffffff;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  .intro_banner_safetyroad .general .info h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 45.84px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
  }
}
.intro_banner_safetyroad .general .info p {
  font-size: 14px;
  font-weight: 300;
  line-height: 15px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: white;
  margin-top: 8px;
}
@media (min-width: 1024px) {
  .intro_banner_safetyroad .general .info p {
    font-size: 18px;
    font-weight: 300;
    line-height: 21.33px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
  }
}

.security-focus {
  max-width: 80rem;
  width: 100%;
  margin: 3.25rem auto 0;
  padding: 1.25rem;
  gap: 2.5rem;
  display: flex;
  flex-direction: column;
}
.security-focus .security-focus-title {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #bf0010;
}
@media (min-width: 1024px) {
  .security-focus .security-focus-title {
    font-size: 2rem;
    line-height: 1.25;
  }
}
.security-focus .items {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.security-focus .items .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1.25rem 1.25rem 1.25rem;
  max-width: 400px;
}
.security-focus .items .item .icon {
  max-width: 80px;
  max-height: 80px;
  transition: transform 0.3s ease;
}
@media (min-width: 1024px) {
  .security-focus .items .item .icon {
    max-width: 110px;
    max-height: 110px;
    width: 100%;
  }
}
.security-focus .items .item h3 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #bf0010;
  margin-top: 1.25rem;
  width: 100%;
}
@media (min-width: 1024px) {
  .security-focus .items .item h3 {
    font-size: 1.5rem;
    line-height: 1.25;
  }
}
.security-focus .items .item p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.25;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #424242;
  margin-top: 1.25rem;
}
@media (min-width: 1024px) {
  .security-focus .items .item p {
    font-size: 1.125rem;
    line-height: 1.25;
  }
}
.security-focus .items .item:hover .icon {
  transform: scale(1.05);
}

.training {
  max-width: 80rem;
  width: 100%;
  margin: 3.25rem auto 0;
  padding: 1.25rem;
  gap: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1024px) {
  .training {
    margin: 5rem auto 0 auto;
    gap: 3.25rem;
  }
}
.training .message {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.training .message h3 {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #bf0010;
}
@media (min-width: 1024px) {
  .training .message h3 {
    font-size: 2rem;
    line-height: 1.25;
  }
}
.training .message p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.25;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #424242;
}
@media (min-width: 1024px) {
  .training .message p {
    font-size: 1.125rem;
    line-height: 1.25;
  }
}
.training .videos {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
@media (min-width: 1024px) {
  .training .videos {
    gap: 40px;
  }
}
.training .videos .categories-swiper {
  display: flex;
  position: relative;
  width: 100%;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}
.training .videos .categories-swiper .swiper-container {
  height: 60px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 50px;
  overflow: hidden;
}
.training .videos .categories-swiper .swiper-container .swiper-wrapper {
  display: flex;
}
.training .videos .categories-swiper .swiper-container .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.training .videos .categories-swiper .swiper-container .swiper-wrapper .swiper-slide h4 {
  font-weight: 300;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #424242;
  cursor: pointer;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  max-width: 200px;
}
@media (min-width: 1024px) {
  .training .videos .categories-swiper .swiper-container .swiper-wrapper .swiper-slide h4 {
    font-size: 18px;
    line-height: 25px;
    max-width: 250px;
  }
}
.training .videos .categories-swiper .swiper-container .swiper-wrapper .swiper-slide h4:hover {
  color: #bf0010;
}
.training .videos .categories-swiper .swiper-container .swiper-wrapper .swiper-slide.active h4 {
  font-weight: 500;
  color: #bf0010;
  text-decoration: underline;
}
.training .videos .categories-swiper .swiper-button-next,
.training .videos .categories-swiper .swiper-button-prev {
  background-color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 12px;
}
.training .videos .videos-list {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: flex-start;
  column-gap: 20px;
  row-gap: 100px;
}
.training .videos .videos-list.single-video .video-element:not(.recommended) {
  order: 2;
}
.training .videos .videos-list.single-video .video-element.recommended:first-of-type {
  order: 1;
}
.training .videos .videos-list.single-video .video-element.recommended:last-of-type {
  order: 3;
}
.training .videos .video-element {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-items: center;
  align-items: center;
  max-width: 400px;
  justify-self: center;
}
.training .videos .video-element.recommended {
  display: none;
}
@media (min-width: 1024px) {
  .training .videos .video-element.recommended {
    display: flex;
  }
}
.training .videos .video-element.recommended .img-container .preview {
  filter: grayscale(100%) !important;
}
.training .videos .video-element .img-container {
  aspect-ratio: 16/9;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease;
  overflow: hidden;
  position: relative;
}
.training .videos .video-element .img-container .preview {
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: grayscale(50%);
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.training .videos .video-element .img-container .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100px;
  height: 100px;
}
.training .videos .video-element .img-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(54, 52, 53, 0.5019607843);
  z-index: 1;
  pointer-events: none;
  transition: background-color 0.3s ease;
}
.training .videos .video-element .img-container:hover {
  transform: scale(1.05);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.4);
}
.training .videos .video-element .img-container:hover .preview {
  filter: grayscale(0%) !important;
  opacity: 1;
}
.training .videos .video-element h4 {
  font-size: 26px;
  font-weight: 500;
  line-height: 26px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #424242;
  cursor: pointer;
}
.training .videos .video-element:hover h4 {
  font-weight: 500;
  text-shadow: 0px 5px 10px rgba(0, 0, 0, 0.4);
}

.hidden {
  display: none !important;
}

.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.video-modal .video-modal-content {
  position: relative;
  width: 90%;
  border-radius: 20px;
  aspect-ratio: 16/9;
}
@media (min-width: 1024px) {
  .video-modal .video-modal-content {
    width: 60%;
  }
}
.video-modal .video-modal-content iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 20px;
}
.video-modal .video-modal-content .close-modal {
  position: absolute;
  top: -21px;
  right: -21px;
  width: 28px;
  height: 28px;
  cursor: pointer;
}

@media (max-width: 950px) {
  .proveedores form {
    flex-direction: column-reverse;
    width: 100%;
  }
  .proveedores form section,
  .proveedores form figure {
    width: 100%;
  }
  .our_services_services {
    display: flex;
    grid-template-columns: auto;
  }
  .our_services_services .service .content img {
    width: 100%;
  }
}
@media (max-width: 650px) {
  .intro_banner .general .info h1,
  .intro_banner .general .info h2 {
    font-size: 2rem;
  }
  .our_services_services-page .services .content {
    flex-direction: column;
  }
  .our_services_services-page .services .content img,
  .our_services_services-page .services .content .info {
    width: 100%;
  }
}
.court_notifications {
  padding: 0 1.25rem;
  max-width: 80rem;
  margin: 60px auto 0;
  width: 100%;
}
@media (min-width: 1024px) {
  .court_notifications {
    margin: 120px auto 0;
  }
}
.court_notifications .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  background-color: white;
  border-radius: 22px;
  padding: 24px;
  gap: 24px;
}
@media (min-width: 768px) {
  .court_notifications .content {
    padding: 32px;
  }
}
@media (min-width: 1024px) {
  .court_notifications .content {
    flex-direction: row;
    align-items: center;
    padding: 40px;
    gap: 40px;
  }
}
.court_notifications .content .left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.court_notifications .content .left h3 {
  font-family: Rubik;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 110%;
  letter-spacing: 0%;
  color: #bf0010;
}
@media (min-width: 768px) {
  .court_notifications .content .left h3 {
    font-size: 22px;
  }
}
@media (min-width: 1024px) {
  .court_notifications .content .left h3 {
    font-size: 24px;
    line-height: 100%;
  }
}
.court_notifications .content .left p {
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0%;
  color: #424242;
}
@media (min-width: 768px) {
  .court_notifications .content .left p {
    font-size: 15px;
    line-height: 24px;
  }
}
@media (min-width: 1024px) {
  .court_notifications .content .left p {
    font-size: 16px;
    line-height: 25px;
  }
}
.court_notifications .content .right {
  display: flex;
  gap: 16px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .court_notifications .content .right {
    flex-direction: row;
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .court_notifications .content .right {
    gap: 24px;
  }
}
.court_notifications .content .right a {
  display: flex;
  padding: 12px 20px;
  border: 1px solid #bf0010;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .court_notifications .content .right a {
    padding: 10px 20px;
    gap: 15px;
  }
}
@media (min-width: 1024px) {
  .court_notifications .content .right a {
    padding: 8px 24px;
  }
}
.court_notifications .content .right a:hover {
  background-color: #bf0010;
}
.court_notifications .content .right a:hover svg path {
  fill: white;
}
.court_notifications .content .right a:hover .info h3,
.court_notifications .content .right a:hover .info h4 {
  color: white;
}
.court_notifications .content .right a svg {
  min-width: 20px;
  width: 20px;
  height: auto;
}
@media (min-width: 1024px) {
  .court_notifications .content .right a svg {
    min-width: 24px;
    width: 24px;
  }
}
.court_notifications .content .right a svg path {
  transition: fill 0.3s ease;
}
.court_notifications .content .right a .info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.court_notifications .content .right a .info h3 {
  font-weight: 300;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 2%;
  color: #424242;
  transition: color 0.3s ease;
}
@media (min-width: 1024px) {
  .court_notifications .content .right a .info h3 {
    font-size: 14px;
    line-height: 15px;
  }
}
.court_notifications .content .right a .info h4 {
  font-weight: 300;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 2%;
  color: #bf0010;
  transition: color 0.3s ease;
  word-break: break-word;
}
@media (min-width: 1024px) {
  .court_notifications .content .right a .info h4 {
    font-size: 14px;
    line-height: 15px;
  }
}

.citizen_services {
  padding: 0 1.25rem;
  max-width: 80rem;
  margin: 60px auto 60px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
@media (min-width: 768px) {
  .citizen_services {
    margin: 80px auto 80px;
    gap: 32px;
  }
}
@media (min-width: 1024px) {
  .citizen_services {
    margin: 120px auto 100px;
    flex-direction: row;
    gap: 40px;
  }
}
.citizen_services .img_container {
  width: 100%;
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 16/10;
}
@media (min-width: 768px) {
  .citizen_services .img_container {
    aspect-ratio: 16/9;
  }
}
@media (min-width: 1024px) {
  .citizen_services .img_container {
    width: 50%;
    aspect-ratio: 563/465;
  }
}
.citizen_services .img_container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .citizen_services .img_container img {
    aspect-ratio: 563/465;
  }
}
.citizen_services .content {
  display: flex;
  gap: 16px;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 1024px) {
  .citizen_services .content {
    width: 50%;
    gap: 10px;
  }
}
.citizen_services .content h3 {
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #bf0010;
}
@media (min-width: 768px) {
  .citizen_services .content h3 {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 1024px) {
  .citizen_services .content h3 {
    font-size: 24px;
    line-height: 32px;
  }
}
.citizen_services .content p {
  font-weight: 300;
  font-style: Light;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0%;
}
.citizen_services .content p b {
  color: #bf0010;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .citizen_services .content p {
    font-size: 15px;
    line-height: 20px;
  }
}
@media (min-width: 1024px) {
  .citizen_services .content p {
    font-size: 16px;
    line-height: 22px;
  }
}
.citizen_services .content small {
  font-weight: 300;
  font-style: Light;
  font-size: 12px;
  line-height: 110%;
  letter-spacing: 0%;
  padding: 12px;
}
@media (min-width: 768px) {
  .citizen_services .content small {
    font-size: 13px;
    padding: 14px;
  }
}
@media (min-width: 1024px) {
  .citizen_services .content small {
    font-size: 14px;
    line-height: 100%;
    padding: 16px 14px;
  }
}
.citizen_services .content a {
  width: 100%;
  background-color: #bf0010;
  color: white;
  padding: 12px 24px;
  border-style: none;
  border-radius: 10px;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.3s ease;
  font-weight: 500;
}
@media (min-width: 768px) {
  .citizen_services .content a {
    padding: 14px 28px;
  }
}
.citizen_services .content a:hover {
  background-color: #9a000d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(191, 0, 16, 0.3);
}

.intro_banner_compliance {
  background-position: center;
  background-size: cover;
  padding: 2.5rem 1.25rem;
  display: flex;
  place-content: center;
  position: relative;
}
@media (min-width: 1024px) {
  .intro_banner_compliance {
    padding: 8rem 1.25rem;
  }
}
.intro_banner_compliance .degrade {
  background: rgb(31, 31, 31);
  background: linear-gradient(90deg, rgb(31, 31, 31) 0%, rgba(31, 31, 31, 0.5802696078) 53%, rgba(31, 31, 31, 0) 100%);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
@media (min-width: 1024px) {
  .intro_banner_compliance .degrade {
    background: rgb(31, 31, 31);
    background: linear-gradient(90deg, rgb(31, 31, 31) 24%, rgba(31, 31, 31, 0) 100%);
  }
}
.intro_banner_compliance .general {
  position: relative;
  z-index: 20;
  max-width: 80rem;
}
@media (min-width: 1024px) {
  .intro_banner_compliance .general .info {
    width: 67%;
  }
}
.intro_banner_compliance .general .info h2 {
  color: #bf0010;
}
@media (min-width: 1024px) {
  .intro_banner_compliance .general .info h2 {
    font-weight: 400;
    font-size: 32px;
    line-height: 102%;
    letter-spacing: 0%;
    text-transform: uppercase;
  }
}
.intro_banner_compliance .general .info h1 {
  font-size: 24px;
  font-weight: 700;
  line-height: 22.92px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #ffffff;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  .intro_banner_compliance .general .info h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 45.84px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
  }
}
.intro_banner_compliance .general .info p {
  font-size: 14px;
  font-weight: 300;
  line-height: 15px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: white;
  margin-top: 20px;
}
@media (min-width: 1024px) {
  .intro_banner_compliance .general .info p {
    text-align: left;
    font-weight: 300;
    font-style: Light;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 95%;
    letter-spacing: 0%;
  }
}

.anti_corruption {
  padding: 0 1.25rem;
  max-width: 80rem;
  margin: 3.25rem auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}
@media (min-width: 768px) {
  .anti_corruption {
    margin: 3.75rem auto;
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .anti_corruption {
    margin: 5rem auto;
  }
}
.anti_corruption .up {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .anti_corruption .up {
    gap: 0.625rem;
  }
}
.anti_corruption .up h2 {
  font-weight: 500;
  font-style: Medium;
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: 0%;
  color: #bf0010;
  width: 100%;
  text-align: left;
}
@media (min-width: 768px) {
  .anti_corruption .up h2 {
    font-size: 1.75rem;
    line-height: 1.25;
  }
}
@media (min-width: 1024px) {
  .anti_corruption .up h2 {
    font-size: 2rem;
    line-height: 1.25;
  }
}
.anti_corruption .up h3 {
  font-family: Poppins;
  font-weight: 300;
  font-style: Light;
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: 0%;
  color: #424242;
  text-align: left;
  width: 100%;
}
@media (min-width: 768px) {
  .anti_corruption .up h3 {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .anti_corruption .up h3 {
    font-size: 1.25rem;
    line-height: 1.25;
  }
}
.anti_corruption p {
  font-weight: 300;
  font-style: Light;
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: 0%;
  color: #424242;
  width: 100%;
}
@media (min-width: 768px) {
  .anti_corruption p {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .anti_corruption p {
    font-size: 1rem;
  }
}
.anti_corruption .buttons {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  align-items: stretch;
}
@media (min-width: 768px) {
  .anti_corruption .buttons {
    flex-direction: row;
    gap: 24px;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .anti_corruption .buttons {
    gap: 85px;
  }
}
.anti_corruption .buttons a {
  border: 1px solid #bf0010;
  border-radius: 10px;
  padding: 12px 10px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: Poppins;
  font-weight: 300;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 2%;
  text-transform: uppercase;
  min-height: 70px;
  background: white;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .anti_corruption .buttons a {
    flex-direction: row;
    gap: 12px;
    padding: 10px;
    font-size: 13px;
    line-height: 14px;
    min-height: 50px;
  }
}
@media (min-width: 1024px) {
  .anti_corruption .buttons a {
    gap: 15px;
    padding: 8px;
    font-size: 14px;
    line-height: 15px;
  }
}
.anti_corruption .buttons a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(191, 0, 16, 0.2);
}
.anti_corruption .buttons a svg {
  width: 24px;
  height: 24px;
  min-width: 24px;
}
@media (min-width: 1024px) {
  .anti_corruption .buttons a svg {
    width: 28px;
    height: 28px;
    min-width: 28px;
  }
}
.anti_corruption .buttons a .info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #bf0010;
  text-align: center;
}
@media (min-width: 768px) {
  .anti_corruption .buttons a .info {
    gap: 0;
    text-align: left;
  }
}
.anti_corruption .buttons a .info b {
  color: #424242;
  font-weight: 500;
}
.anti_corruption .buttons a.bg-red {
  background-color: #bf0010;
}
.anti_corruption .buttons a.bg-red .info {
  color: white;
}
.anti_corruption .buttons a.bg-red b {
  font-weight: 500;
  color: white;
}
.anti_corruption .buttons a.bg-red:hover {
  background-color: #9a000d;
}

.corruption_polices {
  padding: 0 1.25rem;
  max-width: 80rem;
  margin: 3.25rem auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}
@media (min-width: 768px) {
  .corruption_polices {
    margin: 3.75rem auto;
  }
}
@media (min-width: 1024px) {
  .corruption_polices {
    margin: 5rem auto;
  }
}
.corruption_polices h3 {
  font-weight: 500;
  font-style: Medium;
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: 0%;
  color: #bf0010;
  margin-bottom: 1.25rem;
  text-align: left;
  width: 100%;
}
@media (min-width: 768px) {
  .corruption_polices h3 {
    font-size: 1.75rem;
    line-height: 1.25;
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .corruption_polices h3 {
    font-size: 2rem;
    line-height: 1.25;
  }
}
.corruption_polices .container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}
@media (min-width: 1024px) {
  .corruption_polices .container {
    flex-direction: row;
    gap: 2.5rem;
  }
}
.corruption_polices .container .image_container {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 16/9;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .corruption_polices .container .image_container {
    border-radius: 30px;
    aspect-ratio: 549/269;
  }
}
.corruption_polices .container .image_container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.corruption_polices .item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 1024px) {
  .corruption_polices .item {
    gap: 1.25rem;
  }
}
.corruption_polices .item .title {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 0.5rem;
  font-family: Poppins;
  font-weight: 500;
  font-style: Medium;
  font-size: 1.125rem;
  line-height: 1.25;
  letter-spacing: 0%;
  color: #424242;
}
@media (min-width: 768px) {
  .corruption_polices .item .title {
    font-size: 1.25rem;
    line-height: 1.25;
    gap: 0.375rem;
  }
}
@media (min-width: 1024px) {
  .corruption_polices .item .title {
    font-size: 1.5rem;
    line-height: 1.25;
  }
}
.corruption_polices .item .title svg {
  min-width: 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
}
@media (min-width: 1024px) {
  .corruption_polices .item .title svg {
    min-width: 1.5rem;
    width: 1.5rem;
    height: 1.5rem;
  }
}
.corruption_polices .item p {
  font-weight: 300;
  font-style: Light;
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: 0%;
}
@media (min-width: 768px) {
  .corruption_polices .item p {
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media (min-width: 1024px) {
  .corruption_polices .item p {
    font-size: 1.125rem;
    line-height: 1.25;
  }
}

.corporative_governance {
  background: linear-gradient(180deg, rgba(242, 243, 245, 0) 62.49%, #1f1f1f 62.5%);
}
.corporative_governance .content {
  padding: 0 1.25rem;
  max-width: 80rem;
  margin: 3.25rem auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .corporative_governance .content {
    margin: 3.75rem auto;
    gap: 3.25rem;
  }
}
@media (min-width: 1024px) {
  .corporative_governance .content {
    margin: 5rem auto;
    gap: 4rem;
  }
}
.corporative_governance .content .up {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}
@media (min-width: 768px) {
  .corporative_governance .content .up {
    width: 90%;
    gap: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .corporative_governance .content .up {
    width: 80%;
    gap: 0.625rem;
  }
}
.corporative_governance .content .up h3 {
  font-weight: 500;
  font-style: Medium;
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: 0%;
  text-align: center;
  color: #bf0010;
}
@media (min-width: 768px) {
  .corporative_governance .content .up h3 {
    font-size: 1.75rem;
    line-height: 1.25;
  }
}
@media (min-width: 1024px) {
  .corporative_governance .content .up h3 {
    font-size: 2rem;
    line-height: 1.25;
  }
}
.corporative_governance .content .up p {
  font-weight: 300;
  font-style: Light;
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: 0%;
  text-align: center;
  color: #424242;
}
@media (min-width: 768px) {
  .corporative_governance .content .up p {
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media (min-width: 1024px) {
  .corporative_governance .content .up p {
    font-size: 1.125rem;
    line-height: 1.25;
  }
}
.corporative_governance .content .items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .corporative_governance .content .items {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
}
@media (min-width: 1024px) {
  .corporative_governance .content .items {
    flex-wrap: nowrap;
    gap: 2rem;
  }
}
.corporative_governance .content .items .item {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 400/578;
  perspective: 1000px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .corporative_governance .content .items .item {
    width: auto;
    max-width: 320px;
    aspect-ratio: 400/578;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  .corporative_governance .content .items .item {
    width: auto;
    flex: 1;
    max-width: 400px;
    aspect-ratio: 400/578;
    margin: 0 auto;
  }
}
.corporative_governance .content .items .item .card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
.corporative_governance .content .items .item.flipped .card-inner {
  transform: rotateY(180deg);
}
.corporative_governance .content .items .item .card-front,
.corporative_governance .content .items .item .card-back {
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.corporative_governance .content .items .item .card-front {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
}
.corporative_governance .content .items .item .card-back {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotateY(180deg);
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  gap: 0;
  border-radius: 0;
  padding: 0;
  overflow: hidden;
}
.corporative_governance .content .items .item .img-container {
  aspect-ratio: 400/428;
  overflow: hidden;
  width: 100%;
  height: auto;
  margin: 0 auto;
  flex-shrink: 0;
}
.corporative_governance .content .items .item .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.corporative_governance .content .items .item .info {
  background-color: white;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}
@media (min-width: 768px) {
  .corporative_governance .content .items .item .info {
    padding: 1rem;
    gap: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .corporative_governance .content .items .item .info {
    padding: clamp(0.75rem, 2vw, 1.25rem);
    gap: clamp(0.5rem, 1.5vw, 1rem);
    max-height: auto;
    overflow-y: visible;
  }
}
.corporative_governance .content .items .item .info .name {
  font-family: Poppins;
  font-weight: 700;
  font-style: Bold;
  font-size: 1rem;
  leading-trim: NONE;
  line-height: 1.1;
  letter-spacing: 0%;
  text-align: center;
}
@media (min-width: 768px) {
  .corporative_governance .content .items .item .info .name {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .corporative_governance .content .items .item .info .name {
    font-size: 1.125rem;
    line-height: 1.1;
  }
}
.corporative_governance .content .items .item .info .role {
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 0.875rem;
  leading-trim: NONE;
  line-height: 1;
  letter-spacing: 0%;
  text-align: center;
}
@media (min-width: 1024px) {
  .corporative_governance .content .items .item .info .role {
    font-size: 1rem;
    line-height: 1;
  }
}
.corporative_governance .content .items .item .info a {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  font-family: Poppins;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 0.875rem;
  leading-trim: NONE;
  line-height: 1;
  letter-spacing: 0%;
  color: #bf0010;
  text-decoration: none;
  transition: all 0.3s ease;
  align-items: center;
}
@media (min-width: 1024px) {
  .corporative_governance .content .items .item .info a {
    gap: 0.75rem;
    font-size: 1rem;
  }
}
.corporative_governance .content .items .item .info a:hover {
  gap: 1rem;
}
.corporative_governance .content .items .item .info a svg {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .corporative_governance .content .items .item .info a svg {
    width: 14px;
    height: 14px;
  }
}
.corporative_governance .content .items .item .back-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  height: 100%;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .corporative_governance .content .items .item .back-content {
    padding: 1rem;
    gap: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .corporative_governance .content .items .item .back-content {
    padding: 1.25rem;
    gap: 1rem;
    overflow-y: auto;
  }
}
.corporative_governance .content .items .item .back-content .name {
  font-family: Poppins;
  font-weight: 700;
  font-style: Bold;
  font-size: 1rem;
  line-height: 1.1;
  letter-spacing: 0%;
  text-align: center;
  color: #424242;
}
@media (min-width: 768px) {
  .corporative_governance .content .items .item .back-content .name {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .corporative_governance .content .items .item .back-content .name {
    font-size: 1.125rem;
    line-height: 1.1;
  }
}
.corporative_governance .content .items .item .back-content .biography {
  flex: 1;
  overflow-y: auto;
  max-height: 300px;
  padding-right: 0.5rem;
}
.corporative_governance .content .items .item .back-content .biography::-webkit-scrollbar {
  width: 4px;
}
.corporative_governance .content .items .item .back-content .biography::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.corporative_governance .content .items .item .back-content .biography::-webkit-scrollbar-thumb {
  background: #bf0010;
  border-radius: 10px;
}
.corporative_governance .content .items .item .back-content .biography p {
  font-family: Poppins;
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.25;
  letter-spacing: 0%;
  color: #424242;
  margin: 0;
}
@media (min-width: 768px) {
  .corporative_governance .content .items .item .back-content .biography p {
    font-size: 0.875rem;
  }
}
@media (min-width: 1024px) {
  .corporative_governance .content .items .item .back-content .biography p {
    font-size: 1rem;
    line-height: 1.25;
  }
}
.corporative_governance .content .items .item .back-content a.flip-button-back {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  font-family: Poppins;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0%;
  color: #bf0010;
  text-decoration: none;
  transition: all 0.3s ease;
  align-items: center;
}
@media (min-width: 1024px) {
  .corporative_governance .content .items .item .back-content a.flip-button-back {
    gap: 0.75rem;
    font-size: 1rem;
  }
}
.corporative_governance .content .items .item .back-content a.flip-button-back:hover {
  gap: 1rem;
}
.corporative_governance .content .items .item .back-content a.flip-button-back svg {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .corporative_governance .content .items .item .back-content a.flip-button-back svg {
    width: 14px;
    height: 14px;
  }
}

.articles_association {
  padding: 2.5rem 1.25rem;
  max-width: 80rem;
  margin: 0 auto 3.25rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  position: relative;
}
@media (min-width: 768px) {
  .articles_association {
    padding: 3.75rem 1.25rem;
    margin: 0 auto 3.75rem;
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .articles_association {
    padding: 5rem 1.25rem;
    margin: 0 auto 5rem;
    gap: 2.5rem;
  }
}
.articles_association .badge {
  position: absolute;
  border-radius: 0 0 0.5rem 0.5rem;
  padding: 0.625rem 1rem;
  color: white;
  background-color: #bf0010;
  text-transform: uppercase;
  left: 0;
  top: 0;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.25;
  letter-spacing: 0%;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}
.articles_association .badge:hover {
  background-color: rgb(140, 0, 11.7277486911);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(191, 0, 16, 0.3);
}
@media (min-width: 768px) {
  .articles_association .badge {
    padding: 0.75rem 1.25rem;
    border-radius: 0 0 0.625rem 0.625rem;
    font-size: 0.875rem;
    left: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .articles_association .badge {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    left: 1.25rem;
  }
}
.articles_association h3 {
  font-weight: 500;
  font-style: Medium;
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: 0%;
  color: #bf0010;
  text-align: left;
  margin-top: 1.25rem;
  width: 100%;
}
@media (min-width: 768px) {
  .articles_association h3 {
    font-size: 1.75rem;
    line-height: 1.25;
    margin-top: 0.625rem;
  }
}
@media (min-width: 1024px) {
  .articles_association h3 {
    font-size: 2rem;
    line-height: 1.25;
    margin-top: 0;
  }
}
.articles_association p {
  font-weight: 300;
  font-style: Light;
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: 0%;
  color: #424242;
  text-align: left;
}
@media (min-width: 768px) {
  .articles_association p {
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media (min-width: 1024px) {
  .articles_association p {
    font-size: 1.125rem;
    line-height: 1.25;
  }
}
.articles_association a {
  background-color: #bf0010;
  color: white;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  width: 100%;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .articles_association a {
    width: fit-content;
    padding: 13px 24px;
  }
}
@media (min-width: 1024px) {
  .articles_association a {
    padding: 13px 26px;
    font-size: 16px;
  }
}
.articles_association a:hover {
  background-color: #9a000d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(191, 0, 16, 0.3);
}
.articles_association .container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}
@media (min-width: 1024px) {
  .articles_association .container {
    gap: 1.5rem;
  }
}
.articles_association .container .title {
  font-weight: 500;
  font-style: Medium;
  font-size: 1.125rem;
  line-height: 1.25;
  letter-spacing: 0%;
  color: #424242;
}
@media (min-width: 768px) {
  .articles_association .container .title {
    font-size: 1.25rem;
    line-height: 1.25;
  }
}
@media (min-width: 1024px) {
  .articles_association .container .title {
    font-size: 1.5rem;
    line-height: 1.25;
  }
}
.articles_association .container ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-left: 0;
}
@media (min-width: 1024px) {
  .articles_association .container ul {
    gap: 0.625rem;
  }
}
.articles_association .container ul li {
  font-weight: 300;
  font-style: Light;
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: 0%;
  color: #424242;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-align: justify;
}
@media (min-width: 768px) {
  .articles_association .container ul li {
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media (min-width: 1024px) {
  .articles_association .container ul li {
    font-size: 1.125rem;
    line-height: 1.25;
    gap: 0.625rem;
  }
}
.articles_association .container ul li::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  background-color: #424242;
  border-radius: 50%;
  display: inline-block;
  margin-top: 0.4rem;
  min-width: 0.375rem;
}
@media (min-width: 1024px) {
  .articles_association .container ul li::before {
    margin-top: 0.625rem;
  }
}
.articles_association .container .buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
@media (min-width: 768px) {
  .articles_association .container .buttons {
    flex-direction: row;
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .articles_association .container .buttons {
    gap: 2.5rem;
  }
}
.articles_association .container .buttons a {
  width: 100%;
}
@media (min-width: 768px) {
  .articles_association .container .buttons a {
    width: auto;
    flex: 1;
  }
}

/* ============================
   Cookie Consent Banner & Modal
   ============================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #424242;
  color: white;
  z-index: 9999;
  padding: 1.25rem 1rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.active {
  transform: translateY(0);
}
@media (min-width: 768px) {
  .cookie-banner {
    padding: 1.5rem 2rem;
  }
}
@media (min-width: 1024px) {
  .cookie-banner {
    padding: 2rem 3rem;
  }
}
.cookie-banner .cookie-banner__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .cookie-banner .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
}
.cookie-banner .cookie-banner__text {
  flex: 1;
}
.cookie-banner .cookie-banner__text p {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #e0e0e0;
}
@media (min-width: 768px) {
  .cookie-banner .cookie-banner__text p {
    font-size: 0.875rem;
  }
}
.cookie-banner .cookie-banner__text a {
  color: white;
  text-decoration: underline;
  font-weight: 500;
  transition: opacity 0.3s ease;
}
.cookie-banner .cookie-banner__text a:hover {
  opacity: 0.7;
}
.cookie-banner .cookie-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .cookie-banner .cookie-banner__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (min-width: 1024px) {
  .cookie-banner .cookie-banner__actions {
    flex-wrap: nowrap;
  }
}
.cookie-banner .cookie-banner__actions button {
  padding: 0.625rem 1.5rem;
  border-radius: 0.375rem;
  border: none;
  font-family: "Poppins", sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-align: center;
}
@media (min-width: 768px) {
  .cookie-banner .cookie-banner__actions button {
    font-size: 0.875rem;
    padding: 0.625rem 2rem;
  }
}
.cookie-banner .cookie-banner__actions button:hover {
  opacity: 0.7;
}
.cookie-banner .cookie-banner__actions .cookie-btn--accept {
  background-color: #bf0010;
  color: white;
}
.cookie-banner .cookie-banner__actions .cookie-btn--reject {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}
.cookie-banner .cookie-banner__actions .cookie-btn--preferences {
  background-color: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Cookie Table */
.cookie-banner__table-wrap {
  margin-top: 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.cookie-banner__table-wrap.open {
  max-height: 600px;
  overflow-y: auto;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.75rem;
  color: #e0e0e0;
}
@media (min-width: 768px) {
  .cookie-table {
    font-size: 0.8125rem;
  }
}
.cookie-table thead th {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 0.75rem;
  text-align: left;
  font-weight: 600;
  color: white;
  white-space: nowrap;
}
.cookie-table tbody td {
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  vertical-align: top;
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1rem;
}
.cookie-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal {
  background-color: white;
  border-radius: 0.75rem;
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  color: #424242;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.cookie-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #e5e5e5;
}
.cookie-modal__header h2 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}
@media (min-width: 768px) {
  .cookie-modal__header h2 {
    font-size: 1.25rem;
  }
}
.cookie-modal__header .cookie-modal__close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #424242;
  line-height: 1;
  padding: 0.25rem;
  transition: opacity 0.3s ease;
}
.cookie-modal__header .cookie-modal__close:hover {
  opacity: 0.5;
}
.cookie-modal__body {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.cookie-modal__footer {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 1.5rem 1.5rem;
}
@media (min-width: 640px) {
  .cookie-modal__footer {
    flex-direction: row;
    justify-content: flex-end;
  }
}
.cookie-modal__footer button {
  padding: 0.625rem 2rem;
  border-radius: 0.375rem;
  border: none;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cookie-modal__footer button:hover {
  opacity: 0.7;
}
.cookie-modal__footer .cookie-btn--accept {
  background-color: #bf0010;
  color: white;
}
.cookie-modal__footer .cookie-btn--reject {
  background-color: transparent;
  color: #424242;
  border: 1px solid #424242;
}
.cookie-modal__footer .cookie-btn--save {
  background-color: #bf0010;
  color: white;
}

/* Cookie Category Item */
.cookie-category {
  border: 1px solid #e5e5e5;
  border-radius: 0.5rem;
  padding: 1rem;
}
.cookie-category__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cookie-category__title {
  font-size: 0.9375rem;
  font-weight: 600;
}
.cookie-category__desc {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #757575;
}
@media (min-width: 768px) {
  .cookie-category__desc {
    font-size: 0.875rem;
  }
}

/* Toggle Switch */
.cookie-toggle {
  position: relative;
  width: 44px;
  min-width: 44px;
  height: 24px;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle input:checked + .cookie-toggle__slider {
  background-color: #bf0010;
}
.cookie-toggle input:checked + .cookie-toggle__slider::before {
  transform: translateX(20px);
}
.cookie-toggle input:disabled + .cookie-toggle__slider {
  opacity: 0.6;
  cursor: not-allowed;
}
.cookie-toggle__slider {
  position: absolute;
  inset: 0;
  background-color: #ccc;
  border-radius: 24px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.cookie-toggle__slider::before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

/* Responsive table: on mobile, stack */
@media (max-width: 639px) {
  .cookie-table thead {
    display: none;
  }
  .cookie-table tbody tr {
    display: flex;
    flex-direction: column;
    padding: 0.625rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .cookie-table tbody td {
    border-bottom: none;
    padding: 0.25rem 0.75rem;
  }
  .cookie-table tbody td::before {
    content: attr(data-label);
    font-weight: 600;
    color: white;
    display: block;
    margin-bottom: 0.125rem;
  }
}
/* ============================
   Cookies & Privacy Policy Pages
   ============================ */
.intro_banner_cookies,
.intro_banner_privacy {
  background-color: #bf0010;
  background-position: center;
  background-size: cover;
  padding: 2.5rem 1.25rem;
  display: flex;
  place-content: center;
  position: relative;
  min-height: 300px;
}
@media (min-width: 1024px) {
  .intro_banner_cookies,
  .intro_banner_privacy {
    padding: 6rem 1.25rem;
    min-height: 400px;
  }
}
.intro_banner_cookies .degrade,
.intro_banner_privacy .degrade {
  background: rgb(31, 31, 31);
  background: linear-gradient(90deg, rgba(31, 31, 31, 0.7) 0%, rgba(31, 31, 31, 0.4) 53%, rgba(31, 31, 31, 0) 100%);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
@media (min-width: 1024px) {
  .intro_banner_cookies .degrade,
  .intro_banner_privacy .degrade {
    background: rgb(31, 31, 31);
    background: linear-gradient(90deg, rgba(31, 31, 31, 0.7) 24%, rgba(31, 31, 31, 0) 100%);
  }
}
.intro_banner_cookies .general,
.intro_banner_privacy .general {
  position: relative;
  z-index: 20;
  max-width: 80rem;
  width: 100%;
  display: flex;
  align-items: center;
}
.intro_banner_cookies .general .info,
.intro_banner_privacy .general .info {
  width: 100%;
}
@media (min-width: 1024px) {
  .intro_banner_cookies .general .info,
  .intro_banner_privacy .general .info {
    width: 67%;
  }
}
.intro_banner_cookies .general .info h1,
.intro_banner_privacy .general .info h1 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  color: #ffffff;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  .intro_banner_cookies .general .info h1,
  .intro_banner_privacy .general .info h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
  }
}

.single-page-content {
  background-color: white;
  padding: 3rem 1.25rem;
  display: flex;
  justify-content: center;
}
@media (min-width: 1024px) {
  .single-page-content {
    padding: 4rem 1.25rem;
  }
}
.single-page-content .page-content {
  max-width: 80rem;
  width: 100%;
  color: #424242;
  line-height: 1.6;
}
.single-page-content .page-content h1,
.single-page-content .page-content h2,
.single-page-content .page-content h3,
.single-page-content .page-content h4,
.single-page-content .page-content h5,
.single-page-content .page-content h6 {
  color: #424242;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.3;
}
.single-page-content .page-content h1 {
  font-size: 2rem;
}
@media (min-width: 1024px) {
  .single-page-content .page-content h1 {
    font-size: 2.5rem;
  }
}
.single-page-content .page-content h2 {
  font-size: 1.75rem;
  color: #bf0010;
}
@media (min-width: 1024px) {
  .single-page-content .page-content h2 {
    font-size: 2rem;
  }
}
.single-page-content .page-content h3 {
  font-size: 1.5rem;
}
@media (min-width: 1024px) {
  .single-page-content .page-content h3 {
    font-size: 1.75rem;
  }
}
.single-page-content .page-content h4 {
  font-size: 1.25rem;
}
@media (min-width: 1024px) {
  .single-page-content .page-content h4 {
    font-size: 1.5rem;
  }
}
.single-page-content .page-content h5 {
  font-size: 1.1rem;
}
@media (min-width: 1024px) {
  .single-page-content .page-content h5 {
    font-size: 1.25rem;
  }
}
.single-page-content .page-content h6 {
  font-size: 1rem;
}
@media (min-width: 1024px) {
  .single-page-content .page-content h6 {
    font-size: 1.1rem;
  }
}
.single-page-content .page-content p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #424242;
}
@media (min-width: 1024px) {
  .single-page-content .page-content p {
    font-size: 1.05rem;
  }
}
.single-page-content .page-content a {
  color: #bf0010;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.single-page-content .page-content a:hover {
  opacity: 0.7;
}
.single-page-content .page-content ul {
  margin: 1.5rem 0;
  padding-left: 2rem;
  list-style-type: disc;
}
.single-page-content .page-content ul li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
  font-size: 1rem;
}
@media (min-width: 1024px) {
  .single-page-content .page-content ul li {
    font-size: 1.05rem;
  }
}
.single-page-content .page-content ul li ul {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  list-style-type: circle;
}
.single-page-content .page-content ul li ul ul {
  list-style-type: square;
}
.single-page-content .page-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
  list-style-type: decimal;
}
.single-page-content .page-content ol li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
  font-size: 1rem;
}
@media (min-width: 1024px) {
  .single-page-content .page-content ol li {
    font-size: 1.05rem;
  }
}
.single-page-content .page-content ol li ol {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  list-style-type: lower-alpha;
}
.single-page-content .page-content ol li ol ol {
  list-style-type: lower-roman;
}
.single-page-content .page-content table {
  width: 100%;
  margin: 2rem 0;
  border-collapse: collapse;
  overflow-x: auto;
  display: block;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media (min-width: 1024px) {
  .single-page-content .page-content table {
    display: table;
  }
}
.single-page-content .page-content table thead {
  background-color: #bf0010;
  color: white;
}
.single-page-content .page-content table thead th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  border: 1px solid rgb(165.5, 0, 13.8638743455);
  font-size: 0.95rem;
}
@media (min-width: 1024px) {
  .single-page-content .page-content table thead th {
    font-size: 1rem;
  }
}
.single-page-content .page-content table tbody tr {
  background-color: white;
  transition: background-color 0.2s ease;
}
.single-page-content .page-content table tbody tr:nth-child(even) {
  background-color: rgb(241.75, 241.75, 241.75);
}
.single-page-content .page-content table tbody tr:hover {
  background-color: #e5e5e5;
}
.single-page-content .page-content table tbody tr td {
  padding: 0.875rem 1rem;
  border: 1px solid rgb(203.5, 203.5, 203.5);
  font-size: 0.9rem;
  line-height: 1.6;
}
@media (min-width: 1024px) {
  .single-page-content .page-content table tbody tr td {
    font-size: 0.95rem;
  }
}
.single-page-content .page-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem;
  border-left: 4px solid #bf0010;
  background-color: rgb(241.75, 241.75, 241.75);
  font-style: italic;
  color: rgb(40.5, 40.5, 40.5);
}
.single-page-content .page-content blockquote p {
  margin-bottom: 0;
}
.single-page-content .page-content code {
  background-color: #e5e5e5;
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
  color: #bf0010;
}
.single-page-content .page-content pre {
  background-color: #e5e5e5;
  padding: 1rem;
  border-radius: 5px;
  overflow-x: auto;
  margin: 1.5rem 0;
}
.single-page-content .page-content pre code {
  background-color: transparent;
  padding: 0;
  color: #424242;
}
.single-page-content .page-content hr {
  border: none;
  border-top: 2px solid #e5e5e5;
  margin: 2rem 0;
}
.single-page-content .page-content img {
  max-width: 100%;
  height: auto;
  margin: 1.5rem 0;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.single-page-content .page-content .wp-block-button {
  margin: 1.5rem 0;
}
.single-page-content .page-content .wp-block-button .wp-block-button__link {
  background-color: #bf0010;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.3s ease;
}
.single-page-content .page-content .wp-block-button .wp-block-button__link:hover {
  opacity: 0.8;
}
.single-page-content .page-content strong,
.single-page-content .page-content b {
  font-weight: 700;
  color: rgb(53.25, 53.25, 53.25);
}
.single-page-content .page-content em,
.single-page-content .page-content i {
  font-style: italic;
}
.single-page-content .page-content > p:first-of-type {
  font-size: 1.1rem;
  color: rgb(53.25, 53.25, 53.25);
}
@media (min-width: 1024px) {
  .single-page-content .page-content > p:first-of-type {
    font-size: 1.15rem;
  }
}

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