@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("../fonts/icones/css/icones.css");
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #18171D;
  background-color: #fff;
  line-height: 1.4;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
}

ul {
  list-style-type: none;
  margin: 0;
  margin-left: 0;
  padding: 0;
  font-size: 24px;
}
@media (max-width: 678px) {
  ul {
    font-size: 14.64px;
  }
}

.font-xs {
  font-size: 24px;
}
@media (max-width: 678px) {
  .font-xs {
    font-size: 14.64px;
  }
}

.font-sm {
  font-size: 32px;
}
@media (max-width: 678px) {
  .font-sm {
    font-size: 19.52px;
  }
}

.font-lg {
  font-size: 40px;
}
@media (max-width: 678px) {
  .font-lg {
    font-size: 24.4px;
  }
}

.title-sm, .contact_section_2 h2, .contact_section_1 h1, .related_posts h2, .post_section_1 h1, .areas_section_3 .areas .area h3, .areas_section_2 h2, .services_section_4 h2, .services_section_3 h2, .about_section_2 h2, .about_section_1 h1, .home_section_2 .areas .area h3 {
  font-size: 24px;
  font-weight: 900;
}
@media (max-width: 768px) {
  .title-sm, .contact_section_2 h2, .contact_section_1 h1, .related_posts h2, .post_section_1 h1, .areas_section_3 .areas .area h3, .areas_section_2 h2, .services_section_4 h2, .services_section_3 h2, .about_section_2 h2, .about_section_1 h1, .home_section_2 .areas .area h3 {
    font-size: 20px;
  }
}

.title-xs, .areas_section_3 h2, .home_section_2 h2, .home_section_1 h2 {
  font-weight: bold;
  font-size: 22px;
  font-size: 18px;
}

header {
  background-color: #18171D;
  position: relative;
  z-index: 100;
}

.mobile-nav-toggle,
.mobile-nav-close,
.mobile-nav-backdrop {
  display: none;
}

.mobile-nav-toggle {
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #fff;
  flex-shrink: 0;
  margin-left: auto;
}
.mobile-nav-toggle:focus-visible {
  outline: 2px solid #00FFC6;
  outline-offset: 4px;
}
.mobile-nav-toggle__bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 26px;
}
.mobile-nav-toggle__bar {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.35s ease, opacity 0.25s ease;
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #fff;
  z-index: 2;
}
.mobile-nav-close:focus-visible {
  outline: 2px solid #00FFC6;
  outline-offset: 2px;
}
.mobile-nav-close__icon {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
  margin: 0 auto;
}
.mobile-nav-close__icon::before, .mobile-nav-close__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}
.mobile-nav-close__icon::before {
  transform: translateY(-50%) rotate(45deg);
}
.mobile-nav-close__icon::after {
  transform: translateY(-50%) rotate(-45deg);
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 998;
}

body.mobile-nav-open {
  overflow: hidden;
}
body.mobile-nav-open .mobile-nav-backdrop {
  opacity: 1;
  visibility: visible;
}
body.mobile-nav-open .mobile-nav-toggle__bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
body.mobile-nav-open .mobile-nav-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
body.mobile-nav-open .mobile-nav-toggle__bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 24px;
}
.header-content .menu-content ul {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 768px) {
  .header-content .menu-content ul {
    gap: 0;
  }
}
.header-content .menu-content ul li {
  position: relative;
}
.header-content .menu-content ul li:has(ul) > a::after {
  content: "\e810";
  font-family: "icones";
  display: inline-block;
  margin-left: 8px;
}
@media (max-width: 768px) {
  .header-content .menu-content ul li:has(ul) > a::after {
    display: none;
  }
}
.header-content .menu-content ul li a {
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 16px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .header-content .menu-content ul li a {
    font-size: 15px;
    white-space: normal;
  }
}
.header-content .menu-content ul li a:hover {
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 6px;
}
.header-content .menu-content ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  min-width: 100%;
  left: 0;
  padding: 24px;
  margin-left: 0;
  z-index: 100;
  background-color: #18171D;
}
@media (min-width: 769px) {
  .header-content .menu-content ul li:hover ul {
    display: block;
  }
}

