@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  line-height: 1.5;
  font-family: 'Poppins', sans-serif;
  font-style: normal;
}
a:link {
  text-decoration: none;
}
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:active {
  text-decoration: none;
}
html {
  -ms-overflow-style: none; /* Internet Explorer and Edge */
  scrollbar-width: none; /* Firefox */
}
::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}
body {
  max-width: 1920px;
  margin: auto;
  background-color: #e8dccb;
}
header {
  background-color: #1f2d28;
  height: 150px;
  align-content: center;
}
#logo {
  height: 50px;
  cursor: pointer;
}
#nav {
  background-color: #e8dccb;
  width: 90%;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  margin: auto;
  padding: 15px;
  align-items: center;
  font-weight: 500;
  gap: 50px;
}
#nav > div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  text-align: center;
}
#nav > div > li > a {
  color: #1f2d28;
  
}
main {
  text-align: center;
}
#openBeOurPartnerDialog{
  cursor: pointer;
}
#beOurPartnerDialog {
  background-color: #e8dccb;
  color: #1f2d28;
}
#beOurPartnerDialog div form {
  background-color: #e8dccb;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
}
#beOurPartnerDialog div form h2 {
  color: #1f2d28;
  font-family: 'Playfair Display', serif;
  font-size: 2em;
  font-weight: bold;
  text-align: center;
}
#beOurPartnerDialog div form p {
  text-align: center;
  color: #1f2d28;
}
#hero {
  background-color: #1f2d28;
  color: white;
  height: 500px;
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
}
#hero h1 {
  font-size: 3em;
  font-weight: 300;
  color: #e8dccb;
}
#hero h1 > span {
  font-weight: bold;
}
#hero > img {
  margin-top: 50px;
  width: 60%;
}
#features {
  display: flex;
  justify-content: space-around;
  background-color: #1f2d28;
  padding-top: 60px;
  padding-bottom: 90px;
}
#features article div div {
  display: flex;
  color: #e8dccb;
  gap: 10px;
}
#features article div img {
  height: 30px;
}
#features article div h3 {
  font-size: 1.25em;
  font-weight: 300;
}
#features article div p {
  color: #a67950;
  font-size: 0.5em;
}
.title {
  background-color: #e8dccb;
  font-family: 'Playfair Display', serif;
  font-size: 2em;
  font-weight: bold;
  padding: 30px;
  color: #1f2d28;
}
.subtitle {
  background-color: #e8dccb;
  font-size: 1.25em;
  padding: 30px;
  color: #1f2d28;
  margin-top: -45px;
}
#services {
  background-color: #e8dccb;
  display: flex;
  justify-content: start;
  padding: 30px;
  gap: 30px;
  overflow: scroll;
}
.servicesCards {
  margin-top: -30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  background-color: #1f2d28;
  color: white;
  padding: 30px;
  height: 485px;
  width: 280px;
  border-radius: 30px;
  cursor: pointer;
}
.servicesCards > img {
  border-radius: 30px;
  width: 220px;
  min-height: 220px;
  object-fit: cover;
}
.servicesCards > h3 {
  font-size: 2em;
  font-weight: bold;
  font-family: 'Playfair Display', serif;
  color: #e8dccb;
}
.servicesCards > p {
  color: #e8dccb;
}
dialog {
  width: 30%;
  margin: auto;
  border-radius: 10px;
  border: none;
  line-height: 1.5;
  text-align: justify;
}
dialog::backdrop {
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 100;
}
body:has(dialog[open]) {
  overflow: hidden;
  pointer-events: none;
}
dialog[open] {
  pointer-events: auto;
}
.dialogHeader {
  color: #e8dccb;
  height: 45px;
  padding: 15px;
  position: absolute;
  right: 0;
  top: 0;
}
.closeDialog {
  width: 15px;
  cursor: pointer;
}
#mainDialog {
  width: 700px;
  background-color: #1f2d28;
  color: #e8dccb;
  padding: 30px;
}
#mainDialog h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2em;
  font-weight: bold;
  color: #e8dccb;
  margin-bottom: 5px;
  overflow: scroll;
}
#dialogServicesCards {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 15px;
  color: #a67950;
  overflow: scroll;
}
#dialogServicesCards p {
  min-width: 130px;
  text-align: center;
  cursor: pointer;
  padding: 15px;
  border: solid 1px #a67950;
  margin-bottom: 30px;
}
#signaturePartnersTitle {
  margin-top: 20px;
}

