.tentang-page {
    background: #f3f3f3;
    max-width: 100%;
}

.detailReward {
    height: 100%;
}
/* 
.tentang-page .navbar .navMenu {
    padding: 0.8rem 6.4rem;
}

.tentang-page .navbar {
    margin: 0;
    width: 100%;
    backdrop-filter: inherit;
    border-radius: 0;
}

.tentang-page .navbar .navMenu .containerNav .listMenu {
    justify-content:end;
}

.tentang-page .navbar.white .navMenu {
    background: rgba(0, 0, 0, 0.3490196078);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    transition: 0.3s;
}

.tentang-page .navbar.white{
    background: none;
}

.tentang-page .navbar.white .navMenu .containerNav .listMenu .menu a, .navbar .navMenu .containerNav .listMenu .menu i {
    color: #fff;
} */


/* width */
::-webkit-scrollbar {
    width: 3px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #0093dd;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}


.tentang-page .containerFull {
    height: 100vh !important;
}

.tentang-page .containerFull::after {
    height: 100vh !important;
}

.tentang-page .containerFull .bannerImg {
    height: 100vh !important;
    filter: brightness(100%);
    background-repeat: no-repeat;
  background-attachment: fixed;
}

.tentang-page .containerFull::after {
    background: linear-gradient(180deg, #28166f50, #f3f3f3);
}

.tentang-page .info {
    position: absolute;
    color: #ffffff;
    z-index: 3;
    top: 150px;
    width: 25%;
    right: 70px;
    text-align: justify;
    height: 600px;
    line-height: 19px;
    background: #ffffff0f;
    padding: 15px 28px;
    backdrop-filter: blur(10px);
    border-radius: 20px;
}

.tentang-page .info .container-info {
    height: 90%;
    padding: 20px;
    overflow: auto;
}

.tentang-page .info b {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 800;
}
.tentang-page .info p {
    color:#fff !important;
}
.tentang-page .info span {
    color:#fff !important;
    font-size:12px !important;
}



.tentang-page .visi {
    font-size: 12px;
    position: absolute;
    color: #ffffff;
    z-index: 3;
    top: 35%;
    left: 100px;
    width: 450px;
    text-align: left;
    line-height: 19px;
}


.tentang-page .visi .title {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    margin-top: 20px;

}

.content-direksi {
    min-height: 800px;
}

.visi .containerLink.space {
    margin-top: 4rem;
    margin-bottom: 1rem;
}
.visi .containerLink {
    position: relative;
    display: flex;
    gap: 1rem;
}

.visi .containerLink a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 280px;
    padding: 12px 0;
    border-radius: 16px;
    background: #ffffff20;
    backdrop-filter: blur(8px);
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    transition: .4s;
}

.visi .containerLink a:hover {
    background: #ffffff40;
    transition: .4s;
}

/**
 * Recipe Categories
 */

.recipe-categories {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.recipe-category {
    position: relative;
    overflow: hidden;
    flex: 0 0 calc(100% - 20px);
    max-width: calc(100% - 20px);
    margin: 10px;
    height: 80px;
    background-size: cover;
    background-position: center center;
    border-radius: 250px;
    transition: all 0.5s cubic-bezier(.02, .01, .5, 1);
    z-index: 9;
}

.recipe-category::after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.2);
}

.recipe-category-inner {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 10px;
    z-index: 2;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}


.recipe-category-icon {
    width: 40px;
    height: 40px;
    margin: 0;
    display: flex;
    justify-content: center;
    text-align: center;
    border-radius: 100%;
    background-color: #FFF;
    padding: 8px;
    margin-right: 10px;
    color: #000;
    transition: transform .5s ease-out;
}

.recipe-category-icon img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 20px;
    object-position: top;
}

.recipe-category:hover .recipe-category-icon {
    transform: rotate(360deg);
}

.recipe-category:hover .recipe-category-info {
    visibility: visible;
}

