/* Main News letter section start */
.news_letter {
    position: relative;
    background-image: url(../images/news_letetr_img.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px 0;
    color: #fff;
    text-align: left;
}

.news_letter p {
    margin-top: 130px;
    margin-bottom: 30px;
}

/* form row */
.qr-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.qr-form input {
    flex: 1;
    padding: 0px 25px;
    border: 1px solid #4B4B4B;
    background: transparent;
    border-radius: 100px;
    letter-spacing: 1px;
    outline: none;
    height: 56px;
}

.qr-form input,
.qr-form input::placeholder {
    color: var(--white);
    font-size: 14px;
    letter-spacing: 2.5px;
}

.qr-form button.btn_style {
    min-width: 100%;
}

.qr-form button.btn_style,
.qr-form button.btn_style:hover {
    border: none;
}

.qr-form button.btn_style:focus,
.qr-form button.btn_style:active:focus {
    box-shadow: none;
    outline: none;
    border: none;
}

/* Main News letter section ends */

/* Main Footer section start */

footer {
    background: #000;
    padding: 60px 0px;
}

.footer_logo {
    max-width: 317px;
    margin: 0 auto;
}

.logo-icon {
    display: flex;
    align-items: center;
    gap: 2px;
}

.triangle {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 25px solid #fff;
}

.acoustics {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-left: 5px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 50px;
    padding: 50px 0px;
    border-top: 1px solid #7D7D7D;
    border-bottom: 1px solid #7D7D7D;
    margin-top: 50px;
}

.link-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.2s linear
}

.footer-links a:hover {
    opacity: 0.7;
}

.social-links {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.social-icon {
    width: 35px;
    height: 35px;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s linear;
}

.social-icon:hover {
    opacity: 0.5;
}

.footer-links .social-links a {
    padding: 10px;
}


/* Main Footer section end */


/* responsive */

@media only screen and (min-width: 1680px) {

    .footer-links a,
    .qr-form input,
    .qr-form input::placeholder {
        font-size: 16px;
    }
}

@media only screen and (max-width: 1365px) {}

@media only screen and (max-width: 1199px) {

    .qr-form input,
    .qr-form input::placeholder {
        color: var(--white);
        font-size: 14px;
        letter-spacing: 1.5px;
    }

    .qr-form input {
        padding: 0px 15px;
    }

    .social-links {
        justify-content: flex-start;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }

    footer {
        padding: 60px 0px 40px 0px;
    }

    .qr-form input {
        height: 53px;
    }
}

@media only screen and (max-width: 991px) {
    .qr-form {
        grid-template-columns: repeat(2, 1fr);
    }

    .qr-form input,
    .qr-form input::placeholder {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .news_letter p {
        margin-top: 80px;
    }

}

@media only screen and (max-width: 767px) {}

@media only screen and (max-width: 575px) {
    .footer-links {
        grid-template-columns: repeat(1, 1fr);
    }

    .qr-form {
        grid-template-columns: repeat(1, 1fr);
    }

    .news_letter p {
        margin-top: 22px;
    }

}