@charset "utf-8";
/* CSS Document */

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/** 1. Change the default font family in all browsers (opinionated). 2. Prevent adjustments of font size after orientation changes in IE and iOS. */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}
/* HTML5 display definitions ========================================================================== */
/** Add the correct display in IE 9-. 1. Add the correct display in Edge, IE, and Firefox. 2. Add the correct display in IE. */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  /* 1 */
  display: block;
}
/** Add the correct display in IE 9-. */
audio,
canvas,
progress,
video {
  display: inline-block;
}
/** Add the correct display in iOS 4-7. */
audio:not([controls]) {
  display: none;
  height: 0;
}
/** Add the correct vertical alignment in Chrome, Firefox, and Opera. */
progress {
  vertical-align: baseline;
}
/** Add the correct display in IE 10-. 1. Add the correct display in IE. */
template,
[hidden] {
  display: none;
}
/* Links ========================================================================== */
/** Remove the gray background on active links in IE 10. */
a {
  background-color: transparent;
}
/** Remove the outline on focused links when they are also active or hovered in all browsers (opinionated). */
a:active,
a:hover {
  outline-width: 0;
  text-decoration: none;
  outline: none;
}
/* Text-level semantics ========================================================================== */
/** 1. Remove the bottom border in Firefox 39-. 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted; /* 2 */
}
/** Prevent the duplicate application of `bolder` by the next rule in Safari 6. */
b,
strong {
  font-weight: inherit;
}
/** Add the correct font weight in Chrome, Edge, and Safari. */
b,
strong {
  font-weight: bold;
}
/** Add the correct font style in Android 4.3-. */
dfn {
  font-style: italic;
}
/** Add the correct background and color in IE 9-. */
mark {
  background-color: #ff0;
  color: #000;
}
/** Add the correct font size in all browsers. */
small {
  font-size: 80%;
}
/** Prevent `sub` and `sup` elements from affecting the line height in all browsers. */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/* Embedded content ========================================================================== */
/** Remove the border on images inside links in IE 10-. */
img {
  border-style: none;
}
/** Hide the overflow in IE. */
svg:not(:root) {
  overflow: hidden;
}
/* Grouping content ========================================================================== */
/** 1. Correct the inheritance and scaling of font size in all browsers. 2. Correct the odd `em` font sizing in all browsers. */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
/** Add the correct margin in IE 8. */
figure {
  margin: 1em 40px;
}
/** 1. Add the correct box sizing in Firefox. 2. Show the overflow in Edge and IE. */
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}
/* Forms ========================================================================== */
/** Change font properties to `inherit` in all browsers (opinionated). */
button,
input,
select,
textarea {
  font: inherit;
}
/** Restore the font weight unset by the previous rule. */
optgroup {
  font-weight: bold;
}
/** Show the overflow in IE. 1. Show the overflow in Edge. 2. Show the overflow in Edge, Firefox, and IE. */
button,
input,
select {
  /* 2 */
  overflow: visible;
}
/** Remove the margin in Safari. 1. Remove the margin in Firefox and Safari. */
button,
input,
select,
textarea {
  /* 1 */
  margin: 0;
}
/** Remove the inheritance of text transform in Edge, Firefox, and IE. 1. Remove the inheritance of text transform in Firefox. */
button,
select {
  /* 1 */
  text-transform: none;
}
/** Change the cursor in all browsers (opinionated). */
button,
[type='button'],
[type='reset'],
[type='submit'] {
  cursor: pointer;
}
/** Restore the default cursor to disabled elements unset by the previous rule. */
[disabled] {
  cursor: default;
}
/** 1. Prevent a WebKit bug where (2) destroys native `audio` and `video` controls in Android 4. 2. Correct the inability to style clickable types in iOS. */
button,
html [type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; /* 2 */
}
/** Remove the inner border and padding in Firefox. */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/** Restore the focus styles unset by the previous rule. */
button:-moz-focusring,
input:-moz-focusring {
  outline: 1px dotted;
}
/** Change the border, margin, and padding in all browsers (opinionated). */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
/** 1. Correct the text wrapping in Edge and IE. 2. Correct the color inheritance from `fieldset` elements in IE. 3. Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers. */
legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}
/** Remove the default vertical scrollbar in IE. */
textarea {
  overflow: auto;
}
/** 1. Add the correct box sizing in IE 10-. 2. Remove the padding in IE 10-. */
[type='checkbox'],
[type='radio'] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}
/** Correct the cursor style of increment and decrement buttons in Chrome. */
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}
/** Correct the odd appearance of search inputs in Chrome and Safari. */
[type='search'] {
  -webkit-appearance: textfield;
}
/** Remove the inner padding and cancel buttons in Chrome on OS X and Safari on OS X. */
[type='search']::-webkit-search-cancel-button,
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}
blockquote {
  max-width: 711px;
  text-align: center;
  margin: 50px auto 50px !important;
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
}
blockquote:before {
  content: '';
  position: absolute;
  width: 25px;
  height: 20px;
  background-image: url('../images/top_quote.svg');
  background-repeat: no-repeat;
  top: 0;
  left: 0;
}
blockquote:after {
  content: '';
  position: absolute;
  width: 25px;
  height: 20px;
  background-image: url('../images/bottom_quote.svg');
  background-repeat: no-repeat;
  bottom: 0;
  right: 0;
}
blockquote p {
  font-size: 36px;
  line-height: 36px;
  font-style: italic;
  margin: 0px;
}
blockquote *:last-child {
  margin: 0;
}
form ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
input[type='text'],
input[type='email'],
input[type='password'],
input[type='tel'],
input[type='url'],
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 1px solid #d1d1d1;
  border-radius: 0.4rem;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0.6rem 1rem;
  width: 100%;
}
input[type='text']:focus,
input[type='email']:focus,
input[type='password']:focus,
input[type='tel']:focus,
input[type='url']:focus,
textarea:focus,
select:focus {
  border: 1px solid #f2a1ad;
  outline: 0;
}
textarea {
  padding-bottom: 0.6rem;
  padding-top: 0.6rem;
}
label,
legend {
  font-size: 16px;
  display: block;
  margin-bottom: 0.5rem;
  color: #302c2e;
}
fieldset {
  border-width: 0;
  padding: 0;
}
input[type='checkbox'],
input[type='radio'] {
  display: inline;
}
input[type='submit']:focus {
  outline: none;
}
input::-webkit-input-placeholder,
select::-webkit-input-placeholder {
  color: rgba(47, 45, 45, 0.7);
}
input::-moz-placeholder,
select::-moz-placeholder {
  color: rgba(47, 45, 45, 0.7);
}
input:-ms-input-placeholder,
select:-ms-input-placeholder {
  color: rgba(47, 45, 45, 0.7);
}
input:-moz-placeholder,
select:-moz-placeholder {
  color: rgba(47, 45, 45, 0.7);
}
input:focus {
  outline: none;
}
dl,
ol,
ul {
  margin-top: 0;
  padding-left: 0;
}
dl dl ul,
dl ol,
ol dl ul,
ol ol,
ul dl ul,
ul ol {
  font-size: 90%;
  margin: 1.5rem 0 1.5rem 3rem;
}
dl {
  list-style: none;
}
ul {
  list-style: none;
  padding: 0px;
}
li {
  padding-left: 24px;
  background-image: url('../../assets/images/list-vector.svg');
  background-repeat: no-repeat;
  background-position: 0px 3px;
}
ol {
  list-style: decimal inside;
}
dt,
dd,
li {
  margin-bottom: 10px;
}
hr {
  border-top: 0.1rem solid #4a4d50;
  border-width: 0;
  margin-bottom: 3.5rem;
  margin-top: 3rem;
}
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
input,
textarea,
select,
fieldset {
  margin-bottom: 1rem;
}
input:last-child,
textarea:last-child,
select:last-child,
fieldset:last-child {
  margin-bottom: 0;
}
pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 1.4rem;
}
pre:last-child,
blockquote:last-child,
dl:last-child,
figure:last-child,
table:last-child,
p:last-child,
ul:last-child,
ol:last-child,
form:last-child {
  margin-bottom: 0;
}
table {
  width: 100%;
}
.flex,
.flex-row,
.flex-column,
.flex-start,
.flex-end,
.flex-center,
.flex-stratch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-wrap: wrap;
}
.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.flex-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.flex-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.flex-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flex-stratch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
@supports ((-o-object-fit: cover) or (object-fit: cover)) {
  .background-image img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    height: 100%;
  }
}
.clearfix {
  zoom: 1;
}
.clearfix:after,
.clearfix:before {
  content: '';
  display: table;
}
.clearfix:after {
  clear: both;
}
.tacenter {
  text-align: center;
}
.taright {
  text-align: right;
}
.taleft {
  text-align: left;
}
.relative {
  position: relative;
}
body,
html {
  margin: 0px;
  padding: 0px;
  position: relative;
}
h1,
h2,
h3,
h4,
h5 {
  margin: 0px;
  margin-bottom: 20px;
  color: #000000;
}
h1 {
  font-size: 68px;
  line-height: 74px;
}
h2 {
  font-size: 38px;
  line-height: 46px;
  font-weight: 300;
}
h2 span {
  font-weight: 600;
}
h3 {
  font-size: 30px;
  line-height: 40px;
}
h4 {
  font-size: 24px;
  line-height: 34px;
}
h5 {
  font-size: 18px;
  line-height: 24px;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #151644;
  transition: all 0.3s ease-in-out;
}
a:hover {
  text-decoration: none;
  outline: none;
  color: #000;
}
p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #000;
}
img {
  max-width: 100%;
  height: auto;
}
.tbl {
  display: table;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  text-align: center;
  position: relative;
  z-index: 9;
}
.tbl-cell {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}
.img-responsive {
  max-width: 100%;
  display: block;
  height: auto;
  margin: 0 auto;
}
.paddingtop {
  padding: 100px 0px;
}
.inline__block {
  float: left;
  width: 100%;
  vertical-align: top;
  position: relative;
}
.gfield_label {
  display: none !important;
}
.gfield.show-title .gfield_label {
  display: block !important;
}
.gform_wrapper .ginput_container input,
.gform_wrapper .ginput_container textarea,
.gform_wrapper .ginput_container select {
  background: #ffffff;
  border: none !important;
  outline: none;
  padding: 15px 15px 12px 15px !important;
  margin-bottom: 0px;
  height: 53px;
  outline: none;
  font-size: 16px !important;
  line-height: 26px;
  color: rgba(47, 45, 45, 0.7);
  border-radius: 8px;
}
.gform_wrapper .ginput_container textarea {
  height: 135px;
  margin-top: 0px;
}
.gform_wrapper input[type='submit'] {
  background: #ee4c29;
  text-align: center;
  color: #fff;
  border: 1px solid #ee4c29;
  padding: 15px 54px 12px 54px !important;
  display: inline-block;
  transition: 0.5s ease-in-out all;
  -webkit-transition: 0.5s ease-in-out all;
  -ms-transition: 0.5s ease-in-out all;
  -moz-transition: 0.5s ease-in-out all;
  -o-transition: 0.5s ease-in-out all;
  width: calc(100% - 15px) !important;
  border-radius: 8px;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.gform_wrapper input[type='submit']:hover {
  border: 1px solid #1d1854;
  background-color: #1d1854;
  color: #ffffff;
  outline: 0;
}
.gform_wrapper .validation_error {
  display: none;
}
.gform_wrapper .validation_message {
  display: inline-block;
  width: 100%;
  text-align: left;
  margin-top: 0px;
  color: #f00;
}
.gform_wrapper li.gfield.gfield_error,
.gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
  background: none !important;
  border: none !important;
}

.ie8 * {
  outline: none;
}
img {
  border: none;
}
body {
  color: #000;
  font-size: 16px;
  line-height: 26px;
  overflow-x: hidden;
  position: relative;
  background: #fff;
  font-weight: 400;
  font-family: 'jaf-facitweb', sans-serif;
}
html,
body {
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  font-family: 'jaf-facitweb', sans-serif;
}

/*form*/
.gform_validation_errors {
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}
.gfield_validation_message {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  color: #c02b0a !important;
}
.gform_validation_errors h2 {
  color: #c02b0a !important;
}
.gfield_error input {
  border-color: #c02b0a !important;
}
search .search-no-results .search form {
  display: flex;
  align-items: center;
  width: 80%;
  margin: 0 auto;
}
.search-no-results .search input {
  margin-bottom: 0;
  border: 1px solid #000 !important;
  border-radius: 0 !important;
  height: 50px;
  transition: all 0.5s ease-in-out;
  padding: 0.6rem 1rem;
  width: 100%;
}
.search-no-results .search input#searchsubmit {
  width: 160px;
  height: 50px;
  background-color: #000;
  border: 0 none;
  color: #ffffff;
  border-radius: 0 !important;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
}

/*pagination*/
.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.pagination .page-numbers {
  font-size: 20px;
  border: 1px solid #8c6b9a;
  color: #8c6b9a;
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 5px;
  border-radius: 5px;
  font-weight: 600;
}
.pagination .next.page-numbers {
  min-width: 80px;
}
.pagination .page-numbers:hover {
  background: #8c6b9a;
  color: #fff;
}
.pagination span.page-numbers.current {
  background: #8c6b9a;
  color: #fff;
}
.pagination .page-numbers:hover img {
  filter: brightness(4.5);
}
a.prev.page-numbers {
  transform: rotate(180deg);
}
.pagination .page-numbers img {
  width: 20px;
}

