html,body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

body  {
    background-image: url("/idsproject/asset/banner-top-big.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* new navbar */
.navigation-header {
    background-color: #171717;
    padding: 0 15px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container > a {
    color: ghostwhite;
    text-decoration: none;
    font-weight: 700;
    font-size: 26px;
}

.logo-container img {
    height: 50px;
    width: 50px;
    filter: brightness(1);
}

.navigation-items {
    display: flex;
    gap: 40px;
}

.navigation-items > a {
    color: ghostwhite;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: .4s ease-in-out;
}

.navigation-items > a:hover {
    /* color: white; */
    color: rgb(255, 213, 0);
}

.hamburger {
    display: none;
    font-size: 20px;
    font-weight: 800;
    color: white;
}

@media screen and (max-width:768px) {
    .hamburger {
        display: flex;
        cursor: pointer;
    }
    .hamburger #closeHam {display: none;}
    .navigation-items {
        display: none;
        flex-direction: column;
        align-items: center;
        position: absolute;
        right: 0;
        top: 58px;
        background-color: rgb(32 32 32);
        width: 100%;
        /*height: calc(100vh - 58px);*/
        height: 400px;
        padding-top: 60px;
        gap: 10vh;
    }
    .navigation-items > a {
        color: rgb(255, 213, 0);
    }
    .title h1 {font-size: 25px;}
}

@media screen and (max-width: 480px) {
    /*body {
        background-image: url("/idsproject/asset/icon/mobile3.jpg");
    }*/
}
/* end of new navbar */

.title {
    background-color: rgb(0, 0, 0, 0.8);
    text-align: center;
    color: white;
    height: 200px;
}

/* new banner patt */
.banner-patt img{
    width: 100%;
    height: 8%;
}

/* grid container */
.grid-container {
    grid-template-columns: 420px 420px;
    grid-template-rows: 400px 300px;
    display: grid;
    grid-gap: 50px;
    background-color: rgba(255, 255, 255);
    width: auto;
    margin: auto;
    text-align: center;
    align-items: center;
    justify-content: center;
}
.grid-item {
    background-color: rgba(255, 223, 201, 0);
    padding: 0px 10px;
    height: 300px;
}
.grid-item img {
    width: 95%;
    height: 95%;
    object-fit: cover;
    border-radius: 15px;
}

.navbar {
    overflow: hidden;
    background-color: #171717;
    padding: 0 120px;
    position: sticky;
    top: 0;
}
.navbar a {
    float: right;
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 20px 28px;
    text-decoration: none;
}
.dropdown {
    float: right;
    overflow: hidden;
    margin-right: 0px;
}
.dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}
.navbar a:hover, .dropdown:hover .dropbtn {
    background-color: rgb(255, 180, 0);
    color: rgb(0, 0, 0);
}

/* .navbar a:hover{
    background-color: rgb(255, 180, 0);
} */

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 190px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 0px;
    text-decoration: none;
    display: block;
    text-align: center;
}
.dropdown-content a:hover {
    background-color: #ddd;
}
.dropdown:hover .dropdown-content {
    display: block;
}

header{
    position: relative;
    background-color: rgba(232, 232, 255, 0.638);
    height: 300px;
    text-align: center;
    padding: auto;
    /* object-fit: cover; */
}
header img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    filter: brightness(40%);
}

.centered{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    letter-spacing: 1px;
}

/* .cont-crumb{
    background-color: rgba(255, 192, 203, 0.683);
    padding: 20px;
} */

.box1{
    background-color: rgb(255, 255, 255);
    width: auto;
    text-align: center;
    padding: 45px 200px;
    color: black;
    font-family: 'Poppins', sans-serif;
}

.box2{
    position: absolute;
    padding-left: 115px;
    font-size: 17px;
    letter-spacing: 0;
    color: rgb(51, 51, 253);
}

