@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');
@import url('https://fonts.googleapis.com/css2?family=Philospher: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');

:root {

    /**
     * colors
     */

    --st-patricks-blue: hsl(236, 57%, 28%);
    --amaranth-purple: hsl(335, 88%, 38%);
    --royal-blue-dark: hsl(231, 68%, 21%);
    --chrome-yellow: hsl(39, 100%, 52%);
    --space-cadet-1: hsl(230, 41%, 25%);
    --space-cadet-2: hsl(230, 59%, 16%);
    --winter-sky_50: hsla(335, 87%, 53%, 0.5);
    --purple-navy: hsl(236, 26%, 43%);
    --ksu-purple: hsl(275, 54%, 33%);
    --winter-sky: #ee3633;
    --razzmatazz: #ee3633;
    --platinum: hsl(0, 0%, 90%);
    --black_70: hsla(0, 0%, 0%, 0.7);
    --rajah: hsl(29, 99%, 67%);
    --white: hsl(0, 0%, 100%);

    --gradient-1: linear-gradient(90deg, var(--royal-blue-dark) 0, var(--ksu-purple) 51%, var(--royal-blue-dark));
    --gradient-2: linear-gradient(90deg, var(--razzmatazz), var(--rajah));

    /**
     * typography
     */

    --ff-source-sans-pro: 'Source Sans Pro', sans-serif;
    --ff-poppins: 'Poppins', sans-serif;

    --fs-1: 4.2rem;
    --fs-2: 3.8rem;
    --fs-3: 3.2rem;
    --fs-4: 2.5rem;
    --fs-5: 2.4rem;
    --fs-6: 1.125rem;
    /* 18px */
    --fs-7: 1rem;
    /* 16px */
    --fs-8: 0.875rem;
    /* 14px */


    --fw-500: 500;
    --fw-600: 600;
    --fw-700: 700;

    /**
     * border radius
     */

    --radius-4: 4px;
    --radius-12: 12px;

    /**
     * spacing
     */

    --section-padding: 60px;

    /**
     * transition
     */

    --transition-1: 0.15s ease;
    --transition-2: 0.35s ease;
    --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
    --cubic-out: cubic-bezier(0.33, 0.85, 0.56, 1.02);

    /**
     * shadow
     */

    --shadow: 0 5px 20px 1px hsla(220, 63%, 33%, 0.1);

}


html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

.section-title {
    color: var(--st-patricks-blue);
    font-size: var(--fs-6);
    margin-block-end: 60px;
    max-width: max-content;
    margin-inline: auto;
}

.underline {
    position: relative;
}

.underline::before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 6px;
    background-image: var(--gradient-2);
    border-radius: 10px;
}


/*-- navbar untuk selain beranda --*/
.navbar-page {
    padding: 15px 0 15px 0;
    position: fixed;
    width: 100%;
    transition: all 0.7s ease;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    z-index: 10;
    background-color: #fff;
}

.navbar-page.scrolling {
    background-color: #000000;
    color: #861f1e;
    box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.08);
}

.navbar-page .box-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-page .box-nav .menu {
    display: flex;
    column-gap: 30px;
}

.navbar-page .menu {
    margin-top: 20px;
}

.navbar-page .box-nav .menu li {
    list-style-type: none;
    padding: 10px 0 10px 0px;
}

.navbar-page .box-nav .menu li a {
    text-decoration: none;
    font-weight: 600;
    color: #861f1e;
    transition: 0.5s;
}

.navbar-page .box-nav .menu li a:hover {
    color: rgb(255, 67, 67);
}


@media screen and (max-width : 990px) {
    .menu-bar {
        display: block;
    }

    .navbar-page .box-nav .menu {
        background: #fff;
        position: absolute;
        flex-direction: column;
        width: 100%;
        height: 300px;
        row-gap: 20px;
        justify-content: center;
        align-items: center;
        top: 100px;
        right: 50%;
        transform: translateX(50%);
        -webkit-transform: translateX(50%);
        -moz-transform: translateX(50%);
        -ms-transform: translateX(50%);
        -o-transform: translateX(50%);
        opacity: 0;
        transition: all 0.3s ease-out;
    }
}

.navbar-page .box-nav .menu.menu-active {
    top: 100px;
    opacity: 1;
    border-top: 1px solid #861f1e;
    background: #fff;
}

