body {
    max-width: 1920px;
    margin: 0 auto;
    font-family: Arial, Helvetica, sans-serif;
    font-style: 16px;
    background-color: #f2f2f2;
    font-weight: 400;
}

a:hover {
    text-decoration: none !important;
}

ul {
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 30px;
    font-weight: bold;
    color: #000;
}

h2 {
    font-size: 20px;
    font-weight: bold;
    color: #000;
}

header {
    position: absolute;
    width: 100%;
    left: 0;
}

.headerView {
    position: relative;
    z-index: 2;
    padding: 20px 0 0 0;
}

.mainmenu ul {
    text-align: right;
    margin: 20px 0 0 0;
}

.mainmenu ul li {
    display: inline-block;
    margin: 0 20px 0 0;
}

.mainmenu ul li a {
    display: inline-block;
    font-size: 18px;
    color: #ffff;
}

.mainmenu ul li a:hover,
.mainmenu ul li a.active {
    color: #FB9A01
}

.bgView {
    position: relative;
    top: 0;
    width: 100%;
    overflow: hidden;
}

.zoom-image {
    height: 450px;
    width: 100%;
    background-repeat: no-repeat;
    background-position: 77% 26%;
    background-attachment: fixed;
    transform-origin: center center;
    animation: zoom 50s infinite;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    background-size: cover;
}

.bgView p {
    position: absolute;
    color: #ffff;
    font-size: 30px;
    font-weight: bold;
    top: 40%;
    width: 100%;
    z-index: 2;
    text-align: center;
}

.bg-overlay {
    background: rgb(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.content {
    padding: 30px 0 30px 0;
}

footer {
    background-color: #34345a;
    padding: 30px 0 30px 0;
    text-align: center;
}

footer p {
    font-size: 16px;
    color: #ffff;
    margin: 0;
}

.osmio-certi {
    width: 250px;
    margin: 0 auto;
}

.osmio-certi img {
    width: 100%;
}

textarea.form-control {
    height: 150px;
    resize: none;
}

.info {
    color: #f20f0f;
    font-size: 12px;
    position: absolute;
    right: 24px;
    top: 2px;
}

.errorMessage {
    color: #f20f0f;
}

.successMessage {
    color: #15bf00;
}

@keyframes zoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 1023px) {}

@media only screen and (max-width: 991px) {}

@media only screen and (max-width:768px) {}

@media only screen and (max-width:575px) {}