@media (max-width: 768px) {
  .mobile-nav-toggle,
  .mobile-nav-close,
  .mobile-nav-backdrop {
    display: block;
  }
  .mobile-nav-toggle {
    display: flex;
  }
  .header-content .menu-content {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(100% - 48px, 380px);
    max-width: 100%;
    margin: 0;
    padding: 88px 0 32px 0;
    background-color: #18171D;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35);
    z-index: 999;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.4s;
  }
  .header-content .menu-content.is-open {
    transform: translateX(0);
    visibility: visible;
  }
  .header-content .menu-content > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 24px 24px;
  }
  .header-content .menu-content > ul > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .header-content .menu-content > ul > li > a {
    display: block;
    padding: 18px 44px 18px 0;
  }
  .header-content .menu-content li:hover ul {
    display: none;
  }
  .header-content .menu-content li.is-open > ul.sub-menu {
    display: block !important;
  }
  .header-content .menu-content li.menu-item-has-children {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  .header-content .menu-content li.menu-item-has-children > a {
    flex: 1;
    min-width: 0;
    padding-right: 8px;
  }
  .header-content .menu-content li.menu-item-has-children > .mobile-submenu-toggle {
    flex-shrink: 0;
  }
  .header-content .menu-content li.menu-item-has-children > .sub-menu {
    flex: 0 0 100%;
    position: static;
    min-width: 0;
    padding: 0 0 16px 12px;
    margin: 0;
    background: transparent;
    border-top: 0;
  }
  .header-content .menu-content li.menu-item-has-children > .sub-menu li {
    border-bottom: 0;
  }
  .header-content .menu-content li.menu-item-has-children > .sub-menu li a {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
  }
  .header-content .menu-content li.menu-item-has-children > .sub-menu .menu-item-has-children {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .header-content .menu-content li.menu-item-has-children > .sub-menu .menu-item-has-children > a {
    flex: 1;
    min-width: 0;
    padding: 10px 44px 10px 0;
  }
  .header-content .menu-content li.menu-item-has-children > .sub-menu .menu-item-has-children > .sub-menu {
    padding-left: 8px;
  }
  .mobile-submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    color: #fff;
    flex-shrink: 0;
  }
  .mobile-submenu-toggle::before {
    content: "\e810";
    font-family: "icones";
    font-size: 12px;
    line-height: 1;
    transition: transform 0.3s ease;
  }
  .mobile-submenu-toggle[aria-expanded=true]::before {
    transform: rotate(180deg);
  }
  .mobile-submenu-toggle:focus-visible {
    outline: 2px solid #00FFC6;
    outline-offset: 2px;
  }
}
@media (min-width: 769px) {
  .mobile-submenu-toggle {
    display: none !important;
  }
}
section {
  padding: 120px 16px 0;
}
@media (max-width: 768px) {
  section {
    padding-top: 40px;
  }
}
section .content {
  max-width: 1200px;
  margin: 0 auto;
}

.breadcrumbs {
  background-color: #E0DED1;
  padding: 24px;
  margin: 0;
}
.home .breadcrumbs {
  display: none;
}
.breadcrumbs .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.breadcrumbs .inner span,
.breadcrumbs .inner a {
  color: #18171D;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .breadcrumbs .inner span,
  .breadcrumbs .inner a {
    font-size: 14px;
  }
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #18171D;
  min-height: 72svh;
}
.hero .content {
  max-width: 590px;
  color: #fff;
  text-align: center;
}
.hero .content h1 {
  text-transform: uppercase;
}
.hero .content h1 span {
  display: block;
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 900;
}
@media (max-width: 768px) {
  .hero .content h1 span {
    font-size: 20px;
  }
}
.hero .content h1 span:last-child {
  font-size: 64px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .hero .content h1 span:last-child {
    font-size: 48px;
  }
}
.hero .content .btn {
  margin: 0 auto;
}