/* slide bar star */
/* Slider */
.slider {
    height: 88vh;
    margin-top: -5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Slider Items */
.slider .list .item {
    position: absolute;
    inset: 0 0 0 0;
    opacity: 0;

    transform: scale(1.05);
}

.slider .list .item.active {
    opacity: 1;
    z-index: 10;
    transform: scale(1);
}

/* Images */
.slider .list .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gradient Overlay */
.slider .list .item::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 1;
}

/* Content */
.slider .list .item .content {
    position: absolute;
    left: 10%;
    top: 35%;
    z-index: 2;
    max-width: 600px;
    color: #fff;
    animation: fadeInUp 1s ease-out;
    font-family: 'Poppins', sans-serif;
    /* Font modern */
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    /* Efek bayangan elegan */
}

.slider .list .item .content h2 {
    font-size: 50px;
    font-weight: 700;
    background: linear-gradient(to right, #ffd700, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: -30px;
    font-family: 'Philosopher', Tahoma, Geneva, Verdana, sans-serif;
}

.slider .list .item .content h2 span {
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    color: #ffd700;
}

.slider .list .item .content p {
    font-size: 18px;
    line-height: 1.8;
    font-style: italic;
    opacity: 0.9;
}

@keyframes showContent {
    to {
        transform: translateY(0);
        filter: blur(0);
        opacity: 1;
    }
}

.slider .list .item.active h2,
.slider .list .item.active p:nth-child(2) {
    transform: translateY(30px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s .7s ease-in-out 1 forwards;
}

.slider .list .item.active h2 {
    animation-delay: 1s;
}

.slider .list .item.active p:nth-child(2) {
    animation-duration: 1.3s;
}

/* Navigation Arrows */
.arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    padding: 0 20px;
}

.arrows button {
    background: rgba(255, 255, 255, 0.6);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.arrows button:hover {
    background: #ffd700;
    color: #fff;
}

/* Thumbnails */
.thumbnail {
    position: absolute;
    bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 0 20px;
    z-index: 10;
}

.thumbnail .item {
    width: 80px;
    height: 80px;
    border: 3px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.thumbnail .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail .item.active {
    border-color: #ffd700;
    transform: scale(1.1);
}



/* Media Queries */
@media (max-width: 768px) {
    .slider .list .item .content {
        left: 5%;
        top: 15%;
        max-width: 90%;
    }

    .slider .list .item .content h2 {
        font-size: 36px;
    }

    .slider .list .item .content p {
        font-size: 16px;
    }

    .arrows button {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .thumbnail .item {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .slider .list .item .content {
        top: 20%;
    }

    .slider .list .item .content h2 {
        font-size: 28px;
    }

    .slider .list .item .content p {
        font-size: 14px;
    }

    .arrows button {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .thumbnail .item {
        width: 50px;
        height: 50px;
    }
}

/* slide bar end */

/* --- section pmb ---*/
#info-pmb {
    width: 100%;
    min-height: 65vh;
    display: flex;
    align-items: center;
}

.content-info-pmb {
    display: flex;
    justify-content: space-between;
}

.text {
    color: #861f1e;
    transition: 0.8s;
}

.text h4 {

    margin-bottom: 30px;
}

.text h1 {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 30px;
}

.text p a {
    text-decoration: none;
    color: #861f1e;
}

.btn {
    border: 1px solid #861f1e;
    background: none;
    padding: 10px 20px;
    font-size: 20px;
    font-family: "montserrat";
    cursor: pointer;
    margin: 40px 0px;
    transition: 0.8s;
    position: relative;
    overflow: hidden;
}

.btn-1 {
    color: #fff;
}

.btn-1:hover {
    color: #861f1e;
}

.btn::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 0%;
    background: #861f1e;
    z-index: -10;
    transition: 0.8s;
}

.btn-1::before {
    top: 0;
    border-radius: 0 0 50% 50%;
    height: 180%;
}

.btn-1:hover::before {
    height: 0%;
}


.logo-kampus img {
    width: 300px;
    height: 300px;
}

/*----- section sambutan ------*/
#sambutan {
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background-color: #861f1e;
    overflow: hidden;
}

.content-sambutan {
    display: flex;
    justify-content: space-between;
}

.pict-rektor img {
    height: 350px;
    border: 7px solid #fff;

}

.content-sambutan .box-1 {
    color: #fff;
    margin-left: 100px;
}

.box-1 h3 {
    font-weight: 400;
}

.box-1 h1 {
    text-align: left;
    font-size: 35px;
}

.box-1 p {
    margin-top: -20px;
    font-weight: 200;
    overflow: hidden;
    height: 80px;
}

.box-1.showText p {
    margin-top: 20px;
    height: auto;
}

.btn1 {
    color: #fff;
    z-index: 100;
}

.btn1:hover {
    color: #861f1e;

}

.btn2::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 0%;
    background: #fff;
    z-index: -10;
    transition: 0.8s;
}

.btn1::before {
    top: 0;
    border-radius: 0 0 50% 50%;
    height: 0%;
}

.btn1:hover::before {
    height: 180%;
    color: #861f1e;
}

.btn2 {
    border: 1px solid #fff;
    background: none;
    padding: 8px 10px;
    font-size: 15px;
    font-family: "montserrat";
    cursor: pointer;
    margin: 0px 0px;
    transition: 0.8s;
    position: relative;
    overflow: hidden;
    z-index: 1;

}

/*----section fakultas-----*/

.box-facul:hover .facul-icon {
    transform: scale(.9);
}

/* .products-preview {
    position: fixed;
    top: 0;
    left: 0;
    min-height: 100vh;
    width: 100%;
    background: rgba(0, 0, 0, .8);
    display: none;
    align-items: center;
    z-index: 100;
    justify-content: center;
}

.products-preview .preview {
    display: none;
    padding: 2rem;
    text-align: center;
    background: #fff;
    border-radius: 8px;
    margin: 5rem;
    width: 100%;
}

.products-preview .preview.active {
    display: inline-block;
}

.products-preview .preview .row {
    display: flex;
}

.products-preview .preview .row .col-1 {
    padding: 8px 10px;
}


.products-preview .preview .fa-times {
    position: absolute;
    top: 6rem;
    right: 6.5rem;
    cursor: pointer;
    color: #444;
    font-size: 2rem;
}

.products-preview .preview .fa-times:hover {
    transform: rotate(70deg);
    color: #861f1e;
}

.products-preview .preview h3 {
    color: #861f1e;
    padding: 5px 0;
    font-size: 20px;
}

.products-preview .preview h4 {
    color: #000;
    padding: 5px 0;
    font-size: 18px;
    text-align: left;
}

.products-preview .preview p {
    line-height: 1.2;
    padding: 8px 0;
    font-size: 12px;
    color: #777;
    text-align: left;
}

.products-preview .preview button {
    margin: 10px 0 10px 0;
} */


/* pop up star */
.products-preview {
    position: fixed;
    top: 0;
    left: 0;
    min-height: 100vh;
    width: 100%;
    background: rgba(0, 0, 0, .8);
    display: none;
    align-items: center;
    z-index: 100;
    justify-content: center;
}

.products-preview .preview {
    display: none;
    padding: 2rem;
    max-height: 80vh;
    /* Batasi tinggi maksimum pop-up */
    overflow-y: auto;
    /* Aktifkan scroll saat kontennya lebih panjang */
    text-align: center;
    background: #fff;
    border-radius: 8px;
    margin: 5rem;
    width: 100%;
    margin-top: 80px;
}

.products-preview .preview.active {
    display: inline-block;
}

.products-preview .preview .row {
    display: flex;
    /* Mengaktifkan flexbox untuk pembagian kolom */
    flex-wrap: wrap;
    /* Memastikan konten tetap responsif */
    justify-content: space-between;
    /* Membagi kolom secara proporsional */
    gap: 20px;
    /* Menambahkan jarak antara kolom */

}

.products-preview .preview .row .col-1 {
    flex: 1;
    /* Membuat kolom fleksibel */
    min-width: 45%;
    /* Menentukan ukuran minimum kolom */
    max-width: 48%;
    /* Menentukan ukuran maksimum kolom */
}


.products-preview .preview .fa-times {
    position: absolute;
    top: 6rem;
    right: 6.5rem;
    cursor: pointer;
    color: #444;
    font-size: 2rem;
}

.products-preview .preview .fa-times:hover {
    transform: rotate(70deg);
    color: #861f1e;
}

.products-preview .preview h3 {
    color: #861f1e;
    padding: 5px 0;
    font-size: 20px;
}

.products-preview .preview h4 {
    color: #000;
    padding: 5px 0;
    font-size: 18px;
    text-align: left;
}

.products-preview .preview p {
    line-height: 1.2;
    padding: 8px 0;
    font-size: 12px;
    color: #777;
    text-align: left;
}

/* magister keuangan  */
.products-preview .preview .row1 {
    display: flex;
}

.products-preview .preview .row1 .col-1 {
    padding: 8px 10px;
}

/* magister end */
/* pop up end */

/* Tampilan dasar tombol */
.products-preview .preview a button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    font-size: 10px;
    font-weight: bold;
    border: 1px solid #444;
    background: transparent;
    color: #444;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border-radius: 5px;
    /* Animasi transisi untuk efek smooth */
}

/* Efek hover */
.products-preview .preview a button:hover {
    background: #5f1b1b;
    /* Warna latar belakang berubah */
    color: #fff;
    /* Warna teks berubah */
    border-color: #222;
    /* Warna border sedikit lebih gelap */
    transform: scale(1.05);
    /* Membesarkan tombol sedikit saat hover */
}

/* Efek klik (active) */
.products-preview .preview a button:active {
    background: #222;
    /* Warna menjadi lebih gelap saat diklik */
    transform: scale(0.98);
    /* Sedikit mengecil saat ditekan */
}





/*--- section data count ---*/
/* #data-count {
    width: 100%;
    max-height: 40vh;
    margin-top: 10rem;
}

.box-counter {
    padding: 3em 2em;
    background: #861f1e;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
}

.counter {
    padding: 10px 70px;
}

.counter h3 {
    font-size: 40px;
    margin-bottom: 30px;
}

.counter h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.counter h4 {
    font-weight: 400;
} */

/* Team  */


.wrapper .title1 {}

.title1 h4 {
    display: flex;
    text-align: center;
    padding: 20px;
    color: #585757;
    font-size: 50px;
    font-weight: 500;
    letter-spacing: 1.2px;
    word-spacing: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    text-transform: uppercase;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    word-wrap: break-word;
}

.wrapper .card_Container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

.card_Container .card {
    position: relative;
    width: 300px;
    height: 400px;
    margin: 20px;
    overflow: hidden;
    box-shadow: 0 30px 30px -20px rgba(0, 0, 0, 1),
        inset 0 0 0 1000px rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card1 {
    position: relative;
    width: 300px;
    height: 400px;
    margin: 20px;
    overflow: hidden;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card .imbBx,
.imbBx img {
    width: 100%;
    height: 100%;
}

.card .content {
    position: absolute;
    bottom: -160px;
    width: 100%;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    backdrop-filter: blur(15px);
    box-shadow: 0 -10px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: bottom 0.5s;
    transition-delay: 0.65s;
}

.card:hover .content {
    bottom: 0;
    transition-delay: 0s;
}

.content .contentBx h5 {
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2px;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    margin: 20px 0 15px;
    line-height: 1.1em;
    transition: 0.5s;
    transition-delay: 0.6s;
    opacity: 0;
    transform: translateY(-20px);
}

.card:hover .content .contentBx h5 {
    opacity: 1;
    transform: translateY(0);
}

.content .contentBx h5 span {
    font-size: 15px;
    font-weight: 300;
    text-transform: initial;
}

.content .sci {
    position: relative;
    bottom: 10px;
    display: flex;
}

.content .sci li {
    list-style: none;
    margin: 0 10px;
    transform: translateY(40px);
    transition: 0.5s;
    opacity: 0;
    transition-delay: calc(0.2s * var(--i));
}

.card:hover .content .sci li {
    transform: translateY(0);
    opacity: 1;
}

.content .sci li a {
    color: #fff;
    font-size: 24px;
}


/* blog */

.about {
    position: relative;
    width: 100%;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.about .contentBx {
    max-width: 50%;
    width: 50%;
    text-align: left;
    padding-right: 40px;
}

.titleText {
    font-weight: 600;
    color: #111;
    font-size: 2rem;
    margin-bottom: 10px;
}

.title-text {
    color: #111;
    font-size: 1em;
}

.about .imgBx {
    position: relative;
    min-width: 50%;
    width: 50%;
    min-height: 500px;
}


.post-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 1.5rem;
    margin-top: 2rem !important;
}

.filter-item {
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
}

.active-filter {
    background: #861f1e;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
}

.post {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, auto));
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 150px;
}

.post-box {
    background: var(--bg-color);
    box-shadow: 0 4px 14px hsl(35deg 25% 15% / 10%);
    padding: 10px;
    border-radius: 0.5rem;
    padding-bottom: -200px;
}

.post-img {
    width: 98%;
    height: 150px;
    object-position: center;
    border-radius: 0.5rem;
}

.category {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--second-color);
}

