body {
  margin: 0;
  /* mirameutia added font type in body*/
  font-family: "Avenir Next";
}

a {
  text-decoration: none;
}

.clear {
  clear: left;
}

.container {
  max-width: 1170px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

/* mirameutia added css for Contact Form*/
.contact-form {
  padding-top: 100px;
  color: #655c56;
}

input, textarea {
  width: 400px;
  margin-top: 10px;
  margin-bottom: 30px;
  padding: 20px;
  font-size: 18px;
  border: 1px solid #dee7ec;
}

.contact-submit {
  background-color: #b4e6bd;
  color: #655c56;
  padding: 15px 40px;
  cursor: pointer;
  box-shadow: 0 7px #ccedd2;
}

.contact-submit:active {
  box-shadow: none;
  position: relative;
  top: 7px;
 }
 
 /* abu */
 :root {
  --size: 60vmin;
  --space: 8vmin;
  --duration: 300ms;
  --ease-out: cubic-bezier(0.25, 1, 0.5, 1);
  --bounce-out: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
  box-sizing: border-box;
}

.travels {
  display: grid;
  place-items: center;
  grid-gap: var(--space);
  margin: 0 auto;
  padding: var(--space);
  font-family: "Sura", sans-serif;
  color: white;
  background-color: rgb(29, 30, 34);
}

.travel {
  position: relative;
  cursor: pointer;
  width: var(--size);
  height: var(--size);
}

.text-contents {
  --font-size: calc(var(--size) / 8);

  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: var(--font-size);
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  transform: translate(-10%, -50%);
  transition: transform var(--duration) var(--ease-out);
  pointer-events: none;
}

.text-contents::after {
  content: attr(data-cta);
  display: inline-block;
  margin-left: 1.5vmin;
  font-size: calc(var(--font-size) / 3.25);
  font-weight: 400;
  letter-spacing: 0.125vmin;
  opacity: 0;
  transform: translateX(-25%);
  transition: transform var(--duration) var(--ease-out),
    opacity var(--duration) var(--ease-out);
}

.travel-icon {
  width: var(--size);
  height: var(--size);
  overflow: hidden;
  clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0% 100%, 0 50%, 0% 0%);
  transition: transform var(--duration) var(--ease-out),
    clip-path var(--duration) var(--ease-out);
}

.travel-icon img {
  position: relative;
  width: 120%;
  height: 100%;
  object-fit: cover;
  transform: translateX(-10%);
  transition: transform var(--duration) var(--ease-out);
}

.travel-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--overlay-color);
  mix-blend-mode: multiply;
  opacity: 0;
  transform: translateZ(0);
  transition: opacity var(--duration) var(--ease-out);
}

.travel:hover img {
  transform: translateX(0);
}

.travel:hover .travel-icon {
  clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
  transform: translateX(25%);
  transition-timing-function: var(--bounce-out);
}

.travel:hover .travel-icon::after {
  opacity: 1;
}

.text-contents::after {
  content: attr(data-cta);
  display: inline-block;
  margin-left: 1.5vmin;
  font-size: calc(var(--font-size) / 3.25);
  font-weight: 400;
  letter-spacing: 0.125vmin;
  opacity: 0;
  transform: translateX(-25%);
  transition: transform var(--duration) var(--ease-out),
    opacity var(--duration) var(--ease-out);
}

.travel:hover .text-contents {
  transform: translate(5%, -50%);
  transition-timing-function: var(--bounce-out);
}


.travel:hover .text-contents::after {
  opacity: 1;
  transform: translateX(0);
  transition-timing-function: var(--bounce-out);
}


/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
  color: red;
  
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 240px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}


.top-wrapper {
  padding: 180px 0 100px 0;
  background-image: url(../image/bg-main.jpg);
  background-size: cover;
  color: white;
  text-align: center;
  opacity: 1.5;
}

.top-wrapper h1 {
  opacity: 0.7;
  font-size: 45px;
  letter-spacing: 5px;
  margin-bottom: 10px;
  
}

.top-wrapper h1 span{
background-color: black;
opacity: 0.9;
}

.top-wrapper p {
  opacity: 0.7;
  margin-bottom: 3px;
}
/*
.btn-wrapper {
  text-align: center;
  margin: 20px 0;
}

.btn-wrapper p {
  margin: 10px 0;
}


.signup {
  background-color: #239b76;
}*/
/*
.facebook {
  background-color: #3b5998;
  margin-right: 10px;
}

.twitter {
  background-color: #55acee;
}*/

/*.btn {
  padding: 12px 24px;
  color: white;
  display: inline-block;
  opacity: 0.8;
  border-radius: 4px;
  text-align: center;
}

.btn:hover {
  opacity: 1;
}
*/
.menu-icon { 
  color: black;
  float: right;
  font-size: 25px;
  padding: 21px 0;
  display: none;
} 

header {
  height: 80px;
  width: 100%;
  background-color: #ccedd2;
  position: fixed;
  top: 0;
  z-index: 10;
}

