/* TABLE OF CONTENTS */
/* ------------------
1. General
2. Navbar
3. Banner
4. Information
5  Brosur
6. Price
7. Customer Service
8. Prodi
9. Faq
10. Footer
-------------------- */

/* 1 General */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap");
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
    /* Background Color */
    --bg-black: #090b3c;
    --bg-blue: #173462;
    --bg-yellow: #f4af1b;
    --bg-white: #fff;
    --bg-light-white: #fcfcfc;
    --bg-light-2: #f2f7fa;
    --bg-dark-green: #0e9d80;
    --bg-features-1: #fff6d6;
    --bg-features-2: #ebdcf9;
    --bg-features-3: #ddf5fc;
    --bg-features-4: #dcf6e8;
    --bg-features-5: #f8e4e1;
    --bg-features-6: #fbffd4;

    /* Text Color */
    --text-black: #000;
    --text-white: #fff;
    --text-dark-gray: #4c535d;
    --text-light-2: #798089;
    --text-light-3: #5e5e72;
    --text-light-4: #a0a0a0;
    --text-dark-green: #12c4a0;
    --text-orange: #ff5d2a;
    --text-yellow: #f4af1b;
    --text-blue: #173462;

    /* Fonts */
    --primary-font: Quicksand;
    --secondary-font: "Poppins", sans-serif;
    --normal-font-weight: 400;
    --bold-font-weight: 700;
}
body {
    font-family: var(--primary-font);
    font-weight: var(--normal-font-weight);
    background-color: var(--bg-white);
}

/* Custom CSS */
.learn-more-btn {
    background-color: var(--bg-yellow);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white) !important;
    padding: 10px 20px !important;
    border-radius: 10px;
    border: 2px solid var(--bg-yellow);
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
    display: inline-block;
    text-decoration: none;
    transition: 0.5s;
}
.learn-more-btn:hover {
    background-color: var(--bg-white);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-yellow) !important;
    padding: 10px 20px !important;
    border-radius: 10px;
    border: 2px solid var(--bg-yellow);
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
    display: inline-block;
    text-decoration: none;
    transition: 0.5s;
}
.btn-extra-header {
    color: var(--text-blue) !important;
    background-color: transparent;
    border: 2px solid var(--text-blue);
}
.btn-extra-header:hover {
    color: var(--text-white) !important;
    background-color: var(--bg-blue);
    border: 2px solid var(--text-blue);
}
.btn-download {
    background-color: var(--bg-yellow);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white) !important;
    padding: 10px 20px !important;
    border-radius: 10px;
    border: 2px solid var(--bg-yellow);
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
    display: inline-block;
    text-decoration: none;
    transition: 0.5s;
}
.btn-download:hover {
    background-color: var(--bg-light-2);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-yellow) !important;
    padding: 10px 20px !important;
    border-radius: 10px;
    border: 2px solid var(--bg-yellow);
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
    display: inline-block;
    text-decoration: none;
    transition: 0.3s;
}
.btn-download i {
    animation: download 5s ease-in-out infinite;
}
@keyframes download {
    0% {
        transform: translatey(-3px);
    }
    50% {
        transform: translatey(5px);
    }
    100% {
        transform: translatey(-3px);
    }
}

/* 2 Navbar */
.header_wrapper .navbar {
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.header_wrapper .navbar-brand img {
    max-width: 210px;
    height: auto;
}
.header_wrapper .menu-navbar-nav {
    width: 70%;
    display: flex;
    justify-content: center;
}
.header_wrapper .nav-item {
    margin: 0 5px;
}
.header_wrapper .nav-item .nav-link {
    font-weight: var(--bold-font-weight);
    font-size: 18px;
    color: var(--text-dark-gray);
    line-height: 1;
}
.header_wrapper .nav-item .nav-link.active {
    color: var(--text-yellow);
}
.header-scrolled {
    position: fixed;
    margin-top: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 85px;
    background: var(--bg-white);
    -webkit-box-shadow: 0 4px 6px 0 rgba(12, 0, 46, 0.05);
    box-shadow: 0 4px 6px 0 rgba(12, 0, 46, 0.05);
}

.glass {
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.88) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(12.1px) !important;
    -webkit-backdrop-filter: blur(12.1px) !important;
    border: 1px solid rgba(255, 255, 255, 0.58) !important;
}