.post-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: maroon;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-date {
    display: flex;
    font-size: 0.875rem;
    text-transform: uppercase;
    margin-top: 4px;
    font-weight: 400;
}

.post-description {
    font-size: 0.9rem;
    line-height: 1.5rem;
    margin: 5px 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 2px solid var(--second-color);
}

.profile-name {
    font-size: .8rem;
    font-weight: 500;
}


/*---- conteter ----*/
footer {
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 50px;
    background-color: #231f40;
}

.container-footer {
    width: 90%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 12px;
}

.wrapper {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}

.wrapper .footer-col {
    width: calc(20% - 20px);
    margin: 0 15px;
}

.wrapper .footer-col:nth-child(1) {
    width: calc(33% - 40px);
    margin-right: 10px;
}

.wrapper .footer-col .logo-footer {
    margin-bottom: 20px;
    vertical-align: middle;
}

.wrapper .footer-col p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #fff;
    font-style: italic;
}

.social {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.social .soc-icon a {
    width: 38px;
    height: 38px;
    margin-right: 20px;
    background-color: rgba(238, 238, 238, 0.5);
    border-radius: 50%;
    font-size: 18px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-out;
    color: #eee;
}

.social .soc-icon:nth-child(1) a:hover {
    background: linear-gradient(to bottom right, #6c4cc7 0%, #c52e8c 100%);
}

.social .soc-icon:nth-child(2) a:hover {
    background-color: #ff0000;
}

.social .soc-icon:nth-child(3) a:hover {
    background-color: #0d8af1;
}

.social .soc-icon:nth-child(4) a:hover {
    background-color: #0073b2;
}

.wrapper .footer-col h6 {
    color: #eee;
    margin: 30px 0 20px;
    font-size: 20px;
    font-weight: 600;
}

.wrapper .footer-col .link .li a {
    text-decoration: none;
    color: #dedede;
    font-size: 16px;
    text-transform: capitalize;
    line-height: 50px;
    font-weight: 300;
    transition: all 0.3s ease-out;
}

.wrapper .footer-col .link .li a:hover {
    color: #ee3633;
}

.line-copyright {
    padding: 20px 0;
    border-top: 1px solid rgba(246, 243, 243, 0.8);
}

.line-copyright p {
    color: #eee;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
}

@media (max-width: 1024px) {
    .wrapper {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .wrapper .footer-col {
        width: calc(33% - 20px);
        margin: 10px;
        text-align: center;
    }

    .wrapper .footer-col:nth-child(1) {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .wrapper .footer-col {
        width: 100%;
        margin: 15px 0;
    }

    .wrapper .footer-col h6 {
        font-size: 18px;
    }

    .wrapper .footer-col p {
        font-size: 14px;
    }

    .social {
        justify-content: center;
    }

    .social .soc-icon a {
        width: 35px;
        height: 35px;
        font-size: 16px;
        margin-right: 15px;
    }
}

@media (max-width: 480px) {
    .wrapper .footer-col {
        width: 100%;
        text-align: center;
    }

    .wrapper .footer-col h6 {
        font-size: 16px;
        margin: 20px 0 15px;
    }

    .wrapper .footer-col p {
        font-size: 13px;
    }

    .social .soc-icon a {
        width: 30px;
        height: 30px;
        font-size: 14px;
        margin-right: 10px;
    }

    .line-copyright p {
        font-size: 13px;
    }
}


/*----- css Page Kontak kami ----*/
#banner-contact {
    background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url("../img/banner.jpg");
    width: 100%;
    height: 35vh;
    background-size: cover;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 14px;
    align-items: center;
}

#banner-contact h2 {
    font-size: 50px;
    margin-top: 50px;
}

#banner-contact h2,
#banner-contact p,
#banner-contact a {
    text-decoration: none;
    color: #fff;
}

#banner-contact h2 span {
    color: #b21b18;
}

