.hero-background {
  background-image: url("../../assets/patterns/luminary_pattern.svg");
  background-repeat: no-repeat;
  object-fit: cover;
  height: 100vh;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.hero-background.contact, .hero-background.products {
  background-image: url("../../assets/patterns/luminary_pattern_black.svg");
  background-position: right;
}
.hero-background.services {
  height: 50vh;
}
.hero-background.products {
  height: 0;
}

.hero-background {
  min-height: calc(100dvh - 102px);
  height: 100%;
}
.hero-background .hero {
  min-height: calc(100dvh - 102px);
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-background .hero .hero-subcontent {
  grid-column: 1;
  display: none;
}
.hero-background .hero .hero-subcontent.active {
  animation: left-to-right 0.5s forwards ease-in;
  display: block;
}
.hero-background .hero .hero-subcontent .hero-title {
  font-weight: 700;
  font-size: 4rem;
  font-family: "Inter", sans-serif;
  color: #ffffff;
  margin-bottom: 1.5rem;
  position: relative;
}
.hero-background .hero .hero-subcontent .hero-msg {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  display: block;
  font-family: "Montserrat", sans-serif;
}
.hero-background .hero .hero-subcontent .hero-anchor {
  border: 1px solid #ffffff;
  background-color: #ffffff;
  text-transform: uppercase;
  padding: 1rem 1.25rem;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  width: fit-content;
  color: #000;
  font-family: "Montserrat", sans-serif;
  transition: 0.3s all ease;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-background .hero .hero-subcontent .hero-anchor:hover {
  background-color: transparent;
  color: #ffffff;
}
.hero-background .hero .hero-subcontent .hero-anchor:hover img {
  filter: invert(100%);
}
.hero-background .hero .img-hero {
  padding: 4rem;
}
.hero-background .hero .img-hero img {
  display: block;
  max-width: 100%;
  width: 100%;
  max-height: 680px;
  object-fit: contain;
  object-position: center;
}

@media (min-width: 1600px) {
  .hero-background {
    background-image: url("../../assets/patterns/luminary_pattern_xl.svg");
  }
  .hero-background.contact, .hero-background.products {
    background-image: url("../../assets/patterns/luminary_pattern_black_xl.svg");
  }
}
@media (max-width: 940px) {
  .hero-background .hero {
    grid-template-columns: 1fr;
  }
  .hero-background .hero .hero-content {
    display: flex;
    justify-content: space-between;
  }
  .hero-background .hero .hero-content .hero-subcontent .hero-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 550px) {
  .hero-background {
    background-image: url("../../assets/patterns/luminary_pattern_sm.svg");
    min-height: calc(100dvh + 66px);
    height: 100%;
  }
  .hero-background.contact, .hero-background.products {
    background-image: url("../../assets/patterns/luminary_pattern_black_sm.svg");
  }
  .hero-background .hero {
    display: flex;
  }
  .hero-background .hero .hero-content {
    display: flex;
    justify-content: space-between;
  }
  .hero-background .hero .hero-content .hero-subcontent .hero-title {
    font-size: 2.4rem !important;
  }
  .hero-background .hero .hero-content .hero-subcontent .hero-msg {
    font-size: 1rem;
  }
  .hero-background .hero .hero-content .hero-subcontent .hero-anchor {
    font-size: 0.725rem;
    align-self: center;
  }
  .hero-background.products .title-container .title-content .product-hero a span {
    font-size: 0.75rem;
  }
  .hero-background.products .title-container .title-content .product-hero .hero-title {
    font-size: 2rem;
  }
}
@keyframes show-left-to-right {
  from {
    opacity: 0;
    transform: translate3d(-30px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0px, 0px, 0px);
  }
}
@keyframes left-to-right {
  from {
    opacity: 0;
    transform: translate3d(-150px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0px, 0, 0);
  }
}
#main-services {
  object-fit: cover;
  object-position: center;
  background-repeat: no-repeat;
  display: block;
  max-width: 100%;
}
#main-services .main-services-content {
  padding: 8rem 2rem;
  text-align: start;
}
#main-services .main-services-content .title-services {
  font-family: "Inter", sans-serif;
  margin-bottom: 4rem;
  position: relative;
  display: inline-block;
}
#main-services .main-services-content .title-services::after {
  content: "";
  background: linear-gradient(130deg, #005770 20%, #0092bc 100%);
  width: 100%;
  height: 4px;
  position: absolute;
  left: 20px;
}
#main-services .main-services-content .title-services h2 {
  font-size: 2rem;
  color: #005770;
  text-transform: uppercase;
}
#main-services .main-services-content .title-services img {
  width: 40px;
  position: absolute;
  left: -40px;
  top: -20px;
}
#main-services .main-services-content .services-cards {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
#main-services .main-services-content .services-cards .service-card {
  background-color: #ffffff;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  font-family: "Montserrat", sans-serif;
  text-align: left;
  transition: 0.3s all ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#main-services .main-services-content .services-cards .service-card:hover {
  transform: scale(1.02);
}
#main-services .main-services-content .services-cards .service-card:hover .card-content span::after {
  width: 100%;
}
#main-services .main-services-content .services-cards .service-card img {
  max-width: 100%;
  height: 196px;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
#main-services .main-services-content .services-cards .service-card .card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  flex: 1;
}
#main-services .main-services-content .services-cards .service-card .card-content span {
  font-size: 1.25rem;
  font-family: "Inter", sans-serif;
  margin-bottom: 1.25rem;
  position: relative;
  display: block;
  width: 100%;
  min-height: 72px;
}
#main-services .main-services-content .services-cards .service-card .card-content span::after {
  content: "";
  height: 2px;
  width: 60px;
  left: 0px;
  bottom: -0.625rem;
  background-color: #0092bc;
  position: absolute;
  transition: 0.3s all ease-in-out;
}
#main-services .main-services-content .services-cards .service-card .card-content p {
  font-size: 1rem;
  max-height: 270px;
  overflow-y: scroll;
  margin-bottom: 1.25rem;
  flex: 1;
  scroll-margin-left: 10px;
}
#main-services .main-services-content .services-cards .service-card .card-content p::-webkit-scrollbar {
  width: 15px;
}
#main-services .main-services-content .services-cards .service-card .card-content p::-webkit-scrollbar-thumb {
  background: #003849;
  background-clip: content-box;
  border: 5px solid transparent;
  border-radius: 12px;
}
#main-services .main-services-content .services-cards .service-card .card-content .button-services {
  text-transform: uppercase;
  font-size: 0.825rem;
  display: inline-block;
  padding: 0.5rem;
  color: #ffffff;
  transition: all 0.3s;
  align-self: flex-start;
  background-color: #005770;
}
#main-services .main-services-content .services-cards .service-card .card-content .button-services:hover {
  background-color: #001b23;
}

