@font-face {
    font-family: 'Switzer';
    src: url('../fonts/Switzer-Light.woff2') format('woff2');
    font-weight: 200;
}

@font-face {
    font-family: 'Switzer';
    src: url('../fonts/Switzer-Regular.woff2') format('woff2');
    font-weight: 400;
}

@font-face {
    font-family: 'Switzer';
    src: url('../fonts/Switzer-Medium.woff2') format('woff2');
    font-weight: 500;
}

@font-face {
    font-family: 'Switzer';
    src: url('../fonts/Switzer-Semibold.woff2') format('woff2');
    font-weight: 600;
}

@font-face {
    font-family: 'Switzer';
    src: url('../fonts/Switzer-Bold.woff2') format('woff2');
    font-weight: 700;
}

@font-face {
    font-family: 'Switzer';
    src: url('../fonts/Switzer-Extrabold.woff2') format('woff2');
    font-weight: 800;
}

body {
    font-family: 'Switzer', sans-serif;
}

.site-footer {
    background: #f5f5f5;
    padding: 60px 40px;
    font-family: 'Switzer', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT */
.footer-left {
    max-width: 500px;
    margin-left: 50px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 25px;
    font-weight: 200;
    color: #555;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 18px;
    margin-bottom: 30px;
}

.footer-social img {
    width: 65px;
    height: 65px;
    cursor: pointer;
}

.footer-bottom-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 150px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    text-decoration: none;
    font-size: 13px;
    color: #444;
}

.footer-region {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-region img {
    width: 18px;
}

.footer-region select {
    border: none;
    background: transparent;
    font-size: 13px;
}

.footer-copy {
    font-size: 12px;
    color: #777;
    margin-top: 20px;
}

/* RIGHT */
.footer-right {
    display: flex;
    gap: 80px;
    margin-right: 80px;
}

.footer-col h4 {
    font-size: 30px;
    margin-bottom: 20px;
}

.footer-col a,
.footer-col p {
    display: block;
    font-size:20px;
    color: #444;
    margin-bottom: 10px;
    text-decoration: none;
}

.footer-col a:hover {
    color: #000;
}

.mt {
    margin-top: 20px;
}