
@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{
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
}

img{
    width: 100%;
}

a, a:hover, a:focus, a:active{
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

a{
    text-decoration: none;
    color: #8C1D18;
}

a:hover{
    color: #4D0E0B;
}

p{
    color: #0f0f0f;
    line-height: 1.6;
}

.margin-auto{
    margin: 0 auto;
}

.container{
    max-width: 1440px;
}

.btn{
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.btn-sm{
    font-size: 12px;
    padding: 5px 20px !important;
}

.btn-xs{
    font-size: 10px;
    padding: 4px 12px !important;
}

.btn-red-grad{
    background: linear-gradient(
        45deg,
        rgba(48, 10, 9, 1) 0%,
        rgba(150, 31, 28, 1) 50%,
        rgba(48, 10, 9, 1) 100%
    );
    background-size: 200% 100%;
    background-position: left center;
    color: #fff;

    transition: background-position 0.3s ease;
}

.btn-red-grad:hover, .btn-red-grad:focus, .btn-red-grad:active{
    background-position: right center;
    color: #fff !important;
}

.btn-gray{
    background-color: #DDDDDD;
    color: #0f0f0f;
}

.btn-gray:hover{
    background-color: #cccccc;
    color: #0f0f0f;
}

.btn-round{
    border-radius: 100px;
    padding: 10px 40px;
}

.btn-regis-lg{
    font-size: 18px;
    font-weight: 700;
    padding: 15px 50px;
}

.alert-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 10px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.3s ease-out;
    margin-bottom: 10px;
}

.alert-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 600;
}

.alert-content {
    flex: 1;
}

.alert-content strong {
    font-weight: 600;
}

.alert-close {
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.5;
}

.alert-close:hover {
    opacity: 1;
}