.header-scrolled .navbar-brand img {
    width: 190px;
    height: auto;
    animation: animated 0.1s ease-in-out;
}
@keyframes animated {
    0% {
        width: 210px;
    }
    50% {
        width: 200px;
    }
    100% {
        width: 190px;
    }
}
.header-scrolled .nav-item .nav-link {
    font-size: 17px;
}

/* 3 Banner */
.banner_wrapper {
    display: flex;
    width: 100%;
    padding: 100px 0 125px;
    background: url(../img/bg.png) repeat;
    /* background-size: cover; */
    justify-content: center;
    align-items: center;
}
.banner_wrapper .banner-subtitle {
    margin-top: 5px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 15px;
    color: var(--text-light-3);
}
.banner_wrapper .banner-title {
    font-family: var(--secondary-font);
    font-weight: 700;
    font-size: 45px;
    text-transform: capitalize;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-blue);
}

.banner_wrapper .banner-title-text {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 450px;
    color: var(--text-light-2);
}
.banner_wrapper .learn-more-btn-section {
    display: flex;
    justify-content: left;
    align-items: center;
    margin-top: 20px;
}
.banner_wrapper .header-img-section img {
    margin-top: 5px;
    width: 100%;
}

/* 4 Information */
.information_wrapper {
    padding: 0 0 0;
}
.information_wrapper .projects {
    padding-bottom: 100px;
}
.information_wrapper .projects h2 {
    color: var(--text-blue);
    font-family: Poppins;
    font-weight: 800;
    font-size: 50px;
    line-height: 1.5;
    margin-bottom: 0;
}
.information_wrapper .projects p {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-light-2);
}

.information_wrapper .about_title {
    font-family: var(--secondary-font);
    font-weight: 800;
    font-size: 34px;
    line-height: 1.25;
    max-width: 1000px;
    margin-bottom: 10px;
    color: var(--text-blue);
}
.information_wrapper .about_text {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.7;
    max-width: 700px;
    color: var(--text-light-2);
}
.information_wrapper .innovate {
    padding: 80px 0;
    background-color: var(--bg-light-2);
}

/* Modal alur pendaftaran sarjana*/
.alur_wrapper_sarjana h5 span {
    color: var(--text-white);
    background-color: var(--bg-yellow);
    padding: 2px 10px;
    margin: 0 2px;
    border-radius: 100%;
}
.alur_wrapper_sarjana h5 {
    color: var(--text-blue);
    font-weight: 700 !important;
}
.alur_wrapper_sarjana .alur_image {
    max-width: 100%;
}

/* Modal alur pendaftaran pascasarjana */
.alur_wrapper_pascasarjana h5 span {
    color: var(--text-white);
    background-color: var(--bg-yellow);
    padding: 2px 10px;
    margin: 0 2px;
    border-radius: 100%;
}
.alur_wrapper_pascasarjana h5 {
    color: var(--text-blue);
    font-weight: 700 !important;
}

/* 5 Brosur */
.brosur_wrapper {
    padding: 50px 0 0;
}
.brosur_wrapper .brosur_subtitle {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 5px;
    color: var(--text-light-3);
}
.brosur_wrapper .brosur_title {
    font-family: var(--secondary-font);
    font-weight: 800;
    font-size: 34px;
    line-height: 1.25;
    margin-bottom: 25px;
    color: var(--text-blue);
}
.brosur_wrapper .nav-item button {
    color: var(--bg-yellow);
    font-weight: 700;
}

.tab-content > .active {
    animation: fade 3s ease;
}

@keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* 6 Pricing */
.price_wrapper {
    padding: 50px 0 0;
    background: var(--bg-light-2);
    background-image: linear-gradient(
            rgb(242, 247, 250, 0.5),
            rgb(242, 247, 250, 0.5)
        ),
        url("../img/bg2.png");
    background-repeat: no-repeat;
    background-position: center;
}
.price_wrapper .pricing_subtitle {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 5px;
    color: var(--text-light-3);
}
.price_wrapper .pricing_title {
    font-family: var(--secondary-font);
    font-weight: 800;
    font-size: 34px;
    line-height: 1.25;
    margin-bottom: 25px;
    color: var(--text-blue);
}
.price_wrapper .pricing_card {
    box-shadow: 0 1px 20px rgb(0 0 0 / 15%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 40px 20px 40px;
    border-radius: 30px;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    top: 0;
    transition: top ease 0.5s;
}
.price_wrapper .pricing_card:hover {
    box-shadow: 0 2px 29px rgb(0 0 0 / 20%);
    top: -10px;
    z-index: 5;
    cursor: pointer;
}
.price_wrapper .pricing_one {
    background-color: var(--bg-features-4);
}
.price_wrapper .pricing_two {
    background: var(--bg-features-1);
}
.price_wrapper .pricing_three {
    background: var(--bg-features-5);
}
.price_wrapper .pricing_period {
    font-family: var(--secondary-font);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    padding-bottom: 0px;
    color: var(--text-light-2);
}

.price_wrapper .pricing_rate {
    color: var(--text-blue);
    font-weight: 800;
    font-family: var(--secondary-font);
    font-size: 34px;
    line-height: 1.25;
}

.price_wrapper .pricing_all_plan {
    text-align: center;
    width: 100%;
    display: flex;
    margin: 15px 0;
}
.price_wrapper .pricing_all_plan ul {
    width: 100%;
    list-style: none;
    padding-inline-start: 0;
}
.price_wrapper .pricing_all_plan li {
    font-size: 16px;
    color: var(--text-dark-gray);
    font-weight: 500;
    line-height: 1.25;
    text-align: center;
    margin-top: 5px;
}

/* 7 Customer Service */
.customer_service_wrapper {
    padding: 80px 0;
}
.customer_service_wrapper img {
    animation: float 5s ease-in-out infinite;
}
@keyframes float {
    0% {
        transform: translatey(0px);
    }
    50% {
        transform: translatey(30px);
    }
    100% {
        transform: translatey(0px);
    }
}
.customer_service_wrapper .customer_services_card {
    border-radius: 15px;
    padding: 50px;
    background-color: var(--bg-features-6);
    box-shadow: 0 5px 40px rgb(0 0 0 / 15%);
}

.customer_service_wrapper .customer_services_card p {
    margin-bottom: 5px !important;
}
.customer_service_wrapper h3 {
    font-family: var(--secondary-font);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-yellow);
}
.customer_service_wrapper .customer_services_role {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-blue);
}
.customer_service_wrapper .customer_services_text {
    font-size: 15px;
    font-weight: 600;
}

