/*--
<!-- GTcms :: GT Web Framework-->
--*/
:root {
    --color1: #0d42ff;
    --color2: #ffff00;
    --color3: var(--color1);
}
:root {
    --primary: #015FC9;
    --secondary: #0DD3F1;
    --light: #F6F7FC;
    --dark: #15233C;
}
:root {
    --primary: #FF800F;
    --secondary: #001064;
    --light: #F6F7F8;
    --dark: #010A35;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .h2 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-family: "Roboto Slab",serif;
  font-weight: 600;
  line-height: 1.2;
  color: #351201;
}
.display-6 {
 font-size:calc(1.375rem + 1.5vw);
 font-weight:800;
 line-height:1.2
}
@media (min-width: 1200px) {
 .display-6 {
  font-size:2.5rem
 }
}
.display-4 {
 font-size:calc(1.475rem + 2.7vw);
 font-weight:800;
 line-height:1.2
}
@media (min-width: 1200px) {
 .display-4 {
  font-size:3.5rem
 }
}
a {
  color: var(--color1);
  text-decoration: none;
}
a:hover {
  color: var(--color2);
  text-decoration: none;
}
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    right: 10px;
    bottom: 20px;
    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 {
    transition: .5s;
}

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

.btn.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

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

.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-brand img {
    max-height: 60px;
}

.navbar .navbar-nav .nav-link {
    margin-left: 25px;
    padding: 10px 0;
    color: #696E77;
    font-weight: 400;
    outline: none;
	font-size: 1.2rem;
}

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

.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-brand img {
        max-height: 45px;
    }

    .navbar .navbar-nav {
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .navbar .nav-item .dropdown-menu {
        padding-left: 30px;
    }
}

@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;
    justify-content: center;
    text-align: center;
    background: rgba(1, 10, 53, .8);
	background: linear-gradient(to top,rgba(0, 0, 0, 0.35),rgba(0, 0, 0, 0.25)) rgba(var(--color1rgb), .4);
    z-index: 1;
}

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

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--color1);
    /*border: 15px solid var(--color1);*/
    border-radius: 50px;
	background-image: none;
	font-size: 1.5rem;
	color: #444;
	align-content: center;
	display: grid;
}

@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;
    }
}

.page-header {
    background: linear-gradient(rgba(1, 10, 53, .8), rgba(1, 10, 53, .8)), url(../images/b2.jpg) center center no-repeat;
	background: linear-gradient(rgba(var(--color1rgb), .8), rgba(var(--color2rgb), .8)), url(../images/b2.jpg) center center no-repeat;
    background-size: cover;
	position:relative;
}
.page-header:before {
	content:'';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgb(0, 0, 0);
	background: rgba(0, 0, 0, 0.5); /* Black see-through */
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
    color: var(--primary);
}


/*** Facts ***/
.facts {
    background: rgba(1, 10, 53, .8);
    background: rgba(var(--color1rgb), .8);
	background: linear-gradient(to top,rgba(0, 0, 0, 0.55),rgba(0, 0, 0, 0.45)) rgba(var(--color1rgb), .7);
}


/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .container.quote .quote-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }

    .container.quote .quote-form {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .container.quote .quote-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }

    .container.quote .quote-form  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .container.quote .quote-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }

    .container.quote .quote-form  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.container.quote .quote-text {
    background: rgba(1, 10, 53, .8);
}

.container.quote .quote-form {
    background: rgba(255, 255, 255, .8);
}

.container.quote .quote-text .h-100,
.container.quote .quote-form .h-100 {
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/*** Service ***/
.service-item .service-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item .service-icon img {
    max-width: 60px;
    max-height: 60px;
}


/*** Team ***/
.team-item .team-img::before,
.team-item .team-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(1, 10, 53, .8);
    transition: .5s;
}

.team-item .team-img::after {
    left: auto;
    right: 0;
}

.team-item:hover .team-img::before,
.team-item:hover .team-img::after {
    width: 50%;
}

.team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.team-item:hover .team-img .team-social {
    transition-delay: .3s;
    opacity: 1;
}


/*** Testimonial ***/
.animated.pulse {
    animation-duration: 1.5s;
}

.testimonial-left,
.testimonial-right {
    position: relative;
}

.testimonial-left img,
.testimonial-right img {
    position: absolute;
    border-radius: 70px;
}

