/*----------------------------------------
 포트폴리오
-------------------------------------------*/

.card-portfolio {
    position: relative;
    float: left;
    width: 100%;
    margin: 5px 0px;
    background-color: #FFF;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #EEE;
}
.card-portfolio .thumb {
    display: block;
    width: 150px;
    height: 150px;    
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 auto;
}
.card-portfolio .label {
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: #1d9bd4;
    border-radius: 0px 0px 0px 8px;
    font-size: 15px;
    font-weight: 400;
}
.card-portfolio .description {
    float: left;
    margin-left: 30px;
}
.card-portfolio h1 {
    font-size: 20px;    
    margin-top: 50px;
}
.card-portfolio .client {
    width: 150px;
}
.card-portfolio p {
    font-size: 14px;
}
.year-selector-wrap {
    margin-bottom: 5px;
    float: left;
}
.year-selector {
    width: 100%;
    float: left;
    background-color: #EEEE;
    padding: 5px 30px;
    border: 1px solid #EEE;
    cursor: pointer;
}
.year-selector-active {
    background-color: #1d9bd4;
    color: #FFF;
}

@media (min-width: 768px) {
    .year-selector {
        width: 90px;
    }
    .card-portfolio .thumb {
        margin: 0px 30px;        
        float: left;
    }
}

/*----------------------------------------
 잇팩 타임라인
-------------------------------------------*/

.blog-grid-img {
    width: 100%;
    height: 210px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.timeline {
    background-color: #F7F7F7;
    border: 1px solid #EEE;
    border-radius: 5px;
}
.timeline .company {
    width: 100px;
    height: 55px;
    float: left;
    display: inline-block;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.timeline span {
    float: left;
    margin-left: 30px;
}
.timeline li {
    list-style: none;
    height: 60px;
    line-height: 60px;
    border: 1px solid #f1f1f1;
    margin: 10px 0px;
    padding: 0px 10px;
    background-color: #FFF;
    border-radius: 6px;  
    cursor: default;
    transition: 0.3s;
}
.timeline li:hover {
    border: 1px solid #1d9bd4;
}
.entry .title h3 {
    font-size: 40px !important;
    color: #4e4e4e !important;
}

.timeline {
  width:100%;
  padding: 20px 50px;
  position: relative;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0px;
    left:calc(33% + 15px);
    bottom: 0px;
    width: 4px;
    background: #1d9bd4;
}
.timeline::after {
    content: "";
    display: table;
    clear: both;
}

    
.entry {
  clear: both;
  text-align: left;
  position: relative;
}
    
.entry .title {
    margin-bottom: .5em;
    float: left;
    width: 33%;
    padding-right: 30px;
    text-align: right;
    position: relative;
}
.entry .title::before {
    content: '';
    position: absolute;
    width: 19px;
    height: 19px;
    border: 4px solid #4e96ff;
    background-color: #fff;
    border-radius: 100%;
    top: 15%;
    right: -9px;
    z-index: 99;
}
.entry .title h3 {
    margin: 0;
    font-size: 50px;
    color: #737373;
}  
.entry .title p {
    margin: 0;
    font-size: 100%;
}
.entry .body {
    margin: 0 0 3em;
    float: right;
    width: 66%;
    padding-left: 30px;
    font-size: 16px;
    line-height: 30px;
}
.entry .body p {
    line-height: 1.4em;
}
.entry .body p:first-child {
    margin-top: 0;
    font-weight: 400;
}
.entry .body p ul {
    color:#aaa;
    padding-left: 0;
    list-style-type: none;
}
.entry .body p ul li::before {
    content: "–";
    margin-right: .5em;
}
    