/*** Newsletter Section ***/
.newsletter-section {
    padding-top: 30px;
}
.newsletter-img {
    width: 335px;
}
.newsletter-content {
    width: calc(100% - 335px);
}
.newsletter-content .section-title.title2 h2 {
    margin-bottom: 0;
}
.newsletter-content .section-title {
    margin-bottom: 12px;
}
.newsletter-content-inner > p {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.36px;
    max-width: 425px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}
.newsletter-content .section-title h2:after,
.testimonial-left .section-title h2:after {
    left: 0;
    transform: none;
}
.newsletter-content-inner {
    max-width: 580px;
}
.newsletter-form .input-field {
    width: calc(100% - 150px);
    padding-right: 16px;
}
.newsletter-form .submit-field {
    width: 150px;
}
.newsletter-form input[type="text"] {
    padding: 16px 30px;
    border: 0;
    font-size: 14px; 
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.28px;
}
.newsletter-form input[type="submit"] {
    padding: 14px 30px; 
    font-size: 14px; 
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.28px;
    border: 2px solid var(--primary-color); 
    letter-spacing: 1.4px;
    text-transform: uppercase;  
    width: 100%;
    text-align: center;
    cursor: pointer;
    outline: none;
}
.newsletter-form input[type="submit"]:hover,
.newsletter-form input[type="submit"]:focus  {
    background-color: var(--secondary-color);
    color: var(--white-color);
    border: 2px solid var(--secondary-color);
}
.newsletter-form .bottom-text {
    margin-top: 8px;
}
.newsletter-form .bottom-text p {
    margin-bottom: 0;
    font-size: 10px; 
    font-weight: 600; 
    letter-spacing: 0.4px;
}
/*** Newsletter Section END ***/
/*** Footer Section ***/
.footer-block {
    padding: 28px 0 0;
}
.footer-inner { 
    margin-bottom: 36px;
}
.footer-column h6 {
    font-size: 18px;
    font-family: var(--body-font);
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.36px;
    margin-bottom: 16px;
}
.footer-column ul li { 
    line-height: 20px;
    letter-spacing: 0.28px;
}
.footer-column ul li a {
    opacity: 0.8;
}
.footer-column ul li a:hover {
    opacity: 0.8;
}
.footer-column ul li:not(:first-child) {
    margin-top: 12px;
}
.footer-logo {
    margin-bottom: 32px;
}
.site-description p {
    color: var(--primary-color);
    font-size: 18px; 
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.72px;
}
.social-icons ul, 
.payment-icons ul {
    column-gap: 12px;
}
.payment-icons svg {
    width: 35px;
}
.social-icons ul li a {
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-blue);
    color: var(--white-color);
    border-radius: 50%;
    font-size: 17px;
}
.social-icons ul li a:hover {
    background: var(--secondary-color);
}
.footer-bottom {
    margin-bottom: 32px;
}
.copyright-section {
    padding: 20px 0;
}
.copyright-text p {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.4px;
}
.payment-icons ul li a {
    display: flex;
}
.dropdown-block .form-bottom {
    width: 300px;
}
.dropdown-block select {  
    line-height: 20px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    border: 0;
    border-bottom: 1px solid rgba(2, 72, 136, 0.4);
    padding: 7px 24px 10px 0;
    width: auto;
    background: url(../fonts/arrow-down.svg) center right no-repeat;
    cursor: pointer;
    font-weight: 600;
}
.dropdown-block select:focus-visible {
    outline: none;
}
/*** Footer Section END ***/
/**** Responsive Media Query ****/
@media screen and (max-width: 767px) {
    .footer-bottom, .footer-inner {
        flex-wrap: wrap;
        row-gap: 24px;
    }
    .social-icons {
        width: 100%;
    }
    .footer-column h6 {
        line-height: 20px;
        font-size: 16px;
        margin-bottom: 12px;
    }
    .footer-column ul li:not(:first-child) {
        margin-top: 6px;
    }
    .site-description p {
        margin-bottom: 0;
    }
    .copyright-inner {
        flex-wrap: wrap;
        row-gap: 16px;
    }
    .copyright-text {
        width: 100%;
        text-align: center;
    }
    .dropdown-block, .dropdown-block .form-bottom, .payment-icons {
        width: 100%;
    }
    .payment-icons ul {
        justify-content: center;
    }
}