html{
	overflow-x:hidden;
}

#bannerWrap{
    
    height: 76%;
    width: 100%;
    position: relative;
}

#bannerWrap img{
	z-index: 10;
	position: relative;
	width: 100%;
	height: 100%;
}
#bannerWrap em{
	z-index:50;
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: rgba(0, 0, 0, 0.256);
    
}



#bannerWrap i{
    font-family: 'sb';
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.797);
    position: absolute;
    z-index: 900;
    top:50%;
    width: 100%;
    text-align: center;
    transform : translateY(-50%);
    left:0;
}



article{

}

.companyInfo{
    
    padding: 10vh 10%;
    text-align: center;
    color: black;
    position: relative;
    padding-bottom: 20vh;
}

.companyInfo svg{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 80;
}

.companyInfo h3{
    font-size: 1.8rem;
    font-family: 'sb';
    padding: 1vh 0;
}
.companyInfo h2{
    font-size: 2.2rem;
    font-family: 'b';
    margin-bottom: 2vh;
}


.companyInfo p{
    margin-top: 2vh;
    line-height: 2;
    font-size: 1.5rem;
    font-family: 'm';
}

.companyInfo p:last-of-type{
    font-family: 'b';
    position: relative;
    z-index: 90;
}

.itemWrap{
    
    padding: 10vh 0;
}

.item:nth-of-type(even){
    background-color: #EEF3F8;
}

.item{
    margin-bottom: 5vh;
    padding: 6vh 10%;
}

.item h2{
    font-family: 'b';
    font-size: 1.8rem;
    padding-bottom: 5vh;
    padding-left: 6%;
    padding-right: 6%;
    display: flex;
}

.item h2 i{
	flex:9;
}

.item h2 button{
	flex: 1;
    align-self: end;
    font-family: 'm';
    font-size: 1.2rem;
    padding: 1.5vh 0;
    border: none;
    border-radius: 10px;
    background: #000000b5;
    color: #fff;
    box-shadow: 1px 1px 5px #00000060;
    
}

.item h2 button:hover{
	
	opacity: 0.8;
}

.row{
    position: relative;
}

.btnWrap{
    position: absolute;
    width: 100%;
    height: 100%;
    
}

.btnWrap button{
	z-index:99;
    width: 6%;
    height: 100%;
    border: none;
    position: absolute;
    background-color: transparent;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url('/img/arrow-left.png');
}

.btnWrap button:last-of-type{
    right: 0;
    background-image: url('/img/arrow-right.png');
}

.photoWrap{
    height: 62vh;
    width: 88%;
    margin: 0 auto;
    white-space: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    padding: 1% 0;
    position: relative;
    z-index: 80;
    
}

.photoWrap::-webkit-scrollbar{
    display: none;
}

.photo{
    background-color: white;
    border: 1px solid #80808021;
    margin-right: 2%;
    display: inline-block;
    box-shadow: -1px 1px 10px rgba(128, 128, 128, 0.148);
    border-radius: 10px;
    width: calc(100% / 3.5);
    height: 100%;
    
  	position: relative;
  	vertical-align: top;
}
.photo img{
	width:100%;
    height: 70%;
}

.photo  .info{
    height: 30%;
    font-size: 1.2rem;
}

.info em{
	display:block;
    font-family: 'b';
    height: 50%;
    
    display:flex;
    align-items:center;
    justify-content:center;
    
    word-break: break-all;
    text-align: center;
    white-space: wrap;
}

.info strong{
	display:block;
    font-family: 'm';
    height: 50%;
    
    padding-top:1%;
    
    word-break: break-all;
    text-align: center;
    white-space: wrap;
    
}


@media (min-width:600px) and (max-width:950px){
	
	.item h2 button{
		flex: 2;
    }
    
}


@media (max-width:600px) {
    
 

    #bannerWrap{
        height: 65%;
    }

    #bannerWrap i{
    	padding: 0 5%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        
    }

    #bannerWrap span{
        padding: 1% 0;
    }
    
    .companyInfo{
    	padding-top: 7vh;
    }

   
    .companyInfo h3{
        font-size: 1.5rem;
    }
    .companyInfo h2{
        font-size: 1.8rem;
    }
    .companyInfo p{
        margin-top: 5%;
        font-size: 1.2rem;
    }
    
   .item h2 button{
	flex: 3;
    }
    
  	.item{
  		padding: 6vh 5%;
  	}
  	
  	.photoWrap{
  		height: 50vh;
  		width: 100%;
  	}
  	
  	.photo{
  		width: 48%;
  		height: 90%;
  	}

    .btnWrap button{
            width: 15%;
    }
    .btnWrap button:first-of-type{
        left: -8%;
    }
    .btnWrap button:last-of-type{
        right: -8%;
    }


}