* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

button {
    background: transparent;
    border: transparent;
}

html {
    scroll-behavior: smooth;
}

.header-wrapper {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    overflow: hidden;
}

.header {
    width: 100%;
    padding: 40px 70px 0;
    position: relative;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.20) 0%,
            rgba(255, 255, 255, 0.10) 40%,
            rgba(255, 255, 255, 0.05) 70%,
            rgba(255, 255, 255, 0) 100%);
    z-index: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    -webkit-mask-image: linear-gradient(to bottom,
            black 0%,
            black 60%,
            transparent 100%);
    mask-image: linear-gradient(to bottom,
            black 0%,
            black 60%,
            transparent 100%);

    pointer-events: none;

    background: rgba(255, 255, 255, 0.07);
}

.header * {
    position: relative;
    z-index: 9;
}

.header a img {
    width: 228px;
    height: auto;
}

.btn a {
    display: inline-flex;
    height: 55px;
    padding: 10px 38px;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease, color 0.3s ease;
}

.white-outline a {
    color: #FFF;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    border: 0.5px solid #FFF;
}

.white-outline:hover a {
    background: #fff;
    color: #706C65;
}

/* Hero Section */
.hero-section {
    width: 100%;
    height: 100vh;
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    z-index: 9;
    padding: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-section h2 {
    color: #FFF;
    font-family: "Times New Roman";
    font-size: 43px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
    text-transform: uppercase;
    margin-top: 180px;
}

.hero-section h6 {
    color: #FFF;
    font-family: "Times New Roman";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-top: 8px;
}

/* About Section */
.about-section {
    width: 100%;
    padding: 78px 70px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-img-wrapper {
    width: 48%;
    position: relative;
    padding-right: 62px;
}

.about-img-wrapper>img {
    width: 100%;
    height: auto;
    display: flex;
}

.icon-wrapper {
    position: absolute;
    top: 48%;
    right: 0;
}

.icon-wrapper img {
    width: 124px;
    height: 124px;
    aspect-ratio: 1/1;
}

.about-content {
    width: 52%;
}

.about-content h2 {
    font-family: "Times New Roman";
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: 65px;
    text-transform: uppercase;
    max-width: 601px;
    color: transparent;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: url('../images/font-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.about-content h6 {
    color: #706C65;
    font-family: "Times New Roman";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    /* 133.333% */
    text-transform: uppercase;
    max-width: 642px;
    margin: 14px 0 10px;
}

.about-content p {
    color: #706C65;
    font-family: "Times New Roman";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
    max-width: 642px;
    margin-bottom: 24px;
}

.white-dark a {
    color: #706C65;
    text-align: center;
    font-family: "Times New Roman";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    /* 138.889% */
    text-transform: uppercase;
    border: 0.5px solid #706C65;
}

.white-dark:hover a {
    background: #706C65;
    color: #fff;
}

/* Contact Section */
.contact-section {
    width: 100%;
    background: #F0F0F0;
    padding: 70px;
    display: flex;
    gap: 50px;
    justify-content: space-between;
}

.contact-heading {
    width: 100%;
    max-width: 547px;
}

.contact-heading h2 {
    color: #000;
    font-family: "Times New Roman";
    font-size: 56px;
    font-style: normal;
    font-weight: 400;
    line-height: 64px;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: url('../images/font-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.contact-heading p {
    color: #706C65;
    font-family: "Times New Roman";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.contact-form {
    width: 100%;
    max-width: 640px;
    background: #706C65;
    padding: 70px 90px 70px 70px;
}

.contact-form div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #F0F0F0;
    font-family: "Times New Roman";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.contact-form input,
.contact-form textarea {
    background: transparent;
    outline: none;
    border: none;
    border-bottom: 1px solid #F0F0F0;
    color: #F0F0F0;
    font-family: "Times New Roman";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 50px;
    padding-bottom: 16px;
}

.contact-form textarea {
    resize: none;
}

.contact-form button {
    display: inline-flex;
    height: 55px;
    padding: 15px 50px 15px 51px;
    justify-content: center;
    align-items: center;
    color: #FFF;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    transition: background 0.3s ease, color 0.3s ease;
    border: 0.5px solid #FFF;
    cursor: pointer;
}

.contact-form button:hover {
    background: #fff;
    color: #706C65;
}

/* Address Section */
.address-section {
    width: 100%;
    padding: 80px 70px 70px;
}

.address-section iframe {
    width: 100%;
}

.address-wrapper {
    width: 100%;
    margin-top: 36px;
    display: flex;
}

.address-container {
    width: 100%;
}

.address {
    width: 100%;
    padding: 22px;
    text-align: center;
    border-right: 1px solid #B6BABC;
}

.address-container:last-of-type div {
    border-right: none;
}

.address h5 {
    color: #706C65;
    font-family: "Times New Roman";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    /* 160% */
    text-transform: uppercase;
}

.address h6 {
    color: #B6BABC;
    text-align: center;
    font-family: "Times New Roman";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
    margin-top: 6px;
}

.address-container img {
    width: 94px;
    height: 94px;
    aspect-ratio: 1/1;
}

.address-container .active-address {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity ease 0.3s;
}

.address-container.active .active-address {
    opacity: 1;
    visibility: visible;
}

/* Footer */
.footer {
    width: 100%;
    background: #1E1E1E;
    padding: 60px 75px 50px;
}

.footer-logo {
    width: 100%;
    display: flex;
    justify-content: center;
}

.footer-logo img {
    width: 256px;
    height: auto;
    object-fit: cover;
}

.footer-content {
    width: 100%;
    padding: 70px 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: inline-flex;
    align-items: center;
    gap: 94px;
    padding-right: 24px;
}

.social-links h6 {
    color: #FFF;
    font-family: "Bressay Trial";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    /* 125% */
    text-transform: uppercase;
    margin-bottom: 20px;
}

.social-links div div {
    display: flex;
    align-items: center;
    gap: 19px;
}

.social-links a img {
    width: 32px;
    height: 32px;
    aspect-ratio: 1/1;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-image: url('../images/font-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.footer-bottom-content {
    width: 100%;
}

.footer-bottom-content img {
    width: 110px;
    height: 110px;
    aspect-ratio: 1/1;
    margin: 30px auto 36px;
    display: flex;
}

.footer-bottom-content p,
.footer-bottom-content p a {
    color: #545858;
    font-family: "Times New Roman";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    text-align: center;
}
