@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");
@keyframes height-animation {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
@keyframes scroll-down-homepage {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
html, body {
  width: 100%;
}

body {
  font-size: 16px;
  min-height: 100vh;
}

p {
  color: #92847B;
}

header {
  position: relative;
  z-index: 5;
}

.image-mask {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  max-height: 100vh;
  max-width: 100%;
  overflow: hidden;
  -webkit-mask-image: url("/assets/images/Clipping.svg");
  mask-image: url("/assets/images/Clipping.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: right;
  mask-position: right;
  -webkit-mask-size: 100%;
  mask-size: 100%;
}
.image-mask img {
  max-width: 100%;
  max-height: 100%;
}

.image-mask--about-us {
  -webkit-mask-image: url("/assets/images/mask-about-us.svg");
  mask-image: url("/assets/images/mask-about-us.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  overflow: hidden;
}
.image-mask--about-us img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
}

.image-mask--main-banner {
  -webkit-mask-image: url("/assets/images/mask-banner.svg");
  mask-image: url("/assets/images/mask-banner.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: right;
  mask-position: right;
}

.section__title h2 {
  font-weight: 600;
  color: #25170D;
  display: inline-block;
  position: relative;
}
.section__title h2::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% + 1rem);
  width: 100px;
  height: 2px;
  background-color: #25170D;
}

.section__number-count {
  color: #4F3524;
  font-size: 4rem;
  font-weight: 600;
}
@media only screen and (max-width: 479.98px) {
  .section__number-count {
    font-size: calc(1.375rem + 1.5vw);
  }
}

.home-section {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 7rem;
  padding-bottom: 7rem;
}
.home-section.home-section--clients {
  width: 100%;
  background-color: #4F3524;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.home-section.home-section--about-us {
  min-height: 100vh;
  width: 100%;
  background-color: #F0E5DD;
}
.home-section.home-section--photo-banner {
  height: 100%;
  width: 100%;
  padding: 0;
}
.home-section.home-section--promo-and-news {
  min-height: 100vh;
  width: 100%;
  background-color: #F0E5DD;
}
.home-section.home-section--portfolio {
  min-height: 100vh;
  width: 100%;
  background-color: #FAF3EE;
  padding-bottom: 1rem;
}
.home-section.home-section--careers {
  min-height: 100vh;
  width: 100%;
  background-color: #FAF3EE;
}

.main-banner {
  position: relative;
  background-color: #FAF3EE;
}
.main-banner .main-banner__carousel {
  z-index: 0;
  position: relative;
}
.main-banner .main-banner__carousel-item {
  height: 100vh;
  min-height: 600px;
}
.main-banner .main-banner__carousel-item-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
}
.main-banner .main-banner__hero-title {
  display: flex;
  max-width: 450px;
}
.main-banner .main-banner__hero-title h1 {
  font-size: 4rem;
  color: #25170D;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.main-banner .main-banner__hero-desc {
  display: flex;
  max-width: 250px;
}
.main-banner .main-banner__hero-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  max-width: 1200px;
  z-index: -1;
}
.main-banner .main-banner__hero-image img {
  min-height: 100vh;
  max-width: 100%;
}
.main-banner .main-banner__hero-video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  z-index: -1;
}
.main-banner .main-banner__hero-video video {
  min-height: 100vh;
}
.main-banner .main-banner__info-box {
  position: absolute;
  bottom: 4rem;
  left: 0;
  width: 100%;
  right: 0;
  pointer-events: none;
}
.main-banner .main-banner__info-box-inner {
  pointer-events: auto;
  max-width: 270px;
}
.main-banner .main-banner__arrow-container {
  display: flex;
  gap: 1rem;
}
.main-banner .main-banner__dots-container {
  position: relative;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .main-banner .main-banner__carousel-item-wrapper {
    align-items: flex-start;
    padding-top: 10rem;
  }
  .main-banner .main-banner__hero-title {
    max-width: 500px;
  }
  .main-banner .main-banner__hero-title h1 {
    font-size: 3rem;
  }
  .main-banner .main-banner__hero-desc {
    max-width: 400px;
  }
  .main-banner .main-banner__hero-image {
    position: absolute;
    top: unset;
    right: 0;
    bottom: 0;
    height: auto;
    z-index: -1;
  }
  .main-banner .main-banner__hero-image img {
    min-height: 550px;
    max-height: 400px;
    max-width: 100%;
    width: 100%;
  }
  .main-banner .main-banner__hero-video {
    position: absolute;
    top: unset;
    right: 0;
    bottom: 0;
    height: auto;
    z-index: -1;
  }
  .main-banner .main-banner__hero-video video {
    min-height: 550px;
    max-height: 400px;
    max-width: 100%;
    width: 100%;
  }
  .main-banner .main-banner__info-box {
    bottom: 5rem;
  }
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .main-banner .main-banner__carousel-item-wrapper {
    align-items: flex-start;
    padding-top: 10rem;
  }
  .main-banner .main-banner__hero-title {
    max-width: 500px;
  }
  .main-banner .main-banner__hero-title h1 {
    font-size: 3rem;
  }
  .main-banner .main-banner__hero-desc {
    max-width: 400px;
  }
  .main-banner .main-banner__hero-image {
    position: absolute;
    top: unset;
    right: 0;
    bottom: 0;
    height: auto;
    z-index: -1;
  }
  .main-banner .main-banner__hero-image img {
    min-height: 550px;
    max-height: 400px;
    max-width: 100%;
    width: 100%;
  }
  .main-banner .main-banner__hero-video {
    position: absolute;
    top: unset;
    right: 0;
    bottom: 0;
    height: auto;
    z-index: -1;
  }
  .main-banner .main-banner__hero-video video {
    min-height: 550px;
    max-height: 400px;
    max-width: 100%;
    width: 100%;
  }
  .main-banner .main-banner__info-box {
    bottom: 5rem;
  }
}
@media only screen and (max-width: 991.98px) and (min-width: 768px) {
  .main-banner .main-banner__carousel-item-wrapper {
    align-items: flex-start;
    padding-top: 10rem;
  }
  .main-banner .main-banner__carousel-item {
    min-height: 700px;
  }
  .main-banner .main-banner__hero-title {
    max-width: 500px;
  }
  .main-banner .main-banner__hero-desc {
    max-width: 400px;
  }
  .main-banner .main-banner__hero-image {
    position: absolute;
    top: unset;
    right: 0;
    bottom: 0;
    height: auto;
    z-index: -1;
  }
  .main-banner .main-banner__hero-image img {
    min-height: 550px;
    max-height: 400px;
    max-width: 100%;
    width: 100%;
  }
  .main-banner .main-banner__hero-video {
    position: absolute;
    top: unset;
    right: 0;
    bottom: 0;
    height: auto;
    z-index: -1;
  }
  .main-banner .main-banner__hero-video video {
    min-height: 550px;
    max-height: 400px;
  }
  .main-banner .main-banner__info-box {
    bottom: 15rem;
  }
}
@media only screen and (max-width: 991.98px) and (min-width: 768px) and (max-height: 414px) {
  .main-banner .main-banner__carousel-item-wrapper {
    padding-top: 7rem;
  }
  .main-banner .main-banner__hero-title h1 {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 767.98px) {
  .main-banner .main-banner__carousel-item-wrapper {
    align-items: flex-start;
    padding-top: 10rem;
  }
  .main-banner .main-banner__hero-image {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    height: auto;
    z-index: -1;
    height: 100%;
    overflow: hidden;
  }
  .main-banner .main-banner__hero-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(79, 53, 36, 0.6);
    z-index: 1;
  }
  .main-banner .main-banner__hero-image img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    margin: 0;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .main-banner .main-banner__hero-video {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    height: auto;
    z-index: -1;
    height: 100%;
    overflow: hidden;
  }
  .main-banner .main-banner__hero-video::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(79, 53, 36, 0.6);
    z-index: 1;
  }
  .main-banner .main-banner__hero-video video {
    display: block;
    max-width: 100%;
    max-height: 100%;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    margin: 0;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .main-banner .image-mask--main-banner {
    -webkit-mask-image: none;
    mask-image: none;
  }
  .main-banner .main-banner__hero-title {
    max-width: 100%;
  }
  .main-banner .main-banner__hero-title h1 {
    color: #fff;
    text-align: center;
    font-size: 2rem;
    padding: 0 2rem;
  }
  .main-banner .main-banner__hero-desc {
    text-align: center;
    max-width: 100%;
  }
  .main-banner .main-banner__hero-desc p {
    color: #fff;
    font-weight: 300;
    padding: 0 2rem;
  }
  .main-banner .main-banner__info-box {
    bottom: 10rem;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
  }
  .main-banner .main-banner__info-box-inner {
    max-width: 100%;
  }
  .main-banner .main-banner__dots-container .slick-slider-dots {
    bottom: 1rem;
    position: static;
  }
  .main-banner .main-banner__arrow-container {
    display: none;
  }
  .main-banner .slick-slider-dots ul li::before {
    content: "";
    position: absolute;
    display: block;
    background: rgba(255, 255, 255, 0.3);
    width: 100%;
    height: 4px;
    top: 0;
    left: 0;
  }
  .main-banner .slick-slider-dots ul li.slick-active button {
    background: #fff;
    color: #fff;
  }
}

