.termsOfUse {
    padding: 0;
    margin: 20px 0 40px;
}

.termsOfUse p {
    text-align: justify;
}

.termsOfUse .last-update {
    font-weight: 600;
    font-size: 18px;
    text-align: center;
}

.termsOfUse .instruction {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    text-align: center;
}

.termsOfUse .terms-container {
    width: 100%;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.terms-container .termsBox {
    display: flex;
    flex-direction: row;
}

.terms-container .terms-directory {
    width: 24%;
    margin-right: 1%;
    border-right: solid 1px #d8d8d8;
}

.terms-container .terms-content {
    width: 75%;
}

.terms-container .nav-tabs {
    border-bottom: none;
}

.terms-container .nav-link {
    padding: 5px 0;
    padding-right: 10px;
    border-radius: 0;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    border-color: transparent;
    border-right: solid 2px #FDBE33;
    text-decoration: underline #4a4c70;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border-color: transparent;
    border-right: solid 2px #FDBE33;
}

.termsOfUse .dropdown {
    display: none;
    justify-content: flex-end;
}

.termsOfUse .terms-dropdown {
    border: none;
    outline: none;
    padding: 10px;
    border-radius: 10px;
}

.termsOfUse .dropdown-menu {
    padding: 10px 0 10px 20px;
}

/*--------------------------------------------------Responsive--------------------------------------------------*/

@media (max-width: 768px) {
    .terms-container .termsBox {
        flex-direction: column;
    }

    .terms-container .terms-directory {
        display: none;
    }

    .terms-container .terms-content {
        width: 100%;
    }

    .termsOfUse .dropdown {
        display: flex;
    }
}

@media (max-width: 576px) {
    .terms p {
        font-size: 16px
    }
}