/*article.search-entry*/
article.search-entry {
  display: block;
  background: #fff;
  -webkit-box-shadow: 0px 0px 9px rgba(15, 27, 74, 0.15);
  box-shadow: 0px 0px 9px rgba(15, 27, 74, 0.15);
  border-radius: 8px;
  margin: 10px;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: calc(33.33% - 20px);
}
article.search-entry h2 {
  font-size: 20px;
}
article.search-entry a {
  background-color: #fff;
  margin-bottom: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 22px;
  padding: 20px 30px;
  display: block;
  height: 100%;
}
article.search-entry a:hover {
  background-color: #552d87;
}
article.search-entry a:hover .entry-title {
  color: #fff;
}
.search-entry-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; /* justify-content: space-between; */
  margin: 40px -20px;
}
.default-layout h1,
.default-page h1 {
  text-align: center;
}

/*----- html5 tags ------*/
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
  display: block;
}

/*----- Wrapper Part ------*/
#wrapper {
  width: 100%;
  height: auto;
}
.container {
  max-width: 1320px;
  height: auto;
  display: block;
  margin: 0 auto;
  clear: both;
  box-sizing: border-box;
  width: 100%;
  padding: 0 20px;
}
.sub-container {
  max-width: 1180px;
  height: auto;
  display: block;
  margin: 0 auto;
  clear: both;
  box-sizing: border-box;
  width: 100%;
  padding: 0 20px;
}
section {
  position: relative;
}

.wp-block-group .wp-block-group__inner-container {
  max-width: 1320px;
  height: auto;
  display: block;
  margin: 0 auto;
  clear: both;
  box-sizing: border-box;
  width: 100%;
  padding: 0 20px;
}

/*----- Wrapper Part ------*/
.primary_btn {
  transition: all 0.3s ease-in-out;
  background: #fdb515;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  padding: 16px 22px;
  position: relative;
  z-index: 0;
  display: flex;
  text-transform: uppercase;
  border-radius: 29px;
  align-items: center;
  justify-content: center;
  max-width: max-content;
}
.primary_btn:hover {
  background-color: #8c6b9a;
  color: #fff;
}
.primary_btn img {
  margin-left: 4px;
}
.hamburger {
  background-color: #95978e;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hamburger .line {
  width: 24px;
  height: 3px;
  background-color: #ecf0f1;
  display: block;
  margin: 2px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 15px;
}

.hamburger:hover {
  cursor: pointer;
}

/* ONE */

.is-active #hamburger-1 .line:nth-child(2) {
  opacity: 0;
}

.is-active #hamburger-1 .line:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
  -ms-transform: translateY(7px) rotate(45deg);
  -o-transform: translateY(7px) rotate(45deg);
  transform: translateY(7px) rotate(45deg);
}

.is-active #hamburger-1 .line:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
  -ms-transform: translateY(-7px) rotate(-45deg);
  -o-transform: translateY(-7px) rotate(-45deg);
  transform: translateY(-7px) rotate(-45deg);
}

header .header_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0px;
}

header .header_wrapper .header_btn a {
  display: flex;
  align-items: center;
}

header .header_wrapper .header_btn img {
  margin-right: 7px;
}
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 200;
  padding: 20px 0px;
  content-visibility: visible !important;
}
.humburger_main {
  z-index: 20;
  width: 25%;
}
header .header_btn {
  width: 25%;
  display: flex;
  justify-content: flex-end;
}

header .site_logo {
  width: 50%;
}
header .site_logo a img {
  transition: all 0.3s linear;
  max-width: 212px;
}
header.fixed-header .site_logo a img {
  max-width: 120px;
}
header.fixed-header .hamburger {
  background-color: #fdb515;
}
header .site_logo a {
  display: block;
  text-align: center;
}
header {
  transition: all 0.3s linear;
}
header.fixed-header {
  padding: 20px 0px;
  background-color: rgb(85 45 135);
  /*    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;*/
  -webkit-box-shadow: 0px 20px 26px -3px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 0px 20px 26px -3px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 20px 26px -3px rgba(0, 0, 0, 0.18);
}
header.single-page-head.fixed-header {
  background-color: #e4ece6;
}
.banner_section {
  position: relative;
  overflow: hidden;
}
.banner_section:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 30%);
  top: 0;
  left: 0;
}
.banner_section:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: hsl(0deg 0% 0%);
  top: -98%;
  left: 0;
  filter: blur(94px);
}
.banner_section .full_image img {
  width: 100%;
  height: 847px;
  object-fit: cover;
  display: block;
}
.banner_section .banner_content h1 {
  color: #fff;
  font-weight: 300;
}

.banner_section video.custom_video {
  width: 100%;
  display: block;
  height: 847px;
  object-fit: cover;
}
.banner_section .banner_content h1 span {
  font-weight: 600;
}

.banner_section .banner_content p {
  font-size: 24px;
  line-height: 32px;
  max-width: 403px;
  margin: auto;
  color: #fff;
  margin-bottom: 20px;
}
.banner_section .banner_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
  width: 100%;
}
.banner_section .banner_content .buttons {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  gap: 20px;
}
.banner_section .banner_content .buttons .primary_btn.transparent_btn {
  margin: initial;
}
.banner_section .banner_content .buttons .primary_btn {
  min-width: 190px;
}
.four_column_icon .item img {
  height: 39px;
  margin-bottom: 20px;
}
.four_column_icon {
  padding: 50px 0px 45px;
  background-color: #f4f4f4;
}
.four_column_icon .item {
  width: 25%;
  text-align: center;
}
.four_column_icon .item h4 {
  max-width: 160px;
  margin: auto;
}
.image_content_section {
  padding: 100px 0px;
}
.image_content_section.equal_column .img_block {
  width: 50%;
}
.image_content_section.equal_column .content_block {
  width: 50%;
}
.image_content_section .content_block {
  width: 40%;
}
.image_content_section .content_block h2 {
  font-weight: 400;
  margin-bottom: 37px;
}
.image_content_section .img_block {
  width: 60%;
}
.image_content_section .img_block img {
  width: 100%;
  /* height: 464px;
  object-fit: cover; */
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}
.image_content_section .img_block p {
  font-size: 13px;
  color: #838383;
}
.image_content_section .two_column:nth-child(odd) .wrapper,
.image_content_section.rev_image_content_section .two_column:nth-child(even) .wrapper {
  flex-direction: row;
  gap: 60px;
}
.image_content_section .two_column:nth-child(even) .wrapper,
.image_content_section.rev_image_content_section .two_column:nth-child(odd) .wrapper {
  flex-direction: row-reverse;
  gap: 60px;
}





/* 26-08-2025 Start */
.single_posts.post-style-2 .single_banner_contnet {
    max-width: 1040px;
    padding: 0 20px;
}
.single_posts.post-style-2 .image_content_section .img_block {
      max-height: 500px;
      width: 70%;
}
.single_posts.post-style-2 .image_content_section .img_block img {
  max-height: 500px;
}
.single_posts.post-style-2 .image_content_section .content_block {
  width: 100%;
  order: 9;
}
.single_posts.post-style-2 .image_content_section .wrapper {flex-wrap: wrap;flex-direction: column-reverse!important;max-width: 1040px;margin: auto;gap: 20px!important;}

.single_posts.post-style-2 .image_content_section .two_column .wrapper {
    margin-bottom: 20px;
}
.single_posts.post-style-2 .category_item span {
    border: 1px solid #fdb515;
    border-radius: 100px;
    padding: 3px 16px;
    display: inline-block;
    min-width: 100px;
    line-height: 20px;
    text-align: center;
}
.single_posts.post-style-2 .author .author_info p {
    font-weight: 600;
    margin-bottom: 20px;
}
/* .single_posts.post-style-2 .singlebanner_left {
  margin: auto;
    padding-right: 0px;
    max-height: 500px;
    width: 70%;
} */
.single_posts.post-style-2 .singlebanner_left img {
  max-height: 500px;
}
.single_posts.post-style-2 .category_item {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
/* .single_posts.post-style-2 .singlebanner_right .content h1{
      margin-bottom: 15px;
} */
.single_posts.post-style-2 .single_banner .single_intro .soc_client {
    padding-bottom: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
}
.single_posts.post-style-2 .single_banner .single_intro .soc_client .soc_client_ico {

    display: flex;
    gap: 10px;
}
.single_posts.post-style-2 .single_banner .single_intro .soc_client .soc_client_ico a {
    width: 35px;
    height: 35px;
}
.single_posts.post-style-2 .singlebanner_right .content {
    width: 100%;
}
/* .single_posts.post-style-2 .single_banner_contnet {
    padding: 0;
} */
/* .single_posts.post-style-2 .single_banner {
    padding-bottom: 100px;
    background-color: #e4ece6;
} */
.single_posts.post-style-2 .single_banner_contnet .image_content_section .title {
    margin-bottom: 40px;
}
/* .single_posts.post-style-2 .singlebanner_right {
    width: 100%;
    padding-left: 0px;
    margin-top: 30px;
} */

.single_posts.post-style-2 .single_intro {
    max-width: 1040px;
    margin: auto;
}
.single_posts.post-style-2 .single_intro .category_item {
    padding-bottom: 20px;
}
.single_posts.post-style-2 .singlebanner_right .author_info {
  padding-left: 0px;
}
/* .single_posts.post-style-2 .social_client_list {
  margin-bottom: 0px;
  background-position: center;
  padding-top: 100px;
  margin-top: 0px;
} */
@media (max-width:767px) {
    /* .single_posts.post-style-2 .single_banner {
        padding-bottom: 50px;
    } */
    .single_posts.post-style-2 .singlebanner_left img,.single_posts.post-style-2 .singlebanner_left {
        width: 100%;
        height: auto;
      }
    .single_posts.post-style-2 .single_banner_contnet .image_content_section .content_block {
        width: 100%;
    }
    .single_posts.post-style-2 .single_banner_contnet .image_content_section .img_block {
        width: 100%;
    }
    .single_posts.post-style-2 .single_banner_contnet .container {
        padding: 0px 20px;
    }
    .single_posts.post-style-2 .single_banner_contnet .image_content_section .two_column:nth-child(odd) .wrapper, .single_posts.post-style-2 .single_banner_contnet .image_content_section.rev_image_content_section .two_column:nth-child(even) .wrapper {
        gap:0;
    }
}

/* 26-08-2025 End */







@media screen and (min-width: 767px) {
  .image_content_section .two_column .wrapper {
    flex-wrap: nowrap;
  }
}
.image_content_section .two_column .wrapper {
  margin-bottom: 100px;
}

.image_content_section .two_column:last-child .wrapper {
  margin-bottom: 0px;
}

.four_column_icon.content_style {
  background-color: transparent;
  padding: 40px 0px 163px;
}
.four_column_icon .flex {
  margin: 0px -30px;
  align-items: flex-start;
}
.four_column_icon .item {
  padding: 0px 30px;
}
.four_column_icon.content_style .item h4 {
  max-width: 100%;
}
.four_column_icon.content_style .item img {
  margin-bottom: 53px;
}
.four_column_icon .item p {
  margin-top: 17px;
}

.holiday_slider {
  background-color: #f4f4f4;
  padding: 110px 0px 126px;
  overflow: hidden;
}
.holiday_slider .title {
  max-width: 405px;
  margin: auto;
  text-align: center;
}
.holiday_slider .title h2 {
  margin-bottom: 0px;
}
.holiday_slider .title p {
  margin-top: 10px;
}
.holiday_slider .slider {
  width: calc(1320px + ((100% - 1320px) / 2));
  margin-left: auto;
  padding-left: 20px;
}
.holiday_slider .slider {
  margin-top: 74px;
}

.holiday_slider .slider .item a {
  border-radius: 16px;
  overflow: hidden;
  display: block;
  position: relative;
}
.holiday_slider .slider .item a:hover .content p {
  color: #fdb515;
}
.holiday_slider .slider .item a img {
  height: 605px;
  object-fit: cover;
}

.holiday_slider .slider .item a .content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
}

