#splash {
  height: 100vh;
  width: 100%;
  padding: 24px;
  background-image: url("../../assets/image/section-background-black.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#splash-content {
  padding: 24px;
  border: 1px solid #fff;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  justify-content: center;
}

#main-nav {
  height: 634px;
}
@media (max-width: 992px) {
  #main-nav {
    height: 360px;
  }
}

#philosophy {
  cursor: pointer;
}

@keyframes philosophy-open {
  from {
    opacity: 0.2;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 999px;
  }
}
#our-philosophy {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  #our-philosophy {
    flex-direction: column;
  }
}

.philosophy-container {
  display: none;
  gap: 1rem;
  width: 35%;
}
.philosophy-container.open {
  display: grid;
  animation-name: philosophy-open;
  animation-duration: 1.5s;
  row-gap: 2.5rem;
}
@media (max-width: 768px) {
  .philosophy-container {
    width: 100%;
  }
}

.philosophy-item {
  display: flex;
  gap: 8px;
}
.philosophy-item img {
  width: 80px;
  height: 80px;
}
.philosophy-item .title {
  font-size: 1.5rem;
  color: #a36e52;
  font-weight: bold;
  text-align: left;
}
.philosophy-item .subtitle {
  font-size: 1rem;
  font-weight: bold;
  color: #a36e52;
  text-align: left;
}
.philosophy-item .description {
  font-size: 1rem;
  text-align: left;
}

#area-of-practice {
  margin: 0 auto;
  background-color: #2c344c;
  margin-top: -4rem;
  border-radius: 1.25rem;
  margin-bottom: 5.75rem;
  padding: 4.5rem 1.75rem;
}
@media (max-width: 992px) {
  #area-of-practice {
    margin: -4rem 1.25rem 5.75rem 1.25rem;
  }
}
#area-of-practice .area-of-practice-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 0 auto;
  margin-top: 2rem;
  justify-content: center;
}
@media (max-width: 992px) {
  #area-of-practice .area-of-practice-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}
#area-of-practice .area-of-practice-container .area-of-practice-item:last-child {
  grid-column-start: 2;
}
@media (max-width: 992px) {
  #area-of-practice .area-of-practice-container .area-of-practice-item:last-child {
    grid-column-start: auto;
  }
}
#area-of-practice .area-of-practice-container .area-of-practice-item {
  position: relative;
  border-radius: 1.125rem;
  padding: 1.25rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  text-align: left;
  color: white;
  min-height: 221px;
  background: rgba(0, 0, 0, 0);
}
@media (max-width: 576px) {
  #area-of-practice .area-of-practice-container .area-of-practice-item {
    padding: 0.5rem;
    min-height: 120px;
  }
}
#area-of-practice .area-of-practice-container .area-of-practice-item:hover {
  background: rgb(0, 0, 0);
}
#area-of-practice .area-of-practice-container .area-of-practice-item:hover .background {
  opacity: 0.1;
  transition: opacity 0.25s ease-in-out;
}
#area-of-practice .area-of-practice-container .area-of-practice-item .content {
  position: relative;
  inset: 0;
  z-index: 10;
}
@media (max-width: 576px) {
  #area-of-practice .area-of-practice-container .area-of-practice-item .content img {
    width: 36px;
    height: 37px;
  }
}
#area-of-practice .area-of-practice-container .area-of-practice-item .background {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 1.125rem;
  z-index: 0;
  inset: 0;
}
#area-of-practice .area-of-practice-container .area-of-practice-item .background img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#area-of-practice .area-of-practice-container .area-of-practice-item .title {
  font-weight: bold;
  font-size: 1.125rem;
  margin-top: 8px;
}
@media (max-width: 576px) {
  #area-of-practice .area-of-practice-container .area-of-practice-item .title {
    font-size: 0.75rem;
  }
}
#area-of-practice .area-of-practice-container .area-of-practice-item .description {
  font-size: 0.725rem;
  display: none;
}

