/*-----------------------general-----------------*/
html {
    scroll-behavior: smooth;
}
body{
 background-color:#1e1e1e !important;   
}
.row{
    padding:2.5rem 0;
}
.gray{
color:#FFFFFF99 !important;
line-height: 1.6 !important;
}

.lightgray{
    background-color:#2C2C2C;
}
.white{
color:#FFFFFF !important;
}

.image{
    width:500px;
    max-width:100%;
    margin-bottom:3rem;
}
@media (min-width: 767px) {
    .image{
        margin-bottom:0;
    }
}

.image-border{
    border:1px solid transparent;
    border-image: linear-gradient(to bottom right, #fff, #444) 1;
    }

.mt-8{
    margin-top:8rem;
}

.w-full{
    width:100%;
}
/*-------------Fonts----------------*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap");
@font-face {
    font-family: "Monument Extended";
    src: url("/assets/fonts/monumentextended-regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Monument Extended";
    src: url("/assets/fonts/monumentextended-ultrabold.otf") format("opentype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
h1.title {
    font-family: "Monument Extended", sans-serif;
    font-weight: 800;
    font-stretch: 125%;
    font-size: clamp(42px, 7vw, 70px);
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color:white;
    margin-bottom:1.2rem;
}

h2.title {
    font-family: "Monument Extended", sans-serif;
    font-weight: 600;
    font-stretch: 125%;
    font-size: clamp(30px, 4.2vw, 40px);
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color:white;
    margin-bottom:2rem;
}

h3 {
    font-family: "Monument Extended", sans-serif;
    font-weight: 500;
    font-stretch: 125%;
    font-size: clamp(18px, 2.2vw, 24px);
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color:white;
    margin-bottom:2rem;
}

.text {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(16px, 1.2vw, 18px)!important;
    line-height: 1.2;
    letter-spacing: 0;
    color:white;
}
.text.big{
    font-size: clamp(18px, 1.4vw, 22px);
}


/*-------------Navbar-------------*/

.navbar-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    background-color: rgba(0,0,0,30%);
}

.site-navbar {
    background: transparent;
    padding: 1.25rem 0;
}

.site-navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.site-navbar__logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.site-navbar__logo img {
    display: block;
    width: clamp(200px, 24vw, 400px);
    height: auto;
}

.site-navbar__phone {
    display: inline-flex;
    align-items: stretch;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1;
    color: #000;
    background-color: #FFF;
}
.site-navbar__phone-svg {
    width: 1.45rem;
    height: 1.45rem;
    display: block;
}

.site-navbar__phone-icon {
    display: grid;
    place-items: center;
    color: #FFF;
    background-color: #000;
    font-size: 2.5rem;
    padding:0.2rem;
    margin:0.3rem;
}

.site-navbar__phone-text {
    display: none;
}


@media (min-width: 767px) {
    .site-navbar__phone-text {
        display: flex;
        align-items: center;
        padding: 0.9rem 1.5rem;
        white-space: nowrap;
    }
    .site-navbar__phone-icon {
        width: 2rem;
        height:2rem;
        font-size: 1.25rem;
        margin:.4rem;

    }
}
.site-navbar__phone:hover {
    color: #fff;
    background-color: #000;
    opacity: 1;
}

.site-navbar__phone:hover .site-navbar__phone-icon {
    color: #000;
    background-color: #fff;
}

.site-navbar__phone,
.site-navbar__phone-icon {
    transition:
        color 0.25s ease,
        background-color 0.25s ease;
}



/*----------------------video----------------------*/
.section--has-video {
    position: relative;
    overflow: hidden;
    background: #111;
    color: #fff;
    padding-top:6rem;
    padding-bottom:6rem;
}
.section--has-video::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1; /* above video, below content */
    pointer-events: none;

    /* Bottom fade */
    background:
        linear-gradient(
            to bottom,
            rgba(30, 30, 30, 0) 0%,
            #1e1e1e 100%
        )
        bottom / 100% 250px no-repeat;

    /* Edge vignette */
    box-shadow: inset 0 0 100px 30px #1e1e1e;
}

.section-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    }

.section-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;

    width: max(100vw, 177.78vh);
    height: max(56.25vw, 100vh);

    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
}