.holiday_slider .slider .item a:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 40%);
  top: 0;
  left: 0;
}
.holiday_slider .slider .item a .content h2 {
  color: #fff;
  margin-bottom: 24px;
}
.holiday_slider .slider .item a .content p {
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.holiday_slider .slider .item a .content span {
  color: #fdb515;
}

.our_process {
  background-color: #552d87;
  padding: 91px 0px 123px;
}

.our_process .title {
  text-align: center;
  margin-bottom: 50px;
}

.our_process .title h2 {
  color: #fff;
}
.our_process .wrapper.flex p {
  color: #fff;
  max-width: 537px;
}

.our_process .wrapper.flex {
  max-width: 812px;
  margin: auto;
}

.our_process .img_block {
  max-width: 812px;
  margin: auto;
  margin-top: 30px;
}

.our_process .img_block.mobile_image {
  display: none;
}

.cta_section .cta_section.cta_inner {
  min-height: 557px;
  border-radius: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 30px;
}

.cta_section {
  padding: 50px 0px;
}

.cta_section .cta_inner .wrapper {
  max-width: 816px;
  margin-left: auto;
  margin-right: auto;
  padding: 35px 77px;
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.cta_section .cta_left {
  width: 55%;
  z-index: 1;
  position: relative;
}

.cta_section .cta_right {
  width: 45%;
  text-align: right;
  z-index: 1;
}
.cta_section .cta_right a {
  margin-left: auto;
}
.cta_section .cta_inner .wrapper:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgb(0 0 0 / 40%);
}

.cta_section .cta_left h2 {
  color: #fff;
  margin-bottom: 0px;
}

.cta_section .cta_left p {
  color: #fff;
  margin-top: 12px;
}
.cta_section .cta_inner {
  min-height: 557px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 30px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
}

.contact_section {
  margin-bottom: 64px;
}
.contact_section .wrapper.flex {
  background-color: #552d87;
  border-radius: 16px;
  overflow: hidden;
  padding: 77px 73px 63px;
  position: relative;
  background-image: url('../images/logo-icon.svg');
  background-repeat: no-repeat;
  background-position: 97% 6%;
}
.contact_section .wrapper.flex:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 100%;
  background-image: url('../images/contact-line.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  top: 0px;
  left: 42%;
  filter: brightness(34.5);
}

.contact_section .contact_left {
  width: 40%;
}
.contact_section .contact_right h2 {
  color: #ffff;
  font-size: 26px;
  line-height: 46px;
  font-weight: 600;
  margin-bottom: 15px;
}
.contact_section .contact_right .gform_wrapper .ginput_container input, .contact_section .contact_right .gform_wrapper .ginput_container textarea {
  background-color: rgb(255 255 255 / 25%) !important;
  border-radius: 40px !important;
  font-size: 14px;
  line-height: 26px;
  color: #fff;
  padding: 16px 22px !important;
  border: 0 !important;
  resize: none;
}
.contact_section .contact_right .gform_wrapper .ginput_container textarea {
border-radius: 22px !important;
}
.contact_section .contact_right .gform_confirmation_message_3 {
  color: #fff;
}
.contact_section .contact_right .ginput_container input::placeholder {
  color: rgb(255 255 255 / 50%);
  font-size: 14px;
  line-height: 26px;
}
.contact_section .contact_right .gchoice input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
  display: none;
}

.contact_section .contact_right .gchoice label {
  position: relative;
  cursor: pointer;
}
.contact_section .contact_right .gchoice label a {
  color: #fff;
  text-decoration: underline;
}
.contact_section .contact_right .gchoice label a:hover {
  color: #fdb515;
}
.contact_section .contact_right .gchoice label:before {
  content: '';
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 6px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 7px;
  border-radius: 2px;
}

.contact_section .contact_right .gchoice input:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  top: 9px;
  left: 20px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
}

.contact_section .contact_right .ginput_container.ginput_container_select select {
  background-color: rgb(255 255 255 / 25%) !important;
  border-radius: 40px !important;
  font-size: 14px !important;
  line-height: 21px;
  padding: 16px 22px !important;
  color: rgb(255 255 255 / 50%);
  background-image: url('../images/select-arrow.svg');
  background-repeat: no-repeat;
  background-position: 94% 25px;
}
.contact_section .contact_right .gchoice.gchoice_3_5_1 {
  display: flex;
  align-items: center;
}
.contact_section .contact_right .gchoice.gchoice_3_5_1 {
  display: flex;
  align-items: center;
}
.contact_section .contact_right .gform_footer input:hover {
  background-color: #fff;
  color: #000;
  background-image: url('../images/black-plane-icon.svg');
}
.contact_section .contact_right h2.gform_submission_error.hide_summary {
  padding-left: 47px !important;
  text-align: left;
}
.contact_section .contact_right .gform_wrapper.gravity-theme .gfield_validation_message,
.contact_section .contact_right .gform_wrapper.gravity-theme .validation_message {
  font-size: 11px;
  margin: 0px !important;
  padding-left: 21px !important;
}
.contact_section .contact_right .gform_footer input {
  background-color: #fdb515;
  border: none !important;
  border-radius: 56px;
  font-size: 14px;
  line-height: 16px !important;
  font-weight: 600;
  height: 48px;
  margin-bottom: 0px !important;
  background-image: url('../images/plane-icon.svg');
  background-repeat: no-repeat;
  background-position: 60%;
}
.contact_section .contact_right .gchoice.gchoice_3_5_1 input {
  width: 16px;
  height: 16px;
  border: 1px solid #fff;
  background-color: transparent !important;
}

.contact_section .contact_right label.gform-field-label {
  color: #fff !important;
  font-size: 14px;
  line-height: 26px;
  margin-bottom: 0px;
  padding-left: 14px;
  display: block !important;
  font-weight: 400;
}
.contact_section .contact_right .ginput_container.ginput_container_select select option {
  color: #000;
}
.contact_section .contact_right label.gform-field-label span.gfield_required {
  display: none;
}
.contact_section .contact_right {
  width: 60%;
  padding-left: 144px;
}

.contact_section .contact_title h2 {
  color: #fff;
}

.contact_section .contact_title span {
  display: block;
}

.contact_section .contact_detail {
  margin-top: 30px;
}

.contact_section .contact_detail ul li {
  background-color: #664293;
  border-radius: 16px;
  padding: 20px 28px;
  display: flex;
  align-items: flex-start;
  max-width: 328px;
  margin-bottom: 24px;
  background-image: none;
}

.contact_section .icon {
  width: 18px;
  margin-top: 4px;
  max-width: 328px;
}

.contact_section .content {
  width: calc(100% - 18px);
  padding-left: 15px;
}

.contact_section .content h4 {
  font-size: 24px;
  line-height: 34px;
  color: #fff;
  margin: 0px 0px 4px 0px;
}
.contact_section .content address {
  color: #fff;
  font-style: normal;
}
.contact_section .content a {
  color: #fff;
}
.contact_section .content a:hover {
  color: #fdb515;
}

footer {
  background-color: #e4ece6;
  padding-top: 107px;
}
.site_footer .wrapper.flex {
  align-items: flex-start;
  margin: 0px -10px;
  padding-bottom: 42px;
  border-bottom: 1px solid #000;
}

.site_footer .wrapper.flex .site_logo {
  width: 15%;
  padding: 0px 10px;
}

.site_footer .wrapper.flex .site_menu {
  width: 15%;
  padding: 0px 10px;
}

.site_footer .wrapper.flex .subscribe_form {
  width: 50%;
  padding: 0px 10px;
}

.site_footer .wrapper.flex .social_icon {
  width: 20%;
  padding: 0px 10px;
}

.site_footer .wrapper.flex .site_menu ul li {
  padding: 0px;
  background-image: none;
}

.site_footer .wrapper.flex .site_menu ul li a {
  color: rgba(0, 0, 0, 0.4);
  font-size: 18px;
}
.site_footer .wrapper.flex .site_menu ul li a:hover {
  color: #fdb515;
}
.site_footer .wrapper.flex .site_menu h4 {
  font-size: 24px;
  line-height: 21px;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 30px;
}

.site_footer .wrapper.flex .social_icon h4 {
  font-size: 24px;
  line-height: 21px;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 30px;
}

.site_footer .wrapper.flex .social_icon ul {
  display: flex;
}

.site_footer .wrapper.flex .social_icon ul li a {
  width: 58px;
  height: 58px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.site_footer .wrapper.flex .social_icon ul li {
  padding: 0px;
  margin-right: 8px;
  background-image: none;
}

.site_footer .bottom_footer.flex p {
  margin: 0px;
  color: rgb(0 0 0 / 50%);
}
.site_footer .bottom_footer.flex p a {
  color: rgb(0 0 0 / 50%);
}
.site_footer .bottom_footer.flex {
  padding-top: 31px;
  padding-bottom: 45px;
}
.site_footer .bottom_footer.flex p a:hover {
  color: #fdb515;
}
.site_footer .wrapper.flex .social_icon ul li a:hover {
  background-color: #fdb515;
}
.site_footer .wrapper.flex .social_icon ul li a:hover img {
  filter: brightness(38);
}
.site_footer .wrapper.flex .social_icon ul li a img {
  transition: all 0.3s ease-in-out;
}
.banner_section.inner_banner .full_image img {
  height: 457px;
}
.banner_section.inner_banner .banner_content {
  top: 62%;
}

.flexible_image_contnet {
  padding: 100px 0px;
}

.flexible_image_contnet .left_content {
  width: 50%;
}

.flexible_image_contnet .right_content {
  width: 50%;
}

.flexible_image_contnet .right_content .img_block img {
  height: 822px;
  object-fit: cover;
  width: 100%;
  border-radius: 16px;
}

.flexible_image_contnet .content {
  max-width: 409px;
  margin-top: 54px;
}

.flexible_image_contnet .right_content .img_block {
  max-width: 548px;
  margin-left: auto;
}

.flexible_image_contnet .right_content .overlap_img {
  max-width: 650px;
  position: absolute;
  bottom: 23px;
  left: 50%;
  transform: translate(-50%, 0px);
}

.flexible_image_contnet .right_content .overlap_img img {
  height: 373px;
  border-radius: 16px;
  width: 100%;
  object-fit: cover;
}

.flexible_image_contnet .wrapper.flex {
  align-items: flex-start;
}

.counter_section {
  padding: 50px 0px;
}

.counter-row {
  display: flex;
  justify-content: center;
}
.counter-box {
  padding: 0px 30px;
  width: 33.33%;
  text-align: center;
}

.counter-box span {
  font-size: 74px;
  line-height: 30px;
  font-weight: 700;
  color: #552d87;
}
.counter {
  font-size: 74px;
  line-height: 30px;
  font-weight: 700;
  color: #552d87;
}
.counter-box .contnet {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  max-width: 168px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  text-align: center;
}

.counter_section .btn_block {
  text-align: center;
  margin-top: 67px;
}
.counter_section .btn_block .primary_btn {
  margin: auto;
}
.offer_section {
  padding: 70px 0px;
}

.offer_section .offer_list ul {
  column-count: 4;
}

.offer_section .offer_list ul li {
  width: 100%;
  font-size: 18px;
  line-height: 24px;
  padding-right: 33px;
  color: #552d87;
  margin-bottom: 27px;
  background-image: url('../images/offer-list-vector.svg');
}
.offer_section .title {
  text-align: center;
  margin-bottom: 60px;
}

.gallery_slider .item img {
  height: 608px;
  object-fit: cover;
  width: 100%;
  border-radius: 16px;
}
.gallery_slider {
  padding: 60px 0px;
}
.gallery_slider .owl-item {
  opacity: 0.3;
}
.gallery_slider .owl-item.active.center {
  opacity: 1;
}
.gallery_slider .owl-nav button {
  width: 61px;
  height: 61px;
  background-color: rgb(85 45 135 / 30%) !important;
  border-radius: 50%;
  background-image: url('../../assets/images/slider-arrow.svg') !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  transition: all 0.3s ease-in-out;
}
.gallery_slider .owl-nav button:hover {
  background-color: #fdb515 !important;
}
.gallery_slider .owl-nav {
  position: absolute;
  top: 45%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0px 30px;
}
.gallery_slider .owl-nav button.owl-next {
  transform: rotate(180deg);
}
.gallery_slider .owl-nav button span {
  color: transparent;
}

.video__section {
  padding: 85px 0px;
}
.video__section .video_main {
  max-width: 842px;
  margin: auto;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.video__section .video_main video,
.video__section .video_main iframe {
  width: 100%;
  height: 474px;
  object-fit: cover;
  display: block;
}

.video__section .playpause {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video__section .playpause:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: ;
  background-color: rgb(0 0 0 / 20%);
}
.video__section .title {
  max-width: 528px;
  margin: auto;
  text-align: center;
  margin-bottom: 33px;
}
.video__section .playpause img {
  width: 70px;
  cursor: pointer;
  z-index: 1;
  cursor: pointer;
}
.video__section .responsive-embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.video__section .responsive-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cta_trip_section {
  padding: 50px 0px;
}
.cta_trip_inner {
  min-height: 406px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 35px;
  overflow: hidden;
  position: relative;
  filter: drop-shadow(6px 12px 12px rgba(0, 0, 0, 0.21));
  -webkit-mask-image: url(../images/mask-img.png);
  mask-image: url(../images/mask-img.png);
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mask-position: center;
}
.cta_trip_inner:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgb(85 45 135 / 80%);
}

.cta_trip_inner .cta_left > span {
  font-size: 24px;
  line-height: 46px;
  color: #fdb515;
  text-transform: uppercase;
}

.cta_trip_inner .wrapper.flex {
  max-width: 874px;
  width: 100%;
  z-index: 1;
}

.cta_trip_inner .cta_left {
  width: 70%;
}

.cta_trip_inner .cta_right {
  width: 30%;
  text-align: right;
}
.cta_trip_inner .cta_right .primary_btn {
  margin-left: auto;
  max-width: 219px;
}
.cta_trip_inner .cta_left h2 {
  font-size: 58px;
  line-height: 64px;
  color: #fff;
  margin-bottom: 0px;
}
.cta_trip_inner .wrapper.flex {
  align-items: flex-end;
}

.leatest_news_section {
  padding: 100px 0px;
  overflow: hidden;
}
.leatest_news_section .title {
  margin-bottom: 50px;
}
.leatest_news_wrapper {
  width: calc(1320px + ((100% - 1320px) / 2));
  margin-left: auto;
  padding-left: 20px;
}
.leatest_news_wrapper .img_block img {
  height: 462px;
  border-radius: 16px;
  width: 100%;
  object-fit: cover;
}

.leatest_news_wrapper .item a {
  border-radius: 16px;
  overflow: hidden;
  display: block;
  position: relative;
}

.leatest_news_wrapper .item a:hover .content h4 {
  color: #fdb515;
}

.leatest_news_wrapper .category {
  position: absolute;
  top: 32px;
  left: 42px;
}

.leatest_news_wrapper .category ul {
  display: flex;
}

.leatest_news_wrapper .category ul li {
  padding: 0px;
  background-image: none;
}

.leatest_news_wrapper .category ul li span {
  background-color: #552d87;
  color: #fff;
  font-size: 12px;
  line-height: 14px;
  display: inline-block;
  padding: 7px 13px;
  border-radius: 20px;
  text-transform: uppercase;
}

.leatest_news_wrapper .category ul li {
  margin-right: 5px;
}

.leatest_news_wrapper .content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 38px 36px;
  background-color: rgb(143 143 143 / 47%);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(7px);
  width: 100%;
  min-height: 178px;
  display: flex;
  align-items: center;
}

