@charset "utf-8";

/*  font family */
@font-face {
  font-family: "Figtree";
  src: url("../fonts/Figtree-ExtraBold.eot");
  src: url("../fonts/Figtree-ExtraBold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Figtree-ExtraBold.woff2") format("woff2"),
    url("../fonts/Figtree-ExtraBold.woff") format("woff"),
    url("../fonts/Figtree-ExtraBold.ttf") format("truetype"),
    url("../fonts/Figtree-ExtraBold.svg#Figtree-ExtraBold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  src: url("../fonts/Figtree-Black.eot");
  src: url("../fonts/Figtree-Black.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Figtree-Black.woff2") format("woff2"),
    url("../fonts/Figtree-Black.woff") format("woff"),
    url("../fonts/Figtree-Black.ttf") format("truetype"),
    url("../fonts/Figtree-Black.svg#Figtree-Black") format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  src: url("../fonts/Figtree-Medium.eot");
  src: url("../fonts/Figtree-Medium.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Figtree-Medium.woff2") format("woff2"),
    url("../fonts/Figtree-Medium.woff") format("woff"),
    url("../fonts/Figtree-Medium.ttf") format("truetype"),
    url("../fonts/Figtree-Medium.svg#Figtree-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  src: url("../fonts/Figtree-Bold.eot");
  src: url("../fonts/Figtree-Bold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Figtree-Bold.woff2") format("woff2"),
    url("../fonts/Figtree-Bold.woff") format("woff"),
    url("../fonts/Figtree-Bold.ttf") format("truetype"),
    url("../fonts/Figtree-Bold.svg#Figtree-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  src: url("../fonts/Figtree-Regular.eot");
  src: url("../fonts/Figtree-Regular.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Figtree-Regular.woff2") format("woff2"),
    url("../fonts/Figtree-Regular.woff") format("woff"),
    url("../fonts/Figtree-Regular.ttf") format("truetype"),
    url("../fonts/Figtree-Regular.svg#Figtree-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Dancing Script";
  src: url("../fonts/DancingScript-Regular.eot");
  src: url("../fonts/DancingScript-Regular.eot?#iefix") format("embedded-opentype"),
    url("../fonts/DancingScript-Regular.woff2") format("woff2"),
    url("../fonts/DancingScript-Regular.woff") format("woff"),
    url("../fonts/DancingScript-Regular.ttf") format("truetype"),
    url("../fonts/DancingScript-Regular.svg#DancingScript-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  src: url("../fonts/Figtree-SemiBold.eot");
  src: url("../fonts/Figtree-SemiBold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Figtree-SemiBold.woff2") format("woff2"),
    url("../fonts/Figtree-SemiBold.woff") format("woff"),
    url("../fonts/Figtree-SemiBold.ttf") format("truetype"),
    url("../fonts/Figtree-SemiBold.svg#Figtree-SemiBold") format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FontAwesome";
  font-display: swap;
  src: url("../fonts/fontawesome-webfont.woff2") format("woff2"),
    url("../fonts/fontawesome-webfont.woff") format("woff"),
    url("../fonts/fontawesome-webfont.ttf") format("truetype"),
    url("../fonts/fontawesome-webfont.svg") format("svg");
}

/* variable css */
:root {
  --white: #fff;
  --black: #000000;
  --secondary: #323334;
  --theme: #1cc2d4;
  --darkblue: #021e3d;
  --lightblue: #eaedf3;
  --yellow: #fea30c;
  --font-body-weight: normal;
  --font-weightbold: bold;
  --font-weightsemibold: 600;
  --font-weightmedium: 400;
  --font-body-family: "Figtree", sans-serif;
  --font-heading-family: "Dancing Script";
  --circle: 100%;
}

body,
html {
  font-family: var(--font-body-family);
  color: var(--secondary);
  line-height: 24px;
  font-size: 16px;

  -ms-overflow-style: scrollbar;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  -ms-transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
  -webkit-transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

p a,
p span,
ul li a,
ol li a {
  color: var(--theme);
  text-decoration: none;
  display: inline-block;
}

p span {
  color: initial;
}

/*  select option */
::-ms-expand {
  display: none;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  background: url(../images/carret-down.svg) no-repeat right 10px center / 1em;
  border-radius: 0;
  padding-right: 2em;
}

::-moz-selection {
  color: #fff;
  background: var(--theme);
}

::selection {
  color: #fff;
  background: var(--theme);
}

/*-----FORM CONTROL-----*/

::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: var(--secondary);
  text-transform: capitalize;
  font-size: 14px;
  font-family: "Figtree";
}

::-moz-placeholder,
textarea::-moz-placeholder {
  color: var(--secondary);
  text-transform: capitalize;
  font-size: 14px;
  font-family: "Figtree";
}

:-ms-input-placeholder,
textarea::placeholder {
  color: var(--secondary);
  text-transform: capitalize;
  font-size: 14px;
  font-family: "Figtree";
}

/*  select option  */

input:invalid {
  box-shadow: none;
}

input[type="text"],
input[type="tel"],
input[type="number"] input[type="submit"],
input[type="email"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Figtree";
}

textarea {
  resize: none;
  min-height: 100px;
  overflow: auto;
  margin: 0;
  vertical-align: bottom;
  font-size: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-control,
input[type="text"],
input[type="email"],
textarea,
input[type="number"],
input[type="tel"],
input[type="file"] {
  width: 100%;
  min-width: 250px;
  padding: 17px 20px;
  background: var(--white);
  border: 1px solid #899192;
  color: var(--secondary);
  font-size: 14px;
  line-height: 1;
  border-radius: 0px;
  font-family: "Figtree";
  font-weight: 500;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

.form-group input,
.form-group .form-control {
  min-width: 100%;
}

select.form-control {
  background: transparent url(../images/carret-down.svg) no-repeat right 15px top 16px;
  padding-right: 40px;
}

textarea.form-control {
  height: auto;
  min-height: 140px;
}

.form-wrapper .form-control:focus,
.form-control:focus,
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="file"]:focus {
  border-color: var(--theme) !important;
  box-shadow: inset 0px 0px 2px 2px rgb(0, 80, 157 / 78%);
}

.form-group.width50 {
  width: calc(50% - 10px);
}

.form-wrapper .form-group.width50 .form-control {
  min-width: auto;
}

input[type="submit"] {
  border: 0;
  background: transparent;
  font-size: 18px;
  color: #ffffff;
  font-family: "Figtree";
  font-weight: bold;
  padding: 17px 20px;
  z-index: 1;
  cursor: pointer;
}

.wpcf7-spinner {
  position: absolute;
  margin: 0;
  right: 15px;
  top: 12px;
}


/*  slick common style for control */
.slick-dots li {
  height: auto;
  width: auto;
}

.slick-dots li button {
  width: 13px;
  height: 13px;
  background-color: transparent;
  padding: 0;
  margin: 0;
  border-radius: 4px;
  opacity: 1;
}

/* .slick-dots li button:before {
  content: none;
} */
.slick-dots li.slick-active button {
  width: 20px;
  opacity: 1;
}

.slick-next:before,
.slick-prev:before {
  content: none;
}

.slick-next:focus,
.slick-next:hover,
.slick-prev:focus,
.slick-prev:hover {
  background-color: var(--white);
}

.slick-next:focus i,
.slick-next:hover i,
.slick-prev:focus i,
.slick-prev:hover i {
  color: #ffffff;
}

.slick-next:focus img,
.slick-next:hover img,
.slick-prev:focus img,
.slick-prev:hover img,
.btn_theme:hover img.small-black {
  filter: none;
}

/*---- theme content  ul styling -------*/
p,
ol li,
ul li {
  font-size: 16px;
  color: var(--secondary);
  line-height: 24px;
  letter-spacing: 0.32px;
  margin-bottom: 30px;
}

/*-----BUTTONS-----*/
button,
.button,
button[type="submit"],
input[type="submit"] {
  font-size: 14px;
  text-transform: uppercase;
  padding: 18px 28px 16px;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  z-index: 1;
  line-height: 1;
  text-decoration: none;
  justify-content: center;
  text-align: center;
  border: 1px solid transparent;
  font-family: "Figtree";
  font-weight: var(--font-weightbold);
  background-color: var(--theme);
  color: var(--white);
  border-radius: 6px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
}

button:hover,
.button:hover,
input[type="submit"]:hover,
.btn-theme:hover,
.submit-button input[type="submit"]:hover,
.form-group button[type="submit"]:hover {
  background-color: var(--darkblue);
  color: var(--white);
  border-color: var(--white);
}

/* button:hover img,
.button:hover img,
.btn-theme:hover img {
  color: #fff;
  filter: invert(1) brightness(100);
} */

.btn-theme,
.submit-button input[type="submit"] {
  background-color: var(--theme);
  color: var(--primary);
}

.btn-list a.button:not(:last-child) {
  margin-right: 10px;
}

.submit-button input[type="submit"] {
  transform: unset;
  -moz-transform: unset;
  -webkit-transform: unset;
  clip-path: var(--skew-shape);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  background-color: var(--yellow);
  min-width: 100%;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-row a i,
.btn-outline i,
button img,
.button img,
.button i {
  margin-right: 10px;
  display: inline-block;
}

.button i {
  font-weight: bold;
}

.btn-outline {
  border-color: var(--blue);
  color: var(--blue);
  background-color: var(--white);
  line-height: 1.2;
}

.btn-row a:not(:last-child) {
  margin-right: 10px;
}

.btnlist {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0 -8px;
}

.btnlist li,
.btnlist .button {
  margin: 0px 8px;
}

.btn_theme {
  background-color: var(--theme);
}

.btn_yellow,
.form-group button[type="submit"] {
  background-color: var(--yellow);
}

.btn_outline {
  border: 1px solid var(--darkblue);
  color: var(--darkblue);
  background-color: transparent;
}

a {
  text-decoration: none;
}

header nav ul {
  margin-left: 0;
  list-style-type: none;
}

header nav ul li a {
  text-decoration: none;
}

p a:hover,
ul li a:hover,
ol li a:hover {
  color: var(--yellow)
}

.divider {
  border-top: 1px solid #dedede;
}

.theme-bg {
  background-color: var(--theme);
}

.dashed-btn-block {
  height: 93px;
  width: 340px;
  background: linear-gradient(90deg, var(--yellow) 50%, transparent 50%), linear-gradient(90deg, var(--yellow) 50%, transparent 50%), linear-gradient(0deg, var(--yellow) 50%, transparent 50%), linear-gradient(0deg, var(--yellow) 50%, transparent 50%);
  background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
  background-size: 15px 3px, 15px 3px, 3px 15px, 3px 15px;
  background-position: 0px 0px, 336px 90px, 0px 90px, 336px 0px;
  padding: 20px;
  animation: border-dance 10s infinite linear;
  margin: 30px auto 60px;
  text-align: center;
  border-radius: 6px;
}

.dashed-btn-block:hover {
  background: linear-gradient(90deg, var(--darkblue) 50%, transparent 50%), linear-gradient(90deg, var(--darkblue) 50%, transparent 50%), linear-gradient(0deg, var(--darkblue) 50%, transparent 50%), linear-gradient(0deg, var(--darkblue) 50%, transparent 50%);
  background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
  background-size: 15px 3px, 15px 3px, 3px 15px, 3px 15px;
  background-position: 0px 0px, 336px 90px, 0px 90px, 336px 0px;
}

@keyframes border-dance {
  0% {
    background-position: 0px 0px, 400px 90px, 0px 200px, 336px 0px;
  }

  100% {
    background-position: 400px 0px, 0px 90px, 0px 0px, 336px 200px;
  }
}

.font20 {
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0.40px;
}

.font18 {
  font-size: 18px;
  letter-spacing: 0.36px;
  line-height: 24px;
}

.ft-500 {
  font-weight: 500;
}

.ft-600 {
  font-weight: 600;
}

.ft-bold {
  font-weight: bold;
}

.text-black,
.text-black p {
  color: var(--black);
}

.pt-pb100.arrow-btmcnt {
  padding-bottom: 20px;
}

p:last-child {
  margin-bottom: 0;
}

p i {
  font-style: italic;
  text-decoration: underline;
  font-weight: 500;
}

.dlist {
  margin-bottom: 30px;
  list-style-type: none;
  margin-left: 0;
}

.dlist li {
  position: relative;
  padding-left: 30px;
}

.dlist li:not(:last-child) {
  margin-bottom: 15px;
}

.dlist li:before {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  left: 0;
  top: 0;
  background-image: url('../images/icon/list-style-icon.svg');
  margin-top: 2px;
}

/* arrow */
.slick-next,
.slick-prev {
  width: 34px;
  height: 34px;
  border: 1px solid #A4A7A8;
  border-radius: 100%;
  background-color: var(--white);
}

.slick-next:hover,
.slick-prev:hover {
  background-color: var(--yellow);
  border: 1px solid var(--yellow);
}

.slick-next:hover:before,
.slick-prev:hover:before {
  color: var(--white);
}

.slick-next:before,
.slick-prev:before {
  width: 100%;
  height: 100%;
  position: absolute;
  font-family: 'FontAwesome';
  color: #A4A7A8;
  font-size: 18px;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  line-height: 1.8;
  opacity: 1;
}

.slick-next:before {
  content: '\f105';
  margin-left: 1px;
}

.slick-prev:before {
  content: '\f104';
}

.slick-prev {
  left: -30px;
}

.slick-next {
  right: -30px;
}

@media (hover: hover) {}

.relative,
.bottom-shape {
  position: relative;
  z-index: 0;
}

[class*="heading-"],
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 22px;
  font-family: "Figtree";
  font-weight: bold;
}

/*  TABLE stripped  */
/* contact form  */
.contact-form {
  width: 50%;
}

.heading-38,
h1 {
  font-size: clamp(1.625rem, 1.475rem + 0.75vw, 2.375rem);
  color: var(--black);
  font-weight: var(--font-weightsemibold);
}

.heading-30,
h2 {
  font-size: clamp(1.375rem, 1.275rem + 0.5vw, 1.875rem);
}

.heading-30 span {
  color: #1cc2d4;
}

.heading-28,
h3 {
  font-size: clamp(1.25rem, 1.15rem + 0.5vw, 1.75rem);
}

.heading-26,
h4 {
  font-size: clamp(1.125rem, 1.025rem + 0.5vw, 1.625rem);
}

.heading-24,
h5 {
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
}

.line {
  position: relative;
}

.line:after {
  position: absolute;
  content: "";
  background-color: #1cc2d4;
  width: 30px;
  height: 2px;
  top: 0;
  left: 50%;
  margin-left: -15px;
}

/* @-webkit-keyframes boxBorderAnimation {
  from {
    background-position: 0 0, -20px 0, 100% -20px, 0 100%;
  }
  to {
    background-position: 0 -20px, 0 0, 100% 0, -20px 100%;
  }
}
@keyframes boxBorderAnimation {
  from {
    background-position: 0 0, -20px 0, 100% -20px, 0 100%;
  }
  to {
    background-position: 0 -20px, 0 0, 100% 0, -20px 100%;
  }
} */
/*border left right*/
.border-lr {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
}

.border-lr:before,
.border-lr:after {
  position: absolute;
  content: "";
  width: 80px;
  height: 1px;
  background-color: var(--theme);
  top: 50%;
  margin-top: 1px;
}

.border-lr:before {
  right: 0;
  margin-right: -90px;
}

.border-lr:after {
  left: 0;
  margin-left: -90px;
}

.bgcolor {
  background-color: #f1f4f5;
}

.text-theme {
  color: var(--theme);
}

.text-white,
.text-white p,
.innner-banner-section :is(.heading-38, .woo_breadcums li, .woo_breadcums li a) ,
.tour-btn-sec .tour-banner-title p{
  color: var(--white);
}
.tour-btn-sec {margin-top: 10px;}
.tour-btn-sec p{margin-bottom: 15px;}
.italic,.tour-btn-sec p {
  font-style: italic;
}

.font14 {
  font-size: 14px;
  letter-spacing: 0.56px;
  line-height: 18px;
}

.font16 {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.32px;
}

.font24 {
  font-size: clamp(1rem, 0.375rem + 2vw, 1.5rem);
  line-height: 1.2;
}

.ribbon {
  clip-path: polygon(100% 0, 97% 50%, 100% 100%, 0% 100%, 3% 50%, 0% 0%);
  background-color: var(--theme);
  display: inline-flex;
  flex-wrap: wrap;
  max-width: 470px;
  padding: 8px 20px;
  color: var(--white) !important;
  min-width: 470px;
  justify-content: center;
  align-items: center;
}

.ribbon-wrap {
  text-align: center;
}

.ribbon span {
  color: var(--white) !important;
}

.arrow-center {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  margin-top: -47px;
  width: auto;
  height: auto;
  animation: bounce 1600ms infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.arrow-top {
  position: relative;
  z-index: 1;
}

.arrow-top span {
  width: 40px;
  height: 40px;
  position: absolute;
  left: 50%;
  top: -110px;
  margin-left: -20px;
  background-color: var(--darkblue);
  font-size: 16px;
  color: #fff;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  outline: 1px solid rgb(28 194 212 / 46%);
  z-index: 1;
}

.arrow-top span:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 45px;
  height: 45px;
  background: rgb(28 194 212 / 46%);
  border-radius: 50%;
  animation: pulse-border 1100ms ease-out infinite;
  -webkit-animation: pulse-border 1100ms ease-out infinite;
  -moz-animation: pulse-border 1100ms ease-out infinite;
}

.shape-wrap {
  position: relative;
  display: block;
  width: 100%;
  height: 44px;
  z-index: 0;
}

.shape-wrap.shape-bottom {
  margin-top: -41px;
}

/* max width */
.wd-md {
  max-width: 700px;
}

.ft-16 {
  font-size: 16px;
  font-weight: 500;
  text-decoration: underline;
  margin-bottom: 30px;
}

/*---------- call action -----*/

/*-------- why choose ------*/
/* image and content section*/
.img-block {
  width: 600px;
  margin-bottom: 100px;
  position: sticky;
  align-self: flex-start;
  top: 120px;
  margin-top: 10px;
}

.content-block {
  width: calc(100% - 600px);
  padding-right: 90px;
  margin-bottom: 90px;
}

.content-block ol li,
.content-block ul li {
  margin-bottom: 15px;
}

.image-frame .img-frame-big,
.image-frame .img-frame-small {
  outline: 10px solid #ffffff;
  outline-offset: -9px;
}

.image-frame .img-frame-big {
  width: 400px;
}

.image-frame .img-frame-small {
  width: 290px;
  top: auto;
  bottom: 0;
}

.image-frame .img-rotate-left,
.menu-link ul.sublink li .menu-level2 .img-frame .img-rotate-right {
  transform: rotate(4deg);
  -moz-transform: rotate(4deg);
  -webkit-transform: rotate(4deg);
  position: relative;
  transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  margin-left: auto;
  animation: swingleft ease-in-out 2s infinite alternate;
}

.image-frame .img-rotate-right {
  transform: rotate(-4deg);
  -moz-transform: rotate(-4deg);
  -webkit-transform: rotate(-4deg);
  position: absolute;

  left: 0;
  transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  animation: swing ease-in-out 2s infinite alternate;
}

.image-frame .img-rotate-left:before,
.image-frame .img-rotate-right:before {
  position: absolute;
  content: '';
  box-shadow: 0px 10px 20px rgb(0 0 0 / 10%);
  width: 100%;
  height: 100%;
}

.img-block .image-frame {
  padding-bottom: 120px;
  position: relative;
}

.content-padd .flex-container {
  max-width: 1330px;
  margin: 0 auto;
}

.content-block .heading-38 span {
  font-weight: bold;
  text-decoration: underline;
}

.content-block .heading-38 .text-typo {
  font-family: "Dancing Script";
  font-weight: normal;
  display: inline-flex;
  flex-wrap: wrap;
}

.content-block .btnlist {
  justify-content: flex-start;
}

.cnt-font18 p {
  font-size: 18px;
  letter-spacing: 0.36px;
  line-height: 24px;
  margin-bottom: 10px;
  color: var(--black);
}

/*------ reverse content ----*/
.row-reverse .content-block {
  padding-right: 0;
  padding-left: 90px;
}

.row-reverse .image-frame .img-rotate-right {
  transform: rotate(4deg);
  -moz-transform: rotate(4deg);
  -webkit-transform: rotate(4deg);
  margin-left: auto;
  transform-origin: 0% 0;
  -webkit-transform-origin: 0% 0;
  -moz-transform-origin: 0% 0;
  right: 0;
}

.row-reverse .image-frame .img-rotate-left {
  transform: rotate(-4deg);
  -moz-transform: rotate(-4deg);
  -webkit-transform: rotate(-4deg);
  left: 0;
  transform-origin: 100% 0;
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  margin-left: 0;
}

.big-imageframe .image-frame .img-rotate-left {
  width: 700px;
  transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
}

.big-imageframe .row-reverse .image-frame .img-rotate-left {
  transform-origin: 100% 0;
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
}

.big-imageframe .image-frame .img-rotate-right {
  width: 220px;
}

.big-imageframe .row-reverse .content-block {
  padding-right: 0px;
  padding-left: 70px;
}

.big-imageframe .img-block .image-frame {
  padding-bottom: 50px;
}

/*------- big image frame -----*/
.big-imageframe .img-block {
  width: 785px;
}

.big-imageframe .content-block {
  width: calc(100% - 785px);
  padding-right: 70px;

}

/*----------*/
.wd-md {
  margin: 0 auto;
}

/*----------- wine regions we cover -------------*/
.region-wrap {
  display: flex;
  flex-wrap: wrap;
}

.left {
  width: 20%;
  background: #88d6ea;
  font-weight: bold;
  font-size: 20px;
  line-height: 45px;
}

.right {
  width: 80%;
  border-left: 10px solid #fff;
}

#map {
  height: 600px;
  width: 100%;
}

.location-select {
  margin: 10px;
}

/* Custom marker styling */
.custom-pin {
  background: white;
  border: 2px dashed #000;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.melbourne-custom-pin {
  background: white;
  border: 3px solid #3caecb;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.custom-pin::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 18px solid white;
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.melbourne-custom-pin::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 18px solid #3caecb;
  position: absolute;
  bottom: -17px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  color: #88d6ea;
}

.custom-pin img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.melbourne-custom-pin img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit
}

.custom-pin-label {
  text-align: center;
  margin-top: 5px;
  font-size: 12px;
  color: #000000;
  font-weight: bold;
}

.leaflet-overlay-pane svg {
  background: #88d6ea;
}


/*------------- process tab ----------------*/
#process-tab .resp-tabs-container {
  margin-bottom: 10px;
}

#process-tab .resp-tabs-list li {
  width: 20%;
  min-width: 280px;
  float: none;
  padding: 25px 40px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}

#process-tab .resp-tabs-list .pr-step {
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 10px;
  color: var(--theme);
  text-transform: uppercase;
}

#process-tab .resp-tabs-list li:not(:last-child):not(:last-child) {
  margin-right: 0;
}