.recipe-category:hover .recipe-category-inner {
    background: linear-gradient(180deg, rgba(32, 17, 92, 0.7) 10%, rgba(32, 17, 92, 0.02) 78%);
}

.recipe-category-info {
    color: #FFF;
    font-size: 11px;
    text-align: left;
    font-weight: 400;
    visibility: hidden;
}

.recipe-category {
    border: none !important;
}

@media (min-width: 768px) {

    .recipe-category {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }

}


@media (min-width: 992px) {

    .recipe-category {
        flex: 0 0 120px;
        max-width: 120px;
        height: 519px;
        margin: 13px;
        background-color: #ffffff;
        background-size: auto 100%;
        background-position: bottom;
        background-repeat: no-repeat;
        border-radius: 75px;
    }

    .recipe-category:hover {
        flex: 0 0 450px;
        max-width: 250px;
        background-size: auto 100%;
        border-radius: 32px;
    }

    .recipe-category-inner {
        width: auto;
        height: auto;
        left: 27px;
        border-radius: 49px;
        top: auto;
        bottom: 15px;
        background: none;
        /* background: linear-gradient(180deg, rgba(32, 17, 92, 0.7) 10%, rgba(32, 17, 92, 0.02) 78%); */
        writing-mode: vertical-rl;
        text-orientation: mixed;
        transform: rotate(180deg);
    }

    .recipe-category:hover .recipe-category-inner {
        writing-mode: horizontal-tb;
        transform: rotate(0);
    }

    .recipe-category:not(:hover) .recipe-category-icon {
        width: 30px;
        height: 30px;
        margin-right: 0;
        margin-bottom: 10px;
        transform: rotate(180deg);
    }

    .recipe-category:not(:hover) .recipe-category-icon img {
        margin-right: -5px;
    }

    .recipe-category::after {
        background: -webkit-linear-gradient(to bottom, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.8)) 100%;
        background: -o-linear-gradient(to bottom, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.8)) 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.8)) 100%;
    }

}


.recipe-items .card img,
.rotating {
    transform: rotate(0deg);
    transition: transform 1.5s linear;
}

.recipe-items .card:hover img,
.rotating:hover {
    transform: rotate(360deg);
    transition: transform 20s linear;
}

.recipe-items .row {
    border-top: 1px solid #EEE;
    margin-top: -1px;
    margin-bottom: -1px;
}

.recipe-items .row [class^=col-] {
    border-right: 1px solid #EEE;
    border-bottom: 1px solid #EEE;
}

.recipe-items .card {
    border: 0;
    background: transparent;
    border-radius: 0;
    padding: 20px 10px;
}

.recipe-items .card-author {
    font-size: 12px;
    font-weight: 400;
    color: #AAA;
    margin-bottom: 0;
}

.recipe-items .card-title {
    font-size: 18px;
    line-height: 1.3;
}

.recipe-items .card-author a {
    color: #999;
    text-transform: uppercase;
    margin-left: 2px;
    font-weight: 600;
}

.recipe-items .card-title a {
    color: #222;
}

.recipe-items .card-date {
    margin-top: 15px;
    color: #555;
    margin-bottom: 0;
    font-weight: 400;
}

.recipe-items .card-date i {
    margin-right: 6px;
}

.recipe-category-info .nama {
    font-size: 15px;
    font-weight: 700;
}

.desc {
    font-size: 12px;
    margin-top: 10px;
    margin-right: 20px;
    text-transform: capitalize;
    font-family: 'Roboto';
    color: #fff;
}

.buttonNav {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.4rem;
    padding: 4.6rem;
    z-index: 99;
}

