/*** Service Start ***/
.service .service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2) ;
}
.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.service-content{
    height: 194px;
}
.service .service-item .service-img img {
    transition: 0.5s;
}
.service .service-item .service-img::before {
    width: 100%;
    height: 0;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
    z-index: 5;
}
.service .service-item:hover .service-img::before {
    height: 100%;
    /*background: rgba(21, 185, 217, .3);*/
    background: #0F1857;
}
.service .service-item .service-img:hover img {
    transform: scale(1.3);
}
.service .service-item .service-content {
    position: relative;
    z-index: 2;
}
.service .service-item .service-content::before {
    width: 100%;
    height: 8px;
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    /*background: rgba(21, 185, 217, .5);*/
    background: #0F1857;
    transition: 0.5s;
    z-index: 3;
}
.service .service-item:hover .service-content::before {
    /*background: rgba(21, 185, 217, .5);*/
    background: #0F1857;
    height: 100%;
}
.service .service-item .service-content .service-content-inner {
    transition: 0.5s;
}
.service .service-item:hover .service-content .service-content-inner {
    position: relative;
    color: var(--bs-white) !important;
    z-index: 9;
}
.service .service-item:hover .service-content .service-content-inner h5 {
    /*color: var(--bs-secondary);*/
    color: var(--bs-white) !important;;
}
/*** Service End ***/
#blogn {
    max-width: 600px;
    margin: auto;
}
#posts {
    margin-bottom: 20px;
}
#postForm {
    display: flex;
    flex-direction: column;
}
#postContent {
    resize: none;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 16px;
}
/*----------------------------------------------------------------------------*/
body{
    font-family: "Nanum Gothic", sans-serif;
}