.leatest_news_wrapper .content h4 {
  font-size: 24px;
  line-height: 34px;
  color: #fff;
  font-weight: 400;
  z-index: 1;
  position: relative;
  margin-bottom: 0px;
  transition: all 0.3s ease-in-out;
}

.leatest_news_section .owl-dots li button {
  width: 8px;
  height: 8px;
  display: inline-block;
  background: #3c84d2;
  margin: 0 3px;
  border-radius: 20px;
  transition: opacity 0.5s, background-color 0.5s, width 0.5s;
  transition-delay: 0.5s, 0.5s, 0s;
}

.leatest_news_section .owl-dots button {
  opacity: 1;
  background: #b1ceed;
  width: 16px;
  transition-delay: 0s;
}
.leatest_news_section .owl-dots button {
  width: 8px;
  height: 8px;
  display: inline-block;
  background: #d9d9d9;
  margin: 0 3px;
  border-radius: 20px;
  transition: opacity 0.5s, background-color 0.5s, width 0.5s;
  transition-delay: 0.5s, 0.5s, 0s;
}

.leatest_news_section .owl-dots button.active {
  opacity: 1;
  background: #552d87;
  width: 16px;
  transition-delay: 0s;
}
.leatest_news_section .owl-dots {
  position: absolute;
  top: -88px;
  right: 0;
  padding-right: 7%;
}
.gallery_slider .owl-dots {
  max-width: 469px;
  height: 2px;
  background-color: #d9d9d9;
  margin: auto;
  margin-top: 31px;
  display: flex;
  border-radius: 10px;
}
.gallery_slider .owl-dots button {
  width: 100%;
}
.gallery_slider .owl-dots button.owl-dot.active {
  background-color: #552d87;
  height: 6px;
  border-radius: 20px;
  top: -2.19px;
  position: relative;
}
.our_process_slider {
  padding: 113px 0px 134px;
}
.our_process_slider .intro_content {
  max-width: 565px;
  margin: auto;
  text-align: center;
  margin-bottom: 120px;
}

.our_process_slider .process_slider_left {
  width: 50%;
  position: relative;
}

.our_process_slider .process_slider_right {
  width: 50%;
  padding: 71px 69px 71px 54px;
  background-color: #552d87;
  border-radius: 0px 16px 16px 0px;
  min-height: 416px;
  display: flex;
  align-items: center;
}
.our_process_slider .process_slider_left .digit {
  position: absolute;
  bottom: 35px;
  left: 35px;
  width: calc(100% - 51px);
}
.our_process_slider .process_slider_left .digit span {
  font-size: 60px;
  font-weight: 300;
  color: #fff;
}

.our_process_slider .process_slider_left .digit span:after {
  content: '';
  position: absolute;
  width: calc(100% - 97px);
  height: 2px;
  background-color: #fff;
  bottom: 8px;
  left: 84px;
}
.our_process_slider .process_slider_left .img_block img {
  height: 476px;
  object-fit: cover;
  border-radius: 16px;
}
.our_process_slider .process_slider_right .content h4 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 28px;
  line-height: 46px;
  font-weight: 300;
}
.our_process_slider .process_slider_right .content h4 span {
  font-weight: 600;
}
.our_process_slider .process_slider_right .content p {
  color: #fff;
}
.our_process_slider .owl-dots {
  max-width: 469px;
  height: 2px;
  background-color: #d9d9d9;
  margin: auto;
  margin-top: 41px;
  display: flex;
  border-radius: 10px;
}
.our_process_slider .owl-dots button {
  width: 100%;
}
.our_process_slider .owl-dots button.owl-dot.active {
  background-color: #fdb515;
  height: 6px;
  border-radius: 20px;
  top: -2.19px;
  position: relative;
}
.our_process_slider .owl-nav button {
  width: 61px;
  height: 61px;
  background-color: #b9aecc !important;
  border-radius: 50%;
  background-image: url('../images/slider-arrow.svg') !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}
.our_process_slider .owl-nav {
  position: absolute;
  top: 43%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0px 30px;
  max-width: 51%;
  margin: auto;
  left: 50%;
  transform: translate(-50%, 0px);
}
.our_process_slider .owl-nav button.owl-next {
  transform: rotate(180deg);
}
.our_process_slider .owl-nav button span {
  color: transparent;
}
.our_process_slider .owl-item {
  opacity: 0.2;
}
.our_process_slider .owl-item.center {
  opacity: 1;
}

.trip_banner {
  min-height: 608px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 50px 0px;
}
.trip_banner:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 50%);
  top: 0;
  left: 0;
}
.trip_banner .full_image img {
  width: 100%;
  height: 608px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.trip_banner .trip_banner_content {
  max-width: 514px;
  margin: auto;
  text-align: center;
  z-index: 1;
}
.trip_banner .trip_banner_content h2,
.trip_banner .trip_banner_content p {
  color: #fff;
}
.trip_banner .trip_banner_content h2 {
  margin-bottom: 36px;
}
.trip_banner .trip_banner_content .primary_btn {
  margin: auto;
  margin-top: 38px;
}

.tour_information {
  padding: 85px 0px 55px;
}

.tour_information .title {
  max-width: 665px;
  margin: auto;
  text-align: center;
  margin-bottom: 60px;
}

.tour_information .leatest_news_wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0px -16px;
  width: auto;
  padding-left: 0px;
}

.tour_information .leatest_news_wrapper .item {
  width: 33.33%;
  padding: 0px 16px;
  margin-bottom: 30px;
}

.faq_section .title {
  text-align: center;
  margin-bottom: 80px;
}

.faq_section .btn-wrapper button {
  font-size: 18px;
  line-height: 46px;
  width: 100%;
  text-align: left;
  border: none;
  background-color: transparent;
  color: #000;
  padding: 30px 40px 30px 0px;
  position: relative;
  font-weight: 600;
}
.faq_section .collepsing-div p {
  margin-top: 0px;
}
.faq_section .accordion-wrapper {
  border-top: 1px solid rgb(0 0 0 / 40%);
}
.faq_section .accordion_main {
  max-width: 1068px;
  margin: auto;
}
.faq_section .accordion-wrapper:last-child {
  border-bottom: 1px solid rgb(0 0 0 / 40%);
}
.faq_section .accordion-wrapper.active button:after {
  background-image: url(../images/minus-icon.svg);
}
.faq_section .collepsing-div {
  padding: 0px 38px 47px;
  display: none;
}
.faq_section .collepsing-div a {
  color: #000;
}
.faq_section .collepsing-div a:hover {
  color: #fdb515;
}
.faq_section {
  padding: 85px 0px 100px;
}
.faq_section .btn-wrapper button:after {
  width: 28px;
  height: 28px;
  position: absolute;
  right: 18px;
  content: '';
  border-radius: 50px;
  top: 42px;
  background-image: url(../images/plus-icon.svg);
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-position: center;
}

.price_section {
  padding: 85px 0px;
}

.price_section .title {
  text-align: center;
  margin-bottom: 76px;
}

.price_section .price_column {
  width: 33.33%;
  padding: 0px 16px;
}

.price_section .wrapper.flex {
  margin: 0px -16px;
  align-items: stretch;
}

.price_section .price_column .block {
  background-color: #f0f0f0;
  padding: 22px 19px 32px;
  border-radius: 16px;
  height: 100%;
}

.price_section .price_block {
  background-color: #fff;
  padding: 33px 63px;
  border-radius: 16px;
}

.price_section .price_block p {
  font-size: 20px;
  line-height: 46px;
  text-align: center;
  margin-bottom: 12px;
  margin-top: 0px;
}

.price_section .price_block h2 {
  font-weight: 600;
}

.price_section .price_block h2 span {
  font-size: 16px;
  color: rgb(0 0 0 / 50%);
}

.price_section .plan_information span {
  font-size: 18px;
  line-height: 46px;
}

.price_section .plan_information {
  margin-top: 16px;
}

.price_section .plan_information ul li {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 20px;
  background-image: url('../images/check-mark.svg');
}
.price_section .price_column.popular_plan .plan_information ul li {
  background-image: url('../images/color-check-mark.svg');
}
.price_section .plan_information ul li:last-child {
  margin-bottom: 0px;
}
.price_section .price_column.popular_plan .block {
  border: 3px solid #552d87;
  border-radius: 16px;
  overflow: hidden;
}
.price_section .price_column.popular_plan .price_block {
  margin-top: 21px;
}
.price_section .price_column.popular_plan {
  margin-top: 0px;
}
.price_section .price_column {
  margin-top: 48px;
}
.price_section .most_popular {
  background-color: #552d87;
  color: #fff;
  text-align: center;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -22px -19px 0px -19px;
}

.counter_section .title {
  text-align: center;
  margin-bottom: 76px;
}

.two_column_overlap.image_content_section .content_block {
  width: 35%;
  padding-left: 0px;
}
.two_column_overlap.image_content_section .img_block {
  padding-left: 30px;
  width: 59%;
}
.two_column_overlap.image_content_section .two_column {
  max-width: 1098px;
  margin: auto;
}
.two_column_overlap.image_content_section .two_column:first-child .img_block img {
  height: 423px;
}
.two_column_overlap.image_content_section .two_column:first-child .wrapper {
  align-items: flex-start;
}
.two_column_overlap.image_content_section .two_column:first-child .wrapper .content_block {
  padding-top: 57px;
}
.two_column_overlap.image_content_section .two_column:nth-child(2) .img_block img {
  height: 806px;
}
.two_column_overlap.image_content_section .two_column:nth-child(2) .content_block {
  padding: 0px;
}
.two_column_overlap.image_content_section .two_column:nth-child(2) .content_block .content {
  padding-bottom: 75px;
}
.two_column_overlap.image_content_section .two_column:nth-child(2) .content_block .content:last-child {
  padding-bottom: 0px;
}
.two_column_overlap.image_content_section .two_column:nth-child(2) {
  margin-top: -163px;
}
.two_column_overlap.image_content_section .two_column:nth-child(2) .content_block {
  margin-top: 70px;
}
.image_content_section.two_column_overlap {
  padding: 66px 0px 100px;
}
.image_content_section .title {
  text-align: center;
  margin-bottom: 100px;
}
.three_column_section {
  padding: 100px 0px;
}

.three_column.wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0px -16px;
}

.three_column.wrapper .item {
  width: 33.33%;
  padding: 0px 16px;
  margin-bottom: 32px;
}
.three_column.wrapper .img_block img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  display: block;
}

.three_column.wrapper .item .column_i {
  border-radius: 16px;
  overflow: hidden;
  display: block;
  position: relative;
}
.three_column.wrapper .item .column_i:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgb(0 0 0 / 20%);
}

.three_column.wrapper .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  z-index: 1;
}
.three_column.wrapper .primary_btn.transparent_btn {
  background-color: transparent;
  border: 1px solid #fff;
  min-width: 177px;
  margin: auto;
}

.primary_btn.transparent_btn {
  background-color: transparent;
  border: 1px solid #fff;
  min-width: 177px;
  margin: auto;
}
.primary_btn.transparent_btn:hover {
  background-color: #fdb515 !important;
  border-color: #fdb515 !important;
}
.three_column.wrapper .content h2 {
  margin-bottom: 22px;
  font-size: 28px;
  line-height: 34px;
  text-align: center;
  color: #fff;
}

.team_main_section {
  padding: 113px 0px 0px;
}
.meet_the_author {
  background-color: #e4ece6;
  padding: 80px 0;
  margin-top: 0px;
}

.team_main_section .team_intro {
  max-width: 603px;
  margin: auto;
  text-align: center;
  margin-bottom: 50px;
}

.team_wrapper .wrapper {
  display: flex;
  flex-wrap: wrap;
}

.meet_the_author .team_wrapper .wrapper {
  justify-content: center;
}