#banner-contact p,
#banner-contact a {
    margin-top: 20px;
    font-size: 20px;
    font-weight: 300;
}

#banner-contact a:hover {
    color: #ee3633;
}

#form-contact {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-contact {
    position: relative;
    width: 100%;
    max-width: 900px;
    padding: 40px;
    display: flex;
    gap: 80px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
    background-color: white;
}

.circle {
    border-radius: 50%;
    background: linear-gradient(135deg, transparent 10%, #861f1e);
    position: absolute;
}

.circle.one {
    width: 130px;
    height: 130px;
    top: -50px;
    right: 88%;
}

.circle.two {
    width: 80px;
    height: 80px;
    top: 85%;
    right: 20px;
}

.big-circle {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #ee3633, #861f1e);
    bottom: 50%;
    right: -11%;
    transform: translate(-40%, 38%);
    z-index: -1;
    opacity: 0.7;
}

.big-circle-2 {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #861f1e, #ee3633);
    bottom: -30%;
    right: 60%;
    transform: translate(-40%, 38%);
    z-index: -1;
    opacity: 0.7;
}

.big-circle:after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    background-color: #fafafa;
    border-radius: 50%;
    top: calc(50% - 180px);
    left: calc(50% - 180px);
}

.big-circle-2:after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    background-color: #fafafa;
    border-radius: 50%;
    top: calc(50% - 180px);
    left: calc(50% - 180px);
}