.home_section_1 {
  padding-top: 120px;
}
@media (max-width: 768px) {
  .home_section_1 {
    padding-top: 40px;
  }
}
.home_section_1 .services {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .home_section_1 .services {
    margin-top: 18px;
  }
}
@media (max-width: 768px) {
  .home_section_1 .services {
    grid-template-columns: repeat(2, 1fr);
  }
}
.home_section_1 .services .service {
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 35px 40px;
  z-index: 1;
  position: relative;
}
@media (max-width: 374px) {
  .home_section_1 .services .service {
    padding: 16px;
  }
}
.home_section_1 .services .service::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #414144;
  opacity: 0.3;
  z-index: -1;
}
.home_section_1 .services .service h3 {
  font-size: 10px;
  font-weight: bold;
  color: #fff;
  text-align: left;
}
.home_section_1 .services .service img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.home_section_2 p {
  font-size: 22px;
  text-align: center;
}
@media (max-width: 768px) {
  .home_section_2 p {
    font-size: 18px;
  }
}
.home_section_2 .areas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .home_section_2 .areas {
    grid-template-columns: 1fr;
  }
}
.home_section_2 .areas .area {
  aspect-ratio: 387/233;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  background-color: #F6F5EF;
}
.home_section_2 .areas .area img {
  width: 80px;
  height: 80px;
}
.home_section_2 .areas .area h3 {
  font-weight: bold;
}

.home_section_3 .content {
  display: flex;
  align-items: center;
  background-color: #F6F5EF;
}
@media (max-width: 768px) {
  .home_section_3 .content {
    flex-direction: column;
  }
}
.home_section_3 .content .text {
  padding: 32px 80px;
}
@media (max-width: 768px) {
  .home_section_3 .content .text {
    padding: 16px;
    text-align: justify;
    hyphens: auto;
  }
}
.home_section_3 .content .text .btn {
  background-color: #18171D;
  color: #fff;
}

.home_section_5 {
  padding-top: 80px;
}
@media (max-width: 768px) {
  .home_section_5 {
    padding-top: 40px;
  }
}

.home_section_6 {
  padding-top: 80px;
  padding-bottom: 120px;
}
@media (max-width: 768px) {
  .home_section_6 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .posts {
    margin-top: 18px;
  }
}
@media (max-width: 678px) {
  .posts {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}
.posts .post p {
  font-size: 16px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .posts .post p {
    margin-bottom: 16px;
  }
}
@media (max-width: 768px) {
  .posts .post p {
    font-size: 14px;
  }
}
.posts .post p:first-of-type {
  font-size: 20px;
  font-weight: 900;
  margin: 24px 0;
}
@media (max-width: 768px) {
  .posts .post p:first-of-type {
    font-size: 18px;
  }
}
.posts .post a {
  font-size: 19px;
  font-weight: bold;
  text-transform: uppercase;
  color: inherit;
}
@media (max-width: 768px) {
  .posts .post a {
    font-size: 16px;
  }
}

.clients-carousel .slick-slide {
  background-color: transparent;
  margin: 32px 0;
}
.clients-carousel .slick-dots {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
}
.clients-carousel .slick-dots li {
  flex: 1;
  max-width: 56px;
  text-indent: -9999px;
  height: 4px;
  background-color: #E0DED1;
  border-radius: 12px;
}
.clients-carousel .slick-dots li.slick-active {
  background-color: #00FFC6;
}

.deps-carousel .slick-list {
  margin: 0 -24px;
}
.deps-carousel .slick-slide {
  background-color: #F6F5EF;
  padding: 56px;
  margin: 32px 24px 24px;
}
.deps-carousel .slick-slide h3 {
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 8px;
}
.deps-carousel .slick-slide p {
  font-size: 16px;
}
.deps-carousel .slick-slide p:last-child {
  font-size: 14px;
}
.deps-carousel .slick-dots {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
}
.deps-carousel .slick-dots li {
  flex: 1;
  max-width: 56px;
  text-indent: -9999px;
  height: 4px;
  background-color: #E0DED1;
  border-radius: 12px;
}
.deps-carousel .slick-dots li.slick-active {
  background-color: #00FFC6;
}

.blog {
  padding-top: 80px;
}
@media (max-width: 768px) {
  .blog {
    padding-top: 40px;
  }
}
.blog .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: span 3;
}
.blog .pagination a,
.blog .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #18171D;
  font-size: 16px;
  font-weight: 900;
  width: 42px;
  height: 42px;
}
.blog .pagination a.current,
.blog .pagination span.current {
  background-color: #C5C1AA;
}

.gallery {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .gallery {
    width: 85%;
  }
}
.gallery .slick-list {
  margin: 0 -16px;
  overflow: visible;
}
@media (max-width: 768px) {
  .gallery .slick-list {
    margin: 0 -8px;
  }
}
.gallery .slick-slide {
  margin: 0 16px;
}
@media (max-width: 768px) {
  .gallery .slick-slide {
    margin: 0 8px;
  }
}