.three_column_team .wrapper .column {
  width: 33.33%;
}

.team_wrapper .wrapper .column {
  padding: 0px 17px;
  margin-bottom: 34px;
}

.meet_the_author .team_wrapper .wrapper .column {
  margin-bottom: 0;
}

.team_wrapper .wrapper {
  margin: 0px -17px;
}

.team_wrapper .wrapper .column .team_block {
  max-height: 376px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.team_wrapper .team_block .team_content h2 {
  font-style: normal;
  margin-bottom: 5px;
  font-weight: 300;
  font-size: 38px;
  line-height: 46px;
  text-align: center;
  color: #fdb515;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.team_wrapper .team_block .team_content span {
  font-style: normal;
  margin-bottom: 16px;
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 14px;
  text-align: center;
  color: #ffffff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  text-transform: none;
}

.team_main_section .team_wrapper .team_content {
  position: absolute;
  bottom: 0;
  z-index: 1;
  left: -50%;
  width: 100%;
  text-align: center;
  padding: 0px 10px;
  top: -50%;
  right: 0;
  transform: translate(50%, 50%);
}

.team_wrapper .team_block .team_content span strong {
  display: block;
  margin-top: 10px;
  font-weight: 600;
}

.single_team {
  padding-top: 200px;
}

.team_single_banner .content {
  text-align: center;
}

.team_member_hero h3 {
  font-style: normal;
  font-weight: 400;
  font-size: 38px;
  line-height: 46px;
  margin-bottom: 0;
  text-align: center;
  color: #000000;
  margin-top: 10px;
}

.team_member_hero span {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fdb515;
}

.team_single_banner .member_contact {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.team_single_banner .member_numbers {
  margin-right: 20px;
  display: flex;
  align-items: center;
}

.team_single_banner .member_numbers a {
  display: flex;
  align-items: center;
}

.team_single_banner a:hover {
  color: #fdb515;
}
.team_single_banner .member_numbers img {
  margin-right: 7px;
}

.team_single_banner .member_numbers.two_number_show .mobile_number_wrap a:last-child::before {
  content: '';
  height: 12px;
  width: 1.7px;
  background-color: #000;
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0 10px;
}
.team_single_banner .mobile_number_wrap {
  display: flex;
}
.team_member_desc p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  color: #000000;
  margin-bottom: 35px;
}

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

.team_member_desc {
  max-width: 673px;
  margin: 35px auto 0 auto;
}

.member_mail a {
  text-decoration: underline;
}
.team_single_banner a {
  color: #000;
}
.team_single_banner .team_back_btn img {
  height: 12px;
  width: 12px;
  margin-right: 6px;
}

.team_single_banner .member_mail img {
  margin-right: 7px;
}
.team_single_banner .content .member_image {
  height: 292px;
  overflow: hidden;
  border-radius: 100%;
  margin: 0 auto 37px;
  width: 292px;
}
.team_single_banner .content .member_image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.team_wrapper .wrapper .column .team_block:hover .img_block img {
  transform: scale(1.1);
}
.team_wrapper .team_content {
  position: absolute;
  bottom: 58px;
  z-index: 1;
  left: 0%;
  width: 100%;
  text-align: center;
  padding: 0px 10px;
}

.team_wrapper .team_content h2 {
  color: #fff;
  margin-bottom: 17px;
}
.team_wrapper .wrapper .column .team_block img {
  height: 376px;
  width: 100%;
  display: block;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.twocolumn_contact_info .wrapper.flex .column .content h2 {
  font-size: 24px;
  font-weight: 600;
}
.team_wrapper .team_content span {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fdb515;
}
.team_wrapper .wrapper .column .team_block:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 30%);
  top: 0;
  left: 0;
}
.four_column_team.team_wrapper .wrapper .column {
  width: 25%;
}
.team_wrapper {
  margin-bottom: 64px;
}
.four_column_team.team_wrapper .wrapper .column .team_block img {
  height: 396px;
}
.four_column_team.team_wrapper .wrapper {
  margin: 0px -12px;
}
.four_column_team.team_wrapper .wrapper .column {
  padding: 0px 12px;
  margin-bottom: 24px;
}
.four_column_team.team_wrapper .wrapper .column h2 {
  font-size: 28px;
  line-height: 46px;
  margin-bottom: 4px;
}
.four_column_team.team_wrapper .team_content span {
  font-size: 16px;
}
.four_column_team.team_wrapper .team_content {
  bottom: 39px;
}
.team_wrapper:last-child {
  margin-bottom: 0px;
}
.pt-0 {
  padding-top: 0px !important;
}
.p-0 {
  padding: 0px !important;
}
.pb-0 {
  padding-bottom: 0px !important;
}

.paragraph_section {
  padding: 100px 0px;
}

.paragraph_section .content {
  max-width: 600px;
}

.logo-slider {
  padding: 70px 0px;
}
.logo-slider .item img {
  height: 122px;
  width: 100%;
  object-fit: contain;
  object-position: center;
}
.logo-slider .title {
  margin-bottom: 60px;
  text-align: center;
}

.twocolumn_contact_info {
  padding: 100px 0px;
}

.twocolumn_contact_info .title {
  text-align: center;
  max-width: 400px;
  margin: auto;
  margin-bottom: 80px;
}

.twocolumn_contact_info .wrapper.flex .column {
  width: 50%;
}

.twocolumn_contact_info .wrapper.flex .column .content {
  max-width: 400px;
}
.twocolumn_contact_info .wrapper.flex {
  align-items: flex-start;
}
.twocolumn_contact_info .wrapper.flex .column .content ul li span {
  display: block;
  font-size: 24px;
  line-height: 46px;
  font-weight: 600;
}

.twocolumn_contact_info .wrapper.flex .column .content ul li {
  padding: 0px;
  background-image: none;
  margin-bottom: 38px;
}

.twocolumn_contact_info .wrapper.flex .column .content ul li a {
  font-size: 24px;
  line-height: 46px;
  color: #999999;
}
.twocolumn_contact_info .wrapper.flex .column .content ul li a:hover {
  color: #fdb515;
}

.support_three_column {
  padding: 100px 0px;
}

.support_three_column .title {
  text-align: center;
  margin-bottom: 30px;
}
.support_three_column .wrapper.flex .col-i img {
  height: 278px;
  width: 100%;
  object-fit: cover;
  display: block;
}
.support_three_column .wrapper.flex .col-i {
  width: 33.33%;
  padding: 0px 30px;
}
.support_three_column .wrapper.flex .content {
  margin-top: 20px;
}
.support_three_column .wrapper.flex {
  margin: 0px -30px;
}

.tour_information.blog_listing {
  padding-top: 49px;
  padding-bottom: 100px;
}

.single_banner {
  padding-top: 245px;
}

.singlebanner_left {
  width: 50%;
  padding-right: 60px;
}

.singlebanner_right {
  width: 50%;
  padding-left: 60px;
}
.singlebanner_right .content h1 {
  font-size: 38px;
  line-height: 44px;
  font-weight: 400;
  margin-bottom: 30px;
}
.singlebanner_right .content p {
  color: rgb(0 0 0 / 50%);
}
.singlebanner_left img {
  height: 734px;
  object-fit: cover;
  width: 100%;
  border-radius: 16px;
  display: block;
}

/* .singlebanner_right .author {
  margin-top: 55px;
  display: flex;
  align-items: center;
} */

.singlebanner_right .author img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.singlebanner_right .author_info p {
  font-size: 14px;
  line-height: 20px;
  margin: 0px;
  font-weight: 600;
}

.singlebanner_right .author_info span {
  font-size: 12px;
  line-height: 26px;
  color: rgb(0 0 0 / 40%);
}

.singlebanner_right .author_info {
  padding-left: 15px;
  width: calc(100% - 46px);
}

.getin_touch {
  padding: 100px 0px 89px;
}
.getin_touch .wrapper.flex .col:nth-child(2) .content,
.getin_touch .wrapper.flex .col:nth-child(3) .content {
  padding-left: 33px;
}
.getin_touch .intro_content {
  max-width: 535px;
}

.getin_touch .intro_content h3 {
  margin-bottom: 22px;
  font-weight: 400;
}

.getin_touch .wrapper.flex {
  align-items: flex-start;
  margin-top: 84px;
  /*    max-width: 960px;*/
  margin-left: auto;
  margin-right: auto;
}

.getin_touch .wrapper.flex .col h4 {
  font-size: 24px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 26px;
}
.getin_touch .wrapper.flex .col h4 img {
  margin-right: 10px;
}
.getin_touch .wrapper.flex .col a:hover {
  color: #fdb515;
}
.getin_touch .wrapper.flex .col a {
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
  width: 100%;
  max-width: 220px;
  margin-top: 20px;
}

.getin_touch .wrapper.flex .col p a {
  color: rgb(0 0 0 / 50%);
}

.getin_touch .wrapper.flex .col p {
  margin: 0px;
  color: rgb(0 0 0 / 40%);
  font-size: 14px;
  line-height: 21px;
}
.getin_touch .wrapper.flex .col {
  /*    width: 33.33%;*/
  width: 25%;
}

.getin_touch .wrapper.flex .col .content {
  padding-left: 33px;
}
.getin_touch .wrapper.flex .col ul li {
  padding: 0px;
  background-image: none;
  font-size: 14px;
  line-height: 14px;
  margin-bottom: 10px;
  color: rgb(0 0 0 / 60%);
}
.getin_touch .wrapper.flex .col {
  padding: 0px 30px;
}

.contact_map {
  padding: 100px 0px 136px;
}
.contact_map .intro_content {
  max-width: 535px;
  margin-bottom: 77px;
}
.contact_map .intro_content h3 {
  font-weight: 400;
}
.contact_map .iframe_content iframe {
  height: 480px;
  border-radius: 16px;
  max-width: 100%;
  margin: auto;
  width: 100%;
}
.contact_map .iframe_content .shop_address {
  text-align: left;
  margin-top: 28px;
}
.contact_map .iframe_content {
  text-align: center;
  max-width: 90%;
  margin: auto;
}

.holiday_slider .owl-dots li button {
  width: 8px;
  height: 8px;
  display: inline-block;
  background: #3c84d2;
  margin: 0 3px;
  border-radius: 20px;
  transition: opacity 0.5s, background-color 0.5s, width 0.5s;
  transition-delay: 0.5s, 0.5s, 0s;
}

.holiday_slider .owl-dots button {
  opacity: 1;
  background: #b1ceed;
  width: 16px;
  transition-delay: 0s;
}
.holiday_slider .owl-dots button {
  width: 8px;
  height: 8px;
  display: inline-block;
  background: #d9d9d9;
  margin: 0 3px;
  border-radius: 20px;
  transition: opacity 0.5s, background-color 0.5s, width 0.5s;
  transition-delay: 0.5s, 0.5s, 0s;
}

.holiday_slider .owl-dots button.active {
  opacity: 1;
  background: #552d87;
  width: 16px;
  transition-delay: 0s;
}
.holiday_slider .owl-dots {
  position: absolute;
  top: -88px;
  right: 0;
  padding-right: 7%;
}

.site_navigation {
  background-color: #e4ece6;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 9;
  height: 100vh;
  overflow: auto;
}

.site_navigation .menu_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding-top: 165px;
  padding-left: 87px;
}

.site_navigation .container {
  height: 100%;
}

.site_navigation .site_menu ul li a {
  font-size: 52px;
  line-height: 82px;
  font-weight: 700;
  color: #552d87;
  transition: all 0.3s ease-in-out;
}
.site_navigation .site_menu ul .current-menu-item > a, .site_navigation .site_menu ul .current-menu-parent > a {
  color: #fdb515;
}
.site_navigation .site_menu ul li a:hover {
  color: #fdb515;
}
.site_navigation .site_menu ul li a:hover:after {
  color: #fdb515;
}
.site_navigation .site_menu ul li {
  padding: 0px;
  background-image: none;
}
.site_navigation .site_menu ul li.menu-item-has-children.active > a {
  color: #fdb515;
}

.site_navigation .site_menu ul li .sub-menu {
  display: none;
}

.site_navigation .site_menu ul li .sub-menu li a {
  font-size: 30px;
  line-height: 40px;
  font-weight: 400;
}

.site_navigation .site_menu ul li .sub-menu li {
  width: 100%;
}

.site_navigation .site_menu ul li .sub-menu {
  padding-left: 29px;
}
.menu-item-has-children > a:after {
  content: '+';
  position: relative;
  margin-left: 14px;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  color: #552d87;
}
.menu-item-has-children.active > a:after {
  transform: rotate(45deg);
  color: #fdb515;
}
.site_navigation .site_menu ul li {
  width: 50%;
  padding: 0px 20px;
}
.site_navigation {
  display: none;
}
.site_navigation .site_menu ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0px -20px;
}

.site_navigation .contact_address h4 {
  font-size: 24px;
  line-height: 40px;
  color: rgb(0 0 0 / 40%);
  margin-bottom: 14px;
}

.site_navigation .contact_address address {
  font-style: normal;
  max-width: 267px;
  margin-bottom: 12px;
}

