


/* Sehemu ya Sponsor */
.sponsor-section {
    width: 100%;
    overflow: hidden; /* Zuia scroll bar isionekane */
    background-color: #f8f8f8;
    padding: 10px 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Container ya mabanners yote */
  .sponsor-container {
    display: flex;
    white-space: nowrap; /* Zuia mabanners yasivunjike mstari */
    animation: slide-left 15s linear infinite; /* Muda wa ku-slide */
  }
  
  /* Kila banner moja moja */
  .sponsor-banner {
    flex-shrink: 0;
    padding: 0 20px; /* Nafasi kati ya banners */
  }
  
  /* Picha za mabanners */
  .sponsor-banner img {
    max-width: 150px;
    max-height: 100px;
    height: auto;
    border-radius: 10px;
  }
  
  /* Keyframes: Kutoka kulia kwenda kushoto */
  @keyframes slide-left {
    0% {
      transform: translateX(100%); /* Banner zinaanza nje ya skrini kulia */
    }
    100% {
      transform: translateX(-100%); /* Zinafika nje ya skrini kushoto */
    }
  }
  
  /* Kichwa cha sponsor */
  .sponsor-title {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .sponsor-title h2 {
    font-size: 24px;
    font-weight: bold;
  }
  
  /* Responsive kwa simu */
  @media only screen and (max-width: 768px) {
    .sponsor-banner {
      padding: 0 10px; /* Punguza nafasi kati ya banners kwa simu */
    }
  }
  
  






.image-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.thumbnail {
    width: 100px;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.2s;
    margin: 10px;
}

.thumbnail:hover {
    transform: scale(1.1);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    height: auto;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}




.kitano-chat-box {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 300px;
    position: fixed;
    bottom: 80px;
    right: 30px;
    display: none; /* Initially hidden */
    z-index: 1000; /* Ensures the chat box is on top */
}

.kitano-chat-header {
    background-color: rgb(49 5 5);
    color: white;
    padding: 15px;
    text-align: center;
}

.kitano-chat-header h3 {
    margin: 0;
    font-size: 18px;
}

.kitano-chat-header p {
    margin: 5px 0 0;
}

.kitano-chat-conversations {
    padding: 10px;
}

.kitano-conversation {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #f1f1f1;
}

.kitano-conversation.kitano-active {
    background-color: #e8f5e9;
}

.kitano-user-icon {
    border-radius: 50% !important;
    height: 40px !important;
    width: 40px !important;
    margin-right: 10px !important;
}

.kitano-conversation-info {
    flex: 1;
}

.kitano-conversation-info p {
    margin: 0;
}

.kitano-new-conversation {
    background-color: #af773f !important;
    border: none !important;
    color: white !important;
    padding: 10px !important;
    text-align: center !important;
    width: 100% !important;
    cursor: pointer !important;
}

.kitano-new-conversation:hover {
    background-color: rgb(49 5 5) !important;
}

.kitano-chat-button {
    background-color: #af773f !important;
    border: none !important;
    border-radius: 50% !important;
    width: 60px !important;
    height: 60px !important;
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    cursor: pointer !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    z-index: 1000 !important; /* Ensures the chat button is on top */
    transition: background-color 0.3s !important; /* Smooth transition for background color change */
}

.kitano-chat-icon {
    width: 110px !important;
    height: 110px !important;
  
}

/* Make the background transparent when the button is clicked */
.kitano-chat-button.kitano-transparent {
    background-color: transparent !important;
    box-shadow: none !important; /* Optional: Remove the shadow as well */
}








.manager-card {
    margin: 40px 0 73px;
  }
  
  @media(max-width: 767px) {
    .manager-card {
        margin:30px 0 50px;
    }
  }
  
  .manager-card__wrap {
    border: 1px solid #421212;
    border-radius: 22px;
    display: flex;
    padding: 32px 29px 21px;
  }
  
  .kitano-card__wrap {
    border: 1px solid #421212;
    border-radius: 22px;
  
    padding: 32px 29px 21px;
  }
  
  
  @media(max-width: 767px) {
    .manager-card__wrap {
        align-items:center;
        flex-direction: column
    }
  }
  
  .manager-card__img {
    margin-right: 44px;
    max-width: 200px;
    width: 100%
  }
  
  @media(max-width: 767px) {
    .manager-card__img {
        margin-right:0
    }
  }
  
  .manager-card__img img {
    display: block
  }
  
  @media(max-width: 767px) {
    .manager-card__content {
        text-align:center
    }
  }
  
  .manager-card__name {
    grid-gap: 7px;
    align-items: center;
    display: flex;
    font-weight: 500;
    gap: 7px;
    line-height: 1.5;
    margin-bottom: 9px
  }
  
  @media(max-width: 767px) {
    .manager-card__name {
        flex-wrap:wrap;
        justify-content: center
    }
  }
  
  .manager-card__hint {
    background-color: rgba(119,176,23,.15);
    border-radius: 8px;
    color: #7f9953;
    font-size: 13px;
    line-height: 1;
    padding: 5px 7px
  }
  
  .manager-card__location {
    grid-gap: 10px;
    align-items: center;
    color: #7f9953;
    display: flex;
    font-size: 12px;
    gap: 10px;
    line-height: 1;
    margin-left: 9px
  }
  
  @media(max-width: 480px) {
    .manager-card__location {
        margin-left:0
    }
  }
  
  .manager-card__location img {
    display:flow-root
  }
  
  .manager-card__location span {
    margin-top: 1px
  }
  
  .manager-card__title {
    -webkit-font-feature-settings: "salt" on;
    font-feature-settings: "salt" on;
    -webkit-font-feature-settings: "ss01" on,"ss09" on,lining-nums proportional-nums;
    font-feature-settings: "ss01" on,"ss09" on,lining-nums proportional-nums;
    font-family: var(--font-second);
    font-size: 23px;
    font-variant-numeric: lining-nums proportional-nums;
    font-weight: 800;
    line-height: 1.04;
    margin-bottom: 17px
  }
  
  .manager-card__text {
    -webkit-font-feature-settings: "salt" on,lining-nums proportional-nums;
    font-feature-settings: "salt" on,lining-nums proportional-nums;
    color: var(--color-text-base);
    font-family: var(--font-second);
    font-variant-numeric: lining-nums proportional-nums;
    line-height: 1.8
  }
  
  .manager-card__buttons {
    grid-gap: 16px;
    display: flex;
    gap: 16px
  }
  
  @media(max-width: 991px) {
    .manager-card__buttons {
        justify-content:center
    }
  }
  
  .manager-card__button {
    margin-top: 20px;
    padding: 15px 13px
  }
  
  .manager-card__button img {
    height: 18px;
    width: 48px
  }
  
  @media(max-width: 991px) {
    .manager-card__button:nth-child(2) {
        display:none
    }
  }
  
  
  
  



.special-cards {
    margin: 20px 0 40px
    
  }
  
  .special-cards__inner {
    grid-gap: 20px;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2,1fr)
  }
  
  @media(max-width: 767px) {
    .special-cards__inner {
        grid-template-columns:repeat(1,1fr)
    }
  }
  
  .special-card {
    background: var(--color-background);
    border: 1px solid #381616;
    border-radius: 10px;
    box-shadow: 0 1px 9px 0 rgba(0,0,0,.06);
    padding: 19px 30px;
    box-shadow: inset -1px 3px 8px 5px rgba(255, 254, 254, 0.514), 2px 5px 16px 0px #16283863, 5px 5px 15px 5px rgba(0,0,0,0);
  }
  
  .special-card--last {
    grid-column: span 2
  }
  
  @media(max-width: 767px) {
    .special-card--last {
        grid-column:span 1
    }
  }
  
  .special-card__head,.special-card__icon {
    align-items: center;
    display: flex
  }
  
  .special-card__icon {
    flex-shrink: 0;
    height: 39px;
    justify-content: flex-start;
    margin-right: 10px;
    width: 39px
  }
  
  .special-card__title {
    -webkit-font-feature-settings: "salt" on;
    font-feature-settings: "salt" on;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.05
  }
  
  .special-card__desc {
    -webkit-font-feature-settings: "salt" on;
    font-feature-settings: "salt" on;
    -webkit-font-feature-settings: "salt" on,lining-nums proportional-nums;
    font-feature-settings: "salt" on,lining-nums proportional-nums;
    color: var(--color-text-base);
    font-family: var(--font-second);
    font-variant-numeric: lining-nums proportional-nums;
    line-height: 1.5;
    margin-top: 20px
  }
  
  .special-card__subtitle {
    -webkit-font-feature-settings: "salt" on;
    font-feature-settings: "salt" on;
    -webkit-font-feature-settings: "salt" on,lining-nums proportional-nums;
    font-feature-settings: "salt" on,lining-nums proportional-nums;
    display: flex;
    font-family: var(--font-second);
    font-size: 13px;
    font-variant-numeric: lining-nums proportional-nums;
    font-weight: 500
  }
  
  .special-card__reviews {
    -webkit-font-feature-settings: "salt" on,lining-nums proportional-nums;
    font-feature-settings: "salt" on,lining-nums proportional-nums;
    border-bottom: 1px solid #00aa6c;
    color: var(--color-text-base);
    font-family: var(--font-second);
    font-size: 14px;
    font-variant-numeric: lining-nums proportional-nums;
    font-weight: 500;
    letter-spacing: -.28px;
    line-height: 1.5;
    text-decoration: none
  }
  
  .rating {
    align-items: center;
    display: flex;
    justify-content: center
  }
  
  .rating--star {
    justify-content: flex-start
  }
  
  .rating--star .rating__list {
    grid-gap: 1px;
    gap: 1px;
    margin-right: 0
  }
  
  .rating--star .rating__circle {
    background-color: transparent;
    
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0;
    height: 11px;
    width: 11px
  }
  
  .rating--star.rating--star-white .rating__circle {
  
  }
  
  .rating__list {
    grid-gap: 3px;
    display: flex;
    gap: 3px;
    margin-right: 15px
  }
  
  .rating__circle {
    background-color: #00aa6c;
    border-radius: 50%;
    height: 14px;
    width: 14px
  }
  
  .rating__star {
    color: #ffcc00; /* Adjust star color */
    font-size: 23px; /* Adjust star size */
  }
  
  .rating__reviews {
    -webkit-font-feature-settings: "salt" on,lining-nums proportional-nums;
    font-feature-settings: "salt" on,lining-nums proportional-nums;
    border-bottom: 1px solid #00aa6c;
    color: var(--color-text-base);
    font-family: var(--font-second);
    font-variant-numeric: lining-nums proportional-nums;
    letter-spacing: -.02em;
    text-decoration: none;
    transition: color .3s
  }
  
  .rating__reviews:hover {
    color: #00aa6c
  }



.slide {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out; /* Add transition property */
  }
  
  .slide.active {
    display: block;
    opacity: 1;
  }
  



h1 {
    color: rgb(245, 106, 55);
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
  }

  .table td{

    
    border: 1px solid #cd4f4f;
  }


.tour-mig-lc-img img {
    width: 100%;
    border-radius: 5px;}
   
.col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;}


#tailor-head{
    font-family: 'Pacifico', cursive;
    text-align: center;
    text-shadow: 1.3px 1.3px rgba(3,3,3,.5);
    color:rgb(53, 3, 3);
  }
html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: linear-gradient(rgba(76,75,79,.75), rgba(76,75,79,.75)), !important;
	background-position: center center !important;
	background-size: cover !important;
	background-attachment: fixed !important;
	background-repeat: no-repeat !important;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}

a {
    background-color: transparent style="background:url(wp-content/uploads/sites/24/2018/05/img20-1.jpg) no-repeat" style="body"
}

a:active,
a:hover {
    outline: 0;
}

abbr[title] {
    border-bottom: 1px dotted;
}

b,
strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

mark {
    background: #ff0;
    color: #000;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 1em 40px;
}

hr {
    box-sizing: content-box;
    height: 0;
}

pre {
    overflow: auto;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input {
    line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
    color: rgb(7, 6, 6);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.750em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
    margin-top: 0;
}

p {
    margin-bottom: 1.5em;
    margin-top: 0;
}

dfn,
cite,
em,
i {
    font-style: italic;
}

blockquote {
    margin: 0 1.5em;
}

address {
    margin: 0 0 1.5em;
}

pre {
    background: rgb(248, 240, 240);
    font-family: "Courier 10 Pitch", Courier, monospace;
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}

code,
kbd,
tt,
var {
    font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
    font-size: 15px;
    font-size: 0.9375rem;
}

abbr,
acronym {
    border-bottom: 1px dotted rgb(0, 0, 0);
    cursor: help;
}

mark,
ins {
    background: #9b9ea1;
    text-decoration: none;
}

big {
    font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
    box-sizing: inherit;
}

body {
    background: rgb(248, 244, 244);
    /* Fallback for when there is no custom background color defined. */
}

hr {
    background-color: rgb(255, 243, 243);
    border: 0;
    height: 1px;
    margin-bottom: 1.5em;
}

ul,
ol {
    margin: 0 0 1.5em 0;
    padding: 0 0 0 20px;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

li>ul,
li>ol {
    margin-bottom: 0;
    margin-left: 1.5em;
}

dt {
    font-weight: bold;
}

dd {
    margin: 0 1.5em 1.5em;
}

img {
    height: auto;
    /* Make sure images are scaled correctly. */
    max-width: 100%;
    /* Adhere to container width. */
}

figure {
    margin: 1em 0;
    /* Extra wide images within figure tags don't overflow the content area. */
}

table {
    margin: 0 0 1.5em;
    width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
    color: rgb(#ffaf46);
    text-decoration: none;
}

a:hover,
a:focus,
a:active {
    text-decoration: underline;
}

a:focus {
    outline: thin dotted;
}

a:hover,
a:active {
    outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.home-link,
#primary-toggle-button {
    display: none;
}

.nav-holder {
    background: rgb(51, 6, 6);
    border-top: 1px solid #b68b17;
    border-bottom: 1px solid #b68b17;
}

.main-navigation {
    display: block;
    width: 100%;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
}

.main-navigation ul:after {
    content: '';
    display: block;
    clear: both;
}

.main-navigation ul li {
    float: left;
    position: relative;
    margin-right: 50px;
}

.main-navigation ul li:last-child {
    margin-right: 0;
}

.main-navigation ul li a {
    display: block;
    text-decoration: none;
    color: rgba(241, 241, 241, 0.849);
    padding: 19px 0 21px;
    transition: linear 0.2s;
}

.main-navigation ul li.menu-item-has-children {
    padding-right: 17px;
}

.main-navigation ul li.menu-item-has-children:after {
    content: '';
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23111' viewBox='0 0 320 512'%3E%3Cpath d='M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z'/%3E%3C/svg%3E") center center no-repeat;
    width: 9px;
    height: 28px;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: linear 0.2s;
}

.main-navigation ul li:hover:after,
.main-navigation ul li:focus:after {
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2332b67a' viewBox='0 0 320 512'%3E%3Cpath d='M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z'/%3E%3C/svg%3E") center center no-repeat;
}

.main-navigation ul li a:hover,
.main-navigation ul li a:focus,
.main-navigation .current_page_item>a,
.main-navigation .current-menu-item>a,
.main-navigation .current_page_ancestor>a,
.main-navigation .current-menu-ancestor>a {
    color: rgb(207, 23, 23);
}

.main-navigation ul ul {
    background: rgb(51, 6, 6);
    width: 290px;
    border: 1px solid rgb(136, 130, 130);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    font-size: 14px;
    line-height: 36px;
    font-weight: 400;
    padding: 10px;
    display: none;
    text-transform: none;
    z-index: 2;
}

@media only screen and (min-width: 1025px) {
    .main-navigation ul li:hover>ul {
        display: block !important;
    }
}

.main-navigation ul ul li {
    margin: 0 0 2px;
    float: none;
    display: block;
    padding: 0 10px;
}

.main-navigation ul ul li:hover,
.main-navigation ul ul li:focus,
.main-navigation ul ul .current_page_item,
.main-navigation ul ul .current-menu-item,
.main-navigation ul ul .current_page_ancestor,
.main-navigation ul ul .current-menu-ancestor {
    background: #858181;
}

.main-navigation ul ul .current_page_item>a,
.main-navigation ul ul .current-menu-item>a,
.main-navigation ul ul .current_page_ancestor>a,
.main-navigation ul ul .current-menu-ancestor>a {
    color: rgb(219, 219, 219);
}

.main-navigation ul ul li a {
    padding: 0 14px 0 0;
}

.main-navigation ul ul li a:hover,
.main-navigation ul ul li a:focus {
    color: rgb(219, 219, 219);
}

.main-navigation ul ul li.menu-item-has-children:after {
    right: 10px;
    top: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.main-navigation ul ul li:hover:after,
.main-navigation ul ul li:focus:after {
    color: rgb(0, 0, 0);
}

.main-navigation ul ul ul {
    left: 268px;
    top: 0;
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
    margin: 0 0 1.5em;
    overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
    float: left;
    width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
    float: right;
    text-align: right;
    width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    word-wrap: normal !important;
    /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
    background-color: #fdfdfd;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
    outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;
}

.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
    content: "";
    display: table;
    table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
    clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
    margin: 0 0 1.5em;
    /* Make sure select elements fit in widgets. */
}

.widget select {
    max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
    display: block;
}

.hentry {
    margin: 0 0 1.5em;
}

.updated:not(.published) {
    display: none;
}

.page-content,
.entry-content,
.entry-summary {
    margin: 1.5em 0 0;
}

.page-links {
    clear: both;
    margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
    word-wrap: break-word;
}

.bypostauthor {
    display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
    /* Theme Footer (when set to scrolling) */
    display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
    display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
    max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
    display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

.wp-caption-text {
    text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
    margin-bottom: 1.5em;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
}

.gallery-columns-2 .gallery-item {
    max-width: 50%;
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}

.gallery-columns-5 .gallery-item {
    max-width: 20%;
}

.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
}

.gallery-caption {
    display: block;
}

/*===================================
 General site style
 ===================================*/
.container {
    /*max-width: 1290px;*/
    max-width: 1320px;
    padding: 0 15px;
    margin: 0 auto;
}

.container:after {
    content: '';
    display: block;
    clear: both;
}

.row {
    margin-left: 0px;
    margin-right: 0px;
}

.row:after {
    content: '';
    display: block;
    clear: both;
}

.site {
    background: rgba(255, 255, 255, 0.623);
}

.custom-background .site {
    max-width: 90%;
    margin: 0 auto;
}

.overall-rating-wrap {
    margin: 0 0 50px;
}

.overall-rating-wrap .rating-bar-outer-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 10px;
}

.overall-rating-wrap .rating-bar-outer-wrap .rating-bar {
    width: calc(100% - 200px);
    height: 12px;
    border-radius: 0;
    margin: 0 70px 0 10px;
    background: #EAEAEA;
    position: relative;
    display: block;
    -webkit-transition: 0.4s linear;
    -moz-transition: 0.4s linear;
    -ms-transition: 0.4s linear;
    -o-transition: 0.4s linear;
    transition: 0.4s linear;
    transition-property: all;
    -webkit-transition-property: width, background-color;
    -moz-transition-property: width, background-color;
    -ms-transition-property: width, background-color;
    -o-transition-property: width, background-color;
    transition-property: width, background-color;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
}

.overall-rating-wrap .rating-bar-outer-wrap .rating-bar .rating-bar-inner {
    height: 100%;
    border-radius: 0;
    background: rgb(51, 6, 6);
    position: absolute;
    top: 0;
}

.overall-rating-wrap .rating-bar-outer-wrap .rating-bar .rating-bar-inner .percent {
    position: fixed;
    left: auto;
    right: -60px;
    text-align: right;
    height: 100%;
    line-height: 1;
    top: -3px;
}

.review-wrap .average-rating {
    border: 0;
    display: block;
    margin: 0 0 40px;
    padding: 0 0 40px;
    border-bottom: 2px solid #E4E4E4;
}

.review-wrap .average-rating .agg-rating {
    padding: 0;
    width: auto !important;
    display: inline-block;
    vertical-align: middle;
}

.review-wrap .average-rating .aggregate-rating .stars {
    display: inline-block;
    color: rgba(255, 255, 255, 0.623);
    background: rgb(51, 6, 6);
    border-radius: 4px;
    line-height: 1.5em;
    padding: 2px 20px;
    position: relative;
}

.review-wrap .average-rating .aggregate-rating .stars:before {
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-right: 5px solid rgb(51, 6, 6);
    border-bottom: 5px solid transparent;
    position: absolute;
    top: 7px;
    left: -5px;
    content: '';
    -webkit-transform: none;
    -moz-transform: none;
    transform: none;
}

.review-wrap .average-rating .aggregate-rating .stars .rating-star {
    display: inline-block;
}

.trip-search-result #primary .advanced-search-wrapper .sidebar ul ul {
    padding-left: 15px;
    font-size: 1em;
    margin-top: 10px;
}

.trip-search-result #primary .advanced-search-wrapper .sidebar ul ul li:last-child {
    margin-bottom: 0;
}

.grid .col .review-wrap .average-rating {
    margin-bottom: 10px;
    padding-bottom: 0;
    border-bottom: none;
}

/*================================
 Header style
 ================================*/
.site-header .header-t {
    background: rgb(51, 6, 6);
    color: rgba(255, 255, 255, 0.623);
    padding: 6px 0;
}

/*=====================================
 Header-top social network style
 ======================================*/
.site-header {
    position: relative;
    z-index: 10;
}

.site-header .social-networks {
    float: left;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-header .social-networks li {
    float: left;
    margin-right: 20px;
}

.site-header .social-networks li a {
    color: rgba(255, 255, 255, 0.623);
    display: block;
    transition: linear 0.2s;
}

.site-header .social-networks li a:hover,
.site-header .social-networks li a:focus {
    text-decoration: none;
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}

.site-header .tools {
    float: right;
}

.site-header .tools .form-section {
    float: right;
    position: relative;
}

.site-header .tools .form-section a {
    color: rgba(255, 255, 255, 0.623);
    font-size: 16px;
}

.site-header .tools .form-section a:focus {
    outline: none;
}

.site-header .tools .form-section .form-holder {
    position: absolute;
    top: 34px;
    right: -20px;
    width: 230px;
    background: #ff9;
    padding: 6px 10px;
    border: 1px solid rgb(161, 114, 114);
    display: none;
}

.site-header .tools .form-section .form-holder:before {
    width: 10px;
    height: 7px;
    background: #ff9;
    top: -1px;
    right: 20px;
    content: '';
    position: absolute;
    z-index: 1;
}

.site-header .tools .form-section .form-holder:after {
    width: 10px;
    height: 10px;
    background: #ff9;
    border: 1px solid rgb(161, 114, 114);
    position: absolute;
    top: -5px;
    right: 20px;
    content: '';
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.site-header .tools .form-section .form-holder .search-form label {
    width: 100%;
}

.site-header .tools .form-section .form-holder .search-form input[type="search"] {
    font-size: 14px;
    color: rgb(219, 219, 219);
    background: none;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    width: 100%;
}

.site-header .tools .form-section .form-holder .search-form input[type="submit"] {
    display: none;
}

.site-header .language-dropdown {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 13px;
    float: right;
    text-transform: uppercase;
    padding-right: 20px;
    margin-right: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header .languages {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-header .languages li {
    position: relative;
    padding-right: 15px;
}

.site-header .languages li a {
    color: rgba(255, 255, 255, 0.623);
}

.site-header .languages li a:hover,
.site-header .languages li a:focus {
    text-decoration: none;
}

.site-header .languages ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 92px;
    background: rgba(255, 255, 255, 0.623);
    border: 1px solid rgba(255, 255, 255, 0.623);
    margin: 0;
    padding: 5px;
    list-style: none;
    font-size: 13px;
    text-transform: uppercase;
}

.site-header .languages li:hover>ul {
    display: block;
}

.site-header .languages ul li:after {
    display: none;
}

.site-header .languages ul li {
    padding: 0;
}

.site-header .languages ul li a {
    color: #000;
    display: block;
}

.site-header .languages ul li a:hover,
.site-header .languages ul li a:focus {
    text-decoration: none;
    background: #553535;
}

.header-b {
    padding: 40px 0;
}

.site-branding {
    float: left;
}

.site-branding .custom-logo-link {
    display: inline-block;
    margin-right: 9px;
    vertical-align: middle;
}

.site-branding .custom-logo-link img {
    vertical-align: top;
}

.site-branding .text-logo {
    display: inline-block;
    vertical-align: middle;
}

.site-branding .site-title {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.33em;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.site-branding .site-title a {
    color: rgb(156, 103, 33);
    transition: linear 0.2s;
}

.site-branding .site-title a:hover,
.site-branding .site-title a:focus {
    text-decoration: none;
    color: rgb(51, 6, 6);
}

.site-branding .site-description {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.071em;
    margin: 0 0 0 8px;
    letter-spacing: 1px;
}

.header-b .right {
    float: right;
    margin: 9px 0 0;
    text-align: right;
}

.header-b .right .phone-label {
    display: block;
    font-size: 14px;
    letter-spacing: -0.05em;
    margin: 0 0 3px;
}

.header-b .right .tel-link {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -0.03em;
    transition: linear 0.2s;
}

/*==================================
 Banner style
 ==================================*/
.banner {
    position: relative;
}

.banner img {
    vertical-align: top;
    width: 100%;
    background: linear-gradient(rgba(76, 75, 79, 0.89), rgba(76, 75, 79, 0.87)),
    /*height: 680px;
	object-fit: cover;*/
}

.banner .form-holder a.btn-banner {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.623);
    border-radius: 5px;
    text-transform: uppercase;
    padding: 10px 35px;
    color: rgba(255, 255, 255, 0.623);
    text-decoration: none;
    text-shadow: none;
    font-family: 'Montserrat', sans-serif;
    -webkit-transition: linear 0.2s;
    -moz-transition: linear 0.2s;
    transition: linear 0.2s;
}

.banner .form-holder a.btn-banner:hover {
    border-color: rgb(51, 6, 6);
    background: rgb(51, 6, 6);
}

.banner .form-holder {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    text-align: center;
    max-width: 690px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.banner .form-holder .text {
    margin: 0 0 50px;
    text-shadow: 0 4px 2px rgba(0, 0, 0, 0.2);
    font-size: 20px;
    line-height: 1.65em;
    color: rgba(255, 255, 255, 0.623);
}

.banner .form-holder .text h1,
.banner .form-holder .text h2 {
    font-size: 58px;
    line-height: 1.103em;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

.banner .form-holder .search-form {
    max-width: 640px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    padding: 15px;
    text-align: left;
}

.banner .form-holder .search-form:after {
    content: '';
    display: block;
    clear: both;
}

.banner .form-holder .search-form label {
    float: left;
    width: 450px;
    margin-right: 10px;
}

.banner .form-holder .search-form input[type="search"] {
    width: 100%;
    margin: 0;
    padding: 0 15px;
    border: 5px;
    background: rgba(255, 255, 255, 0.623);
    height: 45px;
    -webkit-appearance: none;
}

.banner .form-holder .search-form input[type="submit"] {
    float: right;
    width: 149px;
    height: 45px;
    text-align: center;
    background: rgb(51, 6, 6) url(images/bg-search.png) no-repeat 30px 15px;
    border-radius: 5px;
    border: 0;
    color: #fefefe;
    font-size: 17px;
    line-height: 45px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    padding: 0;
    text-indent: 20px;
}

/*========================================
 Banner Slider style
 =======================================*/
.bslider {
    background: #000;
}

.bslider img {
    height: 680px;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: 0.7 !important;
}

.bslider .banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 690px;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.bslider .banner-text .title {
    font-size: 58px;
    line-height: 1.103em;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    margin: 0 0 20px;
    display: block;
    text-shadow: 0 4px 2px rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.623);
}

.bslider .banner-text .btn {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    border: 2px solid rgb(51, 6, 6);
    background: rgb(51, 6, 6);
    border-radius: 5px;
    color: rgba(255, 255, 255, 0.623);
    text-transform: uppercase;
    padding: 10px 30px;
    font-family: 'Montserrat', sans-serif;
    transition: linear 0.2s;
}

.bslider .banner-text .btn:hover,
.bslider .banner-text .btn:focus {
    background: none;
    text-decoration: none;
}

.bslider .owl-dots {
    display: none;
}

.bslider .owl-prev {
    position: absolute;
    top: 50%;
    left: 10%;
    width: 60px;
    height: 60px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.bslider .owl-prev:after {
    width: 9px;
    height: 28px;
    content: '';
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 192 512'%3E%3Cpath d='M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z'/%3E%3C/svg%3E") center center no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 25px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.bslider .owl-next {
    position: absolute;
    top: 50%;
    right: 10%;
    width: 60px;
    height: 60px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.bslider .owl-next:after {
    width: 9px;
    height: 28px;
    content: '';
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 192 512'%3E%3Cpath d='M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z'/%3E%3C/svg%3E") center center no-repeat;
    position: absolute;
    top: 50%;
    right: 50%;
    font-size: 25px;
    -webkit-transform: translate(100%, -50%);
    transform: translate(100%, -50%);
}

.bslider .owl-prev svg,
.bslider .owl-next svg {
    position: absolute;
    top: -2px;
    left: -2px;
}

.bslider .owl-prev svg circle,
.bslider .owl-next svg circle {
    stroke-dasharray: 322;
    stroke-width: 2;
    transition: stroke-dashoffset 0.5s;
    -webkit-animation-play-state: running;
    animation-play-state: running;
    stroke-dashoffset: 133;
}

.bslider .owl-prev:hover circle,
.bslider .owl-next:hover circle {
    -webkit-animation: cirlceanimatebig 0.5s;
    animation: cirlceanimatebig 0.5s;
    stroke: rgb(51, 6, 6);
}

/*====================================
 Banner video
 ======================================*/
.video-banner {
    /*max-height: 680px;
	overflow: hidden;*/
    min-height: 387px;
}

.video-banner .wp-custom-header-video-button {
    position: absolute;
    bottom: 10px;
    right: 25px;
    background: none;
    border: 0;
    font-size: 0;
    padding: 0;
    margin: 0;
    z-index: 2;
}

.video-banner .wp-custom-header-video-play:after {
    width: 18px;
    height: 20px;
    content: '';
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 448 512'%3E%3Cpath d='M144 479H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zm304-48V79c0-26.5-21.5-48-48-48h-96c-26.5 0-48 21.5-48 48v352c0 26.5 21.5 48 48 48h96c26.5 0 48-21.5 48-48z'/%3E%3C/svg%3E") center center no-repeat;
    position: absolute;
    right: 10px;
    bottom: 10px;
}

.video-banner .wp-custom-header-video-pause:after {

    width: 18px;
    height: 20px;
    content: '';
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 448 512'%3E%3Cpath d='M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z'/%3E%3C/svg%3E") center center no-repeat;
    position: absolute;
    right: 10px;
    bottom: 10px;
}

.video-banner .wp-custom-header {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    padding-top: 25px;
    height: 0;
}

.video-banner .wp-custom-header video,
.video-banner .wp-custom-header iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/*======================================
 Trip search style
 ======================================*/
.trip-search {
    margin: -85px 0 60px;
    position: relative;
    z-index: 1;
}

.trip-search h3 {
    font-size: 20px;
    font-weight: 400;
    margin: 0 0 10px 26px;
    line-height: 1.4em;
    color: rgba(255, 255, 255, 0.623);
    font-family: 'Montserrat', sans-serif;
}

.trip-search form {
    background: rgba(255, 255, 255, 0.623);
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.trip-search form .class-wte-advanced-search-wrapper {
    margin: 0;
}

.trip-search form .advanced-search-field h3 {
    font-size: 13px;
    font-weight: 400;
    margin: 0 0 5px;
    color: rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.trip-search form .trip-destination,
.trip-search form .trip-activities,
.trip-search form .trip-duration,
.trip-search form .trip-cost,
.trip-search form .trip-dates {
    padding: 19px 25px;

}

.trip-search form .advanced-search-field select {
    width: 100%;
    border: 0;
    font-weight: 500;
    color: rgb(219, 219, 219);
}

.trip-search form .advanced-search-field .custom-select {
    position: relative;
    padding-left: 20px;
}

.trip-search form .advanced-search-field .custom-select:after {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 29px;
    line-height: 29px;
    pointer-events: none;
    content: '';
    background: rgba(255, 255, 255, 0.623) url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%238d8d8d' viewBox='0 0 320 512'%3E%3Cpath d='M151.5 347.8L3.5 201c-4.7-4.7-4.7-12.3 0-17l19.8-19.8c4.7-4.7 12.3-4.7 17 0L160 282.7l119.7-118.5c4.7-4.7 12.3-4.7 17 0l19.8 19.8c4.7 4.7 4.7 12.3 0 17l-148 146.8c-4.7 4.7-12.3 4.7-17 0z'/%3E%3C/svg%3E") center center no-repeat;
    background-size: 0.7em;
}

.trip-search form .advanced-search-field .custom-select:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2332b67a' viewBox='0 0 384 512'%3E%3Cpath d='M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z'/%3E%3C/svg%3E") center center no-repeat;
    width: 12px;
    height: 28px;
}

.trip-search form .trip-activities .custom-select:before {
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2332b67a' viewBox='0 0 384 512'%3E%3Cpath d='M380.15 510.837a8 8 0 0 1-10.989-2.687l-125.33-206.427a31.923 31.923 0 0 0 12.958-9.485l126.048 207.608a8 8 0 0 1-2.687 10.991zM142.803 314.338l-32.54 89.485 36.12 88.285c6.693 16.36 25.377 24.192 41.733 17.501 16.357-6.692 24.193-25.376 17.501-41.734l-62.814-153.537zM96 88c24.301 0 44-19.699 44-44S120.301 0 96 0 52 19.699 52 44s19.699 44 44 44zm154.837 169.128l-120-152c-4.733-5.995-11.75-9.108-18.837-9.112V96H80v.026c-7.146.003-14.217 3.161-18.944 9.24L0 183.766v95.694c0 13.455 11.011 24.791 24.464 24.536C37.505 303.748 48 293.1 48 280v-79.766l16-20.571v140.698L9.927 469.055c-6.04 16.609 2.528 34.969 19.138 41.009 16.602 6.039 34.968-2.524 41.009-19.138L136 309.638V202.441l-31.406-39.816a4 4 0 1 1 6.269-4.971l102.3 129.217c9.145 11.584 24.368 11.339 33.708 3.965 10.41-8.216 12.159-23.334 3.966-33.708z'/%3E%3C/svg%3E") center center no-repeat;
    width: 16px;
    height: 28px;
}

.trip-search form .trip-dates .custom-select:before {
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2332b67a' viewBox='0 0 448 512'%3E%3Cpath d='M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm116 204c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm128 128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm128 128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40z'/%3E%3C/svg%3E") center center no-repeat;
    width: 14px;
    height: 28px;
}

.trip-search form .trip-duration strong {
    display: block;
    font-weight: 500;
    color: rgb(219, 219, 219);
    padding-left: 25px;
    position: relative;
}

.trip-search form .trip-duration strong:after {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 29px;
    line-height: 29px;
    pointer-events: none;
    content: '';
    background: rgba(255, 255, 255, 0.623) url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%238d8d8d' viewBox='0 0 320 512'%3E%3Cpath d='M151.5 347.8L3.5 201c-4.7-4.7-4.7-12.3 0-17l19.8-19.8c4.7-4.7 12.3-4.7 17 0L160 282.7l119.7-118.5c4.7-4.7 12.3-4.7 17 0l19.8 19.8c4.7 4.7 4.7 12.3 0 17l-148 146.8c-4.7 4.7-12.3 4.7-17 0z'/%3E%3C/svg%3E") center center no-repeat;
    background-size: 0.7em;
}

.trip-search form .trip-duration strong:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2332b67a' viewBox='0 0 448 512'%3E%3Cpath d='M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm116 204c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm128 128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm128 128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40z'/%3E%3C/svg%3E") center center no-repeat;
    width: 14px;
    height: 28px;
}

.trip-search form .trip-cost strong {
    display: block;
    font-weight: 500;
    color: rgb(219, 219, 219);
    padding-left: 20px;
    position: relative;
}

.trip-search form .trip-cost strong:after {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 29px;
    line-height: 29px;
    pointer-events: none;
    content: '';
    background: rgba(255, 255, 255, 0.623) url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%238d8d8d' viewBox='0 0 320 512'%3E%3Cpath d='M151.5 347.8L3.5 201c-4.7-4.7-4.7-12.3 0-17l19.8-19.8c4.7-4.7 12.3-4.7 17 0L160 282.7l119.7-118.5c4.7-4.7 12.3-4.7 17 0l19.8 19.8c4.7 4.7 4.7 12.3 0 17l-148 146.8c-4.7 4.7-12.3 4.7-17 0z'/%3E%3C/svg%3E") center center no-repeat;
    background-size: 0.7em;
}

.trip-search form .trip-cost strong:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2332b67a' viewBox='0 0 288 512'%3E%3Cpath d='M211.9 242.1L95.6 208.9c-15.8-4.5-28.6-17.2-31.1-33.5C60.6 150 80.3 128 105 128h73.8c15.9 0 31.5 5 44.4 14.1 6.4 4.5 15 3.8 20.5-1.7l22.9-22.9c6.8-6.8 6.1-18.2-1.5-24.1C240.4 74.3 210.4 64 178.8 64H176V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48h-2.5C60.3 64 14.9 95.8 3.1 143.6c-13.9 56.2 20.2 111.2 73 126.3l116.3 33.2c15.8 4.5 28.6 17.2 31.1 33.5C227.4 362 207.7 384 183 384h-73.8c-15.9 0-31.5-5-44.4-14.1-6.4-4.5-15-3.8-20.5 1.7l-22.9 22.9c-6.8 6.8-6.1 18.2 1.5 24.1 24.6 19.1 54.6 29.4 86.3 29.4h2.8v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48h2.5c49.2 0 94.6-31.8 106.4-79.6 13.9-56.2-20.2-111.2-73-126.3z'/%3E%3C/svg%3E") center center no-repeat;
    width: 9px;
    height: 28px;
}

.trip-search form .advanced-search-field-submit input[type="submit"] {
    border-radius: 0 5px 5px 0;
    width: 100%;
    height: 100%;
    font-size: 16px;
    letter-spacing: 1px;
}

.trip-search form .advanced-search-field-submit input[type="submit"]:hover,
.trip-search form .advanced-search-field-submit input[type="submit"]:focus {
    background: rgb(51, 6, 6);
    color: rgba(255, 255, 255, 0.623);
    opacity: 0.7;
}

.trip-search form .advanced-search-field {
    position: relative;
}

.trip-search form .advanced-search-field:after {
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 42px;
    background: rgba(255, 255, 255, 0.623);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    content: '';
}

.trip-search form .search-dur,
.trip-search form .search-price {
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    background: rgba(255, 255, 255, 0.623);
    padding: 10px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 5px 5px;
    z-index: 1;
}

.trip-search form .search-dur:after,
.trip-search form .search-price:after {
    display: none;
}

.trip-search form .search-dur .ui-widget.ui-widget-content,
.trip-search form .search-price .ui-widget.ui-widget-content {
    height: 2px;
    background: #d3d3d3;
    border-radius: 0;
    margin: 0 0 10px;
}

.trip-search form .search-dur .ui-slider-horizontal .ui-slider-range,
.trip-search form .search-price .ui-slider-horizontal .ui-slider-range {
    border-radius: 0;
    background: rgb(51, 6, 6);
    height: 2px;
    top: -1px;
}

.trip-search form .search-dur .ui-slider-horizontal .ui-slider-handle,
.trip-search form .search-price .ui-slider-horizontal .ui-slider-handle {
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-left: 6px solid rgb(51, 6, 6);
    border-bottom: 8px solid transparent;
    background: none;
    border-right: 0;
    border-radius: 0;
    top: -8px;
    margin-left: -1px;
}

.trip-search form .search-dur .ui-slider-horizontal .ui-slider-handle+.ui-slider-handle,
.trip-search form .search-price .ui-slider-horizontal .ui-slider-handle+.ui-slider-handle {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    margin-left: -5px;
}

.trip-search form .search-dur .duration-slider-value,
.trip-search form .search-price .cost-slider-value {
    overflow: hidden;
}

.trip-search form .search-dur .duration-slider-value .min-duration,
.trip-search form .search-price .cost-slider-value .min-cost {
    float: left;
    font-size: 0.75em;
    background: rgb(161, 114, 114);
    border-radius: 20px;
    padding: 0 10px;
    line-height: 2em;
}

.trip-search form .search-dur .duration-slider-value .max-duration,
.trip-search form .search-price .cost-slider-value .max-cost {
    float: right;
    font-size: 0.75em;
    background: rgb(161, 114, 114);
    border-radius: 20px;
    padding: 0 10px;
    line-height: 2em;
}

/*========================================
 Testimoinal section style
 ========================================*/
.testimoinal {
    padding: 80px 0 20px;
    background: linear-gradient(rgba(245, 245, 245, 0.746), rgba(245, 245, 245, 0.952)), url(wp-content/uploads/sites/24/2018/05/img25-1.jpg) !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
}

.testimoinal .section-header {
    max-width: 660px;
    margin: 0 auto 30px;
    text-align: center;
}

.testimoinal .section-header .section-title {
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.25em;
    margin: 0 0 16px;
    padding-bottom: 10px;
    position: relative;
    color: rgb(0, 0, 0);
}

.testimoinal .section-header .section-title:after {
    background: rgb(51, 6, 6);
    content: '';
    height: 3px;
    left: 50%;
    position: absolute;
    top: 100%;
    width: 90px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.testimonial .testimonial-holder {
    max-width: 1100px;
    margin: 0 auto;
}

#testimonial-carousel .holder {
    background: rgba(87, 102, 20, 0.897);
    border-radius: 5px;
    padding: 20px 20px 5px;
    text-align: center;
    transition: linear 0.3s;
    box-shadow: 0 0 38px rgb(29, 28, 27);
    position: relative;
}

#testimonial-carousel .holder:after {
    position: absolute;
    bottom: -10px;
    left: 50%;
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid rgba(243, 243, 243, 0.746);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

#testimonial-carousel .center .holder:after {
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid rgba(253, 253, 253, 0.945);
}

#testimonial-carousel .item {
    opacity: 0.45;
}

#testimonial-carousel .holder .img-holder {
    margin: 0 0 15px;
}

#testimonial-carousel .holder .img-holder img, 
#testimonial-carousel .holder .img-holder .svg-holder {
    border-radius: 50%;
    width: 95px;
    height: 95px;
    -o-object-fit: cover;
    object-fit: cover;
    margin: 0 auto;
}

#testimonial-carousel .holder .img-holder .svg-holder {
    overflow: hidden;
}