#process-tab .resp-tabs-list {
  border-bottom: 1px solid #DEDEDE;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#process-tab .resp-tab-content {
  padding: 40px 0 0;
}

#process-tab .resp-tab-content .img-block,
#process-tab .resp-tab-content .content-block {
  margin-bottom: 0;
}

#process-tab .resp-tabs-list li.resp-tab-active {
  background-color: var(--theme);
}

#process-tab .resp-tabs-list li.resp-tab-active .pr-step,
#process-tab .resp-tabs-list li.resp-tab-active .pr-title {
  color: var(--white);
}

#process-tab .resp-tabs-list li:before {
  position: absolute;
  content: "";
  width: 24px;
  height: 14px;
  background-color: var(--theme);
  bottom: 0;
  left: 50%;
  margin-left: -12px;
  margin-bottom: -13px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  opacity: 0;
}

#process-tab .resp-tabs-list li.resp-tab-active:before {
  opacity: 1;
}

#process-tab .resp-tabs-list li:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 84px;
  background-color: #DEDEDE;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

#process-tab .resp-tabs-list li:last-child:after {
  display: none;
}

/*** faq ***/
.faq-imgblock-accordion .accordion_in {
  margin-bottom: 15px !important;
  border: 1px solid #C5C5C5 !important;
}

