/* Subpage Hero Section */
.hero-subpage {
    background: linear-gradient(to bottom, #f9f9f9 100vh, #fff 49%);
}
.company-infos {
    display: flex;
    gap: 20px;
}
.contact-btn {
    display: flex;
    flex-direction: column;
    text-align: center;
    flex: 50%;
    gap: 12px;
    padding: 25px 23px;
    border-radius: 8px;
    background-color: #fcfcfc;
    border: 0.0625rem solid #e3e3e3;
    box-shadow: 3px 3px 6px #c9c9c9, -3px -3px 6px #fff;
}
@media (hover: hover) {
    .contact-btn:hover {
        background-color: #fcfcfc;
        border-color: #e3e3e3;
        box-shadow: inset 2px 2px 5px #c9c9c9, inset -3px -3px 7px #fff;
        cursor: pointer;
    }
}
.info-text {
    font-size: calc(10.7px + 0.390625vw);
    line-height: 1.4;
}
.hero-subpage .right {
    position: relative;
}
.hero-img {
    border: 0.0625rem solid #e3e3e3;
    box-shadow: 3px 3px 6px #c9c9c9, -3px -3px 6px #fff;
    position: fixed;
    right: 9vw;
}
.maps {
    width: 45px;
}
.link {
    position: fixed;
    right: calc(9vw + 17.25vw);
    transform: translateX(50%);
    font-size: calc(20px + 0.390625vw);
    letter-spacing: -0.5px;
    text-align: center;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.85);
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: -5px;
}
.link:hover {
    transform: translateX(50%) scale(1.1);
}

/* Subpage Hero Section - Bottom */
.input-container {
    display: flex;
    height: 55px;
    /* gap: 20px; */
    gap: 15px;
    /* margin-bottom: 20px; */
    margin-bottom: 15px;
}
.message-container {
    width: 100%;
    height: 200px;
}
.field-sm,
.field-xl {
    height: 100%;
    width: 100%;
    font-size: 16px;
    padding: 0 15px;
    background-color: #f9f9f9;
    color: rgba(0, 0, 0, 0.8);
    outline: none;
    resize: none;
    overflow: auto;
    border: 0.0625rem solid #e3e3e3;
    box-shadow: 3px 3px 6px #c9c9c9, -3px -3px 6px #fff;
    transition: all 0.3s ease;
}
.field-sm {
    border-radius: 6px;
}
.field-xl {
    border-radius: 8px;
    padding-top: 9px;
}
.field-sm:focus,
.field-xl:focus {
    background-color: #f9f9f9;
    border-color: #e3e3e3;
    box-shadow: inset 2px 2px 5px #c9c9c9, inset -3px -3px 7px #fff;
}
#subject {
    position: absolute;
    z-index: -9;
}
.primary-input-btn {
    border: none;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    background-color: #e2001e;
    color: #fff;
    font-size: calc(12px + 0.390625vw);
    width: 100%;
    height: 55px;
    font-weight: 400;
    letter-spacing: 1.5px;
    padding: 16px 48px;
    margin: 40px 0 15px 0;
    border-radius: 6px;
    transition: all 0.3s ease;
}
.primary-input-btn:hover {
    background-color: #f40d2c;
}
