@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: auto;
    background-color: #000;
    overflow-x: hidden;
}

.aergas {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
}

.aergas:after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 6;
}

.aergas video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: 5;
}

.aergas-inner {
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    position: relative;
    padding: 120px 50px;
    z-index: 10;
    max-width: 700px;
}

.aergas-inner .logo {
    width: 261px;
    height: auto;
}

.aergas-inner .logo img {
    width: 100%;
}

.aergas-inner .text {
    width: auto;
    display: flex;
    flex-direction: column;
}

.aergas-inner .text ul {
    width: auto;
    display: flex;
    flex-direction: column;
    margin: 64px 0 0 0;
    padding: 0;
}

.aergas-inner .text ul li {
    font-family: "Montserrat", sans-serif;
    color: rgba(255, 255, 255, .8);
    font-size: 16px;
    line-height: 28px;
    font-weight: 300;
    text-align: center;
    margin: 0;
    list-style: none;
}

.aergas-inner .text ul li span {
    font-weight: 500;
    color: #fff;
}

.aergas-inner .text button,
.aergas-inner .text a {
    background-color: rgba(255, 255, 255, .2);
    width: 132px;
    height: 44px;
    border-radius: 8px;
    text-decoration: none;
    margin: 88px auto 0 auto;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 28px;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.aergas-inner .text button:hover,
.aergas-inner .text a:hover {
    background-color: #fff;
    color: #000;
}

@media only screen and (max-width: 768px) {
    .aergas-inner {
        padding: 80px 40px;
    }

    .aergas-inner .logo {
        width: 220px;
    }

    .aergas-inner .text ul {
        margin: 50px 0 0 0;
    }

    .aergas-inner .text button,
    .aergas-inner .text a {
        margin: 58px auto 0 auto;
    }
}

@media only screen and (max-width: 480px) {
    .aergas-inner {
        padding: 80px 30px;
    }

    .aergas-inner .logo {
        width: 200px;
    }
}