.faq-imgblock-accordion .faq-head {

  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0;
  color: #000000;
  font-weight: 600;
  padding: 18px 60px 18px 50px;
  background-color: var(--white);
}

.faq-imgblock-accordion .acc_content {
  background-color: #F1F4F5 !important;
  padding: 40px 50px !important;
}

.faq-imgblock-accordion .accordion_in.acc_active .faq-head.acc_head {
  background-color: var(--darkblue);
  color: var(--white) !important;
}

.faq-imgblock-accordion .accordion_in .acc_head .acc_icon_expand {
  right: 40px !important;
}

.faq-imgblock-accordion .accordion_in .acc_content p {
  color: var(--secondary) !important;
}

.faq-imgblock-accordion .accordion_in.acc_active .acc_head .acc_icon_expand::after {
  background: var(--white) !important;
}

.faq-imgblock-accordion .accordion_in .acc_content img+p,
.faq-imgblock-accordion .accordion_in .acc_content p:last-of-type+img {
  margin-top: 30px;
}

.faq-imgblock-accordion hr {
  border-top: 1px solid #D4DCDF;
  border-bottom: 0;
  margin: 30px 0;
}

ul.inclusion-ul,
ul.exclusion-ul,
ul.itinerary-ul {
  margin: 0px;
  list-style-type: none;
}

ul.itinerary-ul li:last-child {
  border-bottom: 0;
}

ul.inclusion-ul li,
ul.exclusion-ul li {
  font-size: 16px;
  letter-spacing: 0.32px;
  line-height: 20px;
  color: var(--secondary);
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

ul.inclusion-ul li:before,
ul.exclusion-ul li:before,
ul.itinerary-ul li:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
}

ul.inclusion-ul li:before {
  background-image: url('../images/icon/check-mark.svg');
}

ul.exclusion-ul li:before {
  background-image: url('../images/icon/exclusive-icon.svg');
}

.itinerary-info p {
  font-weight: 500;
  margin-bottom: 0;
}

ul.itinerary-ul {
  margin-bottom: 25px;
  position: relative;
}

ul.itinerary-ul:last-of-type {
  margin-bottom: 0;
}

ul.itinerary-ul:before {
  position: absolute;
  content: "";
  width: 1px;
  height: calc(100% - 50px);
  top: 0;
  left: 0;
  background-color: var(--theme);
  margin-left: 9px;
  margin-top: 30px;
}

ul.itinerary-ul li {
  padding: 16px 0;
  position: relative;
  margin-bottom: 0;
  border-bottom: 1px solid #D4DCDF;
  width: calc(100% - 30px);
  margin-left: 30px
}

ul.itinerary-ul li .time-label {
  font-size: 18px;
  color: var(--secondary);
  font-weight: bold;
  line-height: 20px;
  letter-spacing: 0;
  margin-bottom: 2px;
}

ul.itinerary-ul li:before {
  background-image: url('../images/icon/clock-icon.svg');
  margin-top: 18px;
  margin-left: -30px;
}

.btn-list {
  display: flex;
  flex-wrap: wrap;
}

.image-frame .testimonial-rotate {
  width: 470px;
  background-color: var(--theme);
  transform: rotate(6deg);
  -webkit-transform: rotate(6deg);
  -moz-transform: rotate(6deg);
  transform-origin: 0% 100%;
  -moz-transform-origin: 0% 100%;
  -webkit-transform-origin: 0% 100%;
  margin-top: -70px;
  margin-left: auto;
}

.testimonial-rotate .client-content {
  background-color: var(--theme);
  padding: 100px 50px 50px;
}

.testimonial-rotate .client-content::before {
  top: 45px;
}

.testimonial-rotate .client-content p,
.testimonial-rotate .cl-name,
.testimonial-rotate .client-content::before {
  color: var(--white);
}

.testimonial-rotate .cl-name::before {
  background: var(--white);
}

.faq-imgblock .img-block .image-frame .img-rotate-right {
  margin-right: 55px;
  transform: rotate(6deg);
  -moz-transform: rotate(6deg);
  -webkit-transform: rotate(6deg);
  position: initial;
  margin-left: auto;
}

.testimonial-rotate .cl-name:after {
  filter: invert(0) grayscale(1) brightness(2);
}

.testimonial-rotate .cl-name img {
  filter: invert(0) grayscale(0) brightness(100);
}

.testimonial-rotate .client-wrapper.slick-slider .slick-slide {
  margin: 0;
}

/* why teepe */
.why-teepesec {
  position: relative;
  text-align: center;
  background-color: rgb(2 30 61 / 85%);
}

.why-teepesec .wd-md {
  margin-bottom: 30px;
}

.why-teepesec .wd-md p {
  color: var(--white);
}

/* tour guide */
.team-grid-wrapper:not(.slick-slider) {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 30px;
}

.team-cationp {
  padding: 20px 0;
  border-bottom: 1px solid #1cc2d4;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  /* height: 100%; */
  flex-direction: column;
  flex: 1;
  background: #fff;
}

.team-name {
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

.team-name span {
  display: block;
  font-size: 16px;
  color: var(--sitetext);
  text-transform: capitalize;
}

.team-slider .slick-slide {
  margin: 0 13px;
}

.team-slider .slick-track {
  display: flex;
}

.team-slider .slick-track .slick-slide {
  height: auto;
}

.team-slider .slick-track .slick-slide>div {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}

.team-slider .slick-track .slick-slide>div>a {
  display: flex !important;
  flex-wrap: wrap;
  height: 100%;
  width: 100%;
  flex-direction: column;
  overflow: hidden;
}

.team-slider .slick-track .slick-slide>div>a:hover {
  background-color: var(--darkblue)
}

.team-slider .slick-track .slick-slide>div>a:hover>img {
  opacity: 0.2;
}

/* FAQ section */
.faq-section {
  position: relative;
  z-index: 0;
  background-color: #f1f4f5;
  padding: 90px 0;
}

.faq-section img.bgimg {
  opacity: 0.1;
}

.faq-section .faq_accordion {
  column-count: 2;
  column-gap: 90px;
}

/*  client slider */
.client-wrapper:not(.slick-slider) {
  display: flex;
}

.client-wrapper.slick-slider .slick-slide,
.client-wrapper:not(.slick-slider) {
  width: calc(33.33% - 20px);
}

.client-wrapper.slick-slider .slick-slide {
  margin: 0 20px 55px;
}


/**/
.video-popup {
  position: relative;
}

.v-funblock {
  position: absolute;
  display: inline-block;
  bottom: 0;
  margin-bottom: -30px;
  margin-left: 50px;
}
.v-funblock .dialog-content-btn{
 position: absolute;
  top: 0;
  right: 0;
    border-radius: 100%;
    width: 32px;
    height: 32px;    padding: 0;

}
.v-funblock img.plus-icon {
 margin: 0;
}

#dialog-content {

  background-color: transparent;
}

#dialog-content .dialog-box {
  background-color: #FFFFFF;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  max-width: 600px;
  position: relative;
  padding: 100px 75px 75px;
  margin-top: 70px;
  text-align: center;
}

.fancybox-bg {
  background: #021E3D !important;
}

#dialog-content .dialog-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: -70px;
}

#dialog-content .fancybox-button {
  padding: 5px !important;
  color: #FFFFFF;
  position: absolute;
  top: 0;
  margin-top: 100px;
}

/* FOOTER STYLE */
.footer-bg {
  background-color: var(--darkblue);
  position: relative;
  padding-bottom: 30px;
}