.about_section_1 {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .about_section_1 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.about_section_1 h1 {
  text-align: left;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .about_section_1 h1 {
    margin-bottom: 16px;
  }
}
@media (max-width: 768px) {
  .about_section_1 p {
    text-align: justify;
    hyphens: auto;
  }
}
.about_section_1 .columns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 0;
}
@media (max-width: 768px) {
  .about_section_1 .columns {
    flex-direction: column;
  }
}
.about_section_1 .columns div:first-child {
  flex: 1;
}
.about_section_1 .columns p:last-child {
  margin-bottom: 0;
}

.about_section_2 {
  background-color: #F6F5EF;
}
.about_section_2 h2 {
  text-align: left;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .about_section_2 h2 {
    margin-bottom: 16px;
  }
}
@media (max-width: 768px) {
  .about_section_2 p {
    text-align: justify;
    hyphens: auto;
  }
}
.about_section_2 .columns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 0;
}
@media (min-width: 1024px) {
  .about_section_2 .columns {
    flex-direction: row-reverse;
  }
}
@media (max-width: 768px) {
  .about_section_2 .columns {
    flex-direction: column;
  }
}
.about_section_2 .columns p:last-child {
  margin-bottom: 0;
}
.about_section_2 .columns div:first-child {
  flex: 1;
}
.about_section_2 .content:nth-child(2) .columns {
  flex-direction: row;
}
@media (max-width: 768px) {
  .about_section_2 .content:nth-child(2) .columns {
    flex-direction: column;
  }
}
.about_section_2 .content + .content {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .about_section_2 .content + .content {
    margin-top: 40px;
  }
}

.about_section_3 {
  padding-top: 500px;
  padding-bottom: 120px;
  background: rgba(224, 222, 209, 0.3) url("../assets/bg-about_section_3.png") top center no-repeat;
  background-size: cover;
}
@media (max-width: 768px) {
  .about_section_3 {
    background-size: cover;
    background-color: #e0ded1;
    padding-top: 60px;
    padding-bottom: 40px;
  }
}
.about_section_3 .gallery {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .about_section_3 .gallery {
    margin-bottom: 40px;
  }
}

.services_section_1 {
  padding-top: 80px;
}
@media (max-width: 768px) {
  .services_section_1 {
    padding-top: 40px;
  }
}
.services_section_1 .btn {
  background-color: #18171D;
  color: #fff;
  margin-top: 16px;
}

