@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

/* =========================================================
   GLOBAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family: "Manrope", sans-serif;
    background: #ffffff;
    color: #111111;
}



/* =========================================================
   BANNER SECTION
========================================================= */

/* =========================================================
   MAIN HERO BANNER
========================================================= */

/* =========================================================
   BOLTS & STUDS PAGE
========================================================= */

.bolts-page {
    width: 100%;
    max-width: 1040px;

    margin: 0 auto;
    padding: 32px 0 60px;

    box-sizing: border-box;
}


/* =========================================================
   HEADER
========================================================= */

.bolts-header {
    width: 100%;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    margin-bottom: 30px;
}


/* =========================================================
   TITLE
========================================================= */

.bolts-title h1 {
    margin: 0;

    font-family: "Manrope", sans-serif;
    font-size: 28px;
    font-weight: 800;

    line-height: 1.2;

    color: #1d4169;
}


/* Red underline */

.bolts-title span {
    display: block;

    width: 74px;
    height: 3px;

    margin-top: 10px;

    background: #ef3b4f;
}


/* =========================================================
   BACK TO PRODUCTS BUTTON
========================================================= */

.back-products {
    display: flex;

    align-items: center;
    justify-content: center;

    min-width: 170px;
    height: 40px;

    padding: 0 24px;

    margin-top: 2px;

    background: #ef3b4f;
    color: #ffffff;

    border-radius: 25px;

    text-decoration: none;

    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 500;

    transition: all 0.25s ease;
}


.back-products:hover {
    background: #d92e42;

    transform: translateY(-1px);
}


/* =========================================================
   BANNER
========================================================= */

.bolts-banner {
    width: 100%;

    overflow: hidden;

    border-radius: 16px;

    line-height: 0;
}


.bolts-banner img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: cover;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .bolts-page {
        max-width: calc(100% - 50px);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .bolts-page {
        max-width: calc(100% - 30px);

        padding-top: 25px;
    }


    .bolts-header {
        align-items: flex-start;

        gap: 20px;

        margin-bottom: 22px;
    }


    .bolts-title h1 {
        font-size: 22px;
    }


    .bolts-title span {
        width: 60px;
        height: 2px;

        margin-top: 8px;
    }


    .back-products {
        min-width: auto;

        height: 36px;

        padding: 0 16px;

        font-size: 12px;

        white-space: nowrap;
    }


    .bolts-banner {
        border-radius: 12px;
    }

}

/* =========================================================
   GRADE TABLE SECTION
========================================================= */

/* =========================================================
   GRADE TABLE SECTION
========================================================= */

/* =========================================================
   FASTENER INFORMATION SECTION
========================================================= */

.fastener-info-section {
    width: 100%;
    padding: 80px 5%;

    background: #ffffff;

    overflow: hidden;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.fastener-info-container {
    width: 100%;
    max-width: 1250px;

    margin: 0 auto;
}


/* =========================================================
   IMAGE ROW
========================================================= */

.fastener-image-row {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 20px;

    margin-bottom: 60px;
}


/* =========================================================
   IMAGE BOX
========================================================= */

.fastener-image-box {
    width: 100%;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    background: #f3f3f3;
}


/* =========================================================
   IMAGES
========================================================= */

.fastener-image-box img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.4s ease;
}


/* =========================================================
   IMAGE HOVER
========================================================= */

.fastener-image-box:hover img {
    transform: scale(1.04);
}


/* =========================================================
   TEXT CONTENT
========================================================= */

.fastener-info-content {
    width: 100%;
    max-width: 1150px;

    margin: 0 auto;
}


.fastener-info-content p {
    margin: 0 0 22px;

    color: #333333;

    font-size: 16px;

    line-height: 2.25;

    font-weight: 500;
}


/* =========================================================
   BOLD TEXT
========================================================= */

.fastener-info-content strong {
    color: #173d63;

    font-weight: 700;
}


/* =========================================================
   MATERIAL HEADING
========================================================= */

