* {
    margin: 0;
    padding: 0;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');

html,
body {
    height: 100%;
    font-family: Poppins, Arial, sans-serif;
}

.cover {

    background-image: url("./img/bg.png");
    height: 100%;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}


.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
}

.logo_section {
    display: block;
    margin: 0px auto;
    display: flex;

    height: 100%;
    align-items: center;
}


.logo {
    display: block;
    width: auto;
    height: auto;
}

.logo_mobile {
    display: none;
}



.contact_us {
    display: flex;
}

.icon_contact_us {
    margin-right: 10px;
}




@media only screen and (max-width: 600px) {



    .logo_section {
        display: block;
        margin: 0px auto;
        display: flex;
        padding: 24px;
        height: 100%;
    }


    .logo {
        display: none;

    }

    .logo_mobile {
        display: block !important;
        width: 280px;
        height: auto;
    }


    .cover {

        background-image: url("./img/bg_mobile.png");
        height: 100%;
        background-position: top;
        background-repeat: no-repeat;
        background-size: cover;
    }

}



.email {
    position: absolute;
    bottom: 0px;
    text-align: center;
    width: 100%;
    display: flex;
}

a {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 27px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #5B5150;
    text-decoration: none;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;

}