*::-moz-selection {
    background-color: rgba(255,255,255,0.5);
}
*::selection {
    background-color: rgba(255,255,255,0.5);
}

body {
    margin: 0 auto;
    background-color: #FFFFFF !important;
    color: #1e1e1e !important;
    font-family: "Open Sans", system-ui !important;
}

body .container, .row, .col-12  {
    height: 100vh;
}

.content {
    width: 100%;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    text-align: center;
}

h1 {
	font-weight: 700 !important;
}

a {
    text-decoration: none !important;
    color: #1e1e1e !important;
	font-size: .9rem;
	font-weight: 500 !important;
    transition: .3s;
}
a:hover {
    color: #00D1D1 !important;
}

.content img {
    width: 20%;
}

@media only screen and (max-width: 991px) {

    .content {
        width: 100%;
        position: relative;
        top: 0;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        left: 0;
        text-align: center;
    }

    .content img {
        width: 40%;
    }

}

@media only screen and (max-width: 575px) {

    .content img {
        width: 50%;
    }

}