body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
   /* color: rgba(83, 81, 81, 0.062); */

}

.grid-container1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}

.grid-item1 img {
    width: 100%;
    height: auto;
}

.grid-container1 {
    margin-top: 9px;
    background-color: rgba(83, 81, 81, 0.062);
    /* padding: 10%; */

}

.grid-item1 h1 {
    padding: 10%;
    color: rgba(23, 19, 19, 0.504);

}


.grid-item2{
    padding-top: 10%;
}

.grid-item2 h1 b {
    padding-top: 10%;
    padding-left: 60%;
    /* font-size: 70%; */
    border-color: aqua;
    font-size: 10px;


}

.grid-item2 h1  a p{
    /* padding: 27%;*/
    padding-left: 60%; 
    font-size: 10px;
    /* background-color: rgb(124, 124, 171); */

}



#t1 {
    color: blueviolet;
}


.logo-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 70px;
    /* Space between logos */
    transition: transform 0.1s ease;
    /* margin-top: 10px; */
    background-color: rgba(83, 81, 81, 0.062);
    /* padding-top: 100%; */

}

.logo-item {
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.1s ease;
    /* padding-top: 100%; */

}

.logo-item a {
    text-decoration: none;
    color: black;
    /* padding-top: 100%; */
}

.logo-item img {
    width: 100px;
    /* Set a fixed width for logos */
    height: auto;
    /* Maintain aspect ratio */
    transition: transform 0.4s ease;
    
}

.logo-item:hover img {
    transform: scale(1.1);
    /* Scale up on hover */
}

.logo-item:hover {
    transform: translateY(-5px);
    /* Move up on hover */
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); */
    /* Add shadow on hover */
}

.nav6 {
    height: 10vh;
    /* background-color: rgb(83, 81, 81); */

}

.nav6 h1 {
    font-size: 30px;
    padding-left: 5%;
    padding-top: 1%;
    color: rgba(23, 19, 19, 0.504);
    background-color: rgba(83, 81, 81, 0.062);
    /* background-color: rgba(53, 50, 50, 0.142); */
    height: 10vh;
}


.grid-item2 h1 {
    font-size: 5px;
}

#t2 {
    color: rgb(135, 21, 240);
}



.slider1 {
    position: relative;
    width: 100%;
    /* background-color: rgba(83, 81, 81, 0.062); */
    /* background-color: aqua; */
    /* max-width: 800px; */
    margin: auto;
    /* overflow: hidden; */
    height: 65vh;
    background-color: rgba(83, 81, 81, 0.062);

}

.slides1 {
    display: flex;
    /* transition: transform 0.5s ease; */
    /* background-color: aquamarine; */
}

.slide1 {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: center;
    /* min-width: 100%; */
    /* background-color: brown; */
    height: 65vh;
}

.slide1 img {
    width: 19%;
    /* Adjust the size of the images */
    margin: 5px;
    /* Space between images */
    transition: transform 0.9s ease;
    height: 60vh;
    border-radius: 50px;
    /* background-color: rgb(19, 19, 124); */
}

.slide1 img:hover {
    transform: scale(1.1);
    /* Zoom effect on hover */
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-40%);
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    cursor: pointer;
    font-size: 30px;
    padding: 10px;
    z-index: 1000;
}

.left {
    left: 10px;
}

.right {
    right: 10px;
}