/********** Template CSS **********/
:root {
    --primary: #FDA12B;
    --secondary: #8D9297;
    --light: #F8F9FA;
    --dark: #182333;
	--color3:#f8fa98;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: "Poppins",sans-serif;
  font-weight: 600;
  /*margin-top: 0;
  margin-bottom: .5rem;
  line-height: 1.2;
  color: #182333;*/
}
a {
  color: var(--color1);
  text-decoration: none;
}

a:hover {
  color: #406aff;
  color: var(--color2);
  text-decoration: none;
}
.display-6 {
  font-weight: 700;
  line-height: 1.2;
  color: #444;
  color: var(--color2);
}
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 48px;
    height: 48px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-left: 30px;
    padding: 25px 0;
    color: #444;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--color1);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 25px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption- {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    text-align: start;
    background: rgba(0, 0, 0, .65);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--dark);
    border: 15px solid var(--dark);
    border-radius: 50px;
}

.carousel-caption .breadcrumb-item+.breadcrumb-item::before {
    content: "\f111";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--color1);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 3rem;
        height: 3rem;
        border-width: 12px;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../img/carousel-1.jpg) center center no-repeat;
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../images/bc_bg_01_1.jpg) center center no-repeat;
    background-size: cover;
	background-size: 100% 100%;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Facts ***/
.facts-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    /*justify-content: center;*/
    background: rgba(0, 0, 0, .65);
}

.facts-overlay h1 {
    font-size: 120px;
    font-size: 90px;
    color: transparent;
    -webkit-text-stroke: 2px var(--color2);
}

.facts-overlay a:hover {
    color: var(--color1) !important;
}


/*** Service ***/
.service-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: var(--color2);
    opacity: 0;
    transition: .5s;
}

.service-item:hover .service-text::before {
    height: 100%;
    opacity: 1;
}

.service-text * {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.service-item:hover .service-text * {
    color: #FFFFFF !important;
}


/*** Appointment ***/
.appointment {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../img/carousel-2.jpg) center center no-repeat;
    background-size: cover;
}


/*** Team ***/
.team-text {
    position: absolute;
    width: 75%;
    bottom: 30px;
    left: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    width: 100%;
}

.team-text * {
    transition: .5s;
}

.team-item:hover .team-text * {
    letter-spacing: 2px;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: start;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    border: 2px solid var(--color1);
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--color1);
}


/*** Footer ***/
.footer {
    color: #ccc;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #ccc;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--color2);
    margin-right: 10px;
}
.footer .footer-contact i {
    color: var(--color2);
}

.footer .btn.btn-link:hover {
    color: var(--color2);
    letter-spacing: 1px;
    letter-spacing: .5px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--color1);
}

