*,h1,h2,h3,h4,h5,h6{
    font-family: "Fira Sans", sans-serif;
}
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

.swiper-slide img {
    display: block;
    width: 150px;
    object-fit: cover;
}

.swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    color: #000;
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
}

.swiper-pagination-bullet-active {
    color: #fff;
    background: #2d3721;
}

.logo-img {
    width: 100px !important;
}

header {
    background: rgb(207, 197, 36);
    background: linear-gradient(90deg, rgba(207, 197, 36, 1) 0%, rgba(233, 222, 42, 1) 50%, rgba(207, 197, 36, 1) 100%);
}

.swiper-button-next,
.swiper-button-prev {
    color: #2d3721;
}

.swiper-inner-wrapper {
    border-radius: 10px;
    overflow: hidden;
}

.swiper-inner-wrapper h5 {
    background: #d3d3d3;
    color: black;
}

ul,
li {
    list-style: none;
}

footer {
    background: rgb(45, 55, 33);
    background: linear-gradient(90deg, rgba(45, 55, 33, 1) 0%, rgb(49, 85, 5) 50%, rgba(45, 55, 33, 1) 100%);
}

@media (max-width: 575px) {
    .logo-img {
        width: 70px !important;
    }
}

.image-gallery {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
}

.image-gallery div {
    flex-grow: 1;
    margin: 5px;
    overflow: hidden;
    cursor: pointer;
}

.image-gallery img {
    width: 100%;
    height: 200px;
    /* object-fit: cover; */
    transition: all 0.3s ease-in;
}

.image-gallery img:hover {
    transform: scale(1.2);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;
}

.about-us-wrapper p{
    text-align: justify;
    font-size: 16px;
    color: #535353;
}

.about-us-wrapper img{
    max-width: 250px;
}
.title h2{
    position: relative;
    width: fit-content;
    margin: 0 auto !important;
}
.title h1{
    position: relative;
    width: fit-content;
}
.title h2::before, .title h1::before{
    content: '';
    height: 3px;
    width: 65px;
    background-color: #2d3721;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translate(-50%, 0px);
}