:root {
    --primary-color: #379ee3;
    --button-primary-color: #093968;
    --border-color: #06315c;

    --bg-gray-color: #fafaff;
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
    color: #3a4b61;
    background: #f5f8fb;
}

a {
    text-decoration: none;
    color: #3a4b61;
}

.modal-backdrop.show {
    background-color: #000;
    opacity: 0.6;
}

.modal-item.modal {
    top: 2rem;
}

.navbar {
    padding: 1.5rem 0.5rem;
}

.navbar-light .navbar-nav .nav-link {
    font: 300 0.875rem/1.5rem Poppins, sans-serif;
    color: #8b9caf;
    padding: 0rem 1.25rem 0rem 0rem;
    margin-right: 0;
    margin-left: 0;
}

.navbar-light .navbar-nav .nav-link:hover {
    font: 500 0.875rem/1.5rem Poppins, sans-serif;
    color: #243142;
}

.navbar-light .navbar-nav .active {
    position: relative;
    width: fit-content;
}

.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show > .nav-link {
    font-weight: 500;
    color: #243142;
}

.navbar-light .navbar-toggler-icon {
    background-image: urlurl(
        "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"
    );
}

.btn:focus,
.btn:active {
    outline: none !important;
}

.btn-fill {
    font: 500 0.875rem/1.25rem Poppins, sans-serif;
    border: 1px solid var(--border-color);
    background-color: var(--button-primary-color);
    border-radius: 999px;
    padding: 0.75rem 1.5rem;
    transition: 0.3s;
}

.btn-fill:hover {
    background-color: #6da4f9;
    border: 1px solid #6da4f9;
}

.btn-no-fill {
    font: 500 0.875rem/1.25rem Poppins, sans-serif;
    color: #8b9caf;
    padding: 0.75rem 2rem;
}

.btn-no-fill:hover {
    color: #243142;
}

.modal-item .modal-dialog .modal-content {
    border-radius: 8px;
}

.responsive li {
    padding: 1rem;
}

.hr {
    padding-left: 2rem;
    padding-right: 2rem;
}

.hero {
    padding: 4rem 2rem;
}

.left-column {
    margin-bottom: 0.75rem;
    width: 100%;
}

.title-text-big {
    font: 600 2.25rem / normal Poppins, sans-serif;
    margin-bottom: 1.25rem;
    color: #243142;
}

.title-text-md {
    font: 600 2rem / normal Poppins, sans-serif;
    /* margin-bottom: 1rem; */
    color: #243142;
}

.text-caption {
    font: 300 1rem/1.5rem Poppins, sans-serif;
    letter-spacing: 0.025em;
    color: #8b9caf;
    margin-bottom: 5rem;
}

.btn-get {
    font: 600 1rem/1.5rem Poppins, sans-serif;
    padding: 1rem 2rem;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    background-color: var(--button-primary-color);
    transition: 0.3s;
}

.btn-get:hover {
    background-color: #6da4f9;
    border: 1px solid #6da4f9;
}

.btn-outline {
    font: 400 1rem/1.5rem Poppins, sans-serif;
    padding: 1rem 1.5rem;
    border-radius: 999px;
    background-color: transparent;
    border: 1px solid #a6b1be;
    color: #a6b1be;
    transition: 0.3s;
}

.btn-outline:hover {
    border: 1px solid #6da4f9;
    color: #6da4f9;
}

.btn-outline:hover div path {
    fill: #6da4f9;
}

.btn-outline:hover div rect {
    stroke: #6da4f9;
}

.right-column {
    width: 100%;
}

.hero-right {
    right: 2rem;
    bottom: 0;
}

.card-outer {
    padding-left: 0;
    z-index: 1;
}

.card {
    transition: 0.4s;
    top: 0px;
    left: 0px;
    background-color: #ffffff;
    padding: 1.25rem;
    /* border-radius: 0.75rem; */
    width: 100%;
    margin-top: 2.5rem;
    box-shadow: -4px 4px 10px 0px rgba(224, 224, 224, 0.25);
}

.card img {
    height: 260px;
    object-fit: cover;
}

a .card {
    text-decoration: none;
}

.item {
    /* transition: 0.4s; */
    /* top: 0px; */
    /* left: 0px; */
    background-color: #ffffff;
    /* padding: 1.25rem; */
    border-radius: 0.3rem;
    width: 100%;
    /* margin-top: 2.5rem; */
    box-shadow: -4px 4px 10px 0px rgba(224, 224, 224, 0.5);
    /* border: #ebebeb solid thin; */
    /* height: 360px; */
    /* overflow: hidden; */
    /* margin: 20px auto; */
}

