* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body,
html {
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    justify-content: center;
    align-items: center;
}

/* Animations */
@keyframes slideIn_other {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    /* padding: 10px 20px; */
}

/* 
.navbar .logo {
    height: 100px;
} */

.nav-list {
    list-style-type: none;
    display: flex;
    margin-right: 50px;
}

.nav-list li {
    padding: 0 20px;
}

.nav-list li a {
    text-decoration: none;
    color: black;
    transition: color 0.3s ease-in-out;
}

.nav-list li a:hover {
    color: #04C2E9;
}


.navbar .logo {
    height: 100px;
    width: 100px;
    /* Adjust to maintain aspect ratio */
    margin-left: 75px;
    /* Maximum height to align with the navbar height */
    float: left;
    /* Adjust width automatically */
    /* Remove padding if necessary */
}

.nav-list li a.Active {
    color: #04C2E9;
    /* or any other color you want for the active state */
    font-weight: bold;
    /* optional, if you want to make it bold */
}

/* Image Gallery Button */
.more_btn{
    font-family: "Roboto";
    font-size: 18px;
    font-weight: bold;
    /* background: #1E90FF; */
    /* width: 10px; */
    /* padding: 5px; */
    /* text-align: center; */
    text-decoration: none;
    text-transform: lowercase;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
}
.more_btn:hover {
    /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); */
    color: #04C2E9;

}

/* Image Gallery */
.img-area {
	background-color: #dee;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 100vh;
	padding: 20px;
}
.client-wrapper {
	max-width: 1280px;
	margin: 0 auto;
	padding: 50px 20px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	grid-auto-rows: 280px;
	grid-auto-flow: dense;
	grid-gap: 25px;
	width: 100%;
}
.single-box {
	position: relative;
    border: 8px solid #04C2E9;
    overflow: hidden;
}
.single-box a {
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.single-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.9s;
	user-select: none;
}
/* .card-filter:hover .single-box img {
	transform: rotate(5deg) scale(1.4);
} */
.card-filter{
    width: 100%;
    height: 100%;
    top: 0;
    right: -100%;
    position: absolute;
    background: #1f3d4738;
    backdrop-filter: blur(5px);
    border-radius: 15px;
    color:#fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: 3s;
}
.single-box:hover .card-filter{
    right: 0;
}
.card-filter-title{
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 500;
}
.card-filter-title li {
    line-height: 25px;
    margin: 40px 0;
}

/* footer */
/* footer */
.footer {
    /* background: #252525; */
    background-image: url(../assets/images/Web_Footer.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 150px 0;
    line-height: 20px;
}

.container {
    max-width: 1170px;
    margin: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    /* margin-left: 20px; */
}

ul {
    list-style: none;

}

.footer-col_corner,
.footer-col {
    margin-left: 78px;
    width: 15%;
    /* padding: 0 8px; */
}


.footer-col_corner h4,
.footer-col h4 {
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 30px;
    font-weight: 500;
    position: relative;
}

.footer-col_corner h4::before,
.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #84A052;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.footer-col_corner ul li a,
.footer-col ul li a {
    font-size: 16px;
    text-transform: capitalize;
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all 0.3s ease;

}

.footer-col_corner ul li,
.footer-col ul li {
    font-size: 16px;
    text-transform: capitalize;
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all 0.3s ease;
}

.footer-col_corner ul li:hover,
.footer-col ul li:hover {
    color: #fff;
    padding-left: 10px;
}

.footer-col_corner ul li a:hover .footer-col ul li a:hover {
    color: #fff;
    padding-left: 10px;
}

.footer-col .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #fff;
    transition: all 0.4s ease;
}

.footer-col .social-links a:hover {
    color: #24262b;
    background-color: #fff;
}

.footercopyright {
    width: 100%;
    background-color: #33B6EA;
    height: 30px;
    justify-self: center;
}
