/* Global*/


html, body {
    height: 100%;
    margin: 0;
}


body{
    color: #02101a;
    font-family: "Roboto", Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.75em;
    padding: 0;
    margin: 0;
    background-color: rgb(255, 255, 255);
    text-align: justify;
    display: flex;
    flex-direction: column;
    
}

ul{
    padding:0;
    padding-top: 20px;
    margin: 0;
}

.container{
    width: 85%;     /*This width how much whole content for all containers will shift from left*/
    margin: auto; /* top right bottom left*/
    overflow: hidden;
}

.text1{ 
    font-weight: bold;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    text-decoration: none;
    width: 500px;
    font-size: 16px;
    border-radius: 8px;
}

.bold{
    font-weight: bold;
}



.button_1 {
    height: 38px;
    width: 30%;
    background: #e8491d;
    font-weight: bold;
    color: white;
    border: none;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 8px;
    transition-duration: 0.4s;
    cursor: pointer;
  }

  .button_1:hover {
    background-color: yellow;
    color: rgb(12, 12, 12);
    font-weight: bold;
  }

#fader {
    opacity: 0.5;
    background: black;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
}


#loader{
    width:50%;
    height:50%;
    margin: 10px auto 20px;
}



/* Header */
header{
    background: rgb(225,249,239);
    background: linear-gradient(90deg, rgba(225,249,239,1) 0%, rgba(156,235,238,0.6643032212885154) 100%);
    color: white;
    font-size: 15px;
    font-weight: bold;
    padding-left: 3px;
    height: 70px;
    border-bottom: #f39696 2px solid;
}


#main_header .imag {
    float:left;
    padding-top: 18px;
    padding-bottom: 20px;
    padding-right: 20px;
    
}

#main_header .imag img{
    width: 300px;
    height: 50px;
    padding: 2px;

}

/*menu*/


.menu a{
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    color: gray;
}

.menu li{
    display: inline;
    padding: 0 20px 30px 30px;
}



.menu nav{
    float: right;
    margin-top: 10px;
}


.menu a{
    color: grey;
}

.menu .current a{
    color: rgb(4, 19, 104);
}

.menu a:hover{
    color: white;
    background-color: rgb(97, 57, 4);
    padding-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
}


/* Hamburger Menu (Initially hidden) */
#hamburger-icon {
    display: none;
    font-size: 30px;
    color: #333;
    cursor: pointer;
    padding: 20px;
}

/* Mobile view */

@media screen and (max-width: 768px) {


    .text1{ 
        font-weight: bold;
        padding-left: 5px;
        padding-right: 5px;
        text-align: center;
        text-decoration: none;
        width: 200px;
        font-size: 10px;
        border-radius: 8px;
    }
        


    .button_1 {
        height: 38px;
        width: 80px;
        background: #e8491d;
        font-weight: bold;
        color: white;
        border: none;
        padding-left: 5px;
        padding-right: 5px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 10px;
        border-radius: 8px;
        transition-duration: 0.4s;
        cursor: pointer;
      }
    
      .button_1:hover {
        background-color: yellow;
        color: rgb(12, 12, 12);
        font-weight: bold;
      }
    

    #main_header .imag img{
        width: 175px;
        height: 35px;
    
    }


    /* Hide regular menu */
    .menu nav ul {
        display: none;
        width: 100%;
        text-align: center;
        position: absolute;  /* Positioned to prevent overlap with content */
        top: 70px;           /* Start below the header */
        left: 0;
        background-color: #fff;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;  /* Make sure the menu appears above the content */
        padding: 0;
    }

    /* Show hamburger icon */
    #hamburger-icon {
        display: block;
    }

    /* Menu links style when displayed in mobile */
    .menu nav ul li {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #ddd;  /* Add separator between menu items */
    }

    /* Menu links when clicked */
    .menu nav ul li a {
        color: #333;
        display: block;
        text-align: center;
        padding: 10px 20px;
    }

    /* Show the menu when toggled */
    .menu nav ul.active {
        display: block;
    }
    
}



/* Main Content*/

.content .part{
    padding-bottom: 5px;
    border-bottom: rgb(228, 228, 228) 1px solid;
}

.part .headings_1{
    font-weight: bold;
    color: red;
    
    font-size: 18px;
    clear: both;
}

.part .headings_2{
    font-weight: bold;
    font-style: italic;
    font-size: 16px;
    color: darkslateblue;
    clear: both;
}

.part .headings_2 .data{
    font-size: 16px;
    color: rgb(46, 2, 2);
    font-weight: 300;
    line-height: 20px;
    text-align: justify;
    clear: both;
}



.part .input_search{
    padding: 20px;
    margin: 20px;

}

.part .input_search .label1{
    font-size: 14px;
    color: blue;
    font-weight: bold;
    line-height: 20px;
    text-align: justify;
    clear: both;
}


/* Footer */
footer{
    background: rgb(225,249,239);
    background: linear-gradient(90deg, rgba(225,249,239,1) 0%, rgba(223, 238, 156, 0.836) 100%);
    color: white;
    font-size: 15px;
    font-weight: bold;
    padding-left: 3px;
    height: 130px;
    border-top: #5604b4 2px solid;
    margin-top: auto;
}

#main_footer .footer_part{
    text-align: center;
    font-size: 12px;
    
    

}