


body {
    font-family: 'Poppins', sans-serif;
    background-color: #E8AA42;
}

/* navbar style */
.navbar {
    z-index: 3;
}

.nav-color {
    background-color: #1F4690;
    transition: all ease-in-out .3s;
}

.bg-transparent {
    transition: all ease-in-out .3s;
}

* {
    z-index: 2;
}

.navbar-brand {
    font-weight: 700;
    font-size: 20px;
}

.nav-link {
    font-size: 14px;
}

.nav-link.active {
    font-weight: 700;
}

.button-secondary {
    width: 133px;
    height: 40px;
    background-color: #E8AA42;
    color: #1F4690;
    border: none;
    font-size: 16px;
    font-weight: 500;
}

.button-primary {
    width: 133px;
    height: 40px;
    background-color: transparent;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 300;
}

/* hero section */
#hero {
    background : linear-gradient(160deg, #1F4690, #000);
    height: 100vh;
    width: 100%;
}

.img-hero {
    height: 70%;
    z-index: 1;
}

.hero-tagline h1 {
    color: #fff;
    font-weight: 700;
    font-size: 42px;
    line-height: 50px;
}

.hero-tagline p {
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 60px;
    margin-top: 20px;
    line-height: 20px;
    width: 85%;
}

.button-lg-primary {
    width: 237px;
    height: 50px;
    background-color: #E8AA42;
    color: #1F4690;
    border: none;
    font-size: 18px;
    font-weight: 700;
}

/* layanan section */
#layanan {
    padding: 50px 0;
}

h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1F4690;
}

.sub-title {
    font-size : 18px;
    color: #fff;
}

.card-layanan {
    width : 100%;
    height: 350px;
    border-radius: 5px;
    background: linear-gradient(160deg, #1F4690, rgb(65, 64, 64));
    padding: 40px;
    box-shadow: 0 0 7px 3px rgba(0, 0, 0, 0.05);
}

.circle-icon {
    width: 100px;
    height: 100px;
    background-color: #fff;
    border-radius: 50%;
    transition: all .1s ease-in;
}

.card-layanan h3 {
    color: #fff;
    font-size: 24px;
    transition: all .2s ease-in;
}

.card-layanan p {
    color: #fff;
    font-size: 14px;
    transition: all .2s ease-in;
    
}

/* hover */

.card-layanan:hover {
    width : 100%;
    height: 350px;
    border-radius: 5px;
    background: #E8AA42;
    padding: 40px;
    box-shadow: 0 0 7px 3px rgba(0, 0, 0, 0.05);
    transition: all .2s ease-in;
}

.card-layanan:hover .circle-icon {
    background-color: #1F4690;
    transition: all .2s ease-in;
}

.card-layanan:hover h3 {
    color: #000;
    font-size: 24px;
    transition: all .2s ease-in;
}

.card-layanan:hover p {
    color: #000;
    font-size: 14px;
    transition: all .2s ease-in;
}

/* search section */
#search {
    /* background-image: url(../assets/background.jpg);
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover; */

    background : linear-gradient(160deg, #1F4690, #000);
    height: 65vh;
    width: 100%;
}

#search h2 {
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height:  72px;
    letter-spacing: 0em;
    text-align: center;
    color: #fff;
}

#search p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height:  10px;
    letter-spacing: 0em;
    text-align: center;
    color: #fff;
}

.input-cari {
    height: 60px;
}

.input-cari:focus {
    border : none;
}

.input-cari .button-secondary {
    width: 240px;
    height: 60px;
    color: #1F4690;
    background-size: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 0 0 0 10px;
}

.input-cari .button-primary {
    height: 60px;
    background-color: #E8AA42;
    color: #1F4690;
    font-size: 18px;
    border: none;
    font-weight: 500;
    border-radius: 0 10px 0 0;
}

.nav-tabs {
    border: none;
}

.nav-tabs .nav-link {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 0 0 0 0;
    color: #fff;
}

.nav-tabs .nav-link.active {
    background-color: #E8AA42;
    color: #1F4690;
}

.nav-tabs .nav-link {
    color: #fff;
    border: none;
}

/* section rekomendasi */

.card {
    height: 510px;
    border: none;
    width: 95%;
    /* background: #1F4690; */
}

#rekomendasi h2 {
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height:  72px;
    letter-spacing: 0em;
    text-align: center;
    color: #1F4690;
}

.card-body h4 {
    color: #000;
    font-weight: 600;
    font-size: 24px;
    line-height: 0.8rem;
    max-width: auto;
    max-height: auto;
}