.site_navigation .contact_address a {
  display: block;
  color: #000;
  margin-bottom: 6px;
}
.site_navigation .contact_address a:hover {
  color: #fdb515;
}
.subscribe_form h2 {
  font-size: 24px;
  line-height: 21px;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 24px;
  text-align: center;
}

.subscribe_form .form {
  max-width: 332px;
  margin: auto;
}

.subscribe_form .form form {
  position: relative;
}

/*
.subscribe_form .form .gform_wrapper.gravity-theme .gform_footer {
  padding: 0px;
  margin: 0px;
  position: absolute;
  max-width: 143px;
  top: 0;
  right: 0;
  height: 48px;
}
*/
.subscribe_form .form .gform_wrapper.gravity-theme .gform_footer {
  padding: 0px;
  margin-top: 10px;
}

.subscribe_form .form .gform_wrapper .ginput_container input {
  height: 48px !important;
  border-radius: 40px !important;
  font-weight: 300;
  color: #000 !important;
  /* padding: 15px 150px 15px 29px !important; */
  padding: 15px 22px !important;
}
.subscribe_form .form .gform_wrapper .ginput_container input::placeholder {
  color: #000;
}
.subscribe_form .form .gform_wrapper .ginput_container.ginput_complex input {
  padding: 15px 22px !important;
}

.subscribe_form .form .gform_wrapper.gravity-theme .gform_footer input {
  padding: 16px 32px !important;
  width: 100% !important;
  border-radius: 50px;
  margin-bottom: 0px;
  height: 48px;
  background-color: #fdb515;
  border: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1.3 !important;
}
.subscribe_form .form .gform_wrapper.gravity-theme .gform_footer input:hover {
  background-color: #8c6b9a;
}
.subscribe_form .social_icon h4 {
  font-size: 24px;
  line-height: 21px;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 24px;
}
.gform_wrapper .gfield--type-checkbox {
  margin-top: -5px !important;
}
.gform_wrapper .gfield--type-checkbox .gfield_label {
  margin-bottom: 0 !important;
}
.gform_wrapper .gfield_checkbox {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
}
.gform_wrapper .ginput_container .gfield_checkbox .gfield-choice-input {
  height: auto !important;
}
.subscribe_form .form .gform_wrapper .ginput_container .gfield_checkbox .gfield-choice-input {
  height: auto !important;
}
.gform_wrapper .ginput_container .gfield_checkbox .gfield-choice-input+label {
  max-width: 100%;
}
.bottom_header_contact {
  padding-bottom: 47px;
}
.bottom_header_contact .social_icon ul {
  display: flex;
}
.bottom_header_contact .social_icon h4 {
  color: rgba(0, 0, 0, 0.4);
}
.bottom_header_contact .social_icon ul li a {
  width: 58px;
  height: 58px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.bottom_header_contact .social_icon ul li a:hover {
  background-color: #fdb515;
}
.bottom_header_contact .social_icon ul li a:hover img {
  filter: brightness(38);
}
.bottom_header_contact .social_icon ul li {
  padding: 0px;
  margin-right: 8px;
  background-image: none;
}
.bottom_header_contact .contact_address {
  width: 45%;
  padding: 0px 10px;
}

.bottom_header_contact .subscribe_form {
  width: 40%;
  padding: 0px 10px;
}

.bottom_header_contact .social_icon {
  width: 15%;
  padding: 0px 10px;
}
.subscribe_form .form .gform_wrapper.gravity-theme .gform_validation_errors > h2.hide_summary {
  color: #000 !important;
  padding-left: 45px;
  text-align: left;
}
.subscribe_form .form .gform_wrapper.gravity-theme .gfield_validation_message,
.subscribe_form .form .gform_wrapper.gravity-theme .validation_message {
  color: #c02b0a !important;
}
body.is-active {
  overflow: hidden;
}
body.is-active .hamburger {
  background-color: #552d87;
}

.review_slider {
  padding: 138px 0px 60px;
}

.review_slider .title {
  margin-bottom: 62px;
  text-align: center;
}
.review_slider .indrevdiv {
  background: #e4ece6 !important;
  border-radius: 16px !important;
  padding: 39px;
  padding-top: 79px;
  padding-bottom: 64px;
  background-image: url('../images/quote.svg') !important;
  background-repeat: no-repeat !important;
  background-position: 55px 37px !important;
}
.review_slider button.slickwprev-arrow {
  display: none !important;
}

.review_slider .wpproslider_t6_DIV_2_top {
  position: absolute;
  bottom: -125px;
  text-align: left;
  margin: 0px;
}

.review_slider .wpproslider_t6_DIV_3L {
  float: none;
  text-align: left;
  margin: 0px;
}

.review_slider .wpproslider_t6_IMG_2 {
  width: 54px;
  height: 54px;
  border: 1px solid #fff;
  margin-bottom: 25px;
}
.review_slider .slickwprev-list {
  padding-bottom: 103px;
}

.review_slider .wpproslider_t6_DIV_3 {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
}

.review_slider .wpproslider_t6_star_DIV {
  margin-bottom: 10px;
}

.review_slider .t6displayname {
  font-weight: 400;
  margin-top: 0px;
}

.review_slider .slickwprev-dots li.slickwprev-active button:before {
  display: none;
}

.review_slider .slickwprev-dots li button:before {
  display: none;
}

.review_slider .slickwprev-dots li.slickwprev-active button {
  opacity: 1;
  background: #552d87;
  width: 16px;
  transition-delay: 0s;
}
.review_slider .slickwprev-dots li button {
  width: 8px;
  height: 8px;
  display: inline-block;
  background: #d9d9d9;
  margin: 0 3px;
  border-radius: 20px;
  transition: opacity 0.5s, background-color 0.5s, width 0.5s;
  transition-delay: 0.5s, 0.5s, 0s;
}
.review_slider .slickwprev-dots li {
  cursor: pointer;
  padding: 0px;
  background-image: none;
}

.contact_form {
  padding: 100px 0px;
}
.contact_form .title {
  text-align: center;
  margin-bottom: 30px;
}
.contact_form .form_sec {
  max-width: 626px;
  margin: auto;
  position: relative;
}
.contact_form .form_sec .gform_wrapper.gravity-theme .ginput_container input,
.gform_wrapper.gravity-theme .ginput_container textarea {
  border: 1px solid #231f20 !important;
  border-radius: 20px;
  padding: 14px 22px !important;
}

.contact_form .form_sec .gform_wrapper.gravity-theme .ginput_container input {
  height: 48px !important;
}
.contact_form .form_sec .ginput_container.ginput_container_select select {
  border: 1px solid #231f20 !important;
  border-radius: 20px;
  padding: 11px 22px !important;
  height: 48px;
  color: #000;
  background-image: url('../images/select-arrow-black.svg');
  background-repeat: no-repeat;
  background-position: 94% 21px;
}
.contact_form .form_sec .gform_wrapper.gravity-theme .ginput_container.ginput_container_fileupload input {
  border: 1px solid #552d87 !important;
  max-width: 136px;
  height: 50px !important;
  color: transparent;
  background-color: transparent;
  background-image: url('../images/upload-cv.svg');
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 30px;
}
.contact_form .form_sec .gform_wrapper.gravity-theme .ginput_container.ginput_container_fileupload input::-webkit-file-upload-button {
  display: none;
}
.contact_form .form_sec span.gfield_description.gform_fileupload_rules {
  display: none !important;
}
.contact_form .form_sec .gform_wrapper.gravity-theme .ginput_container input::placeholder,
.gform_wrapper.gravity-theme .ginput_container textarea::placeholder {
  color: #000;
}
.contact_form .form_sec .gform_wrapper.gravity-theme .gform_fields {
  grid-row-gap: 12px;
}
.contact_form .form_sec .gform_footer input {
  background-color: #fdb515;
  border: none !important;
  border-radius: 56px;
  font-size: 14px;
  line-height: 16px !important;
  font-weight: 600;
  height: 48px;
  margin-bottom: 0px !important;
}
.contact_form .form_sec .gform_footer input:hover {
  background-color: #8c6b9a;
  color: #fff;
}
.contact_form .form_sec .gform_footer {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0px !important;
  padding: 0px !important;
}
.contact_form .form_sec .gform_wrapper.gravity-theme .gform_validation_errors:focus-visible {
  outline: none;
}
.contact_form .form_sec .gform_wrapper.gravity-theme .gform_validation_errors > h2 {
  padding-left: 49px !important;
  outline: none !important;
  border: none;
}
.contact_form .form_sec .gform_footer input {
  padding: 15px 35px !important;
  min-width: 168px;
}

.single_banner_contnet {
  margin: auto;
  padding: 104px 20px 0px;
}

.single_banner_contnet ul {
  margin: 25px 0px;
}
.single_banner_contnet figure {
  margin-left: 0px;
  margin-right: 0px;
}

.single_banner_contnet figure img {
  border-radius: 16px;
}

.single_banner_contnet figure {
  margin: 80px 0px;
}
.admin-bar header {
  top: 32px;
}
.single-post .hamburger {
  background-color: #e5dfec;
}
.single-post .hamburger span {
  background-color: #552d87;
}
.single-post .single-page-head.fixed-header .hamburger span {
  background-color: #fff;
}

.is-active.single-post .hamburger span {
  background-color: #fff;
}

.soc_client_ico .icons_soc a {
  width: 58px;
  height: 58px;
  background-color: #fdb515;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.soc_client_ico {
  display: flex;
}

.social_client_list .soc_client span {
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}

.social_client_list {
  margin: auto;
  padding: 0px 0px;
  margin-bottom: 50px;
  padding-top: 148px;
  border-top: 1px solid #000;
  margin-top: 40px;
  background-image: url('../images/logo-icon.svg');
  background-repeat: no-repeat;
  background-position: 50% 15%;
}
.soc_client_ico .icons_soc a:hover {
  background-color: #8c6b9a;
}
.social_client_list .icons_soc {
  margin-right: 6px;
}
section.page_not_found {
  padding: 220px 0px 100px;
}
section.page_not_found .desc .primary_btn {
  text-align: center;
  margin: auto;
}
section.search_page {
  padding: 220px 0px 100px;
}
.search_page {
  max-width: 600px;
  margin: auto;
  text-align: center;
}

section.search_page form#search-form {
  display: flex;
}
body.search.search-results .search_page {
  max-width: 100%;
}

