.footer {
    width: 100%;
    background: #D7D7D7;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.05);
}

.footer__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    width: 100%;
    justify-content: space-between;
}

.footer-item{
    width:auto;
    max-width: 400px;
    margin: 1rem;
}

.footer h2 {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 1.rem;
    line-height: 100%;
    /* identical to box height, or 30px */
    margin-bottom: 0.25rem;

    color: #2C2B2B;

}
.social__links {
    text-decoration: none;
    display: flex;
    justify-content: space-around;
}
.social__links img{
    max-width: 2rem;
    transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.social__links img:hover{
    max-width: 3rem;
    border: 1px solid #fff
}


.footer__link {
    display: block;
    text-decoration: none;
    color: #2B5B6C;
    padding-left: 0.75rem;
    transition: 0.25s all;
}

.footer__link:hover{
    color: #FF8C4B;
}

.social__img {
}

.subscribe {
    width: 100%;
    max-width: 1000px;
    background-color: #fff;
    text-align: center;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 150%;
    /* or 30px */
    color: #000000;

    padding : 1rem;
    margin: 2rem auto;
}


.subscribe p {
   
    text-align: center;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 1rem;
    line-height: 150%;
    /* or 30px */
    color: #000000;

    padding : 1rem;
    margin: 2rem;
}

.subscribe tbody {
    
    align-items: center;
}

.subscribe tr {
    
    align-items: center;
}

.subscribe td {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    text-align: center;
}

.subscribe__email {
    height: 2rem;

    background: #FFFFFF;
    border: 1px solid #FF8C4B;
    box-sizing: border-box;
    border-radius: 0.25rem;

    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 1rem;
    line-height: 150%;
    /* or 30px */

    text-align: center;

    color: #000000;
}

.subscribe__email:focus {
    outline-color:  #FF8C4B;
}

.subscribe__btn {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    background: #FF8C4B;
    border-radius: 0.25rem;
    border: 1px solid #FF8C4B;
    transition: all 0.25s linear;
    margin-left: 1rem;
}

.subscribe__btn:hover {
    background: #fff;
    color: #2B5B6C;;
    border: 1px solid #2B5B6C;
}
