
@import url("../fonts/flaticon/flaticon.css");
@import url("../fonts/thin/thin.css");
@import url("../css/all.min.css");
@import url("revise.css");
@import url("header.css");
@import url("footer.css");
@import url("banner.css");


/*========================================================
                      	 標題設定
=========================================================*/


.h2-title {
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}
.h2-title:after {
    content: '';
    display: block;
    width: 180px;
    height: 3px;
    background-color: #eb2d41;
    margin: 10px auto;
}


/*========================================================
                         服務項目
=========================================================*/


.service-item {
    position: relative;
    padding: 40px 20px 80px;

}
.service-item h2 {
    border-left: 5px solid #2ca8e1;
    padding-left: 10px;
    font-size: 1.5rem;
    color: #000;
    font-weight: bold;
}
.service-item img {
    width: 100%;
    vertical-align: bottom;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.service-item ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.service-item ul li {
}
.service-item ul li a {
    display: block;
    background: url("../img/index/service-icon1.jpg") no-repeat 0 center;
    padding-left: 20px;
    color: #000;
    transition: all 0.3s;
}
.service-item ul li a:hover {
    background: url("../img/index/service-icon1.jpg") no-repeat 10px center;
    background-color: #2ca8e1;
    padding-left: 30px;
    color: #fff;
}
.service-btn {
    position: absolute;
    bottom: 30px;
    right: 20px;
    z-index: 2;
}
.service-btn a {
    background: #2ba5e0;
    background: -moz-linear-gradient(top,  #2ba5e0 0%, #1a83d5 100%);
    background: -webkit-linear-gradient(top,  #2ba5e0 0%,#1a83d5 100%);
    background: linear-gradient(to bottom,  #2ba5e0 0%,#1a83d5 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2ba5e0', endColorstr='#1a83d5',GradientType=0 );
    display: inline-block;
    padding: 3px 20px;
    color: #ffff;
    transition: all 0.3s;
    border-radius: 7px;
}
.service-btn a:hover {
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#456da5+0,003b95+100 */
background: #003b95; /* Old browsers */
background: -moz-linear-gradient(top,  #003b95 0%, #456da5 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  #003b95 0%, #456da5 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  #003b95 0%, #456da5 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#003b95', endColorstr='#456da5',GradientType=0 ); /* IE6-9 */

}

@media (max-width: 1199px) {
    .service-wrap [class*="col-"] {
        border-bottom: 1px solid #dedede;
    }
}
@media (min-width: 768px) {
    .service-item ul {
        min-height: 100px;
    } 
}
@media (min-width: 1200px) {
    .service-wrap [class*="col-"] {
        border-right: 1px solid #dedede;
    }
    .service-wrap [class*="col-"]:last-of-type {
        border-right: 1px solid #fff;
    }
}

/*========================================================
                         圖片效果
=========================================================*/

a.figure {
	display: block;
	position: relative;
	}
a.figure:before,a.figure:after {
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    z-index: 10;
    content: '';
    display: inline-block;
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    transition: .3s; 
}
a.figure:before {
    background: #fff;
}
a.figure:after {
    background: url(../images/magnifier.png) no-repeat center center;
}
a.figure:hover:before, a.figure:hover:after {
    -webkit-transform: scale(1);
    transform: scale(1);
}
a.figure:hover:before {
    opacity: 0.15;
}
a.figure:hover:after {
    opacity: 1;
}


.picture-effect {
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.picture-effect img {
	transform: scale(1);
	transition: .3s ease-out all;
}
.picture-effect a {
	display: block;
	position: relative;
}
.picture-effect a:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(12, 56, 98, 0.4);
	pointer-events: none;
	z-index: 1;
	opacity: 0;
	transition: .3s ease-out all;
}
.picture-effect a:hover:before {
	opacity: 1;
}
.picture-effect a:hover img {
	transform: scale(1.1);
}

