@import "bootstrap.min.css";
@import "font-awesome.min.css";
@import "animate.min.css";
@import "prettyPhoto.css";
@import "main.css";
@import "responsive.css";

.d-flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-column {
    flex-direction: column;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-end {
    justify-content: end;
}

.justify-content-start {
    justify-content: start;
}

.justify-content-between {
    justify-content: space-between;
}

.font-weight-bold {
    font-weight: bold;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.blog-footer {
    background-color: #f5f5f5;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 0 10px #cdcdcd;
}

.blog-footer p {
    margin-bottom: 0;
    font-size: 12px;
}


.services-wrap .img-responsive {
    height: 66px;
}

.services-wrap .media-body p {
    min-height: 66px;
}

#content .media-body {
    height: 254px;
}

#content .tab-content {
    height: 100%;
}

#content .tab-content .tab-pane {
    height: 100%;
}

#content .tab-content .tab-pane .d-flex {
    height: 100%;
    align-items: center;
}

#content .tab-content .tab-pane .d-flex img {
    width: 30%;
    margin-right: 20px;
}

.jump-link-btn {
    padding: 8px 20px;
    background: #14964f;
    color: #fff;
    border: 1px solid #14964f;
    border-radius: 4px;
    margin-top: 25px;
    display: inline-block;
    animation: fadeInDown 300ms linear 900ms both;
}

.jump-link-btn:hover {
    color: #14964f;
    background-color: transparent;
}

.blog-content img {
    width: 100%;
    max-width: 100%;
}

.prev-next div {
    background-color: #F5F5F5;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px #cdcdcd;
}

.blog .blog-item .img-blog {
    max-height: 300px;
    object-fit: cover;
}

.gap-1 {
    gap: 10px;
}

.d-none {
    display: none;
}

@media screen and (min-width: 400px) {
    .d-sm-block {
        display: block;
    }
}

.d-grid {
    display: grid;
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media screen and (max-width: 900px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 500px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }
}