/* 8 Prodi */
.prodi_wrapper {
    padding: 50px 0 0;
    padding-bottom: 50px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("../img/dalwa.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.prodi_wrapper .prodi_subtitle {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 5px;
    color: var(--text-white);
}
.prodi_wrapper .prodi_title {
    font-family: var(--secondary-font);
    font-weight: 800;
    font-size: 34px;
    line-height: 1.25;
    margin-bottom: 25px;
    color: var(--text-yellow);
}
.tranding-slide {
    width: 280px;
    height: 250px;
    position: relative;
    background-color: rgb(0, 0, 0, 0.7);
    border-radius: 20px;
}
.tranding-slide .tranding-slide-img img {
    width: 100%;
    height: 250px;
    border-radius: 20px;
    object-fit: cover;
    opacity: 0.5;
}

.tranding-slide .tranding-slide-content {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.tranding-slide-content .tranding-slide-content-bottom {
    position: absolute;
    bottom: 5px;
    left: 15px;
    color: #fff;
}

.swiper-slide-shadow-left,
.swiper-slide-shadow-right {
    display: none;
}

.tranding-slider-control {
    position: relative;
    /* bottom: 5px; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.tranding-slider-control .swiper-button-next {
    left: 60% !important;
    transform: translateX(-58%) !important;
}

.tranding-slider-control .slider-arrow {
    background: var(--bg-yellow);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    left: 40%;
    transform: translateX(-42%);
    filter: drop-shadow(0px 8px 24px rgba(18, 28, 53, 0.1));
}

.tranding-slider-control .slider-arrow ion-icon {
    font-size: 1rem;
    color: var(--text-white);
}

.tranding-slider-control .slider-arrow::after {
    content: "";
}

.tranding-slider-control .swiper-pagination {
    position: relative;
    width: 15rem;
}

.tranding-slider-control .swiper-pagination .swiper-pagination-bullet {
    background-color: #fff;
}

.tranding-slider-control .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--bg-yellow);
}

/* 9 FAQs */
.faq_wrapper {
    padding: 50px 0 0;
}
.faq_wrapper .faq_subtitle {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 5px;
    color: var(--text-light-3);
}
.faq_wrapper .faq_title {
    font-family: var(--secondary-font);
    font-weight: 800;
    font-size: 34px;
    line-height: 1.25;
    margin-bottom: 5px;
    color: var(--text-blue);
}
.faq_wrapper .accordion-button:hover,
.faq_wrapper .accordion-button:focus {
    box-shadow: none;
    color: var(--text-yellow);
}
.faq_wrapper .accordion-item {
    border: 0;
}
.faq_wrapper .accordion-button {
    font-size: 21px;
    font-family: var(--secondary-font);
    font-weight: 600;
    color: var(--text-black);
    background-color: var(--text-white);
    border-radius: 0;
    padding: 0 0 15px 0;
    border-bottom: 1px solid var(--text-light-3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.faq_wrapper .accordion-button::after {
    content: "\002B";
    font-family: "Font Awesome 5 Free";
    font-weight: 800;
    display: inline-block;
    background-image: none;
}
.faq_wrapper .accordion-button:not(.collapsed)::after {
    content: "\2212";
    font-family: "Font Awesome 5 Free";
    font-weight: 800;
    display: inline-block;
    background-image: none;
    transform: unset;
}
.faq_wrapper .accordion-body {
    color: var(--text-blue);
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 20px 0;
    padding-bottom: 25px;
    line-height: 1.5;
}
.free_trial {
    background: var(--bg-light-2);
    padding: 50px 0;
    margin-top: 10px;
}
.free_trial .free_title {
    font-family: var(--secondary-font);
    font-weight: 800;
    font-size: 30px;
    line-height: 1.25;
    margin-bottom: 0;
    color: var(--text-blue);
}
.free_trial .learn-more-btn {
    background: var(--bg-yellow);
    border-color: var(--bg-yellow);
}
.free_trial .learn-more-btn .fa {
    font-size: 22px;
    margin-right: 5px;
    vertical-align: bottom;
    color: var(--text-white);
}

/* 10 Footer */
.footer_wrapper {
    padding-top: 100px;
    padding-bottom: 25px;
    background: url(../img/bg2.png) no-repeat;
    background-size: cover;
    background-color: var(--bg-black);
    color: var(--text-white);
}
.footer_wrapper .footer_logo img {
    max-width: 50%;
}
.footer_wrapper .footer_text,
.footer_wrapper .footer_text a {
    margin-top: 30px;
    color: var(--text-white);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
}
.footer_wrapper .footer_title {
    font-family: var(--secondary-font);
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--text-white);
    margin-bottom: 25px;
}
.footer_wrapper .footer_social_media_icon {
    padding-right: 30px;
    color: var(--text-white);
    font-size: 20px;
}
.footer_wrapper .footer_credits {
    color: var(--text-white);
    border-top: 1px solid var(--text-white);
    padding-top: 20px;
    margin-top: 30px;
}
.footer_wrapper .footer_credits a {
    color: var(--text-yellow);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}

.login {
    font-family: "Poppins", sans-serif;
    background-image: url("../img/bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 20px 0;
}
.register {
    font-family: "Poppins", sans-serif;
    background-image: url("../img/bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 50px 0 0;
}

.box-area {
    width: 930px;
    margin-top: 30px;
}

.box-area-register {
    width: 100%;
}

.right-box {
    padding: 40px 30px 40px 40px;
    background-color: rgb(255, 255, 255, 0.8);
}

.right-box-register {
    /* padding: 40px 30px 40px 40px; */
    padding: 40px 0;
    background-color: rgb(255, 255, 255, 0.8);
}
::placeholder {
    font-size: 16px;
}
.rounded-4 {
    border-radius: 20px;
}
.rounded-5 {
    border-radius: 30px;
}