/*--xtraStyles--*/
footer .copy-right-gtcren{
	background: #eaeaea;
}
@media(max-width:767px){
p.copyright span{
	display: block;
}
}
.hide{
	display:none !important;
}
.map hr {
    margin-top: .5rem;
    margin-bottom: .2rem;
}
.sptn {
    display: none !important;
}
.error { 
	display: none; 
	padding:10px; 
	margin:0 0 5px 0;
	color: #D8000C; 
	font-size:1em;
	background-color: #FFBABA;
}
.success { 
	display: none; 
	padding:10px; 
	color: #044406; 
	font-size:1em;
	background-color: #B7FBB9;
}
.error img { 
	vertical-align:top; 
}
.txtcenter{
	text-align:center;
}
.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
	width:100%;
}
#toTop {
    display: none;
    text-decoration: none;
    position: fixed;
    bottom: 20px;
    right: 2%;
    overflow: hidden;
    z-index: 999;
    width: 32px;
    height: 38px;
    border: none;
    text-indent: 100%;
}
#toTopHover {
    width: 32px;
    height: 38px;
    display: block;
    overflow: hidden;
    float: right;
    opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
}
.scrolltop {
	display:none;
	width:100%;
	margin:0 auto;
	position:fixed;
	bottom:20px;
	right:10px;	
}
.scrollicon {
	position:absolute;
	top: 0;
	width: 32px;
	height: 38px;
	text-indent: 0;
	/*background:#b2b2b2;
	background:rgba(178,178,178,0.7);*/
	padding: 5px 2px;
	text-align: center;
	margin: 0 0 0 0;
	cursor:pointer;
	transition: 0.5s;
	-moz-transition: 0.5s;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
 		
}
.scrollicon:hover {
	background:rgba(51,51,51,0.5);
	transition: 0.5s;
	-moz-transition: 0.5s;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s; 	
	border-radius: 5px;	
}
.scrollicon:hover i {
	text-shadow: 1px 1px 0px #000;
}
.scrollicon i {
    color: var(--color1);
	font-size: 1.8rem;
	text-shadow: 0px 0px 8px #000;
	transition: 0.5s;
	-moz-transition: 0.5s;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s; 	
}
.pgntr .pagination{
	display: inline-flex;
	margin-bottom: 5px;
}
.page-item.active .page-link {
    background-color: var(--color1);
	border-color: #666;
	color: #fff;
}
.page-link {
    background-color: transparent;
    color: var(--color1);
	text-decoration: none;
	margin: 0px;
	border-radius: 0.0rem;
	padding: 11px 15px;
	border-color: #888;
}
.page-link:hover {
    color: #000;
	background-color:var(--color2);
	border-color:#888;
}
.page-item.disabled .page-link{
	background-color: #eee;
	border-color: #888;
}
.pgul ul {
  list-style: none;
  padding: 0;
  padding-left:10px;
  margin-top:10px;
}
.pgul ul li {
	font-size: 1.3rem;
	line-height:1.5em;
	padding-left:0px;
	padding-top:5px;
	padding-bottom:5px;
	list-style-type:none;
	list-style:none;
	/*display: table-row;*/
	display: flex;
	transition: all 0.3s ease-in;
}
.pgul ul li:before {
	content: "\f101";
	font-family: 'Font Awesome 5 Free';
	width: 1.3em;
	color:var(--color1);
	font-weight: 900;
	margin-right:5px;
	/*display: table-cell;*/
	display: flex;
	transition: all 0.3s ease-in;
}
.pgul ul li:hover:before {
	color:var(--color2);
	transition: all 0.3s ease-in;
}

[style*="--aspect-ratio"] > img {
  width: 100%;
}
[style*="--aspect-ratio"] > img {  
  height: auto;
} 
@supports (--custom:property) {
  [style*="--aspect-ratio"] {
    position: relative;
  }
  [style*="--aspect-ratio"]::before {
    content: "";
    display: block;
    padding-bottom: calc(100% / (var(--aspect-ratio)));
  }  
  [style*="--aspect-ratio"] > img, [style*="--aspect-ratio"] > :first-child {
    position: absolute;
    top: 0;
    left: 0;
    /*height: 100%;*/
  }
}  
img.contain-fit{
	object-fit: contain;
	height: 100%;
}