.left {
    width: 55%;
}

.heading {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    color: #861f1e;
}

.text-contact {
    font-size: 15px;
    color: #000;
    font-weight: 400;
    margin-top: 10px;
}

form {
    margin-top: 20px;

}

.inputBox {
    position: relative;
    margin-bottom: 20px;
}

.inputBox input,
.inputBox textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    color: #000;
    border: none;
    outline: none;
    background-color: whitesmoke;
}

.inputBox input::placeholder,
.inputBox textarea::placeholder {
    color: #000000;
    opacity: 0.3;
    font-size: 14px;
}

.inputBox textarea {
    resize: none;
    height: 150px;
}

.button {
    width: 100%;
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    color: #ffffff;
    background-color: #861f1e;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.5s ease-in-out;
}

.button:hover {
    border: 1px solid #861f1e;
    background-color: #eee;
    color: #861f1e;
}

.right {
    width: 45%;
}

.map {
    display: flex;
    width: 100%;
    margin: 0 auto;
}

.map iframe {
    width: 100%;
    margin: auto;
    margin-top: 30px
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box .icon-loc {
    width: 70px;
    height: 40px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #861f1e;
    border: 1px solid #861f1e;
}

.info-box .icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #861f1e;
    border: 1px solid #861f1e;
}

.info-box .text-contact-info {
    margin: 0;
}