#testimonial-carousel .holder .title {
    font-size: 15px;
    line-height: 1.33em;
    margin: 0 0 5px;
    color: rgb(0, 0, 0);
    font-family: "Montserrat", sans-serif;
}

#testimonial-carousel .holder .visited-on {
    font-size: 14px;
    display: block;
}

#testimonial-carousel .holder .star-holder {
    /*width: 77px;*/
    display: inline-block;
    height: 13px;
    margin: 0 auto 15px;
}

#testimonial-carousel .holder .star-holder .jq-ry-container {
    padding: 0;
}

#testimonial-carousel .holder .star-holder .jq-ry-container>.jq-ry-group-wrapper>.jq-ry-group>svg {
    margin-right: 0;
}

#testimonial-carousel .holder .star-demo {
    background: url(images/star-full.png) no-repeat;
}

#testimonial-carousel .holder .testimonial-content {
    font-size: 13px;
    line-height: 1.923em;
}

#testimonial-carousel .center .holder {
    -webkit-transform: scale(1.12);
    transform: scale(1.12);
    box-shadow: 0 0 38px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

#testimonial-carousel .center .item {
    opacity: 1;
}

#testimonial-carousel .owl-stage-outer {
    padding: 60px 0;
}

#testimonial-carousel .name {
    display: block;
    text-align: center;
    font-size: 14px;
    color: rgb(0, 0, 0);
    font-weight: 600;
    margin-top: 15px;
}

#testimonial-carousel .center .name {
    margin-top: 45px;
    -webkit-transform: scale(1.12);
    transform: scale(1.12);
}

#testimonial-carousel .owl-dots {
    text-align: center;
}

#testimonial-carousel .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 5px;
}

#testimonial-carousel .owl-dots .owl-dot span {
    display: block;
    width: 30px;
    height: 4px;
    background: #ddd;
}

#testimonial-carousel .owl-dots .active span {
    background: rgb(51, 6, 6);
}

#testimonial-carousel .owl-prev {
    position: absolute;
    top: 50%;
    left: 26%;
    width: 60px;
    height: 60px;
    margin-top: -75px;
    border: 2px solid #e4e4e4;
    border-radius: 50%;
}

#testimonial-carousel .owl-prev:after {
    content: '';
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23111' viewBox='0 0 192 512'%3E%3Cpath d='M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z'/%3E%3C/svg%3E") center center no-repeat;
    width: 9px;
    height: 28px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#testimonial-carousel .owl-next {
    position: absolute;
    top: 50%;
    right: 26%;
    width: 60px;
    height: 60px;
    margin-top: -75px;
    border: 2px solid #e4e4e4;
    border-radius: 50%;
}

#testimonial-carousel .owl-next:after {
	content: '';
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23111' viewBox='0 0 192 512'%3E%3Cpath d='M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z'/%3E%3C/svg%3E") center center no-repeat;
    width: 9px;
    height: 28px;
    position: absolute;
    top: 50%;
    right: 50%;
    color: rgb(219, 219, 219);
    -webkit-transform: translate(100%, -50%);
    transform: translate(100%, -50%);
}

#testimonial-carousel .owl-prev svg,
#testimonial-carousel .owl-next svg {
    position: absolute;
    top: -4px;
    left: -4px;
}

#testimonial-carousel .owl-prev svg circle,
#testimonial-carousel .owl-next svg circle {
    stroke-dasharray: 322;
    stroke-width: 2;
    transition: stroke-dashoffset 0.5s;
    -webkit-animation-play-state: running;
    animation-play-state: running;
    stroke-dashoffset: 133;
    fill: transparent;
}

#testimonial-carousel .owl-prev:hover circle,
#testimonial-carousel .owl-next:hover circle {
    -webkit-animation: cirlceanimatebig 0.5s;
    animation: cirlceanimatebig 0.5s;
    stroke: rgb(51, 6, 6);
}

#testimonial-carousel .holder .testimonial-content {
    max-height: 300px;
    overflow: auto;
    margin-bottom: 20px;
}

/*=====================================
 Blog section style
 =====================================*/
.blog-section {
    padding: 80px;
}

.blog-section .section-header {
    max-width: 660px;
    margin: 0 auto 60px;
    text-align: center;
}

.blog-section .section-header .section-title {
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.25em;
    margin: 0 0 16px;
    padding-bottom: 10px;
    position: relative;
    color: rgb(219, 219, 219);
}

.blog-section .section-header .section-title:after {
    background: rgb(51, 6, 6);
    content: '';
    height: 3px;
    left: 50%;
    position: absolute;
    top: 100%;
    width: 90px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.blog-section .grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -15px 50px;
}

.blog-section .grid .post {
    width: 33.333%;
    padding: 0 15px;
    margin: 0 0 30px;
}

.blog-section .grid .post .holder {
    border: 1px solid #dcdcdc;
    border-radius: 5px;
    height: 100%;
    transition: linear 0.2s;
}

.blog-section .grid .post:hover .holder {
    box-shadow: 0 20px 38px rgba(107, 58, 58, 0.15);
}

.blog-section .grid .post .img-holder {
    position: relative;
}

.blog-section .grid .post .img-holder .cat-links {
    position: absolute;
    top: 20px;
    left: 20px;
}

.blog-section .grid .post .img-holder .cat-links a {
    color: rgba(255, 255, 255, 0.643);
    font-size: 12px;
    line-height: 1.666em;
    text-transform: uppercase;
    font-weight: 500;
    background: rgb(51, 6, 6);
    display: inline-block;
    margin-right: 5px;
    padding: 0 10px;
    border-radius: 20px;
}

.blog-section .grid .post .img-holder img {
    vertical-align: top;
    border-radius: 5px 5px 0 0;
}

.blog-section .grid .post .text-holder {
    padding: 20px 20px 1px;
}

.blog-section .grid .post .text-holder .posted-on {
    display: block;
    font-size: 14px;
}

.blog-section .grid .post .text-holder .posted-on a {
    color: rgba(0, 0, 0, 0.726);
    transition: linear 0.2s;
}

.blog-section .grid .post .text-holder .posted-on a:hover,
.blog-section .grid .post .text-holder .posted-on a:focus {
    text-decoration: none;
    color: rgb(51, 6, 6);
}

.blog-section .grid .post .text-holder .entry-title {
    font-size: 18px;
    line-height: 1.444em;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    margin: 0 0 13px;
}

.blog-section .grid .post .text-holder .entry-title a {
    color: rgb(219, 219, 219);
    transition: linear 0.2s;
}

.blog-section .grid .post .text-holder .entry-title a:hover,
.blog-section .grid .post .text-holder .entry-title a:focus {
    text-decoration: none;
    color: rgb(51, 6, 6);
}

.blog-section .grid .post .text-holder .entry-content {
    margin: 0 0 20px;
    height: 85px;
    overflow: hidden;
}

.blog-section .grid .post .entry-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.623);
    padding: 8px 20px;
    font-size: 14px;
}

.blog-section .grid .post .entry-footer span {
    margin-right: 20px;
}

.blog-section .grid .post .entry-footer span span,
.blog-section .grid .post .entry-footer span:last-child {
    margin-right: 0;
}

.blog-section .grid .post .entry-footer span svg {
    font-size: 16px;
    color: rgb(51, 6, 6);
    margin-right: 5px;
}

.blog-section .grid .post .entry-footer a {
    color: #666;
    transition: linear 0.2s;
}

.blog-section .grid .post .entry-footer a:hover,
.blog-section .grid .post .entry-footer a:focus {
    text-decoration: none;
    color: rgb(51, 6, 6);
}

.blog-section .grid .post .entry-footer .like {
    cursor: pointer;
}

.blog-section .btn-holder {
    text-align: center;
}

.blog-section .btn-holder .btn-more {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    border: 2px solid rgb(51, 6, 6);
    border-radius: 5px;
    text-transform: uppercase;
    padding: 6px 29px;
    font-family: 'Montserrat', sans-serif;
    transition: linear 0.2s;
}

.blog-section .btn-holder .btn-more:hover,
.blog-section .btn-holder .btn-more:focus {
    text-decoration: none;
    background: rgb(51, 6, 6);
    color: rgba(255, 255, 255, 0.972);
}

/*=====================================
 Clients section style
 =====================================*/
.clients {
    padding: 80px 0;
    background-size: cover !important;
    background-attachment: fixed;
    position: relative;
}

.clients:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    content: '';
}

.clients .container {
    position: relative;
    z-index: 1;
}

.clients .section-header {
    max-width: 660px;
    margin: 0 auto 68px;
    text-align: center;
    position: relative;
    color: rgba(255, 255, 255, 0.623);
}

.clients .section-header .section-title {
    font-size: 36px;
    line-height: 1.25em;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    padding-bottom: 10px;
    margin: 0 0 16px;
}

.clients .section-header .section-title:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    width: 90px;
    height: 3px;
    background: rgb(51, 6, 6);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

#clients-slider .img-holder {
    background: rgba(255, 255, 255, 0.623);
    border-radius: 5px;
    position: relative;
    height: 100px;
    width: 100%;
    display: block;
    overflow: hidden;
}
    #partner1 {
    width: 75px;
    height: 75px;
    border-radius: 100%;
    border: 2px solid #333;
    display: inline-block;
    overflow: hidden;
}


#clients-slider .img-holder img {
    max-width: 100%;
    width: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#clients-slider .owl-next:after {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 6px;
    height: 21px;
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 192 512'%3E%3Cpath d='M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z'/%3E%3C/svg%3E") center center no-repeat;
    content: '';
}

#clients-slider .owl-prev:after {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    content: '';
    width: 6px;
    height: 21px;
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 192 512'%3E%3Cpath d='M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z'/%3E%3C/svg%3E") center center no-repeat;
}

#clients-slider .owl-prev {
    position: absolute;
    top: 50%;
    left: -70px;
    border: 2px solid #e4e4e4;
    border-radius: 50%;
    height: 43px;
    width: 43px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#clients-slider .owl-next {
    position: absolute;
    top: 50%;
    right: -70px;
    border: 2px solid #e4e4e4;
    border-radius: 50%;
    height: 43px;
    width: 43px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#clients-slider .owl-prev svg,
#clients-slider .owl-next svg {
    position: absolute;
    top: -2px;
    left: -2px;
}

#clients-slider .owl-prev svg circle,
#clients-slider .owl-next svg circle {
    /*stroke: #e4e4e4;*/
    fill: transparent;
    /*stroke-dasharray: 534;*/
    stroke-dasharray: 260;
    stroke-width: 2;
    transition: stroke-dashoffset 0.5s;
    -webkit-animation-play-state: running;
    animation-play-state: running;
    stroke-dashoffset: 133;
}

#clients-slider .owl-prev:hover circle,
#clients-slider .owl-next:hover circle {
    -webkit-animation: cirlceanimate 0.5s;
    animation: cirlceanimate 0.5s;
    stroke: rgb(51, 6, 6);
}

@-webkit-keyframes cirlceanimate {
    from {
        stroke-dashoffset: 260;
    }

    to {
        stroke-dashoffset: 133;
    }
}

@keyframes cirlceanimate {
    from {
        stroke-dashoffset: 260;
    }

    to {
        stroke-dashoffset: 133;
    }
}

/*===================================
 Breadcrumbs style
 ===================================*/
#crumbs {
    font-size: 13px;
    line-height: 1.69em;
    font-weight: 500;
    padding: 20px 0;
}

#crumbs .separator {
    font-size: 18px;
    color: rgb(51, 6, 6);
}

#crumbs .separator,
#crumbs a {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

#crumbs a {
    color: rgb(219, 219, 219);
    transition: linear 0.2s;
}

#crumbs a:hover,
#crumbs a:focus {
    text-decoration: none;
    color: rgb(51, 6, 6);
}

#crumbs .current a{
    pointer-events: none;
    cursor: default;
    color: #b5b5b5;
} 

/*===================================
 Blog page style
 ==================================*/
#content {
    margin: 60px auto 80px;
}

#primary {
    float: left;
    width: 75%;
    padding-left: 15px;
    padding-right: 65px;
}

.full-width #primary {
    width: 100%;
    padding-right: 15px;
}

.leftsidebar #primary {
    float: right;
    padding-right: 15px;
    padding-left: 65px;
}

/*#primary .site-main{padding-right: 50px;}*/

#primary .post {
    margin: 0 0 70px;
}

#primary .post .entry-header {
    text-align: center;
}

#primary .post .entry-header .entry-meta {
    margin: 0 0 15px;
}

#primary .post .entry-header .entry-meta .cat-links {
    font-size: 12px;
    line-height: 1.833em;
    font-weight: 500;
    text-transform: uppercase;
    display: inline-block;
    margin: 0 5px;
}

#primary .post .entry-header .entry-meta .cat-links a {
    display: inline-block;
    border: 2px solid rgba(50, 182, 122);
    border-radius: 20px;
    padding: 0 10px;
    margin: 0 3px;
    transition: linear 0.2s;
}

#primary .post .entry-header .entry-meta .cat-links a:hover,
#primary .post .entry-header .entry-meta .cat-links a:focus {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.623);
    background: rgb(51, 6, 6);
    border-color: rgb(51, 6, 6);
}

#primary .post .entry-header .entry-meta .posted-on {
    display: inline-block;
    margin: 0 5px;
    font-size: 14px;
    line-height: 1.571em;
    padding-left: 24px;
    position: relative;
}

#primary .post .entry-header .entry-meta .posted-on:before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 7px;
    left: 0;
    content: '';
}

#primary .post .entry-header .entry-meta .posted-on a {
    color: rgba(0, 0, 0, 0.5);
    transition: linear 0.2s;
}

#primary .post .entry-header .entry-meta .posted-on a:hover,
#primary .post .entry-header .entry-meta .posted-on a:focus {
    text-decoration: none;
    color: rgb(51, 6, 6);
}

#primary .post .entry-header .entry-title {
    font-size: 36px;
    line-height: 1.25em;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    color: rgb(34, 1, 1);
}

#primary .post .entry-header .entry-title a {
    color: rgb(219, 219, 219);
    transition: linear 0.2s;
}

#primary .post .entry-header .entry-title a:hover,
#primary .post .entry-header .entry-title a:focus {
    text-decoration: none;
    color: rgb(51, 6, 6);
}

#primary .post .post-thumbnail img {
    vertical-align: top;
    border-radius: 10px;
    box-shadow: inset -1px 3px 8px 5px rgb(255 254 254), 2px 5px 16px 0px #162838, 5px 5px 15px 5px rgb(0 0 0 / 0%);
}

#primary .post .entry-footer .btn-holder {
    text-align: center;
    position: relative;
}

#primary .post .entry-footer .btn-holder:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.623);
}

#primary .post .entry-footer .btn-holder .btn-more {
    display: inline-block;
    font-size: 13px;
    line-height: 2em;
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 255, 255, 0.623);
    background: rgb(51, 6, 6);
    border: 2px solid rgb(51, 6, 6);
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: 300;
    padding: 2px 30px;
    letter-spacing: 1px;
    transition: linear 0.2s;
    position: relative;
    z-index: 1;
}

#primary .post .entry-footer .btn-holder .btn-more:hover,
#primary .post .entry-footer .btn-holder .btn-more:focus {
    text-decoration: none;
    color: rgb(51, 6, 6);
    background: rgba(255, 255, 255, 0.623);
}

#primary .post .entry-footer .meta-holder {
    overflow: hidden;
}

#primary .post .entry-footer .meta-info {
    float: left;
    font-size: 14px;
    line-height: 1.571em;
}

#primary .post .entry-footer .meta-info span {
    margin-right: 20px;
}

#primary .post .entry-footer .meta-info span span,
#primary .post .entry-footer .meta-info span:last-child {
    margin-right: 0;
}

#primary .post .entry-footer .meta-info a {
    color: rgb(197, 193, 193);
    transition: linear 0.2s;
}

#primary .post .entry-footer .meta-info a:hover,
#primary .post .entry-footer .meta-info a:focus {
    text-decoration: none;
    color: rgb(51, 6, 6);
}

#primary .post .entry-footer .meta-info svg {
    margin-right: 5px;
    color: rgb(51, 6, 6);
}

#primary .post .entry-footer .meta-info .like {
    cursor: pointer;
}

#primary .post .entry-footer .meta-info .like:hover,
#primary .post .entry-footer .meta-info .like:focus {
    color: rgb(51, 6, 6);
}

#primary .post .entry-footer .social-networks {
    float: right;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 16px;
    overflow: hidden;
    text-align: right;
}

#primary .post .entry-footer .social-networks li {
    float: left;
    margin-left: 5px;
}

#primary .post .entry-footer .social-networks li a {
    display: block;
    width: 36px;
    height: 36px;
    background: #553535;
    border-radius: 50%;
    line-height: 36px;
    text-align: center;
    color: rgb(51, 6, 6);
    transition: linear 0.2s;
}

#primary .post .entry-footer .social-networks li a:hover,
#primary .post .entry-footer .social-networks li a:focus {
    text-decoration: none;
    background: rgb(51, 6, 6);
    color: rgba(255, 255, 255, 0.623);
}

/*=================================
 Pagination style
 =================================*/
.pagination {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    text-align: center;
    border-radius: 5px;
}

.pagination a {
    color: #666;
    transition: linear 0.2s;
}

.pagination a:hover,
.pagination a:focus {
    text-decoration: none;
    color: rgb(51, 6, 6);
}

.pagination a:after,
.pagination span:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgb(51, 6, 6);
    opacity: 0;
    transition: linear 0.2s;
}

.pagination a:hover:after,
.pagination a:focus:after,
.pagination .current:after {
    opacity: 1;
}

.pagination .current {
    color: rgb(51, 6, 6);
    font-weight: 500;
}

.pagination .first-page {
    border-left: 1px solid rgba(255, 255, 255, 0.623);
}

.pagination span,
.pagination a {
    display: inline-block;
    margin: 0 -3px;
    min-width: 50px;
    min-height: 50px;
    line-height: 50px;
    padding: 0 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.623);
    position: relative;
}

.pagination .nav-links {
    overflow: hidden;
}

.pagination .prev {
    float: left;
    font-size: 14px;
    font-weight: 500;
    color: rgb(219, 219, 219);
    padding: 0 25px 0 40px;
    margin: 0;
}

.pagination .prev:before {
    position: absolute;
    top: 0;
    left: 25px;
    content: '';
    width: 5px;
    height: 50px;
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2332b67a' viewBox='0 0 192 512'%3E%3Cpath d='M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z'/%3E%3C/svg%3E") center center no-repeat;
}

.pagination .next {
    float: right;
    font-size: 14px;
    font-weight: 500;
    color: rgb(219, 219, 219);
    padding: 0 40px 0 25px;
    border-right: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.623);
    margin: 0;
}

.pagination .next:before {
    position: absolute;
    top: 0;
    right: 25px;
    content: '';
    width: 5px;
    height: 50px;
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2332b67a' viewBox='0 0 192 512'%3E%3Cpath d='M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z'/%3E%3C/svg%3E") center center no-repeat;
}

/*===================================
 Pagination default
 ===================================*/
.posts-navigation .nav-links {
    overflow: hidden;
}

.posts-navigation .nav-links .nav-previous a {
    position: relative;
    padding-left: 38px;
    color: #666;
    display: inline-block;
    padding-bottom: 2px;
    transition: ease 0.2s;
}

.posts-navigation .nav-links .nav-previous a:hover,
.posts-navigation .nav-links .nav-previous a:focus {
    text-decoration: none;
    color: rgb(51, 6, 6);
}

.posts-navigation .nav-links .nav-previous a:before {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.1);
    background: #553535;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
}

.posts-navigation .nav-links .nav-previous a:after {
    position: absolute;
    top: 2px;
    left: 12px;
    width: 6px;
    height: 28px;
    content: '';
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23111' viewBox='0 0 192 512'%3E%3Cpath d='M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z'/%3E%3C/svg%3E") center center no-repeat;
}

.posts-navigation .nav-links .nav-next a {
    position: relative;
    padding-right: 38px;
    color: #666;
    display: inline-block;
    padding-bottom: 2px;
    transition: ease 0.2s;
}

.posts-navigation .nav-links .nav-next a:hover,
.posts-navigation .nav-links .nav-next a:focus {
    text-decoration: none;
    color: rgb(51, 6, 6);
}

.posts-navigation .nav-links .nav-next a:before {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.1);
    background: #553535;
    position: absolute;
    top: 0;
    right: 0;
    content: '';
}

.posts-navigation .nav-links .nav-next a:after {
    width: 6px;
    height: 28px;
    content: '';
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23111' viewBox='0 0 192 512'%3E%3Cpath d='M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z'/%3E%3C/svg%3E") center center no-repeat;
    position: absolute;
    top: 2px;
    right: 12px;
}

/*======================================
 Ajax Load More
 ======================================*/
#load-posts a {
    text-align: center;
    display: block;
    width: 100%;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    border: 2px solid rgb(51, 6, 6);
    border-radius: 5px;
    text-transform: uppercase;
    padding: 6px 29px;
    font-family: 'Montserrat', sans-serif;
    transition: linear 0.2s;
}

#load-posts a svg {
    margin-right: 5px;
}

#load-posts a:hover,
#load-posts a:focus {
    text-decoration: none;
    background: rgb(51, 6, 6);
    color: rgba(255, 255, 255, 0.623);
}

/*=================================
 Single post style
 =================================*/
#primary .post .entry-content .dropcap,
#primary .page .entry-content .dropcap {
    float: left;
    font-size: 95px;
    font-weight: 500;
    line-height: 1.052;
    color: rgb(219, 219, 219);
    font-family: 'Montserrat', sans-serif;
    margin: -8px 10px -7px 0;
}

#primary .post .entry-content blockquote,
#primary .page .entry-content blockquote {
    font-size: 22px;
    line-height: 1.545em;
    color: rgb(219, 219, 219);
    margin: 0 0 1.5em;
    padding: 0 0 0 15px;
    border-left: 4px solid rgb(51, 6, 6);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-style: italic;
}

#primary .post .entry-content blockquote p,
#primary .page .entry-content blockquote p {
    margin: 0 0 5px;
}

#primary .post .entry-content blockquote cite,
#primary .page .entry-content blockquote cite {
    font-size: 14px;
    line-height: 1.571em;
    color: #b5b5b5;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
}

#primary .post .entry-content figure,
#primary .page .entry-content figure {
    margin-bottom: 0;
}

#primary .post .entry-content .wp-caption-text,
#primary .page .entry-content .wp-caption-text {
    font-size: 13px;
    line-height: 21px;
    color: #b5b5b5;
    text-align: left;
    margin: 5px 0 0;
}

#primary .post .entry-content .pull-left,
#primary .page .entry-content .pull-left {
    font-size: 22px;
    line-height: 1.545em;
    color: rgb(219, 219, 219);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-style: italic;
    max-width: 425px;
    margin-right: 15px;
    margin-bottom: 10px;
    float: left;
    position: relative;
    padding-top: 10px;
}

#primary .post .entry-content .pull-left:before,
#primary .page .entry-content .pull-left:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: rgb(51, 6, 6);
    content: '';
}

#primary .post .entry-content .pull-right,
#primary .page .entry-content .pull-right {
    font-size: 22px;
    line-height: 1.545em;
    color: rgb(219, 219, 219);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-style: italic;
    max-width: 425px;
    margin-left: 15px;
    margin-bottom: 10px;
    float: right;
    position: relative;
    padding-top: 10px;
}

#primary .post .entry-content .pull-right:before,
#primary .page .entry-content .pull-right:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: rgb(51, 6, 6);
    content: '';
}

#primary .post .entry-content h1,
#primary .page .entry-content h1,
#primary .post .entry-content h2,
#primary .page .entry-content h2,
#primary .post .entry-content h3,
#primary .page .entry-content h3,
#primary .post .entry-content h4,
#primary .page .entry-content h4,
#primary .post .entry-content h5,
#primary .page .entry-content h5,
#primary .post .entry-content h6,
#primary .page .entry-content h6 {
    font-family: 'Montserrat', sans-serif;
    color: rgb(219, 219, 219);
}

#primary .post .entry-content h1,
#primary .page .entry-content h1 {
    font-size: 36px;
    line-height: 1.222em;
}

#primary .post .entry-content h2,
#primary .page .entry-content h2 {
    font-size: 32px;
    line-height: 1.187em;
}

#primary .post .entry-content h3,
#primary .page .entry-content h3 {
    font-size: 28px;
    line-height: 1.285em;
}

#primary .post .entry-content h4,
#primary .page .entry-content h4 {
    font-size: 24px;
    line-height: 1.208em;
}

#primary .post .entry-content h5,
#primary .page .entry-content h5 {
    font-size: 20px;
    line-height: 1.2em;
}