.ttllogo{
	max-height: 90px;
    transition: .5s;
	padding: 3px;
	background: #fff;
	border-radius: 0px;
}
.bg-color1{
    background:var(--color1);
    border-color:var(--color1);
}
.bg-color2{
    background:var(--color2);
    border-color:var(--color2);
}
.bg-color1-light{
	background: linear-gradient(to top,rgba(255,255,255,.85),rgba(255,255,255,.85)) var(--color1);
}
.bg-color1-morelight{
	background: linear-gradient(to top,rgba(255,255,255,.90),rgba(255,255,255,.95)) var(--color1);
}
.bg-color2-light{
	background: linear-gradient(to top,rgba(255,255,255,.85),rgba(255,255,255,.85)) var(--color2);
}
.bg-color1-dark{
	background: linear-gradient(to top,rgba(0, 0, 0, 0.75),rgba(0, 0, 0, 0.60)) var(--color1);
}
.text-color1{
    color:var(--color1);
}
.text-color2{
    color:var(--color2);
}
.text-color3{
    color:var(--color3);
}
.btn-color1{
    background:var(--color1);
	color:#fff;
}
.btn-color1:hover{
	color:var(--color3);
	opacity: .9;
}
.btn-color2{
    background:var(--color2);
	color:#fff;
}
.btn-color2:hover{
	color:var(--color3);
	opacity: .9;
}
.border-color1{
    border-color:var(--color1) !important;
}
.border-color2{
    border-color:var(--color2) !important;
}
.btn-outline-color1{
    /*color:var(--color1);*/
    border-color:var(--color1);
}
.btn-outline-color1:hover{
    color:#fff;
    background-color:var(--color1);
}
.wcbx {
  font-size: 1.2rem;
  text-align: justify;
  /*letter-spacing: .7px;*/
}
.inshdw{
    position: absolute;
    width: 100%;
    height: 100%;
    /*box-shadow: inset 0px 0px 10px 0 #000;*/
	border: 1px solid #ccc;
    border-radius: 3px;
    top: 0;
    left: 0;
}

