@charset "UTF-8";
/* CSS Document */

.main-img {
	width: 100%;
	margin: 0;
	padding: 0;
	position: relative;
	overflow: hidden;
	z-index: 0;
}

.ind-sec {
    width: 100%;
    margin: 0;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.blue-sec {
    background-color: #EDFCFF;
}

.ind-wrap {
	width: 98%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
	position: relative;
}

h2 {
    width: 100%;
    margin: 0 0 60px;
    padding: 0;
    position: relative;
    overflow: hidden;
    font-size: 210%;
    line-height: 180%;
    font-weight: bold;
    color: #037A91;
    text-align: center;
}

h2:after {
    content: "";
    display: block;
    margin: 0 auto;
    height: 10px;
    width: 100px;
    background-image: url("../img/index/hdr2-line.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}



/**PAGE CONTENTS**/
ul.page-cont {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: visible;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

ul.page-cont li {
    width: 30%;
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
    border-radius: 30px;
	
	transition: ease-in-out 0.3s;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(163,187,199,0);
-moz-box-shadow: 0px 0px 10px 0px rgba(163,187,199,0);
box-shadow: 0px 0px 10px 0px rgba(163,187,199,0);
}

ul.page-cont li:hover {
	-webkit-box-shadow: 0px 0px 10px 0px rgba(163,187,199,1);
-moz-box-shadow: 0px 0px 10px 0px rgba(163,187,199,1);
box-shadow: 0px 0px 10px 0px rgba(163,187,199,1);
}

ul.page-cont li a {
    width: 90%;
    margin: 0 auto;
    padding: 30px 5%;
    display: block;
}

ul.page-cont li h3 {
    width: 100%;
    margin: 0 0 10px;
    padding: 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    font-size: 150%;
    font-weight: bold;
    color: #1B879C;
}

ul.page-cont li img {
    width: 70%;
    max-width: 300px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    overflow: hidden;
    display: block;
}

ul.student-content {
    width: 100%;
    margin: 0;
	padding: 0;
    position: relative;
    overflow: hidden;
    list-style: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-content: space-between;
}

ul.student-content li {
    width: 31%;
    margin: 0 0 20px;
    border: solid 1px #C6D6D9;
    font-weight: bold;
}

ul.student-content li a {
    width: 90%;
    margin: 0 auto;
    padding: 20px 5%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000000; 
    background-color: #FFFFFF;
    transition: all 0.5s;
}

ul.student-content li a:hover {
    background-color: #EDFCFF;
}

ul.student-content li a:after {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    background-image: url("../img/index/pagecontent-arr.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}