.footer-bg::after,
.faq-section::after,
.bottom-shape::after {
  position: absolute;
  content: "";
  background: url(../images/footer-shape.svg) repeat-x bottom;
  bottom: -3px;
  width: 100%;
  height: 44px;
  left: 0;
  animation: movement 30s infinite linear;
}

.footer-top-section {
  padding: 50px 0;
}

.footer-top-section>*,
.cta-content p,
.cta-content p a,
.cta-content .heading-24 {
  color: var(--white);
}

.cta-content p,
.cta-content [class*="heading-"],
.italic {
  font-style: italic;
}

.footer-top-section .cta-content {
  flex: 1;
  padding-right: 200px;
}

.footer-top-section .cta-content p:last-child {
  margin-bottom: 0;
}

.footer-top-section .btn_book,
.cta-wrapper .cta-content .btn_book {
  border: 1px solid var(--white);
}

.cta-content .heading-24 {
  margin-bottom: 10px;
}

.ft-col-info {
  max-width: 185px;
  text-align: center;
}

.footer-logo {
  margin-bottom: 30px;
}

.abno {
  margin: 20px 0;
  display: inline-block;
  font-size: 15px;
  color: var(--white);
  font-size: 15px;
}

.social-list label,
.footer-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 25px;
}

.ft-col-1,
.ft-col-2,
.ft-col-3,
.ft-col-4 {
  width: auto;
  padding: 65px 0;
}

.ft-col-2 {
  padding-left: 160px;
  width: 30%;
  border-left: 1px solid rgb(255 255 255 / 15%);
}

.social-list {
  width: fit-content;
  text-align: center;
  margin: 0 auto;
}

.social-list label {
  margin-bottom: 10px;
}

.social-list a {
  color: var(--white);
  margin: 0 5px;
}

.contact-info label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--theme);
  margin-bottom: 20px;
}

.contact-info a,
.contact-info span {
  color: #aebbc8;
  font-size: 15px;
  line-height: 1.2;
  margin-bottom: 5px;
}

.contact-item {
  margin-bottom: 15px;
  display: flex;
  line-height: 1;
  width: fit-content;
}

.contact-item i {
  margin-right: 10px;
  color: var(--theme);
}

.contact-item .flex-text {
  display: inline-flex;
  flex: 1;
  flex-wrap: wrap;
  width: fit-content;
  flex-direction: column;
}

.footer-links {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  color: #aebbc8;
  font-size: 15px;
  text-decoration: none;
}

.footer-bottom {
  padding: 15px !important;
}

.footer-bottom p {
  margin-bottom: 0;
}

.contact-info a:hover,
.social-list a:hover,
.footer-links li:hover>a,
.footer-links li.active>a {
  color: var(--yellow);
}

/* client-section  */

/*  Common  CTA style */
.cta-wrapper img.bgimg {
  opacity: 0.1;
}

.cta-wrapper {
  padding: 60px 80px;
  height: 300px;
}

.cta-wrapper .cta-content {
  flex: 1;
  padding-left: 50px;
}

.cta-wrapper .heading-38,
.cta-wrapper .cta-content p {
  color: var(--white);
  margin-bottom: 15px;
}

.cta-wrapper .btnlist {
  justify-content: flex-start;
}

.daily-tour-time {
  font-size: 14px;
  font-weight: bold;
  color: #021e3d;
  text-transform: uppercase;
  position: relative;
  font-style: italic;
  padding: 20px 50px;
  letter-spacing: 5px;
  display: flex;
  justify-content: flex-end;
}

.daily-tour-time:before {
  position: relative;
  content: "";
  left: -24px;
  top: 10px;
  width: 80px;
  height: 1px;
  display: inline-block;
  background: #1cc2d4;
}

.cl-name span {
  font-size: 16px;
  font-weight: bold;
  font-style: italic;
  display: block;
  line-height: 1.2;
  margin-bottom: 5px;
}

.client-content {
  position: relative;
  padding-top: 30px;
  background-color: #f1f4f5;
  padding: 90px 40px 40px;
}

.client-content p {
  font-size: 16px;
  font-weight: 500;
  font-style: italic;
  line-height: 24px;
  letter-spacing: 0.32px;
}

.client-content::before {
  content: "\f10d";
  position: absolute;
  left: 50px;
  top: 30px;
  font-family: "FontAwesome";
  color: #021e3d;
  font-size: 30px;
}

/* client section  */
.cl-name {
  position: relative;
  padding-top: 20px;
}

.cl-name::before {
  position: absolute;
  content: "";
  left: 0;
  width: 30px;
  height: 2px;
  top: 0;
  background: #000000;
}

.cl-name:after {
  position: absolute;
  content: "";
  background: url(../images/tripadvisor-logo.svg) no-repeat;
  width: 43px;
  height: 43px;
  top: 20px;
  right: 0px;
}

/*  without js */
/* .fetured-product-slider ul.products li:not(:nth-child(-n + 5)) {
  display: none;
}
.fetured-product-slider .slick-slide {
  margin: 0 15px;
} */

/*video section */
.video-section {
  background-color: var(--darkblue);
  position: relative;
  z-index: 0;
  padding: 190px 0 175px;
}

.video-section img.bgimg {
  opacity: 0.5;
}

.video-play {
  width: 337px;
  height: 314px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto;
  border: 2px solid rgb(255 255 255 / 100%);
  align-items: center;
  text-align: center;
}

.video-play span {
  display: block;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  width: 100%;
  margin-top: 20px;
  font-weight: 600;
}

.play-icon-animation {
  position: relative;
}

.video-play .play-icon-animation:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 76px;
  height: 76px;
  background: var(--white);
  border-radius: 50%;
  animation: pulse-border 1100ms ease-out infinite;
  -webkit-animation: pulse-border 1100ms ease-out infinite;
  -moz-animation: pulse-border 1100ms ease-out infinite;
  z-index: -1;
}

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

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

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

/* BRAND LOGO */
.certificate-logo-wrapper {
  display: flex;
  grid-gap: 20px;
}

.cmnpg {
  padding-top: 80px;
}

.cmnpg .content-block ul li {
  margin-bottom: 5px;
}

.sec-region .heading-38 {
  margin-bottom: 0;
}

.option-section .wd-md.text-center .ft-18.ft-bold {
  margin-bottom: 10px;
}

.option-section .wd-md.text-center .ft-18.ft-bold+p {
  margin-bottom: 15px;
}

.fancybox-is-open .fancybox-bg {
  opacity: .74;
}

.fancybox-bg {
  background: var(--darkblue) !important;
}

#contact_me {
  max-width: 1400px;
  border: 3px solid #00BCD4;
  box-shadow: 0 3px 8px 6px rgb(0 0 0 / 58%);
}

.submit_button {
  position: relative;
}

.fancybox-slide--html .fancybox-close-small svg path {
  fill: var(--white);
}

.yarra-vellay-private-tour-page .fancybox-bg {
  background-color: var(--darkblue);
}

.tour-content .md-wd {
  text-align: center;
  padding: 0 180px;
}

.testimonial_popup.testimonial-li.fancybox-content .fancybox-button.fancybox-close-small,
#create-itinerary .fancybox-close-small {
  background: #00BCD4;
  opacity: 1;
}

.testimonial_popup.testimonial-li.fancybox-content {
  padding: 0;
  max-width: 700px;
}

#create-itinerary {
  max-width: 550px;
}
.fun-fact-popup#create-itinerary{ 
  max-width: 1150px;
padding: 50px;
& textarea.form-control{
  min-height: 40px;
}
}


.form-bottom-text {
  margin-top: 20px;
}

.ribbon.yellow-ribbon-bg.sm-ribbon {
  background-color: var(--yellow);
}

.chat-option h3::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  bottom: 99%;
  left: 50%;
  margin-left: -12px;
  border: 0.95rem solid transparent;
  border-top: none;
  border-bottom-color: #fff;
  filter: drop-shadow(0 -0.0799rem 0.0799rem #021e3d);
}

.chat-option h3 {
  position: relative;
  background-color: #ffffff;
  box-shadow: -8px -8px 20px #fff9, -6px -6px 6px rgb(218 218 218 / 7%), 8px 8px 20px #0001, 5px 5px 6px #0001, inset 0px 0px 0px #fff9, inset 0px 0px 0px #0001, inset 0px 0px 0px #fff9, inset 0px 0px 0px #0001;
  border-radius: 10px;
  padding: 30px;
  /* margin-top: 60px; */
  margin: 30px 0;
  border: 2px solid var(--darkblue);

}

.chat-option h3+p {
  margin-bottom: 30px;
}

@keyframes slide1 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(10px, 0);
  }
}

.heading-24.text-theme i {
  margin-left: 9px;
  display: inline-block;
  animation: slide1 1s ease-in-out infinite;
  line-height: 1;
  vertical-align: middle;
}

.submit-price-spin #loader {
  margin-left: 10px;
}

.submit-price-spin {
  display: flex;
}

/*  CTA  */
@media (min-width: 992px) {
  .sticky {
    position: sticky;
    top: 120px;
    align-self: flex-start;
  }

  .row-reverse {
    flex-direction: row-reverse;
  }

  .show-in-sm,
  .hidden {
    display: none;
  }

  .hidden {
    display: none !important;
  }
}

/* region listing */
.region-listing-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 40px;
}

.region-block,
.region-item {
  position: relative;
  display: block;
  overflow: hidden;
  transition: all 0.2s var(--ease-default);
}

.region-block .region-caption {
  position: absolute;
  height: 100%;
  top: 0;
  bottom: 0;
  display: flex;
  padding: 20px;
  align-items: flex-end;
  width: 100%;
  z-index: 1;
  transition: all 0.2s var(--ease-default);
}

.region-block .region-caption .heading-24 {
  color: var(--white);
  margin-bottom: 0;
}

.region-block .region-caption .heading-24::after {
  width: 34px;
  height: 34px;
  border: 1px solid #fff;
  border-radius: 100%;
  position: absolute;
  right: 25px;
  bottom: 20px;
  content: "\f105";
  font-size: 20px;
  font-weight: normal;
  color: var(--white);
  text-align: center;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  font-family: "FontAwesome";
  transition: all 0.3s linear;
}