.fastener-info-content h2 {
    margin: 45px 0 0;

    color: #173d63;

    font-size: 30px;

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: 0.5px;
}


/* =========================================================
   RED UNDERLINE
========================================================= */

.fastener-material-line {
    width: 120px;
    height: 4px;

    margin-top: 12px;
    margin-bottom: 30px;

    background: #ef3b4f;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .fastener-info-section {
        padding: 70px 4%;
    }

    .fastener-image-row {
        gap: 15px;

        margin-bottom: 50px;
    }

    .fastener-info-content p {
        font-size: 15px;

        line-height: 1.7;
    }

}


/* =========================================================
   MOBILE / TABLET
========================================================= */

@media (max-width: 750px) {

    .fastener-image-row {
        grid-template-columns: repeat(2, 1fr);

        gap: 15px;
    }

    .fastener-info-content p {
        font-size: 15px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 500px) {

    .fastener-info-section {
        padding: 55px 20px;
    }

    .fastener-image-row {
        grid-template-columns: 1fr;

        gap: 18px;

        margin-bottom: 40px;
    }

    .fastener-image-box {
        width: 100%;

        max-width: 300px;

        aspect-ratio: 1 / 1;

        margin: 0 auto;
    }

    .fastener-info-content p {
        font-size: 14px;

        line-height: 1.7;

        margin-bottom: 20px;
    }

    .fastener-info-content h2 {
        font-size: 25px;

        margin-top: 35px;
    }

    .fastener-material-line {
        width: 100px;

        height: 3px;

        margin-bottom: 25px;
    }

}

/* =====================FOOOOOOOOOOTTTER=========================== */
/* =====================FOOOOOOOOOOTTTER=========================== */
/* =====================FOOOOOOOOOOTTTER=========================== */
/* =====================FOOOOOOOOOOTTTER=========================== */



/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    position: relative;
    background: #111c2b;
    color: #ffffff;
    overflow: hidden;
}


/* =========================================================
   SUBTLE BACKGROUND DETAIL
========================================================= */

.site-footer::before {
    content: "";
    position: absolute;

    width: 500px;
    height: 500px;

    top: -250px;
    right: -180px;

    border: 1px solid rgba(240, 136, 37, 0.10);
    border-radius: 50%;

    pointer-events: none;
}

.site-footer::after {
    content: "";
    position: absolute;

    width: 300px;
    height: 300px;

    bottom: -180px;
    left: -150px;

    background: rgba(240, 136, 37, 0.035);
    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   MAIN FOOTER
========================================================= */

.footer-main {
    position: relative;
    z-index: 1;

    padding: 85px 40px 70px;
}


.footer-container {
    max-width: 1400px;
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.45fr
        0.8fr
        1.5fr
        0.8fr;

    gap: 65px;
}


/* =========================================================
   COMPANY
========================================================= */

.footer-company {
    padding-right: 25px;
}


.footer-logo {
    display: inline-flex;
    align-items: center;

    margin-bottom: 28px;
}


.footer-logo img {
    width: 145px;
    height: auto;

    display: block;
}


.footer-description {
    max-width: 390px;

    margin: 0 0 25px;

    color: #aeb8c5;

    font-size: 15px;
    line-height: 1.9;
    font-weight: 400;
}


.footer-about-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: color 0.3s ease;
}


.footer-about-link span {
    color: #e63946;

    font-size: 19px;

    transition: transform 0.3s ease;
}


.footer-about-link:hover {
    color: #e63946;
}


.footer-about-link:hover span {
    transform: translateX(5px);
}


/* =========================================================
   FOOTER HEADINGS
========================================================= */

.footer-menu h3,
.footer-locations h3,
.footer-contact h3 {
    position: relative;

    margin: 7px 0 28px;

    padding-bottom: 15px;

    color: #ffffff;

    font-size: 17px;
    font-weight: 800;

    letter-spacing: 0.2px;
}


.footer-menu h3::after,
.footer-locations h3::after,
.footer-contact h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 38px;
    height: 2px;

    background: #e63946;
}


