* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

div {
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

a:active,
a:focus,
a:visited {
    color: inherit;
    text-decoration: none;
    outline: none;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

.language {
    position: fixed;
    top: 20px;
    right: 30px; 
    z-index: 1000; 
    display: flex; 
    align-items: center;
}

.mersolution-logo-area {
    position: fixed;
    bottom: 20px;
    right: 23px; 
    z-index: 1000;
    display: flex;
    align-items: center;
}

.mersolution-logo-area img{
    width: 150px;
    height: auto;
}

.language img{
    width: 25px;
    height: auto;
}

.language .tr{
    width: 28px;
    height: auto;
}

.full-page {
    position: relative;
    height: 100vh; 
    display: flex;
    justify-content: center; 
    align-items: center; 
    text-align: center;    

    background-image: url('../images/bg.jpg');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center; 
}

h1 {
    font-size: 60px;
}

.green{
    color: #8fd476;
}

.text-underline{
    text-decoration: underline;
}   

h5 {
    font-size: 20px;
    color: #252525;
}

.logo {
    width: 350px;
    height: auto;
}

.card {
    border: none;
    background-color: transparent;
}


@media (max-width: 992px){
    h1{
        font-size: 40px !important;
    }

    h5{
        font-size: 15px !important;
    }
}

