@media (max-width: 1139px) {
  .footer {
    position: relative;
    width: 100%;
    height: auto;
    padding: 35px 20px;
    padding-bottom: 15px;
    background: rgba(211, 211, 211, 0.3);
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .footer .top {
    border-bottom: 1px solid rgba(211, 211, 211, 0.78);
    padding-bottom: 40px;
  }
  .footer .top h2 {
    color: #1F1F1F;
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
  }
  .footer .top p {
    font-size: 15px;
    opacity: 0.88;
    color: #1F1F1F;
  }
  .footer .top .top-text .messe-info {
    display: none;
  }
  .footer .top .signup-card {
    position: relative;
    margin-top: 20px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 40px rgba(0, 20, 40, 0.18);
  }
  .footer .top .signup-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .footer .top .signup-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 15, 28, 0.92) 0%, rgba(0, 20, 35, 0.45) 45%, rgba(0, 20, 35, 0.05) 75%);
    pointer-events: none;
    z-index: 1;
  }
  .footer .top .signup-card .signup-card-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: rgba(246, 246, 246, 0.16);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgb(246, 246, 246);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 6px 12px;
    border-radius: 30px;
  }
  .footer .top .signup-card .signup-card-body {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    padding: 18px;
  }
  .footer .top .signup-card .signup-card-body .signup-card-label {
    color: rgb(246, 246, 246);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
  }
  .footer .top .signup-card .signup-card-body input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(246, 246, 246, 0.18);
    backdrop-filter: blur(8px);
    font-size: 14px;
    font-family: inherit;
    color: rgb(246, 246, 246);
    transition: background 0.2s ease, border-color 0.2s ease;
  }
  .footer .top .signup-card .signup-card-body input::placeholder {
    color: rgba(246, 246, 246, 0.75);
  }
  .footer .top .signup-card .signup-card-body input:focus {
    outline: none;
    border-color: rgb(246, 246, 246);
    background: rgba(246, 246, 246, 0.28);
  }
  .footer .top .signup-card .signup-card-body .button {
    background: rgb(246, 246, 246);
    color: #1F1F1F;
    padding: 12px 26px;
    border-radius: 33px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    transition: transform 0.2s ease;
  }
  .footer .top .signup-card .signup-card-body .button i {
    font-size: 13px;
    margin-left: 9px;
    transition: transform 0.2s ease;
  }
  .footer .top .signup-card .signup-card-body .button:active {
    transform: scale(0.98);
  }
  .footer .top .signup-card:active img {
    transform: scale(1.04);
  }
  .footer .bottom .copyright {
    display: flex;
    flex-direction: column;
    margin-top: 35px;
  }
  .footer .bottom .copyright .logo {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 15px;
  }
  .footer .bottom .copyright .logo.small {
    width: 20%;
    margin-bottom: 45px;
  }
  .footer .bottom .copyright p {
    font-family: unset;
    font-style: unset;
    font-size: 14px;
    opacity: 0.88;
  }
  .footer .bottom p {
    font-size: 18px;
    opacity: 1;
    color: #1F1F1F;
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
  }
  .footer .bottom .links {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
  }
  .footer .bottom .links.first {
    margin-top: 25px;
  }
  .footer .bottom .links p {
    font-weight: 500;
    margin-bottom: 2px;
    font-family: unset;
    font-style: unset;
    font-size: 16px;
  }
  .footer .bottom .links a {
    display: block;
    width: max-content;
    color: #1F1F1F;
    font-size: 14px;
    text-decoration: none;
    padding: 3px 0px;
    margin-block: 3px;
    opacity: 0.8;
  }
}
@media only screen and (min-device-width: 1140px) {
  .footer {
    position: relative;
    width: 100%;
    height: auto;
    padding: 80px 35px;
    background: rgba(211, 211, 211, 0.3);
    display: flex;
    flex-direction: column;
  }
  .footer .content {
    width: 100%;
    max-width: 1460px;
    margin-inline: auto;
  }
  .footer .top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 60px;
    border-bottom: 1px solid rgba(211, 211, 211, 0.78);
    padding-bottom: 50px;
    margin-bottom: 60px;
  }
  .footer .top .top-text {
    padding-top: 4px;
  }
  .footer .top h2 {
    color: #1F1F1F;
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    max-width: 560px;
  }
  .footer .top p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.8;
    color: #1F1F1F;
    max-width: 480px;
  }
  .footer .top .top-text .messe-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 28px;
    width: max-content;
    max-width: 100%;
  }
  .footer .top .top-text .messe-info .rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer .top .top-text .messe-info .rows .info-row {
    background: rgb(246, 246, 246);
    color: #1F1F1F;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
    white-space: nowrap;
  }
  .footer .top .top-text .messe-info .rows .info-row strong {
    font-weight: 700;
  }
  .footer .top .top-text .messe-info .countdown {
    display: flex;
    gap: 10px;
  }
  .footer .top .top-text .messe-info .countdown .unit {
    background: rgb(246, 246, 246);
    color: #1F1F1F;
    border-radius: 8px;
    padding: 12px 20px;
    text-align: center;
    min-width: 76px;
    display: flex;
    flex-direction: column;
  }
  .footer .top .top-text .messe-info .countdown .unit .num {
    font-size: 22px;
    font-weight: 700;
    color: #004876;
    line-height: 1.2;
  }
  .footer .top .top-text .messe-info .countdown .unit .label {
    font-size: 11px;
    opacity: 0.65;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .footer .top .signup-card {
    flex-shrink: 0;
    position: relative;
    width: 420px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
  }
  .footer .top .signup-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .footer .top .signup-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 15, 28, 0.92) 0%, rgba(0, 20, 35, 0.45) 45%, rgba(0, 20, 35, 0.05) 75%);
    pointer-events: none;
    z-index: 1;
  }
  .footer .top .signup-card .signup-card-body {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 12px;
    padding: 22px;
  }
  .footer .top .signup-card .signup-card-body .signup-card-label {
    color: rgb(246, 246, 246);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
  }
  .footer .top .signup-card .signup-card-body input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(246, 246, 246, 0.18);
    backdrop-filter: blur(8px);
    font-size: 14px;
    font-family: inherit;
    color: rgb(246, 246, 246);
    transition: background 0.2s ease, border-color 0.2s ease;
  }
  .footer .top .signup-card .signup-card-body input::placeholder {
    color: rgba(246, 246, 246, 0.88);
  }
  .footer .top .signup-card .signup-card-body input:focus {
    outline: none;
    border-color: rgb(246, 246, 246);
    background: rgba(246, 246, 246, 0.28);
  }
  .footer .top .signup-card .signup-card-body .button {
    background: rgb(246, 246, 246);
    color: #1F1F1F;
    padding: 13px 32px;
    border-radius: 33px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 15px;
    white-space: nowrap;
    transition: background 0.25s ease, color 0.25s ease;
  }
  .footer .top .signup-card .signup-card-body .button i {
    font-size: 13px;
    margin-left: 9px;
    transition: transform 0.25s ease;
  }
  .footer .bottom {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    grid-template-areas: "copyright first links";
    column-gap: 60px;
  }
  .footer .bottom .copyright {
    grid-area: copyright;
    display: flex;
    flex-direction: column;
    margin-top: 0;
  }
  .footer .bottom .copyright .logo {
    width: auto;
    max-width: 200px;
    height: auto;
    object-fit: cover;
    margin-bottom: 14px;
  }
  .footer .bottom .copyright .logo.small {
    width: auto;
    max-width: 60px;
    margin-bottom: 28px;
  }
  .footer .bottom .copyright p {
    font-family: unset;
    font-style: unset;
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.75;
  }
  .footer .bottom .links {
    display: flex;
    flex-direction: column;
    margin-top: 6px;
  }
  .footer .bottom .links.first {
    grid-area: first;
    margin-top: 6px;
  }
  .footer .bottom .links:not(.first) {
    grid-area: links;
  }
  .footer .bottom .links p {
    font-weight: 500;
    margin-bottom: 10px;
    font-family: unset;
    font-style: unset;
    font-size: 16px;
  }
  .footer .bottom .links a {
    display: block;
    width: max-content;
    color: #1F1F1F;
    font-size: 14px;
    text-decoration: none;
    padding: 3px 0px;
    margin-block: 3px;
    opacity: 0.8;
    transition: opacity 0.2s ease, color 0.2s ease;
  }
  .footer .bottom .links a:hover {
    opacity: 1;
    color: #004876;
  }
}

/*# sourceMappingURL=footer.css.map */