.testimonial-left img:nth-child(1),
.testimonial-right img:nth-child(3) {
    width: 70px;
    height: 70px;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-left img:nth-child(2),
.testimonial-right img:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.testimonial-left img:nth-child(3),
.testimonial-right img:nth-child(1) {
    width: 50px;
    height: 50px;
    bottom: 10%;
    right: 10%;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
}

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

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}


/*** Footer ***/
.footer {
    color: #7F8499;
}

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

.footer .btn.btn-link::before {
    position: relative;
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #7F8499;
    margin-right: 10px;
}

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

.footer .btn.btn-square {
    color: #7F8499;
    border: 1px solid #7F8499;
}

.footer .btn.btn-square:hover {
    color: var(--light);
    border-color: var(--primary);
}

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

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

.footer .copyright a:hover {
    color: #FFFFFF;
}

/*--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 25px;
	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: 70px;
    transition: .5s;
	/*padding: 5px;*/
	background: #fff;
	border-radius: 5px;
}
.bg-color1, .btn-color1{
    background:var(--color1);
    border-color:var(--color1);
}
.bg-color2, .btn-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-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.85),rgba(0,0,0,0.85)) var(--color1);
}
.text-color1{
    color:var(--color1);
}
.text-color2{
    color:var(--color2);
}
.text-color3{
    color:var(--color3);
}
.border-color1{
	border-color:var(--color1) !important;
}
.border-color2{
	border-color:var(--color2) !important;
}
.wcbx {
  font-size: 1.2rem;
  text-align: justify;
  letter-spacing: .7px;
}
#vehiclesinfo .vehinfolist- {
    box-shadow: 0px 0px 1px #555;
 	border-radius: 20px;
   padding: 20px 10px;
	height: 100%;
}
#vehiclesinfo .vehinfobx .column {
    width: 50%;
	border: 1px solid #ccc;
	border: 1px solid rgba(var(--color1rgb),.3);
	margin: 1px 0;
	background: #fff;
	background: rgba(255, 255, 255, 0.5);
	color: #333;
	padding: 5px;
	align-items: center;
	display: grid;
	/*background: linear-gradient(to top,rgba(255,255,255,.85),rgba(255,255,255,.85)) var(--color2);*/
}
#vehiclesinfo .vehinfobx .column:nth-child(odd) {
	/*border-right: 2px solid #ddd;
	background: linear-gradient(to top,rgba(255,255,255,.85),rgba(255,255,255,.85)) var(--color1);*/
}
}
#vehiclesinfo .vehinfolist a {
    color: var(--color1);
	transition: all 0.3s ease-in;
}
#vehiclesinfo .vehinfolist a:hover {
    color: var(--color2);
	transition: all 0.3s ease-in;
}
#vehiclesinfo .vehinfolist .vehi_img img {
	background: linear-gradient(to top,rgba(var(--color2rgb),.65),rgba(var(--color1rgb),.65));
	border-radius: 20px;
}
#vehiclesinfo .vlst .vehinfolist .vehi_img img {
	height:300px;
	width:auto;
	object-fit: contain;
	background: linear-gradient(to top,rgba(var(--color2rgb),.65),rgba(var(--color1rgb),.65));
	border-radius: 20px;
}
.vehrowbx{
	/*border: 2px solid var(--color1);
	border-radius: 10px;*/
	height: 100%;
	overflow: hidden;
	background: rgba(255,255,255,.85);
	box-shadow: 0px 0px 5px #333;
	border-radius: 20px;
	border-top-left-radius: 30%;
	border-top-right-radius: 30%;
	background: linear-gradient(to top,rgba(var(--color2rgb),.65),rgba(var(--color1rgb),.65));
	background: linear-gradient(to top,rgba(var(--color1rgb),.25),rgba(var(--color2rgb),.65));
}
}
.vehrowbx:hover{
	box-shadow: 0px 0px 10px #fff;
}
.vehirowimgbx1 img {
  width: 400px;
  width: 100%;
  height: 200px;
  object-fit: contain;
}
.pgvw .vehirowimgbx1{
	width: 100%;
	height: auto;
	position: relative !important;
	transform: none !important;
	left: 0 !important;
	/*background: linear-gradient(to top,rgba(255,255,255,.65),rgba(255,255,255,.85)) var(--color1);*/
}
.pgvw .vehirowimgbx1 img{
	border-radius: 0;
	width: 100%;
	height: auto;
	object-fit: contain;
}
.service-item {
	height: 100%;
}
.service-item img, .pgimg {
	width: 100%;
	height: auto;
	object-fit: cover;
	aspect-ratio: 1.6;
}
.service-item .service-icon img {
	width: 100%;
	height: auto;
	object-fit: contain;
	aspect-ratio: 1;
}
.stickednav{
	padding-top: 0;
	padding-bottom: 0;
}
.btn-color1:hover{
	background: linear-gradient(to top,rgba(255,255,255,.65),rgba(255,255,255,.65)) var(--color1);
}
.btn-color2:hover{
	background: linear-gradient(to top,rgba(255,255,255,.65),rgba(255,255,255,.65)) var(--color2);
}
.form-control:focus{
	box-shadow:none;
	border-color: rgba(var(--color1rgb),.7);
}
.wchltxt {
	/*width: min-intrinsic;
	width: -webkit-min-content;
	width: -moz-min-content;
	width: min-content;
	display: table-caption;
	display: -ms-grid;
	-ms-grid-columns: min-content;*/
	font-size: 1.6rem;
}
.img-sm{
	width: 50px;
}
.why-box .icon-box {
	padding: 10px;
	box-shadow: 0px 0px 2px #fff;
	background: rgba(255, 255, 255, 0.2);
	text-align: left;
}
.why-box .icon-box i, .iconbground {
	font-size: 1.8rem;
	padding: 8px;
	border-radius: 100%;
	background: var(--color1);
	color: var(--color2);
	border: 1px solid #fff;
}
ul.why-box{
	list-style: none;
	column-count: 2;
}
.service-item .imgicon{
	aspect-ratio: unset;
}
.service-item img.hpg {
	aspect-ratio: 2.5;
}
.footer-contact span{
	display: inline-grid;
}
#cf_container .form-control {
	height: calc(3.2rem + 2px);
	padding: .6rem;
}
.contact-info i {
	font-size:1.8rem;
	min-width:42px;
	color: var(--color1);
}
.text-topbar{
	color: rgba(255,255,255,0.6);
}
.text-justify{
	text-align:justify;
}
.footer .social-links a{
	color: var(--color1);
	border: 1px solid rgba(255,255,255,0.6);
	font-size: 2.0rem;
}
.footer .social-links a:hover{
	color: var(--color2);
}
.mainbc .breadcrumb{
	justify-content: center ;
}
.floatbtns a {
  position:fixed;
  bottom:56px;
  left:10px;
  padding:8px;
  overflow:hidden;
  transition:all .3s ease-in;
  left:100%;
  margin:0 auto;
  z-index:99;
  width:100%;
  text-align:center;
  color:#fff
}
.floatbtns a:hover {
  color:#fff
}
.floatbtns .btn {
  border-radius:100%;
  width:42px;
  height:42px;
  max-width:200px;
  margin-right:5px;
  padding:.3rem .5rem;
  padding:.1rem .2rem;
  border: 1px solid var(--color1);
}
.floatbtns .btn .h5 {
  font-size:1.6rem;
  line-height: 1.6;
  color:var(--color1);
  color:#fff;
}
.floatbtns .wafloat {
  left:5px;
  background:#25d366;
}
.floatbtns .wafloat.moveup {
  margin-bottom: 40px;
  /*bottom:56px;*/
}
.floatbtns .wafloat i {
  font-size:1.2em;
  line-height:1em
}
.floatbtns .bnfloat {
  background:linear-gradient(to top,rgba(10,10,10,.15),rgba(10,10,10,.15)) var(--color2);
  background:var(--color2);
  padding:.4rem .4rem;
  padding: .5rem .5rem;
  right:5px;
}
.floatbtns .bnfloat .h5 {
  line-height:1.0em;
  font-size:1.5rem;
  color:var(--color1);
}
.floatbtns .btntop {
  bottom: 48%;
}
.floatbtns .btnbottom {
  bottom: 48%;
}
/*//////// START -- gt blog styles //////// */
.blog{
	font-size: 1.1rem;
}
.blog .section-title {
	max-width: initial;
}
.bimgbx{
	aspect-ratio:1.5;
}
.blog .spimg{
	aspect-ratio:1.5;
	object-fit: cover;
	border-bottom: 1px dotted var(--color1);
}
.blog .spgimg{
	max-width: 100%;
	height: 100%;
	object-fit: cover;
	width: 100%;
	aspect-ratio: 1.5;
}
.search .spimg{
	max-width: 100%;
	object-fit: cover;
	width: 100%;
	aspect-ratio: 1.5;
}
.taglstimg {
  width: 100%;
  height: auto;
  aspect-ratio: 1.78;
  object-fit: fill;
  background: var(--color4);
}
.datebadge{
    bottom: 15px;
    display: inline-block;
    margin-right: 0;
    margin-top: 0;
    position: absolute;
    right: 0px;
    background: rgba(0,0,0,0.5);
	background: rgba(var(--color1rgb),0.5);
    color: #ffffff;
	padding: 10px;
	border-top-left-radius: 100px;
	border-bottom-left-radius: 100px;
}
.searchresrow{
	border-bottom: 1px dashed #aaa;
	/*padding: 10px;*/
	display: grid;
}
.searchresrow:last-child{
	border-bottom: none;
}
#search input.search_button{
	color: #FFFFFF;
	background: var(--color1);
	border-color: var(--color1);
	min-height: 48px;
	padding: .375rem .75rem;
	border-radius: .25rem;
	border-radius: 50px;
}
#search input.search_button:hover{
	color: #FFFFFF;
	background: var(--color2);
	border-color: var(--color2);
}
#search .search_field{
	background: rgba(var(--color1rgb),0.1);
	min-height: 48px;
	border: 0;
	margin-bottom: 15px;
	padding: .375rem .75rem;
	border-radius: .25rem;
	box-shadow: 0 0 0 1px rgba(var(--color1rgb),0.25);
}
#search .search_field:focus, #search .search_field:focus-visible {
	box-shadow: 0 0 0 .15rem rgba(var(--color1rgb),0.25);
	outline: 0;
}
#sidebar #search #g_search_form p{
	display:grid;
}
.sbinner{
	box-shadow: 0 0 0 1px rgba(var(--color1rgb),0.25);
	border-radius: 10px;
}
#sidebar .section-title h2, #sidebar .section-title .h2 {
	font-size: 1.3rem;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 45px;
	border-radius: 50px;
}
#sidebar .post-item img {
	width:80px;
	height:80px;
	object-fit:cover;
	border-radius: 5px;
}
#sidebar .post-item .post-body {
  justify-content: center;
  align-self: center;
  padding-left: 20px;
}
#sidebar .post-item h3, #sidebar .post-item .h3 {
	font-size: 1.2rem;
	margin-bottom: 0;
}
.float-left{
	float: left;
}
.float-right{
	float: right;
}
.sidebar-left{
	order:-1;
}
.sidebar-widget.booktaxi .section-header{
	display:none;
}
.sidebar-widget #cfcontainer .col-md-3,
.sidebar-widget #cfcontainer .col-md-4,
.sidebar-widget #cfcontainer .col-md-6,
.sidebar-widget #cf_container .col-md-3,
.sidebar-widget #cf_container .col-md-4,
.sidebar-widget #cf_container .col-md-6
{
  width: 100%; /* Make input fields fill the column */
  box-sizing: border-box; /* Ensure proper sizing with padding/borders */
}
.sidebar-widget #cf_container textarea {
	min-height: 120px;
}
.sidebar-widget #cf_container input, .sidebar-widget #cf_container textarea {
	background:rgba(var(--color1rgb),0.04);
}
.sidebar-widget #cf_container .btn.btn-light {
	background:var(--color1);
	box-shadow: inset 0 0 0 0 var(--color2);
}
.sidebar-widget #cf_container .btn.btn-light:hover {
	box-shadow: inset 300px 0 0 0 var(--color2);
}
.sidebar-widget.booktaxi form#enquiry-form .form-left-gtatour-submit.form-group{
	margin-bottom:0;
}
[class^="column-count-"] {
	column-gap: 30px;
	text-align: justify;
}
.column-count-1 { column-count: 1; }
.column-count-2 { column-count: 2; }
.column-count-3 { column-count: 3; }
.column-count-4 { column-count: 4; }
.column-count-5 { column-count: 5; }
.column-count-6 { column-count: 6; }
.blog .pgul ul li{
	font-size: 1.1rem;
	line-height: 1.4em;
	padding-left: 0px;
	padding-top: 2px;
	padding-bottom: 2px;
}
.sidebar-widget.categories .post-body a{
	display: flex;
}
.sidebar-widget.categories .post-body a:before{
	content: "\f0da";
	font-family: 'Font Awesome 5 Free';
	color: var(--color1);
	font-weight: 900;
	margin-right: 10px;
	display: table-cell;
	display: flex;
	transition: all 0.3s ease-in;
}
.posts-prev-item, .posts-next-item {
	position: relative;
}
.posts-prev-item:before, .posts-next-item:before {
	content: "\f0d9";
	content: "\f053";
	font-family: 'Font Awesome 5 Free';
	color: rgba(var(--color1rgb),.2);
	font-weight: 900;
	display: table-cell;
	display: flex;
	font-size: 2.2rem;
	line-height: 4rem;
	line-height: 5rem;
	position: absolute;
	left: -2.4rem;
	transition: all 0.3s ease-in;
}
.posts-next-item:before {
	content: "\f0da";
	content: "\f054";
	left: unset;
	right: -2.4rem;
}
.pgul  ol{
	list-style-position: outside;
	font-size:1.2rem;
	/*text-indent:10px;*/
	margin-top: 10px;
	margin-left: 15px;
}
/*social-share-buttons*/
.share-buttons-container {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.share-button {
  display: inline-block;
  padding: 10px 15px;
  background-color: #333;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  border-radius: 50%;
  font-family: sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 1.2em; /* Adjust icon size */
  display: flex; /* To center the icon if needed */
  justify-content: center;
  align-items: center;
  width: 52px;
}

.share-button:hover {
  background-color: #555;
  color: var(--color2);
}

/* Specific styling for each button */
.share-buttons-container .whatsapp {
  background-color: #25D366;
}

.share-buttons-container .facebook {
  background-color: #1877F2;
}

.share-buttons-container .twitter {
  background-color: #1DA1F2;
}

.share-buttons-container .email {
  background-color: #EA4335;
}

.share-buttons-container .copy-link {
  background-color: #777;
}
/*end-social-share-buttons*/
.justify-content-equal .share-button{
	flex: 1 1 0;
}
.tagbtn-container{
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	justify-content: space-between;
	gap: 10px;
}

.tagbtn{
	background: rgba(var(--color1rgb),.2);
	padding: 5px 5px;
	text-transform: uppercase;
	font-size: .8rem;
	min-height: 50px;
	align-content: center;
	border-radius: 0;
	border-radius: 50px;
}
.tagbtn:hover{
	background: rgba(var(--color1rgb),.28);
	color:var(--color1);
}
.tagbtn:focus{
	box-shadow:none;
}
.tooltip-container {
  position: relative;
  display: inline-block; /* Makes the container wrap the button */
}

.tooltip-text {
  visibility: hidden;
  position: absolute;
  bottom: calc(100% + 10px); /* Position it above the button with a 10px gap */
  bottom: calc(100% + 28px);
  left: 50%; /* Center horizontally */
  transform: translateX(-50%); /* Adjust to true center */
  white-space: nowrap;
  
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 6px 12px;
  border-radius: 4px;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

/* Pointing downwards from the bottom of the tooltip */
.tooltip-text::before {
  content: "";
  position: absolute;
  top: 100%; /* Position the arrow at the bottom of the tooltip */
  left: 50%;
  margin-left: -5px; /* Half of border-width to center it */
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent; /* Arrow points down */
}

/* Class to show the tooltip */
.tooltip-text.show {
  visibility: visible;
  opacity: 1;
}
/*//////// END -- gt blog styles //////// */
.blog .btxtbx-:before{
	width: 100%;
	height: 8px;
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	/*border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;*/
	background: rgba(var(--color1rgb), .5);
	transition: 0.5s;
	z-index: 3;
}
.blog .blog-item:hover .btxtbx:before {
  background: rgba(var(--color1rgb), .1);
  height: 100%;
  pointer-events: none;
}
.blttl{
	/*overflow: hidden;
	max-height: 1.4em;
	line-height: 1.4em;*/
	transition: 0.5s;
}
.blog-item{
border-radius: 20px !important;
overflow: hidden;
}





@media (max-width: 991.98px) {
.wchltxt {
	font-size:1.0rem;
}
}