.item a,
.allnews {
    text-decoration: none;
    color: #3a4b61;
}

.item p {
    color: #979797;
    word-break: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-height: 20px; /* fallback */
    max-height: 62px; /* fallback */
    -webkit-line-clamp: 3; /* number of lines to show */
    -webkit-box-orient: vertical;
}

.card-body {
    position: relative;
    min-height: 180px !important;
}

.post-card {
    width: 340px;
    overflow: hidden;
    /* border-radius: 0.3rem; */
    text-align: left;
    height: 350px;
}

.post-card img {
    transition: 0.5s;
    height: 200px;
    object-fit: cover;
    filter: brightness(0.7);
}

.post-card:hover img {
    transition: 0.5s;
    filter: brightness(0.9);
}

.date {
    font-size: 0.8rem;
    color: #888;
}

.berita-detail .date {
    font-size: 0.9rem;
    color: #888;
    border-bottom: thin solid #ddd;
}

.berita-detail .content {
    font-size: 1rem;
    color: #979797;
    line-height: 1.8rem;
    font-weight: 300;
}

.post-card .title {
    font-weight: 600;
    line-height: 1.2rem;
    margin-top: 5px;
}

.post-card p {
    font-size: 0.8rem;
    font-weight: normal;
    line-height: 1.2rem;
    color: #888;
}

.lastest-news a {
    text-decoration: none;
    color: #3a4b61;
}

.lastest-news a .title,
.card-title {
    color: #d67c3c;
}

.lastest-news p {
    word-break: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-height: 20px; /* fallback */
    max-height: 62px; /* fallback */
    -webkit-line-clamp: 3; /* number of lines to show */
    -webkit-box-orient: vertical;
}

.card:hover {
    box-shadow: -4px 8px 15px 0px rgba(167, 167, 167, 0.25);
}

.card-name {
    font: 600 1rem/1.5rem Poppins, sans-serif;
    margin-bottom: 0.25rem;
}

.card-job {
    font: 300 0.75rem/1rem Poppins, sans-serif;
    color: #aaa6a6;
    margin-bottom: 0;
}

.card-price-left {
    font: 500 1rem/1.5rem Poppins, sans-serif;
    margin-bottom: 0.125rem;
    color: #1b8171;
}

.card-caption {
    font: 300 0.75rem/1rem Poppins, sans-serif;
    color: #aaa6a6;
    margin-bottom: 0;
}

.card-price-right {
    font: 500 1rem/1.5rem Poppins, sans-serif;
    margin-bottom: 0.125rem;
    color: #ff7468;
}

.btn-hire {
    font: 600 1rem/1.5rem Poppins, sans-serif;
    padding: 0.75rem 4rem;
    border-radius: 0.75rem;
    margin-bottom: 0.125rem;
    border: 1px solid #4e91f9;
    background-color: #4e91f9;
    transition: 0.3s;
}

.btn-hire:hover {
    background-color: #6da4f9;
    border: 1px solid #6da4f9;
}

.form {
    border-radius: 999px;
    background-color: #eef4fd;
    box-sizing: border-box;
    font-size: 14px;
    padding: 0rem 1rem;
    padding-right: 0.5rem;
    outline: none;
}

.form div input[type="text"] {
    background-color: #eef4fd;
    box-sizing: border-box;
    font-size: 14px;
    padding: 0rem 0.5rem;
    outline: none;
    width: 100%;
}

.center-search {
    bottom: 0.5rem;
}

@media (min-width: 576px) {
    .modal-item .modal-dialog {
        max-width: 95%;
        border-radius: 12px;
    }

    .navbar {
        padding: 2rem;
    }

    .title-text-big {
        font-size: 3rem;
        line-height: 1.2;
    }

    .flex-box {
        /* background-color: #fff; */
        padding: 3em 2em;
        border-radius: 5px;
    }
}

@media (min-width: 768px) {
    .navbar {
        padding: 2rem 4rem;
    }

    .hr {
        padding-left: 4rem;
        padding-right: 4rem;
    }

    .hero {
        padding: 4rem;
    }

    .left-column {
        margin-bottom: 3rem;
    }

    .hero-right {
        right: 4rem;
    }

    .card {
        margin-left: auto;
        margin-top: 0;
    }
}

