@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;800;900&display=swap');


html {
	height: 100%;
}

body {
	height: 100%;
	position: relative;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: .9rem;
	color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Rubik', sans-serif;
}
h1 {
	font-size: 48px;
	font-weight: 900;
	line-height: 3rem;
}
h2 {
	font-size: 52px;
	padding-bottom: 10px;
	font-weight: 300;
	color: #222222;
	text-align: center;
}
.no-padding {
	padding: 0px;

}
main {
	padding-top: 5em;
}
.main-section {
	padding: 100px 0;
}
a {
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}
.btn-red {
	color: #fff;
	border: none;
	border-radius: 5px;
	padding: 12px 30px;
	font-size: 14px;
	font-weight: 500;
	background: #BA0000;
}
.btn-red:hover {
	color: #fff;
	background: #CE1717;
}
.btn-orange-outline {
	color: #BA0000;
	border: none;
	border-radius: 5px;
	padding: 12px 30px;
	font-size: 14px;
	font-weight: 500;
	border: 2px solid #CBCBCB;
}
.btn-orange-outline:hover {
	color: #fff;
	background: #BA0000;
	border: 2px solid #BA0000;
}
.btn-white-outline {
	color: #fff;
	border: none;
	border-radius: 5px;
	padding: 15px 40px;
	font-size: 14px;
	font-weight: 500;
	border: 1px solid #fff;
}
.btn-white-outline:hover {
	color: #fff;
	background: #BA0000;
	border: 1px solid #BA0000;
}


/*Header*/
header .navbar {
	padding: 10px 0; 
	background: #fff;
}
header .navbar .navbar-nav {
	margin-left: auto;
	font-size: .90rem;
	font-weight: 500;
}
.navbar-expand-lg .navbar-nav .nav-link{
	color: #000;
	padding-right: 1rem;
	padding-left: 1rem;
	margin-top: .5rem;
	font-weight: 400;
}
.navbar-expand-lg .navbar-nav .nav-link:hover {
	color: #BA0000;
}
.navbar-expand-lg .navbar-nav .nav-link.active {
	color: #BA0000;
}
/*.hero-title{
	background: #BA0000;
	height: 250px;
	display: flex;
	align-items: center;
	text-align: center;
	color: #fff;
}*/
.hero-title{
	position: relative;
	background: #BA0000;
	height: 250px;
	width: 100%;
	display: flex;
	align-items: center;
	text-align: center;
	color: #fff;
	overflow: hidden;
}
.hero-title img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	opacity: 50%;
	object-fit: cover;
	object-position: center;
	height: auto;
	width: 100%;
}
.hero-title h2 {
	font-size: 55px;
	font-size: 200;
	font-weight: 700;
	color: #fff;
	font-family: 'Rubik', sans-serif !important;
}
.head-title h3 {
	padding-bottom: 20px;
	font-size: 34px;
	font-weight: 600;
}
.call-me {
	display: flex;
	margin-left: 2rem;
}
.call-me i {
	width: 45px;
	height: 45px;
	background: #BA0000;
	border-radius: 100px;
	padding: .80rem;
	color: #fff;
	font-size: 1.2rem;
}
.call-me span {
	color: #9F9C9C;
	display: block;
	font-weight: 400;
}
.call-me strong {
	font-size: 16px;
}

/*Our team*/ 
.team-section {
	display: flex;
	justify-content: center;
}
.team-section .card-item img {
	width: 200px;
	height: 200px;
	border-radius: 100px;
}
.team-section .card-item strong {
	display: block;
	font-size: 20px;
	font-weight: 600;
	margin-top: 10px;
}
.team-section .card-item span {
	font-weight: 600;
	color: #878787;
}

