* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* navigation bar */
.apps {
    padding: 3px;
    background-color: #055296;
    font-weight: 700;
    color: #fff;
    width: 100%;
}

.apps-left {
    float: left;
}

.apps-right {
    margin-left: 50%;
}

.apps ul li {
    display: inline;
}

.fa-phone {
    border: 2px solid white;
    padding: 3px;
    border-radius: 50px;
}

.fa-envelope {
    border: 2px solid white;
    padding: 3px;
    border-radius: 50px;
}

.navbar {
    background-color: #fff !important;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important;
    top: 0 !important;
    position: sticky !important;
}

.navbar-brand {
    margin-left: 8%;
}

.navbar-collapse {
    margin-left: 10%;
}

.nav-link {
    color: #04327c !important;
}

.nav-link:hover {
    color: #04243f !important;
    background-color: rgba(0, 0, 0, 0.2) !important;
}

.blink {
    animation: blink 1s steps(2) infinite;
    /* 1 second animation, 2 steps, repeat infinitely */
}

@keyframes blink {
    0% {
        opacity: 1;
        /* Fully visible */
    }

    50% {
        opacity: 0;
        /* Invisible */
    }

    100% {
        opacity: 1;
        /* Fully visible again */
    }
}

.body {
    font-family: 'Poppins', sans-serif;
    background-color: #daeef1 !important;
}

.update{
    padding: 12px !important;
    font-size: 20px !important;
    background-color: #005092 !important;
    cursor: default !important;
}
/* marquee content */
.marquee-container {
    overflow: hidden !important ;
    /* Hides the content outside the container */
    position: relative !important;
    /* For positioning the marquee-content absolutely */
    width: 100%;
    padding: 12px;
    background-color: #b3c4e0;
}

.marquee-content {
    /* position: absolute !important; */
    white-space: nowrap !important;
    /* Prevents text from wrapping */
    animation: marquee 50s linear infinite !important;
    /* Adjust speed as needed */
}

@keyframes marquee {
    0% { transform: translateX(0%); }
    50% { transform: translateX(-100%); } /* First copy moves out */
    100% { transform: translateX(-200%); } /* Second copy moves out */
}

/* Simple Process */
.simple{
    width: 100%;
    padding: 20px;
}
.simplerap{
    width: 85%;
    margin: auto;
}
.simplerap2{
    width: 90%;
    margin: auto;
    padding: 20px;
}
.img-ph{
    width: 100%;
}
.simplerap h6{
    color: #a80101;
    font-weight: bold;
}
.simplerap h3{
    color: #04327c;
    font-weight: bold;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.simplerap2 h6{
    color: #033b96;
    font-weight: bold;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.simplerap2 p{
    color: #565656;
}

/* photo section */
.photo{
    width: 100%;
}
.photorap{
    width: 85%;
    margin: auto;
}
.photorap img{
    width: 100%;
}

/* middle */
.mid{
    width: 100%;
    padding: 30px;
}
.midrap{
    width: 90%;
    margin: auto;
}
.midrap h6{
    color: #a80101;
    font-weight: bold;
}
.midrap h3{
    color: #04327c;
    font-weight: bold;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.midrap p{
    color: #565656;
}

.box{
    font-weight: bold;
    color: rgb(68, 68, 68);
    padding: 20px;
    background-color: rgb(187, 205, 232);
    border-radius: 10px;
    border: 1px solid black;
}

/* middle2 */
.mid2{
    width: 100%;
    padding: 30px;
}
.midrap2{
    width: 90%;
    margin: auto;
}
.midrap2 h6{
    color: #a80101;
    font-weight: bold;
}
.midrap2 h3{
    color: #04327c;
    font-weight: bold;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.mid-box{
    width: 90%;
    margin: auto;
}
.patient{
    padding: 30px !important;
    background-color: #eff8f8;
    border-radius: 20px;
    border: 1px solid black;
}
.mid-box h5{
    color: #04327c;
    font-weight: bold;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.mid-box p{
    color: #3a3a3a;
}

/* contact */
.contact{
    width: 100%;
    padding: 30px;
}
.contactrap{
    width: 90%;
    margin: auto;
}
.contactrap h6{
    color: #a80101;
    font-weight: bold;
}
.contactrap h3{
    color: #04327c;
    font-weight: bold;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.form-box {
    border-radius: 20px;
    background-color: #193e87;
    padding: 20px;
}

#department{
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 50px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}
input[type=text]{
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}
input[type=email]{
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}
input[type=submit] {
    background-color: #ffffff;
    color: #04243f;
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #4e6673;
    color: #fff;
}

/* footer */
.foot {
    width: 100%;
    padding: 30px;
    background-color: rgb(148, 180, 231);
}

.footrap {
    width: 90%;
    margin: auto;
}

.foot1 p {
    color: black;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
}

.foot2 p {
    color: black;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
}

.foot2 h6 {
    color: black;

}

.footer {
    width: 100%;
    padding: 10px;
    background-color: rgb(148, 180, 231);
}

/* responsive */
@media only screen and (max-width:570px) {
    iframe {
        width: 300px;
    }
}