.region-block .region-caption:after {
  position: absolute;
  content: "";
  height: 50%;
  bottom: 0;
  width: 100%;
  background: transparent linear-gradient(180deg, #021e3d00 0%, var(--unnamed-color-021e3d) 100%) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #021e3d00 0%, #021e3d 100%) 0% 0% no-repeat padding-box;
  z-index: -1;
  left: 0;
  right: 0;
  transition: all 0.3s linear;
}

.region-block:hover .region-caption:after {
  height: 100%;
}

.region-block:hover .region-item img {
  opacity: 0.2;
}

.region-block:hover .region-item {
  background-color: var(--darkblue);
}

.region-block:hover .region-caption .heading-24::after {
  background-color: var(--yellow);
  border-color: var(--yellow);
}

/* .region-block:hover {
  transform: translateY(-7px) rotate(0.001deg) translateZ(0);
} */
.region-block .region-item img,
.team-slider .slick-track .slick-slide>div>a>img {
  transition: all 1s var(--ease-out-medium);
  transform: rotate(.001deg) translateZ(0);
  width: 100%;
}

.region-block:hover .region-item img,
.team-slider .slick-track .slick-slide>div>a>img {
  transform: scale(1) rotate(0.001deg) translateZ(0);
  transition: all 0.3s linear;
}

.team-slider .slick-track .slick-slide>div>a:hover .team-name {
  color: var(--theme);
}

/* faq  */

/* form message style  */
.wpcf7-not-valid-tip,
.wpcf7-response-output {
  font-size: 12px;
  background: #ff0000;
  color: #fff;
  display: inline-block;
  padding: 6px 8px;
}

.wpcf7-not-valid-tip {
  line-height: 1;
  vertical-align: top;
  margin-left: 3px;
  position: relative;
}

.wpcf7-form.invalid .wpcf7-response-output {
  background: #fff9df;
  width: 100%;
  display: block;
  color: inherit;
  padding: 10px 10px 10px 40px;
  text-align: left;
  line-height: 1;
  margin: 0 auto 20px;
  color: #585858;
  font-size: 14px;
  position: relative;
}

.wpcf7-form.invalid .wpcf7-response-output:before {
  position: absolute;
  content: "";
  background: url(../images/icon/material-error-outline.svg) no-repeat left top;
  width: 20px;
  height: 20px;
  left: 10px;
  top: 7px;
  display: inline-block;
}

.wpcf7-not-valid-tip:before {
  top: -5px;
  margin: 0;
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid red;
}

.wpcf7-validates-as-required.wpcf7-not-valid {

  border-color: #f54812;
}

.wpcf7 form.failed .wpcf7-response-output {
  border: 1px solid #fe0000 !important;
  background: url(../images/icon/failed-validation.svg) no-repeat 15px center #ffdfdf;
  font-size: 14px;
  color: #ff0000;
  padding: 10px 20px 10px 30px;
  margin: 0 0 10px 0;
  width: 100%;
  padding-left: 45px;
}

.wpcf7 form.sent .wpcf7-response-output {
  background: url(../images/icon/validation-tick.svg) no-repeat 15px center #e1ffd9;
  border-color: #498e36;
  font-size: 14px;
  color: #498e36;
  width: 100%;
  padding: 10px 10px 10px 40px;
}

/*  SCROLL TOP */
.scroltop-progress,
.progress-wrap {
  position: fixed;
  cursor: pointer;
  bottom: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  display: block;
  opacity: 0;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
  z-index: 999;
  visibility: hidden;
  transform: translateY(20px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.scroltop-progress.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroltop-progress.scroltop-primary svg path {
  stroke: var(--theme);
}

.scroltop-progress:after {
  content: "\f176";
  font-size: 18px;
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  top: 0;
  height: 50px;
  cursor: pointer;
  width: 50px;
  line-height: 50px;
  color: var(--theme);
  text-align: center;
  transition: all 200ms linear;
}

.scroltop-progress svg path {
  fill: none;
  stroke-width: 4;
  box-sizing: border-box;
  stroke: var(--primary);
  transition: all 200ms linear;
}

/* inner pages common banner section */
.innner-banner-section {
  min-height: 500px;
  position: relative;
  background-color: var(--darkblue);
  z-index: 0;
}

.innner-banner-section img.bgimg {
  opacity: 0.5;
}

.innner-banner-section .container {
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 123px;
  height: calc(100% - 123px);
  flex-direction: column;
}

.innner-banner-section .heading-38 {
  margin-bottom: 2px;
}

.lg-banner {
  min-height: 600px;
}

.top-logo-section {
  padding: 0px 0 60px;
  background: #fff;
}

.top-logo-section .certificate-logo-wrapper {
  margin-top: -75px;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

.ft-18 {
  font-size: 18px;
  font-weight: 600;
}

.ribbon-sm {
  min-width: auto;
  max-width: auto;
}

.heading-30 span {
  /* font-size: 24px; */
  font-size: clamp(1rem, 0.375rem + 2vw, 1.5rem);
  color: var(--theme);
  display: block;
  width: 100%;
  font-style: italic;
}

.sm-ribbon {
  min-width: auto;
  max-width: max-content;
  width: auto;
  padding: 13px 36px;
}

.total-price {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
}

.price-panel {
  padding: 50px;
  background-color: var(--white);
  border: 1px solid #d2d3d3;
}

.price-panel label {
  color: var(--black);
  margin-bottom: 10px;
  display: block;
  line-height: 1.2;
}

.total-price span {
  font-size: 14px;
  font-weight: 500;
  display: block;
}

.price-block {
  width: 500px;
}

.yarra-vellay-private-tour-page .sm-ribbon.heading-24 {
  margin-bottom: 50px;
}

/*  week infor block style  */

.week-info-price-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -20px;
}

.week-info-price-wrapper .week-price-item {
  width: calc(33.33% - 40px);
  margin: 0 20px 20px;
  background-color: var(--darkblue);
  padding: 45px;
}

.week-price-item>* {
  color: var(--white);
}

.week-info-price-wrapper .week-price-item p {
  letter-spacing: 0.32px;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
}

.week-info-price-wrapper .week-price-item p span {
  text-decoration: underline;
  color: var(--theme);
}

.week-days {
  font-size: 20px;
  font-weight: 600;
  border-bottom: 1px solid rgb(255 255 255 / 20%);
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
  text-transform: uppercase;
}

.week-days:before {
  position: absolute;
  content: "";
  background: url(../images/calendar-check-fill.svg) no-repeat;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
}

.option-section .content-block {
  margin-bottom: 0;
}

.option-section .ribbon.heading-30 {
  font-size: clamp(1.375rem, 1.15rem + 1.125vw, 2.5rem);
}

.option-section .ribbon.heading-30 span {
  font-size: clamp(1.25rem, 1.125rem + 0.625vw, 1.875rem);
}

.option-section .wd-md.text-center h3 {
  font-style: italic;
  margin-bottom: 40px;
}

.bgcolor.option-section {
  background-color: #dfe6ef;
}

/* add input style  */
.choose-destination-form {
  max-width: 435px;
  padding-left: 35px;
}

.choose-destination-form .form-group {
  position: relative;
}

.choose-destination-form .form-group:before {
  border: 2px solid #899192;
  border-radius: 100%;
  width: 12px;
  position: absolute;
  content: "";
  height: 12px;
  left: -26px;
  top: 20px;
}

.choose-destination-form .form-group:not(:last-of-type):after,
.add-input label::before {
  position: absolute;
  content: "";
  height: 100%;
  background: url(../images/line-dotted.svg) repeat-y;
  width: 1px;
  left: -20px;
  top: 30px;
  /* border-left: 1px dotted #dfdfdf; */
}

.choose-destination-form .form-group:last-child::before {
  background: url(../images/map-pin.svg) no-repeat;
  border: 0;
  height: 17px;
  width: 14px;
  border-radius: 0;
}

.add-input {
  position: relative;
  padding-left: 35px;
}

.add-input label {
  font-size: 14px;
  color: #323334;
  position: relative;
  font-weight: 600;
}

.add-input label::before {
  background: url(../images/add-plus.svg) no-repeat;
  width: 20px;
  height: 20px;
  top: -2px;
  left: -28px;
}

.btn-lg {
  min-width: 185px;
  height: 60px;
}

.cta-content p a:hover {
  color: var(--darkblue);
  text-decoration: underline;
}

/* yara vallery slider  */
.yarra-list:not(.slick-slider) {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}

.yarra-list-item {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  margin: 0 20px;
  width: calc(33.33% - 40px);
}

.yarra-list-item img {
  width: 100%;
}

.yarra-list.slick-slider .slick-slide {
  margin: 0 20px;
}

.yarra-item-content {
  max-width: 75%;
  margin: -80px auto 30px;
  background-color: #f1f4f5;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 30px 45px;
}

.yarra-slider .slick-prev {
  left: 0;
  z-index: 1;
  margin-left: 485px;
}

.yarra-slider .slick-next {
  right: 0;
  margin-right: 445px;
}

.yarra-slider .slick-prev:before,
.yarra-slider .slick-next:before {
  content: "\f104";
  font-family: "FontAwesome";
  color: var(--white);
  opacity: 1;
  font-size: 28px;
  line-height: 60px;
  font-weight: normal;
}

.yarra-slider .slick-next:before {
  content: "\f105";
}

.yarra-item-content .heading-26 {
  margin-bottom: 15px;
}

.news__pagination {
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  width: 100%;
  top: 0;
}

.news__counter {
  position: absolute;
  top: 50%;
  margin-top: -120px;
  left: calc(485px + 60px);
  background: rgb(0 0 0 / 59%);
  color: #fff;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  line-height: 1.2;
  width: 40px;
  font-size: 12px;
  font-weight: 600;
}

.yarra-slider .slick-arrow {
  width: 60px;
  height: 60px;
  background-color: rgb(0, 0, 0, 0.6);
  border-radius: 0;
  margin-top: -90px;
  line-height: 60px;
  border: 0;
}

.yarra-slider .slick-dots li {
  width: auto;
  height: auto;
  margin: 0 4px 30px;
}

.yarra-slider .slick-arrow:hover {
  background-color: var(--yellow);
}

.yarra-slider .slick-dots li button {
  width: 14px;
  height: 14px;
  border-radius: 100%;
  padding: 0;
  border: 3px solid transparent;
}

.yarra-slider .slick-dots li.slick-active button {
  border: 3px solid var(--yellow);
}

.yarra-slider .slick-dots li button:before {
  opacity: 1;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: #c4c4c4;
  left: 0;
  top: 0;
}

.yarra-slider .slick-dots li.slick-active button:before {
  background-color: transparent;
}

.choose-dest-wrapper {
  margin-top: 50px;
}

/*  yarra vallery style  */
.option-section .v-funblock {
  top: 0;
  bottom: inherit;
  margin-top: -72px;
}

ul.yv-list-item {
  list-style-type: none;
  margin-left: 0;
}

.yv-list-item li {
  padding: 15px 0;
  position: relative;
  margin-bottom: 0;
}

.yv-list-item li:after {
  position: absolute;
  content: "\f105";
  color: var(--theme);
  right: 0;
  top: 50%;
  margin-top: -10px;
  font-size: 16px;
  font-family: "FontAwesome";
}

.yv-list-item li:not(:last-child) {
  border-bottom: 1px solid #dfdfdf;
}

.yv-list-item li a {
  font-size: 18px;
  color: var(--secondary);
  font-weight: 600;
  line-height: 1.2;
}

.yv-list-item li a:hover,
.yv-list-item li.active>a {
  color: var(--theme);
}

.big-imageframe .row-reverse .content-block.pd-left-140 {
  padding-left: 140px;
}

main.yarra-vellay-private-tour-page.inpg .innner-banner-section img.bgimg.mobile {
  display: none;
}

/*--- option ---*/
ul.c-ul
 {
    display: flex;
    margin: 0;
    padding: 0;
    list-style-type: none;
	justify-content:center;
	gap:18px;
	justify-content:space-between;

	 & li{
		 margin:0;
		 padding:0px;
      & .option-image{
        margin-bottom: 10px;
      }
		 & [class*="heading-"]{margin-bottom:4px;line-height:1.1;}
		 & .option-caption{
			 text-align:center;
       & .heading-24{
        font-size: 20px;
       }
		 }
	 }
	 & li a{
		 padding:10px;
	 }
}
ul.c-ul.less-than-3 { 
justify-content: center;
}
ul.c-ul>li>a.active 
{
	 background-color:var(--theme);
	& [class*="heading-"],& .option-caption{
		color:var(--white);
	}
}
.fixed-options .option-sec-main
{
	position:fixed;
    z-index:99;
	top:105px;
	left:0;
    -webkit-animation: 3s ease fadeIn;
    animation: 3s ease fadeIn;
	 background-color:var(--white);
	box-shadow: 0px 3px 10px 0px rgb(0 0 0 / 8%);
    -moz-box-shadow: 0px 3px 10px 0px rgb(0 0 0 / 20%);
    -webkit-box-shadow: 0px 3px 10px 0px rgb(0 0 0 / 20%);
	width:100%;
 &  .c-list {
  &  .c-ul > li{
& .region-block .option-image{display: none;}
  }
 } 
}
.quicklink-div 
{
	 & .quicklink-trigger, & .closemenu
		{
				display:none;
		}
}

/* RESPONSIVE  MEDIA QUERY */
@media (max-width: 1599.98px) {

  .team-slider .slick-next,
  .cl-slider .slick-next,
  .bseat-ul .slick-next {
    right: 15px;
  }

  .team-slider .slick-prev,
  .cl-slider .slick-prev,
  .bseat-ul .slick-prev {
    left: 15px;
  }

  .lg-banner {
    min-height: 550px;
  }

  .yarra-item-content {
    padding: 20px 30px;
  }

  .yarra-list.slick-slider .slick-slide,
  .yarra-list-item {
    margin: 0 10px;
  }

  .yarra-item-content {
    max-width: 85%;
  }

  .row-reverse .content-block {
    padding-left: 40px;
  }

  .content-block {
    padding-right: 40px;
  }

  .big-imageframe .img-block {
    width: 650px;
  }

  .big-imageframe .content-block {
    width: calc(100% - 650px);
    padding-right: 40px;
  }

  .big-imageframe .image-frame .img-rotate-left {
    width: calc(100% - 100px);
  }

  .big-imageframe .row-reverse .content-block {
    padding-left: 40px;
  }

  .image-frame .testimonial-rotate {
    width: calc(100% - 30px);
    transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -webkit-transform-origin: 0 0;
  }

  .yarra-slider .slick-prev {
    margin-left: 0;
  }

  .yarra-slider .slick-next {
    margin-right: 0;
  }

  .news__counter {
    left: 60px;
  }
	.fixed-options .option-sec-main{
				top:103px;
	}
}

@media (max-width: 1439.98px) {
  .lg-banner {
    min-height: 500px;
  }

  .price-panel,
  .week-info-price-wrapper .week-price-item {
    padding: 35px;
  }

  .yarra-slider .slick-next {
    margin-right: 345px;
  }

  .yarra-slider .slick-prev {
    margin-left: 365px;
  }

  .news__counter {
    left: calc(365px + 60px);
  }

  .ft-col-2 {
    padding-left: 120px;
  }

  .footer-top-section .cta-content {
    padding-right: 50px;
  }

  .cta-wrapper {
    padding: 50px 50px;
  }

  .cta-wrapper .cta-content {
    padding-left: 30px;
  }

  .client-wrapper.slick-slider .slick-slide {
    margin: 0 10px 40px;
  }

  .client-content {
    padding: 80px 30px 30px;
  }

  .client-content::before {
    left: 30px;
  }

  .region-listing-wrapper {
    grid-gap: 30px;
  }

  .week-info-price-wrapper {
    margin: 0 -15px;
  }

  .week-info-price-wrapper .week-price-item {
    width: calc(33.33% - 30px);
    margin: 0 15px 20px;
  }

  .content-block {
    margin-bottom: 80px;
  }

  .img-block {
    margin-bottom: 80px;
  }

  .img-block {
    width: 500px;
  }

  .content-block {
    width: calc(100% - 500px);
  }

  .image-frame .img-frame-small {
    width: 260px;
  }

  .big-imageframe .img-block {
    width: 500px;
  }

  .content-block,
  .big-imageframe .content-block {
    width: calc(100% - 500px);
  }

  .big-imageframe .img-block .image-frame {
    padding-bottom: 60px;
  }

  .faq-imgblock-accordion .acc_content {
    padding: 30px !important;
  }

  .faq-imgblock-accordion .faq-head {
    padding: 18px 45px 18px 20px;
  }

  .faq-imgblock-accordion .accordion_in .acc_head .acc_icon_expand {
    right: 20px !important;
  }

  .faq-imgblock-accordion .acc_content {
    padding: 30px !important;
  }

  .testimonial-rotate .client-content::before {
    top: 30px;
    left: 30px;
  }

  .testimonial-rotate .client-content {
    padding: 75px 30px 30px;
  }

  .faq-section {
    padding: 80px 0;
  }

  .faq-section .faq_accordion {
    column-count: 2;
    column-gap: 30px;
  }

  #process-tab .resp-tabs-list li {
    min-width: auto;
    padding: 20px;
  }

  .team-slider .slick-slide {
    margin: 0 8px;
  }

  .tour-content .md-wd {
    padding: 0 100px;
  }
	.fixed-options .option-sec-main {
        top: 102px;
    }
			ul.c-ul {
					& li {
									& [class*="heading-"] {
													margin-bottom: 4px;
													line-height: 1.1;
													font-size: 16px;
									}
					}
				 & .opt-subtitle{
					 font-size: 14px;
    	 line-height: 1.2;
				 }
		}
}

@media (max-width: 1199.98px) {
  .cmnpg {
    padding-top: 60px;
  }

  .lg-banner {
    min-height: 450px;
  }

  .yarra-slider .slick-next {
    margin-right: 245px;
  }

  .yarra-slider .slick-prev {
    margin-left: 265px;
  }

  .news__counter {
    left: calc(265px + 60px);
  }

  .price-block {
    width: 350px;
  }

  .price-panel,
  .week-info-price-wrapper .week-price-item {
    padding: 25px;
  }

  .week-info-price-wrapper .week-price-item {
    width: calc(33.33% - 20px);
    margin: 0 10px 20px;
  }
ul.c-ul {
    & li {
        & .option-caption {
            & .heading-24 {
                font-size: 18px;
            }
        }
    }
}
  .footer-top-section .cta-content {
    padding-right: 0;
    width: 100%;
    flex: 1 100%;
    margin-bottom: 20px;
  }

  .footer-top-section {
    padding: 40px 0;
  }

  .ft-col-2 {
    padding-left: 50px;
  }

  .ft-col-1,
  .ft-col-2,
  .ft-col-3,
  .ft-col-4 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .ft-col-3,
  .ft-col-4 {
    width: 22%;
  }

  .ft-col-info {
    margin: 0 auto;
  }

  .cta-wrapper .cta-content {
    padding-left: 20px;
  }

  .cta-wrapper {
    padding: 30px 20px;
  }

  .cta-wrapper .cta-item {
    width: 330px;
  }

  .video-section {
    padding: 90px 0 110px;
  }

  .client-content::before {
    left: 25px;
    top: 20px;
  }

  .client-content {
    padding: 60px 25px 30px;
  }

  .region-listing-wrapper {
    grid-gap: 20px;
  }

  .yarra-vellay-private-tour-page .sm-ribbon.heading-24 {
    margin-bottom: 40px;
  }

  .week-info-price-wrapper .week-price-item p {
    line-height: 28px;
  }

  .content-block {
    margin-bottom: 60px;
    width: calc(100% - 350px);
    padding-right: 30px;
  }

  .img-block {
    margin-bottom: 60px;
    width: 350px;
  }

  .image-frame .img-frame-big {
    width: calc(100% - 80px);
  }

  .image-frame .img-frame-small {
    width: calc(100% - 120px);
  }

  .row-reverse .content-block {
    padding-left: 30px;
  }

  .big-imageframe .img-block {
    width: 350px;
  }

  .content-block,
  .big-imageframe .content-block {
    width: calc(100% - 350px);
  }

  .big-imageframe .img-block .image-frame {
    padding-bottom: 50%;
  }

  .big-imageframe .image-frame .img-rotate-left {
    width: calc(100% - 20px);
  }

  .big-imageframe .row-reverse .content-block {
    padding-left: 30px;
  }

  .big-imageframe .content-block {
    padding-right: 30px;
  }

  .faq-imgblock-accordion .acc_content {
    padding: 20px !important;
  }

  ul.itinerary-ul li .time-label {
    font-size: 16px;
    line-height: 18px;
  }

  .faq-section {
    padding: 60px 0;
  }

  #process-tab .resp-tabs-list li {
    padding: 15px;
  }

  .client-wrapper.slick-slider .slick-slide {
    margin: 0 5px 40px;
  }

  .v-funblock {
    width: 160px;
  }

  .tour-content .md-wd {
    padding: 0 60px;
  }
	ul.c-ul{
		gap:10px;
	}
  .fun-fact-popup#create-itinerary{ 
    padding: 40px;
  }
}

