html {
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Big Shoulders Text', cursive;
}

body.fade-out {
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.main-wrapper {
    position: relative;

}

.main-wrapper:before {
    content: "";
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    background: url(../img/resources/background.jpg) no-repeat top center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

/* HEADER **********************************************************/
.navbar-brand img {
    width: 250px;
}

.navbar-collapse {
    justify-content: flex-end;
}

.navbar {
    -webkit-box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.20);
    -moz-box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.20);
    box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.20);
}

a:hover {
    color: #000;
    text-decoration: none;
}

.tab-content {
    padding: 30px 0;
}

.navbar-nav .nav-link {
    font-family: 'Big Shoulders Text', cursive;
}

.nav {
    justify-content: center;
}

.navbar-light .navbar-nav .nav-link {
    padding: 10px 19px;
    font-size: 20px;
    color: #000;
    font-weight: 600;
}

.navbar-light .navbar-nav .active > .nav-link {
    color: #e45925;
}

/* CONTENT **********************************************************/
.document-content {
    padding: 230px 0 10px;
}

.doc-content-box {
    background: #f8f9fa;
    padding: 40px;
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.20);
    -moz-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.20);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.20);
}

.doc-list-title {
    width: 100%;
}

ul.doc-box-list {
    padding: 0;
}

ul.doc-box-list li {
    list-style: none;
    padding: 10px;
}

ul.doc-box-list li:hover {
    background: rgba(208, 208, 208, 0.54);
}

ul.doc-box-list li a {
    color: #000;
    font-size: 20px;
    width: 100%;
}

.doc-list-item {
    display: flex;
    align-items: center;
}

.doc-list-icon {
    margin-right: 10px;
    position: relative;
    width: 35px;
    height: 35px;
}

.doc-list-icon img {
    width: 35px;
    position: absolute;
    left: 0;
    top: 0;
}

img.iconTwo {
    display: none;
}

/* FOOTER **********************************************************/
.footer {
    padding: 40px 0;
}

a.footer-btn {
    color: #fff;
    background: linear-gradient(145deg, rgba(253, 147, 2, 1) 0%, rgba(214, 54, 44, 1) 100%);
    padding: 15px 30px;
    font-size: 20px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    white-space: nowrap;
}

a.footer-btn:hover {
    color: #000;
}

.footer-mobile .footer-btn i {
    margin-right: 10px;
}

.footer-desktop, .footer-mobile {
    display: none;
}

@media screen and (max-width: 1024px) {
    .footer-mobile {
        display: block;
    }

    ul.doc-box-list li {
        padding: 10px 0;
    }
}

@media screen and (min-width: 1025px) {
    .footer-desktop {
        display: block;
    }
}

@media screen and (max-width: 900px) {
    .mr-resp-5 {
        margin-bottom: 10px;
    }

    .modal-dialog {
        width: 90%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .doc-content-box {
        padding: 15px;
    }
}

@media screen and (max-width: 425px) {
    .template-selection li.nav-item {
        width: 100%;
    }

    .navbar-brand img {
        width: 215px;
    }
}

@media screen and (max-width: 375px) {
    a.footer-btn {
        padding: 15px 10px;
        font-size: 17px;
    }
}