@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Serif+Pro:wght@200;300&display=swap');
:root{
	--main-color: #211F38;
	--sub-color:  #B61919;
	--text-color: #FFFFFF;
	--bg-color: #162447;
	--title-color: #E22333;
}

*{
	margin: 0;
	padding: 0;
	outline: none;
	box-sizing: border-box;
	font-family: 'Source Serif Pro', serif;
}

.btn{
	background-color: var(--sub-color);;
	padding: 12px 20px;
	border: 2px solid var(--sub-color);
	border-radius: 50px;
	color: var(--text-color);
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 18px;
	font-family: 'Roboto', sans-serif;
}

.btn:hover{
	background-color: var(--text-color);
	color: black;
}

ul{
	list-style: none;
}

a{
	text-decoration: none;
}

.section-pading{
	padding: 60px 0;
}

.justify-content{
	justify-content: center;
}

.container{
	margin: auto;
	max-width: 1200px;
}

.row{
	display: flex;
	flex-wrap: wrap;
}

.top{
	background-color: var(--text-color);;
	position: fixed;
	width: 100vw;
	z-index: 1;
}

.top::before{
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: -1;
	transform: translateY(-100%);
	transition: all 0.3s ease;
}

.top.active::before{
	transform: translateY(0);
}

.top .logo{
	margin-top: 5px;
	margin-bottom: 5px;
}

.top .logo img{
	padding-right: 30px;
}