#gift_shop .imgbx{
	/*background: #fff;*/
	border-radius: 5px;
}
#gift_shop .imgbx h6{
	text-align: center;
	padding:10px 20px;
	font-size: 1.4rem;
}
#gift-shop-page #gift_shop .gftitem{
	/*background: #fff;*/
	border-radius: 5px;
	overflow: hidden;
	height: 100%;
	position: relative;
}
#gift-shop-page #gift_shop .gftitem .gftxt{
	text-align: center;
	padding:10px 20px;
	margin-bottom: 60px;
}
#gift-shop-page #gift_shop .gftitem .gftxt a.tc{
	color:#333;
}
#gift-shop-page #gift_shop .gftitem .gftxt .gftttl{
	font-size: 1.3em;
}
#gift-shop-page #gift_shop .gftitem .gftxt .gftprice{
	font-weight:700;
	font-size: 1.4em;
	color: var(--color1);
}
#gift-shop-page #gift_shop .gftitem img{
	border-radius: 0px;
	border-bottom: 1px solid #ccc;
}
#gift-shop-page #gift_shop .gftitem figure{
	position: relative;
	margin: 0;
}
#gift-shop-page #gift_shop .gftitem a.btnlnk {
	background: var(--color1);
	color: #fff;
    padding: 11px 30px;
    font-size: 15px;
    letter-spacing: .9px;
    border-radius: 5px;
    display: inline-block;
	width:190px;
	bottom: 10px;
	position: absolute;
	/*width: 85%;*/
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
}
#gift-shop-page #gift_shop .gftitem a.btnlnk:hover {
    letter-spacing: 1.5px;
}
#gift-shop-page #gift_shop .gftitem a.btnlnk h6 {
	display: inline-block;
}
#gift-shop-product .product_section{
	background:#fff;
}
.feature_divider {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 10px;
}
.product_name {
    font-weight: 400;
    font-size: 2.1rem;
    color: #000;
    text-transform: capitalize;
    line-height: 2.1;
}
 .modal_price {
    font-size: 24px;
    color: var(--color1);;
}
#gift-shop-product a.btnlnk {
	background: var(--color1);
	color: #fff;
    padding: 11px 30px;
    font-size: 15px;
    letter-spacing: 1px;
    border-radius: 5px;
    display: inline-block;
	text-align:center;
	margin-bottom: 1.5em;
	min-width: 175px;
}
#gift-shop-product a.btnlnk:hover {
    letter-spacing: 3px;
}
#gift-shop-product .more-info .tabs {
    display: grid;
    margin: 25px 0;
    border-bottom: solid 1px #cccccc;
    border-top: 0;
    list-style: none outside;
    margin-left: 0;
    text-transform: uppercase;
    padding-left: 0;
    background: #e7e7e7;
    padding: 0 35px;
    border: none;
    margin: 0;
}
#gift-shop-product .more-info .tabs li {
    height: auto;
    display: block;
    width: auto;
    height: 30px;
    padding: 0;
    float: left;
    margin-bottom: 0;
    border: 0;
    list-style: none outside;
    margin-left: 0;
	height: auto;
}
#gift-shop-product .more-info .tabs li a.active {
    border-bottom: solid 3px var(--color1);
    height: 31px;
    height: auto;
    position: relative;
    border-right-width: 1px;
    color: #333333;
}
#gift-shop-product .more-info .tabs li a {
    font-size: 20px;
    color: #656565;
    text-transform: capitalize;
    padding: 7px 13px;
    height: auto;
    background: none;
	display: inline-block;
}
#gift-shop-product .more-info .tabs-content {
    background: #f5f5f5;
    padding: 25px 40px;
}
#gift-shop-product .more-info .tabs-content ul {
	margin-left:2rem;
	margin-top:1rem;
	margin-bottom:1rem;
}
#gift-shop-page.related #gift_shop .gftitem {
    background: #f1f1f1;
	box-shadow: 0px 0px 2px #aaa;
}
.product-description-top ul{
	list-style: none;
}
#gift-shop-product .dark .product_section {
    background: #5f5f5f;
}
#gift-shop-product .dark .more-info .tabs{
	background: #333;
}
#gift-shop-product .dark .more-info .tabs-content{
	background: #444;
}
#gift-shop-product .dark .more-info .tabs li a.active{
    color: #eee;
}
#gift-shop-product .dark .more-info .tabs-content{
    color: #eee;
}
.dark .related-title .title{
    background: #eee;
    border-radius: 5px;
	box-shadow: 0px 0px 3px #444;
}
.related.dark{
	background: #5f5f5f;
}
#prod-desc{
	font-size: 1.1rem;
	letter-spacing: .8px;
	border-radius: 5px;
	overflow: hidden;
	text-align: justify;
}
#gift-shop-product .nbgal img{
	border-radius: 5px;
	overflow: hidden;
}
#gift-shop-page.related.dark #gift_shop .gftitem {
    background: #f1f1f1;
    box-shadow: 0px 0px 2px #aaa;
    box-shadow: 0px 0px 2px #444;
	height: 100%;
	position: relative;
}
#gift_shop.dark{
    background: #5f5f5f;
}
.bookpgimg{
	max-height:450px;
}
.wwdimg{
	width:100%;
	opacity: .5;
	max-height: 380px;
	object-fit: cover;
	border: 1px solid rgba(var(--color1rgb),.7);
}
/* The hover effect
-------------------------------------------------------------- */
.galeffect {
	position: relative;
	box-shadow: 0px 0px 8px #666;
	border-radius: 0px;
	overflow:hidden;
	padding: 3px;
}
.galeffect:before {
transition: all .5s ease;
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #333;
background: var(--color1);
transform: scale(0);
pointer-events: none;
}
.galeffect:hover:before {
opacity: .5;
transform: scale(1);
}
.galeffect:after {
transition: all .6s ease .2s;
content: "";
position: absolute;
top: 8px;
left: 8px;
right: 8px;
bottom: 8px;
border: 1px solid #aaa;
background: #000;
background: var(--color3);
opacity: 0;
transform: scale(0);
pointer-events: none;
}
.galeffect:hover:after {
opacity: .35;
transform: scale(1);
}
.galeffect img {
	width:100%;
}
.galeffect .galview {
	position: absolute;
	top: 50%; right: 50%;
	transform: translate(50%,-50%)scale(0);
	color:#fff;
	font-size: 2.2rem;
	pointer-events: none;
	transition: all .6s ease .2s;
}
.galeffect:hover .galview {
	transform: translate(50%,-50%)scale(1);
	transition: all .6s ease .2s;
}
.galeffect a:focus-visible {
	outline: none;
}
.galeffect .h6 {
	text-align:center;
	font-size: 1.2rem;
	color:var(--color1);
}
.hbooks .gftttl{
	font-size: 1.5rem;
	font-weight: 700;
}
.bloglistitem{
	box-shadow: 0px 0px 3px #ccc;
	padding: 10px 0;
}
.bloglist img{
	padding: 10px;
}
.sidebar{
	box-shadow: 0px 0px 3px #ccc;
}
.news-date ul{
	list-style-type: none;
	padding-left: 0;
}
.news-date ul li{
	display: inline-block;
	margin-right: 10px;
}
.sidebar .galeffect {
	box-shadow: 0px 0px 1px #666;
}
hr.line1{
	border-top: 2px ridge var(--color1);
	background-color: transparent;
}
.navbar .nav-item .dropdown-menu {
	min-width:250px;
	border-radius: 0;
}
.bcrmb .breadcrumb-item a {
	color:#ddd;
}
.bcrmb .breadcrumb-item:last-child a {
	color:#aaa;
}
.youtubevid{
	position:relative;
}
.video_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    text-align: center;
	transition: all .6s ease .2s;
}
.video_overlay:hover {
    background-color: rgba(0,0,0,0.6);
}
.video_overlay:hover i {
    color: #fb0000;
}
.video_overlay i {
    font-size: 4em;
    color: #ff0000;
    opacity: 0.85;
    -moz-opacity: 0.85;
    -webkit-opacity: 0.85;
    filter: alpha(opacity=85);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
    text-shadow: 0px 0px 5px #000;
    text-shadow: 1px 1px 1px #aaa,2px 2px 1px #000;
    position: relative;
    top: calc(50% - 20px);
	transition: all .6s ease .2s;
}