#contact-us {
  width: 100%;
  background-image: url("../../assets/image/section-background-brown.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: white;
}
#contact-us .container {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  #contact-us .container {
    flex-direction: column;
    gap: 2rem;
  }
}
#contact-us .general-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 35%;
}
@media (max-width: 768px) {
  #contact-us .general-info {
    width: 100%;
  }
  #contact-us .general-info br {
    display: none;
  }
}
#contact-us .contact-form {
  width: 50%;
}
@media (max-width: 768px) {
  #contact-us .contact-form {
    width: 100%;
  }
}
#contact-us .contact-form .form-group {
  margin-bottom: 2rem;
}
#contact-us .contact-form .form-group label {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  display: block;
}
#contact-us .contact-form .form-group .form-control {
  width: 100%;
  padding: 0.5rem;
  color: black;
}

#about-us {
  display: flex;
  gap: 2.5rem;
}
@media (max-width: 992px) {
  #about-us {
    flex-direction: column;
  }
}
#about-us .description {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#about-us .description p {
  text-align: justify;
  font-size: 1.125rem;
}
#about-us .description h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

#our-people {
  margin: 5rem 0;
}
#our-people .title {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 3rem 0;
  text-transform: uppercase;
  text-align: center;
}
#our-people .people-container {
  display: flex;
  justify-content: center;
  gap: 4rem;
}
@media (max-width: 992px) {
  #our-people .people-container {
    flex-direction: column;
    gap: 1rem;
  }
}
#our-people .people-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  align-items: center;
}
#our-people .people-item .profile {
  width: 300px;
  height: 300px;
  object-fit: cover;
  background-position: center;
}
#our-people .people-item .title {
  color: #a36e52;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
  text-align: center;
}
#our-people .people-item .description {
  color: #a36e52;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
}
#our-people .people-item .contact {
  display: flex;
  gap: 1rem;
  align-items: center;
}
#our-people .people-item .contact .icon {
  width: 24px;
  height: 24px;
}

#partners {
  display: flex;
  justify-content: start;
  flex-direction: column;
  gap: 2rem;
  font-size: 1.125rem;
}
#partners .partner {
  padding: 5.75rem 0;
}
#partners .partner:nth-child(even) {
  background-color: #e8e8e8;
}
#partners .people-item {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: flex-start;
  gap: 2rem;
}
#partners .people-item .profile {
  width: 300px;
  height: 300px;
  object-fit: cover;
  background-position: center;
}
#partners .people-item .title {
  color: #a36e52;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
}
#partners .people-item .description {
  color: #a36e52;
  font-size: 1rem;
  font-weight: bold;
  text-align: left;
}
#partners .people-item .contact {
  display: flex;
  gap: 1rem;
  align-items: center;
}
#partners .people-item .contact .icon {
  width: 24px;
  height: 24px;
}
#partners .about {
  font-size: 1.125rem;
  text-align: justify;
}
#partners .feature-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#partners .list {
  list-style-type: disc;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 20px;
}

.carousel-wrapper {
  overflow: hidden;
}

.carousel-wrapper * {
  box-sizing: border-box;
}

.carousel {
  border-radius: 8px;
  position: relative;
  padding: 24px;
}

.carousel > ul {
  margin: 0;
  list-style-type: none;
  padding: 24px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 500ms opacity ease-in-out;
}

.slide > img {
  display: block;
  margin: 0 auto;
  height: auto;
  object-fit: cover;
  object-position: center;
  animation-name: slide-right;
  animation-duration: 0.5s;
}

.slide:not([data-active]) {
  display: none;
}

.slide[data-active] {
  opacity: 1;
  z-index: 1;
  transition-delay: 0ms;
  position: relative;
}

[data-carousel-dot-button][data-active] {
  background-color: #222;
  animation-name: carousel-fade;
  animation-duration: 0.5s;
}

[data-carousel-button] {
  z-index: 10;
}

.slide-right {
  animation-name: slide-right;
  animation-duration: 0.75s;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.dots button {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #2c344c;
}
.dots button .active {
  background-color: #2c344c;
}

@keyframes carousel-fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@keyframes slide-right {
  from {
    transform: translateX(25%);
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 1100px) {
  .carousel {
    height: auto;
  }
  .carousel > ul {
    padding: 24px 0;
  }
  .slide > img {
    width: 100% !important;
  }
  .carousel-title {
    width: 100%;
  }
}
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 24px;
}
@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
}
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 1400px) {
  .container {
    max-width: 1140px;
  }
}