@media (max-width: 991.98px) {
  .chat-option h3 {
    margin: 0 0 20px 0;
  }

  .arrow-top {
    margin: 40px 0 0 0;
  }

  .arrow-top span {
    width: 30px;
    height: 30px;
    top: -53px;
    margin-left: -15px;
    font-size: 14px;
  }

  #dialog-content .dialog-box {
    padding: 80px 20px 20px;
  }

  .cmnpg {
    padding-top: 40px;
  }

  .top-logo-section .certificate-logo-wrapper {
    margin-top: 0;
  }

  .innner-banner-section .container {
    top: 106px;
    height: calc(100% - 106px);
  }

  .yarra-slider .slick-next {
    margin-right: 80px;
  }

  .yarra-slider .slick-prev {
    margin-left: 100px;
  }

  .yarra-slider .slick-prev:before,
  .yarra-slider .slick-next:before {
    font-size: 22px;
  }

  .yarra-slider .slick-arrow {
    width: 40px;
    height: 40px;
    margin-top: -40px;
    line-height: 40px;
  }

  .yarra-slider .slick-prev:before,
  .yarra-slider .slick-next:before {
    line-height: 40px;
  }

  .certificate-logo-wrapper {
    grid-gap: 10px;
  }
.fun-fact-popup#create-itinerary{ 
    padding: 30px;
  }
  .option-section .content-block,
  .sec-region .mb-50 {
    margin-bottom: 30px;
  }

  .big-imageframe .row-reverse .content-block.pd-left-140 {
    padding-left: 0;
    text-align: left;
  }
  .reel-strip-wrapper::before,.reel-strip-wrapper::after {
    background-size: 100% !important; animation:none !important
  }
  ul.yv-list-item {
    text-align: left;
  }

  .thnak_you-page .content-block {
    text-align: left;
  }

  .footer-top-section {
    padding: 30px 0;
    text-align: center;
  }

  .footer-top-section .btnlist,
  .price-block {
    width: 100%;
  }

  .ft-col-1,
  .ft-col-2,
  .ft-col-3,
  .ft-col-4 {
    width: 50%;
  }

  .ft-col-4 {
    padding-left: 50px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
  }

  .ft-col-3 {
    text-align: center;
  }

  .cta-wrapper {
    height: auto;
  }

  .cta-wrapper .cta-item {
    width: 230px;
  }

  .cta-wrapper .cta-content {
    padding-left: 10px;
  }

  .video-section {
    padding: 60px 0 80px;
  }

  .region-block .region-caption .heading-24::after {
    right: 10px;
    bottom: 15px;
  }

  .region-listing-wrapper {
    grid-gap: 10px;
  }

  .region-block .region-caption {
    padding: 15px 45px 15px 15px;
  }

  .top-logo-section {
    padding: 0px 0 50px;
  }

  .yarra-vellay-private-tour-page .sm-ribbon.heading-24 {
    margin-bottom: 30px;
  }

  .week-info-price-wrapper .week-price-item p {
    line-height: 24px;
  }

  .content-block {
    margin-bottom: 30px;
    width: 100%;
    padding-right: 0;
    text-align: left;
  }

  .content-block ul,
  .content-block ol {
    display: table;
    text-align: left;
  }

  .content-block ul.yv-list-item {
    column-count: 2;
    display: block;
    margin: 0;
  }

  .content-block ul.yv-list-item li {
    padding: 7px 0;
    margin-bottom: 5px;
  }

  .img-block {
    margin-bottom: 50px;
    position: relative;
    top: 0;
    margin-top: 0;
    max-width: 400px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .row-reverse .content-block {
    padding-left: 0;
  }

  .big-imageframe .row-reverse .content-block {
    padding-left: 0;
    width: 100%;
  }

  .big-imageframe .img-block {
    max-width: 600px;
    width: 100%;
  }

  .content-block,
  .big-imageframe .content-block {
    width: 100%;
    padding-right: 0;
  }
.process-sec{
  & .content-block{
            text-align: center;
  }
}
  .big-imageframe .img-block .image-frame {
    padding-bottom: 50px;
  }

  .content-block .btnlist {
    justify-content: center;
  }

  .faq-imgblock-accordion .accordion_in {
    text-align: left;
  }

  .faq-section {
    padding: 50px 0;
  }

  .faq-section .faq_accordion {
    column-count: 1;
    column-gap: 0px;
  }

  #process-tab .resp-tab-content .content-block {
    margin-bottom: 25px;
    text-align: left;
  }

  .big-imageframe .image-frame .img-rotate-right {
    width: 180px;
  }

  .big-imageframe .image-frame .img-rotate-left {
    width: calc(100% - 120px);
  }

  .font20 {
    font-size: 16px;
    line-height: 20px;
  }

  .arrow-center {
    height: 50px;
    margin-top: -25px;
  }

  .footer-bg::after,
  .faq-section::after,
  .bottom-shape::after {
    height: 24px;
    background-size: cover;
    left: 0;
  }

  .news__counter {
    display: none;
  }

  .border-lr:before,
  .border-lr:after {
    width: 40px;
  }

  .border-lr:before {
    margin-right: -50px;
  }

  .border-lr:after {
    margin-left: -50px;
  }

  .faq-imgblock .img-block .image-frame {

    padding-bottom: 70px;

  }

  .v-funblock {

    width: 140px;

  }

  .tour-content .md-wd {
    padding: 0 40px;
  }
	
	.quicklink-div {
		  position:relative;
    & .quicklink-trigger{
                 display: flex;
            font-size: 16px;
            font-weight: bold;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            line-height: 1;
            padding: 10px;
            border: 1px solid var(--darkblue);
            border-radius: 6px;
					& i{
						margin-left:10px;
						font-weight:bold;
					}
    }
				& .side-navigation{
					 display:none;
				}
	 }
		.quicklink-div.slide
		{
			  
					& .side-navigation{
							display:block;
       position:absolute;
       background-color:#FFFFFF;
       width:100%;
       padding:20px;
       border:1px solid var(--darkblue);
       border-radius:6px;
					}
		}
		ul.c-ul {
			gap:2px;
			flex-wrap:wrap;
					& li {
						line-height:1;
						width:100%;
									& [class*="heading-"] {
													margin-bottom: 4px;
													line-height: 1;
													font-size: 15px;
									}
									& .opt-subtitle{
										line-height:1.1;
									}
									& .option-caption{
										text-align:left;
									}
					}
					& li a{
							padding:8px;
					}
			}
	.fixed-options .option-sec-main{
		    padding: 4px 0;
	}
}

