.kc-menu {
    padding: 0;
}

.kc-catmenu {
    padding: 1rem 12rem;
    background: red;
}

.kc-catmenu > ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.kc-catmenu > ul > li {
    flex: 1;
    text-align: center;
}

.kc-catmenu > ul > li > a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    line-height: 2rem;
    font-size: 1.2rem;
}

.kc-catmenu > ul > li > a:hover {
    color: lightgray;
}

.kc-thumbnail-card img {
    display: block;
    width: 100%;
    object-fit: contain;
}

.kc-thumbnail-card img:hover {
    opacity: 0.7;
}

.kc-thumbnail-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.kc-thumbnail-card {
    width: 33.3%;
}

.kc-banner .container a, .kc-banner .container a img {
    display: block;
    width: 100%;
}

.kc-banner a:hover img {
    opacity: 0.7;
}

.kc-highlight-maintitle {
    font-size: 22px;
    font-weight: bold;
    display: block;
}

.kc-highlight .container {
    display: flex;
}

.kc-highlight-box {
    flex: 1;
}

.kc-highlight-section {
    padding: .2rem;
}

.kc-highlight-section a:hover img {
    opacity: 0.7;
}

.kc-highlight-small .kc-highlight-img-box {
    padding-right: .7rem;
}

.kc-highlight-img {
    width: 100%;
    display: block;
}

.kc-highlight-small {
    flex: 1;
}

.kc-highlight-title {
    font-size: 20px;
    padding-bottom: .5rem;
	color: black;
	font-weight: bold;
	padding: 0;
}

.kc-highlight-content {
    font-size: 1.3rem;
	color: black;
}

.kc-highlight-small > a {
    display: flex;
    flex-direction: row;
}

.kc-highlight-small > a > div {
    flex: 1;
}


.kc-main-box {
    display: flex;
    flex-wrap: wrap;
}

.kc-post {
    width: 24%;
    display: block;
    margin: 0.3%;
}

.kc-post:hover img {
    opacity: 0.7;
}

.kc-post-title {
    font-size: 1.5rem;
    font-weight: bold;
	color: black;
}

.kc-post-content {
    padding: 0 0;
}

.kc-post-img {
    position: relative;
    width: 100%;
    padding-top: 52.5%;
}

.kc-post-img-box {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.kc-post-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: white;
}

/*KCSLIDESHOW*/

.kc-slideshow {
    display: none;
}

.kc-slideshow-box {
    position: relative;
    margin: auto;
    max-width: 100%;
}

.kc-slideshow-card {
    display: none;
}

.kc-slideshow-card a {
    display: block;
}

.kc-slideshow-card a img {
    vertical-align: center;
    width: 100%;
    object-fit: contain;
}

.kc-slideshow-box .prev, .kc-slideshow-box .next {
cursor: pointer;
position: absolute;
     top: 50%;
    width: auto;
     padding: 16px;
   margin-top: -22px; 
     color: white; 
    font-weight: bold;
     font-size: 18px; 
    border-radius: 0 3px 3px 0;
    transition: 0.6s ease;
    user-select: none;
}

.kc-slideshow-box .next {
    border-radius: 3px 0 0 3px;
    right: 0;
}

.kc-slideshow-box .prev:hover, .kc-slideshow-box .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 20px;
    background-color: #BBB;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}

/* Fading animation */
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}