@media (max-width: 940px) {
  #main-services .main-services-content .title-services {
    position: relative;
    margin-bottom: 4rem;
    text-align: center;
    display: block;
  }
  #main-services .main-services-content .title-services::after {
    content: "";
    background: linear-gradient(130deg, #005770 20%, #0092bc 100%);
    width: 100%;
    height: 4px;
    position: absolute;
    left: 0px;
  }
  #main-services .main-services-content .title-services h2 {
    font-size: 2rem;
    text-align: center;
  }
  #main-services .main-services-content .title-services img {
    left: 0px;
    top: 0px;
  }
}
@media (max-width: 550px) {
  #main-services .main-services-content {
    text-align: center;
    padding: 3rem 1rem;
  }
  #main-services .main-services-content .title-services h2 {
    font-size: 1.5rem;
  }
  #main-services .main-services-content .title-services img {
    top: -20px;
  }
  #main-services .main-services-content .services-cards .service-card .card-content {
    flex: auto;
  }
  #main-services .main-services-content .services-cards .service-card .card-content span {
    min-height: fit-content;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
}

ul > li {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.content-max {
  max-width: 1400px;
  margin: 0 auto;
}

.padding-section {
  padding: 4rem 2rem 8rem 2rem;
}

.title-section {
  position: relative;
  margin-bottom: 4rem;
  position: relative;
  display: inline-block;
  text-align: left;
}
.title-section::after {
  content: "";
  background: linear-gradient(130deg, #005770 20%, #0092bc 100%);
  width: 100%;
  height: 4px;
  position: absolute;
  left: 20px;
}
.title-section h2 {
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  color: #005770;
  font-size: 2rem;
}
.title-section img {
  width: 40px;
  position: absolute;
  left: -40px;
  top: -20px;
}

#header {
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
}
#header .header-content {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}
#header .header-content .header-logo img {
  max-width: 176px;
  max-height: 39px;
  margin-right: 2rem;
}
#header .header-content .header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-left: 2rem;
}
#header .header-content .header-nav .header-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .header-content .header-nav .header-menu li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}
#header .header-content .header-nav .header-menu li::after {
  content: "";
  background-color: #ffffff;
  width: 0;
  height: 3px;
  position: absolute;
  left: 0px;
  bottom: -10px;
  transition: 0.3s all ease-in-out;
}
#header .header-content .header-nav .header-menu li:hover::after, #header .header-content .header-nav .header-menu li.active::after {
  width: 100%;
}
#header .header-content .header-nav .header-menu li img {
  position: relative;
  cursor: pointer;
}
#header .header-content .header-nav .header-menu li a {
  text-decoration: none;
  padding: 0.625rem;
  font-size: 1rem;
  color: inherit;
}
#header .header-content .header-nav .header-menu .dropdown {
  position: relative;
  margin-right: 0.725rem;
  cursor: pointer;
  padding: 10px;
}
#header .header-content .header-nav .header-menu .dropdown .dropdown-container {
  display: flex;
  align-items: center;
}
#header .header-content .header-nav .header-menu .dropdown .drop-menu {
  position: absolute;
  left: 0px;
  display: none;
  flex-direction: column;
  align-items: self-start;
  position: absolute;
  text-align: left;
  gap: 1rem;
  padding: 1rem;
  top: 55px;
  width: fit-content;
  z-index: 300;
  background-color: #003849;
}
#header .header-content .header-nav .header-menu .dropdown .drop-menu.drop-menu-products, #header .header-content .header-nav .header-menu .dropdown .drop-menu.drop-menu-contact {
  background: #1b1b1b;
}
#header .header-content .header-nav .header-menu .dropdown .drop-menu li {
  text-transform: uppercase;
  margin: 0;
}
#header .header-content .header-nav .header-menu .dropdown .drop-menu li a {
  padding: 10px 0;
}
#header .header-content .header-nav .header-menu .dropdown img {
  transition: 0.3s ease;
}
#header .header-content .header-nav .header-menu .dropdown.show img {
  transform: rotate(180deg);
  transition: 0.3s ease;
}
#header .header-content .header-nav .header-menu .dropdown.show .drop-menu {
  display: flex;
}
#header .header-content .header-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
#header .header-content .header-links .header-links-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
#header .header-content .header-links .header-links-menu a {
  color: inherit;
  display: flex;
  align-items: center;
  font-size: 1.5rem;
}
#header .header-content .mobile-button {
  display: none;
}

