/*-----------------------------------------------------------------------------------

    Template Name: Trails - Adventure Tours & Travel HTML Template
    Author: Theme Canvas
    Description: Trails - Adventure Tours & Travel HTML Template
    Version: 1.0

-----------------------------------------------------------------------------------


/************ TABLE OF CONTENTS ***************

	01. Template Default CSS
	02. background CSS
	03. buttons css

**********************************************/
/**----------------------------------------
START: Template Default CSS
----------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Jost:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
:root {
  --ts-ff-body: 'Inter', sans-serif;
  --ts-ff-heading: 'Ubuntu', serif;
  --ts-ff-p: 'Inter', sans-serif;
  --ts-fw-normal: normal;
  --ts-fw-thin: 100;
  --ts-fw-elight: 200;
  --ts-fw-light: 300;
  --ts-fw-regular: 400;
  --ts-fw-medium: 500;
  --ts-fw-sbold: 600;
  --ts-fw-bold: 700;
  --ts-fw-ebold: 800;
  --ts-fw-black: 900;
  --ts-fs-body: 16px;
  --ts-fs-p: 16px;
  --ts-fs-h1: 65px;
  --ts-fs-h2: 48px;
  --ts-fs-h3: 22px;
  --ts-fs-h4: 20px;
  --ts-fs-h5: 18px;
  --ts-fs-h6: 14px;
  --ts-color-common-white: #ffffff;
  --ts-color-common-black: #000000;
  --ts-color-heading-primary: #1C231F;
  --ts-color-text-body: #747474;
  --ts-color-theme-primary: #253ecc;
  --ts-color-bg-1: #11151C;
  --ts-color-grey-1: #EAEAEA;
  --ts-color-border-1: #E9E9E9;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/**
	Typography CSS
*/
body {
  background-color: var(--ts-color-common-white);
  font-family: var(--ts-ff-body);
  font-size: 16px;
  line-height: 1.625;
  font-weight: normal;
  color: var(--ts-color-text-body);
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

a,
a:hover {
  transition: all 0.3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ts-ff-heading);
  color: var(--ts-color-heading-primary);
  margin-top: 0px;
  font-weight: 600;
  line-height: 1.2;
  transition: all 0.3s ease-in-out 0s;
}

h1 {
  font-size: var(--ts-fs-h1);
}

h2 {
  font-size: var(--ts-fs-h2);
}

h3 {
  font-size: var(--ts-fs-h3);
}

h4 {
  font-size: var(--ts-fs-h4);
}

h5 {
  font-size: var(--ts-fs-h5);
}

h6 {
  font-size: var(--ts-fs-h6);
}

ul {
  margin: 0px;
  padding: 0px;
}

p {
  font-family: var(--ts-ff-p);
  font-size: 16px;
  font-weight: 400;
  color: var(--ts-color-text-body);
  margin-bottom: 15px;
  line-height: 28px;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--ts-color-theme-primary);
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
  border: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input {
  outline: none;
}

input[type=color] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

ul {
  display: block;
  padding: 0;
  margin: 0;
}

*::-moz-selection {
  background: var(--ts-color-common-black);
  color: var(--ts-color-common-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--ts-color-common-black);
  color: var(--ts-color-common-white);
  text-shadow: none;
}

::selection {
  background: var(--ts-color-common-black);
  color: var(--ts-color-common-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--ts-color-common-black);
  font-size: var(--ts-fs-body);
  opacity: 1;
}

*::placeholder {
  color: var(--ts-color-common-black);
  font-size: var(--ts-fs-body);
  opacity: 1;
}

/**
    Common Classes CSS
*/
.w-img img {
  width: 100%;
}

.m-img img {
  max-width: 100%;
}

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.z-index-1 {
  z-index: 1;
}

.z-index-11 {
  z-index: 11;
}

