﻿.container-grid{
    display: grid;
    display: -ms-grid;
    grid-template-columns: 1fr 1200px 1fr;
    grid-template-rows: 291px 463px 326px;
    -ms-grid-columns: 1fr 1200px 1fr;
    -ms-grid-rows: 291px 463px 326px;
    background: url(../images/bg.png) no-repeat bottom;
}

.header-grid{
    grid-area: 1/2/2/3;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
}

.logo{
    margin-top: 30px;
}

.title{
    margin-top: 59px;
    text-align: center;
}

.main-grid{
    grid-area: 2/2/3/3;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
}

.main-wrap{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.temp-title-wrap{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 35px;
}

.temp-title-icon{
    width: 6px;
	height: 32px;
	background-image: -webkit-gradient(linear, 
		left bottom, left top, 
		from(#a40e16), 
		to(#e06060));
	background-image: -webkit-linear-gradient(bottom, 
		#a40e16 0%, 
		#e06060 100%);
	background-image: -moz-linear-gradient(bottom, 
		#a40e16 0%, 
		#e06060 100%);
	background-image: -o-linear-gradient(bottom, 
		#a40e16 0%, 
		#e06060 100%);
	background-image: linear-gradient(0deg, 
		#a40e16 0%, 
		#e06060 100%);
	border-radius: 3px;
    margin-right: 9px;
}

.temp-title-name{
    font-size: 24px;
	font-weight: bold;
	letter-spacing: 2px;
	color: #191919;
}

.school-file-wrap{
    width: 756px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-align-content: space-between;
        -ms-flex-line-pack: justify;
            align-content: space-between;
}

.school-file-wrap li{
    width: 245px;
	height: 396px;
	background-color: #ffffff;
	-webkit-box-shadow: 0px 3px 12px 0px 
		rgba(191, 83, 99, 0.3);
	        box-shadow: 0px 3px 12px 0px 
		rgba(191, 83, 99, 0.3);
	border-radius: 10px;
}

.school-file-wrap li a{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    width: 100%;
    border-radius: 10px;
}

.school-file-wrap li a i{
    -webkit-transform: perspective(1000px) rotateY(0deg);
       -moz-transform: perspective(1000px) rotateY(0deg);
            transform: perspective(1000px) rotateY(0deg);
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    -o-transition: -o-transform 0.5s ease;
    -moz-transition: transform 0.5s ease, -moz-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease, -moz-transform 0.5s ease, -o-transform 0.5s ease;
}

.school-file-wrap li:hover a i{
    -webkit-transform: perspective(1000px) rotateY(180deg);
       -moz-transform: perspective(1000px) rotateY(180deg);
            transform: perspective(1000px) rotateY(180deg);
}

.school-file-wrap li:hover a span{
    color: #a40e16;
}

.school-file-wrap li:nth-child(1) a{
    background: url(../images/icon1-bg.png) no-repeat;
    -o-background-size: 100% 100%;
       background-size: 100% 100%;
}

.school-file-wrap li:nth-child(2) a{
    background: url(../images/icon2-bg.png) no-repeat;
    -o-background-size: 100% 100%;
       background-size: 100% 100%;
}

.school-file-wrap li:nth-child(3) a{
    background: url(../images/icon3-bg.png) no-repeat;
    -o-background-size: 100% 100%;
       background-size: 100% 100%;
}

/* .school-file-wrap li:nth-child(4) a{
    background: url(../images/icon4-bg.png) no-repeat;
    -o-background-size: 100% 100%;
       background-size: 100% 100%;
}

.school-file-wrap li:nth-child(5) a{
    background: url(../images/icon5-bg.png) no-repeat;
    -o-background-size: 100% 100%;
       background-size: 100% 100%;
} */

.school-file-wrap li:nth-child(1) a i{
    width: 115px;
	height: 115px;
    background: url(../images/icon1.png);
    margin-top: 111px;
    margin-bottom: 19px;
}

.school-file-wrap li:nth-child(2) a i{
    width: 114px;
	height: 116px;
    background: url(../images/icon2.png);
    margin-top: 111px;
    margin-bottom: 18px;
}

.school-file-wrap li:nth-child(3) a i{
    width: 118px;
	height: 114px;
    background: url(../images/icon3.png);
    margin-top: 111px;
    margin-bottom: 19px;
}

/* .school-file-wrap li:nth-child(3) a i{
    width: 65px;
	height: 63px;
    background: url(../images/icon3.png);
    margin-top: 31px;
    margin-bottom: 11px;
}

.school-file-wrap li:nth-child(4) a i{
    width: 64px;
	height: 64px;
    background: url(../images/icon4.png);
    margin-top: 38px;
    margin-bottom: 11px;
} */

.school-file-wrap li a span{
    font-size: 20px;
	font-weight: bold;
	letter-spacing: 2px;
	color: #3a3a3a;
}

.main-right{
    width: 430px;
}

.login-wrap{
    width: 430px;
	height: 396px;
	background-color: #ffffff;
	-webkit-box-shadow: 0px 3px 12px 0px 
		rgba(191, 83, 99, 0.33);
	        box-shadow: 0px 3px 12px 0px 
		rgba(191, 83, 99, 0.33);
	border-radius: 10px;
}

.user-wrap{
    margin: 0 36px;
    margin-top: 73px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.user-icon{
    margin-right: 14px;
}

.user-input{
    height: 33px;
    width: 314px;
    border: none;
    border-bottom: solid 1px #e06060;
    font-size: 20px;
    padding-left: 10px;
	letter-spacing: 2px;
	color: #808080;
}

.pwd-wrap{
    margin: 0 36px;
    margin-top: 79px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.pwd-icon{
    margin-right: 15px;
}

.pwd-input{
    height: 32px;
    width: 314px;
    border: none;
    border-bottom: solid 1px #e06060;
    font-size: 20px;
    padding-left: 10px;
	letter-spacing: 2px;
	color: #808080;
}

.login-btn{
    display: block;
    margin: 0 23px;
    margin-top: 73px;
    height: 64px;
	border-radius: 10px;
	border: solid 1px #a40e16;
    line-height: 64px;
    text-align: center;
    font-size: 24px;
	font-weight: bold;
	letter-spacing: 2px;
	color: #191919;
}

.login-btn:hover{
    background-color: #ab1c20;
    color: #ffffff;
}

.footer{
    grid-area: 3/2/4/3;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
}

.footer p{
    text-align: center;
    margin-top: 161px;
    font-size: 12px;
	letter-spacing: 1px;
	color: #191919;
}