* {
    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%;
}

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

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

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

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

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

h1 {
    font-size: 60px;
}

.blue{
    color: #338dbe;
}

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

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

.logo {
    width: 250px;
    height: auto;

}

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

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

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