@media (max-width: 1080px) {
  #header .header-content .header-logo img {
    max-width: 120px;
    max-height: 30px;
    margin-right: 2rem;
  }
  #header .header-content .header-nav {
    padding-top: 2rem;
    height: 0px;
    overflow-y: hidden;
    visibility: hidden;
  }
  #header .header-content .header-nav.active {
    display: flex;
    flex-direction: column;
    justify-content: start;
    position: absolute;
    top: 90px;
    width: 100%;
    right: 0px;
    background: linear-gradient(180deg, rgb(0, 56, 73) 20%, rgb(0, 87, 112) 100%);
    z-index: 100;
    height: calc(100vh - 90px);
    z-index: 200;
    transition: 0.3s ease-in-out;
    visibility: visible;
  }
  #header .header-content .header-nav.active .header-menu {
    display: block;
  }
  #header .header-content .header-nav.active .header-menu li {
    margin: 0 0 1rem 0;
    text-align: center;
  }
  #header .header-content .header-nav.active .header-menu .dropdown {
    margin-right: 0px;
    display: block;
    position: relative;
    right: -10px;
  }
  #header .header-content .header-nav.active .header-menu .dropdown .dropdown-container {
    justify-content: center;
    margin-bottom: 0.275rem;
    padding: 10px;
  }
  #header .header-content .header-nav.active .header-menu .dropdown.show .drop-menu {
    display: block;
    position: static;
    padding: 1;
    max-width: 200px;
  }
  #header .header-content .header-nav.active .header-menu .dropdown.show .drop-menu li {
    justify-content: center;
    margin-top: 1rem;
  }
  #header .header-content .header-nav.active .header-menu .dropdown.show .drop-menu li:last-child {
    margin-bottom: 0px;
  }
  #header .header-content .header-nav.active .header-links-menu {
    margin-top: 2rem;
  }
  #header .header-content .mobile-button {
    display: flex;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border: none;
    background-color: transparent;
    cursor: pointer;
    color: #ffffff;
    gap: 0.5rem;
  }
  #header .header-content .mobile-button #hamburguer {
    width: 20px;
    border-top: 2px solid;
    display: block;
    color: #ffffff;
  }
  #header .header-content .mobile-button #hamburguer::after, #header .header-content .mobile-button #hamburguer:before {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background-color: currentColor;
    transition: 0.3s;
    margin-top: 5px;
    position: relative;
  }
  #header .header-content .mobile-button.active #hamburguer {
    border-top-color: transparent;
  }
  #header .header-content .mobile-button.active #hamburguer::before {
    transform: rotate(135deg);
  }
  #header .header-content .mobile-button.active #hamburguer::after {
    transform: rotate(-135deg);
    top: -7px;
  }
  #hero .hero-content {
    display: flex;
    justify-content: space-between;
  }
  #hero .hero-content .hero-subcontent .hero-title {
    font-size: 3rem;
  }
}
#body-contact #header .header-content .header-nav.active {
  background: linear-gradient(180deg, rgb(27, 27, 27) 20%, rgb(52, 58, 64) 100%);
}

#body-products #header .header-content .header-nav.active {
  background: linear-gradient(180deg, rgb(27, 27, 27) 20%, rgb(52, 58, 64) 100%);
}

@media (max-width: 1080px) {
  #header .header-content .header-nav .header-menu .dropdown.active .drop-menu {
    margin-right: 10px;
  }
}
@media (max-width: 550px) {
  #header .header-content {
    padding-bottom: 1rem;
    padding-top: 1rem;
  }
  #header .header-content .header-logo img {
    max-width: 100px;
    max-height: 20px;
    margin-right: 2rem;
  }
  #header .header-content .header-nav.active {
    top: 52px;
    height: calc(100vh - 52px);
  }
  #header .header-content .header-nav .header-menu .dropdown {
    margin: 0;
  }
  #header .header-content .header-nav .header-menu .dropdown.active::after {
    background-color: transparent;
  }
  #header .header-content .header-nav .header-menu .dropdown.active .drop-menu {
    position: static;
    display: none;
  }
}
#footer {
  background: linear-gradient(130deg, rgb(3, 56, 73) 20%, #005770 100%);
  font-family: "Montserrat", sans-serif;
}
#footer a {
  color: currentColor;
  transition: 0.1s all;
}
#footer a:hover {
  color: #0092bc;
}
#footer .footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 8rem 2rem;
  color: #ffffff;
  position: relative;
}
#footer .footer-content .first-container,
#footer .footer-content .second-container {
  display: flex;
}
#footer .footer-content .doodles {
  width: 50px;
  position: absolute;
  top: 0px;
  right: 0px;
}
#footer .footer-content h5 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
#footer .footer-content .footer-social,
#footer .footer-content .footer-services,
#footer .footer-content .footer-links,
#footer .footer-content .footer-contact {
  margin: 0 1rem 1rem 1rem;
  width: fit-content;
}
#footer .footer-content .footer-social li,
#footer .footer-content .footer-services li,
#footer .footer-content .footer-links li,
#footer .footer-content .footer-contact li {
  padding: 0.25rem 0;
}
#footer .footer-content .footer-social {
  margin-top: 1rem;
}
#footer .footer-content .footer-social .footer-logo {
  width: 200px;
  margin-bottom: 0.75rem;
}
#footer .footer-content .footer-social ul {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
#footer .footer-content .footer-social ul li {
  cursor: pointer;
}
#footer .footer-content .footer-social ul li a {
  padding: 0.25rem;
}
#footer .subfooter {
  text-align: center;
  color: #ffffff;
  padding: 3rem;
  border-top: 1px solid #ffffff;
}

@media (max-width: 1080px) {
  #footer .footer-content {
    padding: 4rem 1rem;
  }
}
@media (max-width: 550px) {
  #footer .footer-content .footer-social,
  #footer .footer-content .footer-services,
  #footer .footer-content .footer-links,
  #footer .footer-content .footer-contact {
    margin: 0 0 2rem 0;
    padding: 0;
  }
}
#products {
  background-color: transparent;
  box-shadow: none;
  height: 100%;
  max-height: calc(100% - 103px);
  margin-bottom: 10rem !important;
}