.hero-section .section-video-overlay{
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, .09);
    pointer-events: none;
}

.section .section-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, .28);
    pointer-events: none;
}

.section-content {
    position: relative;
    z-index: 2;
}

/*-----------------------Hero Section--------------*/
.hero-section {
      position: relative;
      min-height: 100vh;
      max-height:1200px;
      display: flex;
      align-items: flex-end;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      color: #fff;
      overflow: hidden;
}
.hero-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 250px;
    background: linear-gradient(to bottom, rgba(30, 30, 30, 0) 0%, #1e1e1e 100%);
    z-index: 1;        /* above the bg image, below the content (z-index: 2) */
    pointer-events: none;
}
.hero-section__overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.28);
      z-index: 1;
}
 .hero-section__container {
      position: relative;
      z-index: 2;
      width: 100%;
      padding-top: 160px;
      padding-bottom: 110px;
  }
@media (max-width: 767px) {
      .hero-section{
          min-height: 760px;
      }

      .hero-section__container {
          padding-top: 130px;
          padding-bottom: 70px;
      }

  }

.hero-socials {
    display: none;
}

@media (min-width: 1200px) {
    .hero-socials {
        position: absolute;
        right: 1rem;
        bottom: 1.25rem;
        z-index: 60;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-socials__link {
        width: 2.75rem;
        height: 2.75rem;

        display: flex;
        align-items: center;
        justify-content: center;

        color: #000;
        background-color: #fff;
        border-radius: 1rem;
        text-decoration: none;

        transition:
            background-color 0.2s ease,
            color 0.2s ease,
            transform 0.2s ease;
    }

    .hero-socials__link svg {
        width: 1.6rem;
        height: 1.6rem;
        display: block;
        fill: currentColor;
    }

    .hero-socials__link:hover,
    .hero-socials__link:focus-visible {
        color: #fff;
        background-color: #000;
        transform: translateX(-0.25rem);
    }
}

/*-------------------Button-----------------*/
.project-btn {
    --wipe-speed: 650ms;
    --wipe-ease: cubic-bezier(.75, 0, .2, 1);

    position: relative;
    isolation: isolate;
    overflow: hidden;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 200px;
    padding: 16px 30px;

    background: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 2px;

    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;

    cursor: pointer;
    margin-top: 2rem;
}

.project-btn > span:first-child {
    position: relative;
    z-index: 3;
    color: #111;
}

/* Black background + border wipe */
.project-btn::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: 1;

    background: #181818;
    border: 1px solid #181818;
    border-radius: inherit;

    clip-path: polygon(
        -45% 0,
        -20% 0,
        -40% 100%,
        -65% 100%
    );

    transition: clip-path var(--wipe-speed) var(--wipe-ease);
}

/* White text inside wipe */
.project-btn .wipe-text {
    position: absolute;
    inset: 0;
    z-index: 4;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    pointer-events: none;

    clip-path: polygon(
        -45% 0,
        -20% 0,
        -40% 100%,
        -65% 100%
    );

    transition: clip-path var(--wipe-speed) var(--wipe-ease);
}

.project-btn:hover::before,
.project-btn:hover .wipe-text {
    clip-path: polygon(
        0 0,
        135% 0,
        115% 100%,
        0 100%
    );
}

/*----------------slider--------------------------------*/
.project-slider-container {
    width: 100%;
    margin: 0 auto;
}

.project-slider {
    width: 100%;
    overflow: hidden;
}

.project-slider .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.project-slider .swiper-slide {
    flex-shrink: 0;
    height: auto;
}

.project-card {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1 / 1;

    background: #111;
    color: #fff;
    text-decoration: none;
}

.project-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-card__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, .72) 0%,
            rgba(0, 0, 0, .36) 36%,
            rgba(0, 0, 0, .08) 100%
        );
    pointer-events: none;
}

.project-card__title {
    position: absolute;
    bottom: clamp(20px, 2vw, 28px);
    z-index: 2;
    padding: 0 1rem;
    margin: 0;
    color: #fff;
    font-family: "Monument Extended", sans-serif;
    font-weight: 800;
    font-size: clamp(20px, 1.8vw, 26px);
    line-height: .9;
    letter-spacing: .01em;
    text-transform: uppercase;
    text-wrap:stable;
}