/* Video Play Button */
.basic-1 .video-play-button {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	display: block;
	box-sizing: content-box;
	width: 2rem;
	height: 2.75rem;
	padding: 1.125rem 1.25rem 1.125rem 1.75rem;
	border-radius: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}
  
.basic-1 .video-play-button:before {
	content: "";
	position: absolute;
	z-index: 0;
	top: 50%;
	left: 50%;
	display: block;
	width: 4.75rem;
	height: 4.75rem;
	border-radius: 50%;
	background: var(--color3);
	animation: pulse-border 1500ms ease-out infinite;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}
  
.basic-1 .video-play-button:after {
	content: "";
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	display: block;
	width: 4.375rem;
	height: 4.375rem;
	border-radius: 50%;
	background: var(--color3);
	transition: all 200ms;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}
  
.basic-1 .video-play-button span {
	position: relative;
	display: block;
	z-index: 3;
	top: 0.375rem;
	left: 0.25rem;
	width: 0;
	height: 0;
	border-left: 1.625rem solid #ff0000;
	border-top: 1rem solid transparent;
	border-bottom: 1rem solid transparent;
}
.basic-1 .video-play-button i {
	position: relative;
	font-size: 2.5rem;
	line-height: 2.8rem;
	z-index: 3;
	color:#ff0000;
}
  
@keyframes pulse-border {
	0% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		opacity: 1;
	}
	100% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
		opacity: 0;
	}
}
/* end of video play button */  

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
.header.sticked- {
  background: rgba(14, 29, 52, 0.9);
  padding: 5px 0;
  box-shadow: 0px 2px 20px rgba(14, 29, 52, 0.1);
  background: linear-gradient(to top,rgba(0, 0, 0, 0.85),rgba(0, 0, 0, 0.85)) rgba(var(--color1rgb),.8);
  background: linear-gradient(to top,rgba(0, 0, 0, 0.65),rgba(0, 0, 0, 0.65)) rgba(var(--color1rgb),.4);
}
.sticky-top {
	background:#fff;
  transition: .5s;
}
.header .navbar a{
	font-weight: 500;
	text-transform: uppercase;
	outline: none;
}
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: #444;
    /*white-space: nowrap;*/
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color1);
  }

  .navbar .get-a-quote,
  .navbar .get-a-quote:focus {
    background: var(--color1);
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 4px;
    color: #fff;
  }

  .navbar .get-a-quote:hover,
  .navbar .get-a-quote:focus:hover {
    color: #fff;
    background: rgba(var(--color1rgb),.7);
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 250px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: var(--color-secondary);
  }
  
