@font-face {
  font-family: times;
  src: url('../font/times.ttf');
}
.section {
	position: relative;
	height: 100vh;
}
.section .section-top{
	position: absolute;
	width: 100%;
}
.section-top h3{
	color: #fff;
	font-weight: bolder;
	text-shadow: 2px 2px 2px #000;
	margin-top: 20px;
}
.section-top nav{
	margin-top: 20px;
}
.section-top nav .active{
	color: #FFD700 !important;
}
.section-top .nav .nav-link{	
	font-family: 'times';
	color: #fff;
	font-size: 17px;
	font-weight: bold;
	text-shadow: 1px 1px 1px #000;
}
.section-top .nav .nav-link:hover{
	color: #EA7148;
}
.section .section-center {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

#tracking {
	font-family: 'times';
	background-image: url('../../img/background.jpg');
	background-size: cover;
	background-position: center;
}

#tracking::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	/* background: rgba(0, 0, 0, 0.5); */
}

.tracking-form {
	background-color: rgba(255, 255, 255, 0.7);
	padding: 50px 20px;
	-webkit-box-shadow: 0px 5px 20px -5px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 5px 20px -5px rgba(0, 0, 0, 0.3);
	border-radius: 14px;
}

.tracking-form .form-group {
	position: relative;
	margin-bottom: 30px;
}

.tracking-form .form-control {
	background-color: #A4918B;
	border-radius: 4px;
	border: none;
	height: 40px;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: #fff;
	text-shadow: 1px 1px 1px #000;
	font-size: 17px;
}

.tracking-form .form-control::-webkit-input-placeholder {
	color: rgba(62, 72, 92, 0.3);
}

.tracking-form .form-control:-ms-input-placeholder {
	color: rgba(62, 72, 92, 0.3);
}

.tracking-form .form-control::placeholder {
	color: rgba(62, 72, 92, 0.2);
}

.tracking-form .form-label {
	display: inline-block;
	color: #3e485c;
	font-weight: 700;
	margin-bottom: 6px;
	margin-left: 7px;
	font-size: 17px;
}

.tracking-form .submit-btn {
	width: 100%;
	display: inline-block;
	color: #fff;
	text-shadow: 1px 1px 1px #000;
	background-color: #0ea75b;
	font-weight: 700;
	padding: 10px 20px;
	border-radius: 5px;
	border: none;
	-webkit-transition: 0.2s all;
	transition: 0.2s all;
}

.tracking-form .submit-btn:hover,
.tracking-form .submit-btn:focus {
	opacity: 0.9;
	background: #C75028;
}

.tracking-cta {
	margin-bottom: 30px;
	padding: 5px;
}

.tracking-cta h1 {
	font-size: 42px;
	text-transform: uppercase;
	color: #fff;
	font-weight: 700;
	text-shadow: 1px 1px 1px #000;
	text-align: center;
}

.tracking-cta p {
  font-family: times;
	font-size: 25px;
	color: orangered;
	border-radius: 15px;
	background: rgba(255, 255, 255, 0.7);
	padding: 15px;
	font-weight: bolder;
	text-shadow: 1px 1px 1px #000;
	text-align: center;
}