/** {box-sizing: border-box;}
body 
{
	font-family: Verdana, sans-serif;
	margin:0px;
	padding:0px;
}*/

.mySlides {display: none;}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}
.enquirylink {
  color: rgba(0,0,,.8);
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 115px;
  right:0px;
  margin-top:25px;
  background-color:#fff;
  border:1px solid #e3e3d3;
  margin-right:30px;
  font-size:20px;
  border-radius:5px;
  transition:500ms;
  cursor:pointer;
}
.enquirylink:hover
{
	background-color:rgba(0,0,0,.5);
	color:#fff;
	transition:500ms;
}
/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.tourtabactive {
  background-color: #717171;
}

.tourtabsubactive {
	background-color: #717171!important;
	color:#fff;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}



/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}



/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: system-ui, sans-serif;
}

/* Make images easier to work with */
img {
    /*display: block;*/
    max-width: 100%;
}

/***
 🟣 Modern CSS Solutions Demo Styles
 */

.gallery {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20ch, 1fr));
  cursor:pointer;
}

.gallery img {
  display: block;
  width: 100%;
  object-fit: cover;
  height: var(--gallery-height);
  transform: scale(1) translate(0, 0);
  transition: transform 300ms ease-in;
  border:1px solid #fff;
  
}

.gallery figure {
  --gallery-height: 15rem;
  --gallery-aspect-ratio: 4/3;

  /* reset figure default margin */
  margin: 0;
  height: var(--gallery-height);
  background-color: hsl(200, 85%, 2%);

  display: grid;
  grid-template-areas: "card";
  place-items: end;
  border-radius: 0em;
  overflow: hidden;
}

@supports (aspect-ratio: 1) {
  .gallery figure,
  .gallery img {
    aspect-ratio: var(--gallery-aspect-ratio);
    /* Remove height to prevent distorting aspect-ratio */
    /*height: auto;*/
  }
}

.gallery figure > * {
  grid-area: card;
}

.gallery figcaption {
  transition: transform 200ms 100ms ease-in;

  /* Visual styles for the caption */
  padding: 0.25em 0.5em;
  border-radius: 0px 0 0 0;
  background-color: hsl(0 0% 100% / 87%);
  /* provide stacking context */
  z-index: 1;
}

.gallery figure:hover figcaption,
.gallery figure:focus figcaption {
  transform: translateY(0);
}

.gallery figure:hover img,
.gallery figure:focus img {
  transform: scale(1.3) translate(-8%, -3%);
}

.gallery figure:focus {
  outline: 2px solid white;
  outline-offset: 2px;
}

@media (any-hover: hover) and (any-pointer: fine) {
  .gallery figcaption {
    transform: translateY(100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery * {
    transition-duration: 0ms !important;
  }

  .gallery img {
    transform: none !important;
  }

  .gallery figcaption {
    transition-delay: 0ms;
  }
}

/* Vignette */
.gallery figure::after {
  content: "";
  grid-area: card;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 2rem 1rem hsl(0 0% 0% / 65%);
  position: relative;
}


.tour-section-title
{
	font-size:26px;
	text-align:center;
	margin-top:50px;
	margin-bottom:20px;
}

.tour-section-subtitle
{
	font-size:20px;
	text-align:center;
	margin-top:20px;
	margin-bottom:30px;
}

.tour-image-overlay
{
	position:fixed;
	top:0px;
	left:0px;
	width:100%;
	height:calc(100vh);
	background-color:rgba(0,0,0,.9);
	display:none;
}

.close-overlay {
  position: absolute;
  right: 32px;
  top: 125px;
  width: 32px;
  height: 32px;
  opacity: 1;
  color:#fff;
  font-size:50px;
  cursor:pointer;
}
.close-overlay:hover {
  opacity: .8;
}
.close-overlay:after{
  display: inline-block;
  content: "\00d7"; /* This will render the 'X' */
}

/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #fff;
  background-color: #fff;
  text-align:center;
  margin-bottom:20px;
  margin-top:20px;
}

/* Style the buttons inside the tab */
.tab span {
  background-color: #ddd;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
  border-radius:5px;
  border:none;
  display:inline-block;
}

/* Change background color of buttons on hover */
.tab span:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab span.tourtabactive {
  background-color: red;
}

/* Style the tab content */
.tabcontent {
	display: none;
	
	border: 1px solid #fff;
	border-top: none;
	border: 1px solid #646464;
	border-top: none;
	margin-left: 100px;
	margin-right: 100px;
}

/* Style the tab */
.tabsub {
	overflow: hidden;
	border: 1px solid #ccc;
	background-color: #f1f1f1;
}

	/* Style the buttons inside the tab */
	.tabsub span {
		background-color: inherit;
		float: left;
		border: none;
		outline: none;
		cursor: pointer;
		padding: 14px 16px;
		transition: 0.3s;
		font-size: 17px;
	}

		/* Change background color of buttons on hover */
	.tabsub span:hover {
		background-color: #ddd;
	}

		/* Create an active/current tablink class */
	.tabsub span.active {
		background-color: #ccc;
	}

/* Style the tab content */
.tabcontentsub{
	display: none;
	padding: 6px 12px;
	-webkit-animation: fadeEffect 1s;
	animation: fadeEffect 1s;

}

/* Fade in tabs */
@-webkit-keyframes fadeEffect {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fadeEffect {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.tour-table
{
  margin-left:auto;
  margin-right:auto;
  background-color:#d7d7d7;
  padding:20px;  
  border-collapse:collapse;
  width:70%;
  
  
}
.tour-table td
{
  border:1px solid #fff;
  padding:20px;
  
}
.tour-table tbody
{
	    border: 2px solid #d7d7d7;
    box-shadow: 5px 6px 6px rgb(0 0 0 / 50%);
}

.tour-table tr
{
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,f6f6f6+47,ededed+100;White+3D+%231 */
background: #ffffff; /* Old browsers */
background: -moz-linear-gradient(top,  #ffffff 0%, #f6f6f6 47%, #ededed 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */

}
.m-309-value
{
	font-weight:600;
}
.tour-footer
{
	width:100;
	height:50px;
	background-color:rgba(0,0,0,.8);
}
.tour-contact
{
	width: 100%;
    height: 100px;
    margin-bottom: 200px;
    margin-top: 50px;
}	
.footer_social_style2 a
{
	display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: #fff;
    font-size: 20px;
    background: rgba(255,255,255,.1);
    border-radius: 100%;
    margin-right: 15px;
    border: 1px solid rgba(255,255,255,.25);
    text-align: center;
}



.tour-formsection-title {
    font-size: 26px;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
}

.tour-formsection-subtitle {
    font-size: 20px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 30px;
}