/* =========================================================
   SITE MENU
========================================================= */

.footer-menu ul {
    list-style: none;

    margin: 0;
    padding: 0;
}


.footer-menu li {
    margin-bottom: 13px;
}


.footer-menu a {
    position: relative;

    color: #aeb8c5;

    font-size: 14px;
    font-weight: 500;

    text-decoration: none;

    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}


.footer-menu a::before {
    content: "";

    position: absolute;

    left: -15px;
    top: 50%;

    width: 5px;
    height: 5px;

    background: #e63946;
    border-radius: 50%;

    opacity: 0;

    transform: translateY(-50%);

    transition: opacity 0.3s ease;
}


.footer-menu a:hover {
    color: #ffffff;
    padding-left: 5px;
}


.footer-menu a:hover::before {
    opacity: 1;
}


/* =========================================================
   LOCATIONS
========================================================= */

.footer-location {
    display: flex;
    align-items: flex-start;

    gap: 15px;

    margin-bottom: 27px;
}


.location-number {
    flex-shrink: 0;

    color: #e63946;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1px;

    padding-top: 2px;
}


.footer-location h4 {
    margin: 0 0 7px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 800;
}


.footer-location p {
    max-width: 330px;

    margin: 0;

    color: #9faab8;

    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-label {
    margin: 0 0 8px;

    color: #7f8c9c;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1.5px;
}


.footer-email {
    display: inline-block;

    margin-bottom: 30px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: color 0.3s ease;
}


.footer-email:hover {
    color: #e63946;
}


/* =========================================================
   CONTACT BUTTON
========================================================= */

.footer-contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    max-width: 190px;

    padding: 14px 17px;

    border: 1px solid #e63946;

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease;
}


.footer-contact-button span {
    color: #e63946;

    font-size: 17px;

    transition: transform 0.3s ease;
}


.footer-contact-button:hover {
    background: #e63946;
    border-color: #e63946;

    color: #111c2b;
}


.footer-contact-button:hover span {
    color: #111c2b;
    transform: translate(3px, -3px);
}


/* =========================================================
   BOTTOM FOOTER
========================================================= */

.footer-bottom {
    position: relative;
    z-index: 2;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    padding: 20px 40px;
}


.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


.footer-bottom p {
    margin: 0;

    color: #7f8b99;

    font-size: 12px;
    line-height: 1.6;
}


.footer-bottom a {
    color: #c5ccd5;

    font-weight: 700;

    text-decoration: none;

    transition: color 0.3s ease;
}


.footer-bottom a:hover {
    color: #e63946;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .footer-container {
        grid-template-columns: 1.3fr 0.8fr 1.3fr;
        gap: 45px;
    }

    .footer-contact {
        grid-column: 1 / -1;

        margin-top: 15px;
    }

    .footer-contact-button {
        max-width: 190px;
    }

}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 800px) {

    .footer-main {
        padding: 65px 30px 50px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 50px 35px;
    }

    .footer-company {
        padding-right: 0;
    }

    .footer-locations {
        grid-column: 1 / -1;
    }

    .footer-contact {
        grid-column: auto;
        margin-top: 0;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .footer-main {
        padding: 55px 22px 40px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .footer-company,
    .footer-locations,
    .footer-contact {
        grid-column: auto;
    }

    .footer-logo img {
        width: 130px;
    }

    .footer-description {
        max-width: 100%;

        font-size: 14px;
        line-height: 1.8;
    }

    .footer-location {
        margin-bottom: 23px;
    }

    .footer-location p {
        max-width: 100%;
    }

    .footer-bottom {
        padding: 18px 22px;
    }

    .footer-bottom-container {
        flex-direction: column;
        align-items: flex-start;

        gap: 6px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .footer-main {
        padding-left: 18px;
        padding-right: 18px;
    }

    .footer-bottom {
        padding-left: 18px;
        padding-right: 18px;
    }

    .footer-description {
        font-size: 13px;
    }

    .footer-location {
        gap: 11px;
    }

}