h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;

}

:root {
    --blue: #1e90ff;
    --white: #ffffff;
    --yellow: #FFC506;
    --black: #000;
}


.small-logo1 {
    width: 50px;
}

.brand-txt {
    color: var(--black);
}

.brand-txt a:hover {
    color: var(--yellow);
}

/*   Navigation Styles*/


.navbar-toggler {
    padding: 4px 6px;
    font-size: 16px;
    color: #fff;
    position: relative;
    margin-top: 5px;
    margin-right: 15px;
    margin-bottom: 5px;
    background-color: transparent;
    background-image: none;
    border: 1px solid goldenrod;
    border-radius: 4px;
}

.navbar-toggler-icon {
    background: #ffa400;
    border-color: transparent;
}

#header {
    padding-bottom: 10px;
    margin-bottom: 500px;
}

#header .hotline {
    color: white;
    padding: 10px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-align: right;
    background-color: var(--yellow);
}

#header .navbar-nav {
    border: none;
    text-align: center;
}

.navbar .nav-item a {
    padding: 15px;
}

#header .navbar-nav li a:hover {
    text-decoration: none;
    color: var(--yellow);
}

.btn-login {
    background: rgba(255, 197, 6, 1);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.nav-but a:hover {
    background-color: var(--white);
    color: var(--black);
}

.sub-heading {
    color: var(--yellow);
    margin-bottom: 20px;
}
.navbar h5{
    color: var(--white);
}

/* -------------------------------- HERO  --------------------------------------- */
.vid-1 {
    /*position: relative;*/
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.vid-1 h1,
p {
    margin-bottom: 15px;
}


/* Video background styles */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Content styles */
.content {
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    text-align: left;
    color: #fff;
}


.content .btn:hover {
    background-color: var(--black);
    color: var(--white);
}


@media only screen and (max-width: 600px) {
    .content {

        top: 60%;
    }
}


/* --------------------------------- TEAM----------------------------------------------*/
#team {
    background-color: var(--yellow);
}

.team-section {
    padding: 40px 0;
    background-color: #f5f5f5;
}

.team-members {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.team-member {
    width: 250px;
    text-align: center;
    margin: 10px;
}

.team-member .top-mem {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 10px;
}

.team-member .card {
    background-color: var(--black);
    width: 180px;
    margin-top: -65px;
    margin-left: 25px;

}

.team-member h3 {
    margin-bottom: 5px;
    font-size: 20px;
    color: var(--yellow);
}

.team-member p {
    font-size: 16px;
    color: var(--yellow);
}

.team-member h6,
h5 {
    color: var(--yellow);
}


/* ---------------------- MOBILE RESPONSIVE -------------- */
@media only screen and (max-width: 600px) {
    #team {
        margin-bottom: 0px;
    }

    .team-member .card {
        margin-left: 10%;

    }

}

/* -----------------------  SERVICES  --------------------------------------*/
#services {
    background-color: var(--black);
}

#services .card {
    background-color: var(--yellow);
}

#services .card-body h5 {
    color: var(--black);
}

#services .hero-img {
    width: 80px;
    margin-bottom: 15px;
}


#services .services-box {
    z-index: 1;
}

.service-img-right {
    margin-left: -10em;
}

/* ---------------------- MOBILE RESPONSIVE -------------- */
@media only screen and (max-width: 600px) {
    .service-img-right {
        margin-left: 0em;
    }

}

/* ----------------------- DEPARTMENT  MOBILE RESPONSIVE---------------------- */
@media only screen and (max-width: 600px) {
    .txt-mobile-department {
        text-align: center;
    }

    #departments {
        padding: 20px;
    }
}

/* --------------------------------  CONTACT US -------------------------------- */

/* Form input styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Send button styles */
.btn-form {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    background-color: var(--yellow);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-form:hover {
    background-color: var(--white);
    color: var(--black);
}

/* CONTACT US - MAP -------------------------- */
#contact {
    background-color: var(--yellow);
}

/* ---------------------- FOOTER ------------------------------ */

.footer a {
    margin-left: 10px;
    color: var(--white);
}

.footer a:hover {
    color: var(--yellow);
}


/* ----------------------------   MOBILE RESPONSIVE ------------------------------------ */
@media only screen and (max-width: 600px) {
    .imprint-css {
        display: flex;
        justify-content: center;
    }
}

/* ----------------  BACK TO TOP ------------------- */
#back-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: var(--yellow);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
}

#back-to-top:hover {
    background-color: #555;
    color: #FFC506;
}