.logo {
  width: 60px;
  border-left: 25px;
  margin-top: 10px;
}

.header-left {
  float: left;
}

.header-left a {
  line-height: 60px;
  font-size: 25px;
  font-weight: 600;
  padding: 10px 25px;
  color: #655c56;
  display: block;
  float: right;
}

.header-right {
  float: right;
  margin-right: -25px;
}

.header-right a {
  line-height: 60px;
  padding: 10px 25px;
  color: #655c56;
  display: block;
  float: left;
  transition: all 0.5s;
}

.header-right a:hover {
  background-color: #94d3ac;
}

.header-right a.active {
  text-decoration-color: #655c56;
  text-decoration-line: underline;
}

/*.menu-icon {
  color: white;
  float: right;
  font-size: 25px;
  padding: 21px 0;
  display: none;
}*/

.travel-wrapper {
  padding-bottom: 80px;
  padding-left: 5%;
  padding-right: 5%;
  background-color: #f7f7f7;
  text-align: center;
}

.heading {
  padding-top: 80px;
  padding-bottom: 50px;
  color: #5f5d60;
}

.heading h2 {
  font-weight: normal;
  text-align: center;
  width: 100%;
}


.heading h3 {
  font-weight: normal;
}

.message-wrapper {
  border-bottom: 1px solid #eee;
  padding-bottom: 80px;
  text-align: center;
}

.message {
  padding: 15px 40px;
  background-color: #5dca88;
  cursor: pointer;
  box-shadow: 0 7px #1a7940;
}

.message:active {
  position: relative;
  top: 7px;
  box-shadow: none;
}

footer img {
  width: 125px;
}

footer p {
  color: #b3aeb5;
  font-size: 12px;
}

footer {
  padding-top: 30px;
  padding-bottom: 20px;
}

/* button anim */
.contact-form form a {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  color: #ccedd2;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  transition: .5s;
  margin-top: 40px;
  letter-spacing: 4px
}

.contact-form a:hover {
  background: #ccedd2;
  color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 5px #ccedd2,
              0 0 25px #ccedd2,
              0 0 50px #ccedd2,
              0 0 100px #ccedd2;
}

.contact-form a span {
  position: absolute;
  display: block;
}

.contact-form a span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #94d3ac);
  animation: btn-anim1 1s linear infinite;
}


@keyframes btn-anim1 {
  0% {
    left: -100%;
  }
  50%,100% {
    left: 100%;
  }
}

.contact-form a span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #94d3ac);
  animation: btn-anim2 1s linear infinite;
  animation-delay: .25s
}

@keyframes btn-anim2 {
  0% {
    top: -100%;
  }
  50%,100% {
    top: 100%;
  }
}

.contact-form a span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, #94d3ac);
  animation: btn-anim3 1s linear infinite;
  animation-delay: .5s
}

@keyframes btn-anim3 {
  0% {
    right: -100%;
  }
  50%,100% {
    right: 100%;
  }
}

.contact-form a span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #94d3ac);
  animation: btn-anim4 1s linear infinite;
  animation-delay: .75s
}

@keyframes btn-anim4 {
  0% {
    bottom: -100%;
  }
  50%,100% {
    bottom: 100%;
  }
}
/*gallery*/
/* webdevtrick.com */
html, .gallery .{
  height: 100%;
  font-size: 16px;
  line-height: 1.5;
  font-family: Trebuchet MS, Helvetica, Arial, sans-serif;
}
 
.gallery {
  overflow: hidden;
  background-color: #222;
  display: flex;
  align-items: center;
}
 
.gallery .contaniner {
  position: relative;
  flex-grow: 1;
  margin: auto;
  max-width: 1200px;
  max-height: 1200px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-gap: 2vmin;
  justify-items: center;
  align-items: center;
}
 
.gallery img {
  z-index: 1;
  grid-column: span 2;
  max-width: 100%;
  margin-bottom: -52%;
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
          clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  -webkit-transform: scale(1);
          transform: scale(1);
  transition: all .25s;
}
.gallery img:nth-child(7n + 1) {
  grid-column: 2 / span 2;
}
.gallery img:hover {
  z-index: 2;
  -webkit-transform: scale(2);
          transform: scale(2);
}

/*jump-to*/
.jump-to box-sizing: none;

.jump-to .circle {
  width:200px;
  height:200px;
  border-radius: 50%;
  border:20px solid #baacc6;
  float:left;
}

.jump-to .circle img {
  width:200px;
  height:200px;
  border-radius: 50%;
  cursor:pointer;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
.jump-to .circle:hover img {
 transform: scale(1.1);
-ms-transform: scale(1.1); 
-webkit-transform: scale(1.1);
  box-shadow: 2px 2px 2px #4b4b4b;
  
}

/*circle image hover*/

.jump-to ul .image-wrap {
  z-index: 1;
  display: block;
  margin: 0 auto;
  margin-bottom: 0.5em;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  width: auto;
  line-height: 0;
}


.jump-to ul .image-wrap {
  border: 4px solid white;
  -moz-box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.2);
  display: inline-block;
}

