:root {
    --black: #000000;
    --white: #ffffff;
    --light-gray: #999999;
    --gray: #444444;
    --blue: rgb(0 74 171);
    --aqua:rgb(9 182 181);
}

@font-face {
    font-family: fontPRS;
    src: url(../fonts/Montserrat-VariableFont_wght.ttf);
}

body {
    font-family: fontPRS;
    background: url("../images/backside.webp");
    background-size: 100%;
    background-attachment: fixed;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
}

.bg-detail {
    background: rgba(255, 255, 255, 0.3);
    color: var(--blue);
    padding: 1.8rem 0;
    border-radius: 0rem;
}

.bg-detail a {
    color: var(--blue);
}

.bg-detail a:hover {
    color: var(--black);
}

.logo {
    width: 30%;
}

/* =============================================================== */
/* Start Navbar Here */
/* =============================================================== */

.navbar {
    width: 100%;
    padding: 10px 60px;
    background-color: transparent;

}

.navbar img {
    width: 20rem;
}

.navbar .nav-link {
    margin: 10px;
    color: var(--black);
}

.navbar .nav-link:hover {
    color: var(--aqua);
}

.navbar .nav-link.active {
    color: var(--aqua);
}

.dropdown-menu {
    background-color: var(--white);
    color: var(--black);
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 16px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.navbar-nav .nav-link.show {
    color: var(--aqua) !important;
}

.navbar-nav .nav-link.show:hover {
    color: var(--aqua) !important;
}

.dropdown-item {

    font-size: 14px;
    padding: 6px 14px;
    transition: all 0.3s;
    border-right: 3px solid var(--white);
    border-left: 3px solid var(--white);
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: var(--aqua);
    border-right: 3px solid var(--aqua);
    border-left: 3px solid var(--aqua);
}

/* =============================================================== */
/* End Navbar Here */
/* =============================================================== */

/* =============================================================== */
/* Start Back To Top Here */
/* =============================================================== */

#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#btn-back-to-top i {
    font-size: 18px;
    color: white;
}

/* =============================================================== */
/* End Back To Top Here */
/* =============================================================== */

/*  */
.credit-line {
    display: flex;
    justify-content: space-between;
    padding: 0.7rem 0px;
    font-size: 12px;
    color: var(--black);
}

.credit-line a {
    text-decoration: none;
    color: var(--black);
    transition: color 0.3s, transform 0.3s;
}

.credit-line a:hover {
    color: var(--aqua);
    transform: scale(1.1);
}


/* =============================================================== */
/* End Footer Here */
/* =============================================================== */