/*--
<!-- GTcms :: GT Web Framework-->
--*/

:root {
    --color1: #0d42ff;
    --color2: #ffff00;
    --color3: var(--color1);
}
:root {
    --primary: #16D5FF;
    --secondary: #999999;
    --light: #F2F8FE;
    --dark: #111111;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 60px;
    right: 20px;
    bottom: 20px;
    z-index: 99;
}
body {
  font-family: "Open Sans",sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #666;
  -webkit-text-size-adjust: 100%;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-family: "Roboto",sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #111;
  color: var(--color2);
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-weight: 500 !important;
}
h5, .h5 {
  font-size: 1.25rem;
}
a {
color: var(--color1);
	text-decoration:none;
}
a:hover {
color: var(--color2);
}
/*** 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 {
    color: #FFFFFF;
}

.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 {
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-weight: 500;
    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-right: 0;
        padding: 10px 0;
    }

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

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

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

.navbar .btn:hover {
    color: #FFFFFF !important;
    background: var(--color1) !important;
}


/*** Header ***/
.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}


/*** Service ***/
.service-item {
    position: relative;
    overflow: hidden;
}

.service-item::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: -80px;
    right: -80px;
    border: 80px solid;
    transform: rotate(45deg);
    opacity: 1;
    transition: .5s;
}

.service-item.bg-white::after {
    border-color: transparent transparent var(--light) transparent;
}

.service-item.bg-light::after {
    border-color: transparent transparent #FFFFFF transparent;
}

.service-item:hover::after {
    opacity: 0;
}


/*** Roadmap ***/
.roadmap-carousel {
    position: relative;
}

.roadmap-carousel::before {
    position: absolute;
    content: "";
    height: 0;
    width: 100%;
    top: 20px;
    left: 0;
    border-top: 2px dashed var(--secondary);
}

.roadmap-carousel .roadmap-item .roadmap-point {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 6px;
    left: 50%;
    margin-left: -15px;
    background: #FFFFFF;
    border: 2px solid var(--color1);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.roadmap-carousel .roadmap-item .roadmap-point span {
    display: block;
    width: 18px;
    height: 18px;
    background: var(--color1);
}

.roadmap-carousel .roadmap-item {
    position: relative;
    padding-top: 150px;
    text-align: center;
}

.roadmap-carousel .roadmap-item::before {
    position: absolute;
    content: "";
    width: 0;
    height: 115px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-right: 2px dashed var(--secondary);
}

.roadmap-carousel .roadmap-item::after {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    top: 111px;
    left: 50%;
    margin-left: -7px;
    transform: rotate(45deg);
    background: var(--color1);
}

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

.roadmap-carousel .owl-nav .owl-prev,
.roadmap-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 22px;
    color: var(--light);
    background: var(--color1);
    transition: .5s;
}

.roadmap-carousel .owl-nav .owl-prev:hover,
.roadmap-carousel .owl-nav .owl-next:hover {
    color: var(--color1);
    background: var(--dark);
}


/*** FAQs ***/
.accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
}

.accordion .accordion-button {
    background: var(--light);
    border-radius: 2px;
}

.accordion .accordion-button:not(.collapsed) {
    color: #FFFFFF;
    background: var(--color1);
    box-shadow: none;
}

.accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion .accordion-body {
    padding: 15px 0 0 0;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--color2);
	color: #444;
    font-weight: normal;
    text-transform: capitalize;
	text-decoration: none;
    transition: .3s;
	position: relative;
	font-size: 1.1rem;

}

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

.footer .btn.btn-link:hover {
    color: var(--color1);
    box-shadow: none;
	top: -2px;
    transition: .3s;
}

.footer .btn.btn-square, .footer .btn.btn-lg-square {
    color: var(--color1);
    border: 1px solid var(--color1);
}

.footer .btn.btn-square:hover, .footer .btn.btn-lg-square:hover {
    color: #FFFFFF;
    background: var(--color1);
}

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

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

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

/*--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: "\f0a4";
    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;
    background: #fff;
    border-radius: 5px;
    /*padding: 5px;
	max-width: calc(100% - 40px);*/
}

