a {
    color: inherit;
    transition: 300ms cubic-bezier(0.4, 0, 0.2, 1) all;
}

a:focus {
    outline: none;
}

.arrow-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-top: 1rem;
}

.arrow-link::after {
    content: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0iIzAxMmUzOCIgY2xhc3M9ImJpIGJpLWFycm93LXJpZ2h0IiB2aWV3Qm94PSIwIDAgMTYgMTYiPgogIDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTEgOGEuNS41IDAgMCAxIC41LS41aDExLjc5M2wtMy4xNDctMy4xNDZhLjUuNSAwIDAgMSAuNzA4LS43MDhsNCA0YS41LjUgMCAwIDEgMCAuNzA4bC00IDRhLjUuNSAwIDAgMS0uNzA4LS43MDhMMTMuMjkzIDguNUgxLjVBLjUuNSAwIDAgMSAxIDh6Ii8+Cjwvc3ZnPg==');
    line-height: 0;
    margin-left: .25rem;
    transition: 300ms cubic-bezier(0.4, 0, 0.2, 1) all;
}

.arrow-link:hover::after,
.arrow-link:focus::after {
    transform: translateX(5px);
}

video,
iframe {
    display: block;
    max-width: 100%;
}

.background--blue { background-color: var(--primary-color); }
.background--brown { background-color: var(--secondary-color); }
.background--gray { background-color: var(--light); }
.background--white { background-color: var(--white); }
.background--transparent { background: transparent; }

.ratio-3x4 {
    --bs-aspect-ratio: 133%;
}