.partnersCards {
  display: flex;
  justify-content: start;
  overflow: scroll;
  gap: 15px;
}
.partnersCards > .partnersCards {
  min-width: 230px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  border: solid 1px #a67950;
  color: #e8dccb;
  border-radius: 30px;
}
.partnersCards img {
  border-radius: 100%;
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 15px;
}
#partnersCardsMenus {
  width: 100%;
}
#partnersCardsMenus div {
  width: 100%;
  gap: 300px;
  background-color: #1f2d28;
  color: #e8dccb;
  text-align: center;
}
#partnersCardsMenus div table {
  width: 100%;
  margin-bottom: 30px;
}
#partnersCardsMenus div table tr td:first-child {
  text-align: start;
}
#partnersCardsMenus div table tr td:last-child {
  text-align: end;
}
.dialogContactUs {
  margin-top: 20px;
  width: 100%;
  background-color: #a67950;
  padding: 10px;
  color: #e8dccb;
  border-radius: 10px;
  border: none;
  font-size: 1em;
  cursor: pointer;
  margin-bottom: 30px;
}
.dialogContactUs a {
  color: white;
}
#formDialog div form {
  background-color: #e8dccb;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
}
#formDialog div form h2 {
  color: #1f2d28;
  font-family: 'Playfair Display', serif;
  font-size: 2em;
  font-weight: bold;
  text-align: center;
}
#formDialog div form p {
  text-align: center;
  color: #1f2d28;
}
#gallery {
  background-color: #e8dccb;
  margin-bottom: 60px;
}
#gallery .splide {
  max-width: 1200px;
  margin: 0 auto;
}
#gallery .splide__slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 760px;
  overflow: hidden;
  border-radius: 15px;
}
#gallery .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.my-slider-progress {
  background: #e8dccb;
  height: 4px;
  border-radius: 2px;
  margin-top: 20px;
  overflow: hidden;
}
.my-slider-progress-bar {
  background: #e8dccb;
  height: 100%;
  transition: width 400ms ease;
  width: 0;
}
.splide__pagination__page {
  background: #1f2d28 !important;
}
.splide__pagination__page.is-active {
  background: #a67950 !important;
}
#contact form p {
  text-align: center;
  color: #1f2d28;
}
#aboutUs {
  background-color: #1f2d28;
  color: #a67950;
  
}
#aboutUs h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2em;
  font-weight: bold;
  color: #a67950;
  padding: 30px;
}
.accordionContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.accordion {
  background-color: #e8dccb;
  color: #1f2d28;
  font-size: 1.25em;
  cursor: pointer;
  width: 50%;
  padding: 15px;
  border-radius: 10px;
  border: none;
}
.active, .accordion:hover {
  background-color: #fff;
}
.panel {
  padding: 0 15px;
  background-color: white;
  display: none;
  overflow: hidden;
  width: 50%;
  border-radius: 30px;
  font-size: 1em;
}
.panel p {
  color: #1f2d28!important;
}
#aboutUs p {
  font-size: 1.25em;
  margin-top: -30px;
  color: #e8dccb;
  padding: 30px;
  text-align: justify;
        max-width: 800px;
  margin: auto;
}
#aboutUs img {
  height: 300px;
  border-radius: 100%;
}
#aboutUs h4 {
  color: #e8dccb;
  padding-bottom: 60px;
  font-weight: 300;
}
#contact {
  background-color: #1f2d28;
  display: flex;
  justify-content: center;
  padding: 30px;
}
#contact > form {
  background-color: #e8dccb;
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  border-radius: 30px;
}
#contact > form > h2 {
  color: #1f2d28;
  font-family: 'Playfair Display', serif;
  font-size: 2em;
  font-weight: bold;
}
.form-group input,
select,
textarea {
  -webkit-appearance: none;
  background-color: transparent;
  border-radius: 10px;
  border: solid 1px #1f2d28;
  width: 100%;
  padding: 10px;
}
.form-group label {
  display: flex;
  color: #1f2d28;
  font-size: 0.9em;
  font-weight: 600;
  text-indent: 10px;
}
footer {
  display: flex;
  justify-content: center;
  gap: 5em;
  align-items: center;
  background-color: #272727;
  color: #e8dccb;
  padding: 30px;
}
footer > div > a {
  color: #e8dccb;
  font-size: 0.75em;
}
#instagram {
  height: 30px;
}
#footerWhatsApp {
  visibility: hidden;
}

.submitBtn {
  width: 100%;
  outline: none;
  box-sizing: border-box;
  border: none;
  padding: 10px;
  background-color: #1f2d28;
  border: 1.5px solid #1f2d28;
  border-radius: 10px;
  color: #e8dccb;
  transition: all 0.2s;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
}
.submitBtn:hover {
  background-color: #e8dccb;
  color: #1f2d28;
}

/* Responsive Styles */
@media (max-width: 600px) {
  #logo {
    height: 40px;
  }
  #hero {
    display: block;
    height: 350px;
  }
  #hero h1 {
    font-size: 2.5em;
    padding: 15px;
  }
  #hero > img {
    width: 95%;
    margin-top: 30px;
  }
  #features {
    display: block;
    padding-top: 90px;
    padding-bottom: 0px;
  }
  #features article {
    padding-bottom: 30px;
  }
  #features article div div {
    justify-content: center;
  }
  #nav {
    font-size: 0.60em;
    gap: 10px;
  }
  #nav > div {
    gap: 10px;
  }
  #servicesSelect select {
    width: 100%;
  }
  #mainDialog {
    width: 90%;
  }
  #partners {
    justify-content: start;
  }
  .accordion {
  width: 85%;
}
.panel {
  width: 85%;
  font-size: .6em;
}
  #contact > form {
    width: 100%;
  }
  dialog {
    width: 90%;
  }
  footer {
    gap: 0.8em;
  }

  #gallery {
    padding: 0 30px;
  }

  #gallery .splide__slide {
    height: 250px;
  }

  #gallery .splide {
    max-width: 100%;
  }
}