/*Slider banner*/
#carousel .carousel-item {
	height: 750px;
	width: 100%;
	min-height: 350px;
	background: no-repeat center center scroll;
	background-size: cover;
}
#carousel .carousel-inner .carousel-item {
	transition: -webkit-transform 2s ease;
	transition: transform 2s ease;
	transition: transform 2s ease, -webkit-transform 2s ease;
}
#carousel .carousel-item .caption {
	color: white;
	animation-duration: 1s;
	animation-delay: 2s;
	text-align: center;
}
#carousel .caption h2 {
	line-height: 90px;
	text-align: center;
	font-size: 90px;
	font-weight: 900;
	color: #fff;
	padding-top: 0;
	margin-top: 0;
	animation-duration: 1s;
	animation-delay: 2s;
}
#carousel .caption p {
	font-size: 1.5rem;
	color: #fff;
	text-align: center;
	padding-bottom: .5rem;
	margin-bottom: 0;
	animation-duration: 1s;
	animation-delay: 2.2s;
}
#carousel .caption a {
	margin-top: 30px;
	animation-duration: 1s;
	animation-delay: 2.4s;
}
.carousel-control-next, 
.carousel-control-prev {
	width: 10%;
}
.top-awards {
	position: absolute;
	width: 100%;
	margin-top: -150px;
}
.top-awards img {
	padding: 0 1.5rem;
}


/*Content sections*/
.vision {
	background: #000;
	color: #fff;
}
.vision strong {
	font-size: 18px;
	font-weight: 700;
}
.vision ol {
	padding-left: 1rem;
}

/* Button */
.delicious-btn {
	display: inline-block;
	color: #ffffff;
	border: none;
	border-radius: 5px;
	padding: 12px 30px;
	font-size: 16px;
	font-weight: 500;
	-webkit-transition-duration: 500ms;
	transition-duration: 500ms;
	text-transform: capitalize;
	background-color: #BA0000;
}
.delicious-btn.active, .delicious-btn:hover, .delicious-btn:focus {
	font-size: 16px;
	font-weight: 600;
	color: #ffffff;
	background-color: #CE1717;
}

/*Header title*/
.header-title {
	margin-bottom: 60px;
}
.header-title span {
	color: #BA0000;
	font-size: 17px;
	font-weight: 500;
}
.header-title.next {
	margin-top: 3rem;
	margin-bottom: 1rem;
}
.inner-title {
	display: block;
	font-size: 1.2rem;
	padding-bottom: 1rem;
}

.inner-content {
	background: #000;
	color: #fff;
}
.bg-gray {
	background: #F7F6F6;
}
.inner-content ul li {
	list-style: none;
	padding-bottom: .5rem;
}
.inner-content ul li:before {
	content: "\f058";
	font-family: FontAwesome;
	color: #BA0000;
	position: absolute;
	left: 10px;
}

/*Who we are*/
.who-we {
	padding: 80px 0;
	background: #F7F6F6;
}
.who-we ul {
	list-style: none;
	padding-left: 1.2rem;
}
.who-we ul li {

}
.who-we ul li:before {
	content: "\f058"; /* 'Font Awesome 5 Free' Unicode */
  	font-family: 'Font Awesome 5 Free';
  	color: #BA0000;
  	position: absolute;
  	left: 15px;
}
.we-do a:not([type="button"]) {
	font-size: 18px;
	font-weight: 600;
	color: #000;
}
.we-do a span {
	padding-top: .5rem;
	display: inline-block;
}
.we-do a:hover:not([type="button"]) {
	color: #BA0000;
}
.we-do a:hover span {
	text-decoration: underline;
}

.title-next {
	padding: 80px 0 150px 0;
	background: #1D244B;
	color: #fff;
}
.blogs .item {
	min-height: 350px;
	background: #FAFAFA;
	position: relative;
	margin-bottom: 2rem;
	border: 1px solid #E2E2E2;
}
.blogs .item .img-wrap {
	text-align: center;
}
.blogs .item .b-date {
	display: inline-block;
	background: #BA0000;
	padding: .4rem 1rem;
	color: #fff;
	font-weight: 700;
	position: absolute;
	margin-top: -2.6rem;
}
.blogs .item a {
	display: block;
	text-decoration: none;
	color: #000;
	margin-top: .75rem;
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 2rem;
}
.blogs .item a:hover {
	color: #BA0000;
}
.blogs .item .img-wrap {
	margin: 0 auto;
	overflow: hidden;
}
.blogs .item .img-wrap img {
	width: 405px;
	height: 220px;
	object-fit: cover;
    object-position: top;
}
.title-next h3{
    font-size: 34px;
    font-weight: 400;
}