.info-box .text-contact-info a {
    text-decoration: none;
    color: #000;
}

.social-icon {
    position: absolute;
    right: -50px;
    bottom: 30px;
    width: 50px;
    display: flex;
    flex-direction: column;
    font-size: 25px;
    gap: 10px;
    padding: 10px;
    align-items: center;
    border-bottom-right-radius: 30px;
    color: #fff;
    background-color: #861f1e;
}

.social-icon a {
    color: #ffffff;
    padding: 5px;
}

/* PAGE TUJUAN-KAMI */
/* #vimi-motto {
    width: 100%;
    min-height: 80vh;
    align-items: center;
    margin: 90px 0 50px 0;
}

.content-tujuan {
    display: flex;
    padding: 40px;
    border-radius: 0 60px 0 60px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.box-vimi {
    padding: 30px;
}

.box-vimi h4 {
    font-size: 25px;
    margin: 10px 0;
    color: var(--space-cadet-2);
} */

/* #speech {
    width: 100%;
    min-height: 60vh;
    margin: 100px 0 30px 0;
}

.content-speech {
    display: flex;
    padding: 20px 50px;
    border: 1px solid;
}

.img-rektor img {
    padding: 0 80px 0 0;
    height: 350px;
}

.simbol img {
    height: 300px;
} */

#end-box {
    width: 100%;
    justify-content: center;
    display: flex;
    margin: 0 auto;
    text-align: center;
    padding: 20px 300px;
}

#ormawa {
    min-height: 120vh;
    margin-top: 20px;
}

.box-life {
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    width: 1200px;
    height: 700px;
    display: flex;
    border-radius: 15px;
    z-index: 10;
    min-height: 100vh;
    box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.8);
}