.products-list {
  padding: 4rem 2rem 8rem 2rem;
  gap: 4rem;
}
.products-list .title-products {
  position: relative;
  margin-bottom: 4rem;
  position: relative;
  display: inline-block;
  text-align: left;
}
.products-list .title-products::after {
  content: "";
  background: linear-gradient(130deg, #005770 20%, #0092bc 100%);
  width: 100%;
  height: 4px;
  position: absolute;
  left: 20px;
}
.products-list .title-products h2 {
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  color: #005770;
  font-size: 2rem;
}
.products-list .title-products img {
  width: 40px;
  position: absolute;
  left: -40px;
  top: -20px;
}
.products-list .products-grid .product {
  position: relative;
  padding: 3rem 0;
}
.products-list .products-grid .product:nth-child(even) {
  background: linear-gradient(to right, #ffffff 20%, #222222 0%);
  color: #ffffff;
  margin: 2rem 0;
}
.products-list .products-grid .product:nth-child(odd) {
  background: linear-gradient(to right, #ffffff 20%, #005770 0%);
  color: #ffffff;
  margin: 2rem 0;
}
.products-list .products-grid .product .product-presentation {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.products-list .products-grid .product .product-presentation .md {
  display: none;
}
.products-list .products-grid .product .product-presentation .description {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.products-list .products-grid .product .product-presentation .description h3 {
  margin-bottom: 1rem;
  position: relative;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-family: "Montserrat", sans-serif;
}
.products-list .products-grid .product .product-presentation .description h3::after {
  content: "";
  background: #0092bc;
  width: 25%;
  height: 4px;
  position: absolute;
  left: 20px;
  bottom: 0px;
}
.products-list .products-grid .product .product-presentation .description p {
  margin: 0 1rem 1rem 0;
  font-family: "Montserrat", sans-serif;
}
.products-list .products-grid .product .product-presentation .description ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  font-family: "Montserrat", sans-serif;
  gap: 0.5rem 0;
}
.products-list .products-grid .product .product-presentation .description ul li {
  display: flex;
  align-items: start;
  gap: 0.275rem;
  font-size: 0.875rem;
}
.products-list .products-grid .product .product-presentation .description .button-product {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 0.825rem;
  display: inline-block;
  padding: 0.5rem;
  color: #005770;
  transition: all 0.3s;
  align-self: flex-start;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  margin-top: 1rem;
}
.products-list .products-grid .product .product-presentation .description .button-product:hover {
  background-color: transparent;
  color: #ffffff;
}

@media (max-width: 940px) {
  .hero-background {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-background .title-container {
    display: flex;
    flex-wrap: wrap;
    padding: 4rem 2rem;
  }
  .hero-background .title-container .title-content {
    display: flex;
  }
  .hero-background .title-container .title-content.products {
    padding: 2rem;
  }
  .products-list {
    padding: 8rem 2rem;
    padding-top: 4rem;
    gap: 4rem;
  }
  .products-list .title-products {
    position: relative;
    margin-bottom: 4rem;
    text-align: center;
    display: block;
  }
  .products-list .title-products::after {
    content: "";
    background: linear-gradient(130deg, #005770 20%, #0092bc 100%);
    width: 100%;
    height: 4px;
    position: absolute;
    left: 0px;
  }
  .products-list .title-products h2 {
    font-size: 2rem;
    text-align: center;
  }
  .products-list .title-products img {
    left: 0px;
    top: 0px;
  }
  .products-list .products-grid .product {
    position: relative;
    padding: 0;
  }
  .products-list .products-grid .product:nth-child(even) {
    background: #222222;
    color: #ffffff;
    margin: 1rem 0;
  }
  .products-list .products-grid .product:nth-child(odd) {
    background: #222222;
    color: #ffffff;
    margin: 1rem 0;
  }
  .products-list .products-grid .product .product-presentation {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .products-list .products-grid .product .product-presentation .md {
    display: block;
    max-width: 100%;
  }
  .products-list .products-grid .product .product-presentation .lg {
    display: none;
  }
  .products-list .products-grid .product .product-presentation .description {
    display: flex;
    flex-direction: column;
    padding: 1rem;
  }
  .products-list .products-grid .product .product-presentation .description h3 {
    margin-bottom: 1rem;
    position: relative;
    text-transform: uppercase;
    font-size: 1.5rem;
    font-family: "Montserrat", sans-serif;
  }
  .products-list .products-grid .product .product-presentation .description h3::after {
    content: "";
    background: #fff;
    width: 25%;
    height: 4px;
    position: absolute;
    left: 20px;
    bottom: 0px;
  }
  .products-list .products-grid .product .product-presentation .description p {
    margin: 0 1rem 1.5rem 0;
    font-family: "Montserrat", sans-serif;
  }
  .products-list .products-grid .product .product-presentation .description ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    font-family: "Montserrat", sans-serif;
  }
  .products-list .products-grid .product .product-presentation .description ul li {
    display: flex;
    align-items: start;
    gap: 5px 0;
    gap: 0.275rem;
    font-size: 0.875rem;
  }
}
@media (max-width: 940px) and (max-width: 550px) {
  .products-list .title-products h2 {
    font-size: 1.5rem;
  }
  .products-list .title-products img {
    top: -20px;
  }
}
.clients {
  background: url("./assets/patterns/luminary_patter_white.svg");
}
.clients #clients {
  text-align: center;
  padding: 8rem 2rem;
  padding-top: 4rem;
  text-align: left;
}
.clients #clients .title-clients {
  position: relative;
  margin-bottom: 4rem;
  position: relative;
  display: inline-block;
  text-align: left;
}
.clients #clients .title-clients::after {
  content: "";
  background: linear-gradient(130deg, #005770 20%, #0092bc 100%);
  width: 100%;
  height: 4px;
  position: absolute;
  left: 20px;
}
.clients #clients .title-clients h2 {
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  color: #005770;
  font-size: 2rem;
}
.clients #clients .title-clients img {
  width: 40px;
  position: absolute;
  left: -40px;
  top: -20px;
}
.clients #clients .clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}
.clients #clients .clients-grid li {
  display: flex;
  justify-content: center;
}
.clients #clients .clients-grid li img {
  max-width: 240px;
  width: 100%;
  height: 120px;
  object-fit: contain;
  display: block;
  padding: 1rem;
  margin: auto;
}