@media (max-width: 767.98px) {

  /* .option-section .ribbon.heading-30{margin-bottom: 0;} */
  .chat-option h3 {
    padding: 20px;
  }

  .top-logo-section {
    padding: 0px 0 40px;
  }

  button,
  .button,
  button[type="submit"],
  input[type="submit"] {
    padding: 14px 12px 12px;
  }

  .cta-wrapper {
    text-align: center;
    margin-top: 50px;
  }

  .cta-wrapper .cta-item {
    width: 100%;
    margin-top: -100px;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-wrapper .btnlist {
    justify-content: center;
  }

  .cta-wrapper .cta-content {
    padding-left: 0;
    flex: 1 100%;
  }
.fun-fact-popup#create-itinerary{ 
    padding: 20px;
  }
  .daily-tour-time {
    padding: 15px 25px;
    letter-spacing: 3px;
  }

  .daily-tour-time:before {
    left: -30px;
    width: 35px;
  }

  .yarra-slider .slick-next {
    margin-right: 15px;
  }

  .yarra-slider .slick-prev {
    margin-left: 25px;
  }

  .yarra-list.slick-slider .slick-slide,
  .yarra-list-item {
    margin: 0 5px;
  }

  .yarra-item-content {
    padding: 20px 20px;
  }

  .week-info-price-wrapper .week-price-item {
    width: calc(50% - 15px);
    margin: 0 7px 15px;
  }

  .yv-list-item li a {
    font-size: 16px;
  }

  .ft-col-2,
  .ft-col-4 {
    padding-left: 30px;
  }

  .ft-col-1,
  .ft-col-2,
  .ft-col-3,
  .ft-col-4 {
    padding-bottom: 0;
  }

  .ft-col-1,
  .ft-col-2,
  .ft-col-3,
  .ft-col-4 {
    padding-top: 30px;
  }

  .price-panel,
  .week-info-price-wrapper .week-price-item {
    padding: 20px;
  }

  .instagram-wrapper .heading-38 {
    text-align: center;
    width: 100%;
  }

  .instagram-wrapper .btnins-right {
    margin: 0 auto 30px;
  }

  .daily-tour-time {
    padding: 20px 0px 10px;
    letter-spacing: 1px;
  }

  .daily-tour-time:before {
    left: -10px;
  }

  .video-section {
    padding: 40px 0 60px;
  }

  .region-listing-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .region-block .region-caption .heading-24::after {
    width: 30px;
    height: 30px;
  }

  .ribbon {
    max-width: fit-content;
    min-width: fit-content;
  }

  .sm-ribbon {
    padding: 10px 15px;
  }

  .price-panel {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .price-panel .form-group:has(input) {
    width: 70%;
  }

  .price-panel .form-group:has(button) {
    width: 20%;
    margin-bottom: 0;
    text-align: right;
    margin-top: 12px;
    margin-left: 10px;
  }

  .price-panel form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .week-info-price-wrapper {
    justify-content: center;
  }

  .week-days {
    font-size: 18px;
  }

  .team-slider .slick-slide {
    margin: 0 5px;
  }

  .team-name {
    font-size: 16px;
    line-height: 22px;
  }

  .team-name span {
    font-size: 14px;
    line-height: 18px;
  }

  #process-tab .resp-tabs-list {
    flex-wrap: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    justify-content: flex-start;
  }

  #process-tab .resp-tabs-list li {
    width: auto;
    min-width: 210px;
  }

  .faq-imgblock .img-block .image-frame {
    padding-bottom: 50px;
  }

  .font18 {
    font-size: 16px;
    line-height: 22px;
  }

  .tour-content .md-wd {
    padding: 0 0px;
  }


  main.yarra-vellay-private-tour-page.inpg .innner-banner-section img.bgimg.mobile {
    display: block;
  }

  main.yarra-vellay-private-tour-page.inpg .innner-banner-section img.bgimg.desktop {
    display: none;
  }



}