/*Attractions*/
.attraction-content {
	padding: 60px 0;
}
.attraction-content .img-wrap{
	margin: 0 auto;
	overflow: hidden;
}
.attraction-content .img-wrap img {
	width: 100%;
	height: 280px;
	object-fit: cover;
	object-position: top;
}
.attraction-content .head-title h3 {
	padding-bottom: 5px;
	font-size: 26px;
	font-weight: 500;
}

/*Gallery*/
.gallery .thumb{
    margin-bottom: 30px;
    overflow: hidden;
}
.gallery .thumb.one img {
	width: 290px;
    height: 190px;
    object-fit: cover;
    object-position: top;
}
.gallery .thumb.two img {
	width: 620px;
    height: 410px;
    object-fit: cover;
    object-position: top;
}
.gallery .thumb.three img {
	width: 290px;
    height: 410px;
    object-fit: cover;
    object-position: top;
}
img.zoom {
    z-index: 1;
    background: #000 !important;
    
    object-fit:cover;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
}
img.zoom:hover {
    opacity: .7;
}
.transition {
    -webkit-transform: scale(1.05); 
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

/*why choose us*/
.why-us {
	background: #F7F6F6;
}
.why-us .item-box{
	color: #fff;
	background: #000;
	padding: 2.5rem;
}
.why-us .item-box strong {
	font-weight: 700;
	font-size: 28px;
	font-family: 'Rubik', sans-serif;
	display: block;
	padding-bottom: 1.5rem;
	color: #BA0000;
}
.why-us .item-box h5 {
	color: #fff !important;
}

/* .home-man-of-action {
	background: #F7F6F6;
} */

/*cta button*/
.cta {
	padding: 80px 0;
}
.cta .header-title {
	margin-bottom: 0px;
}
.cta .header-title h1 {
	color: #fff;
}
.cta .btn-white-outline {
	margin-top: 40px;
}
.p-lists {
	padding-bottom: 80px;
}
.p-lists img {
	border-radius: 6px;
	box-shadow: 0 3px 6px #ddd;
	margin-bottom: 30px;
	transition: transform .5s;
}
.p-lists img:hover {	
	transform: scale(1.05)
}

/*Blog page*/
.blog-section .item {
	border-radius: 8px;
	box-shadow: 0 3px 8px #ddd;
	margin-bottom: 30px;
}
.blog-section .item img {
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}
.blog-section .item strong {
	font-size: 22px;
	font-weight: 600;
	display: block;
	padding-bottom: 20px;
}
.blog-section .item a {
	display: block;
	font-weight: 500;
	text-decoration: none;
	color: #BA0000;
	margin-top: 30px;
}
.blog-section .item a:hover {
	text-decoration: underline;
}

/*Career section*/
.career {
	background: #F8F8F8;
}
.career strong {
	font-weight: 600;
	font-size: 18px;
}
.career img {
	border-radius: 8px;
}
.career-lists .card {
	background: #fff;
	margin-bottom: 15px;
	border-radius: 5px;
	box-shadow: 0 2px 4px #ddd;
}
.career-lists .card-header {
	border-radius: 5px;
}
.career-lists .card-header button {
	width: 100%;
	text-align: left;
	color: #000;
}
.career-lists .card-header button:before {
    float: right !important;
    font-family: 'Font Awesome 5 Free';
    content:"\f068";
    margin-top: 15px;
}
.career-lists .card-header button.collapsed:before {
    float: right !important;
    content:"\f067";
}
.panel-title > a:hover, 
.panel-title > a:active, 
.panel-title > a:focus  {
    text-decoration:none;
}

/*Register form*/
.register-form .header-title {
	text-align: center;
}
.register-form .btn-orange {
	display: block;
	margin: 0 auto;
	margin-top: 40px;
}
form .form-control {
	height: 45px;
	font-size: 15px;
}
form textarea {
	height: 100px !important;
}



.info .box {
	padding: 25px;
	border: 1px solid #f6f6f6;
	border-radius: 8px;
    -webkit-box-shadow: 0 0 15px #ddd;
    -moz-box-shadow: 0 0 15px #ddd;
    box-shadow: 0 0 15px #ddd;
}
.info .box strong {
	font-weight: 700;
	font-size: 22px;
}

/*blog-details*/
.card-item .top-card {
	justify-content: space-between; 	
}
.card-item .top-card span {
	color: #7E7E7E;
}
.card-item .top-card span i {
	color: #BA0000;
	font-size: 16px;
	margin-right: 5px;
}
.card-item .news-tag {
	margin-top: 5px;
}
.card-item .news-tag a {
	text-decoration: none;
	color: #656565;
	padding: 4px 15px;
	border: 1px solid #B5B5B5;
	border-radius: 100px;
	margin-left: 5px;
}
.card-item .news-tag a:hover {
	background: #DFDFDF;
	border: 1px solid #DFDFDF;
}
.card-item .news-source {
	display: flex;
	justify-content: space-between;
	color: #7E7E7E;
}
.card-item .news-source button {
	margin-block: auto;
}

.card-item.detail h3 {
	font-weight: 700;
	margin-bottom: 30px;
	font-size: 35px;
}
.card-item.detail img {
	width: 100%;
	height: auto;
}
/*Right card*/
.right-card .post-list {
	display: flex;
	color: #222;
	margin-bottom: 1.2rem;
}
.right-card .recent-post img{
	width: 105px;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}
.right-card .recent-post .post-info a {
	text-decoration: none;
	color: #222;
	font-size: 16px;
	font-weight: 600;
	display: block;
	line-height: 18px;
	margin-bottom: 10px;
}
.right-card .recent-post .post-info a:hover {
	color: #BA0000; 
}
.right-card .recent-post .post-info span {
	color: #6E6E6E;
}
.right-card h4 {
	font-family: 'Rubik', sans-serif;
	font-weight: 600;
}

/*Contact page*/
.contactInfo .rounded {
	background: #F7F8F8;
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 100px !important;
	margin-right: 10px;
}
.contactInfo .rounded i {
	color: #BA0000;
	font-size: 25px;
}
.contactInfo .c-detail {
	margin-top: 10px;
}
.contactInfo .c-detail strong {
	font-weight: 700;
	font-size: 18px;
}
form .form-control {
	font-size: 14px;
	height: 40px;
	border-radius: 6px;
}
form textarea.form-control {
	height: auto;
	border-radius: 6px;
}
.frm-panel {
	padding: 30px;
	background: #fff;
	border-radius: 10px;
	border: 1px solid #f6f6f6;
	box-shadow: 0 4px 8px #bbb;
	position: relative;
	z-index: 500;
	margin-bottom: -120px;
}
.g-map {
	position: relative;
	margin-bottom: -5px;
}
.ng-select.ng-select-single .ng-select-container {
	height: 40px !important;
}
.frm-content .inner-detail .form-group .ng-clear-wrapper {
	width: auto !important;
	margin-right: 8px;
}
.ng-select.ng-select-single .ng-select-container,
.ng-select.customngselect .ng-select-container {
	border-radius: 20px !important;
}

/*footer new*/
footer {
    background: #000;
    color: #fff;
    padding: 50px 0 40px 0;
    font-size: 14px;
}
footer h3 {
    font-weight: 600;
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
}
footer .link-section {
  
}
footer .link-section ul {
    padding-left: 0;
    margin-right: 60px;
}
footer .link-section ul li {
    list-style: none;
    padding-bottom: 10px;
}
footer .link-section ul li a {
    text-decoration: none;
    color: #fff;
    padding-left: 0;
}
footer .link-section ul li a:hover {
    color: #BA0000;
}
footer .address-detail p {
	margin-bottom: 5px;
}
footer .social-links a {
    text-decoration: none;
    color: #fff;
    font-size: 17px;
    margin-right: 5px;
    -webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}
footer .social-links a .fab {
    width: 32px;
    height: 32px;
    padding: 7px 0;
    background: #BA0000;
    text-align: center;
    border-radius: 6px;
}
footer .social-links a .fab:hover {
    background: #fff;
    color: #BA0000;
}
footer .copyright {
    color: #fff;
}
.mfp-container {
	cursor: default !important;
}
.mfp-close {
	cursor: pointer !important;
}