#primary .post .entry-content h6,
#primary .page .entry-content h6 {
    font-size: 16px;
    line-height: 1.5em;
}

#primary .post .entry-content table,
#primary .page .entry-content table {
    border: 1px solid #f5f5f5;
}

#primary .post .entry-content table thead,
#primary .page .entry-content table thead {
    background: #220000;
    font-weight: 400;
    color: rgb(253, 253, 253);
}

#primary .post .entry-content table thead th,
#primary .page .entry-content table thead th {
    font-weight: 500;
}

#primary .post .entry-content table th,
#primary .page .entry-content table th,
#primary .post .entry-content table td,
#primary .page .entry-content table td {
    padding: 0.8vw 2vw;
    text-align: left;
}

#primary .post .entry-content table tr,
#primary .page .entry-content table tr {
    border-bottom: 1px solid #200101;
    border-left: rgb(207, 119, 11);
}

.single #primary .post .entry-footer {
    margin-top: 20px;
}

#primary .post .entry-footer .tags {
    overflow: hidden;
}

#primary .post .entry-footer .tags a {
    font-size: 12px;
    color: rgb(219, 219, 219);
    background: rgb(161, 114, 114);
    float: left;
    margin-right: 6px;
    padding: 0 10px;
    transition: linear 0.2s;
}

#primary .post .entry-footer .tags a:hover,
#primary .post .entry-footer .tags a:focus {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.623);
    background: rgb(51, 6, 6);
}

.single #primary .entry-footer .meta-holder {
    border-top: 1px solid rgba(255, 255, 255, 0.623);
    padding-top: 15px;
}

.advertise-holder {
    text-align: center;
    margin: 0 0 60px;
}

/*==================================
 Author section style
 ==================================*/
.author-section {
    overflow: hidden;
    margin: 0 0 60px;
}

.author-section .img-holder {
    float: left;
    width: 150px;
    margin-right: 30px;
}

.author-section .img-holder img {
    vertical-align: top;
    width: 150px;
    height: 150px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
}

.author-section .text-holder {
    overflow: hidden;
    font-size: 14px;
    line-height: 1.714em;
}

.author-section .text-holder .title {
    font-size: 22px;
    line-height: 1.272em;
    color: rgb(219, 219, 219);
    margin: 0 0 15px;
    padding-bottom: 5px;
    position: relative;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.author-section .text-holder .title:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 60px;
    height: 3px;
    background: rgb(51, 6, 6);
}

.author-section .text-holder .social-networks {
    font-size: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
}

.author-section .text-holder .social-networks li {
    float: left;
    margin-right: 15px;
}

.author-section .text-holder .social-networks li a {
    color: #b5b5b5;
    transition: linear 0.2s;
}

.author-section .text-holder .social-networks li a:hover,
.author-section .text-holder .social-networks li a:focus {
    text-decoration: none;
    color: rgb(51, 6, 6);
}

/*=================================
 Post Navigation style
 =================================*/
.post-navigation {
    margin: 0 0 60px;
}

.post-navigation .nav-links {
    overflow: hidden;
}

.post-navigation .nav-holder {
    border: 0;
}

.post-navigation .meta-nav {
    display: block;
    color: #666;
    margin: 0 0 5px;
}

.post-navigation .post-title {
    font-size: 18px;
    line-height: 1.444em;
    color: rgb(219, 219, 219);
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    transition: linear 0.2s;
}

.post-navigation .nav-previous a {
    padding-left: 38px;
    display: block;
    position: relative;
}

.post-navigation .nav-previous a:before {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.1);
    background: #553535;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
}

.post-navigation .nav-previous a:after {
    width: 6px;
	height: 28px;
	content: '';
	background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23111' viewBox='0 0 192 512'%3E%3Cpath d='M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z'/%3E%3C/svg%3E") center center no-repeat;
    position: absolute;
    top: 2px;
    left: 12px;
}

.post-navigation .nav-next a {
    padding-right: 38px;
    display: block;
    position: relative;
}

.post-navigation .nav-next a:before {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.1);
    background: #553535;
    position: absolute;
    top: 0;
    right: 0;
    content: '';
}

.post-navigation .nav-next a:after {
	width: 6px;
	height: 28px;
	content: '';
	background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23111' viewBox='0 0 192 512'%3E%3Cpath d='M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z'/%3E%3C/svg%3E") center center no-repeat;
    position: absolute;
    top: 2px;
    right: 12px;
}

.post-navigation .nav-holder a:hover,
.post-navigation .nav-holder a:focus {
    text-decoration: none;
}

.post-navigation .nav-holder a:hover .post-title,
.post-navigation .nav-holder a:focus .post-title {
    color: rgb(51, 6, 6);
}

/*=================================
 Subscription style
 =================================*/
.subscription {
    margin: 0 0 60px;
}

/*=================================
 Related-post style
 =================================*/
.related-post {
    margin: 0 0 60px;
}

.related-post .title {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.272em;
    margin: 0 0 40px;
    padding: 0 0 3px;
    position: relative;
    color: rgb(32, 1, 1);
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.related-post .title:after {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 60px;
    height: 3px;
    background: rgb(51, 6, 6);
    content: '';
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.related-post .grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 -17px;
}

.related-post .col {
    width: 33.333%;
    padding: 0 17px;
    margin: 0 0 35px;
}

.related-post .col .holder {
    border-radius: 5px;
    border: 3px dashed #3b0a02;
    transition:all 0.2s;
    height: 110%;
    background-color: rgb(241, 239, 237);
    box-shadow: darkblue;
}

.related-post .col:hover .holder,
.related-post .col:focus .holder {
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.15);
}

.related-post .col .img-holder {
    position: relative;
}

.related-post .col .img-holder .cat-links {
    position: absolute;
    top: 20px;
    left: 20px;
}

.related-post .col .img-holder .cat-links a {
    font-size: 12px;
    line-height: 1.666em;
    display: inline-block;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.623);
    letter-spacing: 1px;
    padding: 0 15px;
    border-radius: 20px;
    margin-right: 2px;
    background: rgb(51, 6, 6);
}

.related-post .col img {
    vertical-align: top;
    width: 100%;
}

.related-post .col .text-holder {
    padding: 15px 20px;
}

.related-post .col .text-holder .posted-on {
    font-size: 14px;
    line-height: 1.571em;
    display: block;
    margin: 0 0 5px;
}

.related-post .col .text-holder .posted-on a {
    color: rgba(0, 0, 0, 0.5);
    transition: linear 0.2s;
}

.related-post .col .text-holder .posted-on a:hover,
.related-post .col .text-holder .posted-on a:focus {
    text-decoration: none;
    color: rgb(51, 6, 6);
}

.related-post .col .text-holder .post-title {
    margin: 0;
    font-size: 16px;
    line-height: 1.5em;
}

.related-post .col .text-holder .post-title a {
    color: rgb(24, 1, 1);
    transition: linear 0.2s;
}

.related-post .col .text-holder .post-title a:hover,
.related-post .col .text-holder .post-title a:focus {
    text-decoration: none;
    color: rgb(51, 6, 6);
}

/*=================================
 Comment section style
 ================================*/
.comments-area {
    margin: 0 0 60px;
}

.comments-area .comments-title {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.272em;
    margin: 0 0 40px;
    padding: 0 0 7px;
    position: relative;
    color: rgb(219, 219, 219);
    font-family: 'Montserrat', sans-serif;
}

.comments-area .comments-title:after {
    position: absolute;
    top: 100%;
    left: 0;
    width: 60px;
    height: 3px;
    background: rgb(51, 6, 6);
    content: '';
}

.comments-area ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.comments-area .comment-body {
    overflow: hidden;
    margin: 0 0 30px;
}

.comments-area .comment-body .comment-meta {
    float: left;
    width: 85px;
    margin-right: 25px;
}

.comments-area .comment-body .comment-meta img {
    border-radius: 50%;
    vertical-align: top;
    width: 85px;
    height: 85px;
    -o-object-fit: cover;
    object-fit: cover;
}

.comments-area .comment-body .text-holder {
    overflow: hidden;
}

.comments-area .comment-body .text-holder .top {
    overflow: hidden;
    margin: 0 0 10px;
}

.comments-area .comment-body .text-holder .top .left {
    float: left;
}

.comments-area .comment-body .text-holder .top .reply {
    float: right;
}

.comments-area .comment-body .fn {
    font-size: 16px;
    line-height: 1.312em;
    color: #333;
    margin: 0;
    font-weight: 500;
    display: block;
    font-family: 'Montserrat', sans-serif;
}

.comments-area .comment-body .fn a {
    color: rgb(219, 219, 219);
}

.comments-area .comment-body .fn a:hover,
.comments-area .comment-body .fn a:focus {
    text-decoration: none;
    color: rgb(51, 6, 6);
}

.comments-area .comment-body .says {
    display: none;
}

.comments-area .comment-body .comment-metadata {
    font-size: 12px;
    line-height: 1.75em;
    color: #b5b5b5;
}

.comments-area .comment-body .comment-metadata a {
    color: #999;
}

.comments-area .comment-body .comment-metadata a:hover,
.comments-area .comment-body .comment-metadata a:focus {
    text-decoration: none;
    color: rgb(51, 6, 6);
}

.comments-area .comment-body .reply {
    font-size: 13px;
    line-height: 1.615em;
}

.comments-area .comment-body .reply a {
    text-decoration: underline;
    color: #b5b5b5;
    padding-left: 21px;
    position: relative;
}

.comments-area .comment-body .reply a:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
	background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23b5b5b5' viewBox='0 0 512 512'%3E%3Cpath d='M8.309 189.836L184.313 37.851C199.719 24.546 224 35.347 224 56.015v80.053c160.629 1.839 288 34.032 288 186.258 0 61.441-39.581 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 45.344-145.012-21.507-183.51-176.59-185.742V360c0 20.7-24.3 31.453-39.687 18.164l-176.004-152c-11.071-9.562-11.086-26.753 0-36.328z'/%3E%3C/svg%3E") center center no-repeat;
    width: 13px;
    height: 21px;
}

.comments-area .comment-body .reply a:hover,
.comments-area .comment-body .reply a:focus {
    color: rgb(51, 6, 6);
}

.comments-area .comment-body .comment-content {
    font-size: 14px;
    line-height: 1.785em;
}

.comments-area .comment-body .comment-content p {
    margin: 0 0 5px;
}

.comments-area .children {
    margin-left: 25px;
    border-left: 1px solid rgb(161, 114, 114);
}

.comments-area .children li {
    padding-left: 30px;
    position: relative;
}

.comments-area .children li:first-child:before {
    position: absolute;
    top: 25px;
    left: 0;
    width: 21px;
    height: 1px;
    background: rgb(161, 114, 114);
    content: '';
}

.comments-area .bypostauthor>.comment-body .comment-content {
    background: #ff9;
    padding: 15px 20px;
}

.comments-area .childrend .comment-body .comment-meta {
    width: 55px;
}

.comments-area .childrend .comment-body .comment-meta img {
    width: 55px;
    height: 55px;
    -o-object-fit: cover;
    object-fit: cover;
}

.comments-area .childrend .comment-body .fn {
    font-size: 14px;
    line-height: 1.5em;
}

.comments-area ol ol {
    margin-left: 110px;
}

.comments-area ol ol ol {
    margin-left: 80px;
}

/*===============================
 Comment form style
 ===============================*/
.comment-respond {
    margin: 0 0 30px;
}

.comments-area .comment-reply-title {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.272em;
    margin: 0 0 25px;
    padding: 0 0 7px;
    position: relative;
    color: rgb(219, 219, 219);
    font-family: 'Montserrat', sans-serif;
}

.comments-area .comment-reply-title:after {
    position: absolute;
    top: 100%;
    left: 0;
    width: 60px;
    height: 3px;
    background: rgb(51, 6, 6);
    content: '';
}

.comments-area .comment-form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.comments-area .comment-form p {
    margin: 0 0 30px;
    width: 33.333%;
    padding: 0 15px;
}

.comments-area .comment-form .comment-notes,
.comments-area .comment-form .comment-form-comment,
.comments-area .comment-form .comment-form-cookies-consent,
.comments-area .comment-form .form-submit {
    width: 100%;
}

.comments-area .comment-form .comment-form-cookies-consent label {
    display: inline-block;
    vertical-align: top;
    margin-left: 10px;
}

.comments-area .comment-form label {
    display: block;
    margin: 0 0 5px;
}

.comments-area .comment-form input[type="text"],
.comments-area .comment-form input[type="email"],
.comments-area .comment-form input[type="url"] {
    width: 100%;
}

/*=================================
 Sidebar style
 =================================*/
#secondary {
    float: left;
    width: 25%;
    padding: 0 15px;
}

#secondary .widget {
    margin: 0 0 60px;
}

.widget .widget-title {
    font-size: 20px;
    line-height: 1.3em;
    font-weight: 600;
    color: rgb(37, 2, 2);
    text-transform: uppercase;
    margin: 0 0 30px;
    position: relative;
    text-align: center;
    padding: 0 0 5px;
    font-family: 'Montserrat', sans-serif;
}

.widget .widget-title:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    width: 60px;
    height: 3px;
    background: rgb(51, 6, 6);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

/*===============================
 Common widget style
 ================================*/
.widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.widget ul ul {
    margin: 15px 0 0 20px;
}

.widget ul li {
    margin: 0 0 15px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #cecece;
}

.widget ul li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.widget ul li a {
    color: #666;
    transition: linear 0.2s;
}

.widget ul li a:hover,
.widget ul li a:focus {
    text-decoration: none;
    color: rgb(51, 6, 6);
}

.widget select {
    width: 100%;
}

/*==============================
 Widget calendar style
 ==============================*/
.widget_calendar caption {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.623);
    line-height: 20px;
    background: rgb(51, 6, 6);
    font-weight: 600;
    text-transform: uppercase;
    padding: 9px 0;
}

.widget_calendar table {
    position: relative;
}

.widget_calendar table td,
.widget_calendar thead th {
    border: 1px solid rgb(161, 114, 114);
}

.widget_calendar thead th {
    font-size: 13px;
    background: rgba(255, 255, 255, 0.623);
    color: rgb(219, 219, 219);
    font-weight: 600;
    height: 45px;
}

.widget_calendar tbody td {
    text-align: center;
    font-size: 14px;
    height: 45px;
    line-height: 45px;
    color: rgb(219, 219, 219);
}

.widget_calendar table #prev a {
    left: 15px;
    position: absolute;
    top: 12px;
    background: url(images/btn-prev-month.png) no-repeat;
    width: 7px;
    height: 12px;
    text-indent: -9999px;
}

.widget_calendar table #next a {
    position: absolute;
    right: 15px;
    top: 12px;
    background: url(images/btn-next-month.png) no-repeat;
    width: 7px;
    height: 12px;
    text-indent: -9999px;
}

.widget_calendar table tbody td a {
    display: block;
    height: 100%;
    background: rgb(51, 6, 6);
    color: rgba(255, 255, 255, 0.623);
}

.widget_calendar table tfoot td {
    line-height: 0;
}

.widget_tag_cloud .tagcloud {
    overflow: hidden;
}

.widget_tag_cloud .tagcloud a {
    float: left;
    margin: 0 6px 6px 0;
    font-size: 12px !important;
    line-height: 15px;
    background: rgb(161, 114, 114);
    color: #333;
    padding: 10px 15px;
    transition: linear 0.2s;
}

.widget_tag_cloud .tagcloud a:hover,
.widget_tag_cloud .tagcloud a:focus {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.623);
    background: rgb(51, 6, 6);
}

.widget_recent_comments ul,
.widget_rss ul {
    color: #999;
}

.widget_rss .widget-title a {
    color: rgb(219, 219, 219);
}

.widget_rss .widget-title a:hover,
.widget_rss .widget-title a:focus {
    text-decoration: none;
    color: rgb(51, 6, 6);
}

.widget_search .search-form {
    border: 1px solid rgba(255, 255, 255, 0.623);
}

.widget_search .search-form:after {
    content: '';
    display: block;
    clear: both;
}

.widget_search .search-form label {
    float: left;
    width: 80%;
    padding: 10px 0 0 20px;
}

.widget_search .search-form input[type="search"] {
    padding: 0;
    margin: 0;
    background: none;
    border: 0;
    border-radius: 0;
    width: 100%;
}

.widget_search .search-form input[type="submit"] {
    padding: 0;
    margin: 0;
    float: right;
    font-size: 0;
    background: #000 url(images/bg-search.png) no-repeat 50% 50%;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 0;
}

.widget_raratheme_popular_post ul li,
.widget_raratheme_recent_post ul li {
    overflow: hidden;
    padding-bottom: 0;
    border-bottom: 0;
    margin: 0 0 30px;
}

.widget_raratheme_popular_post ul li:last-child,
.widget_raratheme_recent_post ul li:last-child {
    margin-bottom: 0;
}

/*===================================
 Widget Trip Search Page
 ==================================*/
.widget_wte_advanced_search_widget form .advanced-search-field {
    margin: 0 0 10px;
    position: relative;
    border: 1px solid rgb(161, 114, 114);
    border-radius: 5px;
    padding: 2px 0;
}

.widget_wte_advanced_search_widget form .advanced-search-field:after {
    position: absolute;
    top: 2px;
    right: 0;
    width: 30px;
    height: 40px;
    line-height: 40px;
    content: '';
    pointer-events: none;

    background: rgba(255, 255, 255, 0.623) url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%238d8d8d' viewBox='0 0 320 512'%3E%3Cpath d='M151.5 347.8L3.5 201c-4.7-4.7-4.7-12.3 0-17l19.8-19.8c4.7-4.7 12.3-4.7 17 0L160 282.7l119.7-118.5c4.7-4.7 12.3-4.7 17 0l19.8 19.8c4.7 4.7 4.7 12.3 0 17l-148 146.8c-4.7 4.7-12.3 4.7-17 0z'/%3E%3C/svg%3E") center center no-repeat;
    background-size: 0.7em;
}

.widget_wte_advanced_search_widget form .advanced-search-field select {
    height: 40px;
    border: 0;
    padding: 0 15px;
}

/*===================================
 Contact Page style
 ===================================*/
.page-template-contact .map-holder iframe {
    width: 100%;
}

.page-template-contact #content {
    margin-top: 20px;
    margin-bottom: 0;
}

.page-template-contact .map-holder img {
    width: 100%;
    vertical-align: top;
}

.page-template-contact .contact-info {
    padding: 80px 0;
}

.page-template-contact .contact-info .grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 -15px;
    text-align: center;
    font-size: 20px;
    line-height: 1.6em;
}

.page-template-contact .contact-info .grid .item {
    width: 33.3333%;
    padding: 0 15px;
    margin: 0 0 50px;
}

.page-template-contact .contact-info .grid a {
    color: #666;
    transition: linear 0.2s;
}

.page-template-contact .contact-info .grid a:hover,
.page-template-contact .contact-info .grid a:focus {
    text-decoration: none;
    color: rgb(51, 6, 6);
}

.page-template-contact .contact-info .grid .icon-holder {
    font-size: 48px;
    line-height: 1.083em;
    color: rgb(219, 219, 219);
    margin: 0 0 10px;
}

.page-template-contact .contact-info .grid .title {
    font-size: 22px;
    line-height: 1.272em;
    color: rgb(219, 219, 219);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    padding-bottom: 7px;
    margin-bottom: 22px;
    position: relative;
}

.page-template-contact .contact-info .grid .title:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    background: rgb(51, 6, 6);
    width: 60px;
    height: 3px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.page-template-contact .contact-info address {
    font-style: normal;
    margin: 0;
}

.contact-form-section {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.623);
}

.contact-form-section .section-header {
    max-width: 630px;
    margin: 0 auto 60px;
    text-align: center;
}

.contact-form-section .section-header .section-title {
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.25em;
    margin: 0 0 16px;
    padding-bottom: 10px;
    position: relative;
    color: rgb(219, 219, 219);
}

.contact-form-section .section-header .section-title:after {
    background: rgb(51, 6, 6);
    content: '';
    height: 3px;
    left: 50%;
    position: absolute;
    top: 100%;
    width: 90px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.contact-form-section form {
    max-width: 630px;
    margin: 0 auto;
}

.contact-form-section form input[type="text"],
.contact-form-section form input[type="email"],
.contact-form-section form input[type="url"],
.contact-form-section form input[type="password"],
.contact-form-section form input[type="search"],
.contact-form-section form input[type="number"],
.contact-form-section form input[type="tel"],
.contact-form-section form input[type="range"],
.contact-form-section form input[type="date"],
.contact-form-section form input[type="month"],
.contact-form-section form input[type="week"],
.contact-form-section form input[type="time"],
.contact-form-section form input[type="datetime"],
.contact-form-section form input[type="datetime-local"] {
    width: 100%;
}

/*===================================
 Team page style
 ===================================*/
.page-template-team #content {
    margin-top: 40px;
}

#team-slider,
.page-template-team .post-thumbnail {
    margin: 0 0 60px;
}

#team-slider img,
.page-template-team .post-thumbnail img {
    border-radius: 5px;
}

#team-slider .owl-prev {
    position: absolute;
    top: 50%;
    left: 40px;
    width: 60px;
    height: 60px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#team-slider .owl-prev:after {
    width: 9px;
    height: 28px;
    content: '';
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 192 512'%3E%3Cpath d='M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z'/%3E%3C/svg%3E") center center no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    /*font-size: 25px;*/
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#team-slider .owl-next {
    position: absolute;
    top: 50%;
    right: 40px;
    width: 60px;
    height: 60px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#team-slider .owl-next:after {
    width: 9px;
    height: 28px;
    content: '';
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 192 512'%3E%3Cpath d='M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z'/%3E%3C/svg%3E") center center no-repeat;
    position: absolute;
    top: 50%;
    right: 50%;
    -webkit-transform: translate(100%, -50%);
    transform: translate(100%, -50%);
}

#team-slider .owl-prev svg,
#team-slider .owl-next svg {
    position: absolute;
    top: -2px;
    left: -2px;
}

#team-slider .owl-prev svg circle,
#team-slider .owl-next svg circle {
    stroke-dasharray: 322;
    stroke-width: 2;
    transition: stroke-dashoffset 0.5s;
    -webkit-animation-play-state: running;
    animation-play-state: running;
    stroke-dashoffset: 133;
}

#team-slider .owl-prev:hover circle,
#team-slider .owl-next:hover circle {
    -webkit-animation: cirlceanimatebig 0.5s;
    animation: cirlceanimatebig 0.5s;
    stroke: rgb(51, 6, 6);
}

@-webkit-keyframes cirlceanimatebig {
    from {
        stroke-dashoffset: 455;
    }

    to {
        stroke-dashoffset: 133;
    }
}

@keyframes cirlceanimatebig {
    from {
        stroke-dashoffset: 455;
    }

    to {
        stroke-dashoffset: 133;
    }
}

.page-template-team .page-header .page-title {
    font-size: 36px;
    line-height: 1.25em;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    color: rgb(219, 219, 219);
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 35px;
}

.page-template-team .page-header .page-title:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 60px;
    height: 3px;
    background: rgb(51, 6, 6);
}

.team-holder {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-left: -17px;
    margin-right: -17px;
}

.team-holder .item {
    width: 33.3333%;
    padding: 0 17px;
    margin-bottom: 35px;
}

.team-holder .holder {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.team-holder .item img {
    vertical-align: top;
    width: 100%;
}

.team-holder .item .text {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.65+100 */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
    /* IE6-9 */
    color: rgba(255, 255, 255, 0.623);
    padding: 23px;
}

.team-holder .item .text .name {
    font-size: 18px;
    line-height: 1.444em;
    font-weight: 500;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.team-holder .item .text .designation {
    font-size: 14px;
}

.team-holder .item .text-holder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, 0.623);
    background: rgb(51, 6, 6);
    padding: 20px;
    transition: ease-in-out 0.4s;
    opacity: 0;
}

.team-holder .item .text-holder .holder {
    max-height: 257px;
    overflow: hidden;
}

.team-holder .item:hover .text-holder,
.team-holder .item:focus .text-holder {
    opacity: 1;
}

.team-holder .item .text-holder .btn-more {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.623);
    transition: linear 0.2s;
    display: inline-block;
    line-height: 0.7em;
}

.team-holder .item .text-holder .btn-more:hover,
.team-holder .item .text-holder .btn-more:focus {
    text-decoration: none;
}

.team-holder .item .text-holder .social-networks {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
}

.team-holder .item .text-holder .social-networks li {
    float: left;
    margin-right: 20px;
}

.team-holder .item .text-holder .social-networks li:last-child {
    margin-right: 0;
}

.team-holder .item .text-holder .social-networks li a {
    color: rgba(255, 255, 255, 0.623);
    transition: linear 0.2s;
}

.team-holder .item .text-holder .social-networks li a:hover,
.team-holder .item .text-holder .social-networks li a:focus {
    text-decoration: none;
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}

/*===================================
 Team single style
 ===================================*/
.single-tap_team #content {
    margin-top: 40px;
}

.single-tap_team .detail-holder {
    overflow: hidden;
    margin: 0 0 60px;
}

.single-tap_team .detail-holder .left {
    float: left;
    max-width: 33.3333%;
    margin-right: 30px;
}

.single-tap_team .detail-holder .left .img-holder img {
    vertical-align: top;
}

.single-tap_team .detail-holder .left .social-networks {
    margin: 0;
    list-style: none;
    background: rgb(51, 6, 6);
    padding: 10px;
    text-align: center;
}

.single-tap_team .detail-holder .left .social-networks li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 7px;
}

.single-tap_team .detail-holder .left .social-networks li a {
    color: rgba(255, 255, 255, 0.623);
    transition: linear 0.2s;
}

.single-tap_team .detail-holder .left .social-networks li a:hover,
.single-tap_team .detail-holder .left .social-networks li a:focus {
    text-decoration: none;
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}

.single-tap_team .detail-holder .text-holder {
    overflow: hidden;
}

.single-tap_team .detail-holder .page-header {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/*.single-tap_team .detail-holder .page-header:after{
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	width: 60px;
	height: 3px;
	background: rgb(51, 6, 6);
	}*/

.single-tap_team .detail-holder .page-header .page-title {
    font-size: 36px;
    line-height: 1.25em;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    color: rgb(219, 219, 219);
    margin-bottom: 15px;
}

.single-tap_team .detail-holder .page-header .designation {
    font-size: 20px;
    line-height: 1.3em;
    color: #aaa;
    margin: 0;
    font-weight: 400;
}

.single-tap_team .gallery .title {
    font-size: 22px;
    line-height: 1.272em;
    color: rgb(219, 219, 219);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin: 0 0 30px;
    padding: 0 0 5px;
    position: relative;
}

.single-tap_team .gallery .title:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 60px;
    height: 3px;
    background: rgb(51, 6, 6);
}

.single-tap_team .gallery .grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 -7px;
}

.single-tap_team .gallery .grid .item {
    width: 33.333%;
    padding: 0 7px;
    margin: 0 0 14px;
}

.single-tap_team .gallery .grid img {
    vertical-align: top;
    border-radius: 5px;
    width: 100%;
}

/*===================================
 Single Trip Style
 ===================================*/
.single-trip #content {
    margin-top: 40px;
}

.single-trip .trip-post .entry-header .entry-title {
    font-size: 40px;
    line-height: 1.125em;
    color: rgb(219, 219, 219);
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.single-trip .trip-post .entry-header .entry-title:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 60px;
    height: 3px;
    background: rgb(51, 6, 6);
}

#tabs-container {
    margin-top: 60px;
}

#tabs-container .nav-tab-wrapper {
    font-size: 12px;
    line-height: 1.666em;
    text-align: center;
    text-transform: uppercase;
    margin: 0 0 20px;
    font-weight: 500;
    /*display: table;*/
    width: 100%;
}

#tabs-container .tab-inner-wrapper .tab-anchor-wrapper {
    float: none;
    border: 0;
    background: #553535;
    margin: 0;
    border-left: 1px solid #ddd;
    /*display: table-cell;*/
}

#tabs-container .tab-inner-wrapper .tab-anchor-wrapper:first-child {
    border-left: 0;
}

#tabs-container .tab-inner-wrapper .tab-anchor-wrapper a {
    display: block;
    padding: 30px 5px;
    color: #838383;
}

#tabs-container .tab-inner-wrapper .tab-anchor-wrapper .nav-tab-active {
    background: #3c5248;
    border: 0;
    color: rgba(255, 255, 255, 0.623);
    box-shadow: 0 0 10px rgba(53, 15, 15, 0.2);
    border-radius: 5px;
    -webkit-transform: scale(1.12);
    transform: scale(1.12);
    position: relative;
}

#tabs-container .tab-inner-wrapper .tab-anchor-wrapper .nav-tab-active:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid rgb(51, 6, 6);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

#tabs-container .nav-tab-wrapper .tab-inner-wrapper {
    /*display: table-row;*/
    width: 100%;
}

#tabs-container .tab-content {
    border: 0;
    margin: 0;
}

#tabs-container .tab-content h2 {
    font-size: 22px;
    line-height: 1.272em;
    color: rgb(0, 0, 0);
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    padding: 0 0 5px;
    margin: 0 0 25px;
}

#tabs-container .tab-content h2:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 60px;
    height: 3px;
    background: rgb(51, 6, 6);
}

/*==============================================
 Single Page Related Post Style
 ==============================================*/
.single-trip .related-trips {
    background: #f1f1f100;
    padding: 80px 0;
}

.single-trip .related-trips .section-header {
    max-width: 660px;
    margin: 0 auto 60px;
    text-align: center;
}

.single-trip .related-trips .section-header .section-title {
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.25em;
    margin: 0 0 16px;
    padding-bottom: 10px;
    position: relative;
    color: rgb(219, 219, 219);
}

.single-trip .related-trips .section-header .section-title:after {
    background: rgb(51, 6, 6);
    content: '';
    height: 3px;
    left: 50%;
    position: absolute;
    top: 100%;
    width: 90px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.single-trip .related-trips .grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.single-trip .related-trips .grid .col {
    width: 33.333%;
    padding: 0 15px;
    margin: 0 0 30px;
}

.single-trip .related-trips .grid .col .holder {
    border: 1px solid #dcdcdc;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.623);
    transition: linear 0.2s;
}

.single-trip .related-trips .grid .col:hover .holder,
.single-trip .related-trips .grid .col:focus .holder {
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
}

.single-trip .related-trips .grid .col .img-holder {
    position: relative;
}

.single-trip .related-trips .grid .col .img-holder img {
    vertical-align: top;
    border-radius: 5px 5px 0 0;
}

.single-trip .related-trips .grid .col .img-holder .price-holder {
    background: rgb(51, 6, 6);
    border-top-left-radius: 5px;
    color: rgba(255, 255, 255, 0.623);
    font-size: 20px;
    font-weight: 500;
    left: -5px;
    position: absolute;
    bottom: -20px;
}

.single-trip .related-trips .grid .col .img-holder .price-holder span {
    display: block;
    padding: 6px 15px;
    position: relative;
}

.single-trip .related-trips .grid .col .img-holder .price-holder span:before {
    width: 0;
    height: 0;
    border-top: 20px solid rgb(51, 6, 6);
    border-right: 20px solid transparent;
    position: absolute;
    top: 0;
    right: -20px;
    content: '';
}

.single-trip .related-trips .grid .col .img-holder .price-holder span:after {
    width: 0;
    height: 0;
    border-bottom: 20px solid rgb(51, 6, 6);
    border-right: 20px solid transparent;
    position: absolute;
    bottom: 0;
    right: -20px;
    content: '';
}

.single-trip .related-trips .grid .col .img-holder .price-holder:after {
    background: #144e33;
    border-bottom-left-radius: 4px;
    bottom: -6px;
    content: "";
    height: 6px;
    left: 0;
    position: absolute;
    width: 5px;
}

.single-trip .related-trips .grid .col .img-holder .discount-holder {
    color: rgba(255, 255, 255, 0.623);
    background: #7a6814;
    top: 20px;
    right: -5px;
    position: absolute;
    border-radius: 0 5px 0 0;
}

.single-trip .related-trips .grid .col .img-holder .discount-holder:after {
    background: #7a9433;
    border-bottom-right-radius: 4px;
    bottom: -6px;
    content: '';
    height: 6px;
    right: 0;
    position: absolute;
    width: 5px;
}

.single-trip .related-trips .grid .col .img-holder .discount-holder span {
    display: block;
    position: relative;
    padding: 3px 17px 3px 25px;
}

.single-trip .related-trips .grid .col .img-holder .discount-holder span:before {
    width: 0;
    height: 0;
    border-top: 17px solid #85751f;
    border-left: 15px solid transparent;
    position: absolute;
    top: 0;
    left: -15px;
    content: '';
}

.single-trip .related-trips .grid .col .img-holder .discount-holder span:after {
    width: 0;
    height: 0;
    border-bottom: 17px solid #491e1e;
    border-left: 15px solid transparent;
    position: absolute;
    bottom: 0;
    left: -15px;
    content: '';
}

.single-trip .related-trips .grid .col .text-holder {
    background: rgba(255, 255, 255, 0.623);
    padding: 40px 0 14px;
    border-radius: 0 0 5px 5px;
}

.single-trip .related-trips .grid .col .text-holder .title {
    font-size: 18px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    padding: 0 20px;
    margin: 0 0 7px;
}

.single-trip .related-trips .grid .col .text-holder .title a {
    color: rgb(219, 219, 219);
    transition: linear 0.2s;
}

.single-trip .related-trips .grid .col .text-holder .title a:hover,
.single-trip .related-trips .grid .col .text-holder .title a:focus {
    text-decoration: none;
    color: rgb(51, 6, 6);
}

.single-trip .related-trips .grid .col .text-holder .meta-info {
    padding: 0 20px;
    font-size: 14px;
}

.single-trip .related-trips .grid .col .text-holder .meta-info span {
    display: block;
    margin: 0 0 7px;
}

.single-trip .related-trips .grid .col .text-holder .meta-info svg {
    font-size: 16px;
    margin-right: 5px;
    color: rgb(51, 6, 6);
}

.single-trip .related-trips .grid .col .text-holder .btn-holder {
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.623);
    text-align: center;
}