.navbar .dropdown ul li.active a{
    color: var(--color1);
}

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color1);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(14, 29, 52, 0.9);
	background: linear-gradient(to top,rgba(0, 0, 0, 0.65),rgba(0, 0, 0, 0.65)) var(--color1);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    white-space: normal;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .get-a-quote,
  .navbar .get-a-quote:focus {
    background: var(--color1);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
  }

  .navbar .get-a-quote:hover,
  .navbar .get-a-quote:focus:hover {
    color: #fff;
    background: rgba(var(--color1rgb), 0.8);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    /*border: 1px solid var(--color3);*/
  }
  
  .navbar .dropdown ul li a{
	background: linear-gradient(to bottom,rgba(255,255,255,.01) 0,rgba(255,255,255,.1) 100%);
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: #444;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    /*top: 20px;*/
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(14, 29, 52, 0.8);
    z-index: 9996;
  }
}
.footer-contact span {
  display: inline-grid;
}
.swiper-pagination-bullet {
  background: #aaa;
  width: 22px;
  /*height: 4px;*/
  width: 50px;
	max-width: 25%;
	box-shadow: 0px 2px 1px #333;
	opacity:.5;
  border-radius: 0;
  transition: opacity 1s ease;
}
.swiper-pagination-bullet-active{
  background: var(--color1);
	opacity:1;
}
.swiper-pagination-bullet.swiper-pagination-bullet.swiper-pagination-bullet {
  margin: 1px;
}
.swiper-button-next, .swiper-button-prev{
	opacity:.5;
}
.swiper-button-next:hover, .swiper-button-prev:hover{
  color: var(--color1);
	opacity:1;
}
.swiper-slide img{
	width:100%;
}
.swiper-container {
	/*margin-top: 70px;*/
}
.banner-caption {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
	width:100%;
	background: rgba(0, 0, 0, .33);
	align-content: center;
	display: grid;
	width:100%;
	height:100%;
	/*z-index: 1;
	max-width: 692px;*/
}
.banner-caption .h3{
	color: #ffffff;
	text-align: center;
	/*font-family: 'Stardos Stencil', cursive;
	text-shadow: 1px 1px 1px #000;
	line-height: 1.5em;*/
	text-transform: uppercase;
	/*letter-spacing: 3px;
	font-weight: 500;
	font-size: 3.5rem;
	font-size: 60px;*/
}
#slider{
	/*display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;*/
	position: relative;
	overflow: hidden;
	background: #f7f7f7;
}
.goicon a{
	font-size: 60px;
	color:#fff;
}
.shadoweffect2 {
    /*max-height: 750px !important;
    max-width: 1280px !important;*/
    -webkit-box-shadow: 0 10px 6px -6px #777;
    -moz-box-shadow: 0 10px 6px -6px #777;
    box-shadow: 0 10px 6px -6px #777;
}
.carousel-caption h3{
	font-weight:700;
}
.swiper-button-prev::after, .swiper-button-next::after {
  content: '';
}
.swiper-button-prev i{
	font-size:3.5rem;
	position: relative;
	left: 10px;
}
.swiper-button-next i{
	font-size:3.5rem;
	position: relative;
	right: 10px;
}
#news .service-item{
	border: 1px solid rgba(var(--color1rgb),.3);
}
.text-justify {
	text-align:justify;
}
.blogtxt, .abtxt {
	font-size: 1.1rem;
	text-align: justify;
}
.dual-border:after {
	content:'';
	border-top: 3px solid var(--color2);
	border-bottom: 3px solid var(--color1);
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}
.contact .info-item i {
	font-size: 20px;
	background: var(--color1);
	color: #fff;
	width: 44px;
	height: 44px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 4px;
	border-radius: 100%;
	transition: all 0.3s ease-in-out;
	margin-right: 15px;
}
.form-control:focus{
	box-shadow:none;
	border-color:var(--color1);
}