.bg-gray {
  background-color: #e8e8e8;
}

.text-primary {
  color: #2c344c;
}

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

html {
  scroll-behavior: smooth;
}

#detail-nav {
  background-image: url("../../assets/image/section-background-black.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 360px;
}

nav {
  background-image: url("../../assets/image/hero-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
nav div.nav-container {
  padding: 40px;
  display: flex;
  width: 100%;
  justify-content: space-between;
}
@media (max-width: 768px) {
  nav div.nav-container {
    padding: 24px;
  }
}
nav div.nav-container ul {
  display: flex;
  color: #fff;
  width: 30%;
  justify-content: space-between;
}
@media (max-width: 992px) {
  nav div.nav-container ul {
    display: none;
  }
}
nav div.nav-container #hamburger {
  display: none;
  color: white;
}
@media (max-width: 992px) {
  nav div.nav-container #hamburger {
    display: block;
  }
}
nav .nav-title-container {
  display: flex;
  justify-content: center;
  height: 50%;
}
nav .nav-title-container #page-title {
  color: #a36e52;
  font-size: 4rem;
  font-weight: bold;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  nav .nav-title-container #page-title {
    font-size: 3rem;
  }
}

body {
  position: relative;
}

.backdrop {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.backdrop.open {
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s ease-in-out;
}

aside {
  position: fixed;
  background: white;
  height: 100%;
  z-index: 20;
  top: 0;
  width: 18rem;
  transform: translateX(-18rem);
  transition: transform 0.25s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 24px;
}
aside ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
aside ul li.nav-item-sm .link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
aside ul li.nav-item-sm .nav-item-sm-list {
  padding-top: 4px;
  padding-left: 16px;
  font-size: 0.875rem;
  max-height: 0;
  transition: max-height 0.275s ease-in-out;
  overflow: hidden;
}
aside ul li.nav-item-sm.list.open .nav-item-sm-list {
  max-height: 500px !important;
}

@media (max-width: 992px) {
  aside.open {
    transform: translateX(0);
  }
}
@keyframes nav-item-list-open {
  from {
    opacity: 0.4;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.nav-item {
  position: relative;
}
.nav-item:hover .nav-item-list {
  display: block;
  animation-name: nav-item-list-open;
  animation-duration: 0.25s;
}
.nav-item .nav-item-list {
  background-color: white;
  position: absolute;
  border-radius: 8px;
  min-width: 180px;
  display: none;
}
.nav-item .nav-item-list ul {
  display: flex;
  width: 100%;
  flex-direction: column;
  padding: 8px;
  gap: 0.5rem;
}
.nav-item .nav-item-list ul li {
  color: black;
}
.nav-item .nav-item-list ul li:hover {
  font-weight: bold;
}

section {
  padding: 5.75rem 0;
}

footer, section.dense {
  padding: 0.5rem 0;
}

.contact-info {
  display: flex;
  gap: 1rem;
  align-items: center;
}

footer {
  background-color: #2c344c;
}
footer .logo {
  width: 260px;
  height: 40px;
  margin-bottom: 2rem;
}
footer .general-info {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: white;
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  footer .general-info {
    width: 100%;
  }
}
@media (max-width: 768px) {
  footer .general-info br {
    display: none;
  }
}
footer .links {
  width: 30%;
}
footer .links ul li {
  color: #a36e52;
  margin-bottom: 0.875rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  footer .links {
    width: 100%;
  }
}
footer .footer-content {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  footer .footer-content {
    flex-direction: column;
    gap: 2rem;
  }
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.25rem;
  color: #2c344c;
}

button[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
  font-weight: bold;
}

.btn {
  border-radius: 1.25rem;
  padding: 0.5rem 1.5rem;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  transition: opacity 0.25s;
}

.btn-primary {
  background-color: #2c344c;
  color: white;
}

.btn-secondary {
  background-color: #a36e52;
  color: white;
}

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