.single-trip .related-trips .grid .col .text-holder .btn-holder .btn-more {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    display: inline-block;
    border: 2px solid rgb(51, 6, 6);
    border-radius: 20px;
    text-transform: uppercase;
    padding: 2px 30px;
    font-family: 'Montserrat', sans-serif;
    transition: linear 0.2s;
}

.single-trip .related-trips .grid .col .text-holder .btn-holder .btn-more:hover,
.single-trip .related-trips .grid .col .text-holder .btn-holder .btn-more:focus {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.623);
    background: rgb(51, 6, 6);
}

/*===================================
 Archive trip page
 ===================================*/
.post-type-archive-trip .trip-content-area {
    padding: 0;
}

/*===================================
 Checkout Page style
 ===================================*/
.place-order-form-secondary-wrapper {
    margin: 0 0 60px;
}

.place-order-form-secondary-wrapper .wp-travel-engine-order-form-wrapper {
    padding: 108px 40px 40px 40px;
    border: 1px solid rgba(255, 255, 255, 0.623);
    position: relative;
    border-radius: 5px;
}

.place-order-form-secondary-wrapper .wp-travel-engine-order-left-column {
    width: 350px;
    margin-right: 40px;
}

.place-order-form-secondary-wrapper .wp-travel-engine-order-left-column img {
    vertical-align: top;
}

.wp-travel-engine-order-form-wrapper .trip-title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgb(51, 6, 6);
    color: rgba(255, 255, 255, 0.623);
    font-size: 20px;
    line-height: 1.3em;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 20px 40px;
}

.place-order-form-secondary-wrapper .trip-property li {
    font-size: 15px;
    margin: 0 0 15px;
    font-family: 'Montserrat', sans-serif;
}

.place-order-form-secondary-wrapper .trip-property .cart-trip-total-price .cart-trip-total-price-holder {
    width: auto;
    font-size: 22px;
    line-height: 1.181em;
    font-weight: 600;
    color: rgb(219, 219, 219);
}

.place-order-form-secondary-wrapper .trip-property li span {
    width: 35%;
}

.place-order-form-secondary-wrapper .trip-property .cart-trip-total-price {
    border-top: 1px solid rgba(255, 255, 255, 0.623);
    margin-top: 25px;
    padding-top: 20px;
    font-size: 22px;
    line-height: 1.181em;
    font-weight: 600;
    color: rgb(219, 219, 219);
}

.place-order-form-secondary-wrapper .trip-property .cart-trip-total-price span {
    font-size: 18px;
    line-height: 1.444em;
    font-weight: 500;
    color: #666;
}

.relation-options-title,
.personal-options-title {
    font-size: 36px;
    line-height: 1.25em;
    font-weight: 500;
    color: rgb(219, 219, 219);
    font-family: 'Montserrat', sans-serif;
    padding: 0 0 5px;
    background: none;
    position: relative;
    margin: 0 0 35px;
}

.relation-options-title:after,
.personal-options-title:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 60px;
    height: 3px;
    background: rgb(51, 6, 6);
}

.wp-travel-engine-billing-details-wrapper,
.wp-travel-engine-personal-details-inner-wrapper,
.wp-travel-engine-relation-details-inner-wrapper {
    margin: 0 -15px;
}

.wp-travel-engine-billing-details-field-wrap,
.wp-travel-engine-personal-details,
.wp-travel-engine-relation-details {
    padding: 0 15px;
    margin-bottom: 30px;
}

.wp-travel-engine-billing-details-field-wrap:last-child {
    margin-bottom: 0;
}

#wp-travel-engine-order-form label {
    font-size: 14px;
    line-height: 1.714em;
}

#wp-travel-engine-order-form input[type="submit"] {
    font-size: 13px;
    line-height: 15px;
}

.wp-travel-engine-relation-details select,
.wp-travel-engine-personal-details select {
    padding: 11px 10px;
}

#wp-travel-engine-order-form .payment-options,
#wp-travel-engine-order-form .payment-options .payment-options-holder {
    margin: 0 0 30px;
}

/*==================================
 Fixed Departure Date Style
 ==================================*/
.fixed-starting {
    margin: 0 0 1.5em;
}

.fixed-starting h2 {
    color: rgb(219, 219, 219);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.fixed-starting .dd-list table {
    border: 0;
    color: rgb(219, 219, 219);
    margin: 0 0 1.5em;
}

.fixed-starting .dd-list table thead {
    border-bottom: 4px solid rgba(255, 255, 255, 0.623);
}

.fixed-starting .dd-list table thead th {
    font-weight: 600;
    background: none;
}

.fixed-starting .dd-list table tbody tr {
    border-bottom: 2px solid rgba(255, 255, 255, 0.623);
    transition: ease 0.2s;
}

.fixed-starting .dd-list table tbody tr:hover,
.fixed-starting .dd-list table tbody tr:focus {
    background: #fafafa;
}

.fixed-starting .dd-list table tbody .accordion-cost svg {
    color: #2cbb7d;
    margin-right: 5px;
}

.fixed-starting .dd-list table tbody .seats-available svg{
    margin-right: 5px;
}

.fixed-starting .dd-list table tbody .accordion-cost strong {
    font-weight: 400;
}

.fixed-starting .dd-list table tbody .accordion-seats .seats {
    font-weight: 400;
}

.fixed-starting .dd-list table tbody .book-btn {
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.623);
    border: 1px solid #ffab44;
    background: #ffab44;
    border-radius: 5px;
    transition: ease 0.2s;
    padding: 13px 20px;
}

.fixed-starting .dd-list table tbody .book-btn:hover,
.fixed-starting .dd-list table tbody .book-btn:focus {
    text-decoration: none;
    background: none;
    color: #ffab44;
}

.fixed-starting .dd-list table tbody .sold-out {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

.fixed-starting .dd-list .btn-more-dates {
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.623);
    border: 1px solid #ffab44;
    background: #ffab44;
    border-radius: 5px;
    transition: ease 0.2s;
    padding: 13px 20px;
    cursor: pointer;
}

.fixed-starting .dd-list .btn-more-dates:hover,
.fixed-starting .dd-list .btn-more-dates:focus {
    text-decoration: none;
    background: none;
    color: #ffab44;
}

/*===================================
 About Page style
 ===================================*/
.page-template-about .about-intro {
    padding: 40px 0 60px;
}

.page-template-about .about-intro .featured-image {
    margin: 0 0 60px;
}

.page-template-about .about-intro .featured-image img {
    vertical-align: top;
    border-radius: 5px;
}

.page-template-about .about-intro .text-holder {
    float: left;
    width: 60%;
    padding: 0 15px;
}

.page-template-about .about-intro .text-holder .title {
    font-size: 36px;
    line-height: 1.25em;
    font-weight: 500;
    color: rgb(219, 219, 219);
    margin: 0 0 46px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    padding: 0 0 10px;
}

.page-template-about .about-intro .text-holder .title:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 90px;
    height: 3px;
    background: rgb(51, 6, 6);
}

.page-template-about .about-intro .img-holder {
    float: left;
    width: 40%;
    padding: 0 15px;
}

.page-template-about .clients {
    background: #553535;
}

.page-template-about .clients:after {
    display: none;
}

.page-template-about .clients .section-header .section-title {
    color: rgb(219, 219, 219);
}

.page-template-about .clients #clients-slider .owl-prev,
.page-template-about .clients #clients-slider .owl-next {
    border: 2px solid rgba(221, 221, 221, 0.246);
}

.page-template-about .clients #clients-slider .owl-prev:after,
.page-template-about .clients #clients-slider .owl-next:after {
    color: rgb(51, 6, 6);
}

.services {
    padding: 80px 0;
    background: #553535;
}

.services .section-header {
    max-width: 660px;
    margin: 0 auto 60px;
    text-align: center;
}

.services .section-header .section-title {
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.25em;
    margin: 0 0 16px;
    padding-bottom: 10px;
    position: relative;
    color: rgb(219, 219, 219);
}

.services .section-header .section-title:after {
    background: rgb(51, 6, 6);
    content: '';
    height: 3px;
    left: 50%;
    position: absolute;
    top: 100%;
    width: 90px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.services .grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.services .grid .col {
    width: 25%;
    padding: 0 15px;
    margin: 0 0 30px
}

.services .grid .col .icon-holder {
    margin: 0 0 20px;
}

.services .grid .col .icon-holder img {
    vertical-align: top;
}

.services .grid .col .text-holder .service-title {
    font-size: 22px;
    line-height: 1.272em;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    color: rgb(219, 219, 219);
    margin: 0 0 20px;
    position: relative;
    padding: 0 0 10px;
}

.services .grid .col .text-holder .service-title:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 60px;
    height: 3px;
    background: rgb(51, 6, 6);
}

.team-section {
    padding: 80px 0;
}

.team-section .section-header {
    max-width: 660px;
    margin: 0 auto 60px;
    text-align: center;
}

.team-section .section-header .section-title {
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.25em;
    margin: 0 0 16px;
    padding-bottom: 10px;
    position: relative;
    color: rgb(219, 219, 219);
}

.team-section .section-header .section-title:after {
    background: rgb(51, 6, 6);
    content: '';
    height: 3px;
    left: 50%;
    position: absolute;
    top: 100%;
    width: 90px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.page-template-about .team-holder {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 -17px;
}

.page-template-about .team-holder .item {
    width: 25%;
}

/*===================================
 Header style
 ===================================*/
/*=================================
 Header two style
 =================================*/
.site-header.header-two {
    position: relative;
    /*z-index: 1;*/
}

.site-header.header-two .header-t {
    background: rgb(235, 235, 235);
    color: rgb(51, 6, 6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.623);
    padding: 0;
}

.site-header.header-two .header-t .left {
    float: left;
}

.site-header.header-two .languages {
    float: left;
    padding: 5px 20px 5px 0;
    margin-right: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.623);
}

.site-header.header-two .languages li a {
    color: rgb(51, 6, 6);
}

.site-header.header-two .opening-time {
    float: left;
    padding: 5px 0;
}

.site-header.header-two .opening-time svg {
    font-size: 18px;
    margin-right: 5px;
}

.site-header.header-two .header-t .right {
    float: right;
}

.site-header.header-two .social-networks {
    float: right;
    margin-left: 20px;
    padding-left: 20px;
    padding: 5px 0 5px 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.623);
}

.site-header.header-two .email-link {
    float: right;
    padding: 5px 0;
}

.site-header.header-two .email-link svg {
    font-size: 18px;
    margin-right: 5px;
}

@media only screen and (min-width: 1025px) {
    .header-two .nav-holder {
        border: 0;
    }

    .header-two .nav-holder .holder {
        background: rgb(51, 6, 6);
        border-radius: 5px 5px 0 0;
    }

    .header-two .nav-holder .holder:after {
        content: '';
        display: block;
        clear: both;
    }

    .header-two .main-navigation {
        float: left;
        width: 95%;
    }

    .header-two .main-navigation>div>ul>li {
        padding: 0 20px;
        margin: 0 1px 0 0;
        transition: linear 0.2s;
    }

    .header-two .main-navigation>div>ul>li.menu-item-has-children:after {
        right: 5px;
        background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 320 512'%3E%3Cpath d='M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z'/%3E%3C/svg%3E") center center no-repeat;
    }

    .header-two .main-navigation>div>ul>li>a {
        color: rgba(255, 255, 255, 0.623);
    }

    .header-two .main-navigation>div>ul>li:hover,
    .header-two .main-navigation>div>ul>li:focus,
    .header-two .main-navigation>div>ul>.current-menu-item,
    .header-two .main-navigation>div>ul>.current_page_item,
    .header-two .main-navigation>div>ul>.current-menu-ancestor,
    .header-two .main-navigation>div>ul>.current_page_ancestor {
        background: rgba(0, 0, 0, 0.1);
    }
}

.header-two .form-section {
    float: right;
    position: relative;
    -webkit-transform: translate(-30px, 20px);
    transform: translate(-30px, 20px);
}

.header-two #btn-search {
    color: rgba(255, 255, 255, 0.623);
    font-size: 20px;
}

.header-two .form-section a:focus {
    outline: none;
}

.header-two .form-section .form-holder {
    position: absolute;
    top: 34px;
    right: -20px;
    width: 230px;
    background: #ff9;
    padding: 6px 10px;
    border: 1px solid rgb(161, 114, 114);
    display: none;
}

.header-two .form-section .form-holder:before {
    width: 10px;
    height: 7px;
    background: #ff9;
    top: -1px;
    right: 20px;
    content: '';
    position: absolute;
    z-index: 1;
}

.header-two .form-section .form-holder:after {
    width: 10px;
    height: 10px;
    background: #ff9;
    border: 1px solid rgb(161, 114, 114);
    position: absolute;
    top: -5px;
    right: 20px;
    content: '';
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.header-two .form-section .form-holder .search-form label {
    width: 100%;
}

.header-two .form-section .form-holder .search-form input[type="search"] {
    font-size: 14px;
    color: rgb(219, 219, 219);
    background: none;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    width: 100%;
}

.header-two .form-section .form-holder .search-form input[type="submit"] {
    display: none;
}

.header-two .social-networks li a {
    color: rgb(51, 6, 6);
}

.header-two .social-networks li:last-child {
    margin-right: 0;
}

/*===================================
 Header Three style
 ===================================*/
.site-header.header-three .header-t {
    background: rgba(255, 255, 255, 0.623);
    border-bottom: 1px solid rgba(255, 255, 255, 0.623);
    padding: 0;
    color: rgb(51, 6, 6);
}

.header-three .header-t .left {
    float: left;
}

.header-three .header-t .opening-time {
    float: left;
    margin-right: 20px;
    padding-right: 20px;
    padding: 5px 20px 5px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.623);
}

.header-three .header-t .opening-time svg {
    font-size: 18px;
    margin-right: 5px;
}

.header-three .header-t .email-link {
    float: left;
    padding: 5px 0;
}

.header-three .header-t .email-link svg {
    font-size: 18px;
    margin-right: 5px;
}

.header-three .header-t .right {
    float: right;
}

.header-three .header-t .social-networks {
    padding: 5px 0;
}

.header-three .header-t .social-networks li a {
    color: rgb(51, 6, 6);
}

.header-three .header-t .social-networks li:last-child {
    margin-right: 0;
}

.header-three .header-b {
    position: relative;
    z-index: 1;
}

.header-three .header-b .grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.header-three .header-b .tools,
.header-three .header-b .site-branding,
.header-three .header-b .right {
    width: 33.333%;
    padding: 0 15px;
}

.header-three .languages {
    float: left;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.header-three .languages li a {
    color: #666;
}

.header-three .languages ul {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.header-three .tools .form-section .form-holder {
    right: auto;
    left: 0;
}

.header-three .tools .form-section .form-holder:after,
.header-three .tools .form-section .form-holder:before {
    right: auto;
    left: 25px;
}

.header-three .site-branding {
    width: 100%;
    text-align: center;
}

.header-three .tools .form-section {
    float: left;
    /*border-left: 1px solid rgba(255, 255, 255, 0.623);*/
    padding-left: 0;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.header-three .tools .form-section a {
    color: #666;
    font-size: 18px;
}

.header-three .nav-holder {
    border: 0;
    background: rgb(51, 6, 6);
}

@media only screen and (min-width: 1025px) {
    .header-three .main-navigation>div>ul>li {
        margin: 0;
        border-right: 1px solid rgba(255, 255, 255, 0.15);

    }

    .header-three .main-navigation>div>ul>li:first-child {
        border-left: 1px solid rgba(255, 255, 255, 0.15);
    }

    .header-three .main-navigation>div>ul>li>a {
        color: rgba(255, 255, 255, 0.623);
        padding: 12px 25px;
        transition: linear 0.2s;
    }

    .header-three .main-navigation>div>ul>li.menu-item-has-children {
        padding-right: 0;
    }

    .header-three .main-navigation>div>ul>li.menu-item-has-children:after {
        background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 320 512'%3E%3Cpath d='M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z'/%3E%3C/svg%3E") center center no-repeat;
        right: 11px;
    }

    .header-three .main-navigation>div>ul>li>a:hover,
    .header-three .main-navigation>div>ul>li>a:focus,
    .header-three .main-navigation>div>ul>li.current-menu-item>a,
    .header-three .main-navigation>div>ul>li.current-menu-ancestor>a,
    .header-three .main-navigation>div>ul>li.current_page_item>a,
    .header-three .main-navigation>div>ul>li.current_page_ancestor>a {
        background: rgba(0, 0, 0, 0.1);
    }
}

/*===================================
 Header Four style
 ===================================*/
.header-four .header-t {
    padding: 0;
}

.header-four .header-t .left {
    float: left;
}

.header-four .header-t .opening-time {
    float: left;
    margin-right: 20px;
    padding: 12px 20px 11px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.header-four .header-t .opening-time svg {
    font-size: 18px;
    margin-right: 5px;
}

.header-four .header-t .email-link {
    float: left;
    color: rgba(255, 255, 255, 0.623);
    padding: 12px 0 11px;
}

.header-four .header-t .email-link svg {
    font-size: 18px;
    margin-right: 5px;
}

.header-four .header-t .right {
    float: right;
}

.header-four .social-networks li {
    margin: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.header-four .social-networks li:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.header-four .social-networks li a {
    color: rgba(255, 255, 255, 0.623);
    padding: 11px 10px;
}

@media only screen and (min-width: 1025px) {
    .header-four .main-navigation {
        float: left;
        width: auto;
    }

    .header-four .main-navigation>div>ul>li {
        margin: 0;
        border-right: 1px solid rgba(255, 255, 255, 0.623);
    }

    .header-four .main-navigation>div>ul>li.menu-item-has-children:after {
        right: 15px;
        background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23111' viewBox='0 0 320 512'%3E%3Cpath d='M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z'/%3E%3C/svg%3E") center center no-repeat;
    }

    .header-four .main-navigation>div>ul>li:first-child {
        border-left: 1px solid rgba(255, 255, 255, 0.623);
    }

    .header-four .main-navigation>div>ul>li>a {
        padding: 10px 22px;
    }

    .header-four .main-navigation>div>ul>li>a:hover,
    .header-four .main-navigation>div>ul>li>a:focus {
        color: rgb(219, 219, 219);
    }

    .header-four .main-navigation>div>ul>li:hover,
    .header-four .main-navigation>div>ul>li:focus {
        background: rgba(0, 0, 0, 0.05);
    }

    .header-four .main-navigation>div>ul>li:hover:after,
    .header-four .main-navigation>div>ul>li:focus:after {
        color: rgb(219, 219, 219);
    }

    .header-four .main-navigation>div>ul>.current-menu-item,
    .header-four .main-navigation>div>ul>.current-menu-ancestor,
    .header-four .main-navigation>div>ul>.current_page_item,
    .header-four .main-navigation>div>ul>.current_page_ancestor {
        background: rgba(0, 0, 0, 0.05);
    }

    .header-four .main-navigation>div>ul>.current-menu-item>a,
    .header-four .main-navigation>div>ul>.current-menu-ancestor>a,
    .header-four .main-navigation>div>ul>.current_page_item>a,
    .header-four .main-navigation>div>ul>.current_page_ancestor>a {
        color: rgb(219, 219, 219);
    }
}

.header-four .languages {
    margin-right: 20px;
    padding: 10px 20px 10px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.623);
}

.header-four .languages ul {
    z-index: 1;
}

.header-four .languages li a {
    color: #666;
}

.header-four .tools .form-section {
    margin: 0;
    padding: 10px 0;
    border: 0;
}

.header-four .tools .form-section a {
    color: #666;
    font-size: 18px;
}

/*===================================
 Header Five style
 ===================================*/
.site-header.header-five .header-t {
    background: rgba(255, 255, 255, 0.623);
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.623);
}

.header-five .header-t .left {
    float: left;
}

.header-five .languages {
    float: left;
    margin-right: 20px;
    padding: 8px 20px 8px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.623);
}

.header-five .languages li:after {
    color: #666;
}

.header-five .languages li a {
    color: #666;
}

.header-five .form-section {
    float: left;
    margin-right: 20px;
    padding: 8px 20px 8px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.623);
    position: relative;
}

.header-five .form-section a {
    color: #666;
    font-size: 18px;
}

.header-five .form-section a:focus {
    outline: none;
}

.header-five .form-section .form-holder {
    position: absolute;
    top: 45px;
    right: auto;
    left: -20px;
    width: 230px;
    background: #ff9;
    padding: 6px 10px;
    border: 1px solid rgb(161, 114, 114);
    display: none;
}

.header-five .form-section .form-holder:before {
    width: 10px;
    height: 7px;
    background: #ff9;
    top: -1px;
    left: 20px;
    content: '';
    position: absolute;
    z-index: 1;
}

.header-five .form-section .form-holder:after {
    width: 10px;
    height: 10px;
    background: #ff9;
    border: 1px solid rgb(161, 114, 114);
    position: absolute;
    top: -5px;
    left: 20px;
    content: '';
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.header-five .form-section .form-holder .search-form label {
    width: 100%;
}

.header-five .form-section .form-holder .search-form input[type="search"] {
    font-size: 14px;
    color: rgb(219, 219, 219);
    background: none;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    width: 100%;
}

.header-five .form-section .form-holder .search-form input[type="submit"] {
    display: none;
}

.header-five .tel-link {
    float: left;
    margin-top: 8px;
}

.header-five .tel-link svg {
    font-size: 18px;
    margin-right: 5px;
}

.header-five .header-t .right {
    float: right;
}

.header-five .social-networks {
    float: right;
    margin-left: 20px;
}

.header-five .social-networks li {
    margin: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.623);
}

.header-five .social-networks li:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.623);
}

.header-five .social-networks li a {
    display: block;
    padding: 8px 10px;
    color: rgb(51, 6, 6);
}

.header-five .email-link {
    float: right;
    margin: 8px 0 0;
}

.header-five .email-link svg {
    font-size: 18px;
    margin-right: 5px;
}

@media only screen and (min-width: 1025px) {
    .header-five .nav-holder {
        display: none;
    }

    .header-five .main-navigation {
        float: right;
        width: auto;
        margin: 20px 0 0;
    }

    .header-five .main-navigation ul {
        font-size: 14px;
    }

    .header-five .main-navigation>div>ul>li {
        margin: 0 0 0 1px;
        transition: linear 0.2s;
    }

    .header-five .main-navigation>div>ul>li>a {
        padding: 5px 15px;
    }

    .header-five .main-navigation>div>ul>li>a:hover,
    .header-five .main-navigation>div>ul>li>a:focus,
    .header-five .main-navigation>div>ul>li:hover,
    .header-five .main-navigation>div>ul>li:focus,
    .header-five .main-navigation>div>ul>li:hover>a,
    .header-five .main-navigation>div>ul>li:focus>a,
    .header-five .main-navigation>div>ul>.current-menu-item>a,
    .header-five .main-navigation>div>ul>.current-menu-ancestor>a,
    .header-five .main-navigation>div>ul>.current_page_item>a,
    .header-five .main-navigation>div>ul>.current_page_ancestor>a {
        background: rgb(51, 6, 6);
        color: rgba(255, 255, 255, 0.623);
        border-radius: 5px;
    }

    .header-five .main-navigation>div>ul>.current-menu-item:after,
    .header-five .main-navigation>div>ul>.current-menu-ancestor:after,
    .header-five .main-navigation>div>ul>.current_page_item:after,
    .header-five .main-navigation>div>ul>.current_page_ancestor:after {
        background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 320 512'%3E%3Cpath d='M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z'/%3E%3C/svg%3E") center center no-repeat;
    }

    .header-five .main-navigation>div>ul>li:hover:after,
    .header-five .main-navigation>div>ul>li:focus:after {
        background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 320 512'%3E%3Cpath d='M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z'/%3E%3C/svg%3E") center center no-repeat;
    }

    .header-five .main-navigation>div>ul>li.menu-item-has-children {
        padding: 0;
    }

    .header-five .main-navigation>div>ul>li.menu-item-has-children:after {
        right: 4px;
    }
}

/*===================================
 Footer style
 ===================================*/
.site-footer {
    background:#000;
    color: rgba(255, 255, 255, 0.623);
}

.site-footer .footer-t {
    padding: 70px 0 30px;
    border-bottom: 1px solid #33383a;
}

.site-footer .column {
    float: left;
    width: 25%;
    padding: 0 15px;
}

.site-footer .widget {
    margin: 0 0 40px;
}

.site-footer .widget .widget-title {
    font-size: 18px;
    line-height: 1.444em;
    color: rgba(255, 255, 255, 0.623);
    text-transform: none;
    font-weight: 500;
    text-align: left;
}

.site-footer .widget .widget-title:after {
    left: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.site-footer .widget ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer .widget ul li:last-child {
    border-bottom: 0;
}

.site-footer .widget ul li a {
    color: rgba(255, 255, 255, 0.75);
}

.site-footer .widget ul li a:hover,
.site-footer .widget ul li a:focus {
    color: rgba(255, 255, 255, 0.623);
}

.site-footer .widget_calendar table tbody {
    background: rgba(255, 255, 255, 0.623);
}

.site-footer .widget_rss .widget-title a {
    color: rgba(255, 255, 255, 0.623);
}

.site-footer .widget_raratheme_popular_post ul li,
.site-footer .widget_raratheme_recent_post ul li {
    overflow: hidden;
    padding-bottom: 0;
    border-bottom: 0;
    margin: 0 0 30px;
}

.site-footer .widget_raratheme_popular_post ul li:last-child,
.site-footer .widget_raratheme_recent_post ul li:last-child {
    margin-bottom: 0;
}

.site-footer .widget_search .search-form input[type="search"] {
    color: rgba(255, 255, 255, 0.623);
}

.site-footer .footer-b {
    padding: 30px 0;
    font-size: 14px;
    line-height: 1.714em;
    color: rgba(255, 255, 255, 0.75);
}

.site-footer .footer-b:after {
    content: '';
    display: block;
    clear: both;
}

.site-footer .footer-b a {
    color: rgba(255, 255, 255, 0.75);
    transition: linear 0.2s;
}

.site-footer .footer-b a:hover,
.site-footer .footer-b a:focus {
    color: rgb(51, 6, 6);
    text-decoration: none;
}

.site-footer .site-info {
    float: left;
}

.footer-navigation {
    float: right;
}

.footer-menu-privacy .footer-navigation {
    margin-right: 20px;
    padding-right: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.75);
}

.footer-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: 1em;
}

.footer-navigation ul:after {
    content: '';
    display: block;
    clear: both;
}

.footer-navigation ul li {
    float: left;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.75);
}

.footer-navigation ul li:first-child {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
}

.site-footer .privacy-policy-link {
    float: right;
    line-height: 1em;
}

/* Back to Top */
#rara-top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    /*background: rgba(0, 0, 0, 0.5);*/
    background: #000;
    color: rgb(231, 231, 231);
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    display: none;
    opacity: 0.5;
    z-index: 9999;
}

#rara-top:hover,
#rara-top:focus {
    opacity: 1;
}

#rara-top svg {
    font-size: 25px;
}

#rara-top svg:hover {
    color: rgba(255, 255, 255, 0.623);
}

/* Back to Top Ends*/


/*===================================
 Single Trip Style
 ===================================*/
.trip-content-area {
    padding: 0 15px;
}

.single-trip #content {
    margin-top: 40px;
}

.single-trip .trip-post .entry-header .entry-title {
    font-size: 40px;
    line-height: 1.125em;
    color: rgb(219, 219, 219);
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.single-trip .trip-post .entry-header .entry-title:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 60px;
    height: 3px;
    background: rgb(51, 6, 6);
}

#tabs-container {
    margin-top: 60px;
}

#tabs-container .nav-tab-wrapper {
    font-size: 12px;
    line-height: 1.666em;
    text-align: center;
    text-transform: uppercase;
    margin: 0 0 20px;
    font-weight: 500;
    width: 100%;
}

#tabs-container .tab-inner-wrapper .tab-anchor-wrapper {
    float: none;
    border: 0;
    background: #553535;
    margin: 0;
    border-left: 1px solid #ddd;
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
}

#tabs-container .tab-inner-wrapper .tab-anchor-wrapper:first-child {
    border-left: 0;
}

#tabs-container .tab-inner-wrapper .tab-anchor-wrapper a {
    display: block;
    padding: 15px 5px;
    color: #838383;
}

#tabs-container .tab-inner-wrapper .tab-anchor-wrapper .nav-tab-active {
    background: rgb(51, 6, 6);
    border: 0;
    color: rgba(255, 255, 255, 0.623);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    -webkit-transform: scale(1.12);
    transform: scale(1.12);
    position: relative;
}

#tabs-container .tab-inner-wrapper .tab-anchor-wrapper .nav-tab-active:after {
    content: '';
    position: absolute;
    bottom: -9px;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid rgb(51, 6, 6);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

#tabs-container .tab-inner-wrapper .tab-anchor-wrapper .tab-icon {
    display: block;
    font-size: 26px;
    margin: 0 0 8px;
}

#tabs-container .nav-tab-wrapper .tab-inner-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

#tabs-container .tab-inner-wrapper:after {
    display: none;
}

#tabs-container .tab-content {
    border: 0;
    margin: 0;
}

#tabs-container .tab-content h1,
#tabs-container .tab-content h2,
#tabs-container .tab-content h3,
#tabs-container .tab-content h4,
#tabs-container .tab-content h5,
#tabs-container .tab-content h6 {
    color: rgb(0, 0, 0);
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    line-height: 1.272em;
    padding: 0 0 5px;
}

#tabs-container .tab-content h1 {
    font-size: 30px
}

#tabs-container .tab-content h2 {
    font-size: 22px;
    margin: 0 0 25px;
}

#tabs-container .tab-content h3 {
    font-size: 20px
}

#tabs-container .tab-content h4 {
    font-size: 18px
}

#tabs-container .tab-content h5 {
    font-size: 16px
}

#tabs-container .tab-content h6 {
    font-size: 14px
}

#tabs-container .tab-content h1:after,
#tabs-container .tab-content h2:after,
#tabs-container .tab-content h3:after,
#tabs-container .tab-content h4:after,
#tabs-container .tab-content h5:after,
#tabs-container .tab-content h6:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 60px;
    height: 3px;
    background: rgb(51, 6, 6);
}

#tabs-container .tab-content .overview ul {
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

#tabs-container .tab-content .overview ul li {
    padding-left: 30px;
    margin: 0 0 15px;
    position: relative;
}

#tabs-container .tab-content .overview ul li:before {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 4px;
    left: 0;
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2332b67a' viewBox='0 0 512 512'%3E%3Cpath d='M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z'/%3E%3C/svg%3E") center center no-repeat;
    content: '';
}

/*Itinerary tab-content style*/
.itinerary-row {
    border: 0;
    margin: 0 0 0 20px;
    position: relative;
    padding: 0 0 20px 40px;
    border-left: 2px dotted rgba(0, 0, 0, 0.1);
}

.itinerary-row:last-child {
    border-left: 0;
}

.itinerary-row:before {
    counter-increment: section;
    content: counter(section);
    position: absolute;
    top: 0;
    left: -24px;
    font-size: 22px;
    color: rgba(255, 255, 255, 0.623);
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    background: rgb(51, 6, 6);
    padding: 10px 18px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
}


.itinerary .itinerary-row>.title {
    display: none;
}

.itinerary {
    counter-reset: section;
}

.itinerary .itinerary-content .title {
    font-size: 20px;
    line-height: 1.3em;
    font-weight: 500;
    color: rgba(230, 230, 230, 0.877);
    font-family: 'Montserrat', sans-serif;
    margin: 0 0 20px;
}

/*cost tab style*/
#include-result,
#exclude-result {
    margin: 0 0 50px;
}

#include-result li {
    padding-left: 30px;
    margin: 0 0 15px;
}

#include-result li:before {
    font-size: 10px;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(50, 182, 122, 0.5);
    color: rgb(51, 6, 6);
    line-height: 17px;
    border-radius: 50%;
    text-align: center;
}

#exclude-result li {
    padding-left: 30px;
    margin: 0 0 15px;
}

#exclude-result li:before {
    font-size: 10px;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(229, 75, 75, 0.5);
    color: #978e3f;
    line-height: 17px;
    border-radius: 50%;
    text-align: center;
}

/*faq tab style*/
.faq-row {
    border: 1px solid #92841c;
    border-left: 0;
    border-right: 0;
    margin: 0;
}

.faq .faq-row .accordion-tabs-toggle {
    border: 0;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    color: rgb(0, 0, 0);
    padding: 15px 30px;
}

.faq .faq-row .accordion-tabs-toggle:hover,
.faq .faq-row .accordion-tabs-toggle:focus {
    text-decoration: none;
}

.faq .faq-row .accordion-tabs-toggle:after {
    position: absolute;
    top: 12px;
    right: 10px;
    content: '';
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23b5b5b5' viewBox='0 0 320 512'%3E%3Cpath d='M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z'/%3E%3C/svg%3E") center center no-repeat;
    width: 18px;
    height: 28px;
}

.faq .faq-row .accordion-tabs-toggle .custom-toggle-tabs {
    display: none;
}

.faq .faq-row .accordion-tabs-toggle.active {
    background: rgb(58, 53, 53);
}

.faq .faq-row .accordion-tabs-toggle.active:after {
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 352 512'%3E%3Cpath d='M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z'/%3E%3C/svg%3E") center center no-repeat;
    width: 14px;
    height: 28px;
}

