.lang_switcher {
    position: absolute;
    top: 20px;
    right: 20%;
}
.lang_switcher a {
    text-decoration: none;
}
.cta,
.cta a {
    display: flex;
}
.cta a,
.cta a:hover {
    text-decoration: none;
    padding: 10px 20px;
}
* {
    margin: 0;
    padding: 0;
    color: #fff;
    font-family: Raleway, sans-serif;
}
body {
    width: 100% !important;
    height: 100vh !important;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
body::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100vh;
    background-color: rgb(0, 0, 0, 80%);
    z-index: 0 !important;
}
.center-screen {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    z-index: 1;
}
.content {
    max-width: 60%;
}
.logo {
    margin-bottom: 30px;
    width: 300px;
    height: 167px;
}
.cta,
.footer,
.w-full {
    width: 100%;
}
.main-title {
    font-size: 50px;
}
p {
    margin-top: 20px;
    font-size: 25px;
    line-height: 40px;
    font-weight: 200;
}
.cta {
    gap: 10px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}
.cta a {
    justify-items: center;
    border: 1px solid #fff;
    background-color: #fff;
    color: #000;
}
.cta a:hover {
    border: 1px solid #000;
    background-color: #000;
    color: #fff;
}
.cta a svg {
    margin-top: -3px;
    margin-right: 3px;
    fill: #000000;
}
.cta a:hover svg {
    fill: #ffffff;
}
.footer {
    position: absolute;
    left: 0;
    bottom: 20px;
    text-align: center;
}
.footer p {
    font-size: 13px;
    line-height: 20px;
    font-weight: 20;
}
.w-full {
    height: auto;
}
.sr-only {
    border: 0 !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
    clip: auto !important;
    -webkit-clip-path: none !important;
    clip-path: none !important;
    height: auto !important;
    margin: auto !important;
    overflow: visible !important;
    width: auto !important;
    white-space: normal !important;
}
@media only screen and (max-width: 900px) {
    .cta, p {
        margin-top: 20px;
    }
    .content {
        max-width: 95%;
    }
    .logo {
        width: 180px;
        height: 100px;
    }
    .main-title {
        font-size: 25px;
    }
    p {
        font-size: 15px;
        line-height: 23px;
    }
    .cta {
        flex-direction: column;
        align-items: center;
    }
    .cta a {
        font-size:12px;
    }
    .cta svg {
        width: 15px;
        height: auto;
    }
    .footer {
        position: absolute;
        width: 100%;
        left: 0;
        bottom: 10px;
        text-align: center;
    }
    .footer p {
        font-size: 12px;
        line-height: 20px;
        font-weight: 20;
    }
    .lang_switcher {
        right: 5%;
    }
}