.bg-color1,
.btn-color1 {
    background: var(--color1);
    border-color: var(--color1);
}

.bg-color2,
.btn-color2 {
    background: var(--color2);
    border-color: var(--color2);
	color:#eee;
}

.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.65), rgba(0, 0, 0, 0.65)) var(--color1);
}
.bg-color1-dark2 {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)) var(--color1);
}
.bg-color2-dark {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)) var(--color2);
}

.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;
    margin: 0;
    background: #fff;
    background: rgba(255, 255, 255, 0.5);
    color: #333;
    padding: 5px;
    align-items: center;
    display: grid;
	border-radius: 10px;
	border-radius: 0px;
	overflow: hidden;
    /*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%;
	border-radius: 15px;
	overflow: hidden;
}
.service-item img,
.pgimg {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1.77;
}
.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);
}
.why-box{
	position:relative;
	font-size: 1.1rem;
}
.text-justify{
	text-align:justify;
}
.service-item .service-icon img {
	max-width: 60px;
	max-height: 60px;
	width: 100%;
	height: auto;
	object-fit: contain;
	aspect-ratio: 1;
}
.img-sm {
  width: 80px;
}
.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;
}
.contact-info i {
	font-size:1.8rem;
	min-width:42px;
	color: var(--color1);
}
#cf_container .form-group, #cfcontainer .form-group {
	padding-bottom:20px;
}
.multiselect-container {
    width: 100%;
    background: linear-gradient(to top, rgba(255, 255, 255, .85), rgba(255, 255, 255, .85)) var(--color1);
}
.multiselect-container input[type="checkbox"] {
	accent-color: var(--color2);
	transform: scale(1.5);
}
.multiselect-container.show .multiselect-option:focus, .multiselect-container.show .multiselect-option:hover, .multiselect-container.show .multiselect-option.active:not(.multiselect-active-item-fallback) {
    background-color: var(--color2) !important;
	color: #fff;
}
.multiselect-container.show .multiselect-option:focus input[type="checkbox"], .multiselect-container.show .multiselect-option:hover input[type="checkbox"], .multiselect-container.show .multiselect-option.active:not(.multiselect-active-item-fallback) input[type="checkbox"] {
	accent-color: var(--color1);
	background-color: var(--color1);
}
#booknowbtn{
	width:300px;
	max-width:100%;
    margin-top: 10px;
    margin-bottom: 10px;
}
.vehinfobx {
	border-radius: 3px;
	overflow: hidden;
	/*border-radius: 20%;*/
}
.breadcrumbs.bcrmb a{
	/*color:#ccc;*/
}
.breadcrumb-item + .breadcrumb-item::before {
  color: #aaa;
}
.vehirowimgbx1 {
	border-radius: 3px;
	overflow: hidden;
	border-radius: 10%;
	border-radius: 5px;
	border-top: 5px solid var(--color1);
	border-bottom: 5px solid var(--color2);
}
.footer-contact span {
  display: inline-grid;
}
.site-footer p, .site-footer a, .site-footer .widget .links li a {
	font-size:1.2rem;
	color: #666;
}
.up-btn{
	border-radius: 10px;
}
#contact #reservation, .gmap {
	overflow: hidden;
}
.carousel-fade .carousel-item {
  max-height: 720px;
}
.navbar {
  /*flex-wrap: unset;*/
}
.feature-item img{
	width:64px;
}
a.btn-color1, input.btn-color1, button.btn-color1{
	color:#eee;
}
a.btn-color1:hover, input.btn-color1:hover{
	color:var(--color1);
}
.wwd img{
	width:48px;
	aspect-ratio: 1;
}
.txt-shadow1{
	text-shadow: 0px 0px 3px #000;
}
.vehinfobx h1{
	font-size: 2rem;
}
#tourpkg .item-boxes .pglst img {
  width: 100%;
  object-fit: contain;
}
.dropdown-item {
  padding: .5rem 1rem;
  white-space: normal;
  min-width:300px;
}
.sidebar .team-item{
	/*border-radius: 48% 48% 30px 30px;
	border-radius: 100% 100% 30px 30px;
	border-radius: 28% 28% 30px 30px;*/
	background: var(--color1);
	overflow: hidden;
	height: 100%;
	border-top: 5px solid var(--color1);
	border-bottom: 5px solid var(--color2);
}
.sidebar .team-item a{
	color:#fff;
}
.srvbx .item-boxes{
	box-shadow: 0px 0px 1px #666;
	padding: 0px;
	height: 100%;
	display: grid;
	border-radius: 5px;
	/*border-radius: 10%;
	outline: 1px solid var(--color1);
	outline-offset: -4px;
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid var(--color1);*/
	position:relative;
	overflow: hidden;
	border-top: 5px solid var(--color1);
	border-bottom: 5px solid var(--color2);
}
.trpkgrow .srvbx .item-boxes{
	background: var(--color1);
	color: #fff;
	/*border-radius: 20%;*/
}
.trpkgrow .srvbx .item-boxes h4, .trpkgrow .srvbx .item-boxes .h4, .trplace{
	font-family: var(--bs-body-font-family);
}
.feature-row img{
	width:100px;
}
.srvbx .item-boxes .mainttl {
	font-size: 1.2rem;
}
.bcheader {
	border-top: 3px solid rgba(var(--color1rgb),.3);
	border-bottom: 3px solid rgba(var(--color2rgb),.3);
}
.dropdown-item.active, .dropdown-item:active {
  background-color: var(--color1);
}
.stv-radio-tabs-wrapper {
  clear: both;
  display: inline-block;
  width: 100%;
  /*border-bottom: 1px solid #ccc;*/
  padding: 0 10px;
  position: relative;
  text-align: center;
}
.stv-radio-tabs-wrapper label {
	top: 6px;
	position: relative;
}
input.stv-radio-tab {
  position: absolute;
  left: -99999em;
  /*top: -99999em;*/
}
input.stv-radio-tab + span {
  cursor: pointer;
  float: left;
  border: 1px solid #aaa;
  border-bottom: 0;
  background-color: #fff;
  margin-right: -1px;
  padding: 0.5em 1em;
  position: relative;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}