.top .menu-bar{
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.top .menu-bar.active{
	position: fixed;
	top: 30px;
	right: 0;
	transform: translateX(-200px);
	z-index: 1;
	width: 230px;
}

.top .menu-bar span{
	display: block;
	background-color: var(--sub-color);
	position: relative;
}


.top .menu-bar span::before{
	height: 100%;
	width: 100%;
	content: "";
	display: block;
	position: absolute;
	transform: translateY(-10px);
	background-color: var(--sub-color);
	transition: all 0.3s ease;
}

.top .menu-bar span::after{
	height: 100%;
	width: 100%;
	content: "";
	display: block;
	position: absolute;
	transform: translateY(10px);
	background-color: var(--sub-color);
	transition: all 0.3s ease;
}

.menu-items{
	position: fixed;
	width: 350px;
	height: 100vh;
	background-color: var(--main-color);
	right: 0;
	top: 0;
	padding: 100px 50px;
	transform: translateX(100%);
	transition: all 0.3s ease;
}

.menu-items.active{
	transform: translateX(0);
}
.menu-items a{
	color: var(--text-color);
	line-height: 50px;
	font-size: 25px;
	font-family: 'Roboto', sans-serif;
}

/* banner */

.header{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100vh;
	position: relative;
	overflow: hidden;
}

.header::before{
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background-image: url(img/banner.png);
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	z-index: -2;
	animation: Inout 5s infinite;
}

@keyframes Inout{
	0%,100%{
		transform: scale(1.0);
	}
	50%{
		transform: scale(1.1);
	}
}

.header::after{
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: black;
	opacity: 0.6;
	z-index: -2;
}

.header .banner{
	text-align: center;
	max-width: 1100px;
}

.header .banner h1{
	font-size: 48px;
	color: var(--text-color);
	font-weight: bold;
	font-family: 'Roboto', sans-serif;
}

.header .banner p{
	font-size: 50px;
	color: var(--text-color);
	font-weight: lighter;
	font-family: 'Roboto', sans-serif;
	margin-top: 20px;
}

.banner-btn{
	margin-top: 50px;
}

/* Giới thiệu về La Trobe */
.about{
	background-color: var(--text-color);
}

.section-title{
	width: 100%;
	text-align: center;
	margin-bottom: 30px;
}

.section-title h2{
	font-size: 50px;
	color: var(--title-color);
}

.section-title h2::before{
	content: attr(data-title);
	display: block;
	color: var(--main-color);
	font-size: 30px;
	font-weight: lighter;
}

.sub-title h2::before{
	content: attr(data-title);
	display: block;
	color: var(--text-color);
	font-size: 30px;
	font-weight: lighter;
}


.about .about-item p{
	margin: 15px 0 80px;
	font-size: 18px;
	text-align: justify;
	color: var(--main-color);
	font-family: 'Roboto', sans-serif;
}

.about .about-item img{
	width: 100%;
	border-radius: 10px;
}

.about-item{
	width: calc(100%/2);
	padding: 15px;
}

.about-item-img{
	position: relative;
}


.about-item-img span{
	position: absolute;
	top: 50%;
	left: 50%;
	color: var(--text-color);
	font-weight: 900;
	font-size: 30px;
	transform: translate(-50%,-50%);
	width: 330px;
	text-align: center;
	font-family: 'Roboto', sans-serif;
}

.about-item-img::before{
	content: "";
	display: block;
	width: 100px;
	height: 100px;
	border: 3px solid var(--sub-color);
	position: absolute;
	top: calc(50% - 50px);
	left: calc(50% - 50px);
	transform: translate(-50%,-50%);
	animation: rotate 5s infinite;
}

@keyframes rotate{
	0% {
		transform: rotate(0deg);
	}
	100%{
		transform: rotate(360deg);
	}
}

/* Chương trình liên kết đào tạo */

.menu{
	background-color: var(--bg-color);
}

.program-items{
	width: 50%;
	display: flex;
	padding: 50px 0 15px 0;
	position: relative;
}

.program-items::before{
	content: "";
	display: block;
	position: absolute;
	left: 0px;
	right: 30px;
	bottom: -10px;
	border: 1px solid var(--main-color);
}


.program-items:hover .program-item h3{
	color: var(--title-color);
	cursor: pointer;
}

.program-item{
	display: flex;
}

.program-item img{
	width: 150px;
	margin-right: 25px;
}


.program-item .detail h3{
	color: var(--text-color);
	transition: all 0.3s ease;
	font-family: 'Roboto', sans-serif;
}

.program-item .detail p{
	color: var(--text-color);
	font-family: 'Roboto', sans-serif;
	margin-top: 50px;
	cursor: pointer;
}

/* Sinh viên tiêu biểu */

.feedback{
	background-color: var(--text-color);
}

.feedback-items{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.feedback-item{
	width: calc(100%/3 - 30px);
	margin: 0 15px;
	border: 1px solid var(--bg-color);
	padding: 15px;
	border-radius: 10px;
	background-color: var(--bg-color);
}

.feedback-item:hover img{
	border: 4px solid var(--sub-color);
}

.feedback-item span{
	color: var(--text-color);
	font-family: 'Roboto', sans-serif;
}

.feedback-item h2{
	color: var(--text-color);
	font-family: 'Roboto', sans-serif;
	font-size: 20px;
	margin: 20px 0;
}

.feedback-item p{
	color: var(--text-color);
	font-size: 18px;
	margin: 20px 0;
	font-family: 'Roboto', sans-serif;
	text-align: justify;
}

.feedback-item img{
	width: 100px;
	transition: all 0.5s ease;
	border-radius: 50%;
}

.feedback-content{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* Tin tức */

.news{
	background-color: var(--bg-color);
}

.news-items{
	padding: 15px;
	width: calc(100%/3);
	position: relative;
	top: 5px;
	padding-bottom: 50px;
}

.news-items img{
	width: 100%;
	border-radius: 10px;
	transition: all 0.3s ease;
}

.news-items:hover .news-items-text{
	background-color: var(--sub-color);
	transform: translateY(20px);
}


.news-items-text{
	position: absolute;
	padding: 15px 0;
	right: 30px;
	left: 30px;
	bottom: 50px;
	background-color: #0F3460;
	text-align: center;
	border-radius: 10px;
	transform: translateY(50%);
	transition: all 0.3s ease;
	cursor: pointer;
}

.news-items-text h3{
	color: var(--text-color);
	padding: 15px;
	font-family: 'Roboto', sans-serif;
}

/* Footer */

.footer{
	background-color: var(--text-color);
	padding-top: 60px;
}

.footer-item{
	text-align: left;
	width: calc(100%/3);
	margin-right: 30px;
}

.footer .logo{
	text-align: left;
	width: 300px;
}

.footer h2{
	color: var(--bg-color);
	font-size: 25px;
}

.footer p{
	margin: 20px 0;
	color: var(--bg-color);
	font-size: 18px;
	line-height: 30px;
	font-family: 'Source Serif Pro', serif;
	font-weight: bold;
}

.footer-copyright{
	text-align: center;
	padding: 50px 0 12px;
	color: var(--bg-color);
	border-top: 1px solid var(--bg-color);
	margin-top: 20px;
}