html {
    min-height: 100%;
    overflow-x: hidden;
}

html, body {
    width: 100%;
    font-family: "Font Awesome 5 Free", 'Poppins', sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
	background: #fff;
	color: #222;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.5;
}

a {
    /*background: #009C84;*/
    /*padding: 12px 26px;*/
    /*border-radius: 12px;*/
    /*margin: 20px;*/
    color: #009C84;
    display: inline-block;
    transition: .3s ease;
    font-weight: 500;
}


a:hover {
    text-decoration: none;
    /*background: #0f816f;*/
    color:  #0f816f;
}


a:focus {
	text-decoration: none;
	outline: unset;
}

button:focus, div:focus,
.btn:focus {
    outline: unset;
    box-shadow: unset;
}

.btn-goto {
    font-weight: 500;
    padding: 16px 50px;
    text-align: center;
    background-color: #009C84;
    color: #fff;
    border-radius: 30px;
    cursor: pointer;
    transition: all .3s ease;
    float: left;
    clear: both;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

p {
    width: 95%;
    font-size: 24px;
    line-height: 1.5em;
    margin-bottom: 30px;
    margin: 20px auto;
}

@media(max-width: 990px) {
    p {
        width: 100%;
    }
}

.landing {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    background: rgb(255 255 255 / 70%);
    padding: 3em 3em 2em;
}

.logo {
    margin-bottom: 40px;   
}

.logo img {
    max-width: 100%;
    height: 86px;
    object-fit: cover;
}