.services_section_2 {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #00FFC6;
}
@media (max-width: 768px) {
  .services_section_2 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.services_section_2 h2 {
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .services_section_2 h2 {
    margin-bottom: 16px;
  }
}
.services_section_2 .video {
  display: flex;
  align-items: center;
  justify-content: center;
}
.services_section_2 iframe {
  max-width: 880px;
  aspect-ratio: 880/560;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.services_section_3 {
  padding-top: 80px;
  padding-bottom: 120px;
  background-color: #E0DED1;
}
@media (max-width: 768px) {
  .services_section_3 {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}
.services_section_3 h2 {
  margin-bottom: 24px;
  text-align: left;
}
@media (max-width: 768px) {
  .services_section_3 h2 {
    margin-bottom: 16px;
  }
}
@media (max-width: 768px) {
  .services_section_3 p {
    text-align: justify;
    hyphens: auto;
  }
}
.services_section_3 .content:nth-child(2) .columns {
  flex-direction: row;
}
@media (max-width: 768px) {
  .services_section_3 .content:nth-child(2) .columns {
    flex-direction: column;
  }
}
.services_section_3 .content + .content {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .services_section_3 .content + .content {
    margin-top: 40px;
  }
}
.services_section_3 .columns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 0;
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .services_section_3 .columns {
    flex-direction: column;
  }
}
.services_section_3 .columns div:first-child {
  flex: 1;
}
.services_section_3 .columns p:last-child {
  margin-bottom: 0;
}
.services_section_3 ul {
  columns: 2;
  margin-bottom: 16px;
}
.services_section_3 ul li {
  font-size: 18px;
}
@media (max-width: 768px) {
  .services_section_3 ul li {
    font-size: 16px;
  }
}
.services_section_3 ul li:not(:last-child) {
  margin-bottom: 16px;
}
.services_section_3 ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 16px;
  display: inline-block;
  background-color: #18171D;
  transform: rotate(30deg);
}
.services_section_3 p {
  font-size: 20px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .services_section_3 p {
    font-size: 18px;
  }
}

.services_section_4 {
  padding-top: 80px;
  padding-bottom: 120px;
}
@media (max-width: 768px) {
  .services_section_4 {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}
.services_section_4 h2 {
  margin-bottom: 24px;
  text-align: left;
}
@media (max-width: 768px) {
  .services_section_4 h2 {
    margin-bottom: 16px;
  }
}
.services_section_4 .gallery {
  margin-top: 80px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .services_section_4 .gallery {
    margin-top: 40px;
    margin-bottom: 24px;
  }
}
.services_section_4 .content:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
}

.areas_section_1 .columns {
  align-items: flex-start;
}

.areas_section_2 {
  background-color: #E0DED1;
  padding-bottom: 120px;
}
@media (max-width: 768px) {
  .areas_section_2 {
    padding-bottom: 60px;
  }
}
.areas_section_2 h2 {
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .areas_section_2 h2 {
    margin-bottom: 24px;
  }
}
.areas_section_2 .columns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 0;
}
@media (max-width: 768px) {
  .areas_section_2 .columns {
    flex-direction: column;
  }
}
.areas_section_2 .columns h2 {
  text-align: left;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .areas_section_2 .columns h2 {
    margin-bottom: 16px;
  }
}
.areas_section_2 .columns div:first-child {
  flex: 1;
}
.areas_section_2 .columns p:last-child {
  margin-bottom: 0;
}
.areas_section_2 .columns ul {
  columns: 2;
  margin-bottom: 16px;
}
.areas_section_2 .columns ul li {
  font-size: 18px;
}
@media (max-width: 768px) {
  .areas_section_2 .columns ul li {
    font-size: 16px;
  }
}
.areas_section_2 .columns ul li:not(:last-child) {
  margin-bottom: 16px;
}
.areas_section_2 .columns ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 16px;
  display: inline-block;
  background-color: #18171D;
  transform: rotate(30deg);
}
.areas_section_2 .content:nth-child(2) .columns {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .areas_section_2 .content:nth-child(2) .columns {
    flex-direction: column;
  }
}
.areas_section_2 .content + .content {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .areas_section_2 .content + .content {
    margin-top: 40px;
  }
}

.areas_section_3 {
  padding-top: 80px;
  padding-bottom: 120px;
}
@media (max-width: 768px) {
  .areas_section_3 {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}
.areas_section_3 h2 {
  margin-bottom: 8px;
}
.areas_section_3 h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .areas_section_3 h3 {
    margin-bottom: 24px;
  }
}
@media (max-width: 768px) {
  .areas_section_3 h3 {
    font-size: 18px;
  }
}
.areas_section_3 .areas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .areas_section_3 .areas {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .areas_section_3 .areas {
    grid-template-columns: 1fr;
  }
}
.areas_section_3 .areas .area {
  aspect-ratio: 387/233;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  background-color: #F6F5EF;
}
.areas_section_3 .areas .area:first-child {
  border: 2px solid #C5C1AA;
}
.areas_section_3 .areas .area img {
  width: 80px;
  height: 80px;
}
.areas_section_3 .areas .area h3 {
  font-weight: bold;
}
.areas_section_3 .content:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
}

.post_section_1 {
  padding-top: 80px;
  font-size: 20px;
}
@media (max-width: 768px) {
  .post_section_1 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .post_section_1 {
    padding-top: 40px;
  }
}
.post_section_1 h1 {
  text-align: left;
}
@media (max-width: 768px) {
  .post_section_1 p {
    text-align: justify;
    hyphens: auto;
  }
}
.post_section_1 img {
  margin: 24px 0;
}
.post_section_1 .wp-video {
  border-radius: 8px;
  max-width: 880px;
  margin: 24px auto;
  overflow: hidden;
  width: 100% !important;
  aspect-ratio: 16/9;
}