.project-slider-controls {
    display: flex;
    align-items: center;
    gap: clamp(24px, 4vw, 64px);
    margin-top: 42px;
}

.project-slider-scrollbar {
    position: relative;
    flex: 1;
    height: 2px;
    background: #111;
    overflow: hidden;
}

.project-slider-scrollbar .swiper-scrollbar-drag {
    height: 100%;
    border-radius: 0;
    background: #d8d8d8;
    cursor: grab;
}

.project-slider-scrollbar .swiper-scrollbar-drag:active {
    cursor: grabbing;
}

.project-slider-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    flex-shrink: 0;
}

.project-slider-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 2.8rem;
    height: 2.8rem;

    padding: 0;
    border: 1px solid #d8d8d8;
    border-radius: 0;

    background: #fff;
    color: #111;

    font-size: 28px;
    line-height: 1;
    cursor: pointer;

    transition:
        background-color 200ms ease,
        border-color 200ms ease,
        color 200ms ease,
        opacity 200ms ease,
        transform 200ms ease;
}

.project-slider-arrow:hover {
    background: #111;
    border-color: #111;
    color: #fff;
}

.project-slider-next:hover {
    transform: translateX(3px);
}

.project-slider-prev:hover {
    transform: translateX(-3px);
}

.project-slider-arrow.swiper-button-disabled {
    opacity: .35;
    cursor: not-allowed;
    pointer-events: none;
}
@media (min-width: 992px) {
    .row.align-items-lg-end {
        align-items: flex-end;
    }
}
.info-slider-container {
    width: 100%;
    margin: 0 auto;
    counter-reset: info-card;
}

.info-slider {
    width: 100%;
    overflow: hidden;
}

.info-slider .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.info-slider .swiper-slide {
    flex-shrink: 0;
    height: auto;
}

.info-card {
    counter-increment: info-card;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    min-height: 315px;
    height: 100%;
    padding: clamp(24px, 2.5vw, 36px);

    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .02);
    color: #fff;
}

.info-card__number::before {
    content: counter(info-card) ".";
}

.info-card__number {
    font-family: "Monument Extended", sans-serif;
    font-weight: 800;
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1;
    color: #fff;
}

.info-card__content {
    margin-top: auto;
}

.info-card__title {
    margin: 0 0 18px;

    font-family: "Monument extended", sans-serif;
    font-weight: 800;
    font-size: clamp(20px, 1.8vw, 28px);
    line-height: .9;
    letter-spacing: .01em;
    text-transform: uppercase;

    color: #fff;
}

.info-card__text {
    max-width: 92%;
    color: #fff;
}

.info-card__text p {
    margin: 0;
}

@media (max-width: 575.98px) {
    .project-slider-controls {
        gap: 20px;
        margin-top: 28px;
    }

    .project-slider-arrow {
        width: 42px;
        height: 42px;
        font-size: 24px;
    }
}
/* --------------------------- Instagram slider --------------------*/
.instagram-header {
    align-items: center;
    padding-bottom: .5rem;
}

.instagram-link {
    display: flex;
    justify-content: flex-end;
}

.instagram-link a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 12rem;
    padding: 0.9rem 1.5rem;

    background-color: #fff;
    color: #111;

    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
}

.instagram-slider {
    overflow: hidden;
}

.instagram-slide {
    position: relative;
    overflow: hidden;
}

.instagram-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instagram-slide {
    border: 1px solid transparent;   /* reserve the space so hover doesn't shift layout */
}

.instagram-slide:hover {
    border-image: linear-gradient(to bottom right, #fff, #444) 1;
}

.instagram-slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;

    margin-top: 3.5rem;
}

.instagram-slider-scrollbar.swiper-scrollbar {
    position: relative;
    left: auto;
    bottom: auto;
    flex: 1;

    width: auto;
    height: 2px;

    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 0;
}

.instagram-slider-progress-bar {
    width: 0;
    height: 100%;

    background-color: #fff;
    transform-origin: left center;
    transition: width 0.35s ease;
}

.instagram-slider-scrollbar .swiper-scrollbar-drag {
    position: relative;
    left: 0;
    top: 0;

    width: auto;
    height: 100%;

    background-color: #fff;
    border-radius: 0;
}

