.ml10 {
    position: relative;
    font-weight: 900;
    font-size: 1.0em;
    color: white;
}

.ml10 .text-wrapper {
    position: relative;
    display: inline-block;
    padding-top: 0.2em;
    padding-right: 0.05em;
    padding-bottom: 0.1em;
    overflow: hidden;
}

.ml10 .letter {
    display: inline-block;
    line-height: 1em;
    transform-origin: 0 0;
}

.focus-item {
    border-radius: 25px;
    /* padding: 20px; */
    width: 25%;
    /* height: 150px; */
    position: relative;
    display: inline-block;
    vertical-align: bottom;
    text-align: center;
    opacity: 0.9;
    border-width: 15px;
    border-color: red;

    background: #396dcf;
    
    top: 0px;
    z-index: 150;
}

.focus-item-title {
    top: 10px;
    /* height: 50px; */
    color: white;
    font-size: 32px;
    font-family: '휴먼모음T';
    text-shadow: 3px 3px 6px #000000;
}

.focus-item-content {
    top: 10px;
    left: 5px;
    z-index: 151;
    color: white;
    font-weight: bold;
    font-size: 14px;
    text-align: left;
    font-family: '맑은 고딕';
    margin-bottom: 10px;
}


@keyframes changebackground {
    0% {

        background: white;
    }

    100% {

        background: #FF8C00;
        /*   orange yellow= #FFCC00 , dark orange=#FF8C00 (origin), orange peel= #FF9E01 */
    }
}



.fade {
    animation-name: fade;
    animation-duration: 3.0s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

.mySlides {
    display: none;
}

img {
    vertical-align: middle;
}


.dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active {
    background-color: #3b7bc7;
}



.button {
    background-color: #27b5e3;
    /* Green */
    border: none;
    color: white;
    padding: 5px 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
    text-shadow: 3px 3px 6px #000000;
}

    