.box-life .box-life-left {
    width: 250px;
    background: #dacccc;
    padding: 0 25px;
    display: flex;
    align-items: center;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.box-life .box-life-left ul li {
    background: #313142;
    margin-bottom: 25px;
    border-radius: 3px;
    padding: 12px 25px;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    width: 200px;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.box-life .box-life-left ul li p {
    color: #abaacd;
    position: relative;
}

.box-life .box-life-left ul li:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #5437b7;
    background: linear-gradient(126deg,
            rgba(2, 0, 36, 1) 0%,
            rgb(241, 22, 22) 0%,
            rgb(145, 2, 2) 100%);
    border-radius: 5px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    transition: all 0.4s ease;
}

.box-life .box-life-left ul li.active {
    width: 250px;
}

.box-life .box-life-left ul li.active p {
    color: #fff;
}

.box-life .box-life-left ul li.active:before {
    width: 100%;
    transition: all 0.2s ease;
}

.box-life .box-life-left ul li:last-child {
    margin-bottom: 0;
}

.box-life .box-life-right {
    width: 900px;
    padding: 10px 10px;
}


@media (max-width: 1024px) {
    .box-life {
        width: 90%;
        height: auto;
        flex-direction: column;
        top: 50%;
        transform: translate(-50%, 0);
        position: relative;
        padding: 20px;
    }

    .box-life-left {
        width: 100% !important;
        padding: 15px;
        text-align: center;
        border-radius: 15px 15px 0 0;
    }

    .box-life-left ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0;
    }

    .box-life-left ul li {
        width: auto;
        padding: 10px;
        margin: 5px;
    }

    .box-life-right {
        width: 100% !important;
        padding: 15px;
    }

    .detail-text {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 20px !important;
    }

    .text {
        margin: 0 !important;
    }

    .logo-detail img {
        width: 200px !important;
        height: auto;
        margin: 10px auto;
    }

    .box-detail {
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo-ormawa {
        margin: 10px;
        text-align: center;
    }

    .logo-ormawa img {
        max-width: 150px;
        height: auto;
    }
}

@media (max-width: 768px) {

    /* Menyesuaikan untuk layar kecil (mobile) */
    .logo-container {
        display: flex;
        flex-direction: column;
        /* Menyusun gambar secara vertikal */
        align-items: center;
        /* Memastikan gambar sejajar di tengah */
        text-align: center;
    }

    .logo-container img {
        width: 50%;
        /* Sesuaikan ukuran agar proporsional */
        max-width: 200px;
        /* Maksimum lebar gambar */
        height: auto;
        /* Menjaga aspek rasio */
        object-fit: contain;
        /* Hindari distorsi */
    }
}


@media (max-width: 600px) {
    .box-life {
        width: 95%;
        padding: 10px;
    }

    .box-life-left ul {
        flex-direction: column;
        align-items: center;
    }

    .box-life-left ul li {
        width: 100%;
    }

    .text h1 {
        font-size: 18px;
    }

    .text p {
        font-size: 14px;
    }

    .logo-detail img {
        width: 150px !important;
    }

    .logo-ormawa img {
        max-width: 120px;
    }
}

/*----- css Page Kontak kami ----*/
#banner-contact {
    background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url("../img/banner.jpg");
    width: 100%;
    height: 35vh;
    background-size: cover;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 14px;
    align-items: center;
}

#banner-contact h2 {
    font-size: 50px;
    margin-top: 50px;
}

#banner-contact h2,
#banner-contact p,
#banner-contact a {
    text-decoration: none;
    color: #fff;
}

#banner-contact h2 span {
    color: #b21b18;
}

#banner-contact p,
#banner-contact a {
    margin-top: 20px;
    font-size: 20px;
    font-weight: 300;
}

#banner-contact a:hover {
    color: #ee3633;
}

#form-contact {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-contact {
    position: relative;
    width: 100%;
    max-width: 900px;
    padding: 40px;
    display: flex;
    gap: 80px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
    background-color: white;
}

.circle {
    border-radius: 50%;
    background: linear-gradient(135deg, transparent 10%, #861f1e);
    position: absolute;
}

.circle.one {
    width: 130px;
    height: 130px;
    top: -50px;
    right: 88%;
}

.circle.two {
    width: 80px;
    height: 80px;
    top: 85%;
    right: 20px;
}

.big-circle {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #ee3633, #861f1e);
    bottom: 50%;
    right: -11%;
    transform: translate(-40%, 38%);
    z-index: -1;
    opacity: 0.7;
}

.big-circle-2 {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #861f1e, #ee3633);
    bottom: -30%;
    right: 60%;
    transform: translate(-40%, 38%);
    z-index: -1;
    opacity: 0.7;
}

.big-circle:after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    background-color: #fafafa;
    border-radius: 50%;
    top: calc(50% - 180px);
    left: calc(50% - 180px);
}

.big-circle-2:after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    background-color: #fafafa;
    border-radius: 50%;
    top: calc(50% - 180px);
    left: calc(50% - 180px);
}

.left {
    width: 55%;
}

.heading {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    color: #861f1e;
}

