#oee {
    width: 100%;
    min-height: 110vh;
    /* margin-top: 70px; */
    background-size: 100% auto;
    background-position: center;
}

#oee .row {
    margin-left: -15px;
    margin-right: -15px;
}

#oee .col-lg-6 {
    padding-left: 15px;
    padding-right: 15px;
}

#oee h3 {
    color: black;
    /* margin: 36px 120px; */
    margin-bottom: 20px;
    font-size: 24px;
    text-align: justify;
}

#oee .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    transition: 0.5s;
    color: #fff;
    border: 2px solid #fff;
    /* margin: 36px 120px; */
}

#oee .btn-get-started:hover {
    background: #fff;
    color: #3498db;
}

#oee .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

#oee .oee-img {
    max-width: 100%;
    height: auto;
}

@media (min-width: 1024px) {
    #oee {
        background-attachment: fixed;
    }
}

@media (max-width: 991px) {
    #oee .animated {
        animation: none;
    }
}

@media (max-width: 768px) {
    #oee h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #oee h3 {
        font-size: 20px;
        line-height: 24px;
        margin-top: 30px;
        margin-bottom: 30px;
    }
}

@media (min-width: 768px) {
    #oee {
        min-height: 70vh;
    }
}

@media (min-width: 991px) {
    #oee {
        min-height: 100vh;
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}
