* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

select, input, textarea, button, fieldset {
  border: none;
  padding: 0;
  margin: 0;
  background: transparent;
}

figure {
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  line-height: 0;
}
figure img {
  width: 100%;
  height: 100%;
}

i, ion-icon {
  line-height: 0;
}

ul, li, dt {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

html {
  font-family: "Barlow", sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
  position: relative;
}

:focus {
  outline: 0;
}

body {
  background: #ffffff;
  color: #4B4A4E;
  overflow-x: hidden;
}

body, input, textarea, button {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: 1rem;
}

fieldset {
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding-block-start: 0;
  padding-inline-start: 0;
  padding-inline-end: 0;
  padding-block-end: 0;
}

.btn {
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  font: 400 1rem/1.5 "Merriweather", sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all linear 0.375s;
}
.btn a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.btn a i, .btn a ion-icon {
  font-size: 1.375rem;
}
.btn.outline.white {
  color: #ffffff;
  border: 1px solid #ffffff;
}
.btn.outline.white:hover {
  background-color: #B1843B;
  border-color: #B1843B;
}
.btn.outline.primary {
  color: #B1843B;
  border: 1px solid #B1843B;
}
.btn.outline.primary:hover {
  color: #ffffff;
  background-color: #B1843B;
  border-color: #B1843B;
}
.btn.outline.gray {
  color: #0B0A0C;
  border: 1px solid #0B0A0C;
}
.btn.outline.gray:hover {
  color: #ffffff;
  background-color: #0B0A0C;
  border-color: #0B0A0C;
}
@media screen and (max-width: 480px) {
  .btn {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }
}

.header {
  width: 100%;
  padding: 0.875rem 0;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.header .container:after {
  width: 110%;
  height: 1px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: -22px;
  display: block;
  content: "";
  background-color: #5D5E62;
}
.header_logo img:first-of-type {
  display: none;
}
.header .menu_toggle {
  display: none;
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 100;
}
.header .menu_toggle .bar {
  padding: 0;
  width: 30px;
  height: 4px;
  background-color: #e9c995;
  display: block;
  border-radius: 4px;
  transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out, transform 0.4s ease-in-out 0.4s;
  position: absolute;
}
.header .menu_toggle .bar.bar1 {
  top: 0;
}
.header .menu_toggle .bar.bar2, .header .menu_toggle .bar.bar3 {
  top: 12px;
}
.header .menu_toggle .bar.bar3 {
  right: 0;
}
.header .menu_toggle .bar.bar4 {
  bottom: 0;
}
.header .menu_toggle .bar4 {
  top: 12px;
}
.header .menu_toggle .bar5 {
  bottom: 2px;
}
.header .menu_toggle .bar2 {
  width: 1px;
  transform: rotate(90deg);
  left: 12px;
}
.header .menu_toggle .bar3 {
  width: 1px;
  left: 12px;
}
.header_nav {
  width: 65%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_nav_menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header_nav_menu .menu_item a {
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25;
  color: #A0A0A0;
}
.header_nav_menu .menu_item.active a, .header_nav_menu .menu_item:hover a {
  color: #B1843B;
  font-weight: 600;
}
.header .btn {
  border: 1px solid #B1843B;
  color: #B1843B;
}
.header .btn:hover {
  background-color: #B1843B;
  color: #ffffff;
}
.header.fixed {
  position: fixed;
  z-index: 99;
}
.header.fixed .header_logo img:first-of-type {
  display: block;
}
.header.fixed .header_logo img:last-of-type {
  display: none;
}
.header.fixed .header_nav_menu .menu_item.active a, .header.fixed .header_nav_menu .menu_item:hover a {
  color: #ffffff;
  font-weight: 600;
}
.header.fixed .header_nav .btn {
  border: 1px solid #ffffff;
  color: #ffffff;
}
.header.fixed .header_nav .btn:hover {
  background-color: #ffffff;
  color: #0B0A0C;
}
.header.scrolled {
  background-color: #ffffff;
  position: fixed;
  z-index: 99;
}
.header.scrolled .header_logo img:first-of-type {
  display: none;
}
.header.scrolled .header_logo img:last-of-type {
  display: block;
}
.header.scrolled .header_nav_menu .menu_item.active a, .header.scrolled .header_nav_menu .menu_item:hover a {
  color: #B1843B;
  font-weight: 600;
}
.header.scrolled .header_nav .btn {
  border: 1px solid #B1843B;
  color: #B1843B;
}
.header.scrolled .header_nav .btn:hover {
  background-color: #B1843B;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .header_logo {
    position: relative;
    z-index: 100;
  }
  .header .menu_toggle {
    display: block;
  }
  .header .menu_toggle.active .bar1 {
    top: 13.5px;
    background-color: transparent;
  }
  .header .menu_toggle.active .bar2 {
    left: 0px;
    width: 30px;
    transform: rotate(45deg);
  }
  .header .menu_toggle.active .bar3 {
    left: 0;
    width: 30px;
    transform: rotate(-45deg);
  }
  .header .menu_toggle.active .bar4 {
    background-color: transparent;
  }
  .header .menu_toggle.active .bar5 {
    bottom: 13.5px;
    background-color: transparent;
  }
  .header_nav {
    width: 100vw;
    height: 100vh;
    background: #ddb472;
    padding-left: 7.5vw;
    padding-top: 124px;
    position: fixed;
    top: 0;
    left: 150%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    transition: left ease-in-out 0.5s;
  }
  .header_nav_menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.875rem;
  }
  .header_nav_menu .menu_item a {
    color: #ffffff;
  }
  .header_nav .btn {
    margin-top: 1.5rem;
  }
  .header_nav.active {
    z-index: 99;
    left: 0;
  }
}

.footer {
  width: 100%;
  padding: 2rem 0;
  background-color: #0B0A0C;
}
.footer_top {
  width: 85%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2.5rem;
}
.footer_top_logo {
  width: 20%;
}
.footer_top_nav_item {
  padding-bottom: 2rem;
}
.footer_top_nav_item h4 {
  font-family: "Merriweather", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 30.17px;
  color: #B1843B;
  margin-bottom: 0.5rem;
}
.footer_top_nav_item .infos h6 {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 19.36px;
  color: #ffffff;
}
.footer_top_nav_item .infos p {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 19.36px;
  color: #A0A0A0;
}
.footer_top_nav_item .infos .social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer_top_nav_item .infos .social ion-icon {
  font-size: 24px;
  color: #B1843B;
}
.footer_top_nav:last-of-type {
  align-self: flex-start;
}
.footer_bottom {
  width: 100%;
  border-top: 1px solid #4B4A4E;
  padding-top: 2rem;
}
.footer_bottom p {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 0.1em;
  text-align: center;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer_bottom p a {
  margin-left: 4px;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  .footer_top {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .footer_top_logo {
    width: 35%;
    margin-bottom: 1.5rem;
  }
  .footer_bottom p {
    font-size: 0.75rem;
    line-height: 1.5;
    flex-direction: column;
  }
}

/* Custom ScrollBar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #bb9250;
}

::-webkit-scrollbar-thumb {
  background: #e9c995;
}

::-webkit-scrollbar-thumb:hover {
  background: #e9c995;
}

.container {
  width: 85vw;
  margin: 0 auto;
}
@media screen and (min-width: 1440px) {
  .container {
    width: 70vw;
  }
}

.title_section {
  font-family: "Merriweather", sans-serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 80.45px;
  color: #ffffff;
}
.title_section span {
  color: #B1843B;
}
@media screen and (max-width: 767px) {
  .title_section {
    font-size: 3rem;
    line-height: 1.5;
  }
}

.banner-interna {
  width: 100%;
  padding: 184px 0;
  position: relative;
  z-index: 1;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.banner-interna::before {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  content: "";
  background-color: rgba(0, 0, 0, 0.6980392157);
}
.banner-interna_content {
  width: 75%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.banner-interna_content h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 32px;
  color: #5D5E62;
}
@media screen and (max-width: 767px) {
  .banner-interna {
    padding: 104px 0;
  }
  .banner-interna_content {
    width: 100%;
  }
  .banner-interna_content .title_section {
    font-size: 1.875rem;
  }
}

.headerfix {
  padding-top: 86px !important;
}
@media screen and (max-width: 480px) {
  .headerfix {
    padding-top: 56px !important;
  }
}

.modal {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal.hide {
  display: none;
}
.modal .overlay {
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.4666666667);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.modal_content {
  width: 45%;
  position: relative;
  z-index: 2;
}
.modal_content .close_modal {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  cursor: pointer;
}
.modal_content .close_modal ion-icon {
  font-size: 32px;
  color: #ffffff;
}
.modal_content img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 1;
}

#whats {
  position: fixed;
  right: 14px;
  bottom: 18px;
  z-index: 2;
  background-color: #35c369;
  border-radius: 50%;
  width: 62px;
  height: 62px;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
#whats ion-icon {
  color: #fff;
  font-size: 28px;
  position: relative;
}

.hero {
  width: 100%;
  height: 110vh;
  display: block;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero_videobg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero::before {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  content: "";
  background-color: rgba(0, 0, 0, 0.3764705882);
}
.hero_content {
  width: 50%;
  position: relative;
  z-index: 9;
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero_content h1 {
  font-family: "Merriweather", sans-serif;
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 90.5px;
  text-align: center;
}
.hero_content p {
  width: 75%;
  margin: 1rem 0;
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
  color: #A0A0A0;
}
.hero_content .btn {
  margin-top: 1.5rem;
}
.hero_down {
  position: absolute;
  z-index: 9;
  bottom: 15%;
}
@media screen and (max-width: 767px) {
  .hero {
    height: 95vh;
  }
  .hero_content {
    width: 100%;
  }
  .hero_content h1 {
    font-size: 3rem;
    line-height: 1.25;
  }
  .hero_content p {
    width: 90%;
    font-size: 0.875rem;
    line-height: 1.75;
  }
}

.about {
  width: 100%;
  padding: 4rem 0;
  background-color: #0B0A0C;
}
.about_cards {
  width: 100%;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about_cards_card {
  width: 30%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.about_cards_card .card_desc h4 {
  font-family: "Merriweather", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 30.17px;
  color: #ffffff;
}
.about_cards_card .card_desc p {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #5D5E62;
}
.about_desc {
  width: 100%;
  padding: 2.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about_desc .title_section {
  width: 30%;
}
.about_desc_infos {
  width: 70%;
  padding-left: 48px;
  position: relative;
}
.about_desc_infos p {
  padding: 1.5rem 0;
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
  color: #A0A0A0;
}
.about_desc_infos:before {
  width: 1px;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #5D5E62;
}
@media screen and (max-width: 767px) {
  .about_cards {
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2rem;
  }
  .about_cards_card {
    width: 100%;
  }
  .about_cards_card .card_icon {
    width: 48px;
    height: 48px;
  }
  .about_cards_card .card_desc {
    width: calc(100% - 48px);
  }
  .about_cards_card .card_desc h4 {
    font-size: 1.375rem;
  }
  .about_cards_card .card_desc p {
    font-size: 0.875rem;
  }
  .about_desc {
    flex-wrap: wrap;
  }
  .about_desc .title_section {
    width: 100%;
  }
  .about_desc_infos {
    width: 100%;
    padding-left: 24px;
  }
  .about_desc_infos p {
    font-size: 1rem;
    line-height: 1.5;
    padding: 1rem 0;
  }
}

.team {
  width: 100%;
  padding: 7.5rem 0;
  background: url("../img/about/team-bg.jpg") center no-repeat;
}
.team.interna {
  background: none;
  background-color: #343339;
}
.team .title_section {
  width: 100%;
  padding: 2rem 0;
  text-align: center;
}
.team_cards {
  width: 100%;
  padding: 2rem 0;
  margin-top: 3rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
}
.team_cards_card {
  width: 25%;
}
.team_cards_card .card_image {
  width: 100%;
}
.team_cards_card .card_desc {
  width: 100%;
  padding: 0.875rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.team_cards_card .card_desc h5 {
  font-family: "Merriweather", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 20.11px;
  text-align: center;
  color: #B1843B;
}
.team_cards_card .card_desc p {
  width: 70%;
  padding: 0.875rem 0;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  color: #A0A0A0;
}
@media screen and (max-width: 767px) {
  .team {
    background-size: cover;
  }
  .team_cards {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .team_cards_card {
    width: calc(50% - 0.5rem);
  }
  .team_cards_card .card_desc br {
    display: none;
  }
  .team_cards_card .card_desc p {
    width: 100%;
  }
}

.blog_list {
  width: 100%;
  padding: 3.5rem 0;
  background-color: #5D5E62;
}
.blog_list .title_section {
  text-align: center;
}
.blog_list_posts {
  width: 100%;
  padding-top: 3.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.blog_list_posts .post {
  width: calc(33.3333333333% - 1.5rem);
  padding: 1.5rem 1rem;
  background-color: #ffffff;
  border-radius: 8px;
  transition: all linear 0.35s;
}
.blog_list_posts .post_image {
  width: 100%;
}
.blog_list_posts .post_desc {
  width: 100%;
  padding: 1rem 0;
}
.blog_list_posts .post_desc h5 {
  font-family: "Merriweather", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 20.11px;
  color: #5D5E62;
}
.blog_list_posts .post_desc h3 {
  margin: 1.125rem 0;
  font-family: "Merriweather", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 20.11px;
  color: #0B0A0C;
}
.blog_list_posts .post_desc p {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 24px;
  color: #0B0A0C;
}
.blog_list_posts .post_desc .btn {
  display: block;
  width: 100%;
  margin-top: 0.875rem;
}
.blog_list_posts .post:hover {
  scale: 1.025;
}
@media screen and (max-width: 767px) {
  .blog_list_posts {
    flex-direction: column;
  }
  .blog_list_posts .post {
    width: 100%;
  }
}

.testimonial {
  width: 100%;
  padding: 7rem 0 12rem 0;
  position: relative;
  background: url("../img/about/testimonial_bg.jpg");
}
.testimonial::before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-color: rgba(0, 0, 0, 0.8470588235);
}
.testimonial_slider {
  width: 75%;
  padding: 4rem 3.5rem;
  background-color: #4B4A4E;
}
.testimonial_slider_slide {
  width: 100%;
}
.testimonial_slider_slide .slide_top {
  width: 100%;
  padding: 1.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.testimonial_slider_slide .slide_top img {
  width: 84px;
}
.testimonial_slider_slide .slide_top p {
  padding-top: 14px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: #ffffff;
}
.testimonial_slider_slide .slide_bot {
  width: 50%;
  margin-top: 1rem;
}
.testimonial_slider_slide .slide_bot .testimonial_info {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.testimonial_slider_slide .slide_bot .testimonial_info picture {
  width: 84px;
  height: 84px;
}
.testimonial_slider_slide .slide_bot .testimonial_info picture img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.testimonial_slider_slide .slide_bot .testimonial_info .desc {
  width: 50%;
}
.testimonial_slider_slide .slide_bot .testimonial_info .desc h6 {
  font-family: "Merriweather", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 20.11px;
  text-transform: uppercase;
  color: #B1843B;
}
.testimonial_slider_slide .slide_bot .testimonial_info .desc p {
  margin-top: 8px;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 24px;
  color: #A0A0A0;
}
.testimonial_slider .swiper-pagination {
  width: 50%;
  left: unset;
  right: 0;
  bottom: 16px;
}
.testimonial_slider .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  border: 1px solid #B1843B;
}
.testimonial_slider .swiper-pagination-bullet-active {
  background-color: #B1843B;
}

.contact {
  width: 100%;
  padding: 2.5rem 0;
  background-color: #343339;
}
.contact .container {
  display: flex;
  justify-content: space-between;
}
.contact .title_section {
  font-size: 2rem;
}
.contact_form {
  width: 45%;
}
.contact_form_form {
  width: 100%;
}
.contact_form_form input, .contact_form_form textarea, .contact_form_form select {
  width: 100%;
  background-color: #5D5E62;
  padding: 0.875rem 1rem;
  margin-bottom: 1rem;
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 32px;
  color: #A0A0A0;
}
.contact_form_form input::-moz-placeholder, .contact_form_form textarea::-moz-placeholder, .contact_form_form select::-moz-placeholder {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 32px;
  color: #A0A0A0;
}
.contact_form_form input::placeholder, .contact_form_form textarea::placeholder, .contact_form_form select::placeholder {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 32px;
  color: #A0A0A0;
}
.contact_form_form .btn {
  display: block;
  float: right;
}
.contact_infos {
  width: 45%;
}
.contact_infos_local h6 {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 19.36px;
  color: #ffffff;
  margin-bottom: 8px;
}
.contact_infos_local p {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 19.36px;
  color: #A0A0A0;
}
.contact_infos_local p:last-of-type {
  margin-top: 0.875rem;
}
.contact_infos_local p a:last-of-type:not(:first-of-type) {
  margin-left: 8px;
}
.contact_infos_map {
  width: 100%;
  margin-top: 1.5rem;
}
.contact_infos_map iframe {
  width: 100%;
  height: 248px;
}
@media screen and (max-width: 767px) {
  .contact .container {
    flex-wrap: wrap;
  }
  .contact_form {
    width: 100%;
  }
  .contact_form h2 {
    font-size: 1.875rem;
    margin-bottom: 2rem;
  }
  .contact_form_form input, .contact_form_form textarea, .contact_form_form select {
    font-size: 1rem;
  }
  .contact_form_form input::-moz-placeholder, .contact_form_form textarea::-moz-placeholder, .contact_form_form select::-moz-placeholder {
    font-size: 1rem;
  }
  .contact_form_form input::placeholder, .contact_form_form textarea::placeholder, .contact_form_form select::placeholder {
    font-size: 1rem;
  }
  .contact_infos {
    width: 100%;
    margin-top: 2.5rem;
  }
}

.about-interna {
  width: 100%;
  background-color: #343339;
}
.about-interna .about_desc_text {
  width: 50%;
  padding-right: 14px;
}
.about-interna .about_desc_text h2 {
  font-family: "Merriweather", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #B1843B;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 1px solid #5D5E62;
}
.about-interna .about_desc_text p {
  padding: 1rem 0;
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 32px;
  color: #ffffff;
}
.about-interna .about_desc_infos {
  width: 50%;
}
.about-interna .about_desc_infos dl {
  width: 100%;
}
.about-interna .about_desc_infos dl dt {
  width: 100%;
  margin-bottom: 0.875rem;
}
.about-interna .about_desc_infos dl dt h4 {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Merriweather", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 32px;
  color: #B1843B;
}
.about-interna .about_desc_infos dl dt p {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 32px;
  color: #A0A0A0;
  padding: 0.875rem 0;
}
@media screen and (max-width: 767px) {
  .about-interna .about_desc_text {
    width: 100%;
    padding: 0;
  }
  .about-interna .about_desc_text h2 {
    font-size: 1.375rem;
  }
  .about-interna .about_desc_text p {
    font-size: 1rem;
    line-height: 1.375;
  }
  .about-interna .about_desc_infos {
    margin-top: 2rem;
    width: 100%;
  }
}

.about_gallery {
  width: 100%;
  padding: 4rem 0;
  background-color: #343339;
}
.about_gallery_slider {
  width: 100%;
  position: relative;
}
.about_gallery_slider .btn-slider {
  color: #B1843B;
  cursor: pointer;
  position: absolute;
  top: 50%;
  z-index: 9;
}
.about_gallery_slider .btn-slider ion-icon, .about_gallery_slider .btn-slider i {
  font-size: 48px;
}
.about_gallery_slider .btn-slider.btn-prev {
  left: -64px;
}
.about_gallery_slider .btn-slider.btn-next {
  right: -64px;
}
@media screen and (max-width: 767px) {
  .about_gallery {
    padding: 0;
    padding-bottom: 7.5rem;
  }
}

.services-list {
  width: 100%;
  padding: 4rem 0;
  background-color: #343339;
}
.services-list .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.875rem;
}
.services-list_service {
  width: calc(30% - 2.5rem);
  background-color: #ffffff;
  border-radius: 8px;
  padding: 1.5rem 1rem;
}
.services-list_service_top {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.services-list_service_top .service_icon {
  width: 42px;
}
.services-list_service_top h3 {
  width: 85%;
  margin: 0.875rem 0;
  text-align: center;
  font-family: "Merriweather", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 20.11px;
  color: #0B0A0C;
}
.services-list_service_content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.services-list_service_content p {
  width: 80%;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
}
.services-list_service_content .btn {
  margin-top: 0.875rem;
  width: 85%;
  text-align: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .services-list .container {
    gap: 0.875rem;
  }
  .services-list_service {
    width: 100%;
  }
  .services-list_service_content p {
    width: 90%;
  }
}

.service-details {
  width: 100%;
  padding: 4rem 0;
  background-color: #343339;
}
.service-details .container {
  display: flex;
  justify-content: space-between;
}
.service-details_sidebar {
  width: 30%;
}
.service-details_sidebar_menu {
  width: 100%;
}
.service-details_sidebar_menu .menu_item {
  width: 100%;
  margin-bottom: 0.375rem;
  padding: 0.75rem 1rem;
  background-color: #5D5E62;
  color: #ffffff;
  cursor: pointer;
  transition: background-color linear 0.35s;
}
.service-details_sidebar_menu .menu_item a {
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 32px;
}
.service-details_sidebar_menu .menu_item.active, .service-details_sidebar_menu .menu_item:hover {
  background-color: #B1843B;
}
.service-details_content {
  width: 65%;
}
.service-details_content h2 {
  font-family: "Merriweather", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 40.22px;
  color: #B1843B;
}
.service-details_content_description {
  width: 100%;
  margin-top: 1rem;
}
.service-details_content_description h3, .service-details_content_description h4, .service-details_content_description h5, .service-details_content_description h6 {
  color: #ffffff;
  font-family: "Merriweather", sans-serif;
  font-weight: 700;
  margin: 0.875rem 0 0.5rem 0;
}
.service-details_content_description ul {
  width: 100%;
  margin: 0.5rem 0 1rem 0;
  padding-left: 0.5rem;
}
.service-details_content_description ul li {
  list-style: disc;
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
  color: #A0A0A0;
}
.service-details_content_description p {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
  color: #A0A0A0;
}
@media screen and (max-width: 767px) {
  .service-details .container {
    flex-direction: column-reverse;
  }
  .service-details_sidebar {
    width: 100%;
    margin-top: 1.5rem;
  }
  .service-details_content {
    width: 100%;
  }
  .service-details_content_description ul li {
    font-size: 1rem;
  }
  .service-details_content_description p {
    font-size: 1rem;
  }
}

.post-page {
  width: 100%;
  padding: 2.5rem 0;
  background-color: #343339;
}
.post-page .container {
  display: flex;
  justify-content: space-between;
}
.post-page_desc {
  width: 50%;
}
.post-page_desc h2, .post-page_desc h3, .post-page_desc h4, .post-page_desc h5, .post-page_desc h6 {
  font-family: "Merriweather", sans-serif;
  font-weight: 400;
  color: #B1843B;
  margin-bottom: 1.5rem;
}
.post-page_desc p {
  font-family: Inter;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.75;
  color: #A0A0A0;
  padding: 1.5rem 0;
}
.post-page_image {
  width: 45%;
}
.post-page_image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .post-page .container {
    flex-direction: column-reverse;
  }
  .post-page_desc {
    width: 100%;
  }
  .post-page_image {
    width: 100%;
    margin-bottom: 1.5rem;
  }
}/*# sourceMappingURL=styles.css.map */