@media (max-width: 940px) {
  .clients {
    background: url("./assets/patterns/luminary_patter_white.svg");
  }
  .clients #clients {
    text-align: center;
    padding: 8rem 2rem;
    padding-top: 4rem;
    text-align: left;
  }
  .clients #clients .title-clients {
    position: relative;
    margin-bottom: 4rem;
    position: relative;
    display: block;
    text-align: center;
  }
  .clients #clients .title-clients::after {
    content: "";
    background: linear-gradient(130deg, #005770 20%, #0092bc 100%);
    width: 100%;
    height: 4px;
    position: absolute;
    left: 0px;
  }
  .clients #clients .title-clients h2 {
    font-size: 2rem;
  }
  .clients #clients .title-clients img {
    width: 40px;
    position: absolute;
    left: 0px;
    top: 0px;
  }
}
@media (max-width: 940px) and (max-width: 550px) {
  .clients {
    background: url("./assets/patterns/luminary_patter_white_sm_variant.svg");
  }
  .clients #clients {
    text-align: center;
    padding: 3rem 1rem;
  }
  .clients #clients .title-clients {
    display: block;
  }
  .clients #clients .title-clients h2 {
    font-size: 1.5rem;
  }
  .clients #clients .title-clients img {
    top: -20px;
  }
  .clients #clients .title-clients::after {
    left: 0px;
  }
}
.button-test {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  position: relative;
  cursor: pointer;
  background: -webkit-gradient(linear, left top, right top, color-stop(-12.74%, rgba(110, 239, 255, 0.5)), color-stop(56.76%, rgba(106, 224, 255, 0.271)));
  background: linear-gradient(130deg, rgb(3, 56, 73) 20%, #005770 100%);
  border: 2px solid #acf7ff;
  color: #FFFFFF;
  font-size: 1rem;
  text-transform: uppercase;
  text-transform: uppercase;
  font-size: 0.75rem;
  display: inline-block;
  padding: 0.5rem;
  color: #ffffff;
  transition: all 0.3s;
  align-self: flex-start;
}
.button-test:hover, .button-test.active {
  transform: scale(1.02);
}
.button-test::after {
  content: "";
  position: absolute;
  left: -2px;
  bottom: -2px;
  border-top: 15px solid transparent;
}

.title-container {
  background: linear-gradient(130deg, rgb(3, 56, 73) 20%, #005770 100%);
}
.title-container.first-title-container {
  background: transparent;
}
.title-container.first-title-container .title-content {
  padding-top: 12rem;
}
.title-container .title-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2rem;
  padding: 8rem 2rem;
}
.title-container .title-content .hero-title {
  font-weight: 700;
  font-size: 4rem;
  font-family: "Inter", sans-serif;
  color: #ffffff;
  position: relative;
  text-transform: uppercase;
  margin-bottom: 2rem;
  text-align: left;
  max-width: 12ch;
}
.title-container .title-content .hero-title.product-title {
  margin-bottom: 0;
}
.title-container .title-content .hero-msg {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  display: block;
  font-family: "Montserrat", sans-serif;
}
.title-container .title-content iframe {
  aspect-ratio: 16/9;
  width: 100%;
}

.products-content {
  padding: 6rem 2rem;
  color: #ffffff;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  justify-content: space-between;
  gap: 2rem;
  font-family: "Inter", sans-serif;
}
.products-content .product-hero {
  object-fit: cover;
  object-position: left;
  height: 100%;
  max-width: 100%;
  width: 100%;
}
.products-content .product-hero.mobile {
  display: none;
}
.products-content .product-hero.desktop {
  display: block;
}
.products-content .product-details-container {
  background: #222222;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.products-content .product-details-container .product-description {
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 1rem;
}
.products-content .product-details-container .info-details {
  text-transform: uppercase;
  display: block;
  font-size: 0.725rem;
  margin-bottom: 1rem;
}
.products-content .product-details-container .product-details {
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.5rem;
  flex: 1;
  max-width: 100%;
}
.products-content .product-details-container .product-details .detail {
  padding: 0.5rem;
  height: fit-content;
}
.products-content .product-details-container .product-details .detail img {
  margin-bottom: 0.5rem;
}
.products-content .product-details-container .product-details .detail h4 {
  margin-bottom: 0.5rem;
  display: flex;
}
.products-content .product-details-container .product-details .detail p {
  font-size: 0.825rem;
}

.product-anchor {
  border: 1px solid #ffffff;
  background-color: #ffffff;
  text-transform: uppercase;
  padding: 1rem 1.25rem;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  width: fit-content;
  color: #000;
  font-family: "Montserrat", sans-serif;
  transition: 0.3s all ease;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.product-anchor:hover {
  background-color: transparent;
  color: #ffffff;
}
.product-anchor:hover img {
  filter: invert(100%);
}

@media (max-width: 720px) {
  .title-container {
    background-position: right;
    display: flex;
    flex-direction: column;
  }
  .title-container .title-content {
    display: flex;
    flex-direction: column;
    padding: 3rem 1rem;
  }
  .title-container .title-content div .hero-title {
    font-size: 3rem;
  }
  .title-container .title-content div .hero-title.product-title {
    text-align: center;
  }
  .title-container .title-content div .hero-title::after {
    bottom: 12px;
  }
  .title-container .title-content div .hero-title.title-manufacture {
    font-size: 2rem;
  }
  .title-container .title-content div .hero-msg {
    font-size: 1rem;
  }
  .products-content {
    display: flex;
    flex-wrap: wrap;
  }
  .products-content .product-details-container .product-details .detail .detail-name {
    display: block;
  }
}
@media (max-width: 550px) {
  .products-content {
    margin: 0;
    margin-bottom: 2rem;
    gap: 0;
    padding: 0;
    max-width: 100%;
    width: 100%;
  }
  .products-content .title-content.products {
    padding: 0;
  }
  .products-content .title-content .product-hero {
    object-fit: cover;
    object-position: left;
    grid-row: 2;
  }
  .products-content .title-content .product-hero .hero-title {
    font-size: 1.5rem;
  }
  .products-content .title-content .product-hero.mobile {
    display: block;
  }
  .products-content .title-content .product-hero.desktop {
    display: none;
  }
  .products-content .product-details-container {
    padding: 2rem 1rem;
  }
  .products-content .product-details-container .product-description-container .product-description {
    margin-bottom: 1rem;
    height: fit-content;
  }
  .products-content .product-details-container .product-details {
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
  }
  .products-content .product-details-container .product-details .detail {
    max-width: 35ch;
  }
  .products-content .product-details-container .product-details .detail h4 {
    max-width: 35ch;
    font-size: 1rem;
    word-wrap: break-word;
  }
  .products-content .product-details-container .product-details .detail p {
    max-width: fit-content;
  }
  .title-container.first-title-container .title-content {
    padding: 0 !important;
  }
}
.clients .title-clients .doodles {
  right: 0px !important;
}

#contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px 1fr));
  justify-content: space-between;
  margin: 0 auto;
}
#contact .map-location {
  margin-left: 2rem;
  display: flex;
  justify-content: end;
}
#contact .map-location iframe {
  max-width: 100%;
}
#contact .contact-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
#contact .contact-menu .contact-details {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  position: relative;
}
#contact .contact-menu .contact-details::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  background: linear-gradient(130deg, #005770 20%, #0092bc 100%);
  left: 0px;
  bottom: -2rem;
}
#contact .contact-menu .contact-details .contact-icon img {
  display: flex;
  align-items: center;
  border-radius: 50%;
  background: linear-gradient(130deg, #005770 20%, #0092bc 100%);
  padding: 0.75rem;
}
#contact .contact-menu .contact-details span {
  display: block;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
}
#contact .contact-menu .contact-details .details-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
#contact .contact-menu .contact-social {
  margin: 2rem 0;
}
#contact .contact-menu .contact-social ul {
  display: flex;
  gap: 2rem;
}

