:root {
    --main-color: #35bccf;
    --white-color: #fff;
    --headline-font: "Lato", Sans-serif;
    --body-font: "Lato", Sans-serif;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    line-height: 1.42857143;
    background-color: rgba(35, 35, 35, 0);
    margin: 0;
    font-family: var(--body-font);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #333;
    background-color: var(--white-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-position: center center;
}

.main-image {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -3;
}
.main-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100vh !important;
    z-index: -2;
    object-fit: cover;;
}
.main-image:before {
    width: 100%;
    position: fixed;
    height: 100%;
    top: 0;
    left: 0;
    content: "";
    background-color: rgba(0, 0, 0, 0.9);
    opacity: 0.7;
    z-index: -1;
}
.wrap-logo {
    text-align: center;
    margin-top: 100px;
    margin-bottom: 20px;
}
.wrap-logo img{
    height: 70px;
    width: 70px;
    border-radius: 100%;
    object-fit: cover !important;
}
.container {
    width: 400px;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    overflow: hidden;
    padding: 20px;
}
.main-content {
    padding-bottom: 0px;
}
.headline {
    color: #fff;
    font-size: 20px;
    text-align: center;
    margin: 0px;
    margin-bottom: 10px;
    font-family: var(--headline-font);
}
.description {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    margin: 0px;
    margin-bottom: 10px;
}
.social-links  {
    margin-top: 20px;
}
.social-links .btn-link {
    display: block;
    width: 100%;
    padding: 5px 20px;
    border: 1px solid var(--main-color);
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    margin-bottom: 20px;
}
.social-links .btn-link span {
    color: #fff;
    display: block;
    font-size: 16px;
}
.social-links .btn-link small {
    color: var(--main-color);
    display: block;
    font-size: 14px;
}
.footer {
    text-align: center;
    color: #fff;  
    font-size: 16px;
    font-family: var(--main-font);
    padding-top: 0px;
}
.footer p{
    margin: 0px !important;
}
.footer p span.concise_question {
    color: var(--main-color);
}

.divider-line {
    height: 3px;
    width: 70px;
    margin-top: 20px;
    margin: 0 auto;
    background-color: var(--main-color);
    display: block;
    margin-bottom: 10px;
}

@media only screen and (max-width: 600px) {
    .wrap-logo {
        margin-top: 30px !important;
    }
    .footer {
        padding-bottom: 50px;
        font-weight: 500;
    }
}