*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    background-color: #EDE1CB;

    @media screen and (max-width: 530px) {
        font-size: 14px;
    }
}

/* Neue Haas Grotesk Display */

@font-face {
    font-family: "NeueHaasDisplay";
    src: url("assets/font/neue-has/NeueHaasDisplay-XXThin.woff2") format("woff2");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "NeueHaasDisplay";
    src: url("assets/font/neue-has/NeueHaasDisplay-XThin.woff2") format("woff2");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "NeueHaasDisplay";
    src: url("assets/font/neue-has/NeueHaasDisplay-Thin.woff2") format("woff2");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "NeueHaasDisplay";
    src: url("assets/font/neue-has/NeueHaasDisplay-Light.woff2") format("woff2");
    font-weight: 350;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "NeueHaasDisplay";
    src: url("assets/font/neue-has/NeueHaasDisplay-Roman.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "NeueHaasDisplay";
    src: url("assets/font/neue-has/NeueHaasDisplay-Mediu.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "NeueHaasDisplay";
    src: url("assets/font/neue-has/NeueHaasDisplay-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "NeueHaasDisplay";
    src: url("assets/font/neue-has/NeueHaasDisplay-Black.woff2") format("woff2");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: "NeueHaasDisplay", sans-serif;
    font-weight: 300;
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.spanda-home-main {
    position: relative;
    width: 100vw;
    height: 100dvh;

    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.home-bg {
    z-index: -1;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-content-divider-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.img-content-divider-line p {
    color: #5a5a52;
    letter-spacing: 1px;
    font-weight: 300;
    text-align: center;
    @media screen and (max-width: 800px) {
        font-size: 15px;
    }
}

.img-content-divider-line p .br-tag {
    display: none;
    @media screen and (max-width: 1000px) {
        display: inline;
    }
}

.img-content-divider-line .logo {
    width: 60%;
    height: auto;
    /* position: relative; */
    @media screen and (max-width: 1000px) {
        width: 80%;
    }
}

.img-content-divider-line .logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.img-content-divider-line .divider {
    width: 1px;
    height: 54px;
    background: linear-gradient(to bottom, transparent, #C90133, transparent);
    margin: 16px 0;
    opacity: 0;
    animation: fadeUp 1s ease 0.6s forwards;
}

.home-second-row {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 5%;
    @media screen and (max-width: 768px) {
        gap: 42px;
    }
}

.wrapper {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 24px;

    @media screen and (max-width: 1600px) {
        padding: 0 5%;
    }
    @media screen and (max-width: 1000px) {
        padding: 0 40px;
    }
    @media screen and (max-width: 620px) {
        padding: 0 20px;
    }
    @media screen and (max-width: 530px) {
        padding: 0 16px;
    }
}
.wrapper-column {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 24px;

    @media screen and (max-width: 1600px) {
        padding: 0 5%;
    }
}

.location-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.location-title {
    color: #C90133;
    margin-left: 6px;
    text-transform: uppercase;
    font-size: 13px;
}

.location-wrapper .location {
    display: flex;
    align-items: center;
    gap: 16px;
}

a.location svg .a {
    transition: stroke 0.35s ease;
}

a.location:hover svg .a {
    stroke: #EA4335;
}

.location-wrapper .location span {
    position: relative;
}

.location-wrapper .location span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 1px;
    width: 100%;
    border-radius: 1px;
    background-color: #EA4335;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}
.location-wrapper .location:hover span::after {
    transform: scaleX(1);
    transform-origin: left;
}

.location-wrapper .location svg {
    height: 32px;
    width: auto;
    object-fit: contain;
}


.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-title {
    color: #C90133;
    text-align: end;
}

.contact-wrapper .contact {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 16px;
}

a.contact svg .a {
    transition: stroke 0.35s ease;
}

a.contact:hover svg .a {
    stroke: #EA4335;
}

.contact-wrapper .contact span {
    position: relative;
}

.contact-wrapper .contact span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 1px;
    width: 100%;
    border-radius: 1px;
    background-color: #EA4335;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.contact-wrapper .contact:hover span::after {
    transform: scaleX(1);
    transform-origin: right;
}

.contact-wrapper .contact svg {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.social-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-wrapper .social {
    /* background-color: #C90133; */
    max-height: fit-content;
}

.social-wrapper .social svg {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.social-wrapper .social .facebook {
    height: 34px;
    margin-left: -3px;
}
.social-wrapper .social .youtube {
    height: 43px;
}

a.social svg path {
    color: #5a5a52;
}

a.social svg path {
    transition: stroke 0.35s ease;
}

a.social:hover svg path {
    stroke: #EA4335;
    color: #EA4335;
}

.btn-liquid {
    position: relative;
    overflow: hidden;
    padding: 14px 40px;
    font-size: 15px;
    font-weight: 500;
    color: #000;
    border: 1.5px solid #000;
    border-radius: 100px;
    background: transparent;
    cursor: pointer;
    transition: color 0.5s ease;
    letter-spacing: 0.02em;
    z-index: 0;
}

.btn-liquid::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 50% 50% 0 0 / 30% 30% 0 0;
    transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1), border-radius 0.5s ease;
    z-index: -1;
}

.btn-liquid:hover {
    color: #C90133;
}

.btn-liquid:hover::before {
    bottom: 0;
    border-radius: 0;
}