/* PAGE TITLE BANNER */
.page-title-banner {
    /* background: url('page_banner.jpg') no-repeat center; */
    background: url('3_1.jpg') no-repeat center;
    background-size: cover;
    color: #fff;
    height: 486px;
    position: relative;
    z-index: 1;
    text-align: center;
    /* media quires */
}

.page-title-banner:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    /* background: rgba(35, 50, 149, 0.8); */
}

.page-title-banner h2 {
    color: #fff;
    font-size: 48px;
}

.page-title-banner .container {
    height: 100%;
    position: relative;
}

.page-title-banner .content-wrapper {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.page-title-banner .bread-crumb {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 0;
}

.page-title-banner .bread-crumb li {
    display: inline-block;
}

.page-title-banner .bread-crumb li:after {
    content: '/';
    display: inline-block;
    margin-left: 12px;
    margin-right: 12px;
}

.page-title-banner .bread-crumb li:last-child:after {
    content: none;
}

.page-title-banner .bread-crumb a {
    color: #fff;
}

@media (max-width: 991px) {
    .page-title-banner {
        height: 410px;
    }

    .page-title-banner h2 {
        font-size: 30px;
        line-height: 36px;
    }

    .page-title-banner .bread-crumb {
        margin-top: 15px;
    }
    .page-title-banner .content-wrapper {
        position: absolute;
        top: 80%;
        left: 30%;
        transform: translate(-50%, -50%);
        width: 60%;
    }
}

@media (max-width: 767px) {
    .page-title-banner {
        height: 186px;
    }

    .page-title-banner h2 {
        font-size: 24px;
        line-height: 30px;
    }

    .page-title-banner .bread-crumb {
        margin-top: 12px;
    }

    .page-title-banner .bread-crumb a {
        font-size: 14px;
    }

    .page-title-banner .content-wrapper {
        position: absolute;
        top: 80%;
        left: 30%;
        transform: translate(-50%, -50%);
        width: 60%;
    }
}

/* unvisited link */
	.packageTitle a:link {
		color: red;
	}

	/* visited link */
	.packageTitle a:visited {
		color: green;
	}

	/* mouse over link */
	.packageTitle a:hover {
		color: hotpink;
	}

	/* selected link */
	.packageTitle a:active {
		color: rgb(246, 246, 247);
	}