@media (max-width: 720px) {
  #contact {
    gap: 0;
    margin-top: 0;
    grid-template-columns: 1fr;
  }
  #contact .contact-menu .contact-details {
    margin: 1.25rem 0;
  }
  #contact .contact-menu .contact-details .details-title {
    font-size: 1rem;
  }
  #contact .contact-menu .contact-details::after {
    bottom: -1rem;
  }
  #contact .map-location {
    margin-left: 0;
  }
  #contact .map-location iframe {
    max-height: 200px;
  }
  #contact .contact-social {
    margin: 0;
  }
}
@media (max-width: 400px) {
  #contact .hero-title {
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 0;
  }
  #contact .contact-menu .contact-details {
    gap: 1rem;
    margin: 0.75rem 0;
  }
  #contact .contact-menu .contact-details::after {
    bottom: -0.75rem;
  }
  #contact .contact-menu .contact-details .contact-icon img {
    padding: 0.5rem;
  }
  #contact .contact-menu .contact-details span {
    font-size: 0.75rem;
  }
  #contact .contact-menu .contact-details .details-title {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }
  #contact .contact-menu .contact-social ul {
    display: flex;
    gap: 1rem;
  }
}
.service-details {
  font-family: "Montserrat", sans-serif;
  padding: 6rem 2rem;
}
.service-details .service {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 4rem;
}
.service-details .service .service-question {
  padding: 1rem;
  width: 100%;
}
.service-details .service .service-question .title-section {
  margin-bottom: 2rem;
}
.service-details .service .service-question .title-section h2 {
  font-size: 1.5rem;
  min-height: 58px;
}
.service-details .service .service-question .service-item p {
  font-size: 1rem;
}