.faq .faq-row .faq-content {
    padding: 20px 30px 5px
}


/*trip price info style*/
.trip-content-area .widget-area .trip-price {
    margin: 0 0 60px;
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.15);
}

.trip-content-area .widget-area .trip-price .price-holder {
    background: rgb(51, 6, 6);
    text-align: left;
    border-radius: 5px;
    padding: 30px;
    border: 0;
}

.trip-content-area .widget-area .trip-price .price-holder .top-price-holder {
    font-family: 'Montserrat', sans-serif;
    margin: 0 0 10px;
    border-bottom: 0;
    padding: 0;
}

.trip-content-area .widget-area .trip-price .price-holder .top-price-holder .price-from {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: rgb(241, 241, 241);
    display: block;
    margin: 0 0 10px;
}

.trip-content-area .widget-area .trip-price .price-holder .prev-price strike {
    font-size: 22px;
    line-height: 1.272em;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5) !important;
    margin: 0 0 10px;
    display: block;
}

.trip-content-area .widget-area .trip-price .price-holder .price {
    font-size: 36px;
    line-height: 1.25em;
    color: rgb(175, 175, 175);
    font-weight: 500;
}

.trip-content-area .widget-area .trip-price .price-holder .price .trip-cost-holder {
    font-weight: 600;
}

.trip-content-area .widget-area .trip-price .price-holder .price .currency-code {
    display: inline-block;
    margin-right: 2px;
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
    font-size: 20px;
}

.trip-content-area .widget-area .trip-price .price-holder .price .per-person {
    font-size: 13px;
    line-height: 15px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.trip-content-area .widget-area .trip-price .price-holder form .travelers-number-input label {
    color: rgba(255, 255, 255, 0.623);
    position: relative;
    font-size: 14px;
}

.trip-content-area .widget-area .trip-price .price-holder form input[type="number"] {
    border: 0;
}

.trip-content-area .widget-area .trip-price .price-holder form .date-time-wrapper input[type="text"] {
    padding: 7px 10px;
}

.trip-content-area .widget-area .trip-price .price-holder form .date-time-wrapper {
    margin: 0 0 10px;
    padding: 0;
    border-bottom: 0;
    border-radius: 5px;
}

.trip-content-area .widget-area .trip-price .price-holder form .date-time-wrapper:after{
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}

.trip-content-area .widget-area .trip-price .price-holder form .total-amt {
    font-size: 20px;
    line-height: 1.3em;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.623);
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    padding: 0;
    margin: 20px 0;
}

.trip-content-area .widget-area .trip-price .price-holder form .total-amt b {
    font-weight: 400;
}

.trip-content-area .widget-area .trip-price .price-holder form .check-availability {
    font-size: 13px;
    line-height: 2em;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.623);
    letter-spacing: 1px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    background: #ffaf46;
    display: block;
    width: 100%;
    border: 2px solid #ffaf46;
    border-radius: 5px;
}

.trip-content-area .widget-area .trip-price .price-holder form .check-availability:hover,
.trip-content-area .widget-area .trip-price .price-holder form .check-availability:focus,
.trip-content-area .widget-area .trip-price .price-holder form .book-submit:hover,
.trip-content-area .widget-area .trip-price .price-holder form .book-submit:focus {
    color: rgba(255, 255, 255, 0.623);
    background: none;
    border-color: #ffaf46;
}

.trip-content-area .widget-area .trip-price .price-holder form .book-submit {
    font-size: 13px;
    line-height: 2em;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.623);
    letter-spacing: 1px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    background: #ffaf46;
    width: 100%;
    width: 100%;
    border: 2px solid #ffaf46;
    border-radius: 5px;
}

.date-time-wrapper:after {
    right: 10px;
}

.trip-content-area .widget-area .trip-price .price-holder .top-price-holder .group-discount-notice {
    background: #4b1212 url(images/group-discount.png) no-repeat 50% 15px;
    color: rgba(255, 255, 255, 0.623);
    position: absolute;
    top: -10px;
    right: 10px;
    width: 88px;
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 1.3em;
    font-weight: 600;
    padding: 55px 0 20px;
    box-shadow: none;
}

.trip-content-area .widget-area .trip-price .group-discount-notice:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-bottom: 13px solid rgb(51, 6, 6);
    border-left: 44px solid transparent;
    border-right: 45px solid transparent;
}

.trip-content-area .widget-area .trip-price .price-holder .top-price-holder .group-discount-notice:before {
    width: 0;
    height: 0;
    border-bottom: 10px solid #850100;
    border-left: 10px solid transparent;
    position: absolute;
    top: 0;
    left: -10px;
    content: '';
    background: none;
}

.trip-content-area .widget-area .trip-price .price-holder .group-discount-check {
    font-weight: 600;
    border-bottom: 2px dotted rgba(255, 255, 255, 0.623);
    display: inline-block;
    margin: 0 0 10px;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.623);
    padding: 0;
    color: rgba(255, 255, 255, 0.623);
}

.trip-content-area .widget-area .trip-price .group-discount-check:focus,
.trip-content-area .widget-area .trip-price .group-discount-check:hover {
    color: rgba(255, 255, 255, 0.623);
    text-decoration: none;
    border-bottom-color: transparent;
}

.trip-content-area .widget-area .trip-price .group-discount-check svg {
    margin-left: 5px;
}

.group-discount-pop h3 {
    color: rgb(219, 219, 219);
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    line-height: 1.272em;
    padding: 0 0 5px;
}

.group-discount-pop h3:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 60px;
    height: 3px;
    background: rgb(51, 6, 6);
}

.group-discount-pop .popup-inner table {
    margin: 0;
}

.group-discount-pop .popup-inner table td {
    border: 0;
    padding: 10px;
}

.group-discount-pop .popup-inner table thead {
    background: #f3f3f3;
    border-bottom: 4px solid #e4e4e4;
    font-weight: 600;
}

.group-discount-pop .popup-inner table tbody tr {
    border-bottom: 2px solid #e4e4e4;
}

.group-discount-pop .popup-inner table tbody svg {
    color: #32b67c;
}

.group-discount-pop .popup-inner .popup-close {
    display: none;
}

.group-discount-pop .popup-inner a[data-popup-close="popup-1"] {
    width: 40px;
    height: 40px;
    background: #32b67c;
    color: rgba(255, 255, 255, 0.623);
    font-size: 0;
    border-radius: 50%;
    position: absolute;
    top: -20px;
    right: -10px;
}

.group-discount-pop .popup-inner a[data-popup-close="popup-1"]:after {
    content: "X";
    position: absolute;
    top: 50%;
    left: 50%;
    color: rgba(255, 255, 255, 0.623);
    font-size: 20px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.trip-content-area .widget-area .trip-price .price-holder form .travelers-number-input{
    padding: 0;
    border-bottom: 0;
}

.trip-content-area .widget-area .trip-price form .discount-price-per-traveler,
.trip-content-area .widget-area .trip-price form .discount-price-per-child-traveler {
    color: rgba(255, 255, 255, 0.623);
    margin: 0 0 10px;
    padding: 0 0 10px;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.623);
    font-size: 14px;
    line-height: 1.650em;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.trip-content-area .widget-area .trip-price form .discount-price-per-traveler strong,
.trip-content-area .widget-area .trip-price form .discount-price-per-child-traveler strong{
    font-weight: 400;
    width: 60%;
}

/*====================================
 Extra Service Style
====================================*/
.wpte-expand-extra-service{
    color: rgba(255, 255, 255, 0.623);
    margin: 0 0 15px;
    padding: 0;
    border-bottom: 0;
}

.wpte-expand-extra-service:after{
    display: none;
}

.wpte-expand-extra-service .scroll-down h5{
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    position: relative;
}

.wpte-expand-extra-service .scroll-down h5:after{
    position: absolute;
    top: 50%;
    right: 10px;
    content: '';
    width: 15px;
    height: 15px;
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 320 512'%3E%3Cpath d='M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z'/%3E%3C/svg%3E") center center no-repeat;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}

.wpte-expand-extra-service .scroll-down{
    display: block;
    margin: 0 0 10px;
}

.wpte-expand-extra-service .extra-service-wrap{
    border: 0;
    margin: 0 -30px;
    padding: 20px 30px;
    display: block;
    color: #666;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 0;
    text-align: center;
}

.wpte-expand-extra-service .extra-service-wrap span.extra-service{
    font-size: 15px;
}

.extra-service-wrap .tooltip{
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23666' viewBox='0 0 512 512'%3E%3Cpath d='M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zM262.655 90c-54.497 0-89.255 22.957-116.549 63.758-3.536 5.286-2.353 12.415 2.715 16.258l34.699 26.31c5.205 3.947 12.621 3.008 16.665-2.122 17.864-22.658 30.113-35.797 57.303-35.797 20.429 0 45.698 13.148 45.698 32.958 0 14.976-12.363 22.667-32.534 33.976C247.128 238.528 216 254.941 216 296v4c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-1.333c0-28.462 83.186-29.647 83.186-106.667 0-58.002-60.165-102-116.531-102zM256 338c-25.365 0-46 20.635-46 46 0 25.364 20.635 46 46 46s46-20.636 46-46c0-25.365-20.635-46-46-46z'/%3E%3C/svg%3E") center center no-repeat;
    width: 12px;
    height: 15px;
    margin-left: 10px;
    position: relative;
}

.extra-service-wrap .tooltip-content{
    padding: 10px 15px;
    font-size: 12px;
    line-height: 1.600em;
    top: inherit;
    bottom: 30px;
}

.wpte-expand-extra-service .extra-service-wrap span.price-per-extra-service,
.wpte-expand-extra-service .extra-service-wrap span.extra-service-currency,
.wpte-expand-extra-service .extra-service-wrap span.extra-service-price{
    font-size: 14px;
}

.wpte-expand-extra-service .extra-service-wrap .input-holder{
    border: 0;
    background: rgba(255, 255, 255, 0.623);
    width: 130px;
    margin: 0 auto;
    border-radius: 100px;
    padding: 5px;
}

.wpte-expand-extra-service .extra-service-wrap .input-holder .less-no,
.wpte-expand-extra-service .extra-service-wrap .input-holder .more-no{
    background: rgb(51, 6, 6);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.623);
}

.wpte-expand-extra-service .extra-service-wrap .input-holder input[type="text"]{
    border-top: 0;
    border-bottom: 0;
    border-radius: 0;
    background: none;
    color: #000;
    border: 0;
    width: 60px;
}

.extra-service-title{
    font-size: 15px;
    font-weight: 600;
    color: #000;
}

.wpte-expand-extra-service .extra-service-wrap .extra-service-info-holder{
    padding-right: 0;
    margin-bottom: 10px;
}

/*====================================
 Single Trip slider gallery
 ===================================*/
.wpte-trip-feat-img-gallery img {
    height: 490px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 5px;
}

/*==================================
 Single trip enquiry form
 ====================================*/
.single-trip #wte_enquiry_contact_form {
    background: rgba(51, 6, 6, 0.774);
    border-radius: 5px;
    padding: 30px;
    margin-top: 50px;
}

.single-trip #wte_enquiry_contact_form .row-repeater {
    width: 33.333%;
}

.single-trip #wte_enquiry_contact_form h2,
.single-trip #wte_enquiry_contact_form .package-name-holder,
.single-trip #wte_enquiry_contact_form .msg-holder,
.single-trip #wte_enquiry_contact_form .confirm-holder,
.single-trip #wte_enquiry_contact_form .submit,
.single-trip #wte_enquiry_contact_form .confirm-msg {
    width: 100%;
}
.single-trip #wte_enquiry_contact_form .confirm-msg{
    margin-bottom: 0;
}
.single-trip #wte_enquiry_contact_form .confirm-msg textarea{
    vertical-align: top;
}
.single-trip #wte_enquiry_contact_form .confirm-holder{
    display: block;
    line-height: 1.35;
    margin-bottom: 20px;
}
.single-trip #wte_enquiry_contact_form .wp-travel-engine-submit-wrap{
    padding-left: 10px;
}

.single-trip #wte_enquiry_contact_form h2 {
    font-size: 22px;
    line-height: 1.272em;
    font-weight: 500;
    color: rgb(219, 219, 219);
    font-family: 'Montserrat', sans-serif;
    margin: 0 0 10px;
}

.single-trip #wte_enquiry_contact_form label {
    display: none;
}

.single-trip #wte_enquiry_contact_form input[type="text"],
.single-trip #wte_enquiry_contact_form input[type="email"],
.single-trip #wte_enquiry_contact_form input[type="url"],
.single-trip #wte_enquiry_contact_form input[type="password"],
.single-trip #wte_enquiry_contact_form input[type="search"],
.single-trip #wte_enquiry_contact_form input[type="number"],
.single-trip #wte_enquiry_contact_form input[type="tel"],
.single-trip #wte_enquiry_contact_form input[type="range"],
.single-trip #wte_enquiry_contact_form input[type="date"],
.single-trip #wte_enquiry_contact_form input[type="month"],
.single-trip #wte_enquiry_contact_form input[type="week"],
.single-trip #wte_enquiry_contact_form input[type="time"],
.single-trip #wte_enquiry_contact_form input[type="datetime"],
.single-trip #wte_enquiry_contact_form input[type="datetime-local"],
.single-trip #wte_enquiry_contact_form input[type="color"],
.single-trip #wte_enquiry_contact_form textarea,
.single-trip #wte_enquiry_contact_form select {
    width: 100%;
    border: 1px solid rgb(161, 114, 114);
}

.single-trip #wte_enquiry_contact_form select {
    height: 100%;
    padding: 10px 6px;
}

.single-trip #wte_enquiry_contact_form .package-name-holder label,
.single-trip #wte_enquiry_contact_form .confirm-holder label {
    display: inline-block;
}

.single-trip #wte_enquiry_contact_form .confirm-holder label input {
    margin-right: 5px;
}

.single-trip #wte_enquiry_contact_form .package-name-holder label{
    padding-right: 10px;
}
.single-trip #wte_enquiry_contact_form .package-name-holder .wp-travel-engine-info {
    font-weight: 600;
    color: #a85807;
    display: inline-block;
    vertical-align: middle;
    background: none;
    border: 0;
    pointer-events: none;
}

.single-trip #wte_enquiry_contact_form .success-msg {
    color: green;
}

.single-trip #wte_enquiry_contact_form .failed-msg {
    color: red;
}

/*===================================
 Trip facts style
 ==================================*/

.secondary-trip-info .wte-trip-facts {
    background: #553535;
    border: 1px solid #d5d5d5;
    border-radius: 5px;
    padding: 30px;
    margin: 50px 0 0;
}

.secondary-trip-info .wte-trip-facts .widget-title {
    font-size: 14px;
    line-height: 1.5em;
    color: rgb(10, 9, 9);
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 25px;
}

.trip-facts-value li svg {
    color: rgb(15, 13, 13);
}

.trip-facts-value .trip-facts-text label,
.trip-facts-value .trip-facts-textarea label,
.trip-facts-value label {
    font-size: 13px;
    line-height: 1.538em;
    font-weight: 600;
    color: rgb(51, 6, 6);
}

/*======================================
 Destination Page
 ======================================*/
.page-template-template-destination .trip-content-area,
.page-template-template-activities .trip-content-area,
.page-template-template-trip_types .trip-content-area {
    padding: 0 15px;
}

.page-template-template-destination .trip-content-area .wp-travel-engine-archive-outer-wrap,
.page-template-template-activities .trip-content-area .wp-travel-engine-archive-outer-wrap,
.page-template-template-trip_types .trip-content-area .wp-travel-engine-archive-outer-wrap {
    margin: 0;
}

.page-template-template-destination .trip-content-area .wp-travel-engine-archive-outer-wrap .page-header .page-title,
.page-template-template-activities .trip-content-area .wp-travel-engine-archive-outer-wrap .page-header .page-title,
.page-template-template-trip_types .trip-content-area .wp-travel-engine-archive-outer-wrap .page-header .page-title {
    display: none;
}

.page-template-template-destination .destination-holder .item {
    position: relative;
}

.page-template-template-destination .destination-holder .item a {
    display: block;
}

.page-template-template-destination .destination-holder .item img {
    vertical-align: top;
    height: 275px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.page-template-template-destination .destination-holder .item .child-title {
    position: absolute;
    left: 15px;
    bottom: 0;
    width: calc(100% - 30px);
    font-size: 30px;
    line-height: 1.2em;
    color: rgba(255, 255, 255, 0.623);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin: 0;
    padding: 23px;
    pointer-events: none;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.65+100 */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
    /* IE6-9 */
}

/*==================================
 Activities page style
 ==================================*/
.page-template-template-activities .activities-holder .img-holder,
.page-template-template-trip_types .trip_types-holder .img-holder {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.623);
}

.page-template-template-activities .activities-holder .img-holder img,
.page-template-template-trip_types .trip_types-holder .img-holder img {
    vertical-align: top;
    width: 100%;
}

.page-template-template-activities .activities-holder .item .img-holder .title-holder,
.page-template-template-trip_types .trip_types-holder .item .img-holder .title-holder {
    font-size: 18px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    padding: 40px 26px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.65+100 */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
    /* IE6-9 */
}

.page-template-template-activities .activities-holder .item .img-holder .text-holder,
.page-template-template-trip_types .trip_types-holder .item .img-holder .text-holder {
    padding: 30px 25px;
    overflow-y: auto;
}

.page-template-template-activities .activities-holder .item .text-holder .title,
.page-template-template-trip_types .trip_types-holder .item .text-holder .title {
    font-size: 18px;
    margin: 0 0 10px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.page-template-template-activities .activities-holder .item .text-holder p,
.page-template-template-trip_types .trip_types-holder .item .text-holder p {
    margin: 0 0 5px;
}

.page-template-template-activities .activities-holder .item .text-holder .text,
.page-template-template-trip_types .trip_types-holder .item .text-holder .text {
    /*max-height: 295px;
    overflow: hidden;*/
}

.page-template-template-activities .activities-holder .item .text-holder .btn-more,
.page-template-template-trip_types .trip_types-holder .item .text-holder .btn-more {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.623);
    transition: linear 0.2s;
}

.page-template-template-activities .activities-holder .item .text-holder .btn-more:hover,
.page-template-template-activities .activities-holder .item .text-holder .btn-more:focus,
.page-template-template-trip_types .trip_types-holder .item .text-holder .btn-more:hover,
.page-template-template-trip_types .trip_types-holder .item .text-holder .btn-more:focus {
    text-decoration: none;
    color: rgb(51, 6, 6);
}

/*===========================================================
 Destination / Activity / Trip Type listing page style
 ===========================================================*/
.archive .wp-travel-engine-archive-outer-wrap {
    margin: 0;
}

.archive .trip-content-area .page-header,
.archive .trip-content-area .parent-desc,
.archive .trip-content-area .child-desc {
    padding: 0;
}

.archive .trip-content-area .activity-title {
    font-size: 40px;
    line-height: 1.125em;
    color: rgb(219, 219, 219);
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.archive .trip-content-area .activity-title:before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.4);
    content: '';
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}

.archive .trip-content-area .activity-title:after {
    position: absolute;
    bottom: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.4);
    ;
    content: '';
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
}

.archive .trip-content-area .activity-title span {
    background: rgba(255, 255, 255, 0.623);
    display: inline-block;
    position: relative;
    z-index: 1;
    padding: 0 30px;
}

.archive .trip-content-area .grid {
    margin-bottom: 50px;
}

.archive .trip-content-area .grid .col .holder {
    border: 2px solid #250101;
    background: rgba(29, 1, 1, 0.623);
    border-radius: 5px;
    transition: linear 0.2s;
}

.archive .trip-content-area .grid .col:hover .holder,
.archive .trip-content-area .grid .col:focus .holder {
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.15);
}

.archive .trip-content-area .grid .img-holder {
    position: relative;
    margin: 0;
}

.archive .trip-content-area .grid .img-holder img {
    vertical-align: top;
    border-radius: 5px 5px 0 0;
}

.archive .trip-content-area .grid .col .img-holder .group-discount{
    border-radius: 0;
    color: rgba(255, 255, 255, 0.623);
    top: inherit;
    background: rgb(51, 6, 6);
    border-radius: 100px;
    padding: 0 15px;
}

.trip-content-area .grid .col .img-holder .group-discount:before {
    display: none;
}

.archive .trip-content-area .grid .col .img-holder .group-discount .tooltip{
    position: absolute;
    bottom: 100%;
    width: 270px;
    right: 0;
    top: auto;
    left: auto;
    background: rgba(0, 0, 0, 0.85);
    border-radius: 40px;
    padding: 3px 15px;
    text-align: center;
    color: rgba(255, 255, 255, 0.623);
    font-size: 100%;
    margin: 0 0 10px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    transform: translate(0);
    -webkit-transition: all ease 0.35s;
    -moz-transition: all ease 0.35s;
    transition: all ease 0.35s;
}

.archive .trip-content-area .grid .col .img-holder .group-discount .tooltip:after{
    display: none;
}

.archive .trip-content-area .grid .col .img-holder .group-discount .tooltip:before{
    content: "";
    border-top: 7px solid rgba(0, 0, 0, 0.85);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    position: absolute;
    bottom: -7px;
    right: 60px;
}

.archive .trip-content-area .grid .img-holder .price-holder {
    background: rgb(51, 6, 6);
    border-top-left-radius: 5px;
    color: rgba(255, 255, 255, 0.623);
    font-size: 20px;
    font-weight: 500;
    left: -5px;
    position: absolute;
    bottom: -20px;
    padding: 0;
}

.archive .trip-content-area .grid .img-holder .price-holder:after {
    background: #144e33;
    border-bottom-left-radius: 4px;
    bottom: -6px;
    content: "";
    height: 6px;
    left: 0;
    position: absolute;
    width: 5px;
}

.archive .trip-content-area .grid .img-holder .price-holder span {
    display: block;
    padding: 6px 15px;
    position: relative;
}

.archive .trip-content-area .grid .img-holder .price-holder span:before {
    width: 0;
    height: 0;
    border-top: 20px solid rgb(51, 6, 6);
    border-right: 20px solid transparent;
    position: absolute;
    top: 0;
    right: -20px;
    content: '';
}

.archive .trip-content-area .grid .img-holder .price-holder span:after {
    width: 0;
    height: 0;
    border-bottom: 20px solid rgb(51, 6, 6);
    border-right: 20px solid transparent;
    position: absolute;
    bottom: 0;
    right: -20px;
    content: '';
}

.archive .trip-content-area .grid .text-holder {
    background:#fefefe;
    padding: 40px 0 14px;
    border-radius: 0 0 5px 5px;
}

.archive .trip-content-area .grid .text-holder .title,
#primary .post .entry-content .trip-content-area .grid .text-holder .title,
#primary .page .entry-content .trip-content-area .grid .text-holder .title {
    font-size: 18px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    padding: 0 20px;
    margin: 0 0 7px;
}

.archive .trip-content-area .grid .text-holder .title a {
    color: rgb(219, 219, 219);
    transition: linear 0.2s;
}

.archive .trip-content-area .grid .text-holder .title a:hover,
.archive .trip-content-area .grid .text-holder .title a:focus {
    text-decoration: none;
    color: rgb(51, 6, 6);
}

.archive .trip-content-area .grid .text-holder .meta-info {
    padding: 0 20px;
    font-size: 14px;
}

.archive .trip-content-area .grid .text-holder .meta-info span {
    display: block;
    margin: 0 0 7px;
}

.archive .trip-content-area .grid .text-holder .meta-info svg {
    font-size: 16px;
    margin-right: 5px;
    color: rgb(51, 6, 6);
}

.archive .trip-content-area .grid .text-holder .btn-holder {
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.623);
    text-align: center;
    text-decoration-color: #4b1212;
}

.archive .trip-content-area .grid .text-holder .wp-travel-engine-cart {
    margin: 0 0 10px;
}

.archive .trip-content-area .grid .text-holder .btn-more,
.archive .trip-content-area .grid .text-holder .wp-travel-engine-cart {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    display: inline-block;
    border: 2px solid rgb(51, 6, 6);
    border-radius: 20px;
    text-transform: uppercase;
    padding: 2px 30px;
    font-family: 'Montserrat', sans-serif;
    transition: linear 0.2s;
}

.archive .trip-content-area .grid .text-holder .btn-more:hover,
.archive .trip-content-area .grid .text-holder .btn-more:focus,
.archive .trip-content-area .grid .text-holder .wp-travel-engine-cart:hover,
.archive .trip-content-area .grid .text-holder .wp-travel-engine-cart:focus {
    text-decoration: none;
    background: rgb(51, 6, 6);
    color: rgba(255, 255, 255, 0.623);
}

.archive .trip-content-area .grid .load-destination {
    width: 100%;
    text-align: center;
}

.archive .trip-content-area .grid .load-destination span {
    display: inline-block;
    font-size: 13px;
    line-height: 2em;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.623);
    letter-spacing: 1px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    background: #ffaf46;
    border: 2px solid #ffaf46;
    padding: 10px 40px;
    border-radius: 5px;
    cursor: pointer;
    transition: ease 0.2s;
}

.archive .trip-content-area .grid .load-destination span:hover,
.archive .trip-content-area .grid .load-destination span:focus {
    background: none;
    color: #ffaf46;
}

.archive .trip-content-area .grid .btn-loadmore {
    width: 100%;
}

.page-header .page-title {
    font-size: 36px;
    line-height: 1.25em;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    color: rgb(219, 219, 219);
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 35px;
}

.page-header .page-title:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 60px;
    height: 3px;
    background: rgb(51, 6, 6);
}

/*===================================
 Checkout Page style
 ===================================*/
.place-order-form-secondary-wrapper {
    margin: 0 0 60px;
}

.place-order-form-secondary-wrapper .wp-travel-engine-order-form-wrapper {
    padding: 108px 40px 40px 40px;
    border: 1px solid rgba(255, 255, 255, 0.623);
    position: relative;
    border-radius: 5px 5px 0 0;
}

.place-order-form-secondary-wrapper .wp-travel-engine-order-left-column {
    width: 300px;
    margin-right: 40px;
}

.place-order-form-secondary-wrapper .wp-travel-engine-order-left-column img {
    vertical-align: top;
}

.wp-travel-engine-order-form-wrapper .trip-title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgb(51, 6, 6);
    color: rgba(255, 255, 255, 0.623) !important;
    font-size: 20px !important;
    line-height: 1.3em !important;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 20px 40px;
}

.place-order-form-secondary-wrapper .trip-property li {
    font-size: 15px;
    margin: 0 0 15px;
    font-family: 'Montserrat', sans-serif;
}

.place-order-form-secondary-wrapper .trip-property .cart-trip-total-price .cart-trip-total-price-holder {
    width: auto;
    font-size: 22px;
    line-height: 1.181em;
    font-weight: 600;
    color: rgb(219, 219, 219);
}

.place-order-form-secondary-wrapper .trip-property li span {
    width: 50%;
}

.place-order-form-secondary-wrapper .trip-property li .travelers-number{
    width: inherit;
}

.place-order-form-secondary-wrapper .trip-property .cart-trip-total-price {
    border-top: 1px solid rgba(255, 255, 255, 0.623);
    margin-top: 25px;
    padding-top: 20px;
    font-size: 22px;
    line-height: 1.181em;
    font-weight: 600;
    color: rgb(219, 219, 219);
}

.place-order-form-secondary-wrapper .trip-property .cart-trip-total-price > span {
    font-size: 16px;
    line-height: 1.444em;
    font-weight: 600;
    color: #000;
    margin: 0 0 10px;
}

.place-order-form-secondary-wrapper .trip-property .cart-trip-total-price .extra-service span{
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
    vertical-align: top;
}

.place-order-form-secondary-wrapper .trip-property .cart-trip-total-price .extra-service .extra-service-cost{
    width: inherit;
}

.place-order-form-secondary-wrapper .trip-property .cart-trip-total-price .extra-service .extra-service-total-cost{
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.623);
}

.place-order-form-secondary-wrapper .trip-property .cart-trip-total-price .extra-service .extra-service-total-cost span{
    font-weight: 500;
    color: #000;
}

.place-order-form-secondary-wrapper .trip-property .payable-now,
.place-order-form-secondary-wrapper .trip-property .remaining-amount{
    display: flex;
    flex-wrap: wrap;
}

.place-order-form-secondary-wrapper .trip-property .payable-now label,
.place-order-form-secondary-wrapper .trip-property .remaining-amount label{
    width: 50% !important;
}

.place-order-form-secondary-wrapper .trip-property .payable-now .wrap-payable-now,
.place-order-form-secondary-wrapper .trip-property .remaining-amount .wrap-remaining-amount{
    color: #000;
    font-weight: 500;
}

.relation-options-title,
.personal-options-title,
#primary .page .entry-content .payment-method h3 {
    font-size: 22px;
    line-height: 1.272em;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    color: rgb(219, 219, 219);
    margin: 0 0 35px;
    background: #553535;
    border-radius: 5px;
    padding: 20px 14px;
}

.relation-options-title:after,
.personal-options-title:after {
    display: none;
}

.wp-travel-engine-billing-details-wrapper,
.wp-travel-engine-personal-details-inner-wrapper,
.wp-travel-engine-relation-details-inner-wrapper {
    margin: 0 -15px;
}

.wp-travel-engine-billing-details-field-wrap,
.wp-travel-engine-personal-details,
.wp-travel-engine-relation-details {
    padding: 0 15px;
    margin-bottom: 30px;
}

.wp-travel-engine-billing-details-field-wrap:last-child {
    margin-bottom: 0;
}

#wp-travel-engine-order-form label {
    font-size: 14px;
    line-height: 1.714em;
}

#wp-travel-engine-order-form input[type="submit"] {
    font-size: 13px;
    line-height: 15px;
}

.wp-travel-engine-relation-details select,
.wp-travel-engine-personal-details select {
    padding: 11px 10px;
}

.secondary-inner-wrapper {
    padding: 0;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.623);
    border-bottom: 0;
    border-radius: 0 0 5px 5px;
    margin-top: -1px;
}

.secondary-inner-wrapper table thead {
    background: none !important;
}

/*sticky-menu style*/
.sticky-menu {
    position: fixed;
    width: 100%;
    top: 0;
    box-shadow: 0 1px 3px rgba(218, 218, 218, 0.952);
    z-index: 9999;
    background: rgb(255, 255, 255);
}

.custom-background .sticky-menu {
    max-width: 90%;
}

/*====================================
 Testimonial Page style
 ====================================*/
.page-template-testimonial .testimonial-holder {
    margin-top: 60px;
}

.page-template-testimonial .testimonial-holder .item {
    margin: 0 0 60px;
    display: flex;
    flex-direction: row;
}

.page-template-testimonial .testimonial-holder .item .img-holder {
    margin-right: 30px;
    width: 120px;
    align-items: flex-start;
}

.page-template-testimonial .testimonial-holder .item .img-holder img, 
.page-template-testimonial .testimonial-holder .item .img-holder .svg-holder {
    width: 120px;
    height: 120px;
    vertical-align: top;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 0 15px;
}

.page-template-testimonial .testimonial-holder .item .img-holder .svg-holder {
    overflow: hidden;
}

.page-template-testimonial .testimonial-holder .item .img-holder .name {
    display: block;
    text-align: center;
    font-weight: 500;
    color: rgb(219, 219, 219);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5em;
}

.page-template-testimonial .testimonial-holder .item .text-holder {
    align-items: flex-start;
    flex: 1 0 0;
    border: 1px solid rgba(255, 255, 255, 0.623);
    padding: 40px 40px 10px;
    border-radius: 5px;
    position: relative;
    transition: ease 0.2s;
}

.page-template-testimonial .testimonial-holder .item:hover .text-holder {
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.15);
}

.page-template-testimonial .testimonial-holder .item .text-holder:after {
    position: absolute;
    top: 35px;
    left: -18px;
    content: '';
    width: 0;
    height: 0;
    border-top: 18px solid rgba(255, 255, 255, 0.623);
    border-left: 18px solid transparent;
}

.page-template-testimonial .testimonial-holder .item .text-holder:before {
    position: absolute;
    top: 34px;
    left: -20px;
    content: '';
    width: 0;
    height: 0;
    border-top: 19px solid rgba(255, 255, 255, 0.623);
    border-left: 19px solid transparent;
}

.page-template-testimonial .testimonial-holder .item .text-holder .title {
    font-size: 22px;
    line-height: 1.181em;
    font-weight: 500;
    color: rgb(219, 219, 219);
    margin: 0 0 10px;
    font-family: 'Montserrat', sans-serif;
}

.page-template-testimonial .testimonial-holder .item .text-holder .visited-on {
    font-size: 14px;
    color: #b5b5b5;
    display: block;
    margin: 0 0 10px;
}

.page-template-testimonial .testimonial-holder .item .text-holder .star-holder {
    margin: 0 0 15px;
    display: inline-block;
}

.page-template-testimonial .testimonial-holder .item .text-holder .star-holder .jq-ry-container>.jq-ry-group-wrapper>.jq-ry-group>svg {
    margin-right: 0;
}

.page-template-testimonial .testimonial-holder .item .text-holder .star-holder .jq-ry-container {
    padding: 0;
}

/*====================================
 Trip search Page style
 ====================================*/
.trip-search-result #primary .advanced-search-wrapper .sidebar h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: rgb(219, 219, 219);
    position: relative;
    margin: 0 0 25px;
    padding: 0 0 2px;
}

.trip-search-result #primary .advanced-search-wrapper .sidebar h2:after {
    position: absolute;
    top: 100%;
    left: 0;
    width: 60px;
    height: 3px;
    background: rgb(51, 6, 6);
    content: '';
}

.trip-search-result #primary .advanced-search-wrapper .sidebar .advanced-search-field {
    margin: 0 0 30px;
}

