.footer-container {
    max-width: 1500px;
    margin: 0 auto;
    padding-bottom: 15px;
}
.footer {
    background-color: transparent;
    background-image: linear-gradient(90deg, #F98364 0%, #F27B86 100%);
}
.wave-svg {
    display: block;
    width: 100%;
    margin-bottom: -2px;
}
.footer-content-wrapper{
    display: flex;
    flex-direction: row;
    overflow: hidden;
}
.footer-logo{
    text-align: center;
}
.footer-column{
    display: inline-flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    justify-content:flex-start;
}

.footer-column-first {
    padding-top: 40px;
    gap: 20px;
    width: 35%;
}
.footer-column-third{
    width: 20%;
}
.footer-column-second{
    width: 50%;
}
.footer-social-icons{
    text-align: center;
}
.menu-item{
    text-decoration: none;
    color: white ;
}
.footer-social-icons .social-icon{
    background: white;
    border-radius: 55px;
    width: calc(1em + 17px);
    aspect-ratio: 1/1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1em;
    color: var(--e-global-color-accent);
}
.inner-sections-wrapper{
    display: grid;
    grid-template-columns: 45% 55%;
}
.inner-sections{
    display: inline-flex;
    gap: 10px;
    padding: 10px;
    padding-top: 0;
    flex-direction: column;
    text-align: left;
}
.footer-menu-one,.footer-menu-two,.footer-menu-three{
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    flex-direction: column;
    gap: 10px;
}
.footer-menu-two li {
    display: flex;
    gap: 5px;
    align-items: start;
} 
.footer-menu-two li svg{
    padding-top: 3px;   
}
.footer-menu-heading{
    font-size: 22px;
    font-weight: 600;
    color: white;
}
.payment-methods{
    display: block;
    width: 100%;
    text-align: center;
}
.footer-divider{
    color: white;
    background-color: white;
    border: 0;
    height: 1px;
}
.footer-copyright{
    color: white;
    text-align: center;
    padding:20px 10 10px;
}
.copyright-div {
    display: flex ;
    padding-top: 10px;
    justify-content: space-between;
    
}
.menu-item {
    cursor: revert;
}
.privacy-terms .menu-item {
    margin-right: 35px; 
}
i.fa.fa-envelope,
i.fa.fa-phone,
i.fa.fa-map-marker{
    color: white;
    margin-right: 5px;
}
i.fa.fa-phone {
    transform: rotate(0deg);
}
.signup-heading {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}
.signup-description {
    color: #fff;
}
.footer-column-fourth {
    margin-top: 40px;
}

.error.text-danger {
    display: none ;
}
.payment-method-container {
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
}
.payment-heading {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}
.payment-description {
    color: #fff;
    width: 26%;
    display: flex;
    justify-content: center;
}
.nl-form input[type="email"] {
    background-color: #ffffff;
    border: none;
    height: 47px;
    width: 150px;
    padding: 0px 10px;
    outline: none;
    border-radius: 4px;
    z-index: 99;
}
.nl-form button {
    background: none;
    height: 47px;
    border: 1px solid #fff;
    color: #fff;
    padding: 0px 10px 0px 20px;
    position: relative;
    left: -15px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
}
.nl-form input[type="email"]::placeholder {
    font-size: 13px;
}
@media(max-width:600px){
    .footer-container {
        padding: 0px 15px 15px 15px;
    }
    .footer-content-wrapper{
        flex-direction:column;
        position:relative;
        padding-bottom:10px;
    }
    .footer-column{
        width:100%;
    }
    .inner-sections-wrapper{
        grid-template-columns:100%;
        gap:20px;
    }
    .footer-column-third{
        padding:20px;
        margin-bottom:50px;
    }
    .footer-column-fourth {
    margin-top: -50px;
}
    .payment-methods{
        position:relative;
        bottom:10px;
        margin-top : 10px;
        left:50%;
        transform:translateX(-50%);
    }
    .copyright-div {
        flex-direction: column;  
        text-align: center;     
        margin-top : 0px;
    }
    .privacy-terms .menu-item {
    margin-right: 25px;
   
}
 .privacy-terms {
     margin-top : 15px;
     text-align: center;
     display: flex;
     justify-content: center;
     align-items : center;
 }
.payment-description {
    width: 100%;
}
}
@media (min-width: 601px) and (max-width: 1024px) {
    .footer-content-wrapper{
        flex-wrap: wrap;
    }
    .footer-column{
        width: 50% ;
    }
    .payment-description{
        width: 60%;
    }
    .copyright-div{
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .footer-column-first {
        width : 40% ;
    }
     .footer-column-third.footer-column {
    width: 35%;
    margin-left: 50px;
}
}