/* modal popup  */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(0px, 100%);
  transition: all 0.3s ease-in-out;
  z-index: 11;
}
.modal:after {
  content: '';
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 58%);
  top: 0;
  left: 0;
}
.modal.show-modal {
  transform: none;
}
.modal .modal_inner {
  max-width: calc(1320px - 40px);
  background-color: #f2f2f2;
  max-height: calc(100% - 100px);
  width: 100%;
  box-shadow: 0px 18px 41px rgba(0, 0, 0, 0.25);
  border-radius: 24px;
  padding: 134px 50px 134px;
  z-index: 1;
  position: relative;
  overflow: auto;
}
.modal .modal_inner .close {
  position: absolute;
  top: 34px;
  right: 34px;
}
.modal .modal_wrap {
  display: flex;
  max-width: 870px;
  margin: auto;
}
.modal .left_column img {
  height: 292px;
  border-radius: 16px;
  width: 100%;
  object-fit: cover;
}
.modal .left_column {
  width: 34%;
}
.modal .team_content_p span {
  color: #fdb515;
  text-transform: uppercase;
  font-size: 20px;
  display: block;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.modal .team_content_p h2 {
  margin-bottom: 10px;
}
.modal .right_column {
  width: 66%;
  padding-left: 53px;
}

/*DropDown*/

.cat_tags_list {
  height: 2.5rem;
  list-style-type: none;
  padding: 0;
  margin: 0 0 1rem 0 !important;
}
.cat_tags_list li {
  visibility: hidden;
  position: relative;
  z-index: 10;
  margin: 0;
  padding: 0;
  background-color: #e4ece6;
  /* border-right: 1px solid #1bd6bc; */
  /* border-left: 1px solid #1bd6bc; */
  /* box-shadow: 0px 0px 20px -3px #1bd6bc; */
  transition: 80ms;
  list-style: none;
  background-image: none;
}
.cat_tags_list li a {
  display: block;
  width: 10rem;
  height: 2.5rem;
  line-height: 2.5rem;
  padding: 0rem 1rem;
  color: black;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: font-size 200ms, background-color 200ms;
}
.cat_tags_list li a:active {
  background-color: rgb(27, 214, 188, 0.1);
}
.cat_tags_list li:first-of-type {
  background-color: #fdb515;
  visibility: visible;
  /* border-top: 1px solid #1bd6bc; */
  border-radius: 0.3rem;
  transition: background-color 200ms;
}

.cat_tags_list li:first-of-type a::after {
  content: '';
  background-image: url(../images/drop_down_arrow.svg);
  background-size: 11px;
  background-position: center center;
  position: absolute;
  right: 0;
  top: 0;
  height: 40px;
  width: 40px;
  background-repeat: no-repeat;
  transform: rotate(90deg) translate(0px, 0);
  transition: all 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

.cat_tags_list:hover li:first-of-type a::after {
  transform: rotate(-90deg) translate(0, 0);
}
.cat_tags_list li:last-of-type {
  /*    border-bottom: 1px solid #1bd6bc;*/
  border-bottom-left-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}
.cat_tags_list:hover li {
  visibility: visible;
}
.cat_tags_list:hover li:first-of-type {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-color: #fdb547;
  z-index: 15;
}
.cat_tags_list li:hover {
  /*    background-color: white !important;*/
  z-index: 15;
}
.cat_tags_list li:hover a {
  color: #562f84;
}

.category_list {
  width: fit-content;
}

.cat_tags_list li.active a {
  color: #fff;
}

@media (max-width: 1700px) {
  .bottom_header_contact .contact_address {
    width: 30%;
  }
  .bottom_header_contact .social_icon {
    width: 30%;
  }
  .gallery_slider .item img {
    height: 550px;
  }
  .our_process_slider .process_slider_right {
    padding: 30px;
  }
  .our_process_slider .owl-nav {
    max-width: 57%;
  }
}
@media (max-width: 1400px) {
  .four_column_icon .flex {
    margin: 0px;
  }
  .site_navigation .menu_wrapper {
    padding-left: 65px;
    padding-top: 110px;
  }
  .bottom_header_contact {
    padding-top: 40px;
  }
  .singlebanner_left {
    padding-right: 30px;
  }
  .singlebanner_right {
    padding-left: 30px;
  }
  .modal .modal_inner {
    max-width: calc(100% - 40px);
  }
}
@media (max-width: 1199px) {
  .site_footer .wrapper.flex {
    margin: 0px;
  }
  .four_column_icon.content_style {
    padding: 40px 0px 100px;
  }
  .image_content_section .content_block {
    padding-left: 20px;
  }
  .contact_section .wrapper.flex {
    padding: 63px 28px 63px;
  }
  .offer_section .offer_list ul {
    column-count: 2;
  }
  .our_process_slider .owl-nav {
    max-width: 82%;
  }
  .three_column.wrapper .img_block img {
    height: 500px;
  }
  .singlebanner_left img {
    height: 630px;
  }
  .contact_section .contact_right .gform_footer input {
    background-position: 64%;
  }
  .getin_touch .wrapper.flex .col {
    padding: 0px 10px;
    width: 50%;
    margin-bottom: 40px;
  }
  .flexible_image_contnet .right_content .img_block img {
    height: 780px;
  }
}
@media (max-width: 991px) {
  .four_column_icon .item {
    padding: 0px 15px;
  }
  .four_column_icon .flex {
    margin: 0px -15px;
  }
  .image_content_section {
    padding: 70px 0px;
  }
  .image_content_section .content_block {
    padding-left: 0px;
    width: 50%;
  }
  .image_content_section .img_block {
    width: 50%;
  }
  /* .image_content_section .img_block img {
    height: 420px;
  } */
  .four_column_icon.content_style {
    padding: 40px 0px 70px;
  }
  .holiday_slider {
    padding: 70px 0px;
  }
  .our_process {
    padding: 70px 0px;
  }
  .review_slider {
    padding: 70px 0px 60px;
  }
  .review_slider .title {
    margin-bottom: 40px;
  }
  .cta_section .cta_inner .wrapper {
    max-width: 614px;
    padding: 35px 40px;
  }
  .contact_section .contact_right {
    padding-left: 77px;
  }
  .contact_section .contact_title h2 {
    font-size: 24px;
    line-height: normal;
  }
  .site_footer .wrapper.flex .site_logo {
    width: 50%;
  }
  .site_footer .wrapper.flex .site_menu {
    width: 50%;
  }
  .site_footer .wrapper.flex .subscribe_form {
    margin-top: 30px;
  }
  .site_footer .wrapper.flex .social_icon {
    margin-top: 30px;
    width: 50%;
  }
  footer {
    padding-top: 70px;
  }
  header.fixed-header .header_wrapper {
    padding-top: 0px;
  }
  header .header_wrapper {
    transition: all 0.3s ease-in-out;
  }
  .site_navigation .site_menu ul li a {
    font-size: 30px;
    line-height: 35px;
  }
  .bottom_header_contact .header_social {
    width: 100%;
    margin-top: 20px;
  }
  .bottom_header_contact .subscribe_form {
    width: 50%;
  }
  .bottom_header_contact .wrapper.flex {
    align-items: flex-start;
  }
  .bottom_header_contact .contact_address {
    width: 50%;
  }
  .bottom_header_contact .subscribe_form h2 {
    text-align: left;
  }
  .bottom_header_contact .subscribe_form h2 {
    line-height: 29px;
  }
  .bottom_header_contact .social_icon ul li a {
    width: 45px;
    height: 45px;
  }
  .site_navigation .site_menu ul li .sub-menu li a {
    font-size: 20px;
    line-height: 28px;
  }
  .counter-box span {
    font-size: 60px;
    line-height: normal;
  }
  .image_content_section .two_column .wrapper {
    margin-bottom: 70px;
  }
  .video__section {
    padding: 70px 0px;
  }
  .cta_trip_inner .cta_left h2 {
    font-size: 40px;
    line-height: 50px;
  }
  .cta_trip_inner .cta_left > span {
    font-size: 18px;
    line-height: 35px;
  }
  .cta_trip_inner .wrapper.flex {
    max-width: 660px;
  }
  .cta_trip_inner {
    min-height: 360px;
  }
  .leatest_news_wrapper .content {
    padding: 20px;
  }
  .leatest_news_section {
    padding: 70px 0px;
  }
  .our_process_slider .process_slider_right .content h4 {
    margin-bottom: 10px;
  }
  .our_process_slider .process_slider_left .digit span {
    font-size: 40px;
  }
  .our_process_slider .process_slider_left .digit span:after {
    width: calc(100% - 88px);
    left: 71px;
  }
  .our_process_slider {
    padding: 70px 0px;
  }
  .our_process_slider .intro_content {
    margin-bottom: 70px;
  }
  .image_content_section .title {
    margin-bottom: 60px;
  }
  .image_content_section .two_column:nth-child(even) .content_block {
    padding-right: 0px;
    padding-left: 0px;
  }
  .price_section .price_block {
    text-align: center;
    padding: 30px;
  }
  .price_section {
    padding: 70px 0px;
  }
  .price_section .title {
    margin-bottom: 60px;
  }
  .price_section .price_column {
    padding: 0px 10px;
  }
  .price_section .wrapper.flex {
    margin: 0px -10px;
  }
  .tour_information .leatest_news_wrapper .item {
    width: 50%;
  }
  .faq_section {
    padding: 70px 0px;
  }
  .tour_information {
    padding: 70px 0px;
  }
  .three_column.wrapper .item {
    width: 50%;
  }
  .counter_section .title {
    margin-bottom: 40px;
  }
  .three_column_section {
    padding: 70px 0px;
  }
  .three_column_team .wrapper .column {
    width: 50%;
    padding: 0px 10px;
    margin-bottom: 20px;
  }
  .team_wrapper .wrapper {
    margin: 0px -10px;
  }
  .four_column_team.team_wrapper .wrapper .column {
    width: 33.33%;
  }
  .team_main_section {
    padding: 70px 0px 0px;
  }
  .meet_the_author {
    padding: 70px 0;
    margin-top: 70px;
  }
  .paragraph_section {
    padding: 70px 0px;
  }
  .contact_form {
    padding: 70px 0px;
  }
  .twocolumn_contact_info .wrapper.flex .column .content ul li a {
    line-height: normal;
    word-break: break-word;
  }
  .twocolumn_contact_info {
    padding: 70px 0px;
  }
  .support_three_column .wrapper.flex .col-i img {
    height: 200px;
  }
  .support_three_column {
    padding: 70px 0px;
  }
  .support_three_column .wrapper.flex .col-i {
    padding: 0px 10px;
  }
  .support_three_column .wrapper.flex {
    margin: 0px -10px;
  }
  .tour_information.blog_listing {
    padding-bottom: 70px;
  }
  .single_banner {
    padding-top: 200px;
  }
  .getin_touch {
    padding: 70px 0px;
  }
  .getin_touch .wrapper.flex .col:last-child {
    padding-left: 20px;
  }
  .getin_touch .wrapper.flex .col:nth-child(2) {
    padding-left: 20px;
  }
  .contact_map {
    padding: 70px 0px;
  }
  .contact_section .contact_right .gform_footer input {
    background-position: 68%;
  }
  .our_process_slider .owl-dots {
    max-width: calc(100% - 40px);
  }
  .social_client_list {
    padding: 100px 30px 50px;
  }
  article.search-entry {
    width: calc(50% - 20px);
  }
  .flexible_image_contnet .left_content {
    width: 100%;
  }
  .flexible_image_contnet .right_content {
    width: 100%;
    margin-top: 70px;
  }
  .flexible_image_contnet .content {
    max-width: 100%;
    margin-top: 0px;
  }
  .flexible_image_contnet .right_content .img_block img {
    height: 690px;
  }
  .flexible_image_contnet .right_content .overlap_img {
    left: 34%;
  }
  .flexible_image_contnet .right_content .img_block {
    max-width: 500px;
  }
  .two_column_overlap.image_content_section .two_column:nth-child(2) {
    margin-top: 0;
  }
  .image_content_section.two_column_overlap {
    padding: 70px 0px;
  }
}

@media (max-width: 767px) {
  .getin_touch .wrapper.flex .col .content {
    padding-left: 0;
  }
  header .site_logo a img {
    max-width: 100px;
  }
  .banner_section .banner_content {
    padding: 0px 20px;
  }
  h1 {
    font-size: 45px;
    line-height: 50px;
  }
  h2 {
    font-size: 32px;
    line-height: 38px;
  }
  h3 {
    font-size: 24px;
    line-height: 30px;
  }
  h4 {
    font-size: 20px;
    line-height: 24px;
  }
  h5 {
    font-size: 18px;
    line-height: 22px;
  }
  h6 {
    font-size: 16px;
    line-height: 20px;
  }
  .four_column_icon .item {
    width: 50%;
    margin-bottom: 30px;
  }
  .image_content_section .content_block {
    width: 100%;
  }
  .image_content_section .img_block {
    width: 100%;
    padding: 0px;
    margin-bottom: 30px;
  }
  /* .image_content_section .two_column:nth-child(even) .wrapper {
    flex-direction: column-reverse;
  } */
  .image_content_section {
    padding: 50px 0px;
  }
  .four_column_icon.content_style .item img {
    margin-bottom: 20px;
  }
  .four_column_icon.content_style {
    padding: 40px 0px 50px;
  }
  .holiday_slider {
    padding: 50px 0px;
  }
  .holiday_slider .slider {
    margin-top: 40px;
  }
  .holiday_slider .slider .item a img {
    height: 330px;
  }
  .holiday_slider .slider .item a .content h2 {
    margin-bottom: 0px;
  }
  .our_process {
    padding: 50px 0px;
  }
  .our_process .title {
    margin-bottom: 10px;
  }
  .review_slider {
    padding: 50px 0px;
  }
  .review_slider .wpproslider_t6_DIV_1a {
    margin: 0px;
  }
  .review_slider .slickwprev-list {
    padding-bottom: 124px;
  }
  .cta_section .cta_left {
    width: 100%;
  }
  .cta_section .cta_right {
    width: 100%;
    margin-top: 30px;
  }
  .cta_section .cta_inner .wrapper {
    max-width: calc(100% - 20px);
    padding: 35px 25px;
  }
  .contact_section .contact_left {
    width: 100%;
  }
  .contact_section .contact_right {
    padding-left: 0px;
    width: 100%;
  }
  .contact_section .wrapper.flex:after {
    display: none;
  }
  .contact_section .wrapper.flex {
    background-position: 96% 1%;
  }
  .contact_section .content h4 {
    font-size: 20px;
    line-height: 24px;
  }
  .site_footer .wrapper.flex .site_logo {
    width: 100%;
    text-align: center;
  }
  .site_footer .wrapper.flex .site_menu {
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }
  .site_footer .wrapper.flex .subscribe_form {
    width: 100%;
  }
  .site_footer .wrapper.flex .social_icon {
    width: 100%;
    text-align: center;
  }
  .site_footer .wrapper.flex .social_icon ul {
    justify-content: center;
  }
  .site_footer .wrapper.flex .social_icon ul li a {
    width: 40px;
    height: 40px;
  }
  .site_footer .wrapper.flex .social_icon h4,
  .site_footer .wrapper.flex .site_menu h4 {
    margin-bottom: 20px;
  }
  .banner_section .full_image img,
  .banner_section video.custom_video {
    height: 700px;
  }

  header {
    padding: 20px 0px;
  }
  header .site_logo a {
    text-align: right;
  }
  header .header_wrapper {
    padding-top: 0px;
    justify-content: flex-start;
  }
  header.fixed-header .site_logo a img {
    max-width: 100px;
  }
  .site_navigation .site_menu ul li {
    width: 100%;
  }
  .site_navigation .contact_address address {
    margin-left: auto;
    margin-right: auto;
  }
  .bottom_header_contact .social_icon {
    margin-left: auto;
    margin-right: auto;
  }
  .bottom_header_contact .contact_address {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  .bottom_header_contact .subscribe_form {
    width: 100%;
    margin-bottom: 30px;
  }
  .site_navigation .menu_wrapper {
    padding-left: 0px;
    padding-top: 110px;
  }
  .site_navigation .site_menu ul li .sub-menu li {
    padding: 0px;
  }
  .site_navigation .site_menu ul li .sub-menu {
    margin-top: 15px;
    padding: 0px;
  }
  .bottom_header_contact .subscribe_form h2 {
    text-align: center;
  }
  .bottom_header_contact .social_icon h4 {
    text-align: center;
  }
  .bottom_header_contact .social_icon ul {
    justify-content: center;
  }
  .site_navigation .site_menu ul {
    text-align: center;
  }
  .hamburger {
    width: 40px;
    height: 40px;
  }
  .hamburger .line {
    width: 20px;
    height: 2px;
  }
  .is-active #hamburger-1 .line:nth-child(3) {
    -webkit-transform: translateY(-6px) rotate(-45deg);
    -ms-transform: translateY(-6px) rotate(-45deg);
    -o-transform: translateY(-6px) rotate(-45deg);
    transform: translateY(-6px) rotate(-45deg);
  }
  .is-active #hamburger-1 .line:nth-child(1) {
    -webkit-transform: translateY(6px) rotate(45deg);
    -ms-transform: translateY(6px) rotate(45deg);
    -o-transform: translateY(6px) rotate(45deg);
    transform: translateY(6px) rotate(45deg);
  }
  .counter-box {
    width: 50%;
  }
  .counter-row {
    flex-wrap: wrap;
  }
  .counter-box {
    width: 100%;
    margin-bottom: 30px;
  }
  .counter-box p {
    margin-bottom: 0px;
  }
  .counter-box .contnet {
    margin-top: 15px;
  }
  .counter_section .btn_block {
    margin-top: 40px;
  }
  .image_content_section .two_column:nth-child(even) .content_block {
    padding-left: 0px;
    padding-right: 0px;
  }
  .image_content_section .two_column .wrapper {
    margin-bottom: 70px;
    /* flex-direction: column-reverse; */
  }
  .image_content_section .two_column .wrapper .content_block {
    order: 9;
  }
  .image_content_section .two_column .wrapper .img_block {
    order: 1;
  }

  .offer_section .offer_list ul {
    column-count: 1;
  }
  .offer_section {
    padding: 50px 0px;
  }
  .offer_section .title {
    margin-bottom: 40px;
  }
  .offer_section .offer_list ul li {
    margin-bottom: 10px;
  }
  .gallery_slider {
    padding: 50px 0px;
  }
  .gallery_slider .item img {
    height: 270px;
  }
  .gallery_slider .owl-nav button {
    width: 40px;
    height: 40px;
    background-size: 18px !important;
  }
  .gallery_slider .owl-nav {
    top: 37%;
  }
  .gallery_slider .owl-dots {
    max-width: calc(100% - 60px);
  }
  .video__section {
    padding: 50px 0px;
  }
  .video__section .video_main video,
  .video__section .video_main iframe {
    height: 300px;
  }
  .cta_trip_inner .cta_left {
    width: 100%;
  }
  .cta_trip_inner .cta_right {
    width: 100%;
  }
  .cta_trip_inner .cta_left h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .cta_trip_inner .wrapper.flex {
    padding: 20px;
  }
  .cta_trip_inner .cta_right .primary_btn {
    margin-left: inherit;
    margin-top: 30px;
  }
  .leatest_news_section {
    padding: 50px 0px;
  }
  .leatest_news_wrapper .content h4 {
    font-size: 20px;
    line-height: 24px;
  }
  .leatest_news_wrapper .content {
    min-height: 160px;
  }
  .leatest_news_wrapper .img_block img {
    height: 380px;
  }
  .leatest_news_wrapper .category {
    top: 20px;
    left: 20px;
  }
  .cta_trip_inner {
    mask-position: 36% 100%;
  }
  .counter_section {
    padding: 40px 0px;
  }
  .counter-box span {
    font-size: 45px;
  }
  .counter-box .contnet {
    font-size: 18px;
    line-height: 25px;
  }
  .image_content_section .two_column:nth-child(even) .wrapper .img_block {
    padding-right: 0px;
  }
  .our_process_slider .process_slider_right {
    padding: 30px;
    width: 100%;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 16px;
  }
  .our_process_slider .process_slider_left {
    width: 100%;
  }
  .our_process_slider {
    padding: 50px 0px;
  }
  .our_process_slider .process_slider_left .img_block img {
    border-radius: 16px 16px 0px 0px;
    height: 380px;
  }
  .our_process_slider .owl-nav button {
    width: 40px;
    height: 40px;
    background-size: 16px !important;
  }
  .our_process_slider .owl-nav {
    max-width: 100%;
  }
  .trip_banner {
    min-height: 530px;
  }
  .site_footer .bottom_footer.flex {
    text-align: center;
    justify-content: center;
  }
  .site_footer .bottom_footer.flex p {
    width: 100%;
  }
  .image_content_section.equal_column .content_block {
    width: 100%;
  }
  .image_content_section.equal_column .img_block {
    width: 100%;
    padding-left: 0px;
  }
  .image_content_section.equal_column .two_column:nth-child(even) .wrapper .img_block {
    padding-right: 0px;
  }
  .image_content_section .title {
    margin-bottom: 40px;
  }
  .price_section .price_column {
    width: 100%;
  }
  .price_section {
    padding: 50px 0px;
  }
  .price_section .title {
    margin-bottom: 40px;
  }
  .price_section .price_column {
    margin-top: 0px;
    margin-bottom: 30px;
  }
  .price_section .price_column:last-child {
    margin-bottom: 0px;
  }
  .tour_information {
    padding: 50px 0px;
  }
  .tour_information .leatest_news_wrapper .item {
    width: 100%;
  }
  .tour_information .leatest_news_wrapper .item:last-child {
    margin-bottom: 0px;
  }
  .faq_section {
    padding: 50px 0px;
  }
  .faq_section .title {
    margin-bottom: 50px;
  }
  .faq_section .btn-wrapper button {
    padding: 15px 40px 15px 0px;
  }
  .faq_section .btn-wrapper button:after {
    top: 25px;
  }
  .faq_section .collepsing-div {
    padding: 0px 30px 30px;
  }
  .three_column.wrapper .item {
    width: 100%;
  }
  .three_column_section {
    padding: 50px 0px;
  }
  .four_column_team.team_wrapper .wrapper .column {
    width: 50%;
  }
  .four_column_team.team_wrapper .team_content {
    padding: 0px 20px;
  }
  .team_wrapper .team_content span {
    font-size: 16px;
  }
  .team_wrapper .team_content h2 {
    margin-bottom: 5px;
  }
  .four_column_team.team_wrapper .wrapper .column h2 {
    line-height: 30px;
  }
  .team_wrapper {
    margin-bottom: 50px;
  }
  .paragraph_section {
    padding: 50px 0px;
  }
  .logo-slider {
    padding: 50px 0px;
  }
  .logo-slider .title {
    margin-bottom: 40px;
  }
  .twocolumn_contact_info .wrapper.flex .column {
    width: 100%;
  }
  .twocolumn_contact_info .wrapper.flex .column .content ul li a {
    font-size: 18px;
  }
  .twocolumn_contact_info .wrapper.flex .column .content ul li span {
    font-size: 20px;
    line-height: 30px;
  }
  .twocolumn_contact_info .wrapper.flex .column:last-child {
    margin-top: 30px;
  }
  .twocolumn_contact_info {
    padding: 50px 0px;
  }
  .twocolumn_contact_info .title {
    margin-bottom: 40px;
  }
  .twocolumn_contact_info .wrapper.flex .column .content ul li:last-child {
    margin-bottom: 0px;
  }
  .support_three_column .wrapper.flex .col-i {
    width: 100%;
    margin-bottom: 30px;
  }
  .support_three_column {
    padding: 50px 0px;
  }
  .support_three_column .wrapper.flex .col-i:last-child {
    margin-bottom: 0px;
  }
  .support_three_column .wrapper.flex .col-i img {
    height: 160px;
  }
  .tour_information.blog_listing {
    padding-bottom: 50px;
  }
  .tour_information.blog_listing .leatest_news_wrapper {
    padding-bottom: 30px;
  }
  .singlebanner_left {
    padding-right: 0px;
    width: 100%;
  }
  .singlebanner_right {
    padding-left: 0px;
    width: 100%;
    margin-top: 30px;
  }
  .singlebanner_left img {
    height: 500px;
  }
  .single_banner {
    padding-top: 165px;
  }
  .singlebanner_right .content h1 {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 15px;
  }
  .singlebanner_right .author {
    margin-top: 30px;
  }
  .single_banner_contnet .container {
    padding: 0px;
  }
  .single_banner_contnet {
    padding: 70px 20px 0px;
  }
  .soc_client_ico .icons_soc a {
    width: 40px;
    height: 40px;
  }
  .social_client_list {
    padding: 100px 30px 0px;
  }
  blockquote p {
    font-size: 24px;
    line-height: 30px;
  }
  .single_banner_contnet figure {
    margin: 50px 0px;
  }
  .getin_touch .wrapper.flex .col {
    width: 100%;
    margin-bottom: 20px;
    padding: 0px;
  }
  .getin_touch .wrapper.flex .col h4 {
    margin-bottom: 10px;
  }
  .getin_touch .wrapper.flex .col:nth-child(2) {
    padding-left: 0px;
  }
  .getin_touch .wrapper.flex .col:last-child {
    padding-left: 0px;
  }
  .getin_touch .wrapper.flex {
    margin-top: 50px;
  }
  .getin_touch {
    padding: 50px 0px;
  }
  .contact_map .intro_content {
    margin-bottom: 50px;
  }
  .contact_map .iframe_content {
    max-width: 100%;
  }
  .contact_section .contact_right .gform_footer input {
    background-position: 70%;
  }
  .getin_touch .wrapper.flex .col:nth-child(2) .content,
  .getin_touch .wrapper.flex .col:nth-child(3) .content {
    padding-left: 0px;
  }
  .image_content_section .content_block h2 {
    margin-bottom: 20px;
  }
  section.page_not_found,
  section.search_page {
    padding: 180px 0px 70px;
  }
  article.search-entry {
    width: 100%;
  }
  .flexible_image_contnet .right_content .img_block img {
    height: 390px;
  }
  .flexible_image_contnet .right_content .overlap_img {
    left: 39px;
    transform: none;
    max-width: 250px;
  }
  .flexible_image_contnet .right_content .overlap_img img {
    height: 150px;
  }
  .flexible_image_contnet {
    padding: 50px 0px 80px;
  }
  .flexible_image_contnet .right_content .img_block {
    margin: auto;
  }
  .two_column_overlap.image_content_section .img_block {
    padding-left: 0px;
    width: 100%;
  }
  .two_column_overlap.image_content_section .content_block {
    width: 100%;
  }
  .two_column_overlap.image_content_section .two_column:first-child .wrapper .content_block {
    padding-top: 0px;
  }
  .two_column_overlap.image_content_section .two_column:nth-child(2) .content_block {
    margin-top: 0px;
  }
  .image_content_section.two_column_overlap {
    padding: 50px 0px;
  }
  header .header_wrapper .header_btn a {
    font-size: 0;
    height: 47px;
    width: 47px !important;
    padding: 6px;
    max-width: none;
  }
  header .site_logo {
    text-align: center;
  }
  header .site_logo a {
    text-align: center;
  }
  /*header .header_wrapper .header_btn a img {
        margin-left: 39px;
    }*/
  .modal .modal_wrap {
    flex-wrap: wrap;
  }
  .modal .left_column {
    width: 100%;
  }
  .modal .right_column {
    width: 100%;
    margin-top: 30px;
    padding-left: 0px;
  }
  .modal .team_content_p span {
    font-size: 18px;
  }
  .modal .modal_inner {
    padding: 70px 30px 70px;
  }
  .modal .modal_inner .close {
    top: 22px;
    width: 14px;
  }
  .modal .left_column img {
    max-width: 300px;
    margin: auto;
    text-align: center;
  }

  .modal .left_column .img_block {
    text-align: center;
  }
  .rev_image_content_section.image_content_section .two_column:last-child .wrapper {
    flex-direction: column-reverse;
  }
  .meet_the_author {
    padding: 50px 0;
    margin-top: 0px;
  }
  .our_process .img_block.mobile_image {
    display: block; 
  }
  .our_process .img_block.desktop_image {
    display: none;
  }
}


@media (max-width: 640px) {
  .gform_wrapper .ginput_container.ginput_complex .gform-grid-col {
      margin-bottom: 16px;
  }
  .gform_wrapper .ginput_container.ginput_complex .gform-grid-col:last-of-type {
    margin-bottom: 0;
}
}

@media (max-width: 576px) {
  .team_single_banner .member_contact {
    display: block;
    text-align: center;
  }
  .team_single_banner .member_numbers {
    justify-content: center;
  }
  .four_column_icon .item {
    width: 100%;
  }
  .four_column_icon .item:last-child {
    margin-bottom: 0px;
  }
  .video__section .playpause img {
    width: 45px;
  }
  .three_column_team .wrapper .column {
    width: 100%;
  }
  .four_column_team.team_wrapper .wrapper .column {
    width: 100%;
  }
  .team_wrapper .wrapper .column .team_block img {
    height: 450px;
  }
}