.instagram-slider-nav {
    display: flex;
    gap: 0.75rem;
}

.instagram-slider-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 3rem;
    height: 3rem;

    border: 0;
    border-radius: 0;
    background-color: #fff;
    color: #111;

    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.instagram-slider-arrow:hover {
    background-color: #e5e5e5;
}

/* Mobile layout like the second screenshot */
@media (max-width:1199px) {
    .instagram-header {
        padding-bottom: 1rem;
    }

    .instagram-link {
        justify-content: center;
        margin-bottom: 1rem;
    }

    .instagram-link a {
        width: 100%;
        min-width: 0;
        padding: 1rem 1.5rem;
        border-radius: 2px;

        font-size: 1.125rem;
    }

    .instagram-slider {
        overflow: hidden;
    }

    .instagram-slider-controls {
        display: flex;
    }
}

/* Desktop/tablet layout like the first screenshot */
@media (min-width: 1200px) {
    .instagram-slider-controls {
        display: none;
    }

    .instagram-link a {
        min-width: 10rem;
    }
}
.instagram-slider .swiper-wrapper.social-media-container {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch;
}

.instagram-slider .swiper-slide.instagram-slide {
    display: block;
    flex-shrink: 0;
    min-width: 0;
}
/*--------------Scrolling cards------------------*/

.sticky-column{
    top:100px;
    position:sticky !important;

}
.scrolling-cards .card{
        background-color:#1e1e1e !important; 
        color:white !important;
        border:1px solid #FFFFFF33 !important;
        margin-top:1rem;
    }
    .scrolling-cards .card:first-child{
        margin-top:3rem;
    }
    .scrolling-cards .card:last-child{
        margin-bottom:3rem;
    }

    .scrolling-cards .card {
        position: sticky;
        top: 80px;          /* SAME pin point for every card */
        min-height:220px;
    }
    .scrolling-cards .card + .card {
        margin-top: -50px;   /* must match the translateY step below */
    }

    
    /* staircase built with transform, not with different top values */
    .scrolling-cards .card:nth-child(1) { transform: translateY(10px);  z-index: 1; }
    .scrolling-cards .card:nth-child(2) { transform: translateY(60px);  z-index: 2; }
    .scrolling-cards .card:nth-child(3) { transform: translateY(110px); z-index: 3; }
    .scrolling-cards .card:nth-child(4) { transform: translateY(160px); z-index: 4; }

/*--------------Social Media element-----------------*/
.instagram-section {
    width: 100%;
    min-width: 0;

    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
        "title"
        "button"
        "cards";
    gap: 1.5rem;
}

.instagram-section .title {
    grid-area: title;
}

.social-media-link {
    grid-area: button;
    display: flex;
    justify-content: flex-start;
}

.social-media-link a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 8.5rem;
    padding: 0.9rem 1.75rem;

    background-color: #fff;
    color: #111;

    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.social-media-link a:hover {
    background-color: #d9d9d9;
    color: #111;
    transform: translateY(-2px);
}

.social-media-container {
    grid-area: cards;
    min-width: 0;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    /* gap: 1rem; */
}

.social-media-card {
    position: relative;
    overflow: hidden;
    background-color: #222;
    aspect-ratio: 4 / 5;
}

.social-media-card a {
    display: block;
    width: 100%;
    height: 100%;
}

.social-media-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.35s ease;
}

.social-media-card:hover img {
    transform: scale(1.04);
}

@media (min-width: 768px) {
    .instagram-section {
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "title button"
            "cards cards";
        align-items: start;
        gap: 2rem;
    }

    .social-media-link {
        justify-content: flex-end;
        padding-top: 0.35rem;
    }

    .social-media-container {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .social-media-container {
        grid-template-columns: 1fr;
    }
}

/*---------------Video----------------------------*/
.video-section {
    position: relative;
    min-height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.video-section__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-section__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.video-section__content {
    position: relative;
    z-index: 2;
    color: #fff;
}

/*-------------contact-form------------------------*/
.contact-form {
    width: 100%;
    max-width: 560px;
    padding: 2.5rem;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(16px, 1.2vw, 18px)!important;
    line-height: 1.2;
    background: rgba(25, 25, 25, .92);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
}

.contact-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
}

.contact-form__field {
    display: flex;
    flex-direction: column;
}

.contact-form__field--full {
    margin-top: 14px;
}

.contact-form label {
    margin-bottom: 7px;
    line-height: 1.2;
    color: #FFFFFF99;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 0;
    border-radius: 0;
    background: #3b3b3d;
    color: #fff !important;
    line-height: 1.3;

    outline: none;
}

.contact-form input {
    height: 42px;
    padding: 0 12px;
}

.contact-form textarea {
    min-height: 100px;
    padding: 12px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background: #464648;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .28);
}

.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, .36);
}