input.stv-radio-tab + span:hover {
  background-color: #eee;
}
input.stv-radio-tab:checked + span {
  box-shadow: 0 3px 0 -1px #fff, inset 0 6px 0 -1px var(--color1);
  background-color: #fff;
  border-color: var(--color1);
  color: var(--color1);
  z-index: 1;
}
.booknowbox{
	width:100%;
	border: 1px solid var(--color1);
	border-radius: 20px;

}
.radiobtn {
  position: relative;
  display: block;
}
.radiobtn label {
	position:relative;
	/*display: table;*/
}
.booknowbox .form-time-gtatravels .radiobtn label{
	display:inline-block;
	width: calc(50% - 3px);
}
.radiobtn span {
  display: block;
  background: #eee;
  color: #444;
  border-radius: 5px;
  padding: 7px 20px;
  border: 2px solid #ccc;
  margin-bottom: 0px;
  cursor: pointer;
  /*width: 150px;*/
}
.radiobtn span:after, .radiobtn span:before {
  content: "";
  position: absolute;
	right: 0px;
	top: 0px;
	width: 40px;
	height: 30px;
	height: 100%;
  /*border-radius: 3px;*/
  background: #ddd;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
}
.radiobtn span:before {
  background: transparent;
  transition: 0.1s width cubic-bezier(0.075, 0.82, 0.165, 1) 0s, 0.3s height cubic-bezier(0.075, 0.82, 0.165, 2) 0.1s;
  z-index: 1;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center;
  width: 0;
  height: 0;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNS4zIDEzLjIiPiAgPHBhdGggZmlsbD0iI2ZmZiIgZD0iTTE0LjcuOGwtLjQtLjRhMS43IDEuNyAwIDAgMC0yLjMuMUw1LjIgOC4yIDMgNi40YTEuNyAxLjcgMCAwIDAtMi4zLjFMLjQgN2ExLjcgMS43IDAgMCAwIC4xIDIuM2wzLjggMy41YTEuNyAxLjcgMCAwIDAgMi40LS4xTDE1IDMuMWExLjcgMS43IDAgMCAwLS4yLTIuM3oiIGRhdGEtbmFtZT0iUGZhZCA0Ii8+PC9zdmc+);
}
.radiobtn input[type="radio"] {
  display: none;
  position: absolute;
  width: 100%;
  appearance: none;
}
.radiobtn input[type="radio"]:checked + span {
  background: #eee;
  background: linear-gradient(to top, rgba(255, 255, 255, .85), rgba(255, 255, 255, .85)) var(--color1);
  border-color: var(--color1);
  color: var(--color1);
}
.radiobtn input[type="radio"]:checked + span:after {
  background: var(--color1);
}
.radiobtn input[type="radio"]:checked + span:before {
  width: 40px;
  height: 30px;
  height: 100%;
}
#enquiry-form .form-control-input, #enquiry-form .form-control-select, .multiselect.dropdown-toggle, #reviewz .form-control, #cf_container .form-control {
  display: block;
  width: 100%;
  padding-top: 1.0625rem;
  padding-bottom: 0.0625rem;
  padding-left: 1.3125rem;
  border: 1px solid #9791ae;
  border-radius: 0.25rem;
  background-color: #413d52;
  background-color: #f0f0e1;
  background: linear-gradient(to top, rgba(255, 255, 255, .85), rgba(255, 255, 255, .85)) var(--color1);
  color: #f1f1f8;
  color: #000;
  font: 400 0.875rem/1.875rem "Open Sans", sans-serif;
  transition: all 0.2s ease;
  -webkit-appearance: none;
  padding: .5rem;
}
#enquiry-form .form-control-input:focus, #enquiry-form .form-control-select:focus, .multiselect.dropdown-toggle:focus, #reviewz .form-control:focus, #cf_container .form-control:focus{
	outline:1px solid var(--color1);
	border:1px solid var(--color1);
}
#cf_container label{
	display:initial;
}
.ftrlink-grid ul li::before {
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    width: 1.3em;
    color: var(--color1);
    font-weight: 900;
    margin-right: 3px;
}
.ftrlink-grid ul {
  list-style: none;
  columns: 2;
  padding-left:0;
}
.footer{
	border-top: 3px solid rgba(var(--color1rgb),.3);
}
.footer .address span {
  display: inline-grid;
}
.text-color1-light{
	color: rgba(var(--color1rgb),.5);
}
.placesrow .trplace{
	font-size: 1.2rem;
}
.hero-header{
	background: url(../images/b1.jpg) no-repeat center center / cover;
}
.hero-header.homeheader{
	background: url(../images/b4.jpg) no-repeat center center / cover;
	background: url(../images/b5.jpg) no-repeat center center / cover;
	min-height: 600px;
	position: relative;
}
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, .1);
  background: rgba(var(--color1rgb), .2);
  background: rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.why-box h3{
	font-weight:300;
	font-family: "Open Sans", sans-serif;
}
.text-shadow-dark{
	text-shadow: 1px 1px 0px #333;
}
.wave-shape{
	transform: rotate(180deg);
	position: relative;
	overflow: hidden;
	position: absolute;
	left: 0;
	width: 100%;
	line-height: 0;
	direction: ltr;
}
.wave-shape-bottom{
	bottom: -1px;
}
.wave-shape svg{
	width: calc(122% + 1.3px);
	height: 75px;
	z-index: -1;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	display: block;
}
.wave-shape-fill{
	fill:#ffffff;
}
.skewbg .nav-item.active{
	position: relative;
}
.skewbg .nav-item.active::before{
	content: '';
	background: rgba(var(--color1rgb),.1);
	display: block;
	position: absolute;
	width: 100%;
	width: calc(100% + 20px);
	height: 100%;
	transform: skewX(-18deg);
	left: -10px;
	z-index: -1;
	border-top: 3px solid var(--color1);
	top: -0%;
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 1px var(--color1);
}
#tags .service-item::after{
	color: rgba(var(--color1rgb), .25);
}
.viewpricebtn {
-ms-flex-align: center;
  -ms-flex-pack: center;
  -ms-flex-item-align: end;
  align-items: center;
  align-self: flex-end;
  background-image: linear-gradient(96deg,var(--color1) 1%,var(--color1) 129%);
  border-radius: 34px;
  -webkit-box-shadow: 0 1px 7px 0 rgba(0,0,0,.2);
  box-shadow: 0 1px 7px 0 rgba(0,0,0,.2);
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  font-weight: 700;
  justify-content: center;
  /*height: 32px;
  width: 125px;*/
  padding: 7px 10px;
  display: inline-block;
  min-width: 110px;
}
.locations .pgimg {
	max-width: 800px;
	outline: 2px solid rgba(var(--color1rgb),.5);
	outline-offset: 5px;
}
.locations .pgul ul{
	display:inline-block;
}
.locations .pgul ul li{
	box-shadow: 0px 0px 5px #aaa;
	margin: 10px;
	padding: 10px;
}
.btn:focus, .btn-1:hover {
	outline: 0;
	box-shadow: 0 0 0 1px rgba(var(--color1rgb),.65);
	transition: .3s;
}
.taglstimg{
	width: 100%;
	height: auto;
	aspect-ratio: 2.7;
	object-fit: contain;
}
.tags .whyus ul {
  --icon-size: 1rem;
  --gutter: .5em;
  padding: 0 0 0 var(--icon-size);
}
.tags .whyus ul li {
  padding-left: var(--gutter);
}
.tags .whyus ul li::marker{
  content: "\f058"; 
  font-family: 'Font Awesome 5 Free';
  font-size: var(--icon-size);
  font-weight: 900;
  color: var(--color1);
}
.a2a_svg{
	/*--svgbg:background-color;*/
  background-color: var(--color1) !important;
}
.a2a_menu a.a2a_i{
  color: var(--color1);
}
.a2a_svg path{
	/*fill: var(--svgbg);*/
}
.howtobook .pgul ul li {
	display: block;
	padding: 10px 5px;
}
.howtobook .pgul ul li::before {
	display: inline-grid;
}
.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:5px;
  width:48px;
  height:48px;
  max-width:200px;
  margin-right:15px;
  padding:.3rem .5rem;
  padding:.1rem .4rem;
  border: 1px solid var(--color1);
}
.floatbtns .btn h5, .floatbtns .btn .h5 {
  font-size:2.1rem;
  color:var(--color1);
  color:#fff;
}
.floatbtns .wafloat {
  background:#25d366;
  right:5px;
  bottom: 20px;
}
.floatbtns .wafloat.moveup {
  margin-bottom: 15px;
  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:.5rem .5rem;
  left:5px;
  bottom: 20px;
}
.floatbtns .bnfloat h5, .floatbtns .bnfloat .h5 {
  line-height:1.4em;
  font-size:1.25rem
}
:target {
    margin-top: -100px;
    padding-top: 100px;
}








@media (max-width: 991.98px) {
	.booknowbox .form-time-gtatravels .radiobtn label{
		width: 100%;
		margin-bottom: 10px;
	}
	.stv-radio-tabs-wrapper label {
	  width: 100%;
	}
	input.stv-radio-tab + span {
		border-bottom: 1px solid;
		width: calc(100% - 3px);
	}
	.booknowbox {
	  margin: 5px;
	  width: calc(100% - 10px);
	}
	.ftrlink-grid ul {
	  columns: 1;
	  padding-left: 5px;
	}
	a.logo {
		width: calc(100% - 60px);
		margin-right: 0;
		transition: .5s;
	}
	.carousel-caption{
		width: calc(100% - 30px);
	}
	.hero-header.homeheader {
	  min-height: 360px;
	}
	.wave-shape svg {
	  height: 25px;
	}
	ul.why-box {
	  column-count: 1;
	  padding-left: 0;
	}
	.why-box h3 {
	  font-size: 1.2rem;
	}
}