@keyframes slideDown {
    from {
        transform: translateY(-6px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.alert-success {
    background: linear-gradient(135deg, #e6f9f0, #f4fffb);
    color: #0f5132;
}

.alert-success .alert-icon {
    background: #0f5132;
    color: #fff;
}

.alert-warning {
    background: linear-gradient(135deg, #fff4e5, #fffaf2);
    color: #664d03;
}

.alert-warning .alert-icon {
    background: #ffc107;
    color: #000;
}

.alert-info {
    background: linear-gradient(135deg, #e7f1ff, #f3f8ff);
    color: #084298;
}

.alert-info .alert-icon {
    background: #0d6efd;
    color: #fff;
}


/* Navbar */
.web-navbar{
    background-color: #fff;
    box-shadow: 0px 0px 5px 0px rgb(200, 200, 200);
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 9999;
    padding: 0px 20px;
}

.logo{
    width: 160px;
    display: inline-block;
}

.logo a{
    display: block;
    padding: 3px 0px;
}

.menu{
    float: right;
}

.menu{
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu li{
    display: inline-block;
}

.menu li a{
    text-decoration: none;
    color: #777777;
    font-weight: 500;  
    padding: 28px 30px;
    display: inline-block;
    font-size: 13px;
    position: relative;
}

.menu li a:hover{
    color: #8C1D18;
}

.menu li a.active{
    color: #8C1D18;
}

.menu li a::after{
    content: "";
    border-bottom: 2px solid transparent;
    position: absolute;
    bottom: 20px;
    width: 20px;
    left: 50%;
    margin-left: -10px;
}


.menu li a.active::after{
    content: "";
    border-bottom: 2px solid #8C1D18;
    position: absolute;
    bottom: 20px;
    width: 20px;
    left: 50%;
    margin-left: -10px;
}

.menu li.nav-btn{
    padding: 17px 20px;
}

.menu li.nav-btn .btn-red-grad{
    background: linear-gradient(
        45deg,
        rgba(48, 10, 9, 1) 0%,
        rgba(150, 31, 28, 1) 50%,
        rgba(48, 10, 9, 1) 100%
    );
    background-size: 200% 100%;
    background-position: left center;
    color: #fff;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-left: 0px;
    transition: background-position 0.3s ease;
}

.menu li.nav-btn .btn-red-grad.active::after{
    border: none;
}

.menu li.nav-btn .btn-red-grad:hover{
    background-position: right center;
    color: #fff;
}

/* Navigation - Mobile Style */

#pull{
    display: none;
    position: absolute;
    right: 25px;
    top: 22px;
}

.nav-mobile-right{
    display: inline-block;
    position: absolute;
    right: 0px;
    top: 0px;
}

.nav-mobile-item{
    display: inline-block;
}

.nav-mobile-item a{
    display: inline-block;
    padding: 8px 10px;
}

.hamburger{
    padding: 0px;
}

.hamburger-box{
    width: 20px;
    height: 15px;
}

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before{
    width: 20px;
    height: 2px;
    background: #1C2730;
}

.hamburger-inner:after{
    bottom: -5px;
}

.hamburger-inner:before{
    top: -5px;
}

.nav-menu-wrapper{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    background: #fff;
    padding: 130px 20px 60px 20px;
    z-index: 10;
    left: -100%;
    transition: all 0.3s ease;
    display: none;
}

.nav-menu-wrapper.active{
    left: 0px;
    transition: all 0.3s ease;
}

.nav-menu-wrapper h2{
    font-size: 14px;
    font-weight: bold;
    padding: 5px 10px;
    margin: 0px;
    color: #000;
    border-bottom: 1px solid #bbbbbb;
}

.nav-mobile{
    padding: 0px;
}

.nav-mobile li{
    list-style: none;
}

.nav-mobile li a{
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border-bottom: 1px solid #f1f0f0;
}

.nav-menu-wrapper .search-box{
    width: 100%;
    margin-bottom: 15px;
}

.nav-menu-wrapper .search-box .search-input{
    width: 90%;
}

.nav-menu-wrapper .search-box .search-btn{
    position: absolute;
}

/* Mobile Navigation */
.mobile-navigation{
    display: none;
    text-align: right;
    padding-right: 0px !important;
}

.mobile-navigation .mobile-nav-item{
    display: inline-block;
    border-left: 1px solid #ddd;
}

.mobile-navigation .mobile-nav-item .nav-item{
    display: inline-block;
    padding: 15px 12px 15px 16px;
    font-size: 22px;
    color: #1C2730;
    position: relative;
}

.mobile-navigation .mobile-nav-item.nav-member .nav-item{
    font-size: 20px;
}

.mobile-navigation .mobile-nav-item .nav-item .nav-icon{
    vertical-align: middle;
}

.mobile-navigation .mobile-nav-item .pull{
}

.mobile-nav-menu{
    position: fixed;
    top: 0px;
    z-index: 12;
    width: 100%;
    height: 100%;
    padding: 80px 0px;
    background-color: #fff;
    overflow-y: auto;
    right: -100%;
    transition: all 0.3s ease;
}

.mobile-nav-menu.active{
    right: 0;
    transition: all 0.3s ease;
}

.mobile-nav-menu-item{
    padding: 30px 40px;
    border-bottom: 1px solid #ddd;
    display: block;
    color: #0f0f0f;
    font-size: 18px;
}

.text-red{
    color: #8C1D18;
}






.page-section{
    padding: 80px 0px;
}

.page-section .page-title{
    font-size: 28px;
    font-weight: 700;
    color: #8C1D18;
    margin-bottom: 30px;
}

/* Footer */
.web-footer{
    background-color: #fff;
    color: #777777;
    padding: 50px 0px 0px 0px;
    border-top: 1px solid #ddd;
}

.footer-section{
    display: block;
}

.footer-section .footer-item{
    display: block;
    margin-bottom: 15px;
    position: relative;
    padding-left: 35px;
    text-decoration: none;
}

.footer-section.footer-logo img{
    max-width: 200px;
    margin-bottom: 20px;
}

.footer-section .footer-item .footer-icon{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 20px;
    color: #0F0F0F;
}

.footer-section .footer-item .footer-content{
    font-size: 14px;
    color: #777;
}

.footer-copyright{
    background-color: #0f0f0f;
    text-align: center;
    padding: 20px 0px;
    font-size: 14px;
    color: #777777;
}

.footer-copyright {
    background-color: #0f0f0f;
    padding: 40px 0 30px 0px;
    font-size: 14px;
    position: relative;
    margin-top: 30px;
}

/* Gradient top border */
.footer-copyright::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(
        90deg,
        rgba(150, 31, 28, 1) 0%,
        rgba(48, 10, 9, 1) 25%,
        rgba(150, 31, 28, 1) 50%,
        rgba(48, 10, 9, 1) 75%,
        rgba(150, 31, 28, 1) 100%
    );
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: #cfcfcf;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-copy {
    color: #b5b5b5;
}


.content{
    padding-top: 75px;
    min-height: 70vh;
}

.line-red{
    border-top-color:#4D0E0B
}

.bg-gray{
    background-color: #fafafa;
}

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

.form-group label{
    font-weight: 600;
    margin-bottom: 5px;
}

.form-input{
    display: block;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0px 0px 2px 0px rgb(240, 240, 240);
    border-radius: 8px;
    line-height: 25px;
    font-size: 15px;
    padding: 10px 15px;
    margin-top: 5px;
}

.form-input:hover{
    border-color: #bbbbbb;
}

.form-input:focus{
    outline: none;
    border-color: #8C1D18;
}

.form-input:disabled{
    color: #ddd;
    opacity: 0.8;
    cursor: not-allowed;
}

textarea.form-input{
    min-height: 100px;
    resize: vertical;
}

.input-error{
    font-size: 12px;
    color: #b50101;
    font-weight: 400 !important;
    margin-top: 5px;
}

.box{
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0px 3px 10px 0px rgb(240, 240, 240);
    margin: 0px auto 30px;
}

.box .header{
    position: absolute;
    top: -20px;
    left: 0px;
    width: 100%;
    text-align: center;
}

.box .header .title{
    display: inline-block;
    background-color: #8C1D18;
    color: #fff;
    font-weight: 400;
    text-align: center;
    padding: 10px 20px;
    width: 100%;
    max-width: 300px;
    border-radius: 100px;
}

.box .box-title{
    font-weight: 600;
    color: #8C1D18;
    margin-bottom: 20px;
}

/* Base container */
.select2-container .select2-selection--single {
    display: block;
    width: 100%;
    height: auto;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0px 0px 2px 0px rgb(240, 240, 240);
    border-radius: 8px;
    line-height: 25px;
    font-size: 15px;
    padding: 10px 15px;
    margin-top: 5px;
    box-sizing: border-box;
}

/* Rendered text */
.select2-container .select2-selection--single .select2-selection__rendered {
    color: #333;
    padding: 0;
    line-height: 25px;
}

/* Dropdown arrow */
.select2-container .select2-selection--single .select2-selection__arrow {
    height: 100%;
    right: 10px;
}

/* Hover */
.select2-container--default .select2-selection--single:hover {
    border-color: #bbbbbb;
}

.select2-container--default.select2-container--focus 
.select2-selection--single {
    outline: none;
    border-color: #8C1D18;
}

.select2-container--disabled .select2-selection--single {
    color: #ddd;
    opacity: 0.8;
    cursor: not-allowed;
    background-color: #f9f9f9;
}

.select2-dropdown {
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.05);
}

.select2-results__option {
    padding: 8px 15px;
    font-size: 14px;
}

.select2-results__option--highlighted {
    background-color: #8C1D18;
    color: #fff;
}

.select2-container--default 
.select2-selection--single 
.select2-selection__placeholder {
    color: #999;
}

.select2-container .select2-selection--multiple {
    display: block;
    width: 100%;
    min-height: 47px;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0px 0px 2px 0px rgb(240, 240, 240);
    border-radius: 8px;
    padding: 6px 10px;
    margin-top: 5px;
    box-sizing: border-box;
    cursor: text;
}

.select2-container--default.select2-container--focus 
.select2-selection--multiple {
    border-color: #8C1D18;
}

.select2-container--default 
.select2-selection--multiple:hover {
    border-color: #bbbbbb;
}

.select2-container--default 
.select2-selection--multiple 
.select2-selection__choice {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 6px;
    /* padding: 4px 10px 4px 22px; */
    margin: 4px 6px 4px 0;
    font-size: 14px;
    color: #333;
}

.select2-container--default 
.select2-selection--multiple 
.select2-selection__choice__remove {
    color: #999;
    margin-right: 6px;
    font-weight: bold;
}

.select2-container--default 
.select2-selection--multiple 
.select2-selection__choice__remove:hover {
    color: #8C1D18;
}

/* .select2-container 
.select2-selection--multiple 
.select2-search--inline 
.select2-search__field {
    font-size: 15px;
    padding: 4px 6px;
    margin-top: 6px;
    line-height: 25px;
} */

.select2-container--disabled 
.select2-selection--multiple {
    background-color: #f9f9f9;
    opacity: 0.8;
    cursor: not-allowed;
}

.select2-container--disabled 
.select2-selection__choice__remove {
    display: none;
}

.select2-container--default
.select2-selection--single
.select2-selection__placeholder,
.select2-container--default
.select2-selection--multiple
.select2-search__field::placeholder {
    font-family: "Poppins", sans-serif;
}




.datepicker{
    padding: 10px;
}

.datepicker table tr td span{
    font-size: 14px;
    border-radius: 8px;
}

.datepicker td, .datepicker th{
    font-size: 14px;
    width: 30px;
    height: 30px;
    border-radius: 8px;
}

.datepicker table tr td span.active, .datepicker table tr td span.active.disabled, .datepicker table tr td span.active.disabled:hover, .datepicker table tr td span.active:hover{
    background-image: linear-gradient(45deg, #8C1D18, #D32F2F);
}

.show-pass-btn{
    cursor: pointer;
}

.password-input{
    position: relative;
}

.password-input .form-input{
    padding-right: 45px;
}

.password-input .show-pass-btn{
    position: absolute;
    top: 12px;
    right: 15px;
}

.floating-wa{
    width: 50px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.floating-wa:hover{
    width: 60px;
}


/* Home Page Style */
.hero-banner{
    display: flex;
    width: 100%;
    padding: 0px;
}

.hero-banner .hero-banner-title{
    margin-top: 50px;
    color: #8C1D18;
    font-size: 40px;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 500px;
}

.hero-banner .hero-banner-content{
    color: #777777;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 450px;
}

.value-section{
    padding: 100px 20px;
}

.section-sub-title{
    color: #0F0F0F;
    font-size: 30px;
    font-weight: 400;
}

.section-title{
    color: #8C1D18;
    font-size: 38px;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-text{
    color: #777777;
    font-size: 15px;
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 40px;
}

.value-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
}

.value-item {
    display: flex;
    align-items: center;   /* vertical centering */
    gap: 20px;
    flex: 0 0 48%;         /* two columns */
    padding: 16px 25px;
    background: #f2f2f2;
    border-radius: 12px;
    box-sizing: border-box;
    min-height: 75px;
}

.value-icon{
    width: 20px;              /* single source of truth */
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;    
}

.value-icon img {
    display: block;
}

.value-content {
    line-height: 1.4;
    font-size: 1.1em;
    font-weight: bold;
}

.content-desc {
    font-size: 0.9em;
    font-weight: normal;
    opacity: 0.8;
}

.value-image{
    position: relative;
    width: 100%;
    height: 100%;
}

.value-image img{
    width: 100%;
    max-width: 450px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.facility-section {
    padding: 100px 0;
    text-align: center;
    background-color: #F7F7F7;

}

.facility-header {
    max-width: 600px;
    margin: 0 auto 48px;
}

.facility-header h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.facility-header p {
    color: #777;
    line-height: 1.6;
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.facility-grid .facility-item{
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.facility-grid .facility-item .facility-title{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    background: linear-gradient(0deg,rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 50%);
    color: #fff;
    font-weight: bold;
}

.facility-title label{
    position: absolute;
    bottom: 20px;
    left: 0px;
    width: 100%;
    text-align: center;
}

.facility-title label small{
    font-size: 13px;
    font-weight: 400;
    display: block;
}

.facility-grid .facility-item {
    width: 100%;
    border-radius: 16px;
    /* cursor: pointer; */
    transition: transform 0.35s ease;
}

.facility-grid .facility-item:hover {
    /* transform: scale(1.05); */
}

/* ===== Lightbox ===== */
.facility-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 9999;
}

.facility-lightbox img {
    max-width: 80%;
    max-height: 70vh;
    border-radius: 12px;
    object-fit: scale-down;
}

.facility-lightbox .close {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

.facility-lightbox .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 48px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    user-select: none;
}

.facility-lightbox .prev { left: 40px; }
.facility-lightbox .next { right: 40px; }

.thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.thumbnails img {
    width: 70px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    opacity: 0.5;
    cursor: pointer;
}

.thumbnails img.active {
    opacity: 1;
    outline: 2px solid #fff;
}

.registration-flow-section {
    padding: 120px 20px;
    text-align: center;
}

.registration-flow-steps{
    padding-top: 20px;
}

.verified-icon{
    position: relative;
    display: inline-block;
    text-align: center;
    width: 70px;
}

.verified-icon .badge-star{
    width: 100%;
    animation: spin 6s linear infinite;
}

.verified-icon .checkmark{
    position: absolute;
    top: 50%;
    left: 0px;
    height: 20px;
    margin-top: -10px;
}

.verified-icon .checkmark img{
    width: 100%;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

div:where(.swal2-container).swal2-center > .swal2-popup{
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    max-width: 420px;
}

.swal2-actions button{
    border-radius: 100px;
    font-size: 14px;
    padding: 10px 30px;
    outline: none;
}

.swal2-actions button:hover, .swal2-actions button:active{
    outline: none;
    box-shadow: none;
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm){
    background: linear-gradient(
        45deg,
        rgba(48, 10, 9, 1) 0%,
        rgba(150, 31, 28, 1) 50%,
        rgba(48, 10, 9, 1) 100%
    );
    background-size: 200% 100%;
    background-position: left center;
    color: #fff;

    transition: background-position 0.3s ease;
}

.swal2-confirm:hover, .swal2-confirm:focus, .swal2-confirm:active{
    background-position: right center;
    color: #fff !important;
    outline: none !important;
    box-shadow: none !important;
}


.swal2-deny{
    background-color: #DDDDDD;
    color: #0f0f0f;
}

.swal2-deny:hover{
    background-color: #cccccc;
    color: #0f0f0f;
}

.upload-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.upload-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.upload-header span{
    font-weight: 700;
    color: #0f0f0f;
}

.drop-area {
    border: 2px dashed #ccc;
    border-radius: 16px;
    padding: 20px 15px;
    text-align: center;
    font-size: 12px;
    cursor: pointer;
    transition: 0.2s;
}

.drop-area p{
    margin-bottom: 0px;
}

.drop-area.dragover {
    border-color: #8B0000;
    background: #fafafa;
}

.progress-wrapper {
    height: 6px;
    background: #eee;
    border-radius: 4px;
    margin-top: 10px;
    overflow: hidden;
    display: none;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: #8B0000;
    transition: width 0.2s;
}

/* Popup */
.file-preview-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.file-preview-box {
    background: #fff;
    width: 100%;
    height: 80%;
    min-height: 50vh;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    margin: 100px auto;
    max-width: 700px;
}

.file-preview-box iframe,
.file-preview-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.preview-content{
    width: 100%;
    height: 100%;
}

.preview-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #8B0000;
    color: #fff;
    border: none;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 100px;
}


.content-kurikulum{
    max-width: 1200px;
    margin: 50px auto;
}

.content-kurikulum p{
    color: #0f0f0f;
}

.content-kurikulum .kurikulum-item{
    margin-bottom: 30px;
}

.content-syarat-spmb{
    font-size: 15px;
    line-height: 2;
}

.content-about h3{
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 24px;
    color: #4D0E0B;
}

.content-experts img{
    border-radius: 10px;
}