.card-body p {
    color: #000;
    font-weight: 400;
    font-size: 14px;
}

.card:hover {
    background: linear-gradient(170deg, #1F4690, #000);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.card:hover .card-body h4 {
    color: #fff;
    transition: all ease-in-out .3s;
}

.card:hover .card-body h6 {
    color: #fff;
    transition: all ease-in-out .3s;
}

.card:hover .card-body p {
    color: #fff;
    transition: all ease-in-out .3s;
}

.card-footer {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 10px;
    background-color: #fff;
}

.card-footer .btn-detail{
    background-color: #1F4690;
    color: #fff;
    height: 50px;
    width: 150px;
    font-weight: 600;
    border: none;
}

.card-footer .btn-pinjam{
    background-color: #E8AA42;
    color: #fff;
    height: 50px;
    width: 150px;
    font-weight: 600;
    border: none;
}

/* untuk contact */
#contact {
    margin-top: 100px;
    margin-bottom: 100px;
}

#contact h3 {
    font-weight: 600;
    font-size: 40px;
    line-height: 60px;
    color: #1F4690;
}

#contact h6 {
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    color: #1F4690;
    margin: 19px 0 14px 0;
}

.kontak a {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 20px;
    color: #1F4690;
    text-decoration: none;
    margin-left: 18px;
    width: 500px;
    display: inline-block;
}

.uptlaboratorium {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 18px;
    color: #1F4690;
    text-decoration: none;
}

.card-contact {
    width: 100%;
    height: 445px;
    background: #FFFFFF;
    border-radius: 5px;
    padding: 52px 48px;
}

.card-contact h2{
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 60px;
    color: #1F4690;
    margin-bottom: 21px;
}

.datacontrol{
    background: #C4C4C4;
    height: 75px !important;
    border-radius: 0;
}

.form-floating label {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 18px;
    color: #717171;
}

.button-kontak {
    width: 100%;
    height: 75px;
    background: #1F4690;
    margin-top: 20px;
    border: none;

    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    color: #fff;
}

/* batas contact */

/* ini footer */
footer {
    width: 100%;
    background: linear-gradient(170deg, #1F4690, #000);
    height: 40px;
}

.copyright {
    bottom: 0%;
    color: #fff;
    font-size: 12px;
}

.footer-nih {
    font-size: 12px;
    color: #fff;
}
/* ini batas footer */

/* pagination */
.pagination{
    margin-top: 30px;
    margin-left: 20px;
}

.pagination li{
    /* display: inline-block; */
    margin: 2px;
    box-shadow: 0 5px 25px rgba(1 1 1 / 10%);
    border: none;
}

/* .previous-page{
    background-color: #1F4690 !important;
} */

.pagination li a {
    background-color: #1F4690;
    color: #fff;
}

.pagination-row {
    margin-top: -80px;
}

.modal .modal-header {
    background-color: #1F4690;
    color: #fff;
}

.modal-header h5 {
    font-size: 16px;
}

.modal .modal-footer {
    background-color: #E8AA42;
    color: #fff;
}

.buttonfooter {
    background: #1F4690;
    font-size: 12px;
}


/* nav modal pinjam */
.modalpinjam .nav-tabs {
    border: none;
   
}

.modalpinjam .nav-tabs .nav-link {
    background-color: #1F4690;
    border-radius: 0 0 0 0;
    color: #fff;
    font-size: 12px;
}

.modalpinjam .nav-tabs .nav-link.active {
    background-color: #E8AA42;
    color: #1F4690;
}

.modalpinjam .nav-tabs .nav-link {
    color: #fff;
    border: none;
}

.buttonpengajuan {
    background-color: #1F4690;
    font-size: 12px;
}

.detailalat {
    font-size: 12px;
    margin-top: 10px;
}

.datadetaiil {
    margin-top: -20px;
    font-size: 12px;
    font-weight: 600;
}

.hrdetail {
    color: #1F4690;
    size: 10px;
}

.table thead{
    font-family: 'Poppins', sans-serif;
    background-color: #1F4690;
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
}

.table tbody{
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
}

.daftarpengajuan {
    margin-top: -620px;
}

.tabeldata {
    font-size: 12px;
}

.img-fluid {
    width: 250px;
    height: 250px;
}


.footer {
    clear: both;
    position: relative;
    height: 200px;
    margin-top: -200px;
    font-size: 12px;
    color: #fff;
  }