footer{
    font-family: 'Montserrat', sans-serif;
    background-color: black;
}

.footer-distributed{
    background-color: black;
    box-sizing: border-box;
    width: 100%;
    text-align: left;
    font: bold 16px sans-serif;
    padding: 50px 50px 60px 50px;
    display: flex;
    flex-direction: row;
}

.footer-distributed .footer-left, .footer-distributed .footer-center, .footer-distributed .footer-right {
    display: inline-block;
    vertical-align: top;
}

/* Footer left */

.footer-left {
    width: 13%;
    
}

.footer-left img{
    flex: 1;
    user-select: none;
    height: 100px;
    width: 100px;
    margin-top: 30px;
}


.footer-center-1 {
    width: 28%;
}

#join {
    display: block;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 20px;
}

#email {
    height: 30px;
    width: 250px;
    border-radius: 20px;
    padding-left: 10px;
    font-family: 'Montserrat', sans-serif;
}

.submit {
    padding: 10px 20px;
    background: transparent;
    outline: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    background-color: black;
    text-decoration: none;
    font-size: 0.8em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin-top: 10px;
}
  
.btn {
    border: 2px solid rgb(255, 255, 255);
    border-radius: 4px;
    z-index: 1;
    color: white;
}
  
.btn:after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    direction: rtl;
    z-index: -1;
    background: rgb(255, 255, 255);
    transition: all 0.3s ease;
}

.btn:hover {
    color: rgb(0, 0, 0);
}

.btn:hover:after {
    left: auto;
    right: 0;
    width: 100%;
}

.btn:active {
    top: 2px;
}

/* Footer links */

.footer-distributed .footer-links {
    color: #ffffff;
    margin: 20px 0 12px;
}

.footer-distributed .footer-links a {
    display: inline-block;
    line-height: 1.8;
    text-decoration: none;
    color: inherit;
}

.footer-company-name {
    color: #8f9296;
    font-family: Helvetica, sans-serif;
    font-size: 14px;
    font-weight: normal;
    padding-bottom: 20px;
    text-align: center;
}

/* Footer Center */

.footer-distributed .footer-center {
    width: 35%;
}

.footer-distributed .footer-center i {
    color: #ffffff;
    font-size: 20px;
    /* width: 38px;
    height: 38px; */
    border-radius: 50%;
    text-align: center;
    margin-right: 10px;
    vertical-align: middle;
}



.footer-distributed .footer-center span {
    display: inline-block;
    color: #ffffff;
    vertical-align: middle;
    margin: 0;
    font-weight: normal;
    font-size: 14px;
    font-weight: 700;
    line-height: 2;
}

.footer-distributed .footer-center #find-us {
    display: block;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-distributed .footer-center span a {
    text-decoration: none;
    color: #ffffff;
}

/* Footer Right */

.footer-distributed .footer-right {
    width: 25%;
}

.footer-distributed .footer-company-about {
    line-height: 20px;
    color: #92999f;
    font-size: 13px;
    font-weight: normal;
    margin: 0;
}

.footer-distributed .footer-company-about span {
    display: block;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-distributed .footer-icons {
    margin-top: 25px;
}

.footer-distributed .footer-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    cursor: pointer;
    background-color: #09C3DB;
    border-radius: 2px;
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    line-height: 35px;
    margin-right: 3px;
    margin-bottom: 5px;
}

.footer-distributed .footer-icons a:hover {
    background-color: white;
    color: #09C3DB;
}

.footer-links a:hover {
    color: #09C3DB;
}

@media (max-width: 880px) {
    .footer-distributed  {
        flex-direction: column;
        width: 100%;
        text-align: center;
        align-items: center;
    }
    .footer-distributed .footer-left{
        /* width: 100%; */
        margin-bottom: 40px;
        display: flex;
        justify-content: center;
    }
    .footer-distributed .footer-center-1 {
        width: 50%;
        margin-bottom: 40px;
        display: flex;
        flex-direction: column;
    }
    .footer-distributed .footer-center {
        width: 100%;
        margin-bottom: 40px;
    }
    .footer-distributed .footer-right{
        width: 100%;
        margin-bottom: 40px;
    }
} 