.pdfobject-container {
    position: relative;
    width: 100%;
    height: 80rem;
    border: 10px solid rgba(0, 0, 0, .2);
    margin: 0;
}

body {
    color: white;
}

p {
    font-size: 0.8em;
}

h2 { 
    color: #efaf23;
    font-size: 2.5em!important;
}

h3 {
    color: #efaf23;
    font-size: 2em!important;
}

h4 a {
    color: black;
    font-size: 0.75em!important;
    background-color: #efe223;
    border: 5px solid black;
    border-radius: 5px;
    margin: 10px 20px 10px 20px;
    padding: 0px 10px 0px 10px;
}

h4 a:hover {
    color: white;
    font-weight: 700;
    transition: all ease 0.3s;
    border: 5px solid black;
    border-radius: 5px;
    margin: 10px 20px 10px 20px;
    padding: 0px 10px 0px 10px;
    background-color: black;
    text-decoration: underline!important;    
}

h5 a {
    font-size: 0.8em;
    color: white;
    text-decoration: underline dotted;
}

h5 a:hover {
    color: #efaf23;
    transition: all ease 0.3s;
    text-decoration: underline!important;
}

hr {
    border: 3px solid white;
    border-radius: 4px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.home-up-white {
    color: white;
    font-size: 40px;
    padding-top: 40px;
    padding-bottom: 0px;
    display: inline-block;
    transition: all ease 0.3s;
}

.home-up-white:hover {
    color: #efaf23;
    transition: all ease 0.3s;
}

.home-up-white:focus {
    color: white;
}

/* arrow css3 animation */

@-webkit-keyframes bounce {
    0%, 100% {
        -webkit-transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-20px);
    }
}

@-moz-keyframes bounce {
    0%, 100% {
        -moz-transform: translateY(0);
    }
    50% {
        -moz-transform: translateY(-20px);
    }
}

@-o-keyframes bounce {
    0%, 100% {
        -o-transform: translateY(0);
    }
    50% {
        -o-transform: translateY(-20px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.bounce {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    -moz-animation: bounce 2s infinite;
    -o-animation: bounce 2s infinite;
}