/* ==================================================
   FOOTER
================================================== */

.footer {

    width: 100%;

    background: #000;

}

/* ==================================================
   BACKGROUND
================================================== */

.footer-background {

    position: relative;

    width: 100%;

    min-height: 120px;

    background-image: url("../images/patong-paragon-gun-dark-background.webp");

    background-size: cover;

    background-position: bottom;

    background-repeat: no-repeat;

}

/* ==================================================
   OVERLAY
================================================== */

.footer-overlay {

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, .65);

}

/* ==================================================
   CONTAINER
================================================== */

.footer-container {

    position: relative;

    z-index: 2;

    max-width: 1320px;

    margin: auto;

    padding: 20px 20px 20px;

}

/* ==================================================
   CONTENT
================================================== */

.footer-content {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 50px;

}

/* ==================================================
   TEXT
================================================== */

.footer-text {

    max-width: 760px;

}

.footer-text h2 {

    color: #fff;

    font-size: 30px;

    line-height: 1.2;

    margin-bottom: 20px;
    white-space: nowrap;

}

.footer-text p {

    color: rgba(255, 255, 255, .9);

    font-size: 18px;

    line-height: 1.8;
    margin-bottom: -10px;

}

/* ==================================================
   BUTTON
================================================== */

.footer-btn {

    width: 230px;

    height: 65px;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 14px;

    background: #C92327;

    color: #fff;

    text-decoration: none;

    border-radius: 10px;

    font-size: 18px;

    font-weight: 700;

    transition: .3s;

}

.footer-btn:hover {

    background: #a41c20;

    transform: translateY(-5px);

}

.footer-arrow {

    font-size: 28px;
    margin-top: -5px;

}

/* ==================================================
   SOCIAL
================================================== */

.footer-social {

    margin-top: 20px;

    display: flex;

    justify-content: center;

    gap: 18px;

}

.footer-social a {

    width: 52px;

    height: 52px;

    display: flex;

    justify-content: center;

    align-items: center;

    transition:
        transform .35s ease,
        filter .35s ease;

}

.footer-social-icon {

    width: 52px;

    height: 52px;

    display: flex;

    justify-content: center;

    align-items: center;

    transition:
        transform .35s ease,
        filter .35s ease;

}

.footer-social img {

    width: 100%;

    display: block;

    transition:
        transform .35s ease,
        filter .35s ease;

}

/* ==================================================
   HOVER
================================================== */

.footer-social a:hover {

    transform: translateY(-3px);

}

.footer-social a:hover img {

    transform: scale(1.12);

    /* filter:drop-shadow(0 10px 20px rgba(201,35,39,.45)); */

}

/* ==================================================
   NOTEBOOK
================================================== */

@media (min-width:1024px) and (max-width:1365px) {

    .footer-container {

        padding: 20px 30px;
    }

    .footer-content {

        gap: 35px;
    }

    .footer-text {

        max-width: 620px;
    }

    .footer-text h2 {

        font-size: 26px;
    }

    .footer-text p {

        font-size: 16px;
    }

    .footer-btn {

        width: 210px;
        height: 58px;

        font-size: 16px;
    }

}

/* ==================================================
   TABLET
================================================== */

@media (min-width:768px) and (max-width:1023px) {

    .footer-container {

        padding: 35px 30px;
    }

    .footer-content {

        flex-direction: column;

        text-align: center;

        gap: 35px;
    }

    .footer-text {

        max-width: 100%;
    }

    .footer-text h2 {

        font-size: 32px;

        white-space: normal;
    }

    .footer-text p {

        font-size: 17px;

        margin-bottom: 0;
    }

    .footer-btn {

        width: 230px;
        height: 60px;
    }

}

/* ==================================================
   MOBILE
================================================== */

@media (max-width:767px) {

    .footer-container {

        padding: 30px 20px;
    }

    .footer-content {

        flex-direction: column;

        align-items: center;

        text-align: center;

        gap: 28px;
    }

    .footer-text {

        max-width: 100%;
    }

    .footer-text h2 {

        font-size: 26px;

        line-height: 1.3;

        white-space: normal;

        margin-bottom: 15px;
    }

    .footer-text p {

        font-size: 15px;

        line-height: 1.7;

        margin-bottom: 0;
    }

    .footer-btn {

        width: 100%;
        max-width: 280px;

        height: 54px;

        font-size: 16px;
    }

    .footer-arrow {

        font-size: 22px;

        margin-top: 0;
    }

    .footer-social {

        gap: 14px;
    }

    .footer-social a {

        width: 46px;
        height: 46px;
    }

}   