.jump-to ul .image-wrap img {
  max-width: 100%;
  /*height: auto;*/
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.jump-to ul {
  width: auto;
  margin: 0 auto;
  padding: 5%;
  background-color: #94d3ac;
  overflow: hidden;
  *zoom: 1;
}
.jump-to ul .image-wrap {
  background: grey;
}

.jump-to ul .image-wrap img {
  opacity: 1;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.jump-to ul li {
  list-style: none;
  float: left;
  width: 22%;
  margin-right: 4%;
  position: relative;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
}

.jump-to ul li:nth-child(4) {
  margin-right: 0;
}

.jump-to ul li:hover .destination {
  left: 0;
  margin-left: 0;
}

.jump-to ul li:hover .country {
  left: 0;
  margin-right: 0;
}

.jump-to ul li:hover img {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  opacity: 0.4;
}

.jump-to .info {
  text-align: center;
  font-size: 0.75em;
  color: white;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 40%;
}

.jump-to .destination {
  font-weight: bold;
  display: block;
  -moz-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -moz-transition-duration: 0.6s;
  -o-transition-duration: 0.6s;
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
  margin-left: -200%;
}

.jump-to li:nth-child(2) .destination {
  margin-left: 0;
  margin-top: -100%;
}

.jump-to li:nth-child(2):hover .destination {
  margin-top: 0;
}

.jump-to li:nth-child(3) .destination {
  margin-left: 0;
  margin-top: 200%;
}

.jump-to li:nth-child(3):hover .destination {
  margin-top: 0;
}

.jump-to li:nth-child(4) .destination {
  margin-left: 0;
  margin-top: -200%;
}

.jump-to li:nth-child(4):hover .destination {
  margin-top: 0;
}

.jump-to .country {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: block;
  -moz-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -moz-transition-duration: 0.6s;
  -o-transition-duration: 0.6s;
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
  margin-right: -200%;
}

.jump-to li:nth-child(2) .country {
  margin-right: 0;
  margin-top: 199%;
}
.jump-to li:nth-child(2):hover .country {
  margin-top: 0;
}
li:nth-child(3) .country {
  margin-right: 0;
  margin-top: 100%;
}
.jump-to li:nth-child(3):hover .country {
  margin-top: 0;
}
.jump-to li:nth-child(4) .country {
  margin-right: 0;
  margin-top: -100%;
}
.jump-to li:nth-child(4):hover .country {
  margin-top: 0;
}

.jump-to a {
  position: absolute;
  top: 20%;
  left: 0;
  width: 100%;
  display: inline-block;
  text-align: center;
  color: white;
  text-decoration: none;
  font-weight: light;
  font-size: 0.75rem;
  -moz-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -moz-transition-duration: 0.6s;
  -o-transition-duration: 0.6s;
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
}
.jump-to li:hover a {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}

/*feedback button*/
.feedback {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  position: fixed;
  top: 40%;
  left: 0;
  background: #ccc;
  padding: 10px;
}
/* css float button */
/* Fixed/sticky icon bar (vertically aligned 70% from the top of the screen) */
.icon-bar {
  opacity: 0.8;
  position: fixed;
  top: 70%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* Style the icon bar links */
.icon-bar a {
  display: block;
  text-align: center;
  padding: 15px;
  margin-left: 25px;
  transition: all 0.3s ease;
  color: white;
  font-size: 15px;
}

/* Style the social media icons with color */
.icon-bar a:hover {
  background-color: #655c56;
}

.facebook {
  background: #3B5998;
  color: white;
}

.twitter {
  background: #55ACEE;
  color: white;
}

.google {
  background: #dd4b39;
  color: white;
}

.linkedin {
  background: #007bb5;
  color: white;
}

.youtube {
  background: #bb0000;
  color: white;
}

.feedback a:hover {
  background-color: #655c56
}
/* css float button end*/

/* footer */
.small-icon {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 5%;  
}

footer p {
  color: #655c56;
  font-size: 16px;
  margin: 0;
}

.center {
  text-align: center;
}

.bg-dark {
  color: #ccedd2;
}
/* footer end */

/*text shadow*/
#text-wrap * { margin: 0; padding: 0; }
		
		#text-wrap h1 { margin: 0 0 3px 0; }
	   #text-wrap h1 { color: white; font: bold 52px Helvetica, Arial, Sans-Serif;
		       text-shadow: 1px 1px #fe4902, 2px 2px #fe4902, 3px 3px #fe4902;
		       -webkit-transition: all 0.12s ease-out;
		       -moz-transition: all 0.12s ease-out;
		       -o-transition: all 0.12s ease-out;
		}
		#text-wrap h1:hover {
		    position: relative; top: -3px; left: -3px; 
		    text-shadow: 1px 1px #fe4902, 2px 2px #fe4902, 3px 3px #fe4902, 4px 4px #fe4902, 5px 5px #fe4902, 6px 6px #fe4902;
		}