.box3{
    background: rgb(0, 0, 0, 0.8);
    text-align: center;
    color: white;
    /* font-family: 'Poppins'; */
    font-size: 22px;
    font-family: 'Poppins', sans-serif;
    padding: 70px 0;
    min-width: 80%;
}

.responsive{
    width: 60%;
    max-width: 200px;
    height: auto;
}

.button{
    border: none;
    color: white;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.s;
    cursor: pointer;
    border-radius: 5px;
}
.button1 {
    background-color: white;
    color: black;
    border: 2px solid rgb(102, 163, 255);
}

.button1:hover {
    background-color: rgb(102, 163, 255);
    color: white;
}

/* style the list */
ul.breadcrumb{
    list-style: none;
    font-family: 'Poppins';
    /* margin-left: 80px;
    margin-bottom: 50px;
    margin-top: 5px; */
}

/* display item side by side */
ul.breadcrumb li {
    display: inline;
    font-size: 14px;
}

/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li+li:before {
    /* padding: 5px; */
    color: #FFFFFF;
    content: "/\00a0";
}

/* Add a color to all links inside the list */
ul.breadcrumb li a {
    color: #ffe000;
    text-decoration: none;
}

/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
    color: #01447e;
    text-decoration: underline;
}

/*footer {
    margin-top: 0px;
    padding: 3px;
    background-color: rgba(255, 255, 255, 0.658);
    color: rgb(0, 0, 0);
}*/

.mid-cont{
    background-color: rgb(255, 255, 255);
    color: black;
    padding: 20px;
}
.grid-cont{
    margin: 0 280px;
    display: grid;
    grid-template-columns: 350px auto ;
    grid-template-rows: 350px;
    gap: 50px;
    /* background-color: #9fd4ff;
    background-color: #ffffff; */
    padding: 40px 50px;
    border-radius: 10px;
    box-shadow: 2px 2px 20px 2px rgb(176, 176, 176);
}

.grid-box{
    /*background-color: rgba(255, 255, 255, 0.8);*/
    font-size: 30px;
    border-color: red;
}

.box-1{
    text-align: center;
}
.box-2{
    font-family: 'Poppins', sans-serif;
}
.box-2-title {
    background-color: rgba(255, 189, 189, 0);
    padding-left: 20px; 
    font-size: 24px;"
}

.box-1 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid-cont-2{
    margin: 0 280px;
    display: grid;
    grid-template-columns: 400px 400px;
    grid-template-rows: 400px;
    gap: 60px;
    /* background-color: #9fd4ff; */
    /* background-color: #ffdddd; */
    padding: 0 0px;
}
.cont-box{
    background-color: rgba(135, 206, 250, 0.438);
    padding: 15px 15px;
}
.grid-cont-3{
    grid-template-columns: auto;
    grid-template-rows: auto auto;
    gap: 10px;
    text-align: center;
}
.small-box{
    background: #01447e;
}
.small-box img{
    width: 90%;
    height: 90%;
    object-fit: cover;
}
.small-2{
    background-color: aquamarine;
}

.button-grid {
    display: grid;
    grid-template-columns: auto auto auto;
    background-color: #2195f300;
    column-gap: 50px;
    row-gap: 40px;
    margin: 80px 180px 80px 180px;
}

.button-item {
    background-color: rgba(255, 255, 255, 0);
    border: 1px solid rgba(0, 0, 0, 0);
    padding-top: 40px;
    padding-bottom: 80px;
    text-align: center;
    box-shadow: 1px 6px 15px grey;
    border-radius: 5px;
}

.button-item img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.buttonB {
    border: none;
    color: white;
    padding: 15px 40px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.s;
    cursor: pointer;
    border-radius: 5px;
}
.button2 {
    background-color: white;
    color: black;
    border: 2px solid rgb(102, 163, 255);
    /* box-shadow: 5px 5px 15px rgba(0,0,0,0.2); */
}
.button2:hover {
    background-color: rgb(102, 163, 255);
    color: white;
}

.footer_section {
    position: relative;
    text-align: center;
}

