@font-face{
	font-family: 'cabin-regular'; /*a name to be used later*/
    src: url('../fonts/Cabin-Regular.ttf'); /*URL to font*/
}

@font-face{
	font-family: 'cabin-italic'; /*a name to be used later*/
    src: url('../fonts/Cabin-Italic.ttf'); /*URL to font*/
}

@font-face{
	font-family: 'big-noodle'; /*a name to be used later*/
    src: url('../fonts/big_noodle_titling.ttf'); /*URL to font*/
}

.tab{
	width:97%;
	height:83%;
	border-radius:15px;
	position:absolute;
	display:none;
}

.tab_nav{
	position:absolute;
	bottom:0;
	width:16%;
	height:9.5%;
	left: 43%;
}

#tab_3 .tab_nav{
	left:68%;
}

.tab_nav div{
	display:inline-block;
	float:left;
	height:100%;
	border-radius:10px 10px 0 0;
}

#tab_1{
	display:block;
	background:#E9E5D5;
	background-size:cover;
}

#tab_2{
	background:url("../img/bg_7.png");
	background-size:cover;
}

#tab_3{
	background:url("../img/bg_8.png");
	background-size:cover;
}


.custom_btn{
	width:33%;
	height:100%;
	background: #205C8E;
	color:#FFF;
	font-size:3em;
	text-align:center;
	border-bottom:solid 6px #19466B;
	bottom:0;
	position:absolute;
}


.btn_home{
	right:33%;
}

.custom_btn:hover{
	cursor:pointer;
	background:#3D80AD;
}

.custom_btn:active{
	transform:scaleY(0.8);
	background:#104366;
}

.footer{
	position:absolute;
	bottom:0;
	height:12%;
	width:100%;
	background:#CBC24F;
	border-radius:0 0 15px 15px;
}

.footer p{
	font-family:'cabin-regular';
	font-size:1.9em;
	margin:0;
	padding:1.5% 0;
	text-align:center;
	color:#626733;
}

.btn_page{
	width:60%;
	height:15%;
	background:blue;
	margin-left:20%;
	margin-bottom:5%;
	background: rgba(175,205,216,1);
	background: -moz-linear-gradient(top, rgba(175,205,216,1) 0%, rgba(101,160,180,1) 67%, rgba(101,160,180,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(175,205,216,1)), color-stop(67%, rgba(101,160,180,1)), color-stop(100%, rgba(101,160,180,1)));
	background: -webkit-linear-gradient(top, rgba(175,205,216,1) 0%, rgba(101,160,180,1) 67%, rgba(101,160,180,1) 100%);
	background: -o-linear-gradient(top, rgba(175,205,216,1) 0%, rgba(101,160,180,1) 67%, rgba(101,160,180,1) 100%);
	background: -ms-linear-gradient(top, rgba(175,205,216,1) 0%, rgba(101,160,180,1) 67%, rgba(101,160,180,1) 100%);
	background: linear-gradient(to bottom, rgba(175,205,216,1) 0%, rgba(101,160,180,1) 67%, rgba(101,160,180,1) 100%);
	border-radius:15px;
	border:solid 2px #65a0b4;
	transition:all 0.5s ease;
	-webkit-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;

}

.btn_page:hover{
	cursor:pointer;
	transform:scale(1.05);
	-webkit-box-shadow: 0px 0px 85px 0px rgba(255, 255, 255, 0.85);
	-moz-box-shadow: 0px 0px 85px 0px rgba(255, 255, 255, 0.85);
	box-shadow: 0px 0px 85px 0px rgba(255, 255, 255, 0.85);
}

.btn_page:active{
	transform:scale(0.95);
}

.btn_page p{
	text-align:center;
	font-family:'big-noodle';
	color:white;
	margin:0;
	font-size:3em;
	position:relative;
	top:50%;
	transform:translateY(-50%);
}

.btn_page:first-of-type{
	margin-top:12%;
}

