    
    .footer {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 40px 0;
    background-color: #3b3b3b;
    box-shadow: 0px -5px 20px 20px #3b3b3b;
    position: relative;
    }
    
    .emailFootSub {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #ddd;
    padding: 0 8% 20px 8%;
    }
    
    .emailFootSub div {
    width: -webkit-fill-available;
    width: -moz-available;
    }
    
    .emailFootSubText h1 {
    margin-top: 0;
    color: white;
    }
    
    .emailFootSubText p {
    color: white;
    }
    
    .emailFootSubForm {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-left: 200px;
    }
    
    .emailFootSubForm form {
    display: flex;
    background-color: white;
    border-radius: 100px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    padding: 0;
    width: -webkit-fill-available;
    width: -moz-available;
    justify-content: space-between;
    }
    
    .emailFootSubForm form input {
    padding: 18px 24px;
    border: none;
    border-radius: 100px;
    width: calc(100% - 40px);
    background-color: white;
    color: black;
    font-size: 16px;
    }
    
    .emailFootSubForm form input::placeholder {
    color: #3b3b3b;
    font-size: 16px;
    }
    
    .emailFootSubForm form input:focus {
    outline: none;
    }
    
    .emailFootSubForm form button {
    background-color: transparent;
    border: none;
    font-size: 24px;
    border-radius: 50px;
    margin: 5px 15px 5px 0;
    padding: 0 8px 3px 8px;
    color: black;
    }
    
    .emailFootSubForm form button:hover {
    transform: scale(1.2);
    }
    
    .emailFootSubForm p {
    font-size: 14px;
    color: #f5f5f5;
    }
    
    .emailFootSubForm a {
    color: #ddd;
    text-decoration: underline;
    }
    
    .emailFootSubForm a:hover {
    color: white;
    }
    
    .subscriberMessage {
    color: color !important;
    align-self: flex-start;
    }
    
    .textFooter {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 40px 10% 50px 10%;
    }
    
    .textFooter div {
    width: 140px;
    }
    
    .textFooter ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    list-style: none;
    margin-bottom: 40px;
    }
    
    .footerSectionHead {
    color: white;
    margin-bottom: 10px;
    font-weight: bold;
    }
    
    .textFooter ul a {
    text-decoration: none;
    color: #ddd;
    margin-bottom: 10px;
    }
    
    .textFooter ul a:hover {
    color: #4780B6;
    text-decoration: underline;
    }
    
    .footerSectionLegal ul {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px !important;
    }
    
    .footerSectionLegal p {
    color: #ddd;
    font-size: 14px;
    }
    
    @media screen and (max-width: 1040px) {
        
        .emailFootSubForm form button:hover {
        background-color: transparent;
        }
        
        .emailFootSubForm a:hover {
        color: gray;
        }
        
        .textFooter ul a:hover {
        text-decoration: none;
        color: gray;
        }
        
        .emailFootSubForm {
        padding-left: 80px;
        }
        
    }
    
    @media screen and (max-width: 800px) {
        
        .emailFootSubForm {
        padding-left: 50px;
        }
        
        .emailFootSub {
        padding: 0 40px 20px 40px;
        }
        
        .textFooter {
        padding: 40px 40px 50px 40px;
        }
        
    }
    
    @media screen and (max-width: 600px) {
    
        .emailFootSub {
        flex-direction: column;
        justify-content: center;
        padding: 0 20px 20px 20px;
        }
        
        .emailFootSubForm {
        padding: 0;
        }
        
        .emailFootSubText {
        text-align: center;
        margin-bottom: 20px;
        }
        
        .textFooter {
        padding: 40px 20px 50px 20px;
        }
    
    }
    
    