.txtavatar{
	padding: 1.5rem;
	font-size: 1.3rem;
	border-radius: 100%;
	display: inline-block;
	line-height: 5.5rem;
	position:relative;
	/*border-bottom: 2px solid var(--color1);*/
	box-shadow: 0px 2px 1px var(--color1);
}
.txtavatar span{
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.reply .txtavatar{
	padding: 1.0rem;
	font-size: 1.0rem;
}
.comment-level-0{
	margin-bottom:2.2rem;
}
.media-body{
	text-align: justify;
}
.comment-level-0 > .media-body{
	background: #f5f5f5;
	padding: 1rem 1.5rem;
}
.cmtlnk,.cmtlnk:hover{color:#888;text-decoration: none;}
:target {
    scroll-margin-top: 100px;
}
#comments .page-link{
	padding: 7px 20px;
	border-radius: 50%;
}
.vidthumb { 
  width: 100%;/* % of width */
  /*padding-top: 65%;  the % of padding will calculate by width */
  position:relative; /* as it childern's(img here) position's anchor */ 
}
.vidthumb img {
  /* make the image inside the padding space 
  position:absolute;*/
  top:0;
  bottom:0; 
  left:0; 
  right:0;
  /* make sure the image will not over the division */
  max-height:100%;
  max-width:100%;
  /* center the image */
  display:block; 
  margin: auto;
}
}
.vid_thumb{
	position: relative;
	/*display: inline-block;*/
	overflow: hidden;
	text-align: center;
	/*border-radius: 20px;*/
	background-color: transparent;
}
.vid_thumb span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
	text-align: center;
}
.vid_thumb span i {
	font-size: 3em;
	color: #ff0000;
	color: var(--color1);
	opacity: 0.85;
	-moz-opacity: 0.85;
	-webkit-opacity: 0.85;
	filter: alpha(opacity=85);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
	text-shadow: 0px 0px 5px #000;
	text-shadow: 1px 1px 1px #aaa,2px 2px 1px #000;
	position: relative;
	top: calc(50% - 20px);
}
.vidbx {
	box-shadow: 0px 0px 5px #000;
	padding: 5px;
	display: block;
	border-radius: 5px;
	height: 100%;
}
.vidbx a {
	display: flex;
	flex-direction: column;
	height: 100%;
}
.vidbx a h6 {
    text-align: center;
    padding: 10px 0px;
    font-size: 1.2em;
    font-weight: 700;
	text-transform: uppercase;
	flex-grow: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}
#google_translate_element span a{
	color:#333;
}
.dashboard .footer{
	color:#333;
}
.dashboard .footer .address span{
	display: inline-grid;
}
.award .form-group{
	padding-top:10px;
	padding-bottom:10px;
}
.d-inline-grid{
	display:inline-grid !important;
}
.blink_it {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}
.pgimg {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1;
}
.pgimg2 {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1.7;
}
.brdrbx1{
	border: 1px solid var(--color2);
}
.brdrbx1 .lbx, .brdrbx1 .rbx{
	border: 1px solid var(--color2);
}

.award .accordion-button{
	border-color: var(--color2);
	color: var(--color2);
}
.award .accordion-button:focus {
	box-shadow: 0 0 0 2px rgba(var(--color2rgb),.25);
}
.accordion-button:not(.collapsed) {
	background: linear-gradient(to top,rgba(255,255,255,.90),rgba(255,255,255,.95)) var(--color1);
	box-shadow: inset 0 -1px 0 rgba(var(--color1rgb),.125);
}



@media (max-width: 767px){
nav a.logo {
	width: calc(100% - 60px);
}
.wcorder{
	order: 1;
}
}