.contact-form__submit {
    margin-top: 0;
}

.contact-form__error {
    margin-top: 5px;
    min-height: 1em;

    font-size: 11px;
    line-height: 1.2;
    color: #ff9d9d;
}

.contact-form__message--error {
    max-width: 560px;
    margin: 0 0 14px;
    padding: 10px 12px;

    background: rgba(255, 80, 80, .12);
    border: 1px solid rgba(255, 80, 80, .35);
    color: #ffb5b5;

    font-size: 13px;
}

@media (max-width: 575.98px) {
    .contact-form__grid {
        grid-template-columns: 1fr;
    }
}

/*-----------Lightbox--------------------*/
.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 2rem;

    background: rgba(0, 0, 0, 0.85);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity 250ms ease, visibility 250ms ease;
}

.image-lightbox.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.image-lightbox__image {
    display: block;
    max-width: min(100%, 1400px);
    max-height: 90vh;

    object-fit: contain;
}

.image-lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;

    width: 44px;
    height: 44px;

    border: 0;
    border-radius: 50%;

    background: #fff;
    color: #111;

    font-size: 2rem;
    line-height: 1;

    cursor: pointer;
}


/*-------------Footer-------------*/

.mettal-footer {
    background: #1f1f1f;
    color: #fff;
}

.mettal-footer__inner {
    width: min(100% - 2rem, 1720px);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1.4fr .7fr .9fr;
    gap: clamp(2rem, 7vw, 8rem);
    align-items: start;
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top:2rem;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    padding-bottom:2rem;
}

.mettal-footer__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mettal-footer__logo {
    width: clamp(200px, 25vw, 500px);
    max-width: 100%;
    height: auto;
    display: block;
}

.mettal-footer__fallback-logo {
    font-size: clamp(3rem, 9vw, 6rem);
    font-weight: 900;
    line-height: .8;
    letter-spacing: -.08em;
    text-transform: uppercase;
}

.mettal-footer__tagline {
    margin: .35rem 0 0;
    color: #a8a8a8;
    font-size: clamp(1.2rem, 2.4vw, 2rem);
    font-weight: 700;
}

.mettal-footer__title {
    margin: 0 0 1.4rem;
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -.03em;
}

.mettal-footer__social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mettal-footer__social-link {
    width: clamp(1.4rem, 2vw, 2rem);
    aspect-ratio: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #111;
    border-radius: .4rem;
    text-decoration: none;
    transition: transform .25s ease, background-color .25s ease, opacity .25s ease;
}

.mettal-footer__social-link svg {
    width: 62%;
    height: 62%;
    fill: currentColor;
}

.mettal-footer__social-link:hover {
    transform: translateY(-3px);
    background: #d7d7d7;
}

.mettal-footer__contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mettal-footer__contact-link {
    color: #9d9d9d;
    font-size: clamp(1.05rem, 1.2vw, 1.2rem);
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    line-height: 1.35;
    text-decoration: underline;
    text-underline-offset: .18em;
    margin-bottom: 1.35rem;
    transition: color .25s ease;
}

.mettal-footer__contact-link:hover {
    color: #fff;
}

@media (max-width: 991px) {
    .mettal-footer__inner {
        grid-template-columns: 1fr 1fr;
    }

    .mettal-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .mettal-footer {
        padding: 2.25rem 0;
    }

    .mettal-footer__inner {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }

    .mettal-footer__logo {
        width: min(100%, 380px);
    }
}
.subfooter{
    display:flex;
    justify-content: space-between;
    padding:2rem 0;
    color: #9d9d9d;
    }
.subfooter a{
    text-decoration:none !important;
    color: #9d9d9d !important;
}