@import "https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@10..48,300;10..48,400;10..48,500;10..48,600;10..48,700&display=swap";
* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
input,
textarea,
select,
button {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
}
.flex {
    display: flex;
}
.grid {
    display: grid;
}
.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}
.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}
.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}
.hidden {
    display: none;
}
.justify-start {
    justify-content: start;
}
.justify-end {
    justify-content: end;
}
.justify-center {
    justify-content: center;
}
.justify-between {
    justify-content: space-between;
}
.justify-around {
    justify-content: space-around;
}
.justify-evenly {
    justify-content: space-evenly;
}
.items-start {
    align-items: flex-start;
}
.items-end {
    align-items: flex-end;
}
.items-center {
    align-items: center;
}
.items-baseline {
    align-items: baseline;
}
.items-stretch {
    align-items: stretch;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
.text-center {
    text-align: center;
}
.text-justify {
    text-align: justify;
}
.text-start {
    text-align: start;
}
.text-end {
    text-align: end;
}
.place-items-start {
    place-items: start;
}
.place-items-end {
    place-items: end;
}
.place-items-center {
    place-items: center;
}
.place-items-baseline {
    place-items: baseline;
}
.place-items-stretch {
    place-items: stretch;
}
.gap-10 {
    gap: 10px;
}
.gap-20 {
    gap: 20px;
}
.gap-30 {
    gap: 30px;
}
.shrink {
    flex-shrink: 1;
}
.shrink-0 {
    flex-shrink: 0;
}
.w-full {
    width: 100%;
}
.h-screen {
    height: 100vh;
}
.cms-button {
    padding: 10px 20px;
    border: none;
    border-radius: 6.6666666667px;
    background: #dba869;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    transition: all 0.3s ease;
}
.cms-button:hover {
    color: #fff;
    background: #d19040;
}
.cms-title {
    width: 100%;
    padding: 80px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
@media (max-width: 600px) {
    .cms-title {
        padding: 50px 15px;
    }
}
.cms-title__container {
    max-width: 850px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.cms-title__container h1 {
    font-size: 32px;
    font-weight: 600;
}
@media (max-width: 600px) {
    .cms-title__container h1 {
        font-size: 28px;
    }
}
.cms-title__container span {
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
}
@media (max-width: 600px) {
    .cms-title__container span {
        font-size: 14px;
    }
}
.cms-category {
    width: 100%;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
@media (max-width: 600px) {
    .cms-category {
        padding: 0px 15px;
        margin-bottom: 50px;
    }
}
.cms-category__container {
    width: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
}
@media (max-width: 600px) {
    .cms-category__container {
        width: 100%;
    }
}
.cms-category__wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
@media (max-width: 600px) {
    .cms-category__wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}
@media (max-width: 600px) {
    .cms-category__wrapper.mobile-1cols {
        grid-template-columns: repeat(1, 1fr);
    }
}
.cms-team {
    width: 100%;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
@media (max-width: 600px) {
    .cms-team {
        padding: 0px 15px;
        margin-bottom: 50px;
    }
}
.cms-team__container {
    width: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
}
@media (max-width: 600px) {
    .cms-team__container {
        width: 100%;
    }
}
.cms-team__wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
@media (max-width: 600px) {
    .cms-team__wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}
.cms-contact {
    width: 100%;
    padding: 40px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
@media (max-width: 600px) {
    .cms-contact {
        padding: 20px 15px;
    }
}
.cms-contact__container {
    width: 1200px;
    display: flex;
    flex-direction: column;
}
@media (max-width: 600px) {
    .cms-contact__container {
        width: 100%;
    }
}
.cms-contact__wrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 50px 50px 0 50px;
    gap: 60px;
}
@media (max-width: 600px) {
    .cms-contact__wrapper {
        flex-direction: column;
        padding: 0px;
        gap: 30px;
        margin-top: 20px;
    }
}
.cms-contact__wrapper-text {
    display: flex;
    flex-direction: column;
}
.cms-contact__wrapper-text h1 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}
@media (max-width: 600px) {
    .cms-contact__wrapper-text h1 {
        font-size: 24px;
    }
}
.cms-contact__wrapper-text h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}
@media (max-width: 600px) {
    .cms-contact__wrapper-text h4 {
        font-size: 18px;
    }
}
.cms-contact__wrapper-form {
    padding: 40px;
    border: 1px solid #eee;
    background: #fff;
    border-radius: 20px;
    width: 650px;
    margin-top: -100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
@media (max-width: 600px) {
    .cms-contact__wrapper-form {
        width: 100%;
        margin-top: 0px;
        padding: 20px;
    }
}
.cms-contact__wrapper-form > h3 {
    font-size: 26px;
    font-weight: 600;
}
.cms-contact__wrapper-form > button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background: #dba869;
    color: #fff;
}
.cms-contact__items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}
.cms-contact__items > li {
    display: flex;
    gap: 10px;
    align-items: center;
}
.cms-contact__items > li i {
    width: 65px;
    height: 65px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: #dba869;
    background: rgba(219, 168, 105, 0.1);
    flex-shrink: 0;
    font-size: 30px;
}
.cms-contact__items > li div {
    display: flex;
    flex-direction: column;
}
.cms-contact__items > li div > span:first-child {
    font-size: 12px;
    font-weight: 300;
    opacity: 0.8;
}
.cms-contact__social {
    display: flex;
    gap: 15px;
}
.cms-contact__social li {
    display: flex;
}
.cms-contact__social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff !important;
    transition: all 0.3s ease;
}
.cms-contact__social a.uil-facebook-f {
    background: #3b5998;
}
.cms-contact__social a.uil-instagram {
    background: #e4405f;
}
.cms-contact__social a.uil-youtube {
    background: #cd201f;
}
.cms-contact__social a.uil-twitter-alt {
    background: #55acee;
}
.cms-contact__social a.fa-x-twitter {
    background: #262829;
}
.cms-contact__social a.uil-linkedin-alt {
    background: #0077b5;
}
.cms-contact__social a:hover {
    transform: scale(1.1);
}
.cms-contact__map {
    width: 100%;
    height: auto;
    aspect-ratio: 3/1;
    border-radius: 20px;
    overflow: hidden;
}
.cms-contact__form-row {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.cms-contact__form-row label {
    font-size: 12px;
    font-weight: 300;
    opacity: 0.8;
}
.cms-contact__form-row input,
.cms-contact__form-row textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 5px;
    outline: none;
    transition: all 0.3s ease;
}
.cms-contact__form-row input:focus,
.cms-contact__form-row textarea:focus {
    border-color: #dba869;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
}
.cms-contact__form-row textarea {
    height: 150px;
    resize: none;
}
.cms-page {
    width: 100%;
    padding: 40px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
@media (max-width: 600px) {
    .cms-page {
        padding: 20px 15px;
    }
}
.cms-page__container {
    width: 960px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
@media (max-width: 600px) {
    .cms-page__container {
        width: 100%;
    }
}
.cms-page__container svg.not-found {
    max-height: 450px;
}
.cms-page__title {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.cms-page__title h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 5px;
}
.cms-page__title span {
    font-size: 18px;
    font-weight: 300;
}
.cms-page__title span img {
    max-width: 100% !important;
    height: auto !important;
}
.cms-page__img {
    width: calc(100% + 170px);
    margin-left: -85px;
    border-radius: 20px;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16/8;
    background: #eee;
}
@media (max-width: 600px) {
    .cms-page__img {
        width: 100%;
        margin-left: 0px;
    }
}
.cms-page__content {
    width: 100%;
    line-height: 1.5;
}
.cms-page__content img {
    max-width: 100% !important;
    height: auto !important;
}
.cms-post {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.cms-post__img {
    width: 100%;
    display: flex;
    margin-bottom: 10px;
}
.cms-post__img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16/10;
    background: #eee;
    border: 1px solid #eee;
    border-radius: 20px;
}
.cms-post__category {
    font-size: 14px;
    font-weight: 300;
    opacity: 0.5;
    transition: all 0.3s ease;
}
.cms-post__category:hover {
    opacity: 1;
}
.cms-post > h2 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
}
@media (max-width: 600px) {
    .cms-post > h2 {
        font-size: 16px;
    }
}
.cms-user {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.cms-user img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 13/16;
    background: #eee;
    border: 1px solid #eee;
    border-radius: 20px;
    margin-bottom: 10px;
}
.cms-user > h2 {
    font-size: 18px;
    font-weight: 600;
}
@media (max-width: 600px) {
    .cms-user > h2 {
        font-size: 16px;
    }
}
.cms-user > span {
    font-weight: 300;
    font-size: 14px;
}
.cms-comment {
    width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    border: 1px solid #eee;
}
.cms-comment__header {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    font-size: 14px;
    gap: 10px;
    align-items: center;
}
.cms-comment__header span {
    font-weight: 700;
}
.cms-comment__text {
    padding: 20px;
    font-size: 18px;
    line-height: 1.5;
    font-style: italic;
}
@media (max-width: 600px) {
    .cms-comment__text {
        font-size: 16px;
        padding: 15px;
    }
}
.cms-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.cms-pagination a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    border: 1px solid #eee;
    opacity: 0.8;
    transition: all 0.3s ease;
}
.cms-pagination a:hover {
    opacity: 1;
}
.cms-pagination a.active {
    background: #dba869;
    color: #fff;
    border: none;
    opacity: 1;
}
.cms-gallery {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.cms-gallery__item {
    display: flex;
}
.cms-gallery__item img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1/1;
    background: #eee;
    border: 1px solid #eee;
}
.cms-form {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 20px;
}
.cms-form h2 {
    font-size: 24px;
    font-weight: 600;
}
.cms-form button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background: #dba869;
    color: #fff;
}
.cms-form__item {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.cms-form__item label {
    font-size: 12px;
    font-weight: 300;
    opacity: 0.8;
}
.cms-form__item input,
.cms-form__item textarea,
.cms-form__item select {
    width: 100%;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 5px;
    outline: none;
    transition: all 0.3s ease;
}
.cms-form__item input:focus,
.cms-form__item textarea:focus,
.cms-form__item select:focus {
    border-color: #dba869;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
}
.cms-form__item input:required,
.cms-form__item textarea:required,
.cms-form__item select:required {
    border-left: 2px solid #cd201f;
}
.cms-form__item textarea {
    height: 150px;
    resize: none;
}
.cms-product {
    width: 100%;
    padding: 40px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
@media (max-width: 600px) {
    .cms-product {
        padding: 20px 15px;
    }
}
.cms-product__container {
    width: 1200px;
    display: flex;
    gap: 40px;
}
@media (max-width: 600px) {
    .cms-product__container {
        width: 100%;
        flex-direction: column;
        gap: 30px;
    }
}
.cms-product__gallery {
    width: 610px;
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    gap: 15px;
    align-self: flex-start;
    position: sticky;
    top: 150px;
}
@media (max-width: 600px) {
    .cms-product__gallery {
        width: 100%;
        position: relative;
        top: 0px;
    }
}
.cms-product__top {
    width: 100%;
    display: flex;
    overflow: hidden;
}
.cms-product__top-wrapper {
    display: flex;
}
.cms-product__top-img {
    display: flex;
    width: 100%;
}
.cms-product__top-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16/10;
    background: #eee;
    border: 1px solid #eee;
    border-radius: 20px;
}
.cms-product__bottom {
    width: 100%;
    display: flex;
    overflow: hidden;
}
.cms-product__bottom-wrapper {
    display: flex;
}
.cms-product__bottom-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16/10;
    background: #eee;
    border: 1px solid #eee;
    border-radius: 10px;
    cursor: pointer;
}
.cms-product__bottom-img.swiper-slide-thumb-active {
    border-color: #dba869;
}
.cms-product__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cms-product__content h1 {
    font-size: 32px;
    font-weight: 600;
}
@media (max-width: 600px) {
    .cms-product__content h1 {
        font-size: 28px;
    }
}
.cms-product__content-description {
    font-size: 18px;
    font-weight: 300;
}
.cms-product__content-description p:last-child {
    margin-bottom: 0px;
}
.cms-product__item {
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 10px;
}
.cms-product__item.active h2 i {
    transform: rotate(180deg);
}
.cms-product__item.active .cms-product__item-content {
    max-height: 1000px;
    padding: 20px;
    line-height: 1.5;
}
.cms-product__item.active .cms-product__item-content h1 {
    font-size: 24px;
    font-weight: 600;
}
.cms-product__item.active .cms-product__item-content h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
.cms-product__item.active .cms-product__item-content h3,
.cms-product__item.active .cms-product__item-content h4,
.cms-product__item.active .cms-product__item-content h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}
.cms-product__item.active .cms-product__item-content ul {
    margin: 15px;
}
.cms-product__item.active .cms-product__item-content img {
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
}
.cms-product__item h2 {
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    color: #dba869;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.cms-product__item h2 i {
    transition: all 0.3s ease;
}
.cms-product__item-content {
    padding: 0px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.cms-catalogs {
    width: 100%;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
@media (max-width: 600px) {
    .cms-catalogs {
        padding: 0px 15px;
        margin-bottom: 50px;
    }
}
.cms-catalogs__container {
    width: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
}
@media (max-width: 600px) {
    .cms-catalogs__container {
        width: 100%;
    }
}
.cms-catalogs__wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
@media (max-width: 600px) {
    .cms-catalogs__wrapper {
        grid-template-columns: 1fr;
    }
}
.cms-catalog {
    display: flex;
    width: 100%;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 20px;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}
.cms-catalog:hover {
    border: 1px solid #dba869;
    background: rgba(219, 168, 105, 0.1);
}
.cms-catalog i {
    width: 60px;
    height: 60px;
    font-size: 30px;
    color: #dba869;
    background: rgba(219, 168, 105, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cms-catalog h2 {
    font-size: 22px;
    font-weight: 600;
}
body {
    font-size: 16px;
    font-family: "Bricolage Grotesque", sans-serif;
    min-width: 1200px;
    color: #241a0d;
}
@media (max-width: 600px) {
    body {
        min-width: 100%;
    }
}
a {
    color: #241a0d;
}
a:hover {
    color: #000000;
}
p {
    margin-bottom: 15px;
}
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
.button {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    width: max-content;
    padding: 15px 30px;
    border-radius: 45px;
    transition: all 0.3s ease;
}
.button--main {
    background: #bb8078;
    color: #fff;
}
.button--main:hover {
    background: #d99e96;
    color: #fff;
}
.button--ghost {
    border: 1px solid #d99e96;
    color: #bb8078;
}
.button--ghost:hover {
    background: #bb8078;
    color: #fff;
}
.button--detail {
    padding: 0px;
    gap: 10px;
    color: #bb8078;
}
.button--detail:hover {
    color: #241a0d;
}
.main-title {
    max-width: 690px;
    text-align: center;
    font-size: 36px;
    color: #bb8078;
    margin-bottom: 30px;
    font-family: Bricolage Grotesque Condensed;
    font-weight: 500;
}
@media (max-width: 600px) {
    .main-title {
        font-size: 24px;
    }
}
.main-title span {
    color: #241a0d;
}
.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 99;
    background: linear-gradient(138deg, #fffaf3 0%, #fff7ee 100%);
}
@media (max-width: 600px) {
    .header {
        display: none;
    }
}
.header__contact {
    width: 100%;
    background: #f1d8d0;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header__contact a {
    font-weight: 700;
    display: inline-block;
}
.header__container {
    width: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 20px 0;
}
.header__container > ul {
    display: flex;
    width: 450px;
    justify-content: space-between;
}
.header__container > ul > li {
    display: flex;
    position: relative;
}
.header__container > ul > li > a {
    font-size: 18px;
    position: relative;
}
.header__container > ul > li > a::before {
    height: 16px;
    position: absolute;
    left: 50%;
    display: block;
    content: "";
    background: url("../images/menu-icon.svg") top center no-repeat;
    background-size: contain;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    width: 20px;
    opacity: 0;
    top: 0px;
}
.header__container > ul > li > a:hover::before {
    opacity: 1;
    top: -20px;
    width: 37px;
}
.header__container > ul > li:hover .sub-menu {
    display: flex;
}
.header__container > ul > li .sub-menu {
    position: absolute;
    left: 0px;
    top: 15px;
    padding-top: 15px;
    display: none;
}
.header__container > ul > li .sub-menu ul {
    padding: 30px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #efe7dc;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 520px;
}
.header__container > ul > li .sub-menu ul li {
    display: flex;
}
.header__container > ul > li .sub-menu ul a {
    display: flex;
}
.header-mobile {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: linear-gradient(138deg, #fffaf3 0%, #fff7ee 100%);
    position: relative;
    z-index: 99;
}
@media (max-width: 600px) {
    .header-mobile {
        display: flex;
    }
}
.header-mobile__logo {
    display: flex;
}
.header-mobile__logo img {
    height: 40px;
}
.header-mobile__menu {
    width: 40px;
    height: 40px;
    background: #dba869;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.header-mobile__nav {
    position: absolute;
    display: none;
    width: 100%;
    top: 70px;
    left: 0px;
    padding: 25px 15px;
    background: #fff;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1019607843);
}
.header-mobile__nav li {
    display: flex;
    width: 100%;
}
.header-mobile__nav a {
    width: 100%;
    display: flex;
    padding: 8px 0;
}
.hero {
    height: 850px;
    background: linear-gradient(138deg, #fffaf3 0%, #f1d8d0 100%);
    padding-top: 170px;
    margin-top: -170px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
@media (max-width: 600px) {
    .hero {
        height: auto;
        margin-top: -70px;
        padding-top: 70px;
    }
}
.hero__container {
    width: 1200px;
    height: 680px;
    position: relative;
    display: flex;
}
@media (max-width: 600px) {
    .hero__container {
        width: 100%;
        height: auto;
        flex-direction: column;
    }
}
.hero__text {
    width: 690px;
    display: flex;
    flex-direction: column;
    margin-top: 70px;
    position: relative;
    z-index: 2;
}
@media (max-width: 600px) {
    .hero__text {
        width: 100%;
        margin: 40px 0;
        padding: 15px;
    }
}
.hero__text h2 {
    font-size: 65px;
    font-family: Bricolage Grotesque Condensed;
    width: 730px;
    margin-bottom: 10px;
}
@media (max-width: 600px) {
    .hero__text h2 {
        font-size: 36px;
        width: 100%;
    }
}
.hero__text span {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 26px;
    margin-bottom: 20px;
    opacity: 0.8;
}
.hero__text-buttons {
    display: flex;
    gap: 15px;
}
@media (max-width: 600px) {
    .hero__text-buttons {
        flex-direction: column;
        gap: 10px;
    }
}
@media (max-width: 600px) {
    .hero__text-buttons .button {
        width: 100%;
    }
}
.hero__img {
    display: flex;
    position: absolute;
    right: 70px;
    bottom: 0px;
}
@media (max-width: 600px) {
    .hero__img {
        position: relative;
        right: initial;
        bottom: initial;
        width: 100%;
        height: auto;
        align-items: center;
        justify-content: center;
    }
}
.hero__img-woman {
    position: relative;
    z-index: 2;
    max-width: 100%;
}
.hero__img-wing-left {
    position: absolute;
    left: -80px;
    bottom: 0px;
    animation: pulse 1.5s infinite ease;
    opacity: 0.4;
}
.hero__img-wing-right {
    position: absolute;
    right: -80px;
    bottom: 0px;
    animation: pulse 1.5s infinite ease;
    opacity: 0.4;
}
.hero__contact {
    display: flex;
    align-items: center;
    gap: 20px;
    position: absolute;
    left: 0px;
    bottom: 70px;
    z-index: 99;
}
@media (max-width: 600px) {
    .hero__contact {
        left: 50%;
        transform: translateX(-50%);
        bottom: 30px;
        padding: 10px;
        background: #fff;
        border-radius: 10px;
        gap: 10px;
    }
}
.hero__contact-social {
    display: flex;
    gap: 10px;
}
@media (max-width: 600px) {
    .hero__contact-social {
        gap: 5px;
    }
}
.hero__contact-social li {
    display: flex;
}
.hero__contact-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #d99e96;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
}
@media (max-width: 600px) {
    .hero__contact-social a {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}
.hero__contact-social a:hover {
    background: #241a0d;
    color: #fff;
}
.hero__contact-phone {
    font-size: 22px;
    font-weight: 600;
    color: #bb8078;
    width: max-content;
}
@media (max-width: 600px) {
    .hero__contact-phone {
        font-size: 16px;
    }
}
.services {
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 600px) {
    .services {
        padding: 50px 15px;
    }
}
.services__container {
    width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
@media (max-width: 600px) {
    .services__container {
        width: 100%;
    }
}
.services__wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}
@media (max-width: 600px) {
    .services__wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
.service {
    display: flex;
    flex-direction: column;
    border: 1px solid #bb8078;
    padding: 15px;
    border-radius: 20px;
    position: relative;
}
.service::before {
    width: calc(100% - 30px);
    content: "";
    height: 10px;
    background: #bb8078;
    border-radius: 0px 0px 20px 20px;
    position: absolute;
    left: 20px;
    bottom: -10px;
}
.service__img {
    width: 100%;
    display: flex;
    margin-bottom: 15px;
}
.service__img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 3/2;
    border-radius: 10px;
    background: #eee;
}
.service h2 {
    font-size: 22px;
    font-weight: 500;
    font-family: Bricolage Grotesque Condensed;
    margin-bottom: 5px;
}
.service span {
    font-weight: 300;
    opacity: 0.8;
    margin-bottom: 10px;
}
.about {
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(136deg, #fffaf3 0%, #f1d8d0 100%);
    position: relative;
    overflow: hidden;
}
@media (max-width: 600px) {
    .about {
        padding: 50px 15px;
    }
}
.about::before {
    width: 320px;
    height: 870px;
    position: absolute;
    right: 0px;
    bottom: -220px;
    content: "";
    background: url("../images/wing-left.svg") top left no-repeat;
    opacity: 0.4;
    pointer-events: none;
}
.about__container {
    width: 1200px;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 9;
}
@media (max-width: 600px) {
    .about__container {
        width: 100%;
    }
}
.about__img {
    width: 595px;
    height: 595px;
    flex-shrink: 0;
    position: relative;
}
@media (max-width: 600px) {
    .about__img {
        display: none;
    }
}
.about__img img {
    position: absolute;
    border-radius: 20px;
}
.about__img-1 {
    right: 0px;
    top: 0px;
    z-index: 2;
}
.about__img-2 {
    left: 0px;
    top: 0px;
}
.about__img-3 {
    left: 0px;
    bottom: 0px;
}
.about__info {
    display: flex;
    flex-direction: column;
}
.about__info h3 {
    font-size: 46px;
    color: #bb8078;
    font-weight: 500;
    font-family: Bricolage Grotesque Condensed;
    margin-bottom: 10px;
}
@media (max-width: 600px) {
    .about__info h3 {
        font-size: 36px;
    }
}
.about__info h3 span {
    color: #241a0d;
}
.about__info-text {
    margin-bottom: 15px;
}
.about__info-text p:last-child {
    margin-bottom: 0px;
}
.about__info-buttons {
    display: flex;
    gap: 15px;
}
.reservation {
    padding-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.reservation__container {
    width: 1200px;
    display: flex;
    flex-direction: column;
    position: relative;
}
@media (max-width: 600px) {
    .reservation__container {
        width: 100%;
    }
}
.reservation__wrapper {
    width: 100%;
    height: 475px;
    color: #fff;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(314deg, #e5ddd9 0%, #bb8078 100%);
    display: flex;
    align-items: center;
    padding: 0 80px;
    position: relative;
}
@media (max-width: 600px) {
    .reservation__wrapper {
        padding: 50px 15px;
        height: auto;
        border-radius: 0px;
    }
}
.reservation__wrapper-wings {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 590px;
    height: 480px;
}
@media (max-width: 600px) {
    .reservation__wrapper-wings {
        display: none;
    }
}
.reservation__wrapper-wings img {
    width: 220px;
    position: absolute;
    mix-blend-mode: overlay;
}
.reservation__wrapper-wings-left {
    bottom: 0px;
    left: 0px;
    animation: pulse 1.5s infinite ease;
}
.reservation__wrapper-wings-right {
    bottom: 0px;
    right: 0px;
    animation: pulse 1.5s infinite ease;
}
.reservation__woman {
    position: absolute;
    bottom: 0px;
    right: 20px;
}
@media (max-width: 600px) {
    .reservation__woman {
        display: none;
    }
}
.reservation__text {
    display: flex;
    flex-direction: column;
    width: 650px;
    flex-shrink: 0;
    z-index: 9;
    position: relative;
}
@media (max-width: 600px) {
    .reservation__text {
        width: 100%;
    }
}
.reservation__text h4 {
    font-size: 46px;
    font-weight: 500;
    font-family: Bricolage Grotesque Condensed;
    margin-bottom: 10px;
}
.reservation__text span {
    font-size: 18px;
    font-weight: 300;
    opacity: 0.8;
    margin-bottom: 10px;
}
.reservation__text form {
    display: flex;
    gap: 20px;
    width: 100%;
}
@media (max-width: 600px) {
    .reservation__text form {
        flex-direction: column;
    }
}
.reservation__text form input {
    width: 100%;
    outline: 5px solid rgba(255, 255, 255, 0.2);
    border: none;
    padding: 10px 30px;
    border-radius: 45px;
    font-weight: 300;
}
.reservation__text form button {
    padding: 15px 30px;
    border-radius: 45px;
    background: #241a0d;
    outline: 5px solid rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-weight: 300;
    font-size: 18px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.reservation__text form button:hover {
    background: #6b013b;
}
.blogs {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 50px 0;
}
@media (max-width: 600px) {
    .blogs {
        padding: 50px 15px;
    }
}
.blogs__container {
    width: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
@media (max-width: 600px) {
    .blogs__container {
        width: 100%;
    }
}
.blogs__wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}
@media (max-width: 600px) {
    .blogs__wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
.blog {
    display: flex;
    flex-direction: column;
    border: 1px solid #d99e96;
    padding: 15px;
    border-radius: 20px;
    position: relative;
}
.blog::before {
    width: calc(100% - 30px);
    content: "";
    height: 10px;
    background: #d99e96;
    border-radius: 0px 0px 20px 20px;
    position: absolute;
    left: 20px;
    bottom: -10px;
}
.blog__img {
    width: 100%;
    display: flex;
    margin-bottom: 15px;
}
.blog__img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 3/2;
    border-radius: 10px;
    background: #eee;
}
.blog h3 {
    font-size: 22px;
    font-weight: 500;
    font-family: Bricolage Grotesque Condensed;
    margin-bottom: 5px;
}
.blog span {
    font-weight: 300;
    opacity: 0.8;
    margin-bottom: 15px;
}
.blog__info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.blog__info span {
    font-weight: 300;
    opacity: 0.4;
}
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.footer__logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.footer__logo::before {
    width: 100%;
    height: 1px;
    content: "";
    background: #efe7dc;
}
.footer__logo::after {
    width: 100%;
    height: 1px;
    content: "";
    background: #efe7dc;
}
.footer__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    padding: 60px 0 90px 0;
}
@media (max-width: 600px) {
    .footer__nav {
        padding: 10px 15px 40px 15px;
    }
}
.footer__nav-container {
    width: 1200px;
    display: flex;
    justify-content: space-between;
}
@media (max-width: 600px) {
    .footer__nav-container {
        width: 100%;
        flex-direction: column;
        gap: 20px;
    }
}
.footer__menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.footer__menu h2 {
    font-size: 22px;
    font-weight: 600;
}
.footer__menu ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-weight: 300;
    opacity: 0.8;
}
@media (max-width: 600px) {
    .footer__menu ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}
.footer__menu ul.cols-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 410px;
}
@media (max-width: 600px) {
    .footer__menu ul.cols-3 {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }
}
.footer__menu ul li {
    display: flex;
}
.footer__menu ul a {
    display: flex;
}
.footer__contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
@media (max-width: 600px) {
    .footer__contact {
        align-items: center;
    }
}
.footer__contact-address {
    display: flex;
    flex-direction: column;
    font-size: 18px;
    text-align: right;
    margin-bottom: 15px;
    gap: 5px;
}
@media (max-width: 600px) {
    .footer__contact-address {
        text-align: center;
    }
}
.footer__contact-phone {
    color: #83643f;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}
.footer__contact-social {
    display: flex;
    gap: 10px;
}
.footer__contact-social li {
    display: flex;
}
.footer__contact-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #d99e96;
    border: 1px solid #d99e96;
    font-size: 18px;
    transition: all 0.3s ease;
}
.footer__contact-social a:hover {
    background: #d99e96;
    color: #fff;
}
.footer__cop {
    display: flex;
    width: 100%;
    background: #f1d8d0;
    padding: 40px 0;
    align-items: center;
    justify-content: center;
}
@media (max-width: 600px) {
    .footer__cop {
        padding: 30px 15px;
    }
}
.footer__cop-container {
    width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0.8;
}
@media (max-width: 600px) {
    .footer__cop-container {
        width: 100%;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
.footer__cop-container > div {
    width: auto;
}
.footer__cop-container > div p:last-child {
    margin-bottom: 0px;
}
.footer__cop-container a {
    color: #d99e96;
    text-decoration: underline;
} /*# sourceMappingURL=main.css.map */