.buttonNav .shapeBottom {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.buttonNav .shapeBottom img {
    position: absolute;
    transform: translateX(-50%);
    width: 340px;
}

.buttonNav .shapeBottom .shape.left,
.buttonNav .shapeBottom .shape.right {
    opacity: 0.2;
}
.buttonNav .shapeBottom .shape.left {
    left: 11%;
}
.buttonNav .shapeBottom .shape.right {
    right: -11%;
}

.cardNav {
    position: relative;
    text-decoration: none;
    background: #00216f ;
    border-radius: 20px;
    padding: 3rem 2rem;
    width: 100%;
    height: 100px;
    backdrop-filter: blur(2px);
    transition: .4s all;
    z-index: 99;
}
.cardNav .title {
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    transition: .4s all;
}
.cardNav .subtitle {
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    transition: .4s all;
}
.cardNav .icon-circle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #00216f;
}
.cardNav .icon-circle i {
    font-size: 24px;
    color: #00216f;
}
.cardNav:hover {
    background: #fff;
    transition: .4s all;
}
.cardNav:hover .title,
.cardNav:hover .subtitle {
    color: #00216f;
    transition: .4s all;
}
.btnRound {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 26px;
    padding: 6px 28px;
    border-radius: 100px;
    border: 1px solid #00216f;
    background: #fff;
    transition: all .2s ease;
}
.btnRound i {
    font-size: 22px;
    color: #00216f;
}
.btnRound:hover {
    box-shadow: 0px 6px 10px 0px rgba(35, 197, 94, 0.20);
    transition: all .2s ease;
}

.content-direksi {
    position: relative;
    text-align: center;
}

.content-direksi .title {
    font-size: 24px;
    text-transform: uppercase;
    color: #00216f;
    font-weight: 600;
    margin-bottom: 10px;
}

.content-direksi .subTitle {
    font-size: 14px;
    font-weight: 300;
    color: #00216f;
    margin-bottom: 50px;
}

.content-direksi .shapeTop {
    position: absolute;
    width: 100%;
    top: 2rem;
    left: 0;
}

.content-direksi .shapeTop.award {
    top: -8rem !important;
}

.content-direksi .shapeTop img {
    position: absolute;
    transform: translateX(-50%);
    top: 2rem;
    width: 340px;
}

.content-direksi .shapeTop .shape.left-0,
.content-direksi .shapeTop .shape.right-0,
.content-direksi .shapeTop .shape.left,
.content-direksi .shapeTop .shape.right {
    opacity: 0.4;
}
.content-direksi .shapeTop .shape.left {
    left: 20%;
}
.content-direksi .shapeTop .shape.right {
    right: 5%;
}
.content-direksi .shapeTop .shape.left-0 {
    left: 11%;
}
.content-direksi .shapeTop .shape.right-0 {
    right: -10%;
}

.content-direksi .shapeTop .shape.outline {
    opacity: 0.8;
}

.content-direksi .shapeCenter {
    position: absolute;
    width: 100%;
    bottom: 8rem;
    left: 0;
}

.content-direksi .shapeCenter img {
    position: absolute;
    transform: translateX(-50%);
    bottom: 6rem;
    width: 340px;
}

.content-direksi .shapeCenter .shape.left,
.content-direksi .shapeCenter .shape.right {
    opacity: 0.02;
}
.content-direksi .shapeCenter .shape.left {
    left: 30%;
}
.content-direksi .shapeCenter .shape.right {
    right: 12%;
}


.timeline-content {
    margin: 0 auto;
    width: 640px;
}


.timeline{
    /* padding: 0 20px; */
}

.timeline .date {
    color: #0093dd;
    font-size: 20px !important;
    margin-bottom: 8px;
}

.timeline .date::after{
    content: '';
    position: absolute;
    top: 7px;
    bottom: 0;
    width: 88%;
    height: 3px;
    margin-left: 8px;
    background: #313131;
    z-index: 1;
    /* background-color: rgba(0, 0, 0, 0.2); */
}

.timeline .activity, .timeline .date {
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    text-align: center;
}

.timeline .activity span {
    font-weight: 600
}

