.iata-main-footer {
	padding: 50px;
	color: var(--iata-white);
	background-color: var(--iata-grey-800);
}

.iata-main-footer__content-container {
    text-align: center;
}

.iata-main-footer__title {
    font-size: 22px;
    font-weight: 400;
    line-height: 32px;
    margin: 0;
}

.iata-main-footer__logo {
    width: 100px;
}

.iata-main-footer__links-container {
    margin-top: 30px;
}

.iata-main-footer__link {
    color: var(--iata-white);
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
    padding: 0 10px;
    border-right: 2px solid rgba(255, 255, 255, 0.1);

    &:last-of-type {
        border-right: none;
    }

    &:hover {
        text-decoration: underline;
    }
}

.iata-main-footer__social-links-container {
    margin-top: 30px;
}

.iata-main-footer__social-link {
    padding: 0 10px;
}

.iata-main-footer__lang-container {
    margin-top: 30px;
}

.iata-main-footer__lang-link {
    color: var(--iata-white);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-decoration: none;
    text-transform: uppercase;
    padding: 0 10px;
    border-right: 2px solid rgba(255, 255, 255, 0.1);
    user-select: none;
    cursor: pointer;

    &:last-of-type {
        border-right: none;
    }

    &:hover,
    &.active-lang {
        text-decoration: underline;
    }

    &.active-lang {
        text-decoration: underline;
        pointer-events: none;
    }
}