.trip-search-result #primary .advanced-search-wrapper .sidebar h3 {
    color: #0f0f0f;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    margin: 0 0 8px;
}

.trip-search-result #primary .advanced-search-wrapper .sidebar ul {
    font-size: 0.875em;
}

.trip-search-result #primary .advanced-search-wrapper .sidebar ul li .count {
    font-size: 0.75em;
    background: rgb(161, 114, 114);
    border-radius: 20px;
    padding: 0 10px;
    line-height: 2em;
}

/*=====================================
 Base for label styling 
 =====================================*/
.trip-search-result #primary .advanced-search-wrapper .sidebar ul li [type="checkbox"]:not(:checked),
.trip-search-result #primary .advanced-search-wrapper .sidebar ul li [type="checkbox"]:checked {
    position: absolute;
    left: -9999px;
}

.trip-search-result #primary .advanced-search-wrapper .sidebar ul li [type="checkbox"]:not(:checked)+span,
.trip-search-result #primary .advanced-search-wrapper .sidebar ul li [type="checkbox"]:checked+span {
    position: relative;
    padding-left: 26px;
    cursor: pointer;
}

/*=================================
 Checkbox aspect 
 =================================*/
.trip-search-result #primary .advanced-search-wrapper .sidebar ul li [type="checkbox"]:not(:checked)+span:before,
.trip-search-result #primary .advanced-search-wrapper .sidebar ul li [type="checkbox"]:checked+span:before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 13px;
    height: 13px;
    border: 2px solid #d3d3d3;
}

.trip-search-result #primary .advanced-search-wrapper .sidebar ul li [type="checkbox"]:checked+span:before {
    border-color: rgb(51, 6, 6);
}

/*====================================
 Checked active aspect
 ====================================*/
.trip-search-result #primary .advanced-search-wrapper .sidebar ul li [type="checkbox"]:not(:checked)+span:after,
.trip-search-result #primary .advanced-search-wrapper .sidebar ul li [type="checkbox"]:checked+span:after {
    content: '';
    position: absolute;
    top: 8px;
    left: 4px;
    width: 5px;
    height: 5px;
    background: rgb(51, 6, 6);
    transition: all 0.2s;
}

/*======================================
 Checked active aspect changes
 =====================================*/
.trip-search-result #primary .advanced-search-wrapper .sidebar ul li [type="checkbox"]:not(:checked)+span:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.trip-search-result #primary .advanced-search-wrapper .sidebar ul li [type="checkbox"]:checked+span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

/*============================
 Price slider style
 ============================*/
.trip-search-result #primary .advanced-search-wrapper .sidebar .advanced-search-field .ui-widget.ui-widget-content {
    height: 2px;
    background: #d3d3d3;
    border-radius: 0;
    margin: 0 0 10px;
}

.trip-search-result #primary .advanced-search-wrapper .sidebar .advanced-search-field .ui-slider-horizontal .ui-slider-range {
    border-radius: 0;
    background: rgb(51, 6, 6);
    height: 2px;
    top: -1px;
}

.trip-search-result #primary .advanced-search-wrapper .sidebar .advanced-search-field .ui-slider-horizontal .ui-slider-handle {
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-left: 6px solid rgb(51, 6, 6);
    border-bottom: 8px solid transparent;
    background: none;
    border-right: 0;
    border-radius: 0;
    top: -8px;
    margin-left: -1px;
}

.trip-search-result #primary .advanced-search-wrapper .sidebar .advanced-search-field .ui-slider-horizontal .ui-slider-handle+.ui-slider-handle {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    margin-left: -5px;
}

.trip-search-result #primary .advanced-search-wrapper .sidebar .advanced-search-field .cost-slider-value,
.trip-search-result #primary .advanced-search-wrapper .sidebar .advanced-search-field .duration-slider-value {
    overflow: hidden;
}

.trip-search-result #primary .advanced-search-wrapper .sidebar .advanced-search-field .cost-slider-value .min-cost,
.trip-search-result #primary .advanced-search-wrapper .sidebar .advanced-search-field .duration-slider-value .min-duration {
    float: left;
    font-size: 0.75em;
    background: rgb(161, 114, 114);
    border-radius: 20px;
    padding: 0 10px;
    line-height: 2em;
}

.trip-search-result #primary .advanced-search-wrapper .sidebar .advanced-search-field .cost-slider-value .max-cost,
.trip-search-result #primary .advanced-search-wrapper .sidebar .advanced-search-field .duration-slider-value .max-duration {
    float: right;
    font-size: 0.75em;
    background: rgb(161, 114, 114);
    border-radius: 20px;
    padding: 0 10px;
    line-height: 2em;
}

/*===================================
 Advance Search Result items
 ==================================*/
.trip-search-result #primary .advanced-search-wrapper .wte-advanced-search-wrap .foundPosts {
    font-family: 'Montserrat', sans-serif;
    color: rgb(219, 219, 219);
}

.trip-search-result #primary .advanced-search-wrapper .wte-advanced-search-wrap .grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 -15px;
    margin-bottom: 50px;
}

.trip-search-result #primary .advanced-search-wrapper .wte-advanced-search-wrap .grid .col {
    width: 33.3333%;
    padding: 0 15px;
    margin: 0 0 30px;
}

.trip-search-result #primary .advanced-search-wrapper .wte-advanced-search-wrap .grid .col .holder {
    border: 1px solid #dcdcdc;
    background: rgba(255, 255, 255, 0.623);
    border-radius: 5px;
    transition: linear 0.2s;
}

.trip-search-result #primary .advanced-search-wrapper .wte-advanced-search-wrap .grid .col:hover .holder {
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.15);
}

.trip-search-result #primary .advanced-search-wrapper .wte-advanced-search-wrap .grid .img-holder {
    position: relative;
}

.trip-search-result #primary .advanced-search-wrapper .wte-advanced-search-wrap .grid .img-holder img {
    vertical-align: top;
    border-radius: 5px 5px 0 0;
    width: 100%;
}

.trip-search-result #primary .advanced-search-wrapper .wte-advanced-search-wrap .grid .img-holder .price-holder {
    background: rgb(51, 6, 6);
    border-top-left-radius: 5px;
    color: rgba(255, 255, 255, 0.623);
    font-size: 20px;
    font-weight: 500;
    left: -5px;
    position: absolute;
    bottom: -20px;
}

.trip-search-result #primary .advanced-search-wrapper .wte-advanced-search-wrap .grid .img-holder .price-holder:after {
    background: #144e33;
    border-bottom-left-radius: 4px;
    bottom: -6px;
    content: "";
    height: 6px;
    left: 0;
    position: absolute;
    width: 5px;
}

.trip-search-result #primary .advanced-search-wrapper .wte-advanced-search-wrap .grid .img-holder .price-holder span {
    display: block;
    padding: 6px 15px;
    position: relative;
}

.trip-search-result #primary .advanced-search-wrapper .wte-advanced-search-wrap .grid .img-holder .price-holder span:before {
    width: 0;
    height: 0;
    border-top: 20px solid rgb(51, 6, 6);
    border-right: 20px solid transparent;
    position: absolute;
    top: 0;
    right: -20px;
    content: '';
}

.trip-search-result #primary .advanced-search-wrapper .wte-advanced-search-wrap .grid .img-holder .price-holder span:after {
    width: 0;
    height: 0;
    border-bottom: 20px solid rgb(51, 6, 6);
    border-right: 20px solid transparent;
    position: absolute;
    bottom: 0;
    right: -20px;
    content: '';
}

.trip-search-result #primary .advanced-search-wrapper .wte-advanced-search-wrap .grid .text-holder {
    background: rgba(255, 255, 255, 0.623);
    padding: 40px 0 14px;
    border-radius: 0 0 5px 5px;
}

.trip-search-result #primary .advanced-search-wrapper .wte-advanced-search-wrap .grid .text-holder .entry-title {
    font-size: 18px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    padding: 0 20px;
    margin: 0 0 7px;
}

.trip-search-result #primary .advanced-search-wrapper .wte-advanced-search-wrap .grid .text-holder .entry-title a {
    color: rgb(219, 219, 219);
    transition: linear 0.2s;
}

.trip-search-result #primary .advanced-search-wrapper .wte-advanced-search-wrap .grid .text-holder .entry-title a:hover,
.trip-search-result #primary .advanced-search-wrapper .wte-advanced-search-wrap .grid .text-holder .entry-title a:focus {
    text-decoration: none;
    color: rgb(51, 6, 6);
}

.trip-search-result #primary .advanced-search-wrapper .wte-advanced-search-wrap .grid .text-holder .meta-info {
    padding: 0 20px;
    font-size: 14px;
}

.trip-search-result #primary .advanced-search-wrapper .wte-advanced-search-wrap .grid .text-holder .meta-info span {
    display: block;
    margin: 0 0 7px;
}

.trip-search-result #primary .advanced-search-wrapper .wte-advanced-search-wrap .grid .text-holder .meta-info svg {
    font-size: 16px;
    margin-right: 5px;
    color: rgb(51, 6, 6);
}

.trip-search-result #primary .advanced-search-wrapper .wte-advanced-search-wrap .grid .text-holder .btn-holder {
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.623);
    text-align: center;
}

.trip-search-result #primary .advanced-search-wrapper .wte-advanced-search-wrap .grid .text-holder .wp-travel-engine-cart {
    margin: 0 0 10px;
}

.trip-search-result #primary .advanced-search-wrapper .wte-advanced-search-wrap .grid .text-holder .btn-more,
.trip-search-result #primary .advanced-search-wrapper .wte-advanced-search-wrap .grid .text-holder .wp-travel-engine-cart {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    display: inline-block;
    border: 2px solid rgb(51, 6, 6);
    border-radius: 20px;
    text-transform: uppercase;
    padding: 2px 30px;
    font-family: 'Montserrat', sans-serif;
    transition: linear 0.2s;
}

.trip-search-result #primary .advanced-search-wrapper .wte-advanced-search-wrap .grid .text-holder .btn-more:hover,
.trip-search-result #primary .advanced-search-wrapper .wte-advanced-search-wrap .grid .text-holder .btn-more:focus,
.trip-search-result #primary .advanced-search-wrapper .wte-advanced-search-wrap .grid .text-holder .wp-travel-engine-cart:hover,
.trip-search-result #primary .advanced-search-wrapper .wte-advanced-search-wrap .grid .text-holder .wp-travel-engine-cart:focus {
    text-decoration: none;
    background: rgb(51, 6, 6);
    color: rgba(255, 255, 255, 0.623);
}

.trip-search-result #primary .advanced-search-wrapper .sidebar {
    margin-bottom: 50px;
}

.trip-search-result #primary .advanced-search-wrapper .wte-advanced-search-wrap .load-more-search {
    display: block;
    font-size: 13px;
    line-height: 2em;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.623);
    letter-spacing: 1px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    background: #ffaf46;
    border: 2px solid #ffaf46;
    padding: 10px 40px;
    border-radius: 5px;
    cursor: pointer;
    transition: ease 0.2s;
    width: 220px;
    margin: 0 auto;
    text-align: center;
}

.trip-search-result #primary .advanced-search-wrapper .wte-advanced-search-wrap .load-more-search:hover,
.trip-search-result #primary .advanced-search-wrapper .wte-advanced-search-wrap .load-more-search:focus {
    text-decoration: none;
    color: #ffaf46;
    background: none;
}

/*==================================
 travel agency pro theme css updates 
 ==================================*/

.grid.river-rafting .btn-loadmore {
    width: 100%;
    text-align: center;
}

.grid.river-rafting .btn-loadmore span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    border: 2px solid rgb(51, 6, 6);
    border-radius: 5px;
    text-transform: uppercase;
    padding: 6px 29px;
    font-family: 'Montserrat', sans-serif;
    transition: linear 0.2s;
    cursor: pointer;
}

.grid.river-rafting .btn-loadmore span:hover {
    text-decoration: none;
    background: rgb(51, 6, 6);
    color: rgba(255, 255, 255, 0.623);
}

.grid.river-rafting .btn-loadmore span {
    border: 2px solid #8224e3;
}

/* new css code */
.group-discount {
    position: absolute;
    font-size: 12px;
    display: inline-block;
    bottom: -14px;
    right: 20px;
    background: rgb(51, 6, 6);
    color: rgba(255, 255, 255, 0.623);
    border-radius: 40px;
    padding: 0 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: default;
}

.group-discount .tooltip {
    position: absolute;
    bottom: 100%;
    width: 270px;
    right: 0px;
    background: rgba(0, 0, 0, 0.85);
    border-radius: 40px;
    padding: 3px 15px;
    text-align: center;
    color: rgba(255, 255, 255, 0.623);
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    -webkit-transition: all ease 0.35s;
    -moz-transition: all ease 0.35s;
    transition: all ease 0.35s;
}

.group-discount .tooltip::after {
    content: "";
    border-top: 7px solid rgba(0, 0, 0, 0.85);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    position: absolute;
    bottom: -7px;
    right: 60px;
}

.group-discount:hover .tooltip {
    bottom: calc(100% + 10px);
    opacity: 1;
    filter: alpha(opacity=100);
    visibility: visible;
}

.review-wrap,
.archive .trip-content-area .grid .col .review-wrap {
    background: none;
    padding: 0 20px;
    margin: 0;
}

.average-rating {
    border: none;
    padding: 0;
    margin: 0;
}

.jq-ry-container {
    display: inline-block;
    vertical-align: middle;
    padding: 0;
    width: auto !important;
}

.jq-ry-container>.jq-ry-group-wrapper>.jq-ry-group>svg {
    width: 15px;
    margin-right: 5px;
}

.average-rating .rating-star {
    display: none;
}

.aggregate-rating {
    font-size: 14px;
    text-transform: capitalize;
    color: #000;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

.next-trip-info {
    border-top: 1px solid #ddd;
    padding: 20px;
    margin-top: 20px;
}

.next-trip-info h3,
.next-trip-info .fsd-title {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #000;
    margin-bottom: 10px;
}

.next-trip-info .next-departure-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.next-trip-info .next-departure-list li {
    margin-bottom: 10px;
    font-weight: 300;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.next-trip-info .next-departure-list li::before {
    border-bottom: 1px dotted #666;
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    height: 1px;
    content: "";
    z-index: -1;
}

.next-trip-info .next-departure-list li .left {
    color: rgb(51, 6, 6);
    background: rgba(255, 255, 255, 0.623);
    padding-right: 10px;
}

.next-trip-info .next-departure-list li .left svg {
    margin-right: 5px;
}

.next-trip-info .next-departure-list li .right {
    float: right;
    background: rgba(255, 255, 255, 0.623);
    padding-left: 10px;
}

/* SINGLE TRIP RATING */
.single-trip .site-main .review-wrap {
    padding: 0;
}

.single-trip .review-wrap .trip-review-title b {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #000;
    margin-bottom: 20px;
    display: inline-block;
}

.single-trip .average-rating {
    border-bottom: 2px solid #ddd;
    display: block;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.single-trip .jq-ry-container>.jq-ry-group-wrapper>.jq-ry-group>svg {
    width: 20px;
}

.single-trip .aggregate-rating .stars {
    background: rgb(51, 6, 6);
    color: rgba(255, 255, 255, 0.623);
    padding: 3px 20px;
    line-height: 1.8;
    border-radius: 3px;
    width: auto;
    display: inline-block;
    position: relative;
    margin-left: 10px;
    vertical-align: middle;
    margin-right: 5px;
}

.single-trip .aggregate-rating .stars::before {
    content: "";
    border-right: 7px solid rgb(51, 6, 6);
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    position: absolute;
    top: 50%;
    left: -7px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}

.single-trip .average-rating .rating-star {
    display: inline-block;
}

.review-wrap .comment-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.review-wrap .comment-list li {
    overflow: hidden;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #E4E4E4;
}

.review-wrap .comment-list li .comment-author {
    float: left;
    width: 70px;
    margin-right: 20px;
}

.review-wrap .comment-list li .comment-author img {
    vertical-align: top;
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
}

.review-wrap .comment-list li .trip-comment-content {
    overflow: hidden;
}

.review-wrap .comment-list li .trip-comment-content .comment-title {
    font-size: 1em;
    line-height: 1.300em;
    font-weight: 700;
    color: #000;
    display: block;
    margin: 0 0 6px;
}

.rating-form .review-title-rating .comment-form-wte-trip-review-rating {
    margin-bottom: 0;
}

.single-trip .rating-form p label {
    display: block;
    color: #000;
    margin-bottom: 5px;
}

.review-wrap .comment-list li .trip-comment-content .comment-rating {
    font-size: 14px;
    line-height: 1.750em;
    color: #6E6E6E;
}

.review-wrap .comment-list li .trip-comment-content .comment-rating .url {
    margin-right: 30px;
}

.review-wrap .comment-list li .trip-comment-content .comment-rating .url:before {
    content: '';
    width: 15px;
    height: 11px;
    display: inline-block;
    margin-right: 5px;
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 448 512'%3E%3Cpath d='M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z'/%3E%3C/svg%3E") center center no-repeat;
}

.review-wrap .comment-list li .trip-comment-content .comment-rating .comment-meta:before {
    content: '';
    width: 15px;
    height: 11px;
    display: inline-block;
    margin-right: 5px;
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 448 512'%3E%3Cpath d='M400 64h-48V12c0-6.6-5.4-12-12-12h-8c-6.6 0-12 5.4-12 12v52H128V12c0-6.6-5.4-12-12-12h-8c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM48 96h352c8.8 0 16 7.2 16 16v48H32v-48c0-8.8 7.2-16 16-16zm352 384H48c-8.8 0-16-7.2-16-16V192h384v272c0 8.8-7.2 16-16 16zM148 320h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm96 0h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm96 0h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm-96 96h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm-96 0h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm192 0h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12z'/%3E%3C/svg%3E") center center no-repeat;
}

.review-wrap .comment-list li .trip-comment-content .comment-wte-trip-review-rating {
    margin: 0;
}

.review-wrap .comment-list li .trip-comment-content .comment-content {
    font-size: 0.900em;
    line-height: 1.611em;
}

.single-trip .comment-respond {
    margin: 60px 0 0;
}

.single-trip .comment-respond .comment-reply-title {
    font-size: 1em;
    font-weight: 700;
    color: #000;
    line-height: 1.65em;
    margin: 0 0 10px;
}

.single-trip .comment-respond .comment-form .comment-form-comment label,
.single-trip .comment-respond .comment-form .comment-form-author label,
.single-trip .comment-respond .comment-form .comment-form-email label,
.single-trip .comment-respond .comment-form .comment-form-url label,
.single-trip .comment-respond .comment-form .comment-form-title label {
    display: none;
}

.single-trip .comment-respond .comment-form p {
    margin: 0 0 30px;
    padding: 0 15px;
}

.single-trip .comment-respond .comment-form .comment-notes {
    font-size: 0.900em;
    line-height: 1.611em;
    margin-bottom: 182px;
}

.single-trip .comment-respond .rating-form {
    position: relative;
    /*margin: 0 -15px*/
}

.single-trip .comment-respond .rating-form .review-title-rating {
    /*position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    padding: 0 15px;*/
}

.single-trip.logged-in .comment-respond .rating-form .review-title-rating {
    position: unset;
}

.single-trip .comment-respond .rating-form .review-title-rating .comment-form-wte-trip-review-rating {
    padding: 0;
    font-size: 0.800em;
    line-height: 1.688em;
    margin: 0 0 5px;
}

.single-trip .comment-respond .rating-form .review-title-rating .wte-trip-review-rating {
    background: none;
    padding: 0;
    width: auto;
    border: 0;
    margin: 0 0 30px;
    text-align: left;
    float: left;
}

.single-trip .comment-respond .rating-form .review-title-rating .wte-trip-review-rating input[type="radio"],
.single-trip .comment-respond .rating-form .review-title-rating .wte-trip-review-rating label.stars {
    width: 21px !important;
    height: 21px !important;
    margin-right: 5px;
    font-size: 0;
}

.single-trip .comment-respond .rating-form .review-title-rating .comment-form-title {
    clear: both;
    padding: 0;
    width: 50%;
}

.single-trip .comment-respond .rating-form .comment-form-author,
.single-trip .comment-respond .rating-form .comment-form-email {
    float: left;
    width: 50%;
}

.single-trip .comment-respond .rating-form .review-title-rating .wte-trip-review-rating {
    background: rgba(255, 255, 255, 0.623);
    padding: 0;
    width: auto;
    border: 0;
    margin: 0 0 30px;
    text-align: left;
    float: left;
}

.single-trip .comment-respond .rating-form .review-title-rating .wte-trip-review-rating input[type="radio"],
.single-trip .comment-respond .rating-form .review-title-rating .wte-trip-review-rating label.stars {
    width: 21px !important;
    height: 21px !important;
    margin-right: 5px;
    font-size: 0;
}

.single-trip .comment-respond .rating-form .review-title-rating .wte-trip-review-rating input[type="radio"],
.single-trip .comment-respond .rating-form .review-title-rating .wte-trip-review-rating label.stars {
    width: 21px !important;
    height: 21px !important;
    margin-right: 5px;
    font-size: 0;
}

.advanced-search-wrapper .title {
    font-size: 18px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    padding: 0 20px;
    margin: 0 0 7px;
}

.advanced-search-wrapper .title a {
    color: rgb(219, 219, 219);
    -webkit-transition: linear 0.2s;
    -moz-transition: linear 0.2s;
    transition: linear 0.2s;
}

.advanced-search-wrapper .title a:hover,
.advanced-search-wrapper .title a:focus {
    text-decoration: none;
    color: rgb(51, 6, 6);
}

.agg-rating.jq-ry-container {
    display: inline-block;
}

/*==================================
 Thank You Page Style
==================================*/
.thank-you #secondary{
    display: none;
}

.thank-you .page-header{
    max-width: 945px;
    margin: 0 auto;
    text-align: center;
}

.thank-you .page-header .page-title{
    padding: 0;
    margin: 0;
}

.thank-you .page-header .page-title:after{
    display: none;
}

.thank-you #primary{
    width: 100%;
    padding: 0 15px;
}

.thank-you #primary .page .text-holder{
    max-width: 945px;
    margin: 0 auto;
    text-align: center;
}

#primary .entry-content .thank-you-container .trip-details{
    font-size: 18px;
}

.detail-container{
    margin: 0 auto;
    max-width: 575px;
    border-top: 1px solid #BFBFBF;
    border-bottom: 1px solid #BFBFBF;
    padding: 0;
    text-align: left;
}

.detail-item{
    border-bottom: 1px solid #F2F2F2;
}


/*==================================
 Responsive design
 ==================================*/
@media only screen and (max-width: 1699px) {
    #testimonial-carousel .owl-prev {
        left: 23%;
    }

    #testimonial-carousel .owl-next {
        right: 23%;
    }
}

@media only screen and (max-width: 1430px) {
    .container {
        max-width: 1170px;
    }

    #testimonial-carousel .owl-prev {
        left: 13%;
    }

    #testimonial-carousel .owl-next {
        right: 13%;
    }

    #clients-slider {
        max-width: 1030px;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 1200px) {
    #testimonial-carousel .owl-prev {
        left: 150px;
    }

    #testimonial-carousel .owl-next {
        right: 150px;
    }
}

@media only screen and (max-width: 1199px) {
    .container {
        max-width: 970px;
        padding: 0;
    }

    .main-navigation ul li {
        margin-right: 40px;
    }

    .widget_search .search-form label {
        width: 77%;
    }

    #clients-slider .owl-nav {
        text-align: center;
        margin-top: 50px;
        position: relative;
    }

    #clients-slider .owl-nav:after {
        content: '';
        position: absolute;
        top: -20px;
        left: 50%;
        width: 2px;
        height: 50px;
        background: rgba(255, 255, 255, 0.1);
    }

    #clients-slider .owl-prev {
        position: relative;
        left: 0;
        top: 0;
        display: inline-block;
        margin: 0 21px;
    }

    #clients-slider .owl-next {
        position: relative;
        right: 0;
        top: 0;
        display: inline-block;
        margin: 0 21px;
    }

    .page-template-about .team-holder .item {
        width: 33.333%;
    }

    .team-holder .item {
        width: 50%;
    }

    .page-template-template-activities .activities-holder .item,
    .page-template-template-trip_types .trip_types-holder .item {
        width: 33.333%;
    }

    .trip-search form .advanced-search-field-submit input[type="submit"] {
        border-radius: 5px;
        padding: 14px 25px;
    }

    .trip-search {
        margin-top: 0;
    }

    .trip-search-result #primary .advanced-search-wrapper .wte-advanced-search-wrap .grid .col {
        width: 50%;
    }

    .trip-search form .advanced-search-field:after {
        top: 100%;
        width: 100%;
        height: 1px;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0);
    }

    .page-template-template-destination .destination-holder .item {
        width: 33.3333%;
    }
}

@media only screen and (max-width: 1024px) {
    .container {
        max-width: 720px;
    }

    .nav-holder {
        border-top: 0;
        border-bottom: 0;
        padding: 15px 0 0;
        margin: 0 0 15px;
    }

    .nav-holder .container {
        background: rgb(49, 11, 2);
        padding: 10px;
        border-radius: 5px;
        position: relative;
    }

    .home-link {
        display: block;
        float: left;
        font-size: 18px;
        line-height: 35px;
        color: rgba(255, 255, 255, 0.623);
        width: 35px;
        height: 35px;
        background: rgba(0, 0, 0, 0.2);
        text-align: center;
        border-radius: 5px;
    }

    .home-link:hover,
    .home-link:focus {
        color: rgba(255, 255, 255, 0.623);
    }

    #primary-toggle-button {
        display: block;
        float: right;
        color: rgba(255, 255, 255, 0.623);
        font-size: 15px;
        font-weight: 500;
        font-family: 'Montserrat', sans-serif;
        width: 96px;
        height: 35px;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 5px;
        text-align: center;
        padding: 3px 0 0;
        cursor: pointer;
    }

    #primary-toggle-button svg {
        font-size: 20px;
        vertical-align: middle;
        margin-left: 10px;
    }

    .main-navigation ul li svg {
        transition: linear 0.2s;
    }

    .main-navigation ul li .active svg {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    #site-navigation {
        display: none;
        clear: both;
        position: absolute;
        background: rgb(51, 6, 6);
        padding: 10px;
        border-radius: 5px;
        left: 0;
        top: 100%;
        z-index: 10;
        margin-top: -10px;
    }

    .main-navigation ul {
        font-size: 16px;
        text-transform: none;
    }

    .main-navigation ul li {
        float: none;
        display: block;
        margin: 0 0 2px;

    }

    .main-navigation ul li a {
        padding: 10px 15px;
        color: rgba(255, 255, 255, 0.623);
        position: relative;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 5px;
    }

    .main-navigation ul li a:hover,
    .main-navigation ul li a:focus,
    .main-navigation .current_page_item>a,
    .main-navigation .current-menu-item>a,
    .main-navigation .current_page_ancestor>a,
    .main-navigation .current-menu-ancestor>a {
        background: rgba(238, 236, 236, 0.884);
        color: rgba(255, 255, 255, 0.623) !important;
    }

    .main-navigation ul li.menu-item-has-children {
        padding: 0;
    }

    .main-navigation ul li.menu-item-has-children:after {
        display: none;
    }

    .main-navigation ul li.menu-item-has-children .angle-down {
        position: absolute;
        top: 0;
        right: 0;
        width: 35px;
        height: 48px;
        text-align: center;
        line-height: 48px;
        color: rgba(255, 255, 255, 0.623);
        z-index: 1;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-navigation ul li.menu-item-has-children .angle-down svg{
        width: 9px;
        height: 16px;
    }

    .main-navigation ul ul {
        position: unset;
        background: none;
        width: 100%;
        border: 0;
        padding: 0 10px;
        margin-top: 8px;
        margin-bottom: 6px;
    }

    .main-navigation ul ul li {
        padding: 0;
    }

    .main-navigation ul ul li a {
        background: none;
        padding: 0 10px;
    }

    .main-navigation ul ul .current_page_item,
    .main-navigation ul ul .current-menu-item,
    .main-navigation ul ul .current_page_ancestor,
    .main-navigation ul ul .current-menu-ancestor {
        background: none;
    }

    .main-navigation ul ul li a:hover,
    .main-navigation ul ul li a:focus {
        background: rgba(0, 0, 0, 0.1);
        color: rgba(255, 255, 255, 0.623);
    }

    .main-navigation ul ul li:hover,
    .main-navigation ul ul li:focus {
        background: none;
    }

    .main-navigation ul ul .current_page_item>a,
    .main-navigation ul ul .current-menu-item>a,
    .main-navigation ul ul .current_page_ancestor>a,
    .main-navigation ul ul .current-menu-ancestor>a {
        color: rgba(255, 255, 255, 0.623);
        background: rgba(0, 0, 0, 0.1);
    }

    .main-navigation ul ul li.menu-item-has-children svg {
        height: 36px;
        line-height: 36px;
    }

    .banner img {
        height: 500px;
        -o-object-fit: cover;
        object-fit: cover;
        background: linear-gradient(rgba(76, 75, 79, 0.89), rgba(76, 75, 79, 0.87)),
    }

    .banner .form-holder .text h1,
    .banner .form-holder .text h2 {
        font-size: 52px;
        line-height: 1.192em;
    }

    .site-footer .column {
        width: 50%;
    }

    .site-footer .site-info {
        width: 100%;
        text-align: center;
        margin: 0 0 10px;
    }

    .footer-navigation {
        width: 100%;
    }

    .footer-navigation ul {
        text-align: center;
    }

    .footer-navigation ul li {
        float: none;
        display: inline-block;
    }

    #primary {
        float: none;
        width: 100%;
        padding: 0 15px;
        margin: 0 0 60px;
    }

    #secondary {
        width: 100%;
        clear: both;
    }

    #primary .post .entry-header .entry-title {
        font-size: 32px;
    }

    .widget_raratheme_popular_post ul,
    .widget_raratheme_recent_post ul {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        margin: 0 -15px;
    }

    .widget_raratheme_popular_post ul li,
    .widget_raratheme_recent_post ul li {
        width: 50%;
        margin: 0 0 30px;
        padding: 0 15px;
    }

    .widget_raratheme_popular_post ul li .post-thumbnail img,
    .widget_raratheme_recent_post ul li .post-thumbnail img {
        width: 100%;
    }

    .blog-section .section-header .section-title {
        font-size: 32px;
    }

    .blog-section {
        padding: 50px 0;
    }

    .blog-section .grid .post {
        width: 50%;
    }

    .header-two .form-section {
        -webkit-transform: translate(-30px, 5px);
        transform: translate(-30px, 5px);
    }

    .header-two .form-section .form-holder {
        top: 40px;
    }

    .header-three .nav-holder {
        padding: 0;
        background: none;
    }

    .header-four .tools {
        margin: 5px 15px 0 0;
    }

    .header-four .tools .form-section a {
        color: rgba(255, 255, 255, 0.623);
    }

    .header-four .tools .form-section {
        padding: 0;
    }

    .header-four .tools .form-section .form-holder {
        top: 40px;
    }

    .header-five .nav-holder {
        clear: both;
    }

    .header-five .header-b {
        padding: 40px 0 0;
    }

    .header-five #site-navigation {
        max-width: 720px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        margin-top: -22px;
    }

    .bslider .banner-text .title {
        font-size: 52px;
        line-height: 1.192em;
    }

    #testimonial-carousel .owl-prev {
        left: 10px;
    }

    #testimonial-carousel .owl-next {
        right: 10px;
    }

    .testimoinal {
        padding-top: 50px;
    }

    .testimoinal .section-header .section-title {
        font-size: 32px;
    }

    .clients {
        padding: 50px 0;
    }

    .clients .section-header .section-title {
        font-size: 32px;
    }

    .page-template-about .about-intro .text-holder {
        width: 100%;
        margin: 0 0 45px;
    }

    .page-template-about .about-intro .img-holder {
        width: 100%;
    }

    .page-template-about .about-intro .text-holder .title {
        font-size: 32px;
    }

    .services .grid .col {
        width: 50%;
    }

    .page-template-about .team-holder .item {
        width: 50%;
    }

    .page-template-template-activities .activities-holder .item,
    .page-template-template-trip_types .trip_types-holder .item {
        width: 50%;
    }

    .custom-background .site {
        max-width: 95%;
    }

    .leftsidebar #primary {
        padding-left: 15px;
    }

    .single-trip .related-trips .grid .col {
        width: 50%;
    }

    .trip-search-result #primary .advanced-search-wrapper .sidebar {
        width: 100%;
    }

    .trip-search-result #primary .advanced-search-wrapper .wte-advanced-search-wrap {
        width: 100%;
        padding-left: 15px;
    }

    .page-template-template-destination .destination-holder .item {
        width: 50%;
    }
}