.clients-listing .clients-listing__row {
  text-align: center;
  width: 100%;
  overflow: hidden;
  display: inline-block;
  max-width: 100%;
  position: relative;
  white-space: nowrap;
}
.clients-listing .clients-listing__row .clients-listing__col {
  display: inline-block;
  padding: 1rem 2rem;
}
.clients-listing .clients-listing__row img {
  max-width: 200px;
}

.custom-nav-pills {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
}
.custom-nav-pills .nav-pills {
  gap: 1rem;
}
.custom-nav-pills .nav-pills .nav-link {
  color: #4F3524;
  border-radius: 2rem;
  border: 1px solid rgba(79, 53, 36, 0.3);
  font-weight: 600;
  transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out, border-color 0.25s ease-in-out;
}
.custom-nav-pills .nav-pills .nav-link:not(.active):hover {
  border-color: #4F3524;
}
.custom-nav-pills .nav-pills .nav-link.active {
  background: #4F3524;
  color: #fff;
}
@media only screen and (max-width: 767.98px) {
  .custom-nav-pills.custom-nav-pills--with-search {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
  }
}

.promo-and-news-carousel {
  margin-left: -15px;
  margin-right: -15px;
  overflow: hidden;
}
.promo-and-news-carousel .promo-and-news-carousel__item {
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
}
.promo-and-news-carousel .promo-and-news-carousel__btn-container {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.portfolio-carousel {
  position: relative;
}
.portfolio-carousel .portfolio-carousel__btn-container {
  position: absolute;
  left: calc(50% + 3rem);
  bottom: 0;
  transform: translateX(calc(-50% + 3rem));
}
@media only screen and (max-width: 767.98px) {
  .portfolio-carousel .portfolio-carousel__btn-container {
    left: 0;
    transform: translateX(0);
  }
}

.portfolio-card {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  transition: background linear 0.25s;
}
.portfolio-card .portfolio-card__img-container {
  max-width: 50%;
  width: 50%;
  height: 100%;
}
.portfolio-card .portfolio-card__img {
  position: relative;
  min-height: 500px;
}
.portfolio-card .portfolio-card__img img {
  transition: all linear 0.25s;
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}
.portfolio-card .portfolio-card__desc {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 50%;
  max-width: 50%;
  padding-left: 3rem;
}
.portfolio-card .portfolio-card__desc .portfolio-card__logo {
  max-width: 200px;
  margin-bottom: 1.5rem;
}
.portfolio-card .portfolio-card__desc h3 {
  font-size: 32px;
  max-width: 100%;
  font-weight: 600;
  color: #25170D;
  margin-bottom: 1.5rem;
}
.portfolio-card .portfolio-card__desc-link {
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 767.98px) {
  .portfolio-card {
    flex-direction: column;
  }
  .portfolio-card .portfolio-card__img-container {
    max-width: 100%;
    width: 100%;
  }
  .portfolio-card .portfolio-card__desc {
    padding-left: 0;
    width: 100%;
    max-width: 100%;
  }
  .portfolio-card .portfolio-card__img-container {
    margin-bottom: 1rem;
  }
}

.photo-banner .container {
  position: relative;
}
.photo-banner .photo-banner__bg {
  position: relative;
  background-image: url("/assets/images/contents/the-gathering-place.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  padding-bottom: 43.541%;
}
.photo-banner .photo-banner__bg::after {
  content: "";
  height: 100%;
  display: block;
  position: absolute;
  pointer-events: none;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  background: linear-gradient(180deg, #25170D 0%, rgba(37, 23, 13, 0) 100%);
}
.photo-banner .photo-banner__container {
  position: absolute;
  right: 0;
  bottom: 3rem;
  text-align: right;
  z-index: 1;
}
.photo-banner .photo-banner__container img {
  max-height: 120px;
  margin-bottom: 1rem;
}
.photo-banner .photo-banner__container p {
  color: #fff;
  font-size: 20px;
}
@media only screen and (max-width: 767.98px) {
  .photo-banner .photo-banner__container {
    text-align: center;
    bottom: 2rem;
    right: 50%;
    transform: translateX(50%);
  }
  .photo-banner .photo-banner__container img {
    max-height: 50px;
    margin-bottom: 0.5rem;
  }
  .photo-banner .photo-banner__container p {
    font-size: 12px;
  }
}

.careers__btn-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 3rem;
}
@media only screen and (max-width: 767.98px) {
  .careers__btn-container {
    justify-content: center;
  }
}

.career-detail .career-detail__img {
  margin: 3rem 0;
  position: relative;
}
.career-detail .career-detail__img img {
  display: block;
  max-width: 100%;
  margin: auto;
}
.career-detail .career-detail__img h1 {
  color: #fff;
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}
.career-detail .career-detail__img figcaption {
  color: #92847B;
  font-size: 12px;
  text-align: center;
  margin-top: 0.5rem;
}
.career-detail h5 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: #25170D;
}
.career-detail p {
  margin-bottom: 1.25rem;
  color: #92847B;
}
.career-detail li {
  color: #92847B;
}
.career-detail .career-detail__link-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}
.career-detail .career-detail__read-more {
  margin-left: 2rem;
  text-decoration: none;
  color: #4F3524;
  transition: all cubic-bezier(0.25, 0.74, 0.22, 0.99) 0.8s;
}
.career-detail .career-detail__read-more:hover {
  text-decoration: underline;
}
.career-detail .career-detail__btn-container {
  display: block;
  text-align: center;
  margin-top: 3rem;
}
.career-detail .career-detail__btn-container a {
  text-decoration: none;
  color: #4F3524;
  transition: all cubic-bezier(0.25, 0.74, 0.22, 0.99) 0.8s;
}
.career-detail .career-detail__btn-container a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 767.98px) {
  .career-detail .career-detail__img h1 {
    text-align: center;
    bottom: 0.5rem;
    width: 100%;
  }
  .career-detail .career-detail__inner {
    padding: 0 1rem;
  }
}