.text-contact {
    font-size: 15px;
    color: #000;
    font-weight: 400;
    margin-top: 10px;
}

form {
    margin-top: 20px;

}

.inputBox {
    position: relative;
    margin-bottom: 20px;
}

.inputBox input,
.inputBox textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    color: #000;
    border: none;
    outline: none;
    background-color: whitesmoke;
}

.inputBox input::placeholder,
.inputBox textarea::placeholder {
    color: #000000;
    opacity: 0.3;
    font-size: 14px;
}

.inputBox textarea {
    resize: none;
    height: 150px;
}

.button {
    width: 100%;
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    color: #ffffff;
    background-color: #861f1e;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.5s ease-in-out;
}

.button:hover {
    border: 1px solid #861f1e;
    background-color: #eee;
    color: #861f1e;
}

.right {
    width: 45%;
}

.map {
    display: flex;
    width: 100%;
    margin: 0 auto;
}

.map iframe {
    width: 100%;
    margin: auto;
    margin-top: 30px
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box .icon-loc {
    width: 70px;
    height: 40px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #861f1e;
    border: 1px solid #861f1e;
}

.info-box .icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #861f1e;
    border: 1px solid #861f1e;
}

.info-box .text-contact-info {
    margin: 0;
}

.info-box .text-contact-info a {
    text-decoration: none;
    color: #000;
}

.social-icon {
    position: absolute;
    right: -50px;
    bottom: 30px;
    width: 50px;
    display: flex;
    flex-direction: column;
    font-size: 25px;
    gap: 10px;
    padding: 10px;
    align-items: center;
    border-bottom-right-radius: 30px;
    color: #fff;
    background-color: #861f1e;
}

.social-icon a {
    color: #ffffff;
    padding: 5px;
}

@media (max-width: 1024px) {
    .container-contact {
        flex-direction: column;
        gap: 40px;
        padding: 30px;
    }

    .left,
    .right {
        width: 100%;
    }

    .big-circle,
    .big-circle-2 {
        width: 300px;
        height: 300px;
    }

    .big-circle {
        right: -20%;
        transform: translate(-50%, 50%);
    }

    .big-circle-2 {
        right: 50%;
        transform: translate(50%, 50%);
    }
}

@media (max-width: 768px) {
    .contact-info {
        gap: 10px;
        /* Kurangi jarak antar elemen */
        text-align: left;
    }

    .info-box {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 0;
        /* Tambahkan sedikit padding */
    }

    .info-box .icon-loc,
    .info-box .icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #861f1e;
        border: 1px solid #861f1e;
        flex-shrink: 0;
        /* Mencegah ikon mengecil */
    }

    .info-box .text-contact-info {
        flex-grow: 1;
        /* Memastikan teks mengisi ruang dengan baik */
        font-size: 14px;
        /* Ukuran teks lebih kecil */
    }

    .social-icon {
        right: 10px;
        /* Sesuaikan posisi ikon */
        bottom: 20px;
        width: 50px;
        gap: 5px;
        padding: 8px;
        font-size: 20px;
    }

    .social-icon a {
        padding: 8px;
    }
}

@media (max-width: 480px) {

    .info-box .icon-loc,
    .info-box .icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .info-box .text-contact-info {
        font-size: 13px;
    }

    .social-icon {
        right: 5px;
        bottom: 10px;
        width: 40px;
        font-size: 18px;
    }

    .social-icon a {
        padding: 5px;
    }
}



/* contact end */
/* Tambahan Media Queries untuk Responsiveness */
@media (max-width: 1200px) {
    .container {
        width: 95%;
    }

    .navbar .menu {
        column-gap: 20px;
    }
}

@media (max-width: 992px) {
    .container {
        width: 100%;
        padding: 0 20px;
    }

    .navbar .menu {
        flex-direction: column;
        background-color: #fff;
        position: absolute;
        width: 100%;
        top: 60px;
        left: 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .menu.menu-active {
        display: flex;
    }
}

@media (max-width: 768px) {
    .logo img {
        width: 200px;
        height: auto;
    }

    .slider .list .item .content {
        left: 5%;
        top: 20%;
        max-width: 90%;
    }

    .arrows button {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .thumbnail .item {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .slider .list .item .content h2 {
        font-size: 24px;
    }

    .slider .list .item .content p {
        font-size: 14px;
    }

    .arrows button {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .thumbnail .item {
        width: 50px;
        height: 50px;
    }

    .footer-col {
        width: 100%;
        text-align: center;
    }
}