@media only screen and (max-width: 767px) {
    .site-header .tools .form-section .form-holder {
        right: 0;
    }

    .site-header .tools .form-section .form-holder:after,
    .site-header .tools .form-section .form-holder:before {
        right: 10px;
    }

    .container {
        max-width: 100%;
        margin: 0 5px;
    }

    .site-branding {
        width: 100%;
        text-align: center;
    }

    .header-b .right {
        width: 100%;
        text-align: center;
    }

    .header-b {
        padding: 20px 0;
    }

    .nav-holder {
        padding: 0;
    }

    .banner img {
        height: 387px;
    }

    .banner .form-holder .text h1,
    .banner .form-holder .text h2 {
        font-size: 36px;
        line-height: 1.222em;
    }

    .banner .form-holder .text {
        font-size: 16px;
        line-height: 1.5em;
    }

    .banner .form-holder {
        width: 100%;
        padding: 0 15px;
    }

    .banner .form-holder .search-form label {
        width: 100%;
        margin: 0 0 5px;
    }

    .banner .form-holder .search-form input[type="submit"] {
        width: 100%;
        background-position: 32% 15px;
    }

    .site-footer .column {
        width: 100%;
    }

    .site-footer .footer-t {
        padding: 30px 0;
    }

    #primary .post .entry-header .entry-title {
        font-size: 23px;
    }

    #secondary {
        max-width: 320px;
        margin: 0 auto;
        float: none !important;
        display: block;
    }

    .widget_raratheme_popular_post ul li,
    .widget_raratheme_recent_post ul li {
        width: 100%;
    }

    #content {
        margin: 30px 0;
    }

    .author-section .img-holder {
        margin: 0 0 20px;
    }

    .author-section .text-holder {
        width: 100%;
    }

    .comment-navigation .nav-previous,
    .posts-navigation .nav-previous,
    .post-navigation .nav-previous,
    .comment-navigation .nav-next,
    .posts-navigation .nav-next,
    .post-navigation .nav-next {
        width: 100%;
    }

    .related-post .grid {
        max-width: 290px;
        margin: 0 auto;
    }

    .related-post .col {
        width: 100%;
        padding: 0;
    }

    .comments-area .comment-body .comment-meta {
        display: none;
    }

    .comments-area .children {
        border: 0;
        margin-left: 20px;
    }

    .comments-area .children li {
        padding-left: 0;
    }

    .comments-area .children li:first-child:before {
        display: none;
    }

    .comments-area {
        margin: 0;
    }

    .blog-section {
        padding: 40px 0;
    }

    .blog-section .section-header .section-title {
        font-size: 23px;
    }

    .blog-section .grid {
        max-width: 290px;
        margin: 0 auto 30px;
    }

    .blog-section .grid .post {
        width: 100%;
        padding: 0;
    }

    .archive .trip-content-area .grid {
        max-width: 290px;
        margin: 0 auto 50px;
    }

    .archive .trip-content-area .grid .col {
        padding: 0;
    }

    .site-header.header-two .header-t .left,
    .site-header.header-two .header-t .right {
        width: 100%;
        text-align: center;
    }

    .site-header.header-two .opening-time {
        float: none;
        display: inline-block;
    }

    .site-header.header-two .social-networks {
        margin-left: 0;
        padding-left: 0;
        width: 100%;
        border-left: 0;
    }

    .site-header.header-two .social-networks li {
        float: none;
        display: inline-block;
        margin: 0 5px;
    }

    .site-header.header-two .email-link {
        float: none;
        display: inline-block;
    }

    .header-two .form-section .form-holder {
        right: 0;
        left: -75px;
    }

    .header-two .form-section .form-holder:before,
    .header-two .form-section .form-holder:after {
        right: auto;
        left: 75px;
    }

    .header-three .header-t .left,
    .header-three .header-t .right {
        width: 100%;
        text-align: center;
    }

    .header-three .header-t .opening-time {
        float: none;
        padding-right: 0;
        border-right: 0;
        display: inline-block;
    }

    .header-three .header-t .email-link {
        float: none;
        display: inline-block;
    }

    .header-three .social-networks {
        width: 100%;
    }

    .header-three .social-networks li {
        float: none;
        display: inline-block;
        margin: 0 10px;
    }

    .header-three .header-b .tools,
    .header-three .header-b .site-branding,
    .header-three .header-b .right {
        width: 100%;
        margin: 0 0 20px;
    }

    .header-three .header-b .tools {
        display: none;
    }

    .header-four .header-t .left,
    .header-four .header-t .right {
        width: 100%;
        text-align: center;
    }

    .header-four .header-t .opening-time {
        float: none;
        display: inline-block;
        padding-right: 0;
        border-right: 0;
        margin: 0 10px;
    }

    .header-four .header-t .email-link {
        float: none;
        display: inline-block;
        margin: 0 10px;
    }

    .header-four .social-networks {
        width: 100%;
    }

    .header-four .social-networks li {
        float: none;
        display: inline-block;
        border: 0;
    }

    .header-four .social-networks li:first-child {
        border-left: 0;
    }

    .header-four .tools .form-section .form-holder {
        right: auto;
        left: -92px;
    }

    .header-four .tools .form-section .form-holder:before,
    .header-four .tools .form-section .form-holder:after {
        right: auto;
        left: 100px;
    }

    .header-five .header-t .left,
    .header-five .header-t .right {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.623);
    }

    .header-five .tel-link {
        float: right;
    }

    .header-five .email-link {
        float: left;
    }

    .header-five .header-t {
        border-bottom: 0;
    }

    .bslider .owl-nav {
        display: none;
    }

    .bslider .banner-text .title {
        font-size: 36px;
        line-height: 1.222em;
    }

    .bslider .banner-text {
        width: 100%;
    }

    #testimonial-carousel .owl-prev,
    #testimonial-carousel .owl-next {
        display: none;
    }

    .testimoinal {
        padding-top: 40px;
    }

    .testimoinal .section-header .section-title {
        font-size: 23px;
    }

    .clients {
        padding: 40px 0;
    }

    .clients .section-header .section-title {
        font-size: 23px;
    }

    .page-template-about .about-intro .featured-image {
        margin: 0 0 30px;
    }

    .page-template-about .about-intro .text-holder .title {
        font-size: 23px;
    }

    .services .grid .col {
        width: 100%;
    }

    .page-template-about .team-holder {
        max-width: 290px;
        margin: 0 auto;
    }

    .page-template-about .team-holder .item {
        width: 100%;
        padding: 0;
    }

    .team-holder {
        max-width: 290px;
        margin: 30px auto 0;
    }

    .team-holder .item {
        width: 100%;
        padding: 0;
    }

    #primary .post .entry-content .dropcap,
    #primary .page .entry-content .dropcap {
        font-size: 50px;
    }

    .page-template-template-destination .destination-holder {
        max-width: 290px;
        margin: 40px auto 0;
    }

    .page-template-template-destination .destination-holder .item {
        width: 100%;
        padding: 0;
    }

    .page-template-template-activities .activities-holder,
    .page-template-template-trip_types .trip_types-holder {
        max-width: 290px;
        margin: 40px auto 0;
    }

    .page-template-template-activities .activities-holder .item,
    .page-template-template-trip_types .trip_types-holder .item {
        width: 100%;
        padding: 0;
    }

    .wpte-trip-feat-img-gallery img {
        height: 400px;
    }

    .wpte-trip-feat-img-gallery .slick-prev,
    .wpte-trip-feat-img-gallery .slick-next {
        display: none;
    }

    .trip-content-area .widget-area .trip-price {
        clear: both;
    }

    #tabs-container .tab-inner-wrapper .tab-anchor-wrapper {
        display: block;
        border-left: 0;
        margin-bottom: 5px;
    }

    #tabs-container .tab-inner-wrapper .tab-anchor-wrapper .nav-tab-active {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    #tabs-container .tab-inner-wrapper .tab-anchor-wrapper a:after {
        display: none;
    }

    .single-trip #wte_enquiry_contact_form {
        flex-direction: column;
    }

    .single-trip #wte_enquiry_contact_form .row-repeater {
        width: 100%;
    }

    .place-order-form-secondary-wrapper .wp-travel-engine-order-left-column {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .place-order-form-secondary-wrapper .wp-travel-engine-order-right-column,
    .wp-travel-engine-order-form-wrapper {
        width: 100%;
        margin-top: 30px;
    }

    .place-order-form-secondary-wrapper .trip-property li span {
        width: 100%;
    }

    .custom-background .site {
        max-width: 100%;
    }

    .page-template-testimonial .testimonial-holder .item {
        display: block;
    }

    .page-template-testimonial .testimonial-holder .item .img-holder {
        text-align: center;
        margin: 0 0 30px;
    }

    .page-template-testimonial .testimonial-holder .item .text-holder {
        padding: 20px 20px 10px;
    }

    .page-template-testimonial .testimonial-holder .item .text-holder:before {
        width: 0;
        height: 0;
        border-bottom: 19px solid rgba(255, 255, 255, 0.623);
        border-right: 19px solid transparent;
        top: -19px;
        left: 44px;
        border-top: 0;
        border-left: 0;
    }

    .page-template-testimonial .testimonial-holder .item .text-holder:after {
        width: 0;
        height: 0;
        border-bottom: 18px solid rgba(255, 255, 255, 0.623);
        border-right: 18px solid transparent;
        top: -17px;
        left: 45px;
        border-top: 0;
        border-left: 0;
    }

    .single-trip .related-trips .grid {
        max-width: 290px;
        margin: 0 auto;
    }

    .single-trip .related-trips .grid .col {
        width: 100%;
        padding: 0;
    }

    .trip-search form .class-wte-advanced-search-wrapper {
        display: block;
    }

    .trip-search-result #primary .advanced-search-wrapper .wte-advanced-search-wrap .grid .col {
        width: 100%;
    }

    .fixed-starting .dd-list table {
        border: 0;
    }

    .fixed-starting .dd-list table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    .fixed-starting .dd-list table tbody tr {
        display: block;
        /*background: #f8f8f8;*/
        border: 1px solid #ddd;
        position: relative;
    }

    .fixed-starting .dd-list table tbody tr:after {
        content: '';
        width: 100%;
        height: 5px;
        background: rgba(255, 255, 255, 0.623);
    }

    .fixed-starting .dd-list table tbody td {
        border-bottom: 1px solid #ddd;
        display: block;
        font-size: .8em;
        text-align: right !important;
    }

    .fixed-starting .dd-list table tbody td:before {
        /*
	    * aria-label has no advantage, it won't be read inside a table
	    content: attr(aria-label);
	    */
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
    }

    .fixed-starting .dd-list table tbody td:last-child {
        border-bottom: 0;
    }

    .page-template-template-destination .destination-holder .item .child-title {
        left: 0;
        width: 100%;
    }

    .single-tap_team .gallery .grid .item {
        width: 50%;
    }

    .single-tap_team .detail-holder .left {
        width: 100%;
        max-width: 100%;
        margin: 0 0 30px;
    }

    .single-tap_team .detail-holder .left .img-holder img {
        width: 100%;
    }

    .single-tap_team .detail-holder .text-holder {
        width: 100%;
    }

    #tabs-container .nav-tab-wrapper .tab-inner-wrapper {
        flex-direction: column;
    }

    .page-template-contact .contact-info .grid .item {
        width: 100%;
    }

    .activities:after,
    .our-features,
    .stats,
    .cta,
    .clients {
        background-attachment: scroll !important;
    }
}

svg.fallback-svg {
    vertical-align: top;
}



body.rightsidebar .wpte-bf-checkout .wpte-bf-summary-wrap{
    padding: 5% 0;
    background: transparent;
    border: none;
}
body.rightsidebar #primary .wpte-bf-checkout .wpte-bf-summary-wrap table tbody tr td:last-child{
    text-align: right !important;
}
body.rightsidebar .wpte-bf-checkout .wpte-bf-summary-wrap table tfoot tr td .wpte-bf-total-txt{
    font-size: 14px;
}
body.rightsidebar #primary .wpte-bf-checkout .wpte-bf-summary-wrap table tfoot tr td{
    text-align: right;
}
body.rightsidebar .wpte-bf-checkout .wpte-bf-summary-total .wpte-bf-total-txt{
    font-size: 15px;
    margin: 0;
    padding: 0;
}
body.rightsidebar .wpte-bf-checkout .wpte-bf-summary-total .wpte-bf-currency,
body.rightsidebar .wpte-bf-checkout .wpte-bf-summary-total .wpte-bf-price-amt{
    font-size: 24px;
}
body.rightsidebar .wpte-bf-checkout .wpte-bf-booking-steps .wpte-bf-step-wrap .wpte-bf-step{
    margin-left: 40px;
}
body.rightsidebar .wpte-bf-checkout .wpte-bf-booking-steps .wpte-bf-step-wrap .wpte-bf-step::after{
    right: calc(100% + 15px);
    right: -webkit-calc(100% + 15px);
    right: -moz-calc(100% + 15px);
    width: 25px;
}
.wpte-bf-checkout .wpte-bf-summary-wrap{
    background: rgba(255, 255, 255, 0.623);
    border: none;
    padding: 0;
    position: relative;
    overflow: hidden;
}
.wpte-bf-checkout .wpte-bf-summary-wrap .wpte-bf-trip-name{
    font-size: 20px;
}
.wpte-bf-checkout .wpte-bf-summary-wrap .wpte-bf-trip-date{
    font-size: 16px;
    color: #232323;
    display: block;
    margin-top: 10px;
}
.wpte-bf-checkout .wpte-bf-summary-wrap .wpte-bf-trip-name-wrap{
    border-bottom: none;
    margin-bottom: 10px;
}
.wpte-bf-checkout .wpte-bf-summary-wrap table tfoot td{
    text-align: right !important;
}
.wpte-bf-checkout .wpte-bf-summary-wrap table,
.wpte-bf-checkout .wpte-bf-summary-wrap table tr{
    border: none !important;
}
.wpte-bf-checkout .wpte-bf-summary-wrap table tr td{
    padding: 10px 0 !important;
    color: #232323;
}
.wpte-bf-checkout .wpte-bf-summary-wrap table tr td:last-child{
    text-align: right !important;
}
.wpte-bf-checkout .wpte-bf-summary-wrap table tbody{
    padding-bottom: 10px;
}
.wpte-bf-checkout .wpte-bf-summary-wrap table tfoot{
    border-top-color: #ffab44;
}
.wpte-bf-checkout .wpte-bf-summary-wrap table tfoot td{
    padding-top: 20px !important;
}
.wpte-bf-checkout .wpte-bf-summary-wrap table tr:last-child{
   padding-bottom: 10px;
}
.wpte-bf-checkout .wpte-bf-summary-wrap table tfoot tr td .wpte-bf-total-txt{
    font-size: 16px;
    color: rgba(35,35,35,0.8);
}
.wpte-bf-checkout .wpte-bf-summary-wrap table tfoot tr td .wpte-bf-currency,
.wpte-bf-checkout .wpte-bf-summary-wrap table tfoot tr td .wpte-bf-price-amt{
   color: #232323;
   font-size: 20px;
   font-weight: 500;
}
.wpte-bf-checkout .wpte-bf-summary-wrap table tr td b{
   color: #232323;
}
.wpte-bf-checkout .wpte-bf-summary-wrap table tbody tr:last-child td{
   padding-bottom: 20px !important;
}
.wpte-bf-checkout .wpte-bf-summary-wrap table tbody tr td:first-child{
   font-size: 16px;
   color: #232323;
   font-weight: 500;
}
.wpte-bf-checkout .wpte-bf-summary-wrap table tbody tr td:first-child span{
   position: relative;
   background: rgba(255, 255, 255, 0.623);
   padding-right: 20px;
}
.wpte-bf-checkout .wpte-bf-summary-wrap table tbody tr td b{
    background: rgba(255, 255, 255, 0.623);
    display: inline-block;
    position: relative;
    padding-left: 20px;
    font-size: 16px;
}
.wpte-bf-checkout .wpte-bf-summary-wrap table tbody tr td:first-child span:after{
   position: absolute;
   content: "";
   width: 500px;
   height: 1px;
   border: 1px dashed rgba(0,0,0,0.1);
   top: 10px;
   left: 100%;
}

.wpte-bf-booking-steps .wpte-bf-step-wrap{
    background: transparent;
    border-bottom: solid 1px rgba(50,182,122, 0.2);
    padding: 25px 15px 15px;
}
.wpte-bf-booking-steps .wpte-bf-step-wrap .wpte-bf-step{
    text-transform: capitalize;
}
.wpte-bf-checkout .wpte-bf-booking-steps .wpte-bf-step-wrap{
    padding-bottom: 30px;
    text-align: left;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}