.timeline .activity .title {
    font-size: 14px;
    margin-bottom: 35px;
    margin-top: 15px;
    font-weight: 400;
    height: 63px;
}

.timeline .activity img {
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 70px;
    height: 200px;
    width: 100%;
}



.filosofi {
    padding: 20px 40px;
    border-radius: 15px;
    background: #fff;
    text-align: left;
    position: relative;
    margin-bottom: 10px;
    z-index: 1111;
}

.filosofi::before{
    content: '';
    width: 50px;
    height: 3px;
    background: #e3e3e3;
    position: absolute;
    left: -55px;
    top: 44%;
}

.filosofi::after{
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    left: -55px;
    background: #ffffff;
    border-radius: 20px;
    top: 38%;
    border: 3px solid #d5d5d5;
}

.filosofi .title {
    font-weight: 700;
    font-size: 14px;
    color: #000;
}

.filosofi .desc {
    font-size: 13px;
    font-weight: 400;
    color: #919191;
    text-align: left;
}

.container-filosofi {
    margin-top: 50px;
   padding: 30px 100px;
}

.footer {
    background: #000;
    color: #fff;
    padding: 20px;
    text-align: center;
    /* width: 100%; */
}


@media (max-width: 800px) {
    .tentang-page .navbar .navMenu {
        padding: 0.8rem 1.4rem;
    }
    .img-direksi {
        height: 300px !important;
        width: 200px !important;
        object-fit: cover !important;
        margin-top: 400px;
        margin-left: 21%;
    }

    .tentang-page .info {
        width: 100%;
        top: 65%;
        left: 0;
        right: 0;
        padding: 0px;
        height: 36%;
    }

    .recipe-category-inner {
        justify-content: left;
        align-items: center;
         height: 79px;
        top: -9px;
        background:linear-gradient(180deg, rgba(32, 17, 92, 0.7) 10%, rgba(32, 17, 92, 0.02) 78%);
    }
    
    .recipe-category-info{
        visibility:visible;
        width:300px;
    }

    .recipe-category {
        height: 401px;
        background-position-y: -120px;
        border-radius: 30px;
    }

    .filosofi::after{
        left: -30px;
    }

    .filosofi::before{
        width: 30px;
        left: -30px;
    }

    .container-filosofi{
        padding: 0 !important;
    }

    .img-logo-ntt{
        margin-top: 0 !important;
    }

    .content-logo{
        padding: 50px !important;
    }

    .content-logo-row{
        padding: 0 !important;
    }

    .wave-logo{
        top: -25px !important;
    }

    .tentang-page .visi {
        width: 80%;
        left: 20px;
        right: 0;
        top: 90px;
        padding: 16px;
    }

    .buttonNav {
        flex-direction: column;
        gap: 4.2rem;
        padding: 3rem;
        margin: 3rem 0;
    }
    .cardNav {
        padding: 3rem 1rem;
        height: auto;
    }

    .buttonNav .shapeBottom img {
        width: 200px;
    }
    .buttonNav .shapeBottom .shape.left {
        left: 20%;
    }
    .buttonNav .shapeBottom .shape.right {
        right: -8rem;
    }

    .content-direksi {
        overflow: hidden;
    }
    .content-direksi .shapeTop {
        top: -2rem;
    }
    .content-direksi .shapeTop img {
        width: 140px;
    }
    .content-direksi .shapeTop .shape.left {
        left: 16%;
    }
    .content-direksi .shapeTop .shape.right {
        right: -6rem;
    }
    .content-direksi .shapeTop .shape.outline {
        left: calc(50% + 1rem);
    }

    .content-direksi .shapeCenter.hidden {
        overflow: hidden;
    }

    .content-direksi .shapeCenter {
        bottom: 0;
    }
    .content-direksi .shapeCenter img {
        width: 160px;
    }
    .content-direksi .shapeCenter .shape.left {
        left: 22%;
    }
    .content-direksi .shapeCenter .shape.right {
        right: -5rem;
    }
}