@media (max-width: 575.98px) {
  .innner-banner-section .container {
    top: 71px;
    height: calc(100% - 71px);
  }

  .innner-banner-section {
    min-height: 350px;
  }

  .top-logo-section .certificate-logo-wrapper,
  .certificate-logo-wrapper {
    margin-top: 0px;
    grid-gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .top-logo-section {
    padding: 0px 0 30px;
  }

  .top-logo-section .inline-logo,
  .certificate-logo-wrapper .inline-logo {
    width: 18%;
  } 
  .content-block .btnlist .button{margin-bottom: 10px;}

  .yarra-slider .slick-dots li {
    margin: 0 4px 20px;
  }

  .yarra-item-content {
    max-width: 100%;
    width: calc(100% - 40px);
    margin-top: -40px;
  }

  .yarra-item-content .heading-26 {
    margin-bottom: 8px;
  }

  .yarra-slider .slick-next {
    margin-right: -35px;
    top: auto;
    bottom: 0;
    margin-top: 0;
    right: 50%;
  }

  .yarra-slider .slick-prev {
    margin-left: -35px;
    top: auto;
    bottom: 0;
    margin-top: 0;
    left: 50%;
  }

  .yarra-list.yarra-slider {
    padding-bottom: 40px;
    margin-bottom: 15px;
  }

  .yarra-slider .slick-arrow {
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 100%;
  }

  .yarra-slider .slick-prev:before,
  .yarra-slider .slick-next:before {
    line-height: 30px;
  }

  .week-info-price-wrapper .week-price-item {
    width: 100%;
    margin: 0 0 15px 0;
  }

  .week-info-price-wrapper {
    margin: 0;
  }

  .price-panel .form-group:has(button) {
    width: 120px;
  }

  .price-panel .form-group:has(input) {
    width: calc(100% - 160px);
  }

  .content-block ul.yv-list-item {
    column-count: 1;
  }
.faq-imgblock-accordion .accordion_in .acc_head .acc_icon_expand {
        right: 10px !important;
    }
  .ft-col-2,
  .ft-col-4 {
    padding-left: 0px;
  }

  .ft-col-1,
  .ft-col-2,
  .ft-col-3,
  .ft-col-4 {
    width: 100%;
    text-align: left;
  }

  .ft-col-info {
    max-width: 100%;
    text-align: left;
  }

  .line:after {
    left: 0;
    margin-left: 0;
  }

  .ft-col-2,
  .ft-col-4 {
    border-left: 0;
  }

  .ft-col-1 .social-list {
    margin: 0;
    text-align: left;
  }

  .footer-links,
  .contact-info {
    display: none;
    margin-bottom: 20px;
  }

  .footer-top-section .btnlist a:not(:last-child) {
    margin-bottom: 15px;
  }

  .footer-title.showhide+.footer-links,
  .footer-title.showhide+.contact-info {
    display: block;
  }

  .footer-title {
    position: relative;
    border-bottom: 1px solid rgb(255 255 255 / 15%);
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .footer-title::after,
  .footer-title::before {
    content: "";
    position: absolute;
    top: 35%;
    right: 0;
    margin: 0 0 -10px;
    background: var(--white);
    border-radius: 2px;
  }

  .footer-title::after {
    right: 1px;
    width: 20px;
    height: 3px;
    margin-top: -1.5px;
    background: var(--white);
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
  }

  .footer-title::before {
    right: 10px;
    width: 3px;
    height: 20px;
    transition: all 300ms;
    margin-top: -10px;
    background: var(--white);
  }

  .footer-title.showhide::before {
    opacity: 0;
  }

  .ft-col-1,
  .ft-col-2,
  .ft-col-3,
  .ft-col-4 {
    padding: 0;
  }

  .ft-col-1 {
    padding: 30px 0;
    border-bottom: 1px solid rgb(255 255 255 / 15%);
    margin-bottom: 20px;
  }

  footer {
    padding-bottom: 75px;
  }

  .footer-bottom {
    padding: 10px 15px !important;
  }

  .ft-col-1 .ft-col-info .footer-logo img {
    width: 130px;
  }

  .daily-tour-time:before {
    content: none;
  }

  .daily-tour-time {
    text-align: center;
  }

  .cta-wrapper .btnlist a:not(:last-of-type),
  .content-block .btn-list a:not(:last-of-type) {
    margin-bottom: 15px;
  }

  .cta-wrapper .btnlist,
  .content-block .btn-list {
    flex-direction: column;
  }

  .content-block .btn-list a {
    min-width: fit-content;
    width: max-content;
    max-width: fit-content;
  }

  p,
  ol li,
  ul li {
    margin-bottom: 20px;
  }

  .region-block .region-caption .heading-24::after {
    width: 26px;
    height: 26px;
    font-size: 16px;
  }

  .region-block .region-caption {
    padding: 15px 35px 15px 15px;
  }

  .region-block .region-caption .heading-24::after {
    right: 7px;
    bottom: 10px;
  }

  .ribbon {
    line-height: 1;
    font-size: 20px;
  }

  .yarra-item-content {
    padding: 15px;
  }

  .yarra-item-content p {
    font-size: 14px;
    line-height: 20px;
  }

  .week-days {
    font-size: 16px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .image-frame .img-frame-big,
  .image-frame .img-frame-small {
    outline: 8px solid #ffffff;
    outline-offset: -7px;
  }

  .faq-imgblock-accordion .faq-head {
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0px;
  }

  .faq-imgblock-accordion .faq-head {
    padding: 16px 45px 16px 20px;
  }

  .faq-imgblock-accordion .accordion_in .acc_head .acc_icon_expand {
    top: 14px !important;
  }

  .faq-imgblock-accordion .acc_content {
    padding: 16px !important;
  }

  #process-tab .resp-tab-content {
    padding: 30px 0 0;
  }

  .big-imageframe .img-block .image-frame {
    padding-bottom: 30px;
  }

  .big-imageframe .image-frame .img-rotate-left {
    width: calc(100% - 40px);
  }

  .big-imageframe .image-frame .img-rotate-right {
    width: 110px;
  }

  .arrow-center {
    height: 50px;
    margin-top: -25px;
  }

  .border-lr:before,
  .border-lr:after {

    display: none;

  }

  .faq-imgblock .img-block .image-frame {

    padding-bottom: 40px;

  }

  .client-wrapper.slick-slider .slick-slide {

    margin: 0 5px 40px;

  }

  .cta-wrapper .cta-item {

    max-width: 160px;

    margin-top: -80px;

  }

  .option-section .v-funblock {
    margin-top: -30px;
    width: 88px;
    margin-left: 10px;
  }

  .option-section .v-funblock img.plus-icon {
    margin-right: 0px;
    margin-top: -10px;
  }

  [class*="heading-"],
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {

    margin-bottom: 15px;

  }

  .dashed-btn-block {
    height: 73px;
    width: 280px;
    padding: 13px 0;
    margin: 20px auto 40px;
    background-position: 0px 0px, 317px 80px, 0px 80px, 324px 0px;
  }
   

  @keyframes border-dance {
    0% {
      background-position: 0px 0px, 370px 65px, 0px 200px, 300px 0px;
    }

    100% {
      background-position: 370px 0px, 0px 65px, 0px 0px, 300px 200px;
    }
  }

  .dashed-btn-block:hover {
    background: linear-gradient(90deg, var(--darkblue) 50%, transparent 50%), linear-gradient(90deg, var(--darkblue) 50%, transparent 50%), linear-gradient(0deg, var(--darkblue) 50%, transparent 50%), linear-gradient(0deg, var(--darkblue) 50%, transparent 50%);
    background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
    background-size: 15px 3px, 15px 3px, 3px 15px, 3px 15px;
    background-position: 0px 0px, 300px 70px, 0px 70px, 300px 0px;
  }

  .btnlist li,
  .btnlist .button {

    margin: 0px 4px;

  }

  .btnlist {

    margin: 0 -4px;

  }

  .slick-next,
  .slick-prev {

    width: 28px;

    height: 28px;

  }

  .slick-next:before,
  .slick-prev:before {

    font-size: 16px;

    line-height: 26px;

  }

  .team-cationp {

    padding: 10px 0;

  }

  .v-funblock {

    width: 120px;

    margin-left: 20px;

  }

  .video-play .play-icon-animation:before {

    width: 56px;

    height: 56px;

  }

  .video-play .play-icon-animation>img {

    width: 50px;

  }

  .video-play {
    width: 90%;
    height: 200px;
    margin-bottom: 30px;
  }

  .news__pagination {
    display: none;
  }

  .bseat-ul .slick-arrow {
    top: 100%;
  }

  .bseat-ul .slick-prev {
    left: calc(50% - 40px);
  }

  .bseat-ul .slick-next {
    right: calc(50% - 40px);
  }

  .total-price {
    font-size: 18px;
  }
	    .fixed-options .option-sec-main {
        top: 71px;
    }
}

.pdb-0 {
  padding-bottom: 0 !important;
}

@keyframes swing {
  0% {
    transform: rotate(1deg);
  }

  100% {
    transform: rotate(-1deg);
  }
}

@keyframes swingleft {
  0% {
    transform: rotate(-1deg);
  }

  100% {
    transform: rotate(1deg);
  }
}

.fadeUp.is-animated {
  animation-name: fadeUp;
  animation-duration: 2.5s;
}

.fadeUp.animated-fast {
  animation-duration: 2s;
}

.fadeUp.animated-slow {
  animation-duration: 3s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes bounce {
  50% {
    transform: translateY(-15px);
  }
}

@keyframes movement {

  100% {
    background-position: 500px 0px;
  }
}

.banner-form-panel .form-wrapper #message a {
  text-transform: uppercase;
  text-decoration: underline;
  color: var(--yellow);
}

.banner-form-panel .form-wrapper #message a:hover {
  color: var(--theme);
}
.reel-strip-wrapper{
  position: relative;
  width: 100%;
  overflow: hidden;margin-bottom: 30px;    padding-top: 10px;
    padding-bottom: 4px;
}
.reel-marquee{
  overflow: hidden;    z-index: 2;
}
.reel-strip-wrapper::before{
 position: absolute;
    content: "";
    width: 200vw;
    background-image: url(../images/gallery-border.svg);
    background-repeat: repeat-x;
    height: 15px;
    left: 0;
    top: -6px;
    animation: ticker-lf 200s linear infinite;
    background-size: 35%;
}
.reel-strip-wrapper::after{
     position: absolute;
    content: "";
    width: 200vw;
    background-image: url(../images/gallery-border.svg);
    background-repeat: repeat-x;
    height: 15px;
    right: 0;
    bottom: 0;
    margin-right: -4px;
    animation: ticker-rf 200s linear infinite;
    background-size: 35%;
}

  .reel-marquee .pgallery-img{
  outline: 2px solid #fff;outline-offset: -1px;
  position: relative;
  overflow: hidden;
}
.reel-marquee .pgallery-img > img{
 max-width: max-content;
    height: 100%;
    object-fit: contain;
    height: 200px;
}
.cmn_pg_content {
  & .itinery-form-wrapper{
    max-width: 800px;
    margin: 0 auto;
    & .form-row{
      display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    }
    & .choose-destination-form {
    max-width: 100%;
    }
    & .submit_button{
      & .submitbtn{
        width: 100%;
      }
    }
  }
}