.overflow-y-visible {
  overflow-x: hidden;
  overflow-y: visible;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.include-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.b-radius {
  border-radius: 6px;
}

.overflow-x {
  overflow-x: clip;
}

.bg-grey {
  background-color: var(--ts-color-grey-1);
}

.bg-dark-1 {
  background-color: var(--ts-color-bg-1);
}

.container {
  max-width: 1355px;
}

.bd-bottom {
  border-bottom: 1px solid var(--ts-color-border-1);
}

.bg-color-top {
  background-color: #171719;
  width: 100%;
  height: 400px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
}

.bg-color-bottom {
  background-color: #171719;
  width: 100%;
  height: 400px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -2;
}

.overflow-h {
  overflow: hidden;
}

.section-heading {
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .section-heading {
    margin-bottom: 40px;
  }
}
.section-heading .sub-heading {
  background: rgba(28, 168, 203, 0.1);
  font-family: var(--ts-ff-heading);
  color: var(--ts-color-theme-primary);
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 15px;
  text-transform: inherit;
  position: relative;
  overflow: hidden;
  border-radius: 7px;
  padding: 11px 25px;
  line-height: 1;
}
@media only screen and (max-width: 992px) {
  .section-heading .sub-heading {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .section-heading .sub-heading {
    font-size: 16px;
  }
}
.section-heading .section-title {
  font-size: 55px;
  line-height: 1.2;
  font-weight: 600;
  display: block;
  margin-bottom: 0;
  text-transform: inherit;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .section-heading .section-title {
    font-size: 40px;
  }
  .section-heading .section-title br {
    display: none;
  }
}
@media only screen and (max-width: 992px) {
  .section-heading .section-title {
    font-size: 32px;
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .section-heading .section-title {
    font-size: 32px;
  }
}
.section-heading.white-content .sub-heading {
  color: var(--ts-color-theme-primary);
}
.section-heading.white-content p,
.section-heading.white-content .section-title {
  color: var(--ts-color-common-white);
}
.section-heading.heading-2 {
  margin-bottom: 30px;
}
.section-heading.heading-2 .section-title {
  margin-bottom: 25px;
}
@media (max-width: 1199px) {
  .section-heading.heading-2 .section-title {
    margin: 0;
    margin-bottom: 25px;
  }
}

.heading-space {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 25px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 992px) {
  .heading-space {
    margin-bottom: 40px;
  }
}

.t-up {
  text-transform: uppercase;
}

.white-content h1,
.white-content h2,
.white-content h3,
.white-content h4,
.white-content h5,
.white-content h6,
.white-content p,
.white-content li,
.white-content span {
  color: var(--ts-color-common-white);
}

.img-reveal {
  position: relative;
  overflow: hidden;
  visibility: hidden;
  z-index: 1;
}
.img-reveal .img-overlay {
  background-color: var(--ts-color-theme-primary);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.img-reveal img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

.anim-text {
  overflow: hidden;
}

/* Site Preloader */
.container-preloader {
  align-items: center;
  cursor: none;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 900;
}

.container-preloader .preloader-anim {
  position: absolute;
  z-index: 100;
}

.container-preloader .preloader-anim .spinner {
  animation: t-spinner 1s infinite linear;
  border-radius: 50%;
  height: 9em;
  width: 9em;
  border: 10px solid var(--primary);
  border-top-color: var(--white);
  margin: 0 auto 3.5em auto;
}

@media only screen and (max-width: 767px) {
  .container-preloader .preloader-anim .spinner {
    margin: 0 auto 0.2em auto;
  }
}
.container-preloader .preloader-anim .txt-loading {
  font: bold 5em "Montserrat", sans-serif;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.container-preloader .preloader-anim .txt-loading .characters {
  color: var(--ts-color-common-white);
  position: relative;
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  .container-preloader .preloader-anim .txt-loading .characters {
    font-size: 50px;
  }
}
.container-preloader .preloader-anim .txt-loading .characters:before {
  color: var(--ts-color-theme-primary);
  content: attr(data-text);
  animation: t-characters 4s infinite;
  left: 0;
  top: 0;
  opacity: 0;
  position: absolute;
  transform: rotateY(-90deg);
}

.container-preloader .preloader-anim .txt-loading .characters:nth-child(2):before {
  animation-delay: 0.2s;
}

.container-preloader .preloader-anim .txt-loading .characters:nth-child(3):before {
  animation-delay: 0.4s;
}

.container-preloader .preloader-anim .txt-loading .characters:nth-child(4):before {
  animation-delay: 0.6s;
}

.container-preloader .preloader-anim .txt-loading .characters:nth-child(5):before {
  animation-delay: 0.8s;
}

.container-preloader .preloader-anim .txt-loading .characters:nth-child(6):before {
  animation-delay: 1s;
}

.container-preloader .preloader-area {
  background-color: var(--ts-color-common-white);
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}

.container-preloader .preloader-area.area-left {
  left: 0;
}

.container-preloader .preloader-area.area-right {
  right: 0;
}

.loaded .preloader-anim {
  opacity: 0;
  transition: 0.3s ease-out;
}

.loaded .preloader-area.area-left {
  transform: translateX(-101%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
}

.loaded .preloader-area.area-right {
  transform: translateX(101%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
}

.loading {
  left: 50%;
  top: 50%;
  font-size: 100px;
  font-family: var(--ts-ff-heading);
  font-weight: bold;
  text-transform: uppercase;
  position: absolute;
  overflow: hidden;
  transform: translate(-50%, -60%);
}

@media only screen and (max-width: 767px) {
  .loading {
    font-size: 50px;
  }
}
.loading:before {
  color: var(--ts-color-grey-1);
  content: attr(data-loading-text);
}

.loading:after {
  top: 0;
  left: 0;
  width: 0;
  opacity: 1;
  color: var(--ts-color-theme-primary);
  overflow: hidden;
  position: absolute;
  content: attr(data-loading-text);
  animation: loading 6s infinite;
}

@keyframes loading {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
/*  Custom Cursor */
@media (min-width: 992px) {
  .mt-cursor {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: fixed;
    left: 10px;
    top: 10px;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    pointer-events: none;
    visibility: hidden;
    z-index: 10000;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .mt-cursor:before {
    background: var(--ts-color-theme-primary);
    opacity: 1;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s ease;
  }
  .mt-cursor.cursor-grow:before {
    opacity: 0.7;
    transform: scale(1.5);
    transition: all 0.3s ease;
  }
  .mt-cursor.hide {
    opacity: 0;
    transition: opacity 0.3s ease;
    transition-delay: 0.4s;
  }
  .mt-cursor.hide .inner {
    transform: scale(0.1);
    transition: transform 0.3s ease;
  }
}
.sticky-widget {
  position: sticky;
  top: 170px;
}

@media only screen and (max-width: 767px) {
  br {
    display: none;
  }
}
/*-- Margin Top --*/
.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-105 {
  margin-top: 105px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-115 {
  margin-top: 115px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-125 {
  margin-top: 125px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-135 {
  margin-top: 135px;
}

.mt-140 {
  margin-top: 140px;
}

.mt-145 {
  margin-top: 145px;
}

.mt-150 {
  margin-top: 150px;
}

.mt-155 {
  margin-top: 155px;
}

.mt-160 {
  margin-top: 160px;
}

.mt-165 {
  margin-top: 165px;
}

.mt-170 {
  margin-top: 170px;
}

.mt-175 {
  margin-top: 175px;
}

.mt-180 {
  margin-top: 180px;
}

.mt-185 {
  margin-top: 185px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-195 {
  margin-top: 195px;
}

.mt-200 {
  margin-top: 200px;
}

/*-- Margin Bottom --*/
.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-105 {
  margin-bottom: 105px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-115 {
  margin-bottom: 115px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-125 {
  margin-bottom: 125px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-135 {
  margin-bottom: 135px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-145 {
  margin-bottom: 145px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-155 {
  margin-bottom: 155px;
}

.mb-160 {
  margin-bottom: 160px;
}

.mb-165 {
  margin-bottom: 165px;
}

.mb-170 {
  margin-bottom: 170px;
}

.mb-175 {
  margin-bottom: 175px;
}

.mb-180 {
  margin-bottom: 180px;
}

.mb-185 {
  margin-bottom: 185px;
}

.mb-190 {
  margin-bottom: 190px;
}

.mb-195 {
  margin-bottom: 195px;
}

.mb-200 {
  margin-bottom: 200px;
}

/*-- Margin Left --*/
.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.ml-105 {
  margin-left: 105px;
}

.ml-110 {
  margin-left: 110px;
}

.ml-115 {
  margin-left: 115px;
}

.ml-120 {
  margin-left: 120px;
}

.ml-125 {
  margin-left: 125px;
}

.ml-130 {
  margin-left: 130px;
}

.ml-135 {
  margin-left: 135px;
}

.ml-140 {
  margin-left: 140px;
}

.ml-145 {
  margin-left: 145px;
}

.ml-150 {
  margin-left: 150px;
}

.ml-155 {
  margin-left: 155px;
}

.ml-160 {
  margin-left: 160px;
}

.ml-165 {
  margin-left: 165px;
}

.ml-170 {
  margin-left: 170px;
}

.ml-175 {
  margin-left: 175px;
}

.ml-180 {
  margin-left: 180px;
}

.ml-185 {
  margin-left: 185px;
}

.ml-190 {
  margin-left: 190px;
}

.ml-195 {
  margin-left: 195px;
}

.ml-200 {
  margin-left: 200px;
}

/*-- Margin Right --*/
.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.mr-105 {
  margin-right: 105px;
}

.mr-110 {
  margin-right: 110px;
}

.mr-115 {
  margin-right: 115px;
}

.mr-120 {
  margin-right: 120px;
}

.mr-125 {
  margin-right: 125px;
}

.mr-130 {
  margin-right: 130px;
}

.mr-135 {
  margin-right: 135px;
}

.mr-140 {
  margin-right: 140px;
}

.mr-145 {
  margin-right: 145px;
}

.mr-150 {
  margin-right: 150px;
}

.mr-155 {
  margin-right: 155px;
}

.mr-160 {
  margin-right: 160px;
}

.mr-165 {
  margin-right: 165px;
}

.mr-170 {
  margin-right: 170px;
}

.mr-175 {
  margin-right: 175px;
}

.mr-180 {
  margin-right: 180px;
}

.mr-185 {
  margin-right: 185px;
}

.mr-190 {
  margin-right: 190px;
}

.mr-195 {
  margin-right: 195px;
}

.mr-200 {
  margin-right: 200px;
}

/*-- Padding Top --*/
.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-105 {
  padding-top: 105px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-125 {
  padding-top: 125px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-135 {
  padding-top: 135px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-155 {
  padding-top: 155px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-165 {
  padding-top: 165px;
}

.pt-170 {
  padding-top: 170px;
}

.pt-175 {
  padding-top: 175px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-185 {
  padding-top: 185px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-195 {
  padding-top: 195px;
}

.pt-200 {
  padding-top: 200px;
}

/*-- Padding Bottom --*/
.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-135 {
  padding-bottom: 135px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-155 {
  padding-bottom: 155px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-165 {
  padding-bottom: 165px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-175 {
  padding-bottom: 175px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-185 {
  padding-bottom: 185px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-195 {
  padding-bottom: 195px;
}

.pb-200 {
  padding-bottom: 200px;
}

/*-- Padding Left --*/
.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

.pl-105 {
  padding-left: 105px;
}

.pl-110 {
  padding-left: 110px;
}

.pl-115 {
  padding-left: 115px;
}

.pl-120 {
  padding-left: 120px;
}

.pl-125 {
  padding-left: 125px;
}

.pl-130 {
  padding-left: 130px;
}

.pl-135 {
  padding-left: 135px;
}

.pl-140 {
  padding-left: 140px;
}

.pl-145 {
  padding-left: 145px;
}

.pl-150 {
  padding-left: 150px;
}

.pl-155 {
  padding-left: 155px;
}

.pl-160 {
  padding-left: 160px;
}

.pl-165 {
  padding-left: 165px;
}

.pl-170 {
  padding-left: 170px;
}

.pl-175 {
  padding-left: 175px;
}

.pl-180 {
  padding-left: 180px;
}

.pl-185 {
  padding-left: 185px;
}

.pl-190 {
  padding-left: 190px;
}

.pl-195 {
  padding-left: 195px;
}

.pl-200 {
  padding-left: 200px;
}

/*-- Padding Right --*/
.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.pr-105 {
  padding-right: 105px;
}

.pr-110 {
  padding-right: 110px;
}

.pr-115 {
  padding-right: 115px;
}

.pr-120 {
  padding-right: 120px;
}

.pr-125 {
  padding-right: 125px;
}

.pr-130 {
  padding-right: 130px;
}

.pr-135 {
  padding-right: 135px;
}

.pr-140 {
  padding-right: 140px;
}

.pr-145 {
  padding-right: 145px;
}

.pr-150 {
  padding-right: 150px;
}

.pr-155 {
  padding-right: 155px;
}

.pr-160 {
  padding-right: 160px;
}

.pr-165 {
  padding-right: 165px;
}

.pr-170 {
  padding-right: 170px;
}

.pr-175 {
  padding-right: 175px;
}

.pr-180 {
  padding-right: 180px;
}

.pr-185 {
  padding-right: 185px;
}

.pr-190 {
  padding-right: 190px;
}

.pr-195 {
  padding-right: 195px;
}

.pr-200 {
  padding-right: 200px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.pt-180 {
  padding-top: 180px;
}
@media only screen and (max-width: 992px) {
  .pt-180 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-180 {
    padding-top: 50px;
  }
}

.pt-130 {
  padding-top: 130px;
}
@media only screen and (max-width: 992px) {
  .pt-130 {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-130 {
    padding-top: 60px;
  }
}

.pt-120 {
  padding-top: 120px;
}
@media only screen and (max-width: 992px) {
  .pt-120 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-120 {
    padding-top: 60px;
  }
}

.pt-90 {
  padding-top: 90px;
}
@media only screen and (max-width: 992px) {
  .pt-90 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-90 {
    padding-top: 60px;
  }
}

.pt-80 {
  padding-top: 80px;
}
@media only screen and (max-width: 992px) {
  .pt-80 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-80 {
    padding-top: 60px;
  }
}

.pt-70 {
  padding-top: 70px;
}
@media only screen and (max-width: 992px) {
  .pt-70 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-70 {
    padding-top: 60px;
  }
}

.pb-180 {
  padding-bottom: 180px;
}
@media only screen and (max-width: 992px) {
  .pb-180 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-180 {
    padding-bottom: 60px;
  }
}

.pb-130 {
  padding-bottom: 130px;
}
@media only screen and (max-width: 992px) {
  .pb-130 {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-130 {
    padding-bottom: 60px;
  }
}

.pb-120 {
  padding-bottom: 120px;
}
@media only screen and (max-width: 992px) {
  .pb-120 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-120 {
    padding-bottom: 60px;
  }
}

.pb-90 {
  padding-bottom: 90px;
}
@media only screen and (max-width: 992px) {
  .pb-90 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-90 {
    padding-bottom: 60px;
  }
}

.pb-80 {
  padding-bottom: 80px;
}
@media only screen and (max-width: 992px) {
  .pb-80 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-80 {
    padding-bottom: 60px;
  }
}

.pb-70 {
  padding-bottom: 70px;
}
@media only screen and (max-width: 992px) {
  .pb-70 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-70 {
    padding-bottom: 60px;
  }
}

@media only screen and (max-width: 992px) {
  .md-pb-30 {
    padding-bottom: 30px;
  }
}

@media only screen and (max-width: 992px) {
  .md-pb-40 {
    padding-bottom: 40px;
  }
}

@media only screen and (max-width: 992px) {
  .md-pb-50 {
    padding-bottom: 50px;
  }
}

/* Scroll To Top */
#scroll-percentage {
  position: absolute;
}

#scroll-percentage {
  height: 60px;
  width: 60px;
  background-color: var(--ts-color-common-white);
  border-radius: 50%;
  position: fixed;
  bottom: 40px;
  right: 50px;
  transform: scale(0);
  display: grid;
  place-items: center;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  z-index: 100;
}
@media only screen and (max-width: 992px) {
  #scroll-percentage {
    right: 30px;
  }
}
@media only screen and (max-width: 767px) {
  #scroll-percentage {
    bottom: 20px;
    right: 20px;
  }
}

#scroll-percentage.active {
  bottom: 50px;
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
  transition: 0.3s;
}
@media only screen and (max-width: 992px) {
  #scroll-percentage.active {
    bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  #scroll-percentage.active {
    bottom: 20px;
  }
}

#scroll-percentage-value {
  height: calc(100% - 6px);
  width: calc(100% - 6px);
  background-color: var(--ts-color-common-white);
  color: var(--ts-color-theme-primary);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.1);
}

#scroll-percentage-value i {
  font-size: 20px;
}
@keyframes scrollToTop {
  0% {
    transform: translate3d(0, 80%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
/** Buttons CSS */
.ts-primary-btn {
  background-color: var(--ts-color-theme-primary);
  font-family: "Jost", sans-serif;
  color: var(--ts-color-common-white);
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  padding: 20px 35px;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  text-transform: capitalize;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .ts-primary-btn {
    padding: 20px 30px;
  }
}
.ts-primary-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  transform-origin: right center;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.ts-primary-btn i {
  margin-left: 7px;
  font-size: 12px;
  transition: all 0.3s ease-in-out;
  margin-top: 3.5px;
}
.ts-primary-btn:hover {
  color: var(--ts-color-common-white);
}
.ts-primary-btn:hover:before {
  transform-origin: left center;
  transform: scale(1, 1);
}
.ts-primary-btn:focus {
  color: var(--ts-color-common-white);
}
.ts-primary-btn.transparent {
  background-color: transparent;
  border: 1px solid var(--ts-color-theme-primary);
  color: var(--ts-color-heading-primary);
}
.ts-primary-btn.transparent:hover {
  color: var(--ts-color-common-white);
}
.ts-primary-btn.transparent:before {
  background-color: var(--ts-color-theme-primary);
}

/**----------------------------------------
START: Header CSS
----------------------------------------*/
.header {
  background-color: rgba(234, 234, 234, 0.45);
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 992px) {
  .header {
    position: relative;
    top: 0;
    height: auto !important;
  }
}
.header .header-container {
  max-width: 1630px;
}
.header .top-bar {
  background-color: #222;
}
@media only screen and (max-width: 767px) {
  .header .top-bar {
    display: none;
  }
}
.header .top-bar .top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 30px;
       column-gap: 30px;
  flex-wrap: wrap;
  row-gap: 20px;
}
@media only screen and (max-width: 992px) {
  .header .top-bar .top-bar-inner {
    justify-content: center;
  }
}
.header .top-bar .top-bar-inner .top-bar-left {
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.header .top-bar .top-bar-inner .top-bar-left .top-bar-social {
  background-color: var(--ts-color-theme-primary);
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
}
.header .top-bar .top-bar-inner .top-bar-left .top-bar-social ul {
  display: flex;
  align-items: center;
  list-style: none;
}
.header .top-bar .top-bar-inner .top-bar-left .top-bar-social ul li {
  color: var(--ts-color-common-white);
  font-size: 14px;
}
.header .top-bar .top-bar-inner .top-bar-left .top-bar-social ul li a {
  color: var(--ts-color-common-white);
}
.header .top-bar .top-bar-inner .top-bar-left .top-bar-social ul li:not(:last-of-type) {
  margin-right: 20px;
}
.header .top-bar .top-bar-inner .top-bar-left .top-left-list {
  display: flex;
  align-items: center;
  list-style: none;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.header .top-bar .top-bar-inner .top-bar-left .top-left-list .country-list {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.header .top-bar .top-bar-inner .top-bar-left .top-left-list .ddl-select {
  background-color: transparent;
  padding: 0;
  padding-right: 25px;
  border: none;
  height: auto;
  color: var(--ts-color-common-white);
}
.header .top-bar .top-bar-inner .top-bar-left .top-left-list .ddl-select:after {
  border-color: var(--ts-color-common-white);
  height: 8px;
  width: 8px;
  margin-top: -5px;
}
.header .top-bar .top-bar-inner .top-bar-left .top-left-list .ddl-select ul li {
  color: var(--ts-color-heading-primary);
}
@media only screen and (max-width: 992px) {
  .header .top-bar .top-bar-inner .top-bar-right {
    display: none;
  }
}
.header .top-bar .top-bar-inner .top-bar-right .top-bar-list li {
  font-family: "jost", sans-serif;
  font-size: 16px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  color: var(--ts-color-common-white);
}
.header .top-bar .top-bar-inner .top-bar-right .top-bar-list li:not(:last-of-type) {
  margin-right: 30px;
  padding-right: 30px;
  border-right: 1px solid rgba(104, 94, 94, 0.69);
}
@media (max-width: 1199px) {
  .header .top-bar .top-bar-inner .top-bar-right .top-bar-list li:not(:last-of-type) {
    padding-right: 0px;
    margin-right: 10px;
    border: none;
  }
}
.header .top-bar .top-bar-inner .top-bar-right .top-bar-list li i {
  color: var(--ts-color-theme-primary);
  font-size: 14px;
}
.header .primary-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner {
    padding: 20px 0;
  }
}
.header .primary-header-inner .header-logo img {
  max-width: 170px;
}
.header .primary-header-inner .header-logo .logo-light {
  display: none;
}
@media (max-width: 1399px) {
  .header .primary-header-inner .header-logo img {
    max-width: 150px;
  }
}
@media (max-width: 1199px) {
  .header .primary-header-inner .header-logo img {
    max-width: 150px;
  }
}
.header .primary-header-inner .header-menu-wrap {
  display: flex !important;
  align-items: center;
  margin-right: 35px;
}
.header .primary-header-inner .header-menu-wrap ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner .header-menu-wrap ul {
    display: none;
  }
}
.header .primary-header-inner .header-menu-wrap ul li {
  display: inline-block;
  position: relative;
  margin: 0 25px;
}
@media (max-width: 1399px) {
  .header .primary-header-inner .header-menu-wrap ul li {
    margin: 0 15px;
  }
}
@media (max-width: 1199px) {
  .header .primary-header-inner .header-menu-wrap ul li {
    margin: 0 10px;
  }
}
.header .primary-header-inner .header-menu-wrap ul li:first-child {
  margin-left: 0;
}
.header .primary-header-inner .header-menu-wrap ul li:last-child {
  margin-right: 0;
}
.header .primary-header-inner .header-menu-wrap ul li a {
  font-family: "Jost", sans-serif;
  color: var(--ts-color-heading-primary);
  display: block;
  font-size: 18px;
  padding: 35px 0;
  letter-spacing: 0px;
  font-weight: 400;
  position: relative;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  .header .primary-header-inner .header-menu-wrap ul li a {
    font-size: 16px;
  }
}
.header .primary-header-inner .header-menu-wrap ul li a:hover {
  color: var(--ts-color-theme-primary);
}
.header .primary-header-inner .header-menu-wrap ul li a i {
  font-size: 13px;
}
.header .primary-header-inner .header-menu-wrap ul li.active a {
  color: var(--ts-color-theme-primary);
}
.header .primary-header-inner .header-menu-wrap ul li.active ul li a {
  color: var(--ts-color-heading-primary);
}
.header .primary-header-inner .header-menu-wrap ul li.active ul li a:hover {
  color: var(--ts-color-heading-primary);
}
.header .primary-header-inner .header-menu-wrap ul li.active.menu-item-has-children:after {
  color: var(--ts-color-theme-primary);
}
.header .primary-header-inner .header-menu-wrap ul li ul {
  background-color: var(--ts-color-common-white);
  display: block;
  width: 220px;
  padding: 0;
  box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
  position: absolute;
  left: 0;
  top: 99.25px;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  transform: rotate3d(1, 0, 0, -90deg);
  transform-origin: 0 0;
  transition: all 0.6s ease;
}
.header .primary-header-inner .header-menu-wrap ul li:hover > ul {
  visibility: visible;
  transition: all 0.6s ease;
  opacity: 1;
  transform: none;
}
.header .primary-header-inner .header-menu-wrap ul li li {
  display: flex;
  justify-content: space-between;
  text-align: left;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.header .primary-header-inner .header-menu-wrap ul li li:hover {
  background-color: var(--ts-color-theme-primary);
}
.header .primary-header-inner .header-menu-wrap ul li li:hover a {
  color: var(--ts-color-common-black);
}
.header .primary-header-inner .header-menu-wrap ul li li a {
  background-color: var(--ts-color-common-white);
  display: block;
  height: auto;
  line-height: inherit;
  color: var(--ts-color-heading-primary);
  font-weight: 400;
  font-size: 16px;
  padding: 10px 0;
  padding-left: 20px;
  letter-spacing: 0px;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  position: relative;
}
.header .primary-header-inner .header-menu-wrap ul li li a:hover {
  color: var(--ts-color-theme-primary);
}
.header .primary-header-inner .header-menu-wrap ul li li a:before {
  background-color: var(--ts-color-theme-primary);
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}
.header .primary-header-inner .header-menu-wrap ul li li:first-child a {
  padding-top: 20px;
}
.header .primary-header-inner .header-menu-wrap ul li li:first-child a:before {
  top: 59%;
}
.header .primary-header-inner .header-menu-wrap ul li li:last-child {
  margin: 0;
  border-bottom: none;
}
.header .primary-header-inner .header-menu-wrap ul li li:last-child a {
  padding-bottom: 20px;
}
.header .primary-header-inner .header-menu-wrap ul li li:last-child a:before {
  top: 41%;
}
.header .primary-header-inner .header-menu-wrap ul li li.active {
  background-color: var(--ts-color-theme-primary);
}
.header .primary-header-inner .header-menu-wrap ul li li:hover a {
  padding-left: 40px;
}
.header .primary-header-inner .header-menu-wrap ul li li:hover a:before {
  width: 15px;
}
.header .primary-header-inner .header-menu-wrap ul li li ul {
  top: 0;
  left: 100%;
}
.header .primary-header-inner .header-menu-wrap ul li li ul li a {
  color: var(--ts-color-common-white);
}
.header .primary-header-inner .header-menu-wrap ul li li:hover a {
  color: var(--ts-color-theme-primary);
}
.header .primary-header-inner .header-menu-wrap ul li li:hover li a {
  color: var(--ts-color-heading-primary);
}
.header .primary-header-inner .header-menu-wrap ul li li:hover li a:hover {
  color: var(--ts-color-theme-primary);
}
.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children {
  position: relative;
}
.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children a {
  padding-right: 17px;
}
@media (max-width: 1199px) {
  .header .primary-header-inner .header-menu-wrap ul .menu-item-has-children a {
    padding-right: 13px;
  }
}
.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children ul li {
  margin: 0;
}
.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children ul li a {
  padding-right: 0;
}
.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children:after {
  background-image: none;
  font-family: "Font Awesome 6 Pro";
  font-size: 12px;
  font-weight: 700;
  content: "\f078";
  color: var(--ts-color-heading-primary);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children:hover:after {
  color: var(--ts-color-theme-primary);
}
.header .primary-header-inner .header-right-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 20px;
}
@media (max-width: 1399px) {
  .header .primary-header-inner .header-right-wrap {
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
}
@media (max-width: 1199px) {
  .header .primary-header-inner .header-right-wrap {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
.header .primary-header-inner .header-right-wrap .header-right {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .header .primary-header-inner .header-right-wrap .header-right .header-logo img {
    width: 90px;
  }
}
.header .primary-header-inner .header-right-wrap .header-right .search-icon {
  margin-right: 35px;
  line-height: 1;
}
.header .primary-header-inner .header-right-wrap .header-right .search-icon i {
  font-size: 24px;
  color: var(--ts-color-theme-primary);
}
.header .primary-header-inner .header-right-wrap .header-right .sidebar-trigger {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  border: 1px solid var(--ts-color-common-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner .header-right-wrap .header-right .sidebar-trigger {
    height: 60px;
    width: 60px;
  }
}
.header .primary-header-inner .header-right-wrap .header-right .sidebar-trigger:hover {
  border: 1px solid var(--ts-color-theme-primary);
}
.header .primary-header-inner .header-right-wrap .header-right .sidebar-trigger svg {
  color: var(--ts-color-common-white);
}
.header .primary-header-inner .header-right-wrap .header-right .search-icon {
  color: var(--ts-color-heading-primary);
  font-size: 20px;
  cursor: pointer;
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner .header-right-wrap .header-right .search-icon {
    margin-right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .header .primary-header-inner .header-right-wrap .header-right .search-icon {
    display: none;
  }
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner .header-right-wrap .header-right .header-btn {
    margin-right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .header .primary-header-inner .header-right-wrap .header-right .header-btn {
    display: none;
  }
}
.header .primary-header-inner .header-right-wrap .header-right .header-right-item {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner .header-right-wrap .header-right .header-right-item {
    line-height: 1;
  }
}
.header .primary-header-inner .header-right-wrap .header-right .header-right-item .mobile-side-menu-toggle {
  color: var(--ts-color-heading-primary);
  font-size: 30px;
  opacity: 0.9;
}
@media (min-width: 993px) {
  .header .primary-header-inner .header-right-wrap .header-right .header-right-item .mobile-side-menu-toggle {
    display: none;
  }
}
.header .primary-header-inner .header-right-wrap .header-right .header-right-item .search-icon {
  font-size: 16px;
  margin-left: 55px;
  cursor: pointer;
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner .header-right-wrap .header-right .header-right-item .search-icon {
    margin-right: 20px;
  }
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner .mean-push {
    display: none;
  }
}
.header.fixed {
  background-color: var(--ts-color-bg-1);
  top: 0;
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 992px) {
  .header .primary-header.fixed .primary-header-inner {
    padding: 20px 0;
  }
}

.header-2 {
  background-color: transparent;
  position: absolute;
  top: 0;
}
.header-2 .header-container {
  max-width: 1825px;
}
.header-2 .primary-header.fixed .primary-header-inner .header-menu-wrap ul li a {
  padding: 37px 0;
}
.header-2 .primary-header.fixed .primary-header-inner .header-menu-wrap ul li.menu-item-has-children a {
  padding-right: 17px;
}
.header-2 .primary-header.fixed .primary-header-inner .header-menu-wrap ul li ul li a {
  padding: 10px 0;
  padding-left: 20px;
}
.header-2 .primary-header.fixed .primary-header-inner .header-menu-wrap ul li ul li:hover a {
  padding-left: 40px;
}
.header-2 .primary-header.fixed .primary-header-inner .header-menu-wrap ul li ul li:first-child a {
  padding-top: 20px;
}
.header-2 .primary-header.fixed .primary-header-inner .header-menu-wrap ul li ul li:first-child a:before {
  top: 59%;
}
.header-2 .primary-header.fixed .primary-header-inner .header-menu-wrap ul li ul li:last-child {
  margin: 0;
  border-bottom: none;
}
.header-2 .primary-header.fixed .primary-header-inner .header-menu-wrap ul li ul li:last-child a {
  padding-bottom: 20px;
}
.header-2 .primary-header.fixed .primary-header-inner .header-menu-wrap ul li ul li:last-child a:before {
  top: 41%;
}
.header-2 .primary-header .primary-header-inner .header-menu-wrap ul li a {
  padding: 55px 0;
}
.header-2 .primary-header .primary-header-inner .header-menu-wrap ul li.menu-item-has-children a {
  padding-right: 17px;
}
.header-2 .primary-header .primary-header-inner .header-menu-wrap ul li ul li a {
  padding: 10px 0;
  padding-left: 20px;
}
.header-2 .primary-header .primary-header-inner .header-menu-wrap ul li ul li:hover a {
  padding-left: 40px;
}
.header-2 .primary-header .primary-header-inner .header-menu-wrap ul li ul li:first-child a {
  padding-top: 20px;
}
.header-2 .primary-header .primary-header-inner .header-menu-wrap ul li ul li:first-child a:before {
  top: 59%;
}
.header-2 .primary-header .primary-header-inner .header-menu-wrap ul li ul li:last-child {
  margin: 0;
  border-bottom: none;
}
.header-2 .primary-header .primary-header-inner .header-menu-wrap ul li ul li:last-child a {
  padding-bottom: 20px;
}
.header-2 .primary-header .primary-header-inner .header-menu-wrap ul li ul li:last-child a:before {
  top: 41%;
}

.header-3 {
  background-color: transparent;
  position: absolute;
  top: 0;
}
@media only screen and (max-width: 992px) {
  .header-3 {
    position: relative;
  }
}
.header-3 .header-container {
  max-width: 1580px;
}
@media only screen and (max-width: 992px) {
  .header-3 .primary-header {
    background-color: var(--ts-color-theme-primary);
  }
}
.header-3 .primary-header.fixed {
  background-color: var(--ts-color-theme-primary);
}
.header-3 .primary-header.fixed .primary-header-inner {
  padding: 0;
}
.header-3 .primary-header-inner {
  background-color: var(--ts-color-theme-primary);
  border-radius: 0 0 100px 100px;
  padding: 0 80px;
}
@media (max-width: 1199px) {
  .header-3 .primary-header-inner {
    padding: 0 50px;
  }
}
@media only screen and (max-width: 992px) {
  .header-3 .primary-header-inner {
    padding: 20px 0;
  }
}
.header-3 .primary-header-inner .header-menu-wrap {
  margin-right: 0;
}
.header-3 .primary-header-inner .header-menu-wrap ul li a {
  color: var(--ts-color-common-white);
  padding: 40.5px 0;
}
.header-3 .primary-header-inner .header-menu-wrap ul li a:hover {
  color: var(--ts-color-common-white);
}
.header-3 .primary-header-inner .header-menu-wrap ul li ul {
  top: 110px;
}
.header-3 .primary-header-inner .header-menu-wrap ul .menu-item-has-children:after {
  color: var(--ts-color-common-white);
}
.header-3 .primary-header-inner .header-menu-wrap ul .menu-item-has-children:hover:after {
  color: var(--ts-color-common-white);
}
.header-3 .primary-header-inner .header-right-wrap .header-right .header-btn {
  background-color: var(--ts-color-common-white);
  color: var(--ts-color-theme-primary);
}
.header-3 .primary-header-inner .header-right-wrap .header-right .header-btn:before {
  background-color: var(--ts-color-heading-primary);
}
.header-3 .primary-header-inner .header-right-wrap .header-right .header-btn:hover {
  color: var(--ts-color-common-white);
}
.header-3 .primary-header-inner .header-right-wrap .header-right .header-right-item .mobile-side-menu-toggle {
  color: var(--ts-color-common-white);
}

@media only screen and (max-width: 992px) {
  .mobile-side-menu .header-right {
    display: none !important;
  }
}
.side-menu-icon {
  position: absolute;
  right: 20px;
  top: 25px;
  z-index: 100;
  display: block;
  cursor: pointer;
}
@media only screen and (max-width: 992px) {
  .side-menu-icon {
    display: none;
  }
}

.side-menu-wrapper {
  position: fixed;
  overflow-y: auto;
  top: 0;
  right: 0;
  width: 850px;
  transform: translateX(850px);
  height: 100%;
  display: block;
  background-color: var(--ts-color-theme-bg-dark-deep);
  z-index: 100;
  padding: 40px;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
}
.side-menu-wrapper .side-menu-close {
  background-color: var(--ts-color-theme-primary);
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 18px;
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
}
.side-menu-wrapper.is-open {
  transform: translateX(0);
}
@media only screen and (max-width: 992px) {
  .side-menu-wrapper {
    display: none;
  }
}

.side-menu-content .side-menu-header {
  font-family: var(--ts-ff-body);
  font-size: 30px;
  max-width: 600px;
  line-height: 1.5;
  font-weight: 400;
  width: 100%;
  margin-bottom: 40px;
}
.side-menu-content .side-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
  margin-bottom: 30px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box {
  display: flex;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box img {
  max-width: 150px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info .side-menu-title {
  font-family: var(--ts-ff-body);
  font-size: 32px;
  font-weight: 500;
  color: var(--ts-color-theme-primary);
  line-height: 1;
  margin-bottom: 10px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info p {
  max-width: 400px;
  width: 100%;
}
.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info p:last-child {
  margin-bottom: 0;
}
.side-menu-content .side-menu-item .side-menu-arrow {
  font-size: 45px;
  color: var(--ts-color-theme-primary);
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
}
.side-menu-content .side-menu-item:hover {
  border: 1px solid var(--ts-color-border-6);
}
.side-menu-content .side-menu-item:hover .side-menu-arrow {
  transform: rotate(0deg);
}
.side-menu-content .side-menu-item:last-child {
  margin-bottom: 0;
}

.side-menu-overlay {
  background-color: rgba(0, 0, 0, 0.7);
  height: 100%;
  width: 0%;
  position: fixed;
  top: 0;
  z-index: 9;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 600ms ease;
  z-index: 10;
}
.side-menu-overlay.is-open {
  width: 100%;
  opacity: 0.5;
  visibility: visible;
  cursor: url(../img/cancel.png), auto;
}
@media only screen and (max-width: 992px) {
  .side-menu-overlay {
    display: none;
  }
}

.primary-header {
  width: 100%;
}
.primary-header.fixed {
  background-color: var(--ts-color-common-white);
  position: fixed;
  left: 0;
  top: 0;
  animation-name: menuSticky;
  -webkit-animation-name: menuSticky;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  box-shadow: 0px 1px 3px 0px rgba(17, 17, 17, 0.1);
  z-index: 99;
}
@media (max-width: 1199px) {
  .primary-header.fixed .primary-header-inner {
    padding: 20px;
  }
}
@keyframes menuSticky {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
.mobile-side-menu-overlay,
.mobile-side-menu {
  display: none;
}

@media only screen and (max-width: 992px) {
  .mobile-side-menu {
    background-color: var(--ts-color-common-white);
    position: fixed;
    overflow-y: scroll;
    top: 0;
    right: 0;
    width: 400px;
    transform: translateX(100%);
    height: 100%;
    display: block;
    z-index: 100;
    padding: 40px 40px 40px 40px;
    transition: transform 0.5s ease;
    backface-visibility: hidden;
  }
}
@media only screen and (max-width: 992px) and (max-width: 767px) {
  .mobile-side-menu {
    padding: 40px 20px;
    width: 100%;
    max-width: 320px;
  }
}
@media only screen and (max-width: 992px) {
  .mobile-side-menu.is-open {
    transform: translateX(0);
  }
  .mobile-side-menu .side-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  .mobile-side-menu .side-menu-head a img {
    max-width: 120px;
  }
  .mobile-side-menu .side-menu-head .mobile-side-menu-close {
    position: fixed;
    top: 35px;
    right: 40px;
    color: var(--ts-color-heading-primary);
    font-size: 17px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ts-color-border-1);
  }
}
@media only screen and (max-width: 992px) and (max-width: 767px) {
  .mobile-side-menu .side-menu-head .mobile-side-menu-close {
    right: 16px;
  }
}
@media only screen and (max-width: 992px) {
  .mobile-side-menu .side-menu-head .mobile-side-menu-close:hover {
    background-color: var(--ts-color-theme-primary);
    color: var(--ts-color-common-white);
  }
  .mobile-side-menu .side-menu-wrap {
    overflow: hidden;
    margin-bottom: 50px;
  }
  .mobile-side-menu p {
    color: var(--ts-color-common-white);
    margin-bottom: 50px;
  }
  .mobile-side-menu .list-header {
    color: var(--ts-color-common-white);
    font-family: var(--ts-ff-body);
    font-weight: 400;
    margin-bottom: 30px;
  }
  .mobile-side-menu .side-menu-list {
    list-style: none;
  }
  .mobile-side-menu .side-menu-list li {
    font-family: var(--ts-ff-heading);
    font-size: 16px;
    font-weight: 500;
    color: var(--ts-color-common-white);
  }
  .mobile-side-menu .side-menu-list li span,
  .mobile-side-menu .side-menu-list li a {
    color: var(--ts-color-common-white);
    margin-left: 10px;
    font-size: 16px;
  }
  .mobile-side-menu .side-menu-list li i {
    margin-right: 10px;
  }
  .mobile-side-menu-overlay {
    background-color: rgba(0, 0, 0, 0.7);
    height: 100%;
    width: 0%;
    position: fixed;
    top: 0;
    z-index: 9;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 600ms ease;
    z-index: 10;
    display: block;
  }
  .mobile-side-menu-overlay.is-open {
    width: 100%;
    opacity: 0.5;
    visibility: visible;
    cursor: url(../img/cancel.png), auto;
  }
}
.mean-bar {
  background-color: transparent;
  min-height: auto;
  padding: 0;
}
.mean-bar .meanmenu-reveal {
  display: none !important;
}
.mean-bar .mean-nav {
  background-color: transparent;
  margin-top: 0;
  padding-top: 20px;
}
.mean-bar .mean-nav.mean-nav > ul {
  display: block !important;
}
.mean-bar .mean-nav.mean-nav > ul li {
  position: relative;
  float: none;
  display: block;
  width: auto;
}
.mean-bar .mean-nav.mean-nav > ul li:not(:last-of-type) {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ts-color-border-1);
}
.mean-bar .mean-nav.mean-nav > ul li a {
  color: var(--ts-color-heading-primary);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  border-top: none;
  padding: 0;
  float: none;
}
@media only screen and (max-width: 767px) {
  .mean-bar .mean-nav.mean-nav > ul li a {
    font-size: 16px;
  }
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand {
  background-color: var(--ts-color-theme-primary);
  color: var(--ts-color-common-white);
  position: absolute;
  padding: 0;
  top: 3px;
  right: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand:before, .mean-bar .mean-nav.mean-nav > ul li a.mean-expand:after {
  font-size: 12px;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand:before {
  content: "+";
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand.mean-clicked {
  background-color: var(--ts-color-heading-primary);
  color: var(--ts-color-common-white);
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand.mean-clicked:after {
  content: "\f068";
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand.mean-clicked:before {
  display: none;
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand i {
  display: none;
}
.mean-bar .mean-nav.mean-nav > ul li ul {
  padding: 0 0 0 30px;
  margin-top: 20px;
}
.mean-bar .mean-nav.mean-nav > ul li ul li:not(:last-of-type) {
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.mean-bar .mean-nav.mean-nav > ul li ul li a {
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
}
@media only screen and (max-width: 767px) {
  .mean-bar .mean-nav.mean-nav > ul li ul li a {
    font-size: 14px;
  }
}

#popup-search-box {
  background-color: var(--ts-color-common-white);
  position: fixed;
  width: 100%;
  height: 20%;
  top: -100%;
  left: 0;
  right: 0;
  white-space: nowrap;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: 500ms ease all;
}
#popup-search-box .box-inner-wrap {
  background-color: var(--ts-color-common-white);
  position: relative;
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
}
#popup-search-box .box-inner-wrap form {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 0 15px;
}
#popup-search-box .box-inner-wrap form input {
  width: 100%;
  padding: 20px 15px;
  padding-right: 80px;
  background: transparent;
  border: none;
  color: #ddd;
  border: 1px solid var(--ts-color-border-1);
  color: #666;
  font-size: 16px;
}
#popup-search-box .box-inner-wrap form input::-webkit-input-placeholder {
  color: #666;
  font-size: 16px;
}
#popup-search-box .box-inner-wrap form input:-moz-placeholder {
  color: #666;
  font-size: 16px;
}
#popup-search-box .box-inner-wrap form input::-moz-placeholder {
  color: #666;
  font-size: 16px;
}
#popup-search-box .box-inner-wrap form input:-ms-input-placeholder {
  color: #666;
  font-size: 16px;
}
#popup-search-box .box-inner-wrap form input:focus {
  outline: none;
}
#popup-search-box .box-inner-wrap:hover {
  cursor: url(https://theme-canvas-trails.netlify.app/assets/img/cross.png), auto;
}
#popup-search-box .box-inner-wrap .search-close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: var(--ts-color-heading-primary);
  border: 1px solid var(--ts-color-border-1);
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  #popup-search-box .box-inner-wrap .search-close {
    height: 35px;
    width: 35px;
    top: 10px;
    right: 10px;
  }
}
#popup-search-box .box-inner-wrap .search-close:hover {
  background-color: var(--ts-color-theme-primary);
  border: 1px solid var(--ts-color-theme-primary);
  color: var(--ts-color-common-white);
}
#popup-search-box.toggled {
  top: 0;
  opacity: 1;
  visibility: visible;
}

.popup-tags {
  position: relative;
  margin: 0 auto;
}

/* !END: Theme Header CSS */
/**----------------------------------------
    START: Hero CSS
----------------------------------------*/
.hero-section {
  background-color: rgba(234, 234, 234, 0.45);
  position: relative;
  z-index: 1;
  overflow-x: clip;
}
.hero-section .hero-map {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.hero-section .bottom-bg-color {
  background-color: var(--ts-color-common-white);
  height: 59px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.hero-container {
  max-width: 1630px;
}

.hero-content {
  padding: 180px 0 280px 0;
  position: relative;
  z-index: 5;
}
@media only screen and (max-width: 992px) {
  .hero-content {
    padding: 100px 0 40px 0;
  }
}
@media only screen and (max-width: 767px) {
  .hero-content {
    padding-top: 70px;
  }
}
.hero-content .section-heading .sub-heading {
  margin-bottom: 10px;
}
.hero-content .sub-title {
  font-family: var(--ts-ff-heading);
  color: var(--ts-color-theme-primary);
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 25px;
  text-transform: inherit;
  position: relative;
  padding: 0 80px;
  overflow: hidden;
}
@media only screen and (max-width: 992px) {
  .hero-content .sub-title {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-content .sub-title {
    font-size: 16px;
    padding-left: 40px;
    padding-right: 0;
  }
}
.hero-content .sub-title:before {
  background: var(--ts-color-theme-primary);
  content: "";
  width: 60px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .hero-content .sub-title:before {
    width: 30px;
  }
}
.hero-content .sub-title:after {
  background: var(--ts-color-theme-primary);
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .hero-content .sub-title:after {
    left: 20px;
  }
}
.hero-content .title {
  font-size: 75px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: capitalize;
}
@media (max-width: 1399px) {
  .hero-content .title {
    font-size: 60px;
  }
}
@media (max-width: 1199px) {
  .hero-content .title {
    font-size: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-content .title {
    font-size: 40px;
  }
}
.hero-content p {
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .hero-content p {
    max-width: 400px;
    width: 100%;
  }
  .hero-content p br {
    display: none;
  }
}
.hero-content .hero-btn-wrap {
  display: flex;
  align-items: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
  flex-wrap: wrap;
  row-gap: 20px;
}
.hero-content .hero-btn-wrap .hero-rating {
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.hero-content .hero-btn-wrap .hero-rating .review-list {
  list-style: none;
}
.hero-content .hero-btn-wrap .hero-rating .review-list li {
  color: #FFC107;
  display: inline-flex;
}
.hero-content .hero-btn-wrap .hero-rating span {
  color: #FFC107;
}

.hero-img-wrap {
  max-width: 853px;
  width: 100%;
  height: 763px;
  position: absolute;
  top: 50px;
  right: 70px;
}
@media (max-width: 1399px) {
  .hero-img-wrap {
    right: 0;
  }
}
@media only screen and (max-width: 992px) {
  .hero-img-wrap {
    max-width: 992px;
    position: relative;
    top: 0;
    right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .hero-img-wrap {
    height: 485px;
  }
}
.hero-img-wrap .hero-item {
  position: absolute;
  background-color: var(--ts-color-common-white);
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
  box-shadow: 0px 24px 50px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 7px 20px;
  color: var(--ts-color-heading-primary);
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .hero-img-wrap .hero-item {
    display: none;
  }
}
.hero-img-wrap .hero-item.item-1 {
  top: 20%;
  left: 7%;
}
@media (max-width: 1399px) {
  .hero-img-wrap .hero-item.item-1 {
    left: 20%;
  }
}
@media only screen and (max-width: 992px) {
  .hero-img-wrap .hero-item.item-1 {
    left: 10%;
  }
}
.hero-img-wrap .hero-item.item-2 {
  top: 15%;
  right: 7%;
}
.hero-img-wrap .hero-item.item-3 {
  bottom: 25%;
  left: 20%;
}
@media (max-width: 1399px) {
  .hero-img-wrap .hero-item.item-3 {
    left: 30%;
  }
}
@media only screen and (max-width: 992px) {
  .hero-img-wrap .hero-item.item-3 {
    left: 15%;
  }
}
.hero-img-wrap .hero-item.item-4 {
  bottom: 32%;
  right: 0;
}
@media (max-width: 1399px) {
  .hero-img-wrap .hero-item.item-4 {
    right: 5%;
  }
}
.hero-img-wrap .hero-inner-img {
  max-width: 700px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1399px) {
  .hero-img-wrap .hero-inner-img {
    left: 62%;
  }
}
@media only screen and (max-width: 992px) {
  .hero-img-wrap .hero-inner-img {
    left: 50%;
    transform: translateX(-50%);
  }
}
.hero-img-wrap .hero-inner-img .hero-img {
  position: absolute;
  bottom: 0;
  left: 53%;
  transform: translateX(-50%);
  max-width: 466px;
  width: 100%;
  height: 763px;
}
@media only screen and (max-width: 767px) {
  .hero-img-wrap .hero-inner-img .hero-img {
    height: auto;
  }
}

.hero-box {
  background-color: var(--ts-color-common-white);
  max-width: 1324px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 20px 40px;
  box-shadow: 1px 7px 14px -8px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 1px 7px 14px -8px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 1px 7px 14px -8px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 5;
}
@media (max-width: 1199px) {
  .hero-box {
    margin-top: 0;
    max-width: 900px;
  }
}
@media only screen and (max-width: 992px) {
  .hero-box {
    padding: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-box {
    flex-direction: column;
    align-items: baseline;
    row-gap: 30px;
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-box .box-item {
    width: 100%;
  }
}
.hero-box .box-item .box-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
.hero-box .box-item:not(:last-of-type) {
  margin-right: 45px;
  padding-right: 45px;
  border-right: 1px solid var(--ts-color-border-1);
}
@media (max-width: 1399px) {
  .hero-box .box-item:not(:last-of-type) {
    margin-right: 20px;
    border-right: none;
    padding-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .hero-box .box-item:not(:last-of-type) {
    margin-right: 0px;
    padding-right: 0px;
  }
}
.hero-box .box-item .form-control {
  background-color: #F5F5F5;
  border: none;
  border-bottom: 1px solid var(--ts-color-border-2);
  padding-left: 0;
  padding: 10px 20px;
  width: 260px;
}
@media (max-width: 1399px) {
  .hero-box .box-item .form-control {
    width: 200px;
  }
}
@media (max-width: 1199px) {
  .hero-box .box-item .form-control {
    width: 150px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-box .box-item .form-control {
    width: 100%;
  }
}
.hero-box .box-item .form-control:focus {
  box-shadow: none;
}
.hero-box .box-item .form-control.nice-select {
  height: auto;
  line-height: inherit;
  padding: 10px 20px;
  width: 260px;
  height: auto;
  line-height: inherit;
}
@media (max-width: 1399px) {
  .hero-box .box-item .form-control.nice-select {
    width: 200px;
  }
}
@media (max-width: 1199px) {
  .hero-box .box-item .form-control.nice-select {
    width: 150px;
  }
}
.hero-box .box-item .form-control.nice-select:after {
  border-color: var(--ts-color-theme-primary);
  height: 8px;
  width: 8px;
  margin-top: -5px;
}
.hero-box .box-item .form-control.nice-select .option {
  padding-left: 20px;
  cursor: pointer;
}
@media only screen and (max-width: 992px) {
  .hero-box .box-item .ts-primary-btn {
    font-size: 14px;
    padding: 14px 15px;
  }
}

.hero-section-2 {
  padding-top: 140px;
  background: rgba(28, 168, 203, 0.05);
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .hero-section-2 {
    padding-top: 100px;
  }
}
.hero-section-2 .hero-bg-shape {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.hero-section-2 .hero-container {
  max-width: 1825px;
}

.hero-wrap-2 {
  position: relative;
  z-index: 1;
  border-radius: 40px;
  overflow: hidden;
}
.hero-wrap-2 .overlay {
  background-color: rgba(0, 0, 0, 0.45);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.hero-wrap-2 .bg-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
.hero-wrap-2 .hero-text {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1597px;
  width: 100%;
  height: 106px;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .hero-wrap-2 .hero-text {
    max-width: 650px;
    height: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-wrap-2 .hero-text {
    display: none;
  }
}
.hero-wrap-2 .hero-text img {
  width: 100%;
  height: 100%;
}

.hero-content-2 {
  text-align: center;
  padding: 244px 0;
}
@media only screen and (max-width: 992px) {
  .hero-content-2 {
    padding: 150px 0;
  }
}
@media only screen and (max-width: 767px) {
  .hero-content-2 {
    padding: 100px 20px;
  }
}
.hero-content-2 .sub-title {
  padding-right: 0;
  color: var(--ts-color-common-white);
  margin-bottom: 0;
}
.hero-content-2 .sub-title:after, .hero-content-2 .sub-title:before {
  background-color: var(--ts-color-common-white);
  top: 48%;
}
.hero-content-2 .title {
  margin: 30px 0 45px 0;
}
@media only screen and (max-width: 767px) {
  .hero-content-2 .title {
    font-size: 30px;
  }
}

.hero-3 {
  background: rgba(28, 168, 203, 0.1);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hero-3 .bg-shape {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.hero-3 .right-shape {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
@media (max-width: 1199px) {
  .hero-3 .right-shape {
    right: -150px;
  }
}
@media only screen and (max-width: 992px) {
  .hero-3 .right-shape {
    display: none;
  }
}
.hero-3 .right-shape img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.hero-wrap-3 {
  position: relative;
  z-index: 1;
}
.hero-wrap-3 .hero-img-3 {
  position: absolute;
  bottom: -60px;
  right: -100px;
  width: auto;
  height: 864px;
}
@media (max-width: 1399px) {
  .hero-wrap-3 .hero-img-3 {
    right: 0;
  }
}
@media (max-width: 1199px) {
  .hero-wrap-3 .hero-img-3 {
    right: -50px;
  }
}
@media only screen and (max-width: 992px) {
  .hero-wrap-3 .hero-img-3 {
    position: relative;
    height: auto;
    right: 0;
    margin: 0 auto;
  }
}

.hero-content-3 {
  padding: 310px 0 290px 0;
}
@media only screen and (max-width: 992px) {
  .hero-content-3 {
    padding: 100px 0 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .hero-content-3 .section-heading .sub-heading {
    font-size: 15px;
  }
}

/* !END: Hero CSS */
/**----------------------------------------
    START: About CSS
----------------------------------------*/
.about-section {
  position: relative;
}
.about-section .shapes .shape-1 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.about-section .shapes .shape-2 {
  position: absolute;
  bottom: -12%;
  left: 0;
  z-index: -1;
  width: 100%;
}
.about-section .shapes .shape-2 img {
  width: 100%;
}

.about-container {
  max-width: 1455px;
}

.about-img-wrap {
  height: 700px;
  max-width: 630px;
  width: 100%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .about-img-wrap {
    height: 500px;
  }
}
.about-img-wrap .about-img-1 {
  max-width: 480px;
  width: 100%;
  height: 675px;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(10deg);
}
@media (max-width: 1199px) {
  .about-img-wrap .about-img-1 {
    transform: rotate(0);
  }
}
@media only screen and (max-width: 767px) {
  .about-img-wrap .about-img-1 {
    height: 500px;
  }
}
.about-img-wrap .about-img-1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-img-wrap .about-img-2 {
  max-width: 310px;
  width: 100%;
  height: 406px;
  position: absolute;
  bottom: 100px;
  right: 0;
  transform: rotate(10deg);
}
@media (max-width: 1199px) {
  .about-img-wrap .about-img-2 {
    transform: rotate(0);
  }
}
.about-img-wrap .about-img-2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media only screen and (max-width: 992px) {
  .about-content {
    margin-top: 30px;
  }
}
.about-content .about-desc {
  position: relative;
  padding-left: 80px;
  margin-bottom: 40px;
}
.about-content .about-desc:before {
  background-color: var(--ts-color-theme-primary);
  content: "";
  width: 60px;
  height: 2px;
  position: absolute;
  top: 13px;
  left: 0;
}
.about-content .about-desc .about-text {
  font-family: "Jost", sans-serif;
  color: var(--ts-color-theme-primary);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
}
.about-content .about-list {
  list-style: none;
  margin-bottom: 50px;
}
.about-content .about-list li {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .about-content .about-list li {
    line-height: 1.5;
  }
}
.about-content .about-list li:not(:last-of-type) {
  margin-bottom: 20px;
}
.about-content .about-list li i {
  color: var(--ts-color-theme-primary);
  margin-right: 10px;
}

.about-img-wrap-2 {
  max-width: 696px;
  width: 100%;
  height: 591px;
  position: relative;
}
.about-img-wrap-2 .about-img-1 {
  position: absolute;
  top: 0;
  left: 0;
}
.about-img-wrap-2 .about-img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
}

.about-content-2 {
  padding-left: 30px;
}
@media only screen and (max-width: 992px) {
  .about-content-2 {
    padding-left: 0;
    margin-top: 40px;
  }
}
.about-content-2 .about-items .about-item {
  display: grid;
  align-items: center;
  grid-template-columns: 80px 1fr;
  grid-gap: 20px;
}
@media only screen and (max-width: 767px) {
  .about-content-2 .about-items .about-item {
    grid-template-columns: 1fr;
  }
}
.about-content-2 .about-items .about-item:not(:last-of-type) {
  margin-bottom: 40px;
}
.about-content-2 .about-items .about-item .icon {
  background-color: var(--ts-color-common-white);
  width: 80px;
  height: 80px;
  box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-content-2 .about-items .about-item .content .title {
  font-size: 22px;
  font-weight: 500;
}
.about-content-2 .about-items .about-item .content p {
  margin-bottom: 0;
}

/* !END: About CSS */
/**----------------------------------------
    START: CTA CSS
----------------------------------------*/
.cta-section {
  position: relative;
  z-index: 1;
}
.cta-section .cta-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
.cta-section .overlay {
  background-color: var(--ts-color-common-black);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.55;
  z-index: -1;
}

@media only screen and (max-width: 992px) {
  .cta-content {
    margin-bottom: 40px;
  }
}
.cta-content .desc {
  color: var(--ts-color-common-white);
  margin-bottom: 50px;
}
@media (max-width: 1199px) {
  .cta-content .desc br {
    display: none;
  }
}
.cta-content .cta-counter-wrap {
  margin-top: 60px;
  display: flex;
  align-items: center;
  -moz-column-gap: 50px;
       column-gap: 50px;
  flex-wrap: wrap;
  row-gap: 30px;
}
.cta-content .cta-counter-wrap .cta-counter {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
  flex-wrap: wrap;
  row-gap: 10px;
}
.cta-content .cta-counter-wrap .cta-counter .title {
  color: var(--ts-color-common-white);
  margin-bottom: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  font-size: 48px;
  font-weight: 600;
}
.cta-content .cta-counter-wrap .cta-counter .title .odometer-auto-theme {
  font-family: inherit;
  line-height: 1;
}
.cta-content .cta-counter-wrap .cta-counter .title .number {
  margin-bottom: 5px;
}
.cta-content .cta-counter-wrap .cta-counter p {
  color: var(--ts-color-common-white);
  margin-bottom: 0;
}

.cta-video-wrap {
  text-align: center;
}
.cta-video-wrap .video-title {
  font-size: 45px;
  font-style: italic;
  color: var(--ts-color-common-white);
  margin-bottom: 0;
  margin-top: 40px;
}

/* !END: CTA CSS */
/**----------------------------------------
    START: Tour CSS
----------------------------------------*/
.tour-item {
  border-radius: 8px;
  overflow: hidden;
}
.tour-item .tour-thumb {
  height: 257px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.tour-item .tour-thumb:after {
  background: linear-gradient(90deg, rgba(var(--trails-white-rgb, 255, 255, 255), 0.05) 0px, rgba(var(--trails-white-rgb, 255, 255, 255), 0.05) 77%, rgba(var(--trails-white-rgb, 255, 255, 255), 0.25) 92%, rgba(var(--trails-white-rgb, 255, 255, 255), 0));
  content: "";
  height: 200%;
  left: -210%;
  opacity: 0;
  position: absolute;
  top: -50%;
  transition: all 0.7s ease 0s;
  width: 200%;
}
.tour-item .tour-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
}
.tour-item .tour-thumb .fav-btn {
  background-color: var(--ts-color-common-white);
  height: 34px;
  width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ts-color-heading-primary);
  border-radius: 50%;
  position: absolute;
  top: 15px;
  right: 15px;
}
.tour-item:hover .tour-thumb:after {
  left: -30%;
  opacity: 1;
  top: -20%;
  transition-duration: 0.7s, 0.7s, 0.15s;
  transition-property: left, top, opacity;
  transition-timing-function: linear;
}
.tour-item:hover .tour-thumb img {
  transform: scale(1.05) rotate(0deg);
}
.tour-item .tour-content {
  padding: 25px;
  border: 1px solid var(--ts-color-border-1);
  border-top: none;
  border-radius: 0 0 8px 8px;
}
.tour-item .tour-content .location {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin-bottom: 10px;
}
.tour-item .tour-content .location i {
  color: var(--ts-color-theme-primary);
}
.tour-item .tour-content .title {
  line-height: 1.5;
}
.tour-item .tour-content .review-list {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 10px 0 25px 0;
}
.tour-item .tour-content .review-list li {
  color: #FFBE0B;
}
.tour-item .tour-content .review-list li:not(:last-of-type) {
  margin-right: 5px;
}
.tour-item .tour-content .review-list li.number {
  font-size: 16px;
  color: var(--ts-color-heading-primary);
  line-height: 1;
  margin-top: 4px;
}
.tour-item .tour-content .tour-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 15px;
}
.tour-item .tour-content .tour-bottom .price {
  font-size: 24px;
  margin-bottom: 0;
}
.tour-item .tour-content .tour-bottom .price span {
  font-size: 15px;
  font-weight: 400;
}
.tour-item .tour-content .tour-bottom .ts-primary-btn {
  padding: 12px 25px;
}

.tour-item-2 {
  padding: 25px;
  border: 1px solid #E9E9E9;
}
.tour-item-2 .tour-thumb {
  height: 285px;
  border-radius: 8px;
}
.tour-item-2 .tour-thumb img {
  border-radius: 8px;
}
.tour-item-2 .tour-thumb .category {
  background-color: var(--ts-color-theme-primary);
  color: var(--ts-color-common-white);
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 14px;
  font-weight: 400;
  padding: 5px 20px;
  border-radius: 4px;
}
.tour-item-2 .tour-content {
  padding: 0;
  padding-top: 25px;
  border: none;
}

.tour-details-container {
  max-width: 1200px;
}

.tour-details-content .location-text {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 5px;
}
@media only screen and (max-width: 767px) {
  .tour-details-content .location-text {
    font-size: 32px;
  }
}
.tour-details-content .location-text span {
  color: var(--ts-color-text-body);
  font-size: 20px;
  font-weight: 400;
}
.tour-details-content .tour-details-img {
  height: 328px;
  margin-bottom: 30px;
}
.tour-details-content .tour-details-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tour-details-content .details-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}
@media only screen and (max-width: 992px) {
  .tour-details-content .tour-details-gallary {
    margin-bottom: 50px;
  }
}
.tour-details-content .tour-details-gallary .gallary-title {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 20px;
}
.tour-details-content .tour-details-gallary .tour-details-thumb {
  height: 176px;
}
.tour-details-content .tour-details-gallary .tour-details-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.tour-details-content .tour-details-gallary .tour-details-thumb.thumb-1 {
  margin-bottom: 24px;
}
.tour-details-content .tour-details-gallary .tour-details-thumb.thumb-2 {
  height: 376px;
}

.tour-sidebar:not(:last-of-type) {
  margin-bottom: 30px;
}
.tour-sidebar .sidebar-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
}
.tour-sidebar p {
  font-size: 14px;
}
.tour-sidebar.search-bar {
  position: relative;
}
.tour-sidebar.search-bar .form-control {
  padding: 10px 20px;
  border: 1px solid var(--ts-color-theme-primary);
  box-shadow: none;
}
.tour-sidebar.search-bar .search-btn {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: var(--ts-color-theme-primary);
}
.tour-sidebar.info-bar {
  background: #FFFFFF;
  box-shadow: 0px 3px 45px rgba(64, 40, 229, 0.0588235);
  padding: 50px 20px;
}
.tour-sidebar.info-bar .tour-sidebar-list {
  margin-top: 20px;
}
.tour-sidebar.info-bar .tour-sidebar-list li {
  font-family: var(--ts-ff-heading);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 500;
  color: var(--ts-color-heading-primary);
  flex-wrap: wrap;
  row-gap: 10px;
}
.tour-sidebar.info-bar .tour-sidebar-list li:not(:last-of-type) {
  margin-bottom: 15px;
}
.tour-sidebar.info-bar .tour-sidebar-list li span {
  font-family: var(--ts-ff-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--ts-color-text-body);
}
.tour-sidebar.info-bar .tour-sidebar-list li ul {
  display: flex;
  align-items: center;
}
.tour-sidebar.info-bar .tour-sidebar-list li ul li {
  color: #FFC107;
}
.tour-sidebar.info-bar .tour-sidebar-list li ul li:not(:last-of-type) {
  margin-bottom: 0;
  margin-right: 5px;
}
.tour-sidebar.info-bar .tour-sidebar-form {
  background-color: #F3FFFF;
  padding: 40px 25px;
  margin-top: 50px;
}
.tour-sidebar.info-bar .tour-sidebar-form .form-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 25px;
}
.tour-sidebar.info-bar .tour-sidebar-form .form-item {
  position: relative;
}
.tour-sidebar.info-bar .tour-sidebar-form .form-item .form-control {
  padding: 10px 20px;
  padding-left: 40px;
  box-shadow: none;
  background: #FFFFFF;
  box-shadow: 0px 3px 11.5px rgba(0, 0, 0, 0.0901961);
  margin-bottom: 20px;
  border: none;
}
.tour-sidebar.info-bar .tour-sidebar-form .form-item .icon {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
}
.tour-sidebar.info-bar .tour-sidebar-form .form-item.message-item .icon {
  top: 10px;
  transform: translateY(0);
}
.tour-sidebar.info-bar .tour-sidebar-form button {
  width: 100%;
  justify-content: center;
}
.tour-sidebar .sidebar-post {
  display: grid;
  align-items: center;
  grid-template-columns: 117px 1fr;
  grid-gap: 15px;
}
.tour-sidebar .sidebar-post:not(:last-of-type) {
  margin-bottom: 15px;
}
.tour-sidebar .sidebar-post img {
  width: 117px;
  height: 90px;
}
.tour-sidebar .sidebar-post .post-content .title {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 10px;
}
.tour-sidebar .sidebar-post .post-content .post-meta {
  margin-bottom: 0;
}
.tour-sidebar .sidebar-post .post-content .post-meta li {
  color: #606060;
  font-size: 14px;
  font-weight: 400;
}
.tour-sidebar .sidebar-post .post-content .post-meta li:not(:last-of-type) {
  border: none;
  padding-right: 0;
}
.tour-sidebar .sidebar-post .post-content .post-meta li i {
  margin-right: 5px;
}
.tour-sidebar .social-list-wrap {
  text-align: center;
}
.tour-sidebar .social-list-wrap ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin-top: 20px;
  position: relative;
}
.tour-sidebar .social-list-wrap ul:before {
  background-color: var(--ts-color-border-1);
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: -1;
}
.tour-sidebar .social-list-wrap ul li {
  color: var(--ts-color-heading-primary);
}
.tour-sidebar .social-list-wrap ul li a {
  background-color: var(--ts-color-common-white);
  padding: 5px 10px;
}

.tour-details-nav {
  margin-bottom: 45px;
  border: none;
  flex-wrap: wrap;
  row-gap: 10px;
}
.tour-details-nav .nav-item {
  border: none;
}
.tour-details-nav .nav-item:not(:last-of-type) {
  margin-right: 30px;
}
@media (max-width: 1199px) {
  .tour-details-nav .nav-item:not(:last-of-type) {
    margin-right: 10px;
  }
}
.tour-details-nav .nav-item .nav-link {
  background: rgba(28, 168, 203, 0.1);
  color: var(--ts-color-heading-primary);
  box-shadow: 0px 0px 8.5px rgba(57, 31, 238, 0.0705882);
  padding: 7px 30px;
  border: none;
  border-radius: 5px;
}
.tour-details-nav .nav-item .nav-link.active {
  background-color: var(--ts-color-theme-primary);
  color: var(--ts-color-common-white);
}

.tour-details-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  grid-gap: 20px;
}
@media only screen and (max-width: 767px) {
  .tour-details-item {
    grid-template-columns: 1fr;
  }
}
.tour-details-item:not(:last-of-type) {
  margin-bottom: 35px;
}
.tour-details-item span {
  background-color: var(--ts-color-theme-primary);
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ts-color-common-white);
  border-radius: 50%;
}
.tour-details-item .right-content .title {
  color: var(--ts-color-heading-primary);
  font-size: 24px;
  font-weight: 500;
}
.tour-details-item .right-content p {
  margin-bottom: 0;
}

/* !END: Tour CSS */
/**----------------------------------------
    START: Offer CSS
----------------------------------------*/
.offer-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.offer-section .offer-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
.offer-section .offer-bg-img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
@media (max-width: 1199px) {
  .offer-section .offer-bg-img {
    display: none;
  }
}
@media only screen and (max-width: 992px) {
  .offer-section .offer-bg-img {
    display: block;
    right: -50px;
  }
}
@media only screen and (max-width: 767px) {
  .offer-section .offer-bg-img {
    display: none;
  }
}
.offer-section .offer-bg-img img {
  width: 100%;
  height: 100%;
}

.offer-img-wrap {
  max-width: 630px;
  width: 100%;
  height: 491px;
  position: relative;
  position: absolute;
  top: 50%;
  left: 58%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1199px) {
  .offer-img-wrap {
    left: 70%;
  }
}
@media only screen and (max-width: 992px) {
  .offer-img-wrap {
    display: none;
  }
}
.offer-img-wrap .offer-img-1 {
  position: absolute;
  top: 0;
  left: 0;
}
.offer-img-wrap .offer-img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
}
.offer-img-wrap .offer-text {
  position: absolute;
  top: 19%;
  right: 23%;
  transform: rotate(-21deg);
}
.offer-img-wrap .offer-text span {
  background-color: #F64C4C;
  color: var(--ts-color-common-white);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  padding: 20px 40px;
  border-radius: 5px;
}

.offer-content {
  position: relative;
  z-index: 5;
}
.offer-content .section-heading .section-title {
  font-size: 45px;
  font-weight: 500;
}

/* !END: Offer CSS */
/**----------------------------------------
    START: Destination CSS
----------------------------------------*/
.destination-item {
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.destination-item .overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 21.88%, rgba(17, 47, 56, 0.84) 84.9%);
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.destination-item .destination-thumb {
  height: 404px;
  border-radius: 8px;
  overflow: hidden;
}
.destination-item .destination-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale3d(1, 1, 1);
  transition: transform 0.8s ease-in-out;
}
.destination-item .destination-content {
  position: absolute;
  bottom: 40px;
  left: 30px;
  right: 30px;
  z-index: 5;
}
.destination-item .destination-content .title {
  color: var(--ts-color-common-white);
  font-size: 28px;
  font-weight: 500;
}
.destination-item .destination-content .title a {
  background: linear-gradient(var(--ts-color-common-white) 0%, var(--ts-color-common-white) 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  transition: all 0.3s ease-in-out;
}
.destination-item .destination-content .title a:hover {
  color: var(--ts-color-common-white);
  background-size: 100% 2px;
}
.destination-item .destination-content span {
  color: var(--ts-color-common-white);
}
.destination-item:hover .destination-thumb img {
  transform: scale(1.03) rotate(0deg);
}

.destination-container {
  max-width: 1645px;
}

.destination-nav {
  text-align: center;
  justify-content: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  flex-wrap: wrap;
  row-gap: 10px;
  margin-bottom: 50px;
  border: none;
}
@media (max-width: 1199px) {
  .destination-nav {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
.destination-nav .nav-item .nav-link {
  background-color: var(--ts-color-common-white);
  padding: 7px 30px;
  color: var(--ts-color-theme-primary);
  border: 1px solid var(--ts-color-theme-primary);
  border-radius: 100px;
}
.destination-nav .nav-item .nav-link.active {
  background-color: var(--ts-color-theme-primary);
  color: var(--ts-color-common-white);
}

.destination-item-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 24px;
}
@media only screen and (max-width: 767px) {
  .destination-item-wrap {
    grid-template-columns: 1fr;
  }
}

.destination-item-2 {
  height: 100%;
}
@media (max-width: 1199px) {
  .destination-item-2 {
    height: 450px;
  }
}
.destination-item-2 .destination-thumb {
  height: 100%;
}
.destination-item-2 .destination-content-2 {
  display: grid;
  align-items: center;
  grid-template-columns: 120px 1fr;
  grid-gap: 20px;
}
@media only screen and (max-width: 767px) {
  .destination-item-2 .destination-content-2 {
    grid-template-columns: 1fr;
  }
}
.destination-item-2 .destination-content-2 .icon {
  background-color: rgba(255, 255, 255, 0.4);
  height: 120px;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.destination-wrap-3 .destination-item .overlay {
  background: linear-gradient(180deg, rgba(5, 7, 60, 0) 0%, #05073C 100%);
  opacity: 0.5;
}
.destination-wrap-3 .destination-item .destination-content .title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;
}
.destination-wrap-3 .destination-item .destination-content span {
  display: none;
}
.destination-wrap-3 .destination-item-wrap-4 .destination-item:not(:last-of-type) {
  margin-bottom: 24px;
}
.destination-wrap-3 .destination-item-wrap-4 .destination-item .destination-thumb {
  height: 240px;
}
.destination-wrap-3 .destination-item-wrap-3 .destination-item:not(:last-of-type) {
  margin-bottom: 24px;
}
.destination-wrap-3 .destination-item-wrap-3 .destination-item .destination-thumb {
  height: 240px;
}
.destination-wrap-3 .destination-item-wrap-3 .destination-item-wrap-2 .destination-item:not(:last-of-type) {
  margin-bottom: 24px;
}
.destination-wrap-3 .destination-item-wrap-3 .destination-item-wrap-2 .destination-item .destination-thumb {
  height: 240px;
}

.destination-item-3 {
  height: 504px;
}
@media only screen and (max-width: 767px) {
  .destination-item-3 {
    height: 400px;
  }
}
.destination-item-3 .destination-thumb {
  height: 100%;
}
.destination-item-3 .destination-thumb img {
  height: 100%;
}

.destination-details-content .destination-details-img-wrap {
  display: flex;
  align-items: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
@media only screen and (max-width: 767px) {
  .destination-details-content .destination-details-img-wrap {
    flex-wrap: wrap;
    row-gap: 15px;
  }
}
.destination-details-content blockquote .content p {
  color: var(--ts-color-theme-primary);
}
.destination-details-content .destination-details-box {
  background-color: #F6F6F6;
  padding: 40px 30px;
  border-radius: 5px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .destination-details-content .destination-details-box {
    padding: 40px 20px;
  }
}
.destination-details-content .destination-details-box .box-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}
.destination-details-content .destination-details-box .box-list-wrap {
  display: flex;
  align-items: center;
  -moz-column-gap: 50px;
       column-gap: 50px;
}
@media only screen and (max-width: 767px) {
  .destination-details-content .destination-details-box .box-list-wrap {
    flex-wrap: wrap;
    row-gap: 15px;
  }
}
.destination-details-content .destination-details-box .box-list-wrap ul li {
  display: flex;
  align-items: center;
}
.destination-details-content .destination-details-box .box-list-wrap ul li:not(:last-of-type) {
  margin-bottom: 15px;
}
.destination-details-content .destination-details-box .box-list-wrap ul li i {
  background-color: var(--ts-color-heading-primary);
  color: var(--ts-color-common-white);
  font-size: 12px;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease-in-out;
}
.destination-details-content .destination-details-box .box-list-wrap ul li span {
  color: var(--ts-color-heading-primary);
  font-size: 18px;
  font-weight: 400;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .destination-details-content .destination-details-box .box-list-wrap ul li span {
    font-size: 14px;
  }
}
.destination-details-content .destination-details-box .box-list-wrap ul li span.child-1 {
  margin-right: 20px;
}
.destination-details-content .destination-details-box .box-list-wrap ul li:hover i {
  background-color: var(--ts-color-theme-primary);
}

/* !END: Destination CSS */
/**----------------------------------------
    START: Testi CSS
----------------------------------------*/
.testimonial-section {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  width: 100%;
  height: 780px;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .testimonial-section {
    height: 600px;
  }
}
@media only screen and (max-width: 767px) {
  .testimonial-section {
    height: 100%;
  }
  .testimonial-section .container {
    padding: 0;
  }
}

.testi-content {
  background-color: var(--ts-color-theme-primary);
  max-width: 641px;
  width: 100%;
  padding: 70px 60px;
  position: absolute;
  top: 0;
  right: 10%;
}
@media only screen and (max-width: 992px) {
  .testi-content {
    right: 50%;
    transform: translateX(50%);
  }
}
@media only screen and (max-width: 767px) {
  .testi-content {
    padding: 70px 20px;
    position: relative;
  }
}
.testi-content .quote {
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
}

.testi-carousel .swiper-arrow {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.testi-carousel .swiper-arrow .swiper-nav {
  color: var(--ts-color-common-white);
  height: 67px;
  width: 67px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ts-color-common-white);
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.testi-carousel .swiper-arrow .swiper-nav:hover {
  background-color: var(--ts-color-common-white);
  color: var(--ts-color-theme-primary);
}

.testi-item .author-info {
  display: grid;
  align-items: center;
  grid-template-columns: 73px 1fr;
  grid-gap: 25px;
}
.testi-item .author-info .content .name {
  color: var(--ts-color-common-white);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 5px;
}
.testi-item .author-info .content span {
  color: var(--ts-color-common-white);
}
.testi-item p {
  margin-top: 30px;
  margin-bottom: 0;
  color: var(--ts-color-common-white);
  margin-bottom: 70px;
}
@media only screen and (max-width: 767px) {
  .testi-item p {
    margin-bottom: 40px;
  }
}

.testi-item-2 {
  background: var(--ts-color-common-white);
  box-shadow: 0px 0px 35px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 45px 35px;
}
.testi-item-2 .author-info {
  display: grid;
  align-items: center;
  grid-template-columns: 75px 1fr;
  grid-gap: 30px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .testi-item-2 .author-info {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}
.testi-item-2 .author-info .author-img {
  height: 75px;
  width: 75px;
  border-radius: 50%;
}
.testi-item-2 .author-info .author-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testi-item-2 .author-info .name {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .testi-item-2 .author-info .name {
    font-size: 22px;
  }
}
.testi-item-2 .author-info .name span {
  font-family: var(--ts-ff-body);
  color: var(--ts-color-theme-primary);
  font-size: 16px;
  font-weight: 500;
  display: block;
  margin-top: 5px;
}
.testi-item-2 p {
  margin-bottom: 30px;
}
.testi-item-2 .quote-icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.testi-item-2 .quote-icon .line {
  background-color: #DADADA;
  width: 100%;
  height: 2px;
  position: relative;
}
.testi-item-2 .quote-icon .line:before {
  background-color: var(--ts-color-theme-primary);
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
}
.testi-item-2:hover .quote-icon .line:before {
  width: 100%;
}

.testi-carousel-2 {
  border-top: 1px solid var(--ts-color-border-1);
  padding-top: 30px;
  padding-bottom: 80px;
}
.testi-carousel-2 .swiper-pagination {
  bottom: 0;
  text-align: left;
}
.testi-carousel-2 .swiper-pagination .swiper-pagination-bullet {
  background-color: transparent;
  height: 10px;
  width: 10px;
  border: 2px solid var(--ts-color-theme-primary);
  border-radius: 50%;
  opacity: 1;
}
.testi-carousel-2 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--ts-color-theme-primary);
}

.testi-item-3 {
  max-width: 600px;
  width: 100%;
}
.testi-item-3 .author-box {
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  row-gap: 15px;
}
.testi-item-3 .author-box .name {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 0;
}
.testi-item-3 .author-box span {
  color: var(--ts-color-theme-primary);
}
.testi-item-3 p {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 35px;
}
.testi-item-3 .testi-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 20px;
       column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 15px;
}
.testi-item-3 .testi-bottom .testi-review li {
  display: inline-flex;
  color: var(--ts-color-theme-primary);
}

.testi-left-img {
  max-width: 530px;
  width: 100%;
  height: 595px;
  position: relative;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .testi-left-img {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .testi-left-img {
    height: 450px;
  }
}
.testi-left-img .testi-img {
  height: 100%;
  max-width: 466px;
  width: 100%;
}
.testi-left-img .testi-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testi-left-img .client-box {
  background-color: var(--ts-color-theme-primary);
  position: absolute;
  bottom: 40px;
  right: 0;
  padding: 35px;
}
.testi-left-img .client-box .client-title {
  color: var(--ts-color-common-white);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
.testi-left-img .client-box .client-list {
  list-style: none;
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.testi-left-img .client-box .client-list li:not(:first-of-type) {
  margin-left: -20px;
}
.testi-left-img .client-box .client-list li img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}
.testi-left-img .client-box .client-list li.icon {
  background-color: var(--ts-color-common-white);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ts-color-theme-primary);
  cursor: pointer;
}

/* !END: Testi CSS */
/**----------------------------------------
    START: Package CSS
----------------------------------------*/
.package-item {
  box-shadow: 0px 0px 45px rgba(0, 0, 0, 0.1);
}
.package-item .package-thumb {
  height: 460px;
  position: relative;
}
.package-item .package-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.package-item .package-thumb .package-text {
  background-color: var(--ts-color-common-white);
  font-family: var(--ts-ff-heading);
  color: var(--ts-color-heading-primary);
  padding: 50px 37px 40px 37px;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  display: block;
  position: absolute;
  top: 0;
  left: -20px;
  -webkit-clip-path: polygon(20% 0%, 80% 15%, 80% 100%, 20% 100%);
          clip-path: polygon(20% 0%, 80% 15%, 80% 100%, 20% 100%);
  transition: all 0.3s ease-in-out;
}
.package-item .package-thumb .package-text:before {
  background-color: var(--ts-color-theme-primary);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.package-item .package-content {
  padding: 25px 20px;
}
.package-item .package-content .title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}
.package-item .package-content .dest {
  display: flex;
  align-items: center;
}
.package-item .package-content .dest i {
  color: var(--ts-color-theme-primary);
  margin-right: 10px;
}
.package-item .package-content .package-bottom {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--ts-color-border-1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.package-item .package-content .package-bottom .price {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
}
.package-item .package-content .package-bottom .price span {
  color: #ABABAB;
  font-size: 16px;
  font-weight: 400;
  text-decoration: line-through;
}
.package-item .package-content .package-bottom .ts-primary-btn {
  background-color: #758BAE;
  padding: 14px 23px;
  border-radius: 0;
}
.package-item .package-content .package-bottom .ts-primary-btn:before {
  background-color: var(--ts-color-theme-primary);
}
.package-item:hover .package-thumb .package-text {
  color: var(--ts-color-common-white);
}
.package-item:hover .package-thumb .package-text:before {
  visibility: visible;
  opacity: 1;
}

/* !END: Package CSS */
/**----------------------------------------
    START: Promo CSS
----------------------------------------*/
.promo-section {
  position: relative;
  z-index: 1;
}
.promo-section .bg-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
.promo-section .overlay {
  background-color: rgba(0, 0, 0, 0.55);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.promo-item .icon {
  background-color: var(--ts-color-common-white);
  height: 106px;
  width: 106px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border-radius: 15px;
  margin-bottom: 27px;
  transition: all 0.3s ease-in-out;
}
.promo-item .icon img {
  transition: all 0.3s ease-in-out;
}
.promo-item .title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}
.promo-item p {
  margin-bottom: 0;
}
.promo-item:hover .icon {
  background-color: var(--ts-color-theme-primary);
}
.promo-item:hover .icon img {
  filter: brightness(0) invert(1);
}

.promo-2 .overlay {
  background-color: rgba(0, 0, 0, 0.65);
}

.promo-item-2 {
  text-align: left;
}
.promo-item-2 .icon {
  background-color: transparent;
  height: auto;
  width: auto;
  margin: inherit;
  margin-left: 0;
  justify-content: start;
  margin-bottom: 30px;
}
.promo-item-2:hover .icon {
  background-color: transparent;
}
.promo-item-2:hover .icon img {
  filter: inherit;
}

/* !END: Promo CSS */
/**----------------------------------------
    START: Team CSS
----------------------------------------*/
.team-item {
  height: 580px;
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 0px 15px 35px 20px;
}
@media only screen and (max-width: 992px) {
  .team-item {
    max-width: 768px;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .team-item {
    max-width: 320px;
    width: 100%;
    height: auto;
  }
}
.team-item .team-item-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.team-item .team-img-wrap {
  max-width: 340px;
  width: 100%;
  height: 458px;
  position: relative;
  position: absolute;
  bottom: 110px;
  left: 20px;
}
@media (max-width: 1399px) {
  .team-item .team-img-wrap {
    max-width: 276px;
  }
}
@media only screen and (max-width: 767px) {
  .team-item .team-img-wrap {
    max-width: 200px;
  }
}
.team-item .team-img-wrap .main-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  max-width: 305px;
  width: 100%;
  z-index: 1;
}
@media (max-width: 1399px) {
  .team-item .team-img-wrap .main-img {
    height: 94%;
  }
}
@media only screen and (max-width: 767px) {
  .team-item .team-img-wrap .main-img {
    height: 66%;
  }
}
.team-item .team-img-wrap .main-img img {
  height: 100%;
  width: 100%;
}
.team-item .team-img-wrap .shape {
  position: absolute;
  bottom: 0;
  left: 0;
}
.team-item .team-img-wrap .hover-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.team-item .team-content .title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 7px;
}
.team-item .team-content span {
  font-family: var(--ts-ff-body);
  color: var(--ts-color-theme-primary);
  line-height: 1;
  display: block;
  font-size: 14px;
  font-weight: 400;
}
.team-item .team-social-wrap {
  position: relative;
  z-index: 1;
}
.team-item .team-social-wrap .team-social {
  list-style: none;
  margin-bottom: 40px;
}
@media (max-width: 1399px) {
  .team-item .team-social-wrap .team-social {
    margin-bottom: 20px;
  }
}
.team-item .team-social-wrap .team-social li:not(:last-of-type) {
  margin-bottom: 20px;
}
@media (max-width: 1399px) {
  .team-item .team-social-wrap .team-social li:not(:last-of-type) {
    margin-bottom: 10px;
  }
}
.team-item .team-social-wrap .team-social li a {
  background-color: var(--ts-color-common-white);
  color: var(--ts-color-theme-primary);
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--ts-color-theme-primary);
}
.team-item .team-social-wrap .team-social li a:hover {
  background-color: var(--ts-color-theme-primary);
  color: var(--ts-color-common-white);
}
.team-item .team-social-wrap .expand button {
  background-color: var(--ts-color-theme-primary);
  color: var(--ts-color-common-white);
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.team-item:hover .team-img-wrap .hover-shape {
  visibility: visible;
  opacity: 1;
}

/* !END: Team CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.service-item {
  background: var(--ts-color-common-white);
  box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.07);
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease-in-out;
}
.service-item .service-thumb {
  height: 250px;
  width: 100%;
  margin-bottom: 40px;
  position: relative;
}
.service-item .service-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.service-item .service-thumb .rating {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--ts-color-common-white);
  display: flex;
  align-items: center;
  font-family: var(--ts-ff-heading);
  color: var(--ts-color-heading-primary);
  -moz-column-gap: 5px;
       column-gap: 5px;
  padding: 5px 15px;
  font-size: 16px;
  font-weight: 500;
}
.service-item .service-thumb .rating i {
  color: #F7921E;
  font-size: 13px;
  line-height: 2;
}
.service-item .service-thumb .arrow {
  position: absolute;
  bottom: -22.5px;
  right: 25px;
}
.service-item .service-thumb .arrow a {
  background-color: var(--ts-color-common-white);
  color: var(--ts-color-heading-primary);
  height: 55px;
  width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.15);
}
.service-item .service-thumb .arrow a:hover {
  background-color: var(--ts-color-theme-primary);
  color: var(--ts-color-common-white);
}
.service-item .service-content {
  padding: 0 15px;
  padding-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .service-item .service-content {
    padding: 0;
  }
}
.service-item .service-content .title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 10px;
}
.service-item .service-content p {
  margin-bottom: 20px;
}
.service-item .service-content .service-icon-list {
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 10px;
}
.service-item .service-content .service-icon-list li {
  background: rgba(28, 168, 203, 0.1);
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.service-item .service-content .service-icon-list li img {
  transition: all 0.3s ease-in-out;
}
.service-item .service-content .service-icon-list li:hover {
  background-color: var(--ts-color-theme-primary);
}
.service-item .service-content .service-icon-list li:hover img {
  filter: brightness(0) invert(1);
}
.service-item:hover {
  transform: translateY(-5px);
}

.service-promo {
  background: rgba(28, 168, 203, 0.1);
  box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.07);
  padding: 40px;
  display: grid;
  grid-template-columns: 75px 1fr;
  grid-gap: 20px;
  border: 1px solid #253ecc;
  border-radius: 7px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  .service-promo {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 767px) {
  .service-promo {
    padding: 30px 20px;
  }
}
.service-promo .icon {
  background-color: var(--ts-color-common-white);
  height: 75px;
  width: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.service-promo .content .title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}
.service-promo .content p {
  color: #484848;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.service-promo:hover {
  background-color: var(--ts-color-theme-primary);
}
.service-promo:hover .content p,
.service-promo:hover .content .title {
  color: var(--ts-color-common-white);
}

.service-section-2 {
  position: relative;
  z-index: 1;
}
.service-section-2 .bg-shape {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.service-item-2 {
  background-color: var(--ts-color-common-white);
  padding: 45px 30px 40px 30px;
  position: relative;
  z-index: 1;
}
.service-item-2 .border-line {
  background-color: var(--ts-color-theme-primary);
  height: 4px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.service-item-2:before {
  background-color: var(--ts-color-theme-primary);
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}
.service-item-2 .title {
  font-size: 35px;
  font-weight: 500;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .service-item-2 .title {
    font-size: 30px;
  }
}
.service-item-2 .title a {
  transition: all 0.3s ease-in-out;
}
.service-item-2 p {
  font-size: 18px;
  margin-bottom: 80px;
  transition: all 0.3s ease-in-out;
}
.service-item-2 .read-more {
  font-family: var(--ts-ff-heading);
  color: var(--ts-color-theme-primary);
  font-size: 18px;
  font-weight: 400;
  -moz-column-gap: 10px;
       column-gap: 10px;
  display: flex;
  align-items: center;
  justify-content: end;
  transition: all 0.3s ease-in-out;
}
.service-item-2:hover:before {
  height: 100%;
}
.service-item-2:hover p {
  color: var(--ts-color-common-white);
}
.service-item-2:hover .title a {
  color: var(--ts-color-common-white);
}
.service-item-2:hover .read-more {
  color: var(--ts-color-common-white);
}

/* !END: Page Header CSS */
/**----------------------------------------
START: Blog CSS
----------------------------------------*/
.post-card {
    padding: 30px;
    border: 1px solid rgba(225, 254, 110, 0.3);
    transition: all 0.3s ease-in-out;
    background-color: #FFF;
  }
@media only screen and (max-width: 767px) {
  .post-card {
    padding: 30px 20px;
  }
}
.post-card:hover, .post-card.active {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
}
.post-card .post-thumb {
  position: relative;
  height: 298px;
  overflow: hidden;
  border-radius: 5px;
}
.post-card .post-thumb:after {
  background: linear-gradient(90deg, rgba(var(--trails-white-rgb, 255, 255, 255), 0.05) 0px, rgba(var(--trails-white-rgb, 255, 255, 255), 0.05) 77%, rgba(var(--trails-white-rgb, 255, 255, 255), 0.25) 92%, rgba(var(--trails-white-rgb, 255, 255, 255), 0));
  content: "";
  height: 200%;
  left: -210%;
  opacity: 0;
  position: absolute;
  top: -50%;
  transition: all 0.7s ease 0s;
  width: 200%;
}
.post-card .post-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
}
.post-card .post-content .title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 30px;
  text-transform: capitalize;
}
@media only screen and (max-width: 767px) {
  .post-card .post-content .title {
    font-size: 18px;
  }
}
.post-card .post-content .title a {
  background: linear-gradient(var(--ts-color-theme-primary) 0%, var(--ts-color-theme-primary) 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  transition: all 0.4s ease-in-out;
}
.post-card .post-content .title a:hover {
  color: var(--ts-color-theme-primary);
  background-size: 100% 2px;
}
.post-card .post-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
.post-card .post-bottom .read-more {
  color: var(--ts-color-heading-primary);
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
}
.post-card .post-bottom .read-more:hover {
  color: var(--ts-color-theme-primary);
}
.post-card .post-bottom .arrow {
  color: var(--ts-color-theme-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid var(--ts-color-theme-primary);
  border-radius: 50%;
}
.post-card .post-bottom .arrow i {
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
}
.post-card .post-bottom .arrow:hover i {
  transform: rotate(0);
}
.post-card:hover .post-thumb:after {
  left: -30%;
  opacity: 1;
  top: -20%;
  transition-duration: 0.7s, 0.7s, 0.15s;
  transition-property: left, top, opacity;
  transition-timing-function: linear;
}
.post-card:hover .post-thumb img {
  transform: scale(1.05) rotate(0deg);
}

.blog-section-2 {
  background: rgba(28, 168, 203, 0.05);
}

.post-card-2 {
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
}
.post-card-2 .post-thumb {
  background-color: var(--ts-color-grey-1);
  position: relative;
  height: 333px;
}
.post-card-2 .post-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.post-card-2 .post-thumb .post-meta-2 {
  background-color: var(--ts-color-common-white);
  display: flex;
  align-items: center;
  list-style: none;
  padding: 10px 20px;
  flex-wrap: wrap;
  row-gap: 10px;
  width: 86%;
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0px 0px 35px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 767px) {
  .post-card-2 .post-thumb .post-meta-2 {
    padding: 10px;
  }
}
.post-card-2 .post-thumb .post-meta-2:before {
  background-color: #002935;
  content: "";
  width: 16%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 1199px) {
  .post-card-2 .post-thumb .post-meta-2:before {
    width: 15%;
  }
}
@media (max-width: 1199px) {
  .post-card-2 .post-thumb .post-meta-2:before {
    width: 20%;
  }
}
.post-card-2 .post-thumb .post-meta-2 li {
  font-family: var(--ts-ff-body);
  color: #747474;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  line-height: 1;
}
@media only screen and (max-width: 992px) {
  .post-card-2 .post-thumb .post-meta-2 li {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .post-card-2 .post-thumb .post-meta-2 li {
    -moz-column-gap: 5px;
         column-gap: 5px;
    font-size: 12px;
  }
}
.post-card-2 .post-thumb .post-meta-2 li i {
  font-size: 16px;
  color: var(--ts-color-theme-primary);
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .post-card-2 .post-thumb .post-meta-2 li i {
    font-size: 12px;
  }
}
.post-card-2 .post-thumb .post-meta-2 li:not(:last-of-type) {
  margin-right: 30px;
}
@media only screen and (max-width: 992px) {
  .post-card-2 .post-thumb .post-meta-2 li:not(:last-of-type) {
    margin-right: 20px;
  }
}
.post-card-2 .post-thumb .post-meta-2 li:nth-child(1) {
  margin-right: 50px;
}
@media only screen and (max-width: 992px) {
  .post-card-2 .post-thumb .post-meta-2 li:nth-child(1) {
    margin-right: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .post-card-2 .post-thumb .post-meta-2 li:nth-child(1) {
    margin-right: 40px;
  }
}
.post-card-2 .post-thumb .post-meta-2 li.date {
  color: var(--ts-color-common-white);
  text-align: center;
  line-height: 1.1;
}
.post-card-2 .post-thumb .post-meta-2 li.date br {
  display: block;
}
.post-card-2 .post-content {
  background-color: var(--ts-color-common-white);
  padding: 60px 30px 30px 30px;
  border-top: none;
}
@media only screen and (max-width: 767px) {
  .post-card-2 .post-content {
    padding: 30px 20px;
  }
}
.post-card-2 .post-content .title {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  width: 100%;
  margin-bottom: 15px;
  text-transform: capitalize;
}
.post-card-2 .post-content .title a {
  background: linear-gradient(var(--ts-color-theme-primary) 0%, var(--ts-color-theme-primary) 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  transition: all 0.3s ease-in-out;
}
.post-card-2 .post-content .title a:hover {
  color: var(--ts-color-theme-primary);
  background-size: 100% 2px;
}
.post-card-2 .post-content .post-bottom {
  border-top: 1px solid var(--ts-color-border-1);
  margin-top: 30px;
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.post-card-2 .post-content .post-bottom .read-more {
  font-family: var(--ts-ff-heading);
  color: var(--ts-color-heading-primary);
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  line-height: 1;
  transition: all 0.3s ease-in-out;
}
.post-card-2 .post-content .post-bottom .read-more:hover {
  color: var(--ts-color-theme-primary);
}
.post-card-2 .post-content .post-bottom .icon {
  color: var(--ts-color-heading-primary);
  transition: all 0.3s ease-in-out;
}
.post-card-2 .post-content .post-bottom .icon:hover {
  color: var(--ts-color-theme-primary);
}

.blog-section-3 {
  position: relative;
  z-index: 1;
}
.blog-section-3 .bg-shape {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.post-card-3 {
  box-shadow: inherit;
}
.post-card-3 .post-content-wrap {
  background-color: transparent;
  padding: 0;
}
.post-card-3 .post-content-wrap .post-content {
  background-color: transparent;
  box-shadow: inherit;
  padding: 0;
}
.post-card-3 .post-content-wrap .post-content .title a {
  background: transparent;
}
.post-card-3 .post-content-wrap .post-content .post-meta {
  margin-top: 30px;
}
.post-card-3 .post-content-wrap .post-content .post-meta li {
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  color: #8D8F96;
  text-transform: uppercase;
}
.post-card-3 .post-content-wrap .post-content .border-line {
  background-color: rgba(95, 95, 95, 0.67);
  width: 100%;
  height: 2px;
  position: relative;
  margin-bottom: 30px;
  margin-top: 20px;
}
.post-card-3 .post-content-wrap .post-content .border-line:before {
  background-color: var(--ts-color-theme-primary);
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
}
.post-card-3 .post-content-wrap .post-content .post-bottom {
  border: none;
  padding-top: 0;
  margin-top: 0;
}
.post-card-3 .post-content-wrap .post-content .post-bottom .read-more {
  color: #848484;
}
.post-card-3 .post-content-wrap .post-content .post-bottom .read-more i {
  background-color: var(--ts-color-theme-primary);
  height: 22px;
  width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  border-radius: 50%;
  color: var(--ts-color-common-white);
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
}
.post-card-3 .post-content-wrap .post-content .post-bottom .read-more:hover {
  color: var(--ts-color-theme-primary);
}
.post-card-3 .post-content-wrap .post-content .post-bottom .read-more:hover i {
  transform: rotate(0);
}
.post-card-3:hover .post-content-wrap .post-content .border-line:before {
  width: 100%;
}

.inner-post {
  box-shadow: none;
}
.inner-post:not(:last-of-type) {
  margin-bottom: 50px;
}
.inner-post .post-thumb {
  height: 470px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 992px) {
  .inner-post .post-thumb {
    height: 350px;
  }
}
.inner-post .post-thumb img {
  border-radius: 5px;
}
.inner-post .post-content-wrap .post-content {
  padding: 0;
}
.inner-post .post-content-wrap .post-content .post-meta li {
  font-size: 15px;
  font-weight: 400;
}
.inner-post .post-content-wrap .post-content .post-meta li span {
  color: var(--ts-color-heading-primary);
  display: inline-block;
  margin-right: 5px;
}
.inner-post .post-content-wrap .post-content .title {
  font-size: 36px;
}
@media only screen and (max-width: 992px) {
  .inner-post .post-content-wrap .post-content .title {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .inner-post .post-content-wrap .post-content .title {
    font-size: 26px;
  }
}
.inner-post .post-content-wrap .post-content p {
  margin-bottom: 25px;
}
.inner-post .post-content-wrap .post-content .read-more {
  color: var(--ts-color-theme-primary);
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.post-meta {
  display: flex;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
  row-gap: 10px;
  margin-bottom: 20px;
}
.post-meta li {
  font-family: var(--ts-ff-body);
  color: var(--ts-color-theme-primary);
  font-size: 16px;
  font-weight: 500;
  text-transform: inherit;
  display: flex;
  align-items: center;
  line-height: 1;
}
.post-meta li i {
  font-size: 14px;
}
.post-meta li:not(:last-of-type) {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid var(--ts-color-border-1);
}
.post-meta li a:hover {
  color: var(--ts-color-theme-primary);
}
@media only screen and (max-width: 767px) {
  .post-meta li {
    font-size: 12px;
  }
}
.post-meta li.category-text {
  color: var(--ts-ff-body);
}

.pagination-wrap {
  display: flex;
  align-items: center;
  list-style: none;
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin-top: 100px;
}
@media only screen and (max-width: 992px) {
  .pagination-wrap {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 992px) {
  .pagination-wrap {
    margin-top: 50px;
  }
}
.pagination-wrap li a {
  background-color: var(--ts-color-grey-1);
  color: var(--ts-color-heading-primary);
  font-weight: 500;
  height: 50px;
  width: 50px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 1px solid var(--ts-color-border-1);
  border-radius: 50%;
}
.pagination-wrap li a:hover {
  background-color: var(--ts-color-theme-primary);
  color: var(--ts-color-common-white);
  border: 1px solid var(--ts-color-theme-primary);
}
.pagination-wrap li .active {
  background-color: var(--ts-color-theme-primary);
  color: var(--ts-color-common-white);
  border: 1px solid var(--ts-color-theme-primary);
}

/* !END: Theme Blog CSS */
/**----------------------------------------
    START: Booking CSS
----------------------------------------*/
.booking-section {
  position: relative;
  z-index: 1;
}
.booking-section .bg-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
.booking-section .overlay {
  background-color: rgba(0, 0, 0, 0.45);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.booking-content {
  max-width: 620px;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .booking-content {
    max-width: 100%;
    margin-top: 40px;
  }
}
.booking-content .section-heading .section-title {
  font-size: 48px;
}
@media only screen and (max-width: 992px) {
  .booking-content .section-heading .section-title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .booking-content .section-heading .section-title {
    font-size: 28px;
  }
}
.booking-content .booking-form .form-item {
  position: relative;
}
.booking-content .booking-form .form-item .form-control {
  background-color: var(--ts-color-common-white);
  font-family: var(--ts-ff-heading);
  color: var(--ts-color-heading-primary);
  font-size: 16px;
  font-weight: 500;
  box-shadow: none;
  border: none;
  padding: 20.5px 25px;
  border-radius: 7px;
  margin-bottom: 24px;
  width: 100%;
}
.booking-content .booking-form .form-item .form-control::-webkit-input-placeholder {
  color: var(--ts-color-heading-primary);
  font-size: 16px;
  font-weight: 500;
}
.booking-content .booking-form .form-item .form-control:-moz-placeholder {
  color: var(--ts-color-heading-primary);
  font-size: 16px;
  font-weight: 500;
}
.booking-content .booking-form .form-item .form-control::-moz-placeholder {
  color: var(--ts-color-heading-primary);
  font-size: 16px;
  font-weight: 500;
}
.booking-content .booking-form .form-item .form-control:-ms-input-placeholder {
  color: var(--ts-color-heading-primary);
  font-size: 16px;
  font-weight: 500;
}
.booking-content .booking-form .form-item .form-control.nice-select {
  height: auto;
  line-height: inherit;
  padding: 19.5px 25px;
}
.booking-content .booking-form .form-item .form-control.nice-select:after {
  top: 46%;
  width: 10px;
  height: 10px;
  border-color: var(--ts-color-theme-primary);
  border-bottom: 1px solid var(--ts-color-theme-primary);
  border-right: 1px solid var(--ts-color-theme-primary);
  right: 25px;
}
.booking-content .booking-form .form-item .form-control.nice-select .list {
  background-color: var(--ts-color-grey-1);
  width: 100%;
}
.booking-content .booking-form .form-item .form-control.nice-select .list li {
  padding-left: 30px;
}
.booking-content .booking-form .form-item .icon {
  color: var(--ts-color-theme-primary);
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}
.booking-content .booking-form .form-item.message-item .icon {
  top: 25px;
}
.booking-content .booking-form .submit-btn {
  margin-top: 25px;
}

/* !END: Booking CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.page-header {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.page-header .page-header-content {
  padding: 181px 0;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 992px) {
  .page-header .page-header-content {
    padding: 100px 0 100px 0;
  }
}
.page-header .page-header-content .title {
  font-size: 70px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .page-header .page-header-content .title {
    line-height: 1.3em;
  }
}
@media only screen and (max-width: 992px) {
  .page-header .page-header-content .title {
    font-size: 48px;
  }
}
@media only screen and (max-width: 767px) {
  .page-header .page-header-content .title {
    font-size: 29px;
  }
}
.page-header .page-header-content span {
  color: var(--ts-color-theme-primary);
  font-size: 24px;
  font-weight: 600;
  display: block;
}

/* !END: Page Header CSS */
/**----------------------------------------
START: Contact CSS
----------------------------------------*/
.contact-box {
  background-color: var(--ts-color-theme-primary);
  padding: 60px 55px;
  border-radius: 5px;
}
@media only screen and (max-width: 992px) {
  .contact-box {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .contact-box {
    padding: 40px 20px;
  }
}
.contact-box .contact-info .rating-title {
  color: var(--ts-color-common-white);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1;
}
.contact-box .contact-info .rating-list {
  display: flex;
  align-items: center;
  list-style: none;
}
.contact-box .contact-info .rating-list li {
  color: #FFC107;
}
.contact-box .contact-info .rating-list li:not(:last-of-type) {
  margin-right: 5px;
}
.contact-box .contact-info span {
  color: var(--ts-color-common-white);
  display: block;
  margin-top: 20px;
}

.contact-items {
  margin-bottom: 60px;
}
.contact-items .contact-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  grid-gap: 10px;
}
@media only screen and (max-width: 767px) {
  .contact-items .contact-item {
    grid-template-columns: 1fr;
  }
}
.contact-items .contact-item:not(:last-of-type) {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.contact-items .contact-item .icon {
  color: var(--ts-color-common-white);
  font-size: 35px;
}
.contact-items .contact-item .content span {
  color: var(--ts-color-common-white);
  font-size: 16px;
  font-weight: 400;
  display: block;
  margin-bottom: 7px;
}
.contact-items .contact-item .content .title {
  color: var(--ts-color-common-white);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 0;
}
.contact-items .contact-item .content .title a {
  color: var(--ts-color-common-white);
}

.contact-form {
  padding-left: 30px;
}
@media only screen and (max-width: 992px) {
  .contact-form {
    padding-left: 0;
  }
}
.contact-form .form-item .form-control {
  border: 1px solid rgba(28, 168, 203, 0.15);
  border-radius: 3px;
  box-shadow: none;
  padding: 12px 20px;
  margin-bottom: 20px;
}

.map-wrapper {
  margin-bottom: -10px;
}

/* !END: Theme Contact CSS */
/**----------------------------------------
    START: FAQ CSS
----------------------------------------*/
.faq-section {
  background: rgba(28, 168, 203, 0.03);
  position: relative;
  z-index: 1;
}
.faq-section .shapes .shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.faq-section .shapes .shape-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.faq-content .accordion-item {
  background-color: transparent;
  border: none;
  box-shadow: none;
}
.faq-content .accordion-item:not(:last-of-type) {
  margin-bottom: 40px;
}
.faq-content .accordion-item .accordion-button {
  background-color: transparent;
  font-size: 24px;
  font-weight: 500;
  border: none;
  box-shadow: none;
  padding: 0;
  border-bottom: 1px solid rgba(221, 221, 221, 0.6);
  padding-bottom: 25px;
}
@media only screen and (max-width: 767px) {
  .faq-content .accordion-item .accordion-button {
    font-size: 18px;
  }
}
.faq-content .accordion-item .accordion-button:after {
  color: var(--ts-color-theme-primary);
  background-image: none;
  font-family: "Font Awesome 6 Pro";
  content: "\f054";
  font-size: 14px;
  font-weight: 400;
}
.faq-content .accordion-item .accordion-button:not(.collapsed) {
  border-bottom: 1px solid var(--ts-color-theme-primary);
}
.faq-content .accordion-item .accordion-button:not(.collapsed):after {
  content: "\f078";
  transform: rotate(0);
}
.faq-content .accordion-item .accordion-body {
  padding: 0;
  padding-top: 25px;
}
.faq-content .accordion-item .accordion-body p {
  margin-bottom: 0;
}

.faq-img {
  max-width: 537px;
  width: 100%;
  height: 566px;
  margin-left: 70px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .faq-img {
    height: 400px;
  }
}
.faq-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
@media (max-width: 1199px) {
  .faq-img {
    margin-left: 0;
  }
}
@media only screen and (max-width: 992px) {
  .faq-img {
    margin: 0 auto;
    margin-top: 40px;
  }
}
.faq-img .img-shape .shape-1 {
  position: absolute;
  top: 0;
  left: 35px;
}
.faq-img .img-shape .shape-2 {
  position: absolute;
  bottom: 0;
  right: -95px;
}

/* !END: FAQ CSS */
/**----------------------------------------
    START: Sponsor CSS
----------------------------------------*/
.hero-sponsor-wrap {
  max-width: 1590px;
  width: 100%;
  margin: 0 auto;
  padding: 90px 0;
}
@media only screen and (max-width: 767px) {
  .hero-sponsor-wrap {
    padding: 50px 0;
  }
}

/* !END: Sponsor CSS */
/**----------------------------------------
START: Sidebar CSS
----------------------------------------*/
#sidebar-overlay,
.sidebar-trigger,
.sidebar-area {
  display: none;
}

.sidebar-trigger {
  display: block;
}

.sidebar-area {
  background-color: var(--ts-color-bg-1);
  border-left: 1px solid var(--ts-color-border-1);
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  width: 450px;
  height: 100%;
  z-index: 99;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow-y: auto;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  padding: 60px 40px;
}

.open-sidebar .sidebar-area {
  right: 0;
  visibility: visible;
  transform: translate(0);
}

.sidebar-trigger.close {
  position: absolute;
  right: 30px;
  top: 63px;
  color: var(--grey-color);
  transition: all 0.3s ease-in-out;
}
.sidebar-trigger.close:hover {
  color: var(--ts-color-theme-primary);
}

.sidebar-trigger.close svg {
  fill: currentColor;
  stroke: none;
  width: 20px;
  height: 20px;
}

.sidebar-content .site-logo {
  margin-bottom: 40px;
}

.sidebar-content .site-logo img {
  max-width: 200px;
}

.sidebar-content .sidebar-info li {
  font-size: 18px;
}

.sidebar-content .sidebar-social li {
  display: inline-block;
  margin: 0 3px;
  padding-top: 30px;
}

.sidebar-content .sidebar-social li a {
  display: inline-block;
  border: 1px solid var(--border-1);
  font-size: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sidebar-content .sidebar-social li a:after {
  background-color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 59%;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 1;
  transform: translate(-50%, -50%) scale(0);
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
}

.sidebar-content .sidebar-social li a:hover {
  border: 1px solid var(--primary-color);
  color: #fff;
}

.sidebar-content .sidebar-social li:hover a:after {
  visibility: visible;
  opacity: 1;
  transition: 0.4s;
  transform: translate(-50%, -50%) scale(1);
}

.sidebar-content .list-post-area {
  margin: 50px 0 20px 0;
}

/*Scrollbar Style*/
.sidebar-area::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.sidebar-area::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: #ccc;
}

.sidebar-area::-moz-selection {
  background-color: #999;
  color: #fff;
}

.sidebar-area::selection {
  background-color: #999;
  color: #fff;
}

.sidebar-area-webkit-::-moz-selection {
  background-color: #999;
  color: #fff;
}

.sidebar-area-webkit-::selection {
  background-color: #999;
  color: #fff;
}

.sidebar-area::-moz-selection {
  background-color: #999;
  color: #fff;
}

#sidebar-overlay {
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  transition: all 0s ease-in-out;
  width: calc(100% - 400px);
  z-index: -1;
}

.open-sidebar #sidebar-overlay {
  opacity: 1;
  z-index: 1002;
  transition: all 0.6s ease-in-out;
  transition-delay: 0.3s;
}

@media (max-width: 992px) {
  .sidebar-content .list-post-area.list-2 {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
  .sidebar-area {
    width: 400px;
    padding: 60px 30px;
    justify-content: center;
  }
  .side-menu-logo {
    margin-bottom: 50px;
  }
  .side-menu-wrap {
    margin-bottom: 70px;
  }
  .side-menu-header h3 {
    display: none;
  }
  .side-menu-list li a {
    font-size: 14px;
  }
  .side-menu-list li p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .sidebar-area {
    width: 320px;
    padding: 60px 20px 60px 20px;
  }
  .sidebar-content .list-post-area.list-2 .list-post-card .post-img {
    height: 90px;
    width: 90px;
  }
  .sidebar-content .list-post-area.list-2 .list-post-card {
    grid-template-columns: 90px 1fr;
  }
}
.side-menu-logo {
  max-width: 150px;
}

.side-menu-about {
  margin: 50px 0 50px 0;
}
@media only screen and (max-width: 992px) {
  .side-menu-about {
    display: none;
  }
}

.side-menu-about p {
  margin: 25px 0;
}

.side-menu-header h3 {
  font-size: 30px;
  font-weight: 600px;
  line-height: 1;
  font-weight: 600;
}

.side-menu-content .side-menu-header,
.side-menu-about .side-menu-header {
  margin-bottom: 20px;
}

.side-menu-list {
  margin: 25px 0 35px 0;
}

.side-menu-list li {
  display: flex;
  align-items: center;
}

.side-menu-list li:not(:last-of-type) {
  margin-bottom: 20px;
}

.side-menu-list li i {
  background-color: var(--ts-color-theme-primary);
  font-size: 12px;
  color: var(--ts-color-common-white);
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 1px solid var(--ts-color-border-1);
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
}

.side-menu-list li:hover i {
  background-color: var(--ts-color-theme-primary);
  color: #fff;
}

.side-menu-list li p {
  padding-left: 10px;
  margin-bottom: 0;
}

.side-menu-list li a {
  font-size: 16px;
  color: var(--ts-color-text-body);
  padding-left: 10px;
}
.side-menu-list li a:hover {
  color: var(--ts-color-theme-primary);
}

.side-menu-social {
  margin-top: 40px;
  list-style: none;
}
.side-menu-social li {
  display: inline-flex;
}
.side-menu-social li:not(:last-of-type) {
  margin-right: 10px;
}
.side-menu-social li a {
  background-color: var(--ts-color-border-1);
  font-size: 17px;
  color: var(--ts-color-common-white);
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ts-color-border-1);
}
.side-menu-social li a:hover {
  background-color: var(--ts-color-theme-primary);
  color: var(--ts-color-common-white);
}

/* !END: Sidebar CSS */
/**----------------------------------------
START: Blog Details CSS
----------------------------------------*/
.blog-grid-container {
  max-width: 1315px;
}

.blog-details-img {
  width: 100%;
  height: 400px;
  position: relative;
}
.blog-details-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
@media only screen and (max-width: 767px) {
  .blog-details-img {
    height: 300px;
  }
}
.blog-details-img .category {
  background-color: var(--ts-color-theme-primary);
  color: var(--ts-color-common-white);
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  padding: 8px 25px;
  position: absolute;
  top: 30px;
  left: 30px;
  border-radius: 5px;
}

.blog-details-meta li {
  color: var(--ts-color-heading-primary);
  font-weight: 400;
  font-size: 16px;
}
.blog-details-meta li:not(:last-of-type) {
  border: none;
  margin-right: 20px;
  padding: 0;
}
.blog-details-meta li i {
  color: var(--ts-color-theme-primary);
  margin-right: 10px;
  font-size: 16px;
}

@media only screen and (max-width: 992px) {
  .blog-details-content {
    margin-bottom: 40px;
  }
}
.blog-details-content .details-title {
  font-size: 32px;
  font-weight: 500;
  margin-top: 30px;
}
@media only screen and (max-width: 992px) {
  .blog-details-content .details-title {
    font-size: 24px;
  }
}
.blog-details-content .details-img-wrap {
  display: grid;
  align-items: center;
  grid-template-columns: 270px 1fr;
  grid-gap: 24px;
}
@media only screen and (max-width: 767px) {
  .blog-details-content .details-img-wrap {
    grid-template-columns: 1fr;
  }
}
.blog-details-content .details-img-wrap img {
  width: 100%;
  height: 230px;
  border-radius: 5px;
}
@media (max-width: 1199px) {
  .blog-details-content .details-img-wrap img {
    max-width: 280px;
  }
}
@media only screen and (max-width: 992px) {
  .blog-details-content .details-img-wrap img {
    max-width: 350px;
  }
}

blockquote .content p {
  font-family: var(--ts-ff-heading);
  color: var(--ts-color-heading-primary);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 0;
}

.tags {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 30px;
       column-gap: 30px;
  flex-wrap: wrap;
  row-gap: 30px;
  margin-bottom: 40px;
}
.tags .tag-left {
  display: flex;
  align-items: center;
}
.tags .tag-left .tag-list {
  list-style: none;
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
  flex-wrap: wrap;
  row-gap: 15px;
}
.tags .tag-left .tag-list li a {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--ts-color-heading-primary);
  padding: 8px 20px;
  border: 1px solid var(--ts-color-border-1);
  border-radius: 100px;
}
.tags .tag-left .tag-list li a:hover {
  background-color: var(--ts-color-theme-primary);
  color: var(--ts-color-common-white);
  border: 1px solid var(--ts-color-theme-primary);
}
.tags .social-list-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 10px;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.tags .social-list-wrap .follow {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1;
}
.tags .social-list-wrap .social-list {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
  list-style: none;
  line-height: 1;
}
.tags .social-list-wrap .social-list li:not(:last-of-type) {
  margin-right: 10px;
}
.tags .social-list-wrap .social-list li a {
  color: var(--ts-color-heading-primary);
  font-size: 15px;
}
.tags .social-list-wrap .social-list li a:hover {
  color: var(--ts-color-theme-primary);
}

.blog-author-item {
  margin-top: 50px;
  margin-bottom: 50px;
}
.blog-author-item .blog-author-wrap {
  display: grid;
  align-items: center;
  grid-template-columns: 60px 1fr;
  grid-gap: 15px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .blog-author-item .blog-author-wrap {
    grid-template-columns: 1fr;
  }
}
.blog-author-item .blog-author-wrap .author-img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--ts-color-theme-primary);
}
.blog-author-item .blog-author-wrap .author-img img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-author-item .blog-author-wrap .name {
  color: var(--ts-color-heading-primary);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;
}
.blog-author-item .blog-author-wrap .name span {
  font-family: var(--ts-ff-body);
  color: var(--ts-color-text-body);
  font-weight: 400;
  display: block;
  font-size: 15px;
  margin-top: 5px;
}
.blog-author-item .content {
  display: grid;
  grid-template-columns: 60px 1fr;
  grid-gap: 15px;
}
.blog-author-item .content .social-list {
  list-style: none;
  padding-left: 22px;
  transform: translateY(10px);
}
.blog-author-item .content .social-list li {
  font-size: 16px;
  color: var(--ts-color-heading-primary);
  line-height: 1;
}
.blog-author-item .content .social-list li:not(:last-of-type) {
  margin-bottom: 15px;
}
.blog-author-item .content p {
  line-height: 2;
  margin-bottom: 0;
}

.comments-area .section-heading {
  margin-bottom: 40px;
}
.comments-area .section-heading .section-title {
  font-size: 22px;
  font-weight: 500;
}

.comment-item {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  grid-gap: 15px;
}
@media only screen and (max-width: 767px) {
  .comment-item {
    grid-template-columns: 1fr;
  }
}
.comment-item .comment-thumb {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--ts-color-theme-primary);
}
.comment-item .comment-thumb img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.comment-item .comment-info .author {
  color: var(--ts-color-heading-primary);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10;
}
.comment-item .comment-info .comment-meta {
  display: flex;
  align-items: center;
  list-style: none;
}
.comment-item .comment-info .comment-meta li {
  color: var(--ts-color-theme-primary);
  cursor: pointer;
  font-size: 12px;
}
.comment-item .comment-info .comment-meta li i {
  font-size: 12px;
  margin-right: 5px;
}
.comment-item .comment-info .comment-meta li:not(:last-of-type) {
  margin-right: 15px;
}
.comment-item .comment-info .comment-form {
  display: grid;
  align-items: center;
  grid-template-columns: 40px 1fr;
  grid-gap: 15px;
  margin-top: 30px;
}
.comment-item .comment-info .comment-form .reply-author {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: 1px dashed var(--ts-color-theme-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.comment-item .comment-info .comment-form .reply-author img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}
.comment-item .comment-info .comment-form .comment-form-inner {
  max-width: 450px;
  width: 100%;
}
.comment-item .comment-info .comment-form .comment-form-inner .form-control {
  background-color: #F8F8F8;
  padding: 8.5px 20px;
  box-shadow: none;
  border: 1px solid var(--ts-color-border-1);
  border-radius: 100px;
  font-size: 12px;
  line-height: 1;
}
.comment-item .comment-info .comment-form .comment-form-inner .form-control::-webkit-input-placeholder {
  font-size: 12px;
}
.comment-item .comment-info .comment-form .comment-form-inner .form-control:-moz-placeholder {
  font-size: 12px;
}
.comment-item .comment-info .comment-form .comment-form-inner .form-control::-moz-placeholder {
  font-size: 12px;
}
.comment-item .comment-info .comment-form .comment-form-inner .form-control:-ms-input-placeholder {
  font-size: 12px;
}

.blog-contact-form {
  padding: 45px 25px;
  box-shadow: 0px 3px 13.5px rgba(66, 31, 210, 0.0705882);
}
@media only screen and (max-width: 767px) {
  .blog-contact-form {
    padding: 30px 20px;
  }
}
.blog-contact-form .title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 30px;
}
.blog-contact-form .request-form .form-item {
  position: relative;
}
.blog-contact-form .request-form .form-item .form-control {
  background-color: rgba(242, 242, 242, 0.5);
  color: #B8B7BE;
  font-size: 16px;
  font-weight: 400;
  box-shadow: none;
  border: none;
  padding: 15.5px 30px;
  padding-left: 45px;
  border-radius: 0;
  margin-bottom: 25px;
  width: 100%;
}
.blog-contact-form .request-form .form-item .form-control::-webkit-input-placeholder {
  color: #B8B7BE;
  font-size: 16px;
  font-weight: 400;
}
.blog-contact-form .request-form .form-item .form-control:-moz-placeholder {
  color: #B8B7BE;
  font-size: 16px;
  font-weight: 400;
}
.blog-contact-form .request-form .form-item .form-control::-moz-placeholder {
  color: #B8B7BE;
  font-size: 16px;
  font-weight: 400;
}
.blog-contact-form .request-form .form-item .form-control:-ms-input-placeholder {
  color: #B8B7BE;
  font-size: 16px;
  font-weight: 400;
}
.blog-contact-form .request-form .form-item .icon {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  color: #B8B7BE;
}
.blog-contact-form .request-form .form-item.message-item .icon {
  top: 27px;
}
.blog-contact-form .request-form .form-item.message-item .form-control {
  padding-left: 50px;
}
.blog-contact-form .submit-btn .ts-primary-btn {
  width: 100%;
  justify-content: center;
}

.sidebar-widget {
  background-color: #F5F5F5;
  padding: 30px;
  border-radius: 4px;
}
.sidebar-widget:not(:last-of-type) {
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .sidebar-widget {
    padding: 30px 20px;
  }
}
.sidebar-widget .search-form {
  position: relative;
}
.sidebar-widget .search-form .form-control {
  background-color: var(--ts-color-common-white);
  color: var(--ts-color-text-body);
  font-size: 16px;
  border: none;
  box-shadow: none;
  padding: 18px 0;
  padding-left: 20px;
  padding-right: 65px;
  border-radius: 4px;
}
.sidebar-widget .search-form .form-control::-webkit-input-placeholder {
  color: var(--ts-color-text-body);
  font-size: 16px;
}
.sidebar-widget .search-form .form-control:-moz-placeholder {
  color: var(--ts-color-text-body);
  font-size: 16px;
}
.sidebar-widget .search-form .form-control::-moz-placeholder {
  color: var(--ts-color-text-body);
  font-size: 16px;
}
.sidebar-widget .search-form .form-control:-ms-input-placeholder {
  color: var(--ts-color-text-body);
  font-size: 16px;
}
.sidebar-widget .search-form .search-btn {
  background-color: var(--ts-color-theme-primary);
  color: var(--ts-color-common-white);
  height: 100%;
  width: 60px;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  border-radius: 0 4px 4px 0;
}
.sidebar-widget .widget-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(13, 14, 20, 0.1);
}
.sidebar-widget .category-check-wrap .category-check-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar-widget .category-check-wrap .category-check-item:not(:last-of-type) {
  margin-bottom: 20px;
}
.sidebar-widget .category-check-wrap .category-check-item .form-check {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.sidebar-widget .category-check-wrap .category-check-item .form-check .form-check-input {
  height: 25px;
  width: 25px;
  margin-top: -1px;
  box-shadow: none;
}
.sidebar-widget .category-check-wrap .category-check-item .form-check .form-check-label {
  color: #1C231F;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}
.sidebar-widget .category-check-wrap .category-check-item span {
  color: #1C231F;
  font-size: 15px;
  font-weight: 400;
}
.sidebar-widget .tags {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  row-gap: 10px;
  list-style: none;
  -moz-column-gap: 0;
       column-gap: 0;
  margin: 0;
}
.sidebar-widget .tags li:not(:last-of-type) {
  margin-right: 10px;
}
.sidebar-widget .tags li a {
  background-color: var(--ts-color-common-white);
  font-family: var(--ts-ff-body);
  color: var(--ts-color-heading-primary);
  font-size: 16px;
  font-weight: 400;
  padding: 10px 20px;
  border-radius: 4px;
  display: inline-block;
}
.sidebar-widget .tags li a:hover {
  background-color: var(--ts-color-theme-primary);
  color: var(--ts-color-common-white);
}
.sidebar-widget .sidebar-post {
  display: grid;
  align-items: center;
  grid-template-columns: 95px 1fr;
  grid-gap: 0px;
}
.sidebar-widget .sidebar-post:not(:last-of-type) {
  margin-bottom: 20px;
}
.sidebar-widget .sidebar-post img {
  width: 100px;
  height: 90px;
  -o-object-fit: cover;
     object-fit: cover;
}
.sidebar-widget .sidebar-post .post-content {
  padding-left: 20px;
}
@media only screen and (max-width: 767px) {
  .sidebar-widget .sidebar-post .post-content {
    padding-left: 10px;
  }
}
.sidebar-widget .sidebar-post .post-content .post-meta {
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 5px;
  margin-bottom: 0px;
}
@media only screen and (max-width: 767px) {
  .sidebar-widget .sidebar-post .post-content .post-meta {
    -moz-column-gap: 5px;
         column-gap: 5px;
  }
}
.sidebar-widget .sidebar-post .post-content .post-meta li {
  color: var(--ts-color-text-body);
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  text-transform: capitalize;
}
@media only screen and (max-width: 767px) {
  .sidebar-widget .sidebar-post .post-content .post-meta li {
    font-size: 13px;
  }
}
.sidebar-widget .sidebar-post .post-content .title {
  font-size: 17px;
  margin-bottom: 10px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .sidebar-widget .sidebar-post .post-content .title {
    font-size: 15px;
  }
}
.sidebar-widget .sidebar-post .post-content .title a:hover {
  color: var(--ts-color-theme-primary);
}
.sidebar-widget .sidebar-form .form-item {
  position: relative;
}
.sidebar-widget .sidebar-form .form-item .form-control {
  background-color: var(--ts-color-common-white);
  color: var(--ts-color-text-body);
  box-shadow: none;
  border: none;
  font-size: 15px;
  font-weight: 400;
  padding: 20.5px 45px 20.5px 20px;
  line-height: 1;
  margin-bottom: 15px;
}
.sidebar-widget .sidebar-form .form-item .icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.sidebar-widget .sidebar-form button {
  width: 100%;
  justify-content: center;
}

/* !END: Theme Blog Details CSS */
/**----------------------------------------
START: Footer CSS
----------------------------------------*/
.footer-section {
  position: relative;
  z-index: 1;
}
.footer-section .bg-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
.footer-section .overlay {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media only screen and (max-width: 992px) {
  .footer-wrap {
    margin-top: 50px;
  }
}

.footer-widget {
  padding: 90px 0;
}
@media only screen and (max-width: 992px) {
  .footer-widget {
    padding: 0;
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-widget {
    margin-bottom: 50px;
  }
}
.footer-widget .widget-header {
  margin-bottom: 35px;
}
.footer-widget .widget-header .footer-logo {
  max-width: 200px;
}
.footer-widget .widget-header .widget-title {
  color: var(--ts-color-common-white);
  font-size: 24px;
  font-weight: 600;
}
.footer-widget p {
  color: var(--ts-color-common-white);
  margin-bottom: 30px;
}
.footer-widget .footer-list {
  list-style: none;
}
.footer-widget .footer-list li {
  color: rgba(255, 255, 255, 0.8);
}
.footer-widget .footer-list li a {
  font-family: var(--ts-ff-body);
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}
.footer-widget .footer-list li a:hover {
  color: var(--ts-color-theme-primary);
}
.footer-widget .footer-list li:not(:last-of-type) {
  margin-bottom: 25px;
}
.footer-widget .address-list .adress-item {
  display: grid;
  grid-template-columns: 30px 1fr;
  grid-gap: 10px;
}
.footer-widget .address-list .adress-item:not(:last-of-type) {
  margin-bottom: 15px;
}
.footer-widget .address-list .adress-item .icon {
  color: var(--ts-color-theme-primary);
  font-size: 20px;
}
.footer-widget .address-list .adress-item .content .title {
  color: var(--ts-color-common-white);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 5px;
}
.footer-widget .address-list .adress-item .content a,
.footer-widget .address-list .adress-item .content span {
  color: #EBEBEB;
  font-size: 16px;
  font-weight: 400;
}
.footer-widget .address-list .adress-item .content a:hover {
  color: var(--ts-color-theme-primary);
}
.footer-widget .footer-gallery-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
  max-width: 278px;
  width: 100%;
}
.footer-widget .social-list {
  display: flex;
  align-items: center;
  list-style: none;
}
.footer-widget .social-list li a {
  background-color: transparent;
  color: var(--ts-color-theme-primary);
  font-size: 14px;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  display: block;
  border: 1px solid var(--ts-color-theme-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-widget .social-list li a:hover {
  background-color: var(--ts-color-theme-primary);
  color: var(--ts-color-common-white);
}
.footer-widget .social-list li:not(:last-of-type) {
  margin-right: 10px;
}
.footer-widget .form-check {
  margin-top: 30px;
}
.footer-widget .form-check .form-check-input {
  background-color: var(--ts-color-border-1);
  border: none;
  box-shadow: none;
  height: 17px;
  width: 17px;
}
.footer-widget .form-check .form-check-input:checked[type=checkbox] {
  box-shadow: none;
}
.footer-widget .form-check .form-check-label {
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
}
.footer-widget.footer-col-2 {
  padding-left: 105px;
  position: relative;
}
@media (max-width: 1199px) {
  .footer-widget.footer-col-2 {
    padding-left: 50px;
  }
}
@media only screen and (max-width: 992px) {
  .footer-widget.footer-col-2 {
    padding-left: 0;
  }
}
.footer-widget.footer-col-2:before {
  background-color: rgba(219, 219, 219, 0.25);
  content: "";
  width: 1px;
  height: 3000px;
  position: absolute;
  bottom: 0;
  left: 50px;
}
@media (max-width: 1199px) {
  .footer-widget.footer-col-2:before {
    display: none;
  }
}
.footer-widget.footer-col-2 .footer-list li a {
  color: var(--ts-color-common-white);
  position: relative;
  padding-left: 15px;
  font-size: 18px;
  font-weight: 500;
}
.footer-widget.footer-col-2 .footer-list li a:hover {
  color: var(--ts-color-theme-primary);
}
.footer-widget.footer-col-2 .footer-list li a:before {
  background-color: var(--ts-color-common-white);
  content: "";
  height: 5px;
  width: 5px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}
.footer-widget.footer-col-2 .footer-list li a:hover:before {
  color: var(--ts-color-theme-primary);
}
.footer-widget.widget-3 {
  padding-left: 40px;
}
@media (max-width: 1199px) {
  .footer-widget.widget-3 {
    padding-left: 0;
  }
}
.footer-widget.gallary-widget {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .footer-widget.gallary-widget {
    padding-left: 0;
  }
}

.footer-top {
  padding-top: 50px;
}
@media (max-width: 1199px) {
  .footer-top {
    border-bottom: 1px solid rgba(219, 219, 219, 0.25);
  }
}
.footer-top .footer-subscribe-wrap {
  display: flex;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  justify-content: end;
  position: relative;
  padding-bottom: 40px;
}
@media (max-width: 1199px) {
  .footer-top .footer-subscribe-wrap {
    justify-content: start;
    align-items: baseline;
  }
}
@media only screen and (max-width: 992px) {
  .footer-top .footer-subscribe-wrap {
    flex-direction: column;
    row-gap: 20px;
    justify-content: center;
    align-items: center;
  }
}
.footer-top .footer-subscribe-wrap:before {
  background-color: rgba(219, 219, 219, 0.25);
  content: "";
  width: 3000px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50px;
}
@media (max-width: 1199px) {
  .footer-top .footer-subscribe-wrap:before {
    display: none;
  }
}
.footer-top .footer-subscribe-wrap .footer-subscribe-title {
  color: var(--ts-color-common-white);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .footer-top .footer-subscribe-wrap .footer-subscribe-title {
    text-align: center;
  }
}
.footer-top .footer-subscribe-wrap .ts-subscribe-form {
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media only screen and (max-width: 767px) {
  .footer-top .footer-subscribe-wrap .ts-subscribe-form {
    flex-direction: column;
    row-gap: 10px;
    align-items: center;
    justify-content: center;
  }
}
.footer-top .footer-subscribe-wrap .ts-subscribe-form .form-control {
  width: 340px;
  padding: 14.5px 20px;
  box-shadow: none;
  border: none;
}
@media only screen and (max-width: 767px) {
  .footer-top .footer-subscribe-wrap .ts-subscribe-form .form-control {
    width: 300px;
  }
}

.copyright-area {
  border-top: 1px solid rgba(219, 219, 219, 0.25);
  padding: 40px 0;
}
@media only screen and (max-width: 992px) {
  .copyright-area {
    padding: 40px 0;
  }
}

.copyright-content {
  align-items: center;
}
@media only screen and (max-width: 992px) {
  .copyright-content {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .copyright-content {
    row-gap: 20px;
  }
}
.copyright-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-family: var(--ts-ff-body);
  margin: 0;
}
.copyright-content p span {
  color: var(--ts-color-theme-primary);
}
@media only screen and (max-width: 767px) {
  .copyright-content p {
    text-align: center;
  }
}
.copyright-content .copyright-list {
  list-style: none;
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  justify-content: end;
}
@media only screen and (max-width: 767px) {
  .copyright-content .copyright-list {
    justify-content: center;
  }
}
.copyright-content .copyright-list a {
  color: var(--ts-color-common-white);
}
.copyright-content .copyright-list a:hover {
  color: var(--ts-color-theme-primary);
}

/* !END: Theme Footer CSS *//*# sourceMappingURL=main.css.map */