.related_posts {
  padding-top: 64px;
  padding-bottom: 120px;
}
@media (max-width: 768px) {
  .related_posts {
    padding-top: 24px;
    padding-bottom: 60px;
  }
}
.related_posts h2 {
  margin-bottom: 24px;
  text-align: left;
}
@media (max-width: 768px) {
  .related_posts h2 {
    margin-bottom: 16px;
  }
}

.contact_section_1 {
  padding-top: 80px;
  padding-bottom: 80px;
  font-size: 20px;
}
@media (max-width: 768px) {
  .contact_section_1 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .contact_section_1 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .contact_section_1 p {
    text-align: justify;
    hyphens: auto;
  }
}
.contact_section_1 h1 {
  margin-bottom: 32px;
  text-align: left;
}
@media (max-width: 768px) {
  .contact_section_1 h1 {
    margin-bottom: 24px;
  }
}
.contact_section_1 .areas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .contact_section_1 .areas {
    margin-top: 24px;
  }
}
@media (max-width: 768px) {
  .contact_section_1 .areas {
    display: flex;
    flex-direction: column;
  }
}
.contact_section_1 .areas .area {
  aspect-ratio: 389/200;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid #C5C1AA;
  padding: 32px 40px;
}
.contact_section_1 .areas .area img {
  width: 48px;
  height: 48px;
}
.contact_section_1 .areas .area h3 {
  font-size: 20px;
  font-weight: 600;
  text-align: left;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .contact_section_1 .areas .area h3 {
    font-size: 18px;
  }
}
.contact_section_1 .areas .area p {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 16px;
}
@media (max-width: 768px) {
  .contact_section_1 .areas .area p {
    font-size: 14px;
  }
}

.contact_section_2 {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #F1F1F1;
}
@media (max-width: 768px) {
  .contact_section_2 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.contact_section_2 h2 {
  margin-bottom: 24px;
  text-align: left;
}
@media (max-width: 768px) {
  .contact_section_2 h2 {
    margin-bottom: 16px;
  }
}
.contact_section_2 .form label {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 4px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .contact_section_2 .form label {
    font-size: 14px;
  }
}
.contact_section_2 .form input:not([type=submit]),
.contact_section_2 .form textarea {
  border: 1px solid #D1D5DB;
  padding: 9px 13px;
  margin: 0;
  font-size: 14px;
}
.contact_section_2 .form input:not([type=submit])::placeholder,
.contact_section_2 .form textarea::placeholder {
  color: #B9BEC5;
}
.contact_section_2 .form select {
  margin-bottom: 0;
  font-size: 14px;
  color: #B9BEC5;
}
.contact_section_2 .form select option {
  color: #18171D;
}
.contact_section_2 .form p {
  margin: 0;
}
.contact_section_2 .form .row:not(:first-child) {
  margin-top: 24px;
}
@media (max-width: 768px) {
  .contact_section_2 .form .row:not(:first-child) {
    margin-top: 18px;
  }
}
@media (min-width: 768px) {
  .contact_section_2 .form .row .column:first-child {
    padding-right: 8px;
  }
  .contact_section_2 .form .row .column:last-child {
    padding-left: 8px;
  }
  .contact_section_2 .form .row .column:not(:first-child):not(:last-child) {
    padding: 0 8px;
  }
  .contact_section_2 .form .row .column:only-child {
    padding: 0;
  }
}

footer {
  background-color: #18171D;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 48px 24px;
}
footer > div {
  flex-shrink: 0;
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  footer > div {
    flex-direction: column;
    gap: 16px;
  }
}
footer p {
  margin-bottom: 0;
}
footer .contact-info {
  font-size: 14px;
  font-weight: 900;
}
footer .social ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
footer .copy,
footer .partner {
  font-size: 8px;
  font-weight: 900;
}
footer .copy a,
footer .partner a {
  color: inherit;
}

.btn {
  display: block;
  padding: 16px;
  width: fit-content;
  background: #00FFC6;
  font-size: 12px;
  border: 0;
  color: #18171D;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}
.btn:hover {
  background-color: #18171D;
  color: #fff;
  text-decoration: none;
  transition: 300ms ease-in;
}
.dark .btn, .open .btn {
  color: #fff;
  border-color: #fff;
}
.dark .btn:hover, .open .btn:hover {
  background-color: #fff;
  color: #18171D;
}