.supervisory {
  background-color: #1b1b1b;
  display: grid;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  padding: 6rem 2rem;
  gap: 2rem;
}
.supervisory img {
  max-height: 200px;
  max-width: 400px;
  padding: 1rem;
  justify-self: center;
}
.supervisory .anvisa-content {
  text-align: center;
  padding: 1rem;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.supervisory .anvisa-content img {
  margin-bottom: 1rem;
  object-fit: contain;
}

.implementation {
  padding: 6rem 2rem;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
}
.implementation .title-section {
  margin-bottom: 6rem;
}
.implementation .implementation-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 4rem;
}
.implementation .implementation-list .implementation-card {
  background-color: #003849;
  padding: 2rem;
  z-index: -2;
}
.implementation .implementation-list .implementation-card .number-implementation {
  display: block;
  margin-bottom: 2rem;
  position: relative;
  color: #ffffff;
  font-weight: bold;
}
.implementation .implementation-list .implementation-card .number-implementation::after {
  content: "";
  height: 50px;
  width: 50px;
  display: block;
  left: -15px;
  bottom: -18px;
  background: url("../../assets/doodles/cube_2.svg") no-repeat;
  position: absolute;
  z-index: -1;
}
.implementation .implementation-list .implementation-card .implementation-title {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
  min-height: 78px;
  text-transform: uppercase;
}
.implementation .implementation-list .implementation-card .implementation-sublist li {
  display: flex;
  align-items: start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.conclusion {
  background-color: #1b1b1b;
}
.conclusion .conclusion-message {
  padding: 6rem 2rem;
}
.conclusion .conclusion-message p {
  color: #ffffff;
  font-size: 1.5rem;
}

@media (max-width: 550px) {
  .hero .hero-content .hero-subcontent .hero-title::after {
    top: 30px;
    left: 120px;
  }
  .hero .hero-content .hero-subcontent .hero-title .title-detail {
    font-size: 0.75rem !important;
    display: block;
  }
  .service-details {
    padding: 2rem;
  }
  .service-details .service {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  .service-details .service .service-question {
    padding: 1rem;
    max-width: 360px;
  }
  .service-details .service .service-question .title-section h2 {
    min-height: auto;
  }
  .supervisory {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .supervisory img {
    max-width: 100%;
  }
  .implementation {
    padding: 6rem 2rem;
    color: #ffffff;
  }
  .implementation .title-section {
    margin-bottom: 4rem;
  }
  .implementation .implementation-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }
  .implementation .implementation-list .implementation-card .implementation-title {
    font-size: 1.25rem;
    min-height: auto;
  }
  .conclusion {
    background-color: #1b1b1b;
  }
  .conclusion .conclusion-message {
    padding: 6rem 2rem;
  }
  .conclusion .conclusion-message h5 {
    color: #ffffff;
    margin-bottom: 2rem;
    text-transform: uppercase;
  }
  .conclusion .conclusion-message p {
    color: #ffffff;
    font-size: 1rem;
  }
}
.service-details {
  font-family: "Montserrat", sans-serif;
  padding: 6rem 2rem;
}
.service-details .service {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 4rem;
}
.service-details .service .service-question {
  padding: 1rem;
  width: 100%;
}
.service-details .service .service-question .title-section {
  margin-bottom: 2rem;
}
.service-details .service .service-question .title-section h2 {
  font-size: 1.5rem;
  min-height: 58px;
}
.service-details .service .service-question .service-item p {
  font-size: 1rem;
}

.supervisory {
  background-color: #1b1b1b;
  display: grid;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  padding: 6rem 2rem;
  gap: 2rem;
}
.supervisory img {
  max-height: 200px;
  max-width: 400px;
  padding: 1rem;
  justify-self: center;
}
.supervisory .anvisa-content {
  text-align: center;
  padding: 1rem;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.supervisory .anvisa-content img {
  margin-bottom: 1rem;
  object-fit: contain;
}

.implementation {
  padding: 6rem 2rem;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
}
.implementation .title-section {
  margin-bottom: 6rem;
}
.implementation .implementation-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 4rem;
}
.implementation .implementation-list .implementation-card {
  background-color: #003849;
  padding: 2rem;
  z-index: -2;
}
.implementation .implementation-list .implementation-card .number-implementation {
  display: block;
  margin-bottom: 2rem;
  position: relative;
  color: #ffffff;
  font-weight: bold;
}
.implementation .implementation-list .implementation-card .implementation-title {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
  min-height: 78px;
  text-transform: uppercase;
}
.implementation .implementation-list .implementation-card .implementation-sublist li {
  display: flex;
  align-items: start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.conclusion {
  background-color: #1b1b1b;
}
.conclusion .conclusion-message {
  padding: 6rem 2rem;
}
.conclusion .conclusion-message h5 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.conclusion .conclusion-message p {
  color: #ffffff;
  font-size: 1.5rem;
}

@media (max-width: 1080px) {
  .hero .hero-content .hero-subcontent .hero-title.pmc .title-detail {
    font-size: 0.75rem !important;
    display: block;
  }
}
@media (max-width: 550px) {
  .hero .hero-content .hero-subcontent .hero-title.pmc .title-detail {
    font-size: 0.75rem !important;
    display: block;
  }
  .service-details {
    padding: 2rem;
  }
  .service-details .service {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  .service-details .service .service-question {
    padding: 1rem;
    max-width: 360px;
  }
  .service-details .service .service-question .title-section h2 {
    min-height: auto;
  }
  .supervisory {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .supervisory img {
    max-width: 100%;
  }
  .implementation {
    padding: 6rem 2rem;
    color: #ffffff;
  }
  .implementation .title-section {
    margin-bottom: 4rem;
  }
  .implementation .implementation-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }
  .implementation .implementation-list .implementation-card .implementation-title {
    font-size: 1.25rem;
    min-height: auto;
  }
  .conclusion {
    background-color: #1b1b1b;
  }
  .conclusion .conclusion-message {
    padding: 6rem 2rem;
  }
  .conclusion .conclusion-message h5 {
    font-size: 1.5rem;
  }
  .conclusion .conclusion-message p {
    color: #ffffff;
    font-size: 1rem;
  }
}
.service-details-maintenance {
  font-family: "Montserrat", sans-serif;
  padding: 6rem 2rem;
}
.service-details-maintenance .service {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 4rem;
}
.service-details-maintenance .service .service-question {
  padding: 1rem;
  width: 100%;
}
.service-details-maintenance .service .service-question .title-section {
  margin-bottom: 2rem;
}
.service-details-maintenance .service .service-question .title-section h2 {
  font-size: 1.5rem;
  min-height: 58px;
}
.service-details-maintenance .service .service-question .service-item p {
  font-size: 1rem;
}

.supervisory-maintenance {
  background-color: #1b1b1b;
  display: grid;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  padding: 6rem 2rem;
  gap: 2rem;
}
.supervisory-maintenance img {
  max-height: 200px;
  max-width: 400px;
  padding: 1rem;
  justify-self: center;
}
.supervisory-maintenance .anvisa-content {
  text-align: center;
  padding: 1rem;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.supervisory-maintenance .anvisa-content img {
  margin-bottom: 1rem;
  object-fit: contain;
}

.implementation-maintenance {
  padding: 6rem 2rem;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
}
.implementation-maintenance .title-section {
  margin-bottom: 6rem;
}
.implementation-maintenance .implementation-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 4rem;
}
.implementation-maintenance .implementation-list .implementation-card {
  background-color: #003849;
  padding: 2rem;
  z-index: -2;
}
.implementation-maintenance .implementation-list .implementation-card .number-implementation {
  display: block;
  margin-bottom: 2rem;
  position: relative;
  color: transparent;
  font-weight: bold;
}
.implementation-maintenance .implementation-list .implementation-card .number-implementation::after {
  content: "";
  height: 50px;
  width: 50px;
  display: block;
  left: -15px;
  bottom: -18px;
  background: url("../../assets/doodles/cube_2.svg") no-repeat;
  position: absolute;
  z-index: -1;
}
.implementation-maintenance .implementation-list .implementation-card .implementation-title {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.implementation-maintenance .implementation-list .implementation-card .implementation-sublist li {
  display: flex;
  align-items: start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.conclusion {
  background-color: #1b1b1b;
}
.conclusion .conclusion-message {
  padding: 6rem 2rem;
}
.conclusion .conclusion-message p {
  color: #ffffff;
  font-size: 1.5rem;
}

@media (max-width: 550px) {
  .service-details-maintenance {
    padding: 2rem;
  }
  .service-details-maintenance .service {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  .service-details-maintenance .service .service-question {
    max-width: 360px;
  }
  .service-details-maintenance .service .service-question.maintenance {
    max-width: 304px !important;
  }
  .service-details-maintenance .service .service-question .title-section h2 {
    min-height: auto;
  }
  .supervisory {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .supervisory img {
    max-width: 100%;
  }
  .implementation-maintenance {
    padding: 6rem 2rem;
    color: #ffffff;
  }
  .implementation-maintenance .title-section {
    margin-bottom: 4rem;
  }
  .implementation-maintenance .implementation-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }
  .implementation-maintenance .implementation-list .implementation-card.card-maintenance {
    max-width: 336px;
  }
  .implementation-maintenance .implementation-list .implementation-card .implementation-title {
    font-size: 1.25rem;
    min-height: auto;
  }
  .conclusion {
    background-color: #1b1b1b;
  }
  .conclusion .conclusion-message {
    padding: 6rem 2rem;
  }
  .conclusion .conclusion-message h5 {
    color: #ffffff;
    margin-bottom: 2rem;
    text-transform: uppercase;
  }
  .conclusion .conclusion-message p {
    color: #ffffff;
    font-size: 1rem;
  }
}
.service-details {
  font-family: "Montserrat", sans-serif;
  padding: 6rem 2rem;
}
.service-details .service {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 4rem;
}
.service-details .service .service-question {
  padding: 1rem;
  width: 100%;
}
.service-details .service .service-question .title-section {
  margin-bottom: 2rem;
}
.service-details .service .service-question .title-section h2 {
  font-size: 1.5rem;
  min-height: 58px;
}
.service-details .service .service-question .service-item p {
  font-size: 1rem;
}

.supervisory {
  background-color: #1b1b1b;
  display: grid;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  padding: 6rem 2rem;
  gap: 2rem;
}
.supervisory img {
  max-height: 200px;
  max-width: 400px;
  padding: 1rem;
  justify-self: center;
}
.supervisory .anvisa-content {
  text-align: center;
  padding: 1rem;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.supervisory .anvisa-content img {
  margin-bottom: 1rem;
  object-fit: contain;
}

.implementation {
  padding: 6rem 2rem;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
}
.implementation .title-section {
  margin-bottom: 6rem;
}
.implementation .implementation-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 4rem;
}
.implementation .implementation-list .implementation-card {
  background-color: #003849;
  padding: 2rem;
  z-index: -2;
}
.implementation .implementation-list .implementation-card .number-implementation {
  display: block;
  margin-bottom: 2rem;
  position: relative;
  font-weight: bold;
}
.implementation .implementation-list .implementation-card .number-implementation.ti {
  color: transparent;
}
.implementation .implementation-list .implementation-card .number-implementation::after {
  content: "";
  height: 50px;
  width: 50px;
  display: block;
  left: -15px;
  bottom: -18px;
  background: url("../../assets/doodles/cube_2.svg") no-repeat;
  position: absolute;
  z-index: -1;
}
.implementation .implementation-list .implementation-card .implementation-title {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
  min-height: 78px;
  text-transform: uppercase;
}
.implementation .implementation-list .implementation-card .implementation-sublist li {
  display: flex;
  align-items: start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.conclusion {
  background-color: #1b1b1b;
}
.conclusion .conclusion-message {
  padding: 6rem 2rem;
}
.conclusion .conclusion-message h5 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.conclusion .conclusion-message p {
  color: #ffffff;
  font-size: 1.5rem;
}

@media (max-width: 1080px) {
  .hero .hero-content .hero-subcontent .hero-title.pmc .title-detail {
    font-size: 0.75rem !important;
    display: block;
  }
}
@media (max-width: 550px) {
  .hero .hero-content .hero-subcontent .hero-title.pmc .title-detail {
    font-size: 0.75rem !important;
    display: block;
  }
  .service-details {
    padding: 2rem;
  }
  .service-details .service {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  .service-details .service .service-question {
    padding: 1rem;
    max-width: 360px;
  }
  .service-details .service .service-question .title-section h2 {
    min-height: auto;
  }
  .supervisory {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .supervisory img {
    max-width: 100%;
  }
  .implementation {
    padding: 6rem 2rem;
    color: #ffffff;
  }
  .implementation .title-section {
    margin-bottom: 4rem;
  }
  .implementation .implementation-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }
  .implementation .implementation-list .implementation-card .implementation-title {
    font-size: 1.25rem;
    min-height: auto;
  }
  .conclusion {
    background-color: #1b1b1b;
  }
  .conclusion .conclusion-message {
    padding: 6rem 2rem;
  }
  .conclusion .conclusion-message h5 {
    font-size: 1.5rem;
  }
  .conclusion .conclusion-message p {
    color: #ffffff;
    font-size: 1rem;
  }
}
.service-details {
  font-family: "Montserrat", sans-serif;
  padding: 6rem 2rem;
}
.service-details .service {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 4rem;
}
.service-details .service .service-question {
  padding: 1rem;
  width: 100%;
}
.service-details .service .service-question .title-section {
  margin-bottom: 2rem;
}
.service-details .service .service-question .title-section h2 {
  font-size: 1.5rem;
  min-height: 58px;
}
.service-details .service .service-question .service-item p {
  font-size: 1rem;
}

.supervisory {
  background-color: #1b1b1b;
  display: grid;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  padding: 6rem 2rem;
  gap: 2rem;
}
.supervisory img {
  max-height: 200px;
  max-width: 400px;
  padding: 1rem;
  justify-self: center;
}
.supervisory .anvisa-content {
  text-align: center;
  padding: 1rem;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.supervisory .anvisa-content img {
  margin-bottom: 1rem;
  object-fit: contain;
}

.implementation {
  padding: 6rem 2rem;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
}
.implementation .title-section {
  margin-bottom: 6rem;
}
.implementation .implementation-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 4rem;
}
.implementation .implementation-list .implementation-card {
  background-color: #003849;
  padding: 2rem;
  z-index: -2;
}
.implementation .implementation-list .implementation-card .number-implementation {
  display: block;
  margin-bottom: 2rem;
  position: relative;
  color: #ffffff;
  font-weight: bold;
}
.implementation .implementation-list .implementation-card .implementation-title {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
  min-height: 78px;
  text-transform: uppercase;
}
.implementation .implementation-list .implementation-card .implementation-sublist li {
  display: flex;
  align-items: start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.conclusion {
  background-color: #1b1b1b;
}
.conclusion .conclusion-message {
  padding: 6rem 2rem;
}
.conclusion .conclusion-message h5 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.conclusion .conclusion-message p {
  color: #ffffff;
  font-size: 1.5rem;
}

@media (max-width: 1080px) {
  .hero .hero-content .hero-subcontent .hero-title.pmc .title-detail {
    font-size: 0.75rem !important;
    display: block;
  }
}
@media (max-width: 550px) {
  .hero .hero-content .hero-subcontent .hero-title.pmc .title-detail {
    font-size: 0.75rem !important;
    display: block;
  }
  .service-details {
    padding: 2rem;
  }
  .service-details .service {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  .service-details .service .service-question {
    padding: 1rem;
    max-width: 360px;
  }
  .service-details .service .service-question .title-section h2 {
    min-height: auto;
  }
  .supervisory {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .supervisory img {
    max-width: 100%;
  }
  .implementation {
    padding: 6rem 2rem;
    color: #ffffff;
  }
  .implementation .title-section {
    margin-bottom: 4rem;
  }
  .implementation .implementation-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }
  .implementation .implementation-list .implementation-card .implementation-title {
    font-size: 1.25rem;
    min-height: auto;
  }
  .conclusion {
    background-color: #1b1b1b;
  }
  .conclusion .conclusion-message {
    padding: 6rem 2rem;
  }
  .conclusion .conclusion-message h5 {
    font-size: 1.5rem;
  }
  .conclusion .conclusion-message p {
    color: #ffffff;
    font-size: 1rem;
  }
}

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