.search-box {
  height: 3.25rem;
  position: relative;
  border-radius: 2rem;
}
.search-box .form-control {
  background-color: transparent;
  border-radius: 2rem;
  padding: 0.75rem;
  padding-left: 3rem;
  position: relative;
  border-color: #4F3524;
}
.search-box .form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(79, 53, 36, 0.25);
}
.search-box i {
  color: #4F3524;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1rem;
}
@media only screen and (max-width: 767.98px) {
  .search-box {
    margin-top: 2rem;
  }
}

.main-footer {
  background: #F0E5DD;
  padding-top: 7rem;
  position: relative;
}
.main-footer .container {
  position: relative;
}
.main-footer h2 {
  color: #25170D;
  font-weight: 600;
  font-size: 4rem;
  margin-bottom: 2rem;
}
.main-footer p {
  color: #92847B;
}
.main-footer .main-footer__main-row {
  padding-bottom: 4rem;
}
.main-footer .main-footer__social-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}
.main-footer .main-footer__social-box-col {
  display: flex;
  flex-direction: column;
}
.main-footer .main-footer__social-container {
  padding: 1rem 0;
  text-align: right;
}
.main-footer .main-footer__copyright-row {
  padding: 2rem 0;
  border-top: 1px solid rgba(79, 53, 36, 0.3);
}
.main-footer .main-footer__copyright-row span {
  margin-right: 2rem;
}
.main-footer .main-footer__link {
  text-decoration: none;
  color: #92847B;
}
.main-footer .main-footer__link:hover {
  text-decoration: underline;
}
.main-footer .main-footer__back-to-top {
  position: absolute;
  right: 15px;
  top: -3rem;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .main-footer .main-footer__copyright-row span {
    display: block;
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 991.98px) {
  .main-footer .main-footer__copyright-row span {
    display: block;
    margin-bottom: 1.5rem;
    margin-right: 0;
  }
}
@media only screen and (max-width: 767.98px) {
  .main-footer {
    text-align: center;
  }
  .main-footer h2 {
    font-size: 2rem;
    text-align: center;
    padding: 0 1rem;
  }
  .main-footer p {
    text-align: center;
    padding: 0 2rem;
  }
  .main-footer .main-footer__social-box {
    justify-content: center;
  }
  .main-footer .main-footer__social-container {
    text-align: center;
  }
  .main-footer .main-footer__back-to-top {
    right: 50%;
    transform: translateX(50%);
    top: -4rem;
  }
}

.page-content {
  padding: 12rem 0 9rem;
  position: relative;
  overflow: hidden;
  background: #FAF3EE;
}
.page-content .page-content__header {
  margin-bottom: 5rem;
  text-align: center;
}
.page-content .page-content__header h1 {
  margin: 0;
  font-weight: 600;
  color: #25170D;
}
.page-content .page-content__header h3 {
  font-weight: 600;
  color: #25170D;
  max-width: 900px;
  margin: 3rem auto 1rem;
}
.page-content .page-content__header p {
  max-width: 670px;
  margin: 1rem auto 0 auto;
}
.page-content .page-content__text-container h3 {
  color: #25170D;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}
.page-content .page-content__text-container h3:first-child {
  margin-top: 0;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .page-content .page-content__header {
    margin-bottom: 4.5rem;
  }
  .page-content .page-content__header--page-not-found {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 1199.98px) {
  .page-content {
    padding: 9rem 0;
  }
  .page-content .page-content__header {
    margin-bottom: 4rem;
  }
  .page-content .page-content__header--page-not-found {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767.98px) {
  .page-content {
    padding: 9rem 0 7rem;
  }
  .page-content .page-content__header {
    margin-bottom: 2.5rem;
  }
  .page-content .page-content__header--page-not-found {
    margin-bottom: 2.5rem;
  }
  .page-content .page-content__header h1 {
    padding: 0 2rem;
  }
  .page-content .page-content__header h3 {
    padding: 0 2rem;
  }
  .page-content .page-content__header p {
    margin-top: 1rem;
    padding: 0 2rem;
  }
  .page-content .page-content__text-container {
    padding: 0 2rem;
  }
}

.page-content.page-content--about-us {
  padding-bottom: 0;
}

.page-content__header.page-content__header--terms {
  max-width: 300px;
  text-align: left;
}
.page-content__header.page-content__header--about-us {
  padding-bottom: 15rem;
}
.page-content__header.page-content__header--contact-us {
  text-align: left;
  max-width: 500px;
}
.page-content__header.page-content__header--contact-us h1 {
  font-size: 4rem;
}
@media only screen and (max-width: 991.98px) {
  .page-content__header.page-content__header--terms {
    max-width: 100%;
    text-align: center;
  }
  .page-content__header.page-content__header--about-us {
    padding-bottom: 10rem;
  }
}
@media only screen and (max-width: 767.98px) {
  .page-content__header.page-content__header--contact-us {
    text-align: center;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-content__header.page-content__header--contact-us h1 {
    font-size: 2.5rem;
    text-align: center;
  }
}

.page-content--about-us .about-us__main {
  position: relative;
  z-index: 1;
  background: #F0E5DD;
  padding-bottom: 7rem;
}
.page-content--about-us .about-us__main .row {
  margin-top: 4rem;
}
.page-content--about-us .about-us__main p {
  margin-bottom: 0;
}
.page-content--about-us .about-us__ornament {
  position: absolute;
  z-index: -1;
}
.page-content--about-us .about-us__ornament img {
  max-width: 100%;
}
.page-content--about-us .about-us__ornament.about-us__ornament--1 {
  right: -10%;
  top: 10%;
}
.page-content--about-us .about-us__ornament.about-us__ornament--2 {
  left: -10%;
  top: 45%;
}
.page-content--about-us .about-us__img-banner {
  position: relative;
  padding-top: 40.677%;
  padding-right: 1rem;
  padding-left: 1rem;
  transform: translateY(-50%);
  margin-bottom: -9rem;
}
.page-content--about-us .about-us__img-banner img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  margin: auto;
}
.page-content--about-us .about-us__img-portrait {
  position: relative;
  padding-bottom: 148.5%;
}
.page-content--about-us .about-us__img-portrait img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-content--about-us .about-us__img-landscape {
  position: relative;
  padding-bottom: 67.351%;
}
.page-content--about-us .about-us__img-landscape img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.page-content--about-us .about-us__paragraf-bordered {
  padding-top: 2rem;
  position: relative;
}
.page-content--about-us .about-us__paragraf-bordered::before {
  content: "";
  width: calc(50% + 1rem);
  height: 1px;
  background: #4F3524;
  position: absolute;
  left: 0;
  top: 0;
}
.page-content--about-us .about-us__members {
  padding: 7rem 0;
}
.page-content--about-us .about-us__members .section__title p {
  max-width: 700px;
  margin-bottom: 0;
  margin-top: 2rem;
}
.page-content--about-us .about-us__members .about-us__members-row {
  text-align: center;
  width: 100%;
  overflow: hidden;
  display: inline-block;
  max-width: 100%;
  position: relative;
  margin-top: 4rem;
}
.page-content--about-us .about-us__members .about-us__members-col {
  display: inline-block;
  padding: 2rem 2rem;
}
@media only screen and (max-width: 991.98px) {
  .page-content--about-us .about-us__img-banner {
    margin-bottom: -6rem;
  }
  .page-content--about-us .about-us__img-portrait {
    position: relative;
    padding-bottom: 100%;
  }
  .page-content--about-us .about-us__img-portrait img {
    width: auto;
    -o-object-fit: none;
       object-fit: none;
  }
  .page-content--about-us .about-us__ornament {
    width: 300px;
  }
  .page-content--about-us .about-us__ornament.about-us__ornament--1 {
    right: -20%;
    top: 2%;
  }
  .page-content--about-us .about-us__ornament.about-us__ornament--2 {
    left: -10%;
    top: 35%;
  }
}
@media only screen and (max-width: 767.98px) {
  .page-content--about-us .about-us__main .row {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .page-content--about-us .about-us__img-banner {
    margin-bottom: -6rem;
  }
  .page-content--about-us .about-us__img-portrait {
    margin: 2rem 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .page-content--about-us .about-us__img-landscape {
    margin-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .page-content--about-us .about-us__members .section__title {
    padding: 0 1rem;
  }
  .page-content--about-us .about-us__ornament {
    width: 200px;
  }
  .page-content--about-us .about-us__ornament.about-us__ornament--1 {
    right: -20%;
    top: 0;
  }
  .page-content--about-us .about-us__ornament.about-us__ornament--2 {
    left: -10%;
    top: 35%;
  }
}

.promo-and-news-detail {
  position: relative;
}
.promo-and-news-detail .promo-and-news-detail__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 100px;
  position: relative;
}
.promo-and-news-detail .promo-and-news-detail__title {
  margin-top: 3rem;
  margin-bottom: 2rem;
}
.promo-and-news-detail .promo-and-news-detail__title h1 {
  margin-bottom: 0;
  font-weight: 600;
  color: #25170D;
}
.promo-and-news-detail .promo-and-news-detail__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.promo-and-news-detail .promo-and-news-detail__meta .btn-ksi {
  font-size: 12px;
  padding: 0.2rem 0.75rem;
}
.promo-and-news-detail .promo-and-news-detail__meta .promo-and-news-detail__meta-date {
  position: relative;
  padding-left: 4rem;
  color: #92847B;
  display: inline-flex;
  align-items: center;
  margin-right: 1rem;
}
.promo-and-news-detail .promo-and-news-detail__meta .promo-and-news-detail__meta-date::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 3rem;
  height: 1px;
  background: #4F3524;
}
.promo-and-news-detail .promo-and-news-detail__sharer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.promo-and-news-detail .promo-and-news-detail__sharer li {
  line-height: 1;
  display: inline-block;
  margin: 0 10px 10px 0;
}
.promo-and-news-detail .promo-and-news-detail__sharer a {
  font-size: 20px;
  color: #4F3524;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  margin: auto;
  transition: color cubic-bezier(0.25, 0.74, 0.22, 0.99) 0.8s;
}
.promo-and-news-detail .promo-and-news-detail__sharer a:hover {
  color: #92847B;
}
.promo-and-news-detail .promo-and-news-detail__img {
  margin: 3rem 0;
  position: relative;
}
.promo-and-news-detail .promo-and-news-detail__img img {
  display: block;
  max-width: 100%;
  margin: auto;
}
.promo-and-news-detail .promo-and-news-detail__img figcaption {
  color: #92847B;
  font-size: 12px;
  text-align: center;
  margin-top: 0.5rem;
}
.promo-and-news-detail .promo-and-news-detail__img .promo-and-news-detail__carousel-arrow-left, .promo-and-news-detail .promo-and-news-detail__img .promo-and-news-detail__carousel-arrow-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.promo-and-news-detail .promo-and-news-detail__img .promo-and-news-detail__carousel-arrow-left {
  left: -72px;
}
.promo-and-news-detail .promo-and-news-detail__img .promo-and-news-detail__carousel-arrow-right {
  right: -72px;
}
.promo-and-news-detail .promo-and-news-detail__related-posts {
  margin-top: 5rem;
}
.promo-and-news-detail .promo-and-news-detail__related-posts .promo-and-news-detail__related-posts-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.promo-and-news-detail .promo-and-news-detail__related-posts .promo-and-news-detail__related-posts-title h2 {
  font-weight: 600;
  color: #25170D;
  display: inline-flex;
  align-items: center;
  position: relative;
  margin: 0;
}
.promo-and-news-detail .promo-and-news-detail__related-posts .promo-and-news-detail__related-posts-title h2::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% + 1rem);
  width: 100px;
  height: 2px;
  background-color: #25170D;
}
.promo-and-news-detail .promo-and-news-detail__related-posts .promo-and-news-carousel__items {
  margin-left: 0;
  margin-right: 0;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}
.promo-and-news-detail .promo-and-news-detail__related-posts .promo-and-news-carousel__item {
  max-width: 33.33%;
  width: 33.33%;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  display: block;
  height: 100%;
}
.promo-and-news-detail .promo-and-news-detail__related-posts .articles-card::before {
  background: #F0E5DD;
}
@media only screen and (max-width: 991.98px) {
  .promo-and-news-detail .promo-and-news-detail__related-posts .promo-and-news-detail__related-posts-title h2 {
    font-size: 24px;
  }
  .promo-and-news-detail .promo-and-news-detail__related-posts .promo-and-news-detail__related-posts-title h2::before {
    width: 50px;
    left: calc(100% + 0.5rem);
  }
  .promo-and-news-detail .promo-and-news-detail__related-posts .promo-and-news-carousel__item {
    max-width: 50%;
    width: 50%;
  }
}
@media only screen and (max-width: 767.98px) {
  .promo-and-news-detail .promo-and-news-detail__inner {
    padding: 0 1rem;
  }
  .promo-and-news-detail .promo-and-news-detail__related-posts {
    margin-top: 7rem;
    padding: 0 1rem;
  }
  .promo-and-news-detail .promo-and-news-detail__related-posts .promo-and-news-carousel__item {
    max-width: 100%;
    width: 100%;
  }
  .promo-and-news-detail .promo-and-news-detail__sharer {
    position: absolute;
    bottom: -5rem;
    left: 50%;
    transform: translateX(-50%);
  }
  .promo-and-news-detail .promo-and-news-detail__img {
    margin: 3rem 0;
  }
  .promo-and-news-detail .promo-and-news-detail__img .btn-circle {
    color: #fff;
    border-color: #fff;
    width: 32px;
    height: 32px;
  }
  .promo-and-news-detail .promo-and-news-detail__img .promo-and-news-detail__carousel-arrow-left {
    left: 0.3rem;
    top: 45%;
  }
  .promo-and-news-detail .promo-and-news-detail__img .promo-and-news-detail__carousel-arrow-right {
    top: 45%;
    right: 0.3rem;
  }
  .promo-and-news-detail .promo-and-news-detail__meta .promo-and-news-detail__meta-date {
    padding-left: 2.5rem;
    font-size: 12px;
  }
  .promo-and-news-detail .promo-and-news-detail__meta .promo-and-news-detail__meta-date::before {
    width: 2rem;
  }
}

.article-listing {
  margin-left: -15px;
  margin-right: -15px;
  overflow: hidden;
}
.article-listing .article__items {
  margin-left: 0;
  margin-right: 0;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}
.article-listing .article__item {
  max-width: 33.33%;
  width: 33.33%;
  padding-left: 15px;
  padding-right: 15px;
  display: block;
  height: 100%;
  margin-bottom: 2rem;
}
.article-listing .article__btn-container {
  margin-top: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 991.98px) {
  .article-listing .article__item {
    max-width: 50%;
    width: 50%;
  }
}
@media only screen and (max-width: 767.98px) {
  .article-listing .article__item {
    max-width: 100%;
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.careers-nav-box .custom-nav-pills {
  justify-content: center;
  padding: 3rem 0;
}

.modal.modal-careers-apply .modal-content {
  border-radius: 0;
  background-color: #FAF3EE;
}
.modal.modal-careers-apply .modal-header {
  padding: 2rem;
  border-bottom: none;
}
.modal.modal-careers-apply .btn-close {
  background: none;
  border-radius: 50%;
  background-color: #4F3524;
  color: #fff;
  width: 32px;
  height: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  opacity: 1;
  transition: all cubic-bezier(0.25, 0.74, 0.22, 0.99) 0.8s;
}
.modal.modal-careers-apply .btn-close:hover {
  opacity: 0.8;
}
.modal.modal-careers-apply .modal-body {
  padding: 1rem 3rem 3rem;
}
.modal.modal-careers-apply .modal-body h3 {
  margin-bottom: 2rem;
}
.modal.modal-careers-apply .modal-body p {
  max-width: 750px;
}
.modal.modal-careers-apply .custom-form {
  margin-top: 2rem;
}
@media only screen and (max-width: 991.98px) and (min-width: 768px) {
  .modal.modal-careers-apply .modal-dialog {
    max-width: calc(100% - 4rem);
  }
}
@media only screen and (max-width: 767.98px) {
  .modal.modal-careers-apply .modal-body {
    padding: 1rem 2rem 3rem;
  }
}

.custom-form .custom-form__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.custom-form .custom-form__col {
  width: 100%;
  padding: 15px;
}
.custom-form .custom-form__col.custom-form__col--half {
  width: 50%;
}
.custom-form .custom-form__col.custom-form__col--center {
  text-align: center;
}
.custom-form .custom-form__label {
  display: inline-block;
  margin-bottom: 0.5rem;
}
.custom-form .form-check {
  display: inline-block;
}
@media only screen and (max-width: 767.98px) {
  .custom-form .custom-form__col.custom-form__col--half {
    width: 100%;
  }
  .custom-form .custom-form__label {
    margin-bottom: 0.5rem;
  }
}

.contact-us .contact-us__meta {
  display: flex;
  flex-direction: column;
}
.contact-us .contact-us__meta-box {
  padding: 1rem 0;
}
.contact-us .contact-us__meta-box h6 {
  font-weight: 600;
}
.contact-us .contact-us__meta-box label {
  margin-bottom: 0.5rem;
}
.contact-us .contact-us__col--bordered {
  padding-left: 3rem;
  border-left: 1px solid rgba(79, 53, 36, 0.25);
}
.contact-us .contact-us__map-box {
  margin-top: 5rem;
  min-height: 500px;
}
.contact-us .contact-us__map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}
@media only screen and (max-width: 767.98px) {
  .contact-us .contact-us__col--bordered {
    padding-left: 1rem;
    border-left: none;
  }
}

.main-banner__scroll-down {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
}
.main-banner__scroll-down a {
  display: none;
  opacity: 0;
  text-decoration: none;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  display: inline-flex;
  width: 42px;
  height: 42px;
  justify-content: center;
  align-items: center;
  transition: all cubic-bezier(0.25, 0.74, 0.22, 0.99) 0.5s;
}
.main-banner__scroll-down a i {
  animation: scroll-down-homepage 1s cubic-bezier(0.25, 0.74, 0.22, 0.99) infinite;
}
@media only screen and (max-width: 767.98px) {
  .main-banner__scroll-down a {
    display: inline-flex;
    opacity: 1;
  }
  .main-banner__scroll-down a.main-banner__scroll-down--scrolled {
    display: none;
    opacity: 0;
  }
}

.portfolio__parallax-box {
  margin-top: 9rem;
}
.portfolio__parallax-box .portfolio__parallax-wrapper {
  min-height: 700px;
  position: relative;
  height: 100%;
}
.portfolio__parallax-box .portfolio__parallax-wrapper .row {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.portfolio__parallax-box .portfolio__img {
  position: absolute;
  left: 45%;
  transform: translateX(-45%);
}
.portfolio__parallax-box .portfolio__img img {
  max-width: 100%;
}
.portfolio__parallax-box .portfolio__img.portfolio__img--down {
  top: 50%;
}
.portfolio__parallax-box .portfolio__numbers-box {
  padding: 2rem 1rem 4rem;
  border-top: 1px solid #4F3524;
}
.portfolio__parallax-box .portfolio__numbers-box h2 {
  font-size: 48px;
  color: #25170D;
  font-weight: 700;
}
.portfolio__parallax-box .portfolio__numbers-box.portfolio__numbers-box--right {
  text-align: right;
}
@media only screen and (max-width: 991.98px) {
  .portfolio__parallax-box .portfolio__img.portfolio__img--down {
    top: 40%;
  }
}
@media only screen and (max-width: 767.98px) {
  .portfolio__parallax-box {
    margin-top: 4rem;
  }
  .portfolio__parallax-box .portfolio__parallax-wrapper .row {
    position: static;
    padding-top: 100%;
  }
  .portfolio__parallax-box .portfolio__img.portfolio__img--down {
    top: 15%;
  }
  .portfolio__parallax-box .portfolio__numbers-box {
    text-align: center;
  }
  .portfolio__parallax-box .portfolio__numbers-box h2 {
    font-size: 42px;
  }
  .portfolio__parallax-box .portfolio__numbers-box.portfolio__numbers-box--right {
    text-align: center;
  }
}

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

.main-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 3;
  background: none;
  padding-top: 1.5rem;
  transition: padding cubic-bezier(0.25, 0.74, 0.22, 0.99) 0.5s;
}
.main-navbar .navbar-toggler {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  color: #4F3524;
}
.main-navbar .navbar-brand img {
  height: 50px;
}
.main-navbar.main-navbar--scrolled {
  padding-top: 0.5rem;
}
.main-navbar.main-navbar--scrolled::before {
  opacity: 1;
}
.main-navbar::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  background: #F0E5DD;
  transition: all cubic-bezier(0.25, 0.74, 0.22, 0.99) 0.5s;
  z-index: -1;
  box-shadow: 0 -1px 5px #000;
}
.main-navbar .navbar-nav .nav-link {
  position: relative;
  color: #92847B;
  padding-left: 1rem;
  padding-right: 1rem;
}
.main-navbar .navbar-nav .nav-link::before {
  content: "";
  width: 0;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background-color: #4F3524;
  height: 2px;
  border-radius: 2px;
  transition: all 0.25s ease-in-out;
}
.main-navbar .navbar-nav .nav-link.active, .main-navbar .navbar-nav .nav-link:hover {
  color: #4F3524;
}
.main-navbar .navbar-nav .nav-link.active::before, .main-navbar .navbar-nav .nav-link:hover::before {
  width: calc(100% - 1rem - 1rem + 2px);
}
.main-navbar .offcanvas {
  background-color: #FAF3EE;
}
.main-navbar.main-navbar--homepage .navbar-brand .navbar-brand__img-mobile {
  display: none;
  opacity: 0;
  visibility: hidden;
}
.main-navbar.main-navbar--homepage .navbar-toggler {
  background-color: #fff;
}
@media only screen and (max-width: 767.98px) {
  .main-navbar.main-navbar--homepage .navbar-brand .navbar-brand__img-mobile {
    display: inline-block;
    opacity: 1;
    visibility: visible;
  }
  .main-navbar.main-navbar--homepage .navbar-brand .navbar-brand__img-desktop {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
  .main-navbar.main-navbar--homepage.main-navbar--scrolled .navbar-toggler {
    background-color: transparent;
  }
  .main-navbar.main-navbar--homepage.main-navbar--scrolled .navbar-brand .navbar-brand__img-desktop {
    display: inline-block;
    opacity: 1;
    visibility: visible;
  }
  .main-navbar.main-navbar--homepage.main-navbar--scrolled .navbar-brand .navbar-brand__img-mobile {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
}

main {
  position: relative;
  overflow: hidden;
}

.btn-ksi {
  position: relative;
  display: inline-block;
  padding: 0.375rem 1rem;
  font-weight: 400;
  color: #fff;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  border-radius: 2rem;
  background-color: transparent;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.btn-ksi:hover {
  color: #fff;
  background-color: transparent;
  border-color: transparent;
}
.btn-ksi:active {
  color: #fff;
  background-color: transparent;
  border-color: transparent;
}
.btn-ksi:focus-visible {
  color: #fff;
  background-color: transparent;
  border-color: transparent;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0);
}
.btn-ksi.btn-cafe-noir {
  color: #fff;
  background-color: #4F3524;
  border-color: #4F3524;
}
.btn-ksi.btn-cafe-noir:hover {
  color: #fff;
  background-color: #3f2b1d;
  border-color: #3f2b1d;
}
.btn-ksi.btn-cafe-noir:active {
  color: #fff;
  background-color: #412d20;
  border-color: #412d20;
}
.btn-ksi.btn-cafe-noir:focus-visible {
  color: #fff;
  background-color: #412d20;
  border-color: #412d20;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(79, 53, 36, 0.5);
}
.btn-ksi.btn-beige {
  color: #4F3524;
  background-color: transparent;
  border-color: #4F3524;
  z-index: 0;
}
.btn-ksi.btn-beige::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 0;
  width: 0;
  transition: all 0.35s ease;
  border-radius: 2rem;
  z-index: -1;
}
.btn-ksi.btn-beige:hover {
  color: #fff;
  background-color: transparent;
  border-color: #4F3524;
}
.btn-ksi.btn-beige:hover::before {
  background: #4F3524;
  height: 100%;
  width: 100%;
}
.btn-ksi.btn-beige:active {
  color: #fff;
  background-color: #412d20;
  border-color: #412d20;
}
.btn-ksi.btn-beige:focus-visible {
  color: #fff;
  background-color: #412d20;
  border-color: #412d20;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(79, 53, 36, 0.5);
}
.btn-ksi.btn-white {
  color: #4F3524;
  border-color: #fff;
  background-color: #fff;
  padding: 0.6rem 1.5rem;
}
.btn-ksi.btn-white::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 0;
  width: 0;
  transition: all 0.35s ease;
  border-radius: 2rem;
  z-index: -1;
}
.btn-ksi.btn-white:hover {
  color: #fff;
  background-color: transparent;
  border-color: transparent;
}
.btn-ksi.btn-white:hover::before {
  background: #4F3524;
  height: 100%;
  width: 100%;
}
.btn-ksi.btn-white:active {
  color: #fff;
  background-color: #412d20;
  border-color: #412d20;
}
.btn-ksi.btn-white:focus-visible {
  color: #fff;
  background-color: #412d20;
  border-color: #412d20;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(79, 53, 36, 0.5);
}
.btn-ksi.btn-large {
  padding: 0.75rem 1.5rem;
}

.btn-circle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-weight: 400;
  color: #4F3524;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: 1px solid #4F3524;
  border-radius: 50%;
  background-color: transparent;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  outline: none;
  box-shadow: none;
}
.btn-circle i {
  position: relative;
  z-index: 1;
}
.btn-circle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 0;
  width: 0;
  transition: all 0.35s ease;
  border-radius: 50%;
  z-index: 0;
}
.btn-circle:hover {
  color: #fff;
  background-color: transparent;
  border-color: #4F3524;
}
.btn-circle:hover::before {
  background: #4F3524;
  height: 100%;
  width: 100%;
}
.btn-circle:active {
  color: #fff;
}
.btn-circle:active::before {
  background: #412d20;
  border-color: #412d20;
  height: 100%;
  width: 100%;
}
.btn-circle:focus-visible {
  color: #fff;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(79, 53, 36, 0.5);
}
.btn-circle:focus-visible::before {
  background: #412d20;
  border-color: #412d20;
  height: 100%;
  width: 100%;
}

.articles-card {
  height: 100%;
  position: relative;
  padding-top: 56.26%;
  transition: all cubic-bezier(0.25, 0.74, 0.22, 0.99) 0.8s;
  z-index: 0;
}
.articles-card:hover {
  transition: all cubic-bezier(0.25, 0.74, 0.22, 0.99) 0.8s;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.articles-card:hover .articles-card__img img {
  transition: all cubic-bezier(0.25, 0.74, 0.22, 0.99) 0.8s;
  transform: scale(1.2);
}
.articles-card:hover::before {
  animation-name: height-animation;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.25, 0.74, 0.22, 0.99);
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.articles-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 0;
  background: #FAF3EE;
}
.articles-card .articles-card__img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.articles-card .articles-card__img a {
  display: block;
  padding: 0 0 56.26% 0;
  background: rgb(255, 255, 255);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.articles-card .articles-card__img img {
  transition: all linear 0.25s;
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
}
.articles-card .articles-card__desc {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1rem;
}
.articles-card .articles-card__desc h3 {
  max-width: 100%;
  font-size: 24px;
  color: #25170D;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.articles-card .articles-card__desc p {
  color: #92847B;
  font-weight: 300;
}
.articles-card .articles-card__link {
  display: block;
  text-decoration: none;
}
.articles-card .articles-card__meta {
  font-size: 14px;
  margin-bottom: 1rem;
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.articles-card .articles-card__meta .articles-card__meta-valid {
  color: #92847B;
  font-weight: 300;
  display: block;
}
.articles-card .articles-card__meta .btn-ksi {
  font-size: 12px;
  padding: 0.2rem 0.75rem;
}
.articles-card .articles-card__nav-link {
  color: #4F3524;
  font-weight: 500;
  text-decoration: none;
}
.articles-card .articles-card__nav-link:hover {
  text-decoration: underline;
}

.border-secondary {
  --bs-border-opacity: 1;
  --bs-secondary-rgb: #4F3524;
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
}

.accordion .accordion-item {
  background-color: transparent;
  border: 0;
  padding-bottom: 1rem;
}
.accordion .accordion-button {
  background-color: transparent;
  font-size: inherit;
  font-weight: 600;
  color: #4F3524;
  border-bottom: 1px solid #4F3524;
}
.accordion .accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(79, 53, 36, 0.25);
}
.accordion .accordion-button:first-child {
  border-top: 0;
}
.accordion .accordion-button::after {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Pro 6.3.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path fill="%234F3524" d="M201.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 338.7 54.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z"/></svg>');
}
.accordion .accordion-button:not(.collapsed) {
  box-shadow: none;
}
.accordion .accordion-button:not(.collapsed)::after {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Pro 6.3.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path fill="%234F3524" d="M201.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 338.7 54.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z"/></svg>');
}
.accordion .accordion-body {
  padding-top: 1rem;
  padding-bottom: 4rem;
}

.form-control, .form-select {
  border-radius: 2rem;
  padding: 1rem 1.5rem;
  background-color: transparent;
  color: #92847B;
  border-color: #4F3524;
}
.form-control:focus, .form-select:focus {
  border-color: #4F3524;
  box-shadow: 0 0 0 0.25rem rgba(79, 53, 36, 0.25);
  background-color: rgba(240, 229, 221, 0.5);
}

label {
  font-size: 14px;
}

.input-group:not(.has-validation) > .form-control:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
  padding-right: 4rem;
}
.input-group .input-group-text {
  color: #4F3524;
  background-color: transparent;
  border-color: transparent;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.owl-carousel .owl-item {
  -webkit-backface-visibility: visible;
}
.owl-carousel .owl-item img {
  transform-style: flat;
}

.slick-slider-dots {
  width: 100%;
  position: absolute;
  bottom: 4rem;
  display: flex;
  padding: 1rem 0;
}
.slick-slider-dots ul {
  width: 100%;
  display: table;
  table-layout: fixed;
  list-style: none;
  margin: 0;
  padding: 0;
}
.slick-slider-dots ul li {
  position: relative;
  display: table-cell;
  text-align: center;
  margin: 0;
}
.slick-slider-dots ul li::before {
  content: "";
  position: absolute;
  display: block;
  background: rgba(79, 53, 36, 0.3);
  width: 100%;
  height: 4px;
  top: 0;
  left: 0;
}
.slick-slider-dots ul li button {
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
  height: 4px;
  width: 100%;
  overflow: hidden;
  color: #F0E5DD;
  border: none;
  border-radius: 4px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.slick-slider-dots ul li.slick-active button {
  background: #4F3524;
  color: #4F3524;
}

.promo-and-news-carousel .slick-track {
  display: flex !important;
}

.promo-and-news-carousel .slick-slide {
  height: inherit !important;
}/*# sourceMappingURL=style.css.map */