.wpte-bf-checkout .wpte-bf-booking-steps .wpte-bf-step-wrap .wpte-bf-step.completed::before{
    background-color: rgba(50,182,122, 0.1);
    background-image: url('data:image/svg+xml; utf-8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%2332b67a" d="M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z"></path></svg>');
}
.wpte-bf-checkout .wpte-bf-booking-steps .wpte-bf-step-wrap .wpte-bf-step::after{
    background-color: rgba(50,182,122, 0.1);
}
.wpte-bf-checkout .wpte-bf-booking-steps .wpte-bf-step-wrap .wpte-bf-step.active::after{
    background-color: rgba(50,182,122, 1);
}
.wpte-bf-checkout .wpte-bf-booking-steps .wpte-bf-step-wrap .wpte-bf-step.active::before{
    background-color: rgba(50,182,122, 1);
}
.wpte-bf-checkout .wpte-bf-booking-steps .wpte-bf-step-wrap .wpte-bf-step::before{
    color: rgba(50,182,122, 1);
    border-color: rgba(50,182,122, 0.1);
}
.wpte-bf-checkout .wpte-bf-radio .wpte-bf-radio-wrap input[type="radio"]:checked + label::before,
.wpte-bf-checkbox .wpte-bf-checkbox-wrap input[type="checkbox"]:checked + label::before{
    background-color: rgba(50,182,122, 1);
    border-color: rgba(50,182,122, 1);
}
.wpte-bf-step-content-wrap .wpte-bf-btn-wrap input.wpte-bf-btn,
.wpte-bf-submit input[type="submit"]{
    background:  rgba(50,182,122, 1);
    border: 1px solid  rgba(50,182,122, 1);
    font-size: 13px;
    font-weight: 600;
    padding: 11px 0;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
.wpte-bf-step-content-wrap .wpte-bf-btn-wrap input.wpte-bf-btn:hover,
.wpte-bf-submit input[type="submit"]:hover,
.wpte-bf-step-content-wrap .wpte-bf-btn-wrap input.wpte-bf-btn:focus,
.wpte-bf-submit input[type="submit"]:focus{
    color: rgba(50,182,122, 1);
    background: none;
}
.wpte-bf-step-content-wrap .wpte-bf-toggle-wrap table caption{
    font-size: 16px;
    color: #232323;
    font-weight: 500;
}
.wpte-bf-checkout .wpte-bf-summary-wrap table.wpte-bf-extra-info-table{
    margin-top: 10px;
}
.wpte-bf-checkbox .wpte-bf-checkbox-wrap a{
    color: rgba(50,182,122, 1);
}
.wpte-bf-toggle-wrap .wpte-bf-toggle-title{
    color: rgba(255, 255, 255, 0.623);
    text-transform: capitalize;
    background: rgba(241, 241, 241, 0.8);
}
.wpte-bf-toggle-wrap .wpte-bf-toggle-title:hover{
    background: rgba(50,182,122, 1);
}
.wpte-bf-booking-steps{
    margin-top: 0;
}
.wpte-bf-help-block{
    background: rgba(255, 255, 255, 0.623);
    font-size: 13px;
    border-top: 1px solid rgba(50,182,122, 0.2);
    font-weight: 500;
    color: #232323;
}
.wpte-bf-booking-steps .wpte-bf-step-wrap .wpte-bf-step.active{
    color: rgba(50,182,122, 1);
    font-size: 14px;
}
.wpte-bf-help-block a{
    color: rgba(50,182,122, 1);
}
.wpte-bf-price-wrap{
    padding: 0;
    text-align: center;
    /*background: rgba(50,182,122, 0.08);*/
    border-color: rgba(50,182,122, 0.05);
    -webkit-box-shadow: none;
    box-shadow: none;
    /*-webkit-box-shadow: 0px 0px 32px rgba(0,0,0,0.08);
    box-shadow: 0px 0px 32px rgba(0,0,0,0.08);*/
}
.wpte-bf-price-wrap .wpte-bf-price{
    -ms-word-break: break-word;
    word-break: break-word;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-bottom: 0;
    padding-bottom: 12px;
    padding-left: 10px;
}
.wpte-bf-price-wrap .wpte-bf-ptitle{
    margin-top: 13px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(35,35,35,0.8);
    display: block;
    text-align: center;
}
.wpte-bf-price-wrap .wpte-bf-price:last-child{
    padding-bottom: 15px;
    padding-top: 20px;
    background: rgba(50,182,122, 0.08);
}
.wpte-bf-price-wrap .wpte-bf-price del{
    color: rgb(182, 158, 50);
    font-size: 16px;
    font-weight: 500;
}
.wpte-bf-price-wrap .wpte-bf-price ins{
    padding-right: 10px;
    font-weight: 700;
    font-size: 20px;
    color: rgb(219, 219, 219);
}
.wpte-bf-price-wrap .wpte-bf-price ins b{
    padding-left: 2px;
    font-weight: 700;
}
.wpte-bf-step-content .wpte-bf-block-title{
    font-size: 18px;
}
.wpte-bf-price-wrap .wpte-bf-price .wpte-bf-pqty{
    padding-left: 0;
    padding-right: 10px;
    color: #232323;
}
.wpte-bf-datepicker .ui-datepicker-inline .ui-widget-header a[class*="ui-datepicker-"]{
    bottom: 7px;
}
.wpte-bf-step-content .ui-datepicker table{
    font-size: 14px !important;
}
.wpte-bf-datepicker .ui-datepicker th{
    font-size: 13px;
    font-weight: 400;
}
.wpte-bf-step-content-wrap .wpte-bf-toggle-content table tr td .wpte-bf-info{
    color: rgba(236, 234, 234, 0.9);
}
.wpte-bf-step-content-wrap .wpte-bf-toggle-content table tr td{
    -ms-word-break: break-word;
    word-break: break-word;
}
.wpte-bf-step-content-wrap .wpte-bf-toggle-content table tr td:last-child{
    font-size: 16px;
    color: #232323;
    font-weight: 500;
}
.wpte-bf-toggle-wrap .wpte-bf-toggle-title{
    background: rgba(63, 12, 12, 0.8);
}
.wte-bf-price-detail .wpte-bf-toggle-wrap .wpte-bf-toggle-title{
    background: rgba(50,182,122, 0.1);
    color: rgb(231, 231, 231);
}
.wpte-bf-toggle-wrap .wpte-bf-toggle-title:focus{
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.wpte-bf-step-content .wpte-bf-number-field button:hover{
    color: rgba(50,182,122, 1);
}
.wpte-bf-step-content-wrap .wpte-bf-btn-wrap input.wpte-bf-btn:focus,
.wpte-bf-submit input[type="submit"]:focus,
.wpte-bf-step-content .wpte-bf-number-field button:focus{
    outline: none;
}
.wpte-bf-booking-steps .wpte-bf-step-wrap .wpte-bf-step-arrow{
    color: rgba(51,51,51,0.25);
}
.wpte-bf-datepicker .ui-datepicker-inline .ui-widget-header{
    background: rgba(50,182,122, 0.07);
    padding: 13px 0;
    border-bottom: none;
}
.wpte-bf-datepicker .ui-datepicker-inline .ui-datepicker-title{
    font-weight: 500;
}
.wpte-bf-step-content .wpte-bf-number-field + span{
    font-size: 14px;
}
.wpte-bf-step-content .wpte-bf-price ins{
    color: rgb(112, 112, 112);
    font-size: 18px;
}
.wpte-bf-step-content .wpte-bf-price ins b{
    font-size: 18px;
    font-weight: 600;
}
.wpte-bf-step-content .wpte-bf-price .wpte-bf-pqty{
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}
.wpte-bf-step-content-wrap .wpte-bf-total-price .wpte-bf-currency,
.wpte-bf-step-content-wrap .wpte-bf-total-price .wpte-bf-price-amt{
    color: rgb(91, 105, 99);
    font-weight: 500;
    font-size: 26px;
}
.wpte-bf-step-content-wrap .wpte-bf-total-price .wpte-bf-currency{
    font-weight: 300;
}
.wpte-bf-checkout .wpte-bf-step-content-wrap .wpte-bf-total-price .wpte-bf-currency,
.wpte-bf-checkout .wpte-bf-step-content-wrap .wpte-bf-total-price .wpte-bf-price-amt{
    color: #232323;
    font-weight: 500;
}
.wpte-bf-step-content-wrap .wpte-bf-total-price .wpte-bf-total-txt{
    font-size: 20px;
    font-weight: 500;
    color: rgba(35,35,35,1);
}
.wpte-bf-checkout .wpte-bf-step-content-wrap .wpte-bf-total-price .wpte-bf-total-txt{
    font-size: 16px;
    padding-right: 0;
}
.wpte-bf-step-content .wpte-bf-number-field{
    border: 1px solid rgba(50,182,122, 0.4);
    width: 100px;
    height: 40px;
}
.wpte-bf-step-content .wpte-bf-number-field button{
    color: rgba(50,182,122, 1);
    background: rgba(50,182,122, 0.03);
    border: solid 1px rgba(50,182,122, 0.05);
}
.wpte-bf-step-content-wrap .wpte-bf-toggle-content .wpte-bf-total{
    font-size: 14px;
    text-transform: uppercase;
}
.wpte-bf-step-content-wrap .wpte-bf-toggle-content .wpte-bf-total b{
    color: rgba(50,182,122, 1);
    font-size: 18px;
}
.wpte-bf-checkout .wpte-bf-summary-total{
    padding: 5% 0;
    margin-top: 10px;
    background: none;
    border-top: 1px solid rgba(50,182,122, 1);
}
.wpte-bf-checkout .wpte-bf-summary-wrap .wpte-bf-title,
.wpte-bf-checkout .wpte-bf-summary-wrap .wpte-bf-trip-name-wrap{
    text-align: left;
}
.wpte-bf-checkout .wpte-bf-summary-wrap .wpte-bf-title{
    font-size: 30px;
    margin-bottom: 30px;
}
/*.wpte-bf-step-content-wrap .wpte-bf-total-price .wpte-bf-currency,
.wpte-bf-step-content-wrap .wpte-bf-total-price .wpte-bf-price-amt{
color: #232323;
}*/

.wpte-bf-checkout .wpte-bf-step-content-wrap .wpte-bf-total-price{
    text-align: right;
}
.wpte-bf-outer input[type="text"], .wpte-bf-outer input[type="email"], .wpte-bf-outer input[type="url"], .wpte-bf-outer input[type="password"], .wpte-bf-outer input[type="search"], .wpte-bf-outer input[type="number"], .wpte-bf-outer input[type="tel"], .wpte-bf-outer input[type="range"], .wpte-bf-outer input[type="date"], .wpte-bf-outer input[type="month"], .wpte-bf-outer input[type="week"], .wpte-bf-outer input[type="time"], .wpte-bf-outer input[type="datetime"], .wpte-bf-outer input[type="datetime-local"], .wpte-bf-outer input[type="color"], .wpte-bf-outer textarea, .wpte-bf-outer select{
    background: none;
}
.wpte-bf-outer {
    box-shadow: 0 0 12px rgba(0,0,0,0.07);
}
.wpte-bf-outer.wpte-bf-checkout{
    -webkit-box-shadow: none;
    box-shadow: none;
}
.wpte-bf-booking-steps{
    -webkit-box-shadow: none;
    box-shadow: none;
}
.wpte-bf-datepicker .ui-datepicker td a.ui-state-default{
    background: rgba(50,182,122, 1);
    color: rgb(255, 255, 255);
}
.wpte-bf-toggle-wrap .wpte-bf-toggle-content{
    padding: 0 20px;
}
.wpte-bf-checkout .wpte-bf-book-summary{
    padding: 45px 60px;
    -webkit-box-shadow: 0px 0px 42px rgba(148, 127, 69, 0.958);
            box-shadow: 0px 0px 42px rgba(148, 127, 69, 0.958);
}
body.rightsidebar .wpte-bf-checkout .wpte-bf-book-summary{
    padding: 20px 20px 10px;
}
body.rightsidebar .wpte-bf-checkout .wpte-bf-booking-steps .wpte-bf-step-wrap .wpte-bf-step:first-child{
    margin-left: 0;
}
.wpte-bf-checkout .wpte-bf-checkout-form,
body.rightsidebar .wpte-bf-checkout .wpte-bf-checkout-form{
    width: 60%;
}
.wpte-bf-checkout .wpte-bf-book-summary,
body.rightsidebar .wpte-bf-checkout .wpte-bf-book-summary{
    width: 40%;
}
.wpte-bf-checkout .wpte-bf-title{
    color: #232323;
    font-size: 20px;
}


@media only screen and (max-width: 1024px) {
    .wpte-bf-checkout .wpte-bf-booking-steps .wpte-bf-step-wrap{
        -webkit-justify-content: center;
                justify-content: center;
    }
    .wpte-bf-checkout .wpte-bf-checkout-form,
    body.rightsidebar .wpte-bf-checkout .wpte-bf-checkout-form{
        width: 100%;
    }
    .wpte-bf-checkout .wpte-bf-book-summary,
    body.rightsidebar .wpte-bf-checkout .wpte-bf-book-summary{
        width: 100%;
    }
}

/* The flip box container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-box {
    background-color: transparent;
    width: 300px;
    height: 200px;
    border: 1px solid #f1f1f1;
    perspective: 1000px; /* Remove this if you don't want the 3D effect */
  }
  
  /* This container is needed to position the front and back side */
  .flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
  }
  
  /* Do an horizontal flip when you move the mouse over the flip box container */
  .flip-box:hover .flip-box-inner {
    transform: rotateY(180deg);
  }
  
  /* Position the front and back side */
  .flip-box-front, .flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
  }
  
  /* Style the front side */
  .flip-box-front {
    background-color: #bbb;
    color: black;
  }
  
  /* Style the back side */
  .flip-box-back {
    background-color: dodgerblue;
    color: white;
    transform: rotateY(180deg);
  }
  
  

  .about-us {
    position: relative;
    margin-bottom: 127px;
    margin-top: -130px;
    z-index: 11; }
  
  .about-us-inner {
    position: relative;
    padding-right: 15px; }
  
  .about-us-inner::after {
    position: absolute;
    content: '';
    top: -50px;
    left: -80px;
    width: calc(100% + 132px);
    height: calc(100% + 100px);
    background: #fff;
    z-index: -1;
    -webkit-box-shadow: 0px 5px 37px 0px rgba(16, 145, 255, 0.15);
    -moz-box-shadow: 0px 5px 37px 0px rgba(16, 145, 255, 0.15);
    box-shadow: 0px 5px 37px 0px rgba(16, 145, 255, 0.15);
    border-top-left-radius: 61px;
    border-bottom-right-radius: 61px; }
  
  .about-us-tab ul.nav {
    display: block; }
  
  .about-us-tab ul.nav-tabs {
    border-bottom: none; }
  
  .about-us-tab ul li a.nav-link {
    font-size: 18px;
    color: #252e45;
    border: none;
    padding: 0;
    padding-bottom: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    border-bottom: 1px solid #dddddd; }
  
  .about-us-tab ul li:last-child a.nav-link {
    border-bottom: none; }
  
  .about-us-tab ul li a i {
    font-size: 22px;
    margin-right: 15px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #b0b0b0;
    text-align: center; }
  
  .about-us-tab ul li a.nav-link.active {
    border-bottom: 1px solid #dddddd;
    color: #ff6600;
    text-decoration: line-through; }
  
  .about-us-tab ul li:last-child a.nav-link.active {
    border-bottom: none; }
  
  .about-us-tab ul li a.nav-link.active i {
    color: #b0b0b0; }
  
  
  
  
  
  .u-image,
  .u-background-effect-image,
  .u-video-poster {
    object-fit: cover;
    display: block;
    vertical-align: middle;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: repeat;
    border-radius: 5px;
    border-image: 4px;
  
  }
  h4 {
      font-size: 1.25rem;}
  .u-hover-palette-2-light-1:hover,
  .u-hover-palette-2-light-1[class*="u-border-"]:hover,
  .u-hover-palette-2-light-1:focus,
  .u-hover-palette-2-light-1[class*="u-border-"]:focus,
  .u-active-palette-2-light-1.u-active.u-active,
  .u-active-palette-2-light-1[class*="u-border-"].u-active.u-active,
  a.u-button-style.u-hover-palette-2-light-1:hover,
  a.u-button-style.u-hover-palette-2-light-1[class*="u-border-"]:hover,
  a.u-button-style:hover > .u-hover-palette-2-light-1,
  a.u-button-style:hover > .u-hover-palette-2-light-1[class*="u-border-"],
  a.u-button-style.u-hover-palette-2-light-1:focus,
  a.u-button-style.u-hover-palette-2-light-1[class*="u-border-"]:focus,
  a.u-button-style.u-button-style.u-active-palette-2-light-1:active,
  a.u-button-style.u-button-style.u-active-palette-2-light-1[class*="u-border-"]:active,
  a.u-button-style.u-button-style.u-active-palette-2-light-1.active,
  a.u-button-style.u-button-style.u-active-palette-2-light-1[class*="u-border-"].active,
  a.u-button-style.u-button-style.active > .u-active-palette-2-light-1,
  a.u-button-style.u-button-style.active > .u-active-palette-2-light-1[class*="u-border-"],
  li.active > a.u-button-style.u-button-style.u-active-palette-2-light-1,
  li.active > a.u-button-style.u-button-style.u-active-palette-2-light-1[class*="u-border-"] {
    color: #ffffff !important;
    background-color: #e68387 !important;
  }
  a.u-link.u-hover-palette-2-light-1:hover {
    color: #e68387 !important;
  }
  .u-palette-2-light-2,
  .u-body.u-palette-2-light-2,
  .u-container-style.u-palette-2-light-2:before,
  .u-container-layout.u-palette-2-light-2:before,
  .u-table-alt-palette-2-light-2 tr:nth-child(even) {
    color: #111111;
     
    background-color: #ebafb1;
    border-radius: 20px;
    box-shadow: rgba(160, 18, 18, 0.25);
    overflow: hidden;
  }
  .u-button-style.u-palette-2-light-2,
  .u-button-style.u-palette-2-light-2[class*="u-border-"] {
    color: #111111 !important;
    background-color: #f1b5b8 !important;
    }
  .text-center {
      text-align: center;
    }
  
  .button {
      display: inline-block;
      padding: 12px 30px;
      text-align: center;
      vertical-align: middle;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      font-size: 14px;
      text-transform: capitalize;
      letter-spacing: 0.7px;
      font-weight: 600;
      border: 0;
      border-radius: 35px;
      background: #1a0501f7;
      transition: all 500ms ease;
      cursor: pointer;
      color: #fffdfd;
      position: relative;
      margin-top: 25px;
      overflow: hidden;
      -webkit-box-shadow: 0 5px 30px rgba(20, 20, 20, 0.7);
      box-shadow: 0 4px 20px rgba(50, 51, 51, 0.85);
      text-decoration: none;
  }
  .slub1-safari{
      width: 100%;
      height: 449px;
      display: inline-block;
      border-radius: 3px;
      box-shadow: 5px 10px 18px #949292;
      cursor: pointer;
      background: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.55));
      display: inline-block;
      margin: right 20px;;
      position: relative;
      vertical-align: middle;
      overflow: hidden;
      
  }
  .slub2-safari{
      height: 349px;
      display: inline-block;
      border-radius: 3px;
      box-shadow: 5px 10px 18px #949292;
      cursor: pointer;
      background: linear-gradient(#d58e9093, #ebafb1a1);
      display: inline-block;
      margin: 0px;
      position: relative;
      vertical-align: middle;
      overflow: hidden;
  }
  .slub3-safari{
      height: 395px;
      display: inline-block;
      border-radius: 3px;
      box-shadow: 5px #241f1fe0;
      cursor: pointer;
      background: linear-gradient(#0a0a0a93, hsla(348, 20%, 95%, 0.631));
      display: inline-block;
      margin: 0px;
      position: relative;
      vertical-align: middle;
      overflow: hidden;
  }
  .button:hover {
      color: rgb(180, 152, 29);
      background: #6e602a;
      transform: translateY(-28px);
  
  }
  .num-1{
      width: 100px;
    height: 50px; /* as the half of the width */
    background-color: transparent;
    border-top-left-radius: 55px;  /* 100px of height + 10px of border */
    border-top-right-radius: 55px; /* 100px of height + 10px of border */
    border: 1px solid rgb(188, 132, 13);
    border-bottom: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -36px;
    box-shadow: 5px 5px 8px #000;
  }
  
  
  
  dl, ol, ul {
      padding: 0;
      margin: 0;
      list-style: none;
  }
  
  .bg-fixed {
      background-attachment: fixed;
  }
  
  .bg-img {
      background-size: cover;
      background-repeat: no-repeat;
  }
  
  .section-padding {
      padding: 100px 0;
  }
  
  .section-title {
      text-align: center;
      margin-bottom: 75px;
  }
  
  .section-title h2 {
      font-weight: 900;
      text-transform: capitalize;
      font-size: 33px;
      line-height: 1.3;
      color: rgb(59, 50, 26);
  }
  
  .small-title {
      color: #2c2929;
      margin-bottom: 10px;
      font-size: 12px;
      text-transform: uppercase;
      font-weight: 800;
      letter-spacing: 2px;
      background: rgba(114, 146, 230, 0.15);
      padding: 5px 20px;
      border-radius: 30px;
      display: inline-block;
  }
  
  .display-table {
      width: 100%;
      height: 100%;
      display: table;
  }
  
  .table-cell {
      display: table-cell;
      vertical-align: middle;
  }
  
  .mr-top-50 {
      margin-top: 50px;
  }
  
  .back-to-top {
      position: fixed;
      display: none;
      color: #fff;
      width: 40px;
      height: 42px;
      line-height: 40px;
      border-radius: 5px;
      right: 25px;
      bottom: 20px;
      text-align: center;
      background: #5c531e;
      transition: background 0.5s;
      z-index: 11;
  }
  
  .back-to-top i {
      color: #fff;
      font-size: 20px;
  }
  
  .v-middle {
      position: absolute;
      width: 100%;
      top: 50%;
      left: 0;
      -webkit-transform: translate(0%, -50%);
      transform: translate(0%, -50%);
  }
  
  .valign {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
  }
  
  .animation-bounce {
      -webkit-animation: bounce 3s infinite ease-in-out;
      -o-animation: bounce 3s infinite ease-in-out;
      -ms-animation: bounce 3s infinite ease-in-out;
      -moz-animation: bounce 3s infinite ease-in-out;
      animation: bounce 3s infinite ease-in-out;
  }
  
  @-webkit-keyframes bounce {
      0% {
          transform: translateY(-5px);
      }
  
      50% {
          transform: translateY(10px);
      }
  
      100% {
          transform: translateY(-5px);
      }
  }
  
  @keyframes bounce {
      0% {
          transform: translateY(-5px);
      }
  
      50% {
          transform: translateY(10px);
      }
  
      100% {
          transform: translateY(-5px);
      }
  }
  ontact-area .form-message.success {
      background: #03b103;
      color: #fff;
      padding: 10px 15px;
      border-radius: 3px;
  }
  
  contact-area .form-message.error {
      background: #ff4d15;
      color: #fff;
      padding: 10px 15px;
      border-radius: 3px;
  }
  
  
  /*---text blow---*/
  .neonText {
      color: rgb(209, 188, 188);
      text-shadow:
          0 0 7px #fff,
          0 0 10px #fff,
          0 0 21px #fff,
          0 0 42px #5271ff,
          0 0 82px #5271ff,
          0 0 92px #5271ff,
          0 0 102px #5271ff,
          0 0 151px #5271ff;
    }
      
    body {
      font-size: 10px;
      font-family: "Yellowtail", sans-serif;
      background-color: #f9fdf9;
  
    }  
    
     h6 {
      text-align: center;
      font-weight: 400;
    }
      
    h6 {
        font-size: 3.2rem;
        animation: pulsate 0.11s ease-in-out infinite alternate;     
    }
      
    h6 {
        font-size: 1.8rem;
    }
    
    @keyframes pulsate {
        
      0% {
    
          text-shadow:
          0 0 4px #fff,
          0 0 11px #fff,
          0 0 19px #fff,
          0 0 40px #5271ff,
          0 0 80px #5271ff,
          0 0 90px #5271ff,
          0 0 100px #5271ff,
          0 0 150px #5271ff;
      
      }
      
      0% {
    
        text-shadow:
        0 0 4px #fff,
        0 0 10px #fff,
        0 0 18px #fff,
        0 0 38px #5271ff,
        0 0 73px #5271ff,
        0 0 80px #5271ff,
        0 0 94px #5271ff,
        0 0 140px #5271ff;
    
    }
    
    
    }.neonText {
      animation: flicker 1.5s infinite alternate;
      color: rgb(56, 17, 5);
    }
    
   
    
    /* Flickering animation */
    @keyframes flicker {
        
      0%, 18%, 22%, 25%, 53%, 57%, 100% {
    
          text-shadow:
          0 0 4px #fff,
          0 0 11px #fff,
          0 0 19px #fff,
          0 0 40px #0fa,
          0 0 80px #0fa,
          0 0 90px #0fa,
          0 0 100px #0fa,
          0 0 150px #0fa;
      
      }
      
      20%, 24%, 55% {        
          text-shadow: none;
      }    
    }
    
    
    /* Additional styling */
      
   
    
    body {
      font-size: 18px;
   
    }  
    
    h6 {
      text-align: center;
      text-transform: uppercase;
      font-weight: 400;
    }
  
    
  /* booking now */
  
  #producer-pispite  {
    -webkit-box-shadow: inset -1px 3px 8px 5px #c48900, 2px 5px 16px 0px #c48900, 5px 5px 15px 5px rgba(0,0,0,0); 
    box-shadow: inset -1px 3px 8px 5px #140b0a, 2px 5px 16px 0px #755815, 5px 5px 15px 5px rgba(0,0,0,0);
    background: #946e36;
    }
    body#tinymce {
    background: #FFFFFF
    }
    /*----product holder package Title----*/
    #producer-pispite-2  {
    -webkit-box-shadow: inset -1px 3px 8px 5px #c48900, 2px 5px 16px 0px #c48900, 5px 5px 15px 5px rgba(0,0,0,0); 
    box-shadow: inset -1px 3px 8px 5px #140b0a, 2px 5px 16px 0px #755815, 5px 5px 15px 5px rgba(0,0,0,0);
    background: #6463627a;
    }
    body#tinymce {
    background: #FFFFFF
    }
    /*----product holder package Title end----*/
    #producer-pispite-about  {
    -webkit-box-shadow: inset -1px 3px 8px 5px #00c400, 2px 5px 16px 0px #00c400, 5px 5px 15px 5px rgba(0,0,0,0); 
    box-shadow: inset -1px 3px 8px 5px #140b0a, 2px 5px 16px 0px #755815, 5px 5px 15px 5px rgba(0,0,0,0);
    background: #4e0202;
    }
    body#tinymce {
    background: #FFFFFF
    }
    /*----product holder Image package----*/
    #producer-pispite-holder  {
    -webkit-box-shadow: inset -1px 3px 8px 5px #77392d, 2px 5px 16px 0px #c48900, 5px 5px 15px 5px rgba(0,0,0,0); 
    box-shadow: inset -1px 3px 8px 5px #140b0a, 2px 5px 16px 0px #755815, 5px 5px 15px 5px rgba(0,0,0,0);
    background: #ffffff1a;
    }
    body#tinymce {
    background: #FFFFFF
    }
    
    /*----product holder package end----*/
    
    
    
    /*---------------------------------------------------------Articals 5 days-------------------------------------------------------------------------*/
    
    /*----product holder package details----*/
    #producer-pispite-holder-details {
        -webkit-box-shadow: inset -1px 3px 8px 5px #c48900, 2px 5px 16px 0px #c48900, 5px 5px 15px 5px rgba(156, 156, 156, 0.965); 
        box-shadow: inset -1px 3px 8px 5px rgb(144, 144, 143), 2px 5px 16px 0px #5c4613, 5px 5px 15px 5px rgba(0,0,0,0);
        background: #a85807b7;
        }
        body#tinymce {
        background: #FFFFFF
        }
        
        /*----product holder package details inquiry end----*/
    
        /*----product holder package details----*/
    #producer-pispite-holder-details-inquiry {
        -webkit-box-shadow: inset -1px 3px 8px 5px #c44e00, 2px 5px 16px 0px #c48900, 5px 5px 15px 5px rgba(156, 156, 156, 0.965); 
        box-shadow: inset -1px 3px 8px 5px #a85807b7, 2px 5px 16px 0px #695015, 5px 5px 15px 5px rgba(0,0,0,0);
        background: #a8a8a705;
        }
        body#tinymce {
        background: #FFFFFF
        }
        
        /*----product holder package details end----*/
    
    
    
    /*----product holder artical Title Five Days Marangu----*/
    #producer-materu-artical  {
        -webkit-box-shadow: inset -1px 3px 8px 5px #c3b9a2, 2px 5px 16px 0px #cc9d30, 5px 5px 15px 5px rgba(0,0,0,0); 
        box-shadow: inset -1px 3px 8px 5px #141414b7, 2px 5px 16px 0px #36342b, 5px 5px 15px 5px rgba(0,0,0,0);
        background:
       linear-gradient(180deg, rgba(8,8,8,1) 4%, rgba(44, 3, 34, 0.247) 23%, rgba(148,148,190,0) 100%, rgba(47,47,131,0.76234243697479) 100%, rgba(249,249,249,0.04245448179271705) 100%),
        url("https://kitanotours.com:2083/cpsess4614928836/frontend/paper_lantern/filemanager/showfile.html?file=3-day-fyl-in.jpg&fileop=&dir=%2Fhome%2Fkitanotours%2Fpublic_html%2Fwp-content%2Fuploads%2Fsites%2F24%2F2018%2F05&dirop=&charset=&file_charset=&baseurl=&basedir=")
    
    }
    #producer-materu1-artical  {
        -webkit-box-shadow: inset -1px 3px 8px 5px #c3b9a2, 2px 5px 16px 0px #cc9d30, 5px 5px 15px 5px rgba(0,0,0,0); 
        box-shadow: inset -1px 3px 8px 5px #141414b7, 2px 5px 16px 0px #36342b, 5px 5px 15px 5px rgba(0,0,0,0);
        background-image:
       linear-gradient(180deg, rgba(8,8,8,1) 4%, rgba(27, 2, 27, 0.363) 23%, rgba(148,148,190,0) 100%, rgba(47,47,131,0.76234243697479) 100%, rgba(249,249,249,0.04245448179271705) 100%),
        url('https://kitanotours.com:2083/cpsess4614928836/frontend/paper_lantern/filemanager/showfile.html?file=3-days-fly-out.jpg&fileop=&dir=%2Fhome%2Fkitanotours%2Fpublic_html%2Fwp-content%2Fuploads%2Fsites%2F24%2F2018%2F05&dirop=&charset=&file_charset=&baseurl=&basedir=');
    
    }
    #producer-materu2-artical  {
        -webkit-box-shadow: inset -1px 3px 8px 5px #c3b9a2, 2px 5px 16px 0px #cc9d30, 5px 5px 15px 5px rgba(0,0,0,0); 
        box-shadow: inset -1px 3px 8px 5px #141414b7, 2px 5px 16px 0px #36342b, 5px 5px 15px 5px rgba(0,0,0,0);
        background-image:
       linear-gradient(180deg, rgba(8,8,8,1) 4%, rgba(27, 2, 27, 0.363) 23%, rgba(148,148,190,0) 100%, rgba(47,47,131,0.76234243697479) 100%, rgba(249,249,249,0.04245448179271705) 100%),
        url('https://kitanotours.com:2083/cpsess4614928836/frontend/paper_lantern/filemanager/showfile.html?file=4-days-fly-in.jpg&fileop=&dir=%2Fhome%2Fkitanotours%2Fpublic_html%2Fwp-content%2Fuploads%2Fsites%2F24%2F2018%2F05&dirop=&charset=&file_charset=&baseurl=&basedir=');
    
    }#producer-materu3-artical  {
        -webkit-box-shadow: inset -1px 3px 8px 5px #c3b9a2, 2px 5px 16px 0px #cc9d30, 5px 5px 15px 5px rgba(0,0,0,0); 
        box-shadow: inset -1px 3px 8px 5px #141414b7, 2px 5px 16px 0px #36342b, 5px 5px 15px 5px rgba(0,0,0,0);
        background-image:
       linear-gradient(180deg, rgba(8,8,8,1) 4%, rgba(27, 2, 27, 0.363) 23%, rgba(148,148,190,0) 100%, rgba(47,47,131,0.76234243697479) 100%, rgba(249,249,249,0.04245448179271705) 100%),
        url('https://kitanotours.com:2083/cpsess4614928836/frontend/paper_lantern/filemanager/showfile.html?file=drive.jpg&fileop=&dir=%2Fhome%2Fkitanotours%2Fpublic_html%2Fwp-content%2Fuploads%2Fsites%2F24%2F2018%2F05&dirop=&charset=&file_charset=&baseurl=&basedir=');
    
    }#producer-materu4-artical  {
        -webkit-box-shadow: inset -1px 3px 8px 5px #c3b9a2, 2px 5px 16px 0px #cc9d30, 5px 5px 15px 5px rgba(0,0,0,0); 
        box-shadow: inset -1px 3px 8px 5px #141414b7, 2px 5px 16px 0px #36342b, 5px 5px 15px 5px rgba(0,0,0,0);
        background-image:
       linear-gradient(180deg, rgba(8,8,8,1) 4%, rgba(27, 2, 27, 0.363) 23%, rgba(148,148,190,0) 100%, rgba(47,47,131,0.76234243697479) 100%, rgba(249,249,249,0.04245448179271705) 100%),
        url('https://kitanotours.com:2083/cpsess4614928836/frontend/paper_lantern/filemanager/showfile.html?file=fly.jpg&fileop=&dir=%2Fhome%2Fkitanotours%2Fpublic_html%2Fwp-content%2Fuploads%2Fsites%2F24%2F2018%2F05&dirop=&charset=&file_charset=&baseurl=&basedir=');
    
    }
    #producer-pispite-artical  {
        -webkit-box-shadow: inset -1px 3px 8px 5px #c3b9a2, 2px 5px 16px 0px #cc9d30, 5px 5px 15px 5px rgba(0,0,0,0); 
        box-shadow: inset -1px 3px 8px 5px #140b0a, 2px 5px 16px 0px #161616, 5px 5px 15px 5px rgba(0,0,0,0);
        background: #a85807b7;
        }
        body#tinymce {
        background: #FFFFFF
        }
        /*----product holder package Title Five Days Marangu end----*/
        #producer-pispite-materu  {
            -webkit-box-shadow: inset -1px 3px 8px 5px #c3b9a2, 2px 5px 16px 0px #cc9d30, 5px 5px 15px 5px rgba(0,0,0,0); 
            box-shadow: inset -1px 3px 8px 5px #140b0a, 2px 5px 16px 0px #36342b, 5px 5px 15px 5px rgba(0,0,0,0);
            background: #e7d0b9b7;
            }
            body#tinymce {
            background: #FFFFFF
            }
            /*----product holder package Title Five Days Marangu end----*/
        
        
    
        /*----product holder package Price From background----*/
    #producer-pispite-holder-Price-background {
        -webkit-box-shadow: inset -1px 3px 8px 5px rgb(73, 11, 11), 2px 5px 16px 0px #3ec400, 5px 5px 15px 5px rgba(156, 156, 156, 0.965); 
        box-shadow: inset -1px 3px 8px 5px rgb(73, 11, 11), 2px 5px 16px 0px #272112, 5px 5px 15px 5px rgba(0,0,0,0);
        background: #a85807af;
        }
        body#tinymce {
        background: #FFFFFF
        }
        
        /*----product holder package Price From background end----*/
    
        /*----product holder package Price From----*/
    #producer-pispite-holder-Price {
        -webkit-box-shadow: inset -1px 3px 8px 5px #817966, 2px 5px 16px 0px #c48900, 5px 5px 15px 5px rgba(156, 156, 156, 0.965); 
        box-shadow: inset -1px 3px 8px 5px rgb(73, 11, 11), 2px 5px 16px 0px #162838, 5px 5px 15px 5px rgba(0,0,0,0);
        background: #a8580755;
        }
        body#tinymce {
        background: #FFFFFF
        }
        #producer-pispite-holder-article {
            -webkit-box-shadow: inset -1p x 3px 8px 5px #817966, 2px 5px 16px 0px #c48900, 5px 5px 15px 5px rgba(156, 156, 156, 0.965); 
      
            padding: 15px 15px;
            border-radius: 0px 0px 10px 10px;
            margin-bottom: 20px;
            box-shadow: inset -1px 3px 8px 5px rgb(255 254 254), 2px 5px 16px 0px #16283861, 5px 5px 15px 5px rgba(0,0,0,0);
            background: white;
            }
            body#tinymce {
            background: #FFF
            }

            #producer-pispite-holder-question {
                -webkit-box-shadow: inset -1p x 3px 8px 5px #786969, 2px 5px 16px 0px #c48900, 5px 5px 15px 5px rgba(156, 156, 156, 0.965); 
          
                padding: 15px 15px;
                border-radius: 0px 0px 10px 10px;
                margin-bottom: 20px;
                box-shadow: inset -1px 3px 8px 5px rgb(255 254 254), 2px 5px 16px 0px #162838, 5px 5px 15px 5px rgba(0,0,0,0);
                background: 78 71 71 / 95%;
                }
                body#tinymce {
                background: #787171
                }
        /*----product holder package Price From  end----*/
    
         /*----product holder package Price Select Date From---
    #producer-pispite-holder-Price-Select {
        -webkit-box-shadow: inset -1px 3px 8px 5px #c48900, 2px 5px 16px 0px #c48900, 5px 5px 15px 5px rgba(156, 156, 156, 0.965); 
        box-shadow: inset -1px 3px 8px 5px rgb(146, 8, 139), 2px 5px 16px 0px #162838, 5px 5px 15px 5px rgba(0,0,0,0);
        background: #fbfafa7c;
        }
        body#tinymce {
        background: #ffffff47
        }
        
        ---product holder package Price From end----*/
    
    
         /*----product holder package Price Calenda From----*/
    #producer-pispite-holder-Select-Calenda-From {
        -webkit-box-shadow: inset -1px 3px 8px 5px #c48900, 2px 5px 16px 0px #c48900, 5px 5px 15px 5px rgba(156, 156, 156, 0.965); 
        box-shadow: inset -1px 3px 8px 5px rgb(30, 34, 31), 2px 5px 16px 0px #162838, 5px 5px 15px 5px rgba(0,0,0,0);
        background: #a85807b7;
        }
        body#tinymce {
        background: #ffffff77
        }
        
        /*----product holder package Price Select Calenda From end----*/
    
    
         /*----product holder package Price Add-Travelers----*/
    #producer-pispite-holder-Add-Travelers {
        -webkit-box-shadow: inset -1px 3px 8px 5px #c48900, 2px 5px 16px 0px #c48900, 5px 5px 15px 5px rgba(156, 156, 156, 0.965); 
        box-shadow: inset -1px 3px 8px 5px #4e0202, 2px 5px 16px 0px #162838, 5px 5px 15px 5px rgba(0,0,0,0);
        background: #a85807b7;
        }
        body#tinymce {
        background: #ffffff77
        }
        
        /*----product holder package Add-Travelers end----*/
    
         /*----product holder package Price View-Cost-Detail----*/
    #producer-pispite-holder-View-Cost-Detail {
        -webkit-box-shadow: inset -1px 3px 8px 5px #c48900, 2px 5px 16px 0px #c48900, 5px 5px 15px 5px rgba(156, 156, 156, 0.965); 
        box-shadow: inset -1px 3px 8px 5px rgb(119, 44, 9), 2px 5px 16px 0px #162838, 5px 5px 15px 5px rgba(0,0,0,0);
        background: #a85807b7;
        }
        body#tinymce {
        background: #ffffff77
        }
        
        /*----product holder package View-Cost-Detail end----*/
    
        
    
    
        #wrapper {
            display: none;
            z-index: 10000;
            
            
        }
        #wrapper-php{
            width:576px;
            border-radius: 30px;
            margin: 5px auto;
            position:absolute;
            display: none;
            background-image:none;
            overflow: hidden;
        }
        .NFC-popup{
            width:576px;
            border-radius: 15px;
            margin: 100px auto;
            position:absolute;
            display: none;
            -webkit-box-shadow: inset -1px 3px 8px 5px #c48900, 2px 5px 16px 0px #c48900, 5px 5px 15px 5px rgba(156, 156, 156, 0.965); 
            box-shadow: inset -1px 3px 8px 5px #a85807b7, 2px 5px 16px 0px #162838, 5px 5px 15px 5px rgba(0,0,0,0);
            background: rgb(29, 12, 1);;
            overflow: hidden;
            
            
            
        }
        #wrapper-php .thanks{
            text-align: center;
        }
        #wrapper-php .thanks h1{
            font-family: 'Pacifico', cursive;
            font-weight: 400;
        }
        #wrapper-php .thanks p{
            font-family: 'Concert', cursive;
        }
        
        .modal {
            display: none;
            position: fixed;
            z-index: 21;
            left: 0;
            top: 0;
            width: 100%;
            height:100%;
            overflow: auto;
            background: rgba(0, 0, 0, 0.45);
        }
        .animate {
            animation: zoom 0.6s
        }
        @keyframes zoom {
            from {transform: scale(0)}
            to {transform: scale(1)}
        }
        
        .is-showing{
            display: block;
            left: 50%;
            transform: translateX(-50%);
        }
        .imgcontainer {
            text-align: center;
            margin: 24px 0 12px 0;
            position: relative;
            color-interpolation-filters: sRGB;
        }
        .close {
            position: absolute;
            right: 10px;
            top: 0px; 
            color: #fff;
            font-size: 35px;
            font-family: Arial Black;
            grid-area: close;
            justify-self: end;
            align-self: start;
        }
        .close:hover,.close:focus {
            color: red;
            cursor: pointer;
        }
        
        
        .is-showing{
            display: block;
            left: 50%;
            transform: translateX(-50%);
        }
        #booking-form{
            width: 100%;
            height: 100%;
            margin: 40 auto;
            border-radius: 30px;
        }
        /*HANDWRITTING*/
        
        
        pp    {
         font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        }
           Slides {
               font-family: 'Satisfy', cursive;
           }
           .xop-boxes {
            font-family: 'Pacifico', cursive;
           }
        
        
        
        
        /* marekebisho ya pili*/
        
            h22  {
                font-family: 'Concert One', cursive;
           }
           h33  {
            font-family: 'Poiret One', cursive;
           }
        
           h11 {
        font-family: 'Concert One', cursive;
            }
        
        
        
        
        
            .form-head {
                height: 20px;
                display: flex;
                justify-content: center;
                align-items: center;
                }
        
        
        
                /* marekebisho ya kwanza*/
            spanK {
                display: block;
                height: 12px;
                width: 12px;
                margin: 5px;
                border-radius: 50%;
                background: rgba(192,192,192,0.45);
               } 
                .is-active {
                  background: rgba(0,0,0,0.4);
                  background: rgb(82, 228, 15);
                }
        
        
        
        .form-heading{
            text-align: center;
            color: rgb(233, 136, 8);
        }
        .form-heading-words{
            padding: 0 20px;
            text-align: justify;
            font-size: 20px;
            color: #aaa;
        }
        .bookingprocess{
            font-weight: bold;
            font-size: 20px;
        }
        #icons img{
            height: 40px;
            margin-bottom: 10px;
        }
        
        #icons .container{
            width: 245px;
            margin: 0 auto;
            display: flex;
            flex-direction: row;
        }
        .containerr p{
            font-weight: bold;
            text-align: right;
            margin-top: 5px;
        }
        .start-booking-btn{
            background: rgb(24, 11, 1);
            border: 2px solid rgb(110, 60, 2);
           
          
            border-radius:10px;
            width: 230px;
            height: 40px;
            color: #f5f0f0;
            font-weight: bold;
            font-family: calibri;
            font-weight: bold;
            text-transform: uppercase;
            position: static;
            margin-bottom: 20px;
            
        }
        .start-booking-btn:hover{
            background: rgb(110, 60, 2);
            border: 1px solid rgb(80, 228, 12);
            color: rgb(244, 245, 244);
            cursor: pointer;
            
        }
        .div-for-btn{
            margin: 15px auto 0 ;
            text-align: center;
        }
        #phaseplus{
            display: none;
            text-align: center;
            position: relative;
        }
        #phaseplus h2{
            color: #555;
        }
        #phaseplus p{
            color: #aaa;
            padding: 0 20px;
        }
        .pack-dates{
            display: flex;
            flex-direction: row;
            justify-content: center;
            position: relative;
        }
        .pack-dates *{
            margin: 0 20px;
        }
        .datess {
            position: relative;
        }
        .radio {
            cursor: pointer;
        }
        #phase-plus a{
            color: rgb(91, 247, 19);
            text-decoration: underline;
        }
        #phase1 h2{
            text-align: center;
            color: rgb(4, 68, 31);
            letter-spacing: 1px;
        }
        #phase1 p{
            text-align: center;
            color:rgb(247, 246, 244);
            font-size: 20px;
            margin-top: -20px;
        }
        /*PHASE INPUTS*/
        #booking-form .inputBox {
            position: relative;
            text-align: center;
        }
        #booking-form .inputBox input {
            width: 100%;
            padding: 10px 0;
            font-size: 16px;
            color:rgb(247, 242, 242);
            margin-bottom: 20px;
            border:none;
            border-bottom: 1px solid rgb(81,122,62);
            outline: none;
            background: transparent;
        }
        #booking-form .inputBox label {
            position: absolute;
            top:0;
            left:0;
            padding: 10px 0;
            font-size:16px;
            color: rgb(12, 0, 0);
            pointer-events: none;
            font-family: 'Concert One', cursive;
            letter-spacing: 1px;
            transition: 1s;
        }
        #booking-form .inputBox input:focus ~ label,
        #booking-form .inputBox input:valid ~ label {
            top: -18px;
            left: 0;
            color: rgb(93, 235, 27);
            font-size: 12px;
        }
        .input{
            padding: 0 10%;
        }
        #label-selector{
            font-family: 'Concert One', cursive;
            color: rgb(87, 240, 16);
            font-size: 12px;
            letter-spacing: 1px;
        }
        select {
            background: transparent;
            border-radius: 10px;
            height: 30px;
            min-width: 150px;
            color: #aaa;
            font-family: 'Concert one', cursive;
            outline: none;
            margin-top: 5px;
        }
        .other-socialmedia{
            display: flex;
            flex-direction: row;
        }
        input{
            font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
            font-size: 20px;
        }
        /*other social media*/
        .other-socialmedia .inputBox {
            position: relative;
            text-align: center;
        }
        .other-socialmedia .inputBox input {
            width: 50%;
            padding: 10px 0;
            font-size: 16px;
            color:#aaa;
            margin-bottom: 30px;
            border:none;
            border-bottom: 1px solid rgb(81,122,62);
            outline: none;
            background: transparent;
        }
        .other-socialmedia .inputBox label {
            position: absolute;
            top:0;
            left:0;
            padding: 10px 0;
            font-size:16px;
            color: #555;
            pointer-events: none;
            font-family: 'Concert One', cursive;
            letter-spacing: 1px;
            transition: 1s;
        }
        .other-socialmedia .inputBox input:focus ~ label,
        .other-socialmedia .inputBox input:valid ~ label {
            top: -18px;
            left: 0;
            color: rgb(89, 240, 18);
            font-size: 12px;
        }
        #othersm1{
            margin-right: 10px;
        }
        #othersm3{
            margin-right: 10px;
        }
        #othersm2{
            margin-right: 10px;
        }
        #othersm4{
            margin-right: 10px;
        }
        #label-selector{
            margin-top: 20px;
        }
        #secondp {
            font-size:16px;
            color: #1c1c2c;
        }
        #phase2{
            display: none;
        }
        #phase22{
            display: none;
        }
        #phase2{
            display: none;
        }
        #phase2{
            display: none;
        }
        #phase3{
            display: none;
        }
        #phase3{
            display: none;
        }
        #phase3{
            display: none;
        }
        #phase3{
            display: none;
        }
        
        #phase4{
            display:none;
        }
        #phase4{
            display:none;
        }
        #phase4{
            display:none;
        }
        #phase4{
            display:none;
        }
        select{
            margin-bottom: 5px;
        }
        #phase4 h2{
            text-align: center;
            color: rgb(85, 85, 85);
        }
        #phase4 p{
            margin-top: -20px;
            text-align: center;
            color: rgb(170, 170, 170);
        }
        .icon {
            font-size: 16px;
            font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
            color: #aaa;
            font-weight: bold;
        }
        @media (max-width: 1024px) {
            .NFC-popup{
                margin: 20px auto;
            }
        }
        @media (max-width:576px){
            .NFC-popup{
                width: 99%;
            }
            #wrapper-php{
                width: 99%;
            }
            .NFC-popup {
                margin: 5px auto;
            }
        }
        @media (max-width: 520px){
            .pack-dates *{
                margin: 0 10px;
            }
        }
        @media (max-width: 400px){
        .pack-dates *{
            margin: 0;
        }
        }
        
        #phase2 h2{
            text-align: center;
            color: #555;   
        }
        #phase2 p{
            text-align: center;
            margin-top: -20px;
            font-size: 20px;
            color: #aaa;
        }
        #phase2 h2{
            text-align: center;
            color: #555;   
        }
        #phase2 p{
            text-align: center;
            margin-top: -20px;
            font-size: 20px;
            color: #aaa;
        }
        #phase2 h2{
            text-align: center;
            color: #555;   
        }
        #phase2 p{
            text-align: center;
            margin-top: -20px;
            font-size: 20px;
            color: #aaa;
        }
        #phase2 h2{
            text-align: center;
            color: rgb(233, 136, 8);  
        }
        #phase2 p{
            text-align: center;
            margin-top: -20px;
            font-size: 20px;
            color: rgb(27, 8, 1);
        }
        #phase3 h2{
            text-align: center; 
            color: rgb(85, 85, 85);  
        }
        #phase3 p{
            text-align: center;
            margin-top: -20px;
            font-size: 20px;
            color: #aaa;
        }
        #phase3 h2{
            text-align: center; 
            color: #555;  
        }
        #phase3 p{
            text-align: center;
            margin-top: -20px;
            font-size: 20px;
            color: #aaa;
        }
        #phase3 h2{
            text-align: center; 
            color: #555;  
        }
        #phase3 p{
            text-align: center;
            margin-top: -20px;
            font-size: 20px;
            color: #aaa;
        }
        #phase3 h2{
            text-align: center; 
            color: #555;  
        }
        #phase3 p{
            text-align: center;
            margin-top: -20px;
            font-size: 20px;
            color: #aaa;
        }
        #phase4 h2{
            text-align: center; 
            color: #555;  
        }
        #phase4 p{
            text-align: center;
            margin-top: -20px;
            font-size: 20px;
            color: #aaa;
        }
        #phase4 h2{
            text-align: center; 
            color: rgb(233, 136, 8);  
         
        }
        #phase4 p{
            text-align: center;
            margin-top: -20px;
            font-size: 20px;
            color: #aaa;
        }
        #phase4 h2{
            text-align: center; 
            color: #555;  
        }
        #phase4 p{
            text-align: center;
            margin-top: -20px;
            font-size: 20px;
            color: #aaa;
        }
        #phase4 h2{
            text-align: center; 
            color: rgb(233, 136, 8);  
        }
        
        #phase4 p{
            text-align: center;
            margin-top: -20px;
            font-size: 20px;
            color: #aaa;
        }
    
    
    
          