@-webkit-keyframes pulse {
    0% {
      -webkit-transform: scale(0);
              transform: scale(0);
      opacity: 0;
    }
    33% {
      -webkit-transform: scale(1);
              transform: scale(1);
      opacity: 1;
    }
    100% {
      -webkit-transform: scale(3);
              transform: scale(3);
      opacity: 0;
    }
}

@keyframes pulse {
    0% {
      -webkit-transform: scale(0);
              transform: scale(0);
      opacity: 0;
    }
    33% {
      -webkit-transform: scale(1);
              transform: scale(1);
      opacity: 1;
    }
    100% {
      -webkit-transform: scale(3);
              transform: scale(3);
      opacity: 0;
    }
}

.footer-wrapper {
    width: 100%;
    height: auto;
    background-color: #333333;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
}

.footer-top {
    border-bottom: 1px solid #FFFFFF;
    padding: 20px 0;
}

.footer-top-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer-top-email {
    margin: 0;
}

.footer-top-email a {
    color: #909090;
}

.footer-bottom {
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: flex-start;
}

.footer-info-copy {
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    margin: 20px 0 0;
}

.footer-links-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.footer-links-item {
    margin: 0 0 20px;
}

.footer-links-item:last-of-type {
    margin: 0;
}

.footer-links-item a {
    color: #A8A8A8;
    transition: all 0.2s;
}

.footer-links-item a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-disclosure-title {
    margin: 0 0 10px;
}

.footer-disclosure-text {
    font-size: 10px;
    line-height: 140%;
    color: #909090;
    margin: 0;
}

@media (min-width: 768px) {
    .footer-logo,
    .footer-info {
        width: 100%;
        max-width: 293px;
    }
    
    .footer-top-container {
        width: 100%;
        max-width: 250px;
    }

    .footer-links-list {
        width: 250px;
    }
}

@media (max-width: 767px) {
    .footer-top-content {
        justify-content: space-between;
    }

    .footer-top-container {
        display: none;
    }

    .footer-top-email {
        text-align: right;
        margin-left: 25px;
    }

    .footer-bottom-content {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .footer-links-list {
        text-align: right;
    }

    .footer-disclosure {
        width: 100%;
        margin-top: 40px;
    }
    
    .footer-disclosure-title {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .footer-top-content,
    .footer-bottom-content {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-top-email {
        margin: 20px 0 0;
    }

    .footer-links {
        margin-top: 30px;
    }

    .footer-links-list {
        text-align: center;
    }
}