@media (min-width: 992px) {
    .navbar-light .navbar-nav .active:before {
        content: "";
        position: absolute;
        margin-left: auto;
        margin-right: auto;
        left: 0;
        right: 0;
        text-align: center;
        bottom: 0;
        height: 0px;
        width: 80%;
        /* or 100px */
        border-bottom: 2px solid #4e91f9;
    }

    .navbar {
        padding: 2rem 6rem;
    }

    .navbar-light .navbar-nav .nav-link {
        padding: 0;
        margin-right: 1rem;
        margin-left: 1rem;
    }

    .navbar-light .navbar-nav .active:before {
        width: 40%;
    }

    .hr {
        padding-left: 6rem;
        padding-right: 6rem;
    }

    .hero {
        padding: 4rem 6rem 5rem;
    }

    .left-column {
        width: 50%;
        margin-bottom: 0;
    }

    .title-text-big {
        font-size: 3.75rem;
        line-height: 1.25;
    }

    .right-column {
        width: 50%;
    }

    .hero-right {
        right: 6rem;
    }

    .card-outer {
        padding-left: 4rem;
    }

    .center-search {
        left: 53%;
        top: 50%;
        bottom: auto;
        transform: translate(-48%, -50%);
    }

    .form {
        width: 340px;
    }
}

@media (max-width: 1023px) {
    .form div input[type="text"] {
        width: 100%;
    }
}

.content-3-5 .btn:focus,
.content-3-5 .btn:active {
    outline: none !important;
}

.content-3-5 .width-left {
    width: 0%;
}

.content-3-5 .width-right {
    width: 100%;
    height: 100%;
    padding: 8rem 2rem;
    background-color: #fbfcff;
}

.content-3-5 .centered {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.content-3-5 .right {
    width: 100%;
}

.content-3-5 .title-text {
    font: 600 1.875rem/2.25rem Poppins, sans-serif;
    margin-bottom: 0.75rem;
}

.content-3-5 .caption-text {
    font: 300 0.875rem/1.75rem Poppins, sans-serif;
    color: #777b86;
}

.content-3-5 .input-label {
    font: 500 1.125rem/1.75rem Poppins, sans-serif;
    color: #39465b;
}

.content-3-5 .div-input {
    font: 300 1rem/1.5rem Poppins, sans-serif;
    padding: 1rem 1.25rem;
    margin-top: 0.75rem;
    border-radius: 0.75rem;
    border: 1px solid #cacbce;
    color: #2a3240;
    transition: 0.3s;
}

.content-3-5 .div-input:focus-within {
    border: 1px solid #2ec49c;
    color: #2a3240;
    transition: 0.3s;
}

.content-3-5 .div-input input::placeholder {
    color: #cacbce;
    transition: 0.3s;
}

.content-3-5 .div-input:focus-within input::placeholder {
    color: #2a3240;
    outline: none;
    transition: 0.3s;
}

.content-3-5 .div-input .icon-toggle-empty-3-5 path,
.content-3-5 .div-input:focus-within .icon path {
    transition: 0.3;
    fill: #2ec49c;
    transition: 0.3s;
}

.content-3-5 .input-field {
    font: 300 1rem/1.5rem Poppins, sans-serif;
    width: 100%;
    background-color: #fcfdff;
    transition: 0.3s;
}

.content-3-5 .input-field:focus {
    outline: none;
    transition: 0.3s;
}

.content-3-5 .forgot-password {
    font: 400 0.875rem/1.25rem Poppins, sans-serif;
    color: #cacbce;
    transition: 0.3s;
    text-decoration: none;
}

.content-3-5 .forgot-password:hover {
    color: #2a3240;
}

.content-3-5 .btn-fill {
    font: 500 1.25rem/1.75rem Poppins, sans-serif;
    border: 1px solid #4e91f9;
    background-color: #4e91f9;
    padding: 0.75rem 1rem;
    margin-top: 2.25rem;
    border-radius: 0.75rem;
    transition: 0.5s;
}

.content-3-5 .btn-fill:hover {
    /* background-image: linear-gradient(#2ec49c, #2ec49c); */
    background-color: #67a4ff;
    transition: 0.5s;
}

.content-3-5 .bottom-caption {
    font: 400 0.875rem/1.25rem Poppins, sans-serif;
    margin-top: 2rem;
    color: #2a3240;
}

.content-3-5 .green-bottom-caption {
    color: #2ec49c;
    font-weight: 500;
}

.content-3-5 .green-bottom-caption:hover {
    color: #2ec49c;
    cursor: pointer;
    text-decoration: underline;
}

@media (min-width: 576px) {
    .content-3-5 .width-right {
        padding: 8rem 4rem;
    }

    .content-3-5 .right {
        width: 58.333333%;
    }
}

@media (min-width: 768px) {
    .content-3-5 .right {
        width: 66.666667%;
    }
}

@media (min-width: 992px) {
    .content-3-5 .width-left {
        width: 48%;
    }

    .content-3-5 .width-right {
        width: 52%;
    }

    .content-3-5 .right {
        width: 75%;
    }
}

@media (min-width: 1200px) {
    .content-3-5 .right {
        width: 58.333333%;
    }
}

.content-2-2 .btn:focus,
.content-2-2 .btn:active {
    outline: none !important;
}

.title-text {
    padding-top: 5rem;
    margin-bottom: 3rem;
}

.text-title {
    font: 600 2.25rem/2.5rem Poppins, sans-serif;
    color: #121212;
    margin-bottom: 0.625rem;
}

.content-2-2 .text-caption {
    color: #121212;
    font-weight: 300;
}

.content-2-2 .column {
    padding: 2rem 2.25rem;
}

.content-2-2 .icon {
    margin-bottom: 1.5rem;
}

.content-2-2 .icon-title {
    font: 500 1.5rem/2rem Poppins, sans-serif;
    margin-bottom: 0.625rem;
    color: #121212;
}

.content-2-2 .icon-caption {
    font: 400 1rem/1.625 Poppins, sans-serif;
    letter-spacing: 0.025em;
    color: #565656;
}

.content-2-2 .card-block {
    padding: 1rem 1rem 5rem;
}

.content-2-2 .card {
    padding: 1.75rem;
    background-color: #eef6f4;
    border-radius: 0.75rem;
    /* border: 1px solid #4E91F9; */
}

.content-2-2 .card-title {
    font: 600 1.5rem/2rem Poppins, sans-serif;
    margin-bottom: 0.625rem;
    color: #000000;
}

.content-2-2 .card-caption {
    font: 300 1rem/1.5rem Poppins, sans-serif;
    color: #565656;
    letter-spacing: 0.025em;
    margin-bottom: 0;
}

.content-2-2 .btn-card {
    font: 700 1rem/1.5rem Poppins, sans-serif;
    border: 1px solid #4e91f9;
    background-color: #4e91f9;
    padding-top: 1rem;
    padding-bottom: 1rem;
    width: 100%;
    border-radius: 0.75rem;
    margin-bottom: 1.25rem;
}

.content-2-2 .btn-card:hover {
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
        var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.content-2-2 .btn-outline {
    font: 400 1rem/1.5rem Poppins, sans-serif;
    color: #979797;
    border: 1px solid #979797;
    padding-top: 1rem;
    padding-bottom: 1rem;
    width: 100%;
    border-radius: 0.75rem;
}

.content-2-2 .btn-outline:hover {
    border: 1px solid #27c499;
    color: #27c499;
}

.content-2-2 .card-text {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.content-2-2 .grid-padding {
    padding: 0rem 1rem 3rem;
}

@media (min-width: 576px) {
    .content-2-2 .grid-padding {
        padding: 0rem 2rem 3rem;
    }

    .content-2-2 .card-block {
        padding: 3rem 2rem 5rem;
    }
}

@media (min-width: 768px) {
    .content-2-2 .grid-padding {
        padding: 0rem 4rem 3rem;
    }

    .content-2-2 .card-block {
        padding: 3rem 4rem 5rem;
    }
}

@media (min-width: 992px) {
    .content-2-2 .grid-padding {
        padding: 1rem 6rem 3rem;
    }

    .content-2-2 .card-block {
        padding: 3rem 6rem 5rem;
    }

    .content-2-2 .column {
        padding: 0rem 2.25rem;
    }
}

@media (min-width: 1200px) {
    .content-2-2 .grid-padding {
        padding: 1rem 10rem 3rem;
    }

    .content-2-2 .card-block {
        padding: 3rem 6rem 5rem;
    }

    .content-2-2 .card-btn-space {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .content-2-2 .btn-card,
    .content-2-2 .btn-outline {
        width: 95%;
        float: right;
    }
}

@media (max-width: 980px) {
    .content-2-2 .card-btn-space {
        width: 100%;
    }

    .nav-logo img {
        width: 220px;
    }
}

@media (max-width: 575px) {
    .content-3-5 .width-right {
        width: 100%;
        height: 100%;
        padding: 1rem 1rem;
        background-color: #fafbfd;
    }

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 24px;
    }

    .flex-box {
        /* background-color: #fff; */
        padding: 2.5em 1em;
    }

    .text-title {
        font-size: 2rem;
    }

    .content-3-5 .title-text {
        font-size: 1.5rem;
        text-align: center;
    }

    .content-3-5 .caption-text {
        text-align: center;
    }

    .text-caption {
        margin-bottom: 3rem;
    }

    .hero {
        padding: 3rem 2rem;
    }

    .btn-get {
        font-size: 0.8rem;
        padding: 10px 20px;
        margin: 0px;
        line-height: normal;
    }

    .btn-outline {
        font-size: 0.8rem;
        padding: 10px 20px;
        margin: 0px;
        line-height: normal;
    }
}

.bg-gray {
    background-color: var(--bg-gray-color);
}

.news-button {
    padding: 20px;
    margin: auto;
    text-align: center;
}

.footer-2-2 .list-space {
    margin-bottom: 1.25rem;
}

.footer-2-2 .footer-text-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1.5rem;
}

.footer-2-2 .list-menu {
    color: #c7c7c7;
    text-decoration: none !important;
}

.footer-2-2 .list-menu:hover {
    color: #555252;
}

.footer-2-2 hr.hr {
    margin: 0;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-2-2 .border-color {
    color: #c7c7c7;
}

.footer-2-2 .footer-link {
    color: #c7c7c7;
}

.footer-2-2 .footer-link:hover {
    color: #555252;
}

.footer-2-2 .social-media-c:hover circle,
.footer-2-2 .social-media-p:hover path {
    fill: #555252;
}

.footer-2-2 .footer-info-space {
    padding-top: 3rem;
}

.footer-2-2 .list-footer {
    padding: 5rem 1rem 3rem 1rem;
}

.footer-2-2 .info-footer {
    padding: 0 1rem 3rem;
}

@media (min-width: 576px) {
    .footer-2-2 .list-footer {
        padding: 5rem 2rem 3rem 2rem;
    }

    .footer-2-2 .info-footer {
        padding: 0 2rem 3rem;
    }

    .nav-logo img {
        width: 300px;
    }

    h1 {
        font-size: 50px;
    }

    h2 {
        font-size: 38px;
    }
}

@media (min-width: 768px) {
    .footer-2-2 .list-footer {
        padding: 5rem 4rem 6rem 4rem;
    }

    .footer-2-2 .info-footer {
        padding: 0 4rem 3rem;
    }
}

@media (min-width: 992px) {
    .footer-2-2 .list-footer {
        padding: 5rem 6rem 6rem 6rem;
    }

    .footer-2-2 .info-footer {
        padding: 0 6rem 3rem;
    }
}

/* remove dropdown icon */
.dropdown-toggle::after {
    display: none;
}

.btn-user:active {
    border: none;
}

.btn-user:focus {
    outline: 0;
    border: none;
}

.uncomplete {
    width: 5px;
    height: 5px;
    background: rgb(255, 96, 96);
    border-radius: 50%;
    position: relative;
    float: right;
}

.beasiswa-icon {
    font-size: 72px;
    margin-bottom: 0px;
    color: var(--button-primary-color);
}

.user-welcome {
    font: 400 0.875rem/1rem Poppins, sans-serif;
    /* font-size: 0.9rem;
    line-height: 0.9rem;; */
}
.user-welcome small {
    font-size: 0.7rem;
}

.berita {
    padding: 50px auto;
    /* margin: 20px auto; */
}

.berita a {
    text-decoration: none;
}

ul.pagination li {
    display: inline;
    font-size: 12px;
    font-weight: bold;
    color: #3a4b61 !important;
}

.page-link {
    color: #3a4b61;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #3a4b61;
    border-color: #3a4b61;
}

.right-sidebar {
    padding: 30px 15px;
    box-shadow: -4px 4px 10px 0px rgba(224, 224, 224, 0.5);
    border: thin solid #eee;
    background-color: #fff;
}

.right-sidebar .post-img {
    display: inline-block;
    float: left;
    padding: 0 5px;
    width: 38%;
    padding: 3px 0;
}

.right-sidebar .post-content {
    display: inline-block;
    float: left;
    width: 62%;
    padding-left: 10px;
}

.right-sidebar img {
    width: 100%;
    display: inline;
}

.right-sidebar .recent-single-post {
    border-bottom: 1px solid #eee;
    display: block;
    overflow: hidden;
    padding: 15px 0;
}

.right-sidebar .recent-single-post:last-child {
    border-bottom: none;
}

.right-sidebar ul {
    /* list-style: outside none none; */
    margin: 0;
    padding: 0;
}

.right-sidebar h5 {
    border-bottom: thin solid #eee;
    padding-bottom: 15px;
}

/* .biotab ul {
    flex-wrap: nowrap;
    overflow-y: hidden;
    border-bottom: none;
}

.biotab li > ul:active{
    background-color: #379ee3;
}

.biotab li > ul:focus{
    background-color: #379ee3;
}

.biotab button.active{
    border: none;
    border-bottom: 2px solid #3a4b61;
} */
