/*CSS Table Of Content Ends Here*/
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&amp;family=Work+Sans:ital,wght@0,100..900;1,100..900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kalam:wght@300;400;700&amp;display=swap");

:root {
  --body      : #fff;
  --black     : #000;
  --white     : #fff;
  --theme     : #1d58a4;
  /* --theme-2: #113D48; */
  --theme-2   : #f4235b;
  --header    : #0A1F24;
  --text      : #687179;
  --border    : #E1E4E5;
  --border-2  : #BDBDBD;
  --bg        : #F7F7F7;
  --box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
}

.theme-btn {
  position        : relative;
  z-index         : 2;
  overflow        : hidden;
  vertical-align  : middle;
  display         : inline-block;
  border          : none;
  text-transform  : capitalize;
  text-align      : center;
  background-color: var(--theme);
  color           : var(--white);
  line-height     : 1;
  padding         : 22px 24px;
  min-width       : 170px;
  border-radius   : 100px;
  font-size       : 16px;
  font-weight     : 700;
  font-family     : "Manrope", sans-serif;
}

@media (max-width: 991px) {
  .theme-btn {
    padding: 18px 24px;
  }
}

.theme-btn i {
  margin-left: 10px;
}

.theme-btn:before {
  content         : "";
  position        : absolute;
  height          : 100%;
  bottom          : 0;
  left            : 0;
  width           : 0;
  background-color: var(--header);
  z-index         : -1;
  transition      : all 0.4s ease-out;
  border-radius   : inherit;
}

.theme-btn:hover {
  color     : var(--white);
  box-shadow: none;
}

.theme-btn:hover::before {
  width: 100%;
}

@media (max-width: 767px) {
  .theme-btn {
    padding: 20px 32px;
  }
}

@media (max-width: 575px) {
  .theme-btn {
    padding  : 18px 30px;
    font-size: 14px;
  }
}

.link-btn {
  font-size     : 16px;
  font-weight   : 700;
  color         : var(--theme);
  text-transform: capitalize;
}

.link-btn i {
  margin-left: 10px;
}

.link-btn.style-2 {
  color: #535353;
}

.link-btn.style-2:hover {
  color: var(--theme);
}

.link-btn:hover {
  color: var(--theme) !important;
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family     : "Manrope", sans-serif;
  font-size       : 16px;
  font-weight     : 400;
  line-height     : 28px;
  color           : var(--text);
  background-color: var(--white);
  padding         : 0;
  margin          : 0;
  overflow-x      : hidden;
}

ul {
  padding   : 0;
  margin    : 0;
  list-style: none;
}

button {
  border          : none;
  background-color: transparent;
  padding         : 0;
}

input:focus {
  color  : var(--white);
  outline: none;
}

input {
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family   : "Manrope", sans-serif;
  margin        : 0px;
  padding       : 0;
  color         : var(--header);
  text-transform: initial;
  transition    : all 0.4s ease-in-out;
  text-transform: capitalize;
}

h1 {
  font-size  : 74px;
  font-weight: 800;
  line-height: 114%;
}

@media (max-width: 1399px) {
  h1 {
    font-size: 53px;
  }
}

@media (max-width: 1199px) {
  h1 {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  h1 {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 45px;
  }
}

@media (max-width: 575px) {
  h1 {
    font-size: 40px;
  }
}

h2 {
  font-size  : 48px;
  font-weight: 700;
  line-height: 125%;
}

@media (max-width: 1399px) {
  h2 {
    font-size: 44px;
  }
}

@media (max-width: 1199px) {
  h2 {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  h2 {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  h2 {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size  : 24px;
  font-weight: 700;
  line-height: 150%;
}

@media (max-width: 575px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size  : 22px;
  font-weight: 700;
  line-height: 136%;
}

h5 {
  font-size  : 18px;
  font-weight: 700;
}

h6 {
  font-size  : 16px;
  font-weight: 700;
}

a {
  text-decoration: none;
  outline        : none !important;
  cursor         : pointer;
  color          : var(--header);
  transition     : all 0.4s ease-in-out;
}

p {
  margin    : 0px;
  transition: all 0.4s ease-in-out;
}

span {
  margin    : 0px;
  transition: all 0.4s ease-in-out;
}

.about-wrapper {
  padding-bottom: 85px;
}

@media (max-width: 1199px) {
  .about-wrapper {
    padding-bottom: 0;
  }
}

.about-wrapper .about-image {
  position : relative;
  max-width: 350px;
  z-index  : 1;
}

@media (max-width: 1199px) {
  .about-wrapper .about-image {
    max-width: 800px;
  }
}

.about-wrapper .about-image img {
  width : 100%;
  height: 100%;
}

.about-wrapper .about-image .border-image {
  position: absolute;
  top     : 25%;
  z-index : -1;
}

@media (max-width: 1199px) {
  .about-wrapper .about-image .border-image {
    display: none;
  }
}

.about-wrapper .about-image .border-image img {
  border-radius: none;
  width        : initial;
  height       : initial;
}

.about-wrapper .about-image .vdeo-item {
  position: absolute;
  bottom  : -30%;
  left    : 18%;
}

@media (max-width: 1199px) {
  .about-wrapper .about-image .vdeo-item {
    bottom   : initial;
    left     : 50%;
    top      : 50%;
    transform: translate(-50%, -50%);
    z-index  : 9;
  }
}

.about-wrapper .about-image .vdeo-item .video-btn {
  width           : 57px;
  height          : 57px;
  line-height     : 57px;
  text-align      : center;
  background-color: var(--theme-2);
  color           : var(--white);
  left            : 46%;
  bottom          : -27%;
  position        : absolute;
  transform       : translate(-50%, -50%);
  font-size       : 22px;
  margin-bottom   : 20px;
}

@media (max-width: 575px) {
  .about-wrapper .about-image .vdeo-item .video-btn {
    margin-bottom: 40px;
  }
}

.about-wrapper .about-image .vdeo-item .video-btn::before {
  position     : absolute;
  top          : 0;
  left         : 0;
  right        : 0;
  bottom       : 0;
  width        : 100%;
  height       : 100%;
  content      : "";
  border       : 1px solid var(--theme-2);
  border-radius: 0;
  top          : 50%;
  left         : 51%;
  transform    : translate(-50%, -50%);
  width        : 70px;
  height       : 70px;
}

@media (max-width: 1199px) {
  .about-wrapper .about-image .vdeo-item .video-btn {
    width      : 50px;
    height     : 50px;
    line-height: 50px;
    font-size  : 18px;
  }
}

@media (max-width: 1199px) {
  .about-wrapper .about-image .vdeo-item h5 {
    color: var(--white);
  }
}

.about-wrapper .about-image .about-image-2 {
  max-width: 360px;
  position : absolute;
  right    : -70%;
  bottom   : -45%;
}

@media (max-width: 1399px) {
  .about-wrapper .about-image .about-image-2 {
    right: -57%;
  }
}

@media (max-width: 1199px) {
  .about-wrapper .about-image .about-image-2 {
    max-width: 262px;
    height   : 230px;
    left     : 0;
    bottom   : 0;
  }
}

.about-wrapper .about-image .about-image-2 .plane-shape {
  position: absolute;
  top     : -178px;
  right   : 0;
  z-index : -1;
}

@media (max-width: 1199px) {
  .about-wrapper .about-image .about-image-2 .plane-shape {
    display: none;
  }
}

.about-wrapper .about-image .about-image-2 .about-tour {
  display         : flex;
  align-items     : center;
  gap             : 22px;
  padding         : 16px;
  background-color: var(--theme);
  position        : absolute;
  left            : 30px;
  right           : 30px;
  border-radius   : 10px;
  bottom          : 30px;
}

@media (max-width: 1199px) {
  .about-wrapper .about-image .about-image-2 .about-tour {
    left  : 3px;
    right : 20px;
    bottom: 2px;
  }
}

.about-wrapper .about-image .about-image-2 .about-tour .content h4 {
  font-size: 20px;
  color    : var(--white);
}

.about-wrapper .about-image .about-image-2 .about-tour .content span {
  font-size  : 14px;
  font-weight: 400;
  color      : var(--white);
}

.about-wrapper .about-content {
  position: relative;
  z-index : 9;
}

.about-wrapper .about-content .about-area {
  position: relative;
  z-index : 1;
}

.about-wrapper .about-content .about-area .line-image {
  position: absolute;
  left    : 34px;
  top     : 72px;
  z-index : -1;
}

@media (max-width: 1199px) {
  .about-wrapper .about-content .about-area .line-image {
    display: none;
  }
}

.about-wrapper .about-content .about-area .about-items {
  display      : flex;
  align-items  : center;
  gap          : 20px;
  margin-bottom: 50px;
}

@media (max-width: 1199px) {
  .about-wrapper .about-content .about-area .about-items {
    margin-bottom: 25px;
    flex-wrap    : wrap;
  }
}

.about-wrapper .about-content .about-area .about-items .icon {
  width           : 67px;
  height          : 67px;
  line-height     : 67px;
  border-radius   : 50px;
  flex-basis      : 70px;
  text-align      : center;
  background-color: var(--theme);
}

.about-wrapper-2 {
  margin-bottom: 37px;
}

@media (max-width: 1199px) {
  .about-wrapper-2 {
    margin-bottom: 0;
  }
}

.about-wrapper-2 .about-image {
  position : relative;
  max-width: 330px;
  z-index  : 1;
}

@media (max-width: 1199px) {
  .about-wrapper-2 .about-image {
    max-width: 700px;
    height   : 500px;
  }
}

@media (max-width: 991px) {
  .about-wrapper-2 .about-image {
    height: 500px;
  }
}

.about-wrapper-2 .about-image img {
  width        : 100%;
  height       : 100%;
  border-radius: 15px;
  object-fit   : cover;
}

.about-wrapper-2 .about-image .shape-image {
  position: absolute;
  bottom  : 50px;
  left    : -60px;
}

.about-wrapper-2 .about-image .shape-image img {
  border    : 8px solid var(--white);
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
}

@media (max-width: 1199px) {
  .about-wrapper-2 .about-image .shape-image img {
    width : initial;
    height: initial;
  }
}

@media (max-width: 1199px) {
  .about-wrapper-2 .about-image .shape-image {
    left: 0;
    top : 0;
  }
}

.about-wrapper-2 .about-image .group-image {
  position: absolute;
  bottom  : -65px;
  left    : 70px;
}

@media (max-width: 1199px) {
  .about-wrapper-2 .about-image .group-image img {
    width : initial;
    height: initial;
  }
}

@media (max-width: 1399px) {
  .about-wrapper-2 .about-image .group-image {
    left: 30px;
  }
}

@media (max-width: 1199px) {
  .about-wrapper-2 .about-image .group-image {
    right  : 0;
    bottom : 0;
    left   : initial;
    z-index: 1;
  }
}

.about-wrapper-2 .about-image .about-image-2 {
  max-width: 300px;
  position : absolute;
  right    : -75%;
  bottom   : -13%;
}

@media (max-width: 1399px) {
  .about-wrapper-2 .about-image .about-image-2 {
    right: -62%;
  }
}

@media (max-width: 1199px) {
  .about-wrapper-2 .about-image .about-image-2 {
    height   : 255px;
    max-width: 250px;
    left     : 0;
    bottom   : 0;
  }
}

.about-wrapper-2 .about-image .about-image-2 img {
  border    : 8px solid var(--white);
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
}

.about-wrapper-2 .about-image .about-image-2 .plane-shape {
  position: absolute;
  top     : -138px;
  left    : -100px;
  z-index : -1;
}

.about-wrapper-2 .about-image .about-image-2 .plane-shape img {
  border    : none;
  box-shadow: none;
}

@media (max-width: 1199px) {
  .about-wrapper-2 .about-image .about-image-2 .plane-shape {
    display: none;
  }
}

.about-wrapper-2 .about-image .about-image-2 .circle-image {
  position: absolute;
  top     : 120px;
  left    : -52px;
}

.about-wrapper-2 .about-image .about-image-2 .circle-image img {
  border    : none;
  box-shadow: none;
}

@media (max-width: 1199px) {
  .about-wrapper-2 .about-image .about-image-2 .circle-image {
    left     : 50%;
    top      : 50%;
    transform: translate(-50%, -50%);
  }
}

.about-wrapper-2 .about-content .about-items {
  display    : flex;
  align-items: center;
  gap        : 150px;
  margin-top : 30px;
}

@media (max-width: 1199px) {
  .about-wrapper-2 .about-content .about-items {
    gap      : 15px;
    flex-wrap: wrap;
  }
}

@media (max-width: 991px) {
  .about-wrapper-2 .about-content .about-items {
    gap: 70px;
  }
}

@media (max-width: 767px) {
  .about-wrapper-2 .about-content .about-items {
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .about-wrapper-2 .about-content .about-items {
    gap: 15px;
  }
}

.about-wrapper-2 .about-content .about-items:not(:last-child) {
  margin-bottom: 40px;
}

.about-wrapper-2 .about-content .about-items .about-icon-items {
  display    : flex;
  align-items: center;
  gap        : 16px;
}

.about-wrapper-2 .about-content .about-items .text {
  position: relative;
}

.about-wrapper-2 .about-content .about-items .text::before {
  position  : absolute;
  top       : 0;
  left      : 0;
  right     : 0;
  bottom    : 0;
  width     : 100%;
  height    : 100%;
  content   : "";
  background: var(--theme);
  width     : 2px;
  height    : 41px;
  left      : -27px;
  top       : 8px;
}

@media (max-width: 1199px) {
  .about-wrapper-2 .about-content .about-items .text::before {
    display: none;
  }
}

.about-wrapper-2 .about-content .theme-btn {
  background-color: var(--theme-2);
}

.about-wrapper-2 .about-content .theme-btn:before {
  background-color: var(--theme);
}

.about-wrapper-3 {
  padding: 40px 0;
}

@media (max-width: 1199px) {
  .about-wrapper-3 {
    padding: 0;
  }
}

.about-wrapper-3 .about-image {
  position   : relative;
  max-width  : 450px;
  margin-left: -30px;
}

@media (max-width: 1199px) {
  .about-wrapper-3 .about-image {
    max-width  : 700px;
    height     : 500px;
    margin-left: 0;
  }
}

@media (max-width: 991px) {
  .about-wrapper-3 .about-image {
    height: 500px;
  }
}

.about-wrapper-3 .about-image img {
  width        : 100%;
  height       : 100%;
  border-radius: 20px;
  object-fit   : cover;
  transform    : rotate(-20deg);
}

@media (max-width: 1199px) {
  .about-wrapper-3 .about-image img {
    transform: rotate(0);
  }
}

.about-wrapper-3 .about-image .about-image-2 {
  max-width: 350px;
  position : absolute;
  right    : -48%;
  bottom   : -2%;
  z-index  : 1;
}

@media (max-width: 1399px) {
  .about-wrapper-3 .about-image .about-image-2 {
    right: -27%;
  }
}

@media (max-width: 1199px) {
  .about-wrapper-3 .about-image .about-image-2 {
    max-width: 250px;
    left     : 0;
    bottom   : 0;
  }
}

.about-wrapper-3 .about-image .about-image-2 img {
  transform: rotate(26deg);
}

@media (max-width: 1199px) {
  .about-wrapper-3 .about-image .about-image-2 img {
    transform: rotate(0);
  }
}

.about-wrapper-3 .about-image .about-image-2 .plane-shape {
  position: absolute;
  top     : -58%;
  left    : 6px;
  z-index : -1;
}

@media (max-width: 1199px) {
  .about-wrapper-3 .about-image .about-image-2 .plane-shape {
    display: none;
  }
}

.about-wrapper-3 .about-content {
  margin-left: 60px;
}

@media (max-width: 1199px) {
  .about-wrapper-3 .about-content {
    margin-left: 0;
  }
}

.about-wrapper-3 .about-content .about-items {
  display    : flex;
  align-items: center;
  gap        : 150px;
  margin-top : 30px;
}

.about-wrapper-3 .about-content .about-items:not(:last-child) {
  margin-bottom: 40px;
}

@media (max-width: 1199px) {
  .about-wrapper-3 .about-content .about-items:not(:last-child) {
    margin-bottom: 30px;
  }
}

.about-wrapper-3 .about-content .about-items .about-icon-items {
  display    : flex;
  align-items: center;
  gap        : 24px;
}

.about-wrapper-3 .about-content .about-items .about-icon-items .icon {
  width           : 74px;
  height          : 74px;
  line-height     : 74px;
  text-align      : center;
  border-radius   : 50px;
  background-color: rgb(239, 243, 250);
  position        : relative;
}

.about-wrapper-3 .about-content .about-items .about-icon-items .content h4 {
  font-size: 20px;
}

.about-section {
  position: relative;
}

.about-section .right-shape {
  position: absolute;
  right   : 0;
  bottom  : 0;
}

@media (max-width: 1199px) {
  .about-section .right-shape {
    display: none;
  }
}

.about-section .left-shape {
  position: absolute;
  left    : 0;
  bottom  : 0;
}

@media (max-width: 1399px) {
  .about-section .left-shape {
    display: none;
  }
}

@-webkit-keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow        : 0 0 0 40px rgba(244, 68, 56, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow        : 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

@keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow        : 0 0 0 40px rgba(244, 68, 56, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow        : 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform        : rotateZ(360deg);
  }
}

@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform        : rotateZ(360deg);
  }
}

@-webkit-keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity  : 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity  : 1;
    transform: rotateY(0deg);
  }
}

@keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity  : 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity  : 1;
    transform: rotateY(0deg);
  }
}

@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    -ms-transform    : rotate(20deg);
    transform        : rotate(20deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform    : rotate(0deg);
    transform        : rotate(0deg);
  }
}

@keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

@keyframes rounded {
  50% {
    transform: rotate(20deg);
  }
}

@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}

.float-bob-y {
  -webkit-animation-name           : float-bob-y;
  animation-name                   : float-bob-y;
  -webkit-animation-duration       : 3s;
  animation-duration               : 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count        : infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function        : linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform        : translateY(-30px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform        : translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(-30px);
    transform        : translateY(-30px);
  }
}

@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform        : translateY(-30px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform        : translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(-30px);
    transform        : translateY(-30px);
  }
}

.float-bob-x {
  -webkit-animation-name           : float-bob-x;
  animation-name                   : float-bob-x;
  -webkit-animation-duration       : 3s;
  animation-duration               : 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count        : infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function        : linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform        : translateX(30px);
  }

  50% {
    -webkit-transform: translateX(10px);
    transform        : translateX(10px);
  }

  100% {
    -webkit-transform: translateX(30px);
    transform        : translateX(30px);
  }
}

@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform        : translateX(30px);
  }

  50% {
    -webkit-transform: translateX(10px);
    transform        : translateX(10px);
  }

  100% {
    -webkit-transform: translateX(30px);
    transform        : translateX(30px);
  }
}

@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform        : translateX(0);
  }

  50% {
    -webkit-transform: translateX(30px);
    transform        : translateX(30px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform        : translateX(0);
  }
}

.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation        : bounce-x 7s infinite linear;
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }

  50% {
    left  : 50%;
    width : 20px;
    height: 20px;
  }

  100% {
    left  : 50%;
    width : 375px;
    height: 375px;
  }
}

@keyframes criss-cross-right {
  0% {
    right: -20px;
  }

  50% {
    right : 50%;
    width : 20px;
    height: 20px;
  }

  100% {
    right : 50%;
    width : 375px;
    height: 375px;
  }
}

@keyframes rotated2 {
  0% {
    transform: rotate(0);
  }

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

@keyframes wave {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-25%);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes zoom {
  0% {
    transform: scale(0.5);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.5);
  }
}

@keyframes translateY2 {
  0% {
    -webkit-transform: translateY(-30px);
    -moz-transform   : translateY(-30px);
    -ms-transform    : translateY(-30px);
    -o-transform     : translateY(-30px);
    transform        : translateY(-30px);
  }

  100% {
    -webkit-transform: translateY(20px);
    -moz-transform   : translateY(20px);
    -ms-transform    : translateY(20px);
    -o-transform     : translateY(20px);
    transform        : translateY(20px);
  }
}

@keyframes translateX2 {
  0% {
    -webkit-transform: translateX(-30px);
    -moz-transform   : translateX(-30px);
    -ms-transform    : translateX(-30px);
    -o-transform     : translateX(-30px);
    transform        : translateX(-30px);
  }

  100% {
    -webkit-transform: translatXY(20px);
    -moz-transform   : translateX(20px);
    -ms-transform    : translateX(20px);
    -o-transform     : translateX(20px);
    transform        : translateX(20px);
  }
}

@keyframes moving {
  0% {
    transform: translatey(0px);
  }

  20% {
    transform: translateX(-50px);
  }

  50% {
    transform: translatey(-40px);
  }

  100% {
    transform: translatey(0px);
  }
}

/*img-animation**********************/
.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity  : 0;
}

@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity  : 0;
  }

  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity  : 1;
  }
}

.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity  : 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity  : 0;
  }

  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity  : 1;
  }
}

.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity  : 0;
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity  : 0;
  }

  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity  : 1;
  }
}

.brand-wrapper .brand-title {
  text-align   : center;
  margin-bottom: 50px;
  font-size    : 22px;
  font-weight  : 600;
  position     : relative;
}

.brand-wrapper .brand-title::before {
  position  : absolute;
  top       : 0;
  left      : 0;
  right     : 0;
  bottom    : 0;
  width     : 100%;
  height    : 100%;
  content   : "";
  top       : 10px;
  width     : 40%;
  height    : 1%;
  background: #E1E4E5;
}

@media (max-width: 1199px) {
  .brand-wrapper .brand-title::before {
    display: none;
  }
}

.brand-wrapper .brand-title::after {
  position  : absolute;
  content   : "";
  top       : 10px;
  right     : 0;
  width     : 40%;
  height    : 1%;
  background: #E1E4E5;
}

@media (max-width: 1199px) {
  .brand-wrapper .brand-title::after {
    display: none;
  }
}

.brand-wrapper .brand-image {
  text-align     : center;
  filter         : grayscale(100%);
  transition     : all 0.4s ease-in-out;
  opacity        : 0.4;
  width          : 100%;
  height         : 100px;
  display        : flex;
  align-items    : center;
  justify-content: center;
  padding        : 10px;
  background     : #fff;
  border         : 1px solid #eee;
  margin         : 0px;
}

.brand-image img {
  max-width : 100%;
  max-height: 100%;
  object-fit: contain;
}


.brand-wrapper .brand-image:hover {
  filter : initial;
  opacity: 1;
}

.brand-wrapper .swiper-slide.swiper-slide-active .brand-image {
  filter : initial;
  opacity: 1;
}

.brand-section {
  position: relative;
}

.brand-section .left-shape {
  position: absolute;
  left    : 0;
  bottom  : 0;
}

@media (max-width: 1199px) {
  .brand-section .left-shape {
    display: none;
  }
}

.swiper-3d-section .container {
  max-width: 1500px;
  margin   : 0 auto;
}

.swiper-3d-section .card3d-content {
  position  : absolute;
  left      : 50%;
  width     : 100%;
  text-align: center;
  display   : grid;
  opacity   : 0;
}

.swiper-3d-section .card3d-content h3 a {
  color: var(--white);
}

.swiper-3d-section .card3d-content span {
  margin: 0 auto;
  color : var(--white);
}

.swiper-3d-section .card3d-content .theme-btn {
  border          : 1px solid var(--white);
  background-color: transparent;
  max-width       : 160px;
  text-align      : center;
  margin          : 0 auto;
}

.swiper-3d-section .card3d-content .theme-btn:hover {
  color     : var(--white);
  border    : 1px solid var(--header);
  box-shadow: none;
}

.swiper-3d-section .card3d-content .theme-btn:hover::before {
  width: 100%;
}

.swiper-3d-section .swiper-3d-container {
  width: 100%;
}

.swiper-3d-section .swiper-3d-container .swiper-slide {
  width: 320px;
}

.swiper-3d-section .swiper-3d-container .swiper-slide .card-3d {
  position  : relative;
  width     : 320px;
  transition: all 0.5s ease;
}

.swiper-3d-section .swiper-3d-container .swiper-slide .card-3d .img-area {
  border-radius: inherit;
  position     : relative;
}

.swiper-3d-section .swiper-3d-container .swiper-slide .card-3d .img-area img {
  border-radius: inherit;
  transition   : all 0.5s ease;
}

.swiper-3d-section .swiper-3d-container .swiper-slide .card-3d .card-date {
  border-radius: 12px;
  background   : rgba(var(--n1), 0.45);
}

.swiper-3d-section .swiper-3d-container .swiper-slide .card-3d .card-status {
  border-radius: 46px;
  border       : 1px solid var(--border);
  background   : var(--theme);
  bottom       : -10px;
}

.swiper-3d-section .swiper-3d-container .swiper-slide .card-3d .card-info {
  border-radius: 12px;
  background   : var(--theme);
}

.swiper-3d-section .swiper-3d-container .swiper-slide-active .card-3d {
  opacity : 1;
  z-index : 1;
  position: relative;
}

.swiper-3d-section .swiper-3d-container .swiper-slide-active .card-3d .card3d-content {
  position  : absolute;
  bottom    : 30px;
  left      : 40px;
  width     : 100%;
  text-align: center;
  z-index   : 1;
  opacity   : 1;
}

.swiper-3d-section .swiper-3d-container .swiper-slide-active .card-3d .card3d-content span {
  margin: 0 auto;
}

.swiper-3d-section .swiper-3d-container .swiper-slide-active .card-3d::before {
  position     : absolute;
  bottom       : -220px;
  left         : 0;
  content      : "";
  width        : 400px;
  border-radius: 50%;
  height       : 430px;
  background   : var(--theme);
  z-index      : 1;
}

@media (max-width: 1199px) {
  .swiper-3d-section .swiper-3d-container .swiper-slide-active .card-3d::before {
    background: none;
  }
}

.swiper-3d-section .swiper-3d-container .swiper-slide-active .card-3d::after {
  position     : absolute;
  bottom       : -220px;
  left         : 0;
  width        : 400px;
  height       : 400px;
  content      : "";
  background   : rgba(5, 5, 5, 0.486);
  border-radius: 50%;
}

@media (max-width: 1199px) {
  .swiper-3d-section .swiper-3d-container .swiper-slide-active .card-3d::after {
    background: none;
  }
}

@media (max-width: 575px) {
  .swiper-3d-section .swiper-3d-container .swiper-slide-active .card-3d {
    width   : 100%;
    overflow: hidden;
  }

  .swiper-3d-section .swiper-3d-container .swiper-slide-active .card-3d .card3d-content {
    left     : 50%;
    transform: translateX(-50%);
  }

  .swiper-3d-section .swiper-3d-container .swiper-slide-active .card-3d img {
    width: 100%;
  }

  .swiper-3d-section .swiper-3d-container .swiper-slide-active .card-3d::before {
    bottom   : -220px;
    left     : 50%;
    transform: translateX(-50%);
    width    : 300px;
    height   : 300px;
  }

  .swiper-3d-section .swiper-3d-container .swiper-slide-active .card-3d::after {
    bottom   : -220px;
    left     : 50%;
    transform: translateX(-50%);
    width    : 300px;
    height   : 300px;
  }
}

.footer-newsletter-wrapper {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  padding        : 80px 0 45px;
  position       : relative;
}

@media (max-width: 1199px) {
  .footer-newsletter-wrapper {
    flex-wrap: wrap;
  }
}

.widget-head img {
  width: 150px;
}

.footer-newsletter-wrapper .footer-newsletter-item .widget-head {
  margin-bottom: 30px;
}

.footer-newsletter-wrapper .footer-newsletter-item .footer-content p {
  color: var(--white);
}

.footer-newsletter-wrapper .footer-newsletter-item .social-icon {
  gap       : 8px;
  margin-top: 30px;
}

.footer-newsletter-wrapper .footer-newsletter-item .social-icon a {
  width           : 36px;
  height          : 36px;
  line-height     : 36px;
  border-radius   : 50px;
  text-align      : center;
  color           : var(--theme);
  background-color: var(--white);
  transition      : all 0.4s ease-in-out;
}

.footer-newsletter-wrapper .footer-newsletter-item .social-icon a:hover {
  background-color: var(--theme);
  color           : var(--white);
}

@media (max-width: 1199px) {
  .footer-newsletter-wrapper .newsletter-input {
    margin-top: 20px;
  }
}

.footer-newsletter-wrapper .newsletter-input h2 {
  font-size: 32px;
  color    : var(--white);
}

@media (max-width: 767px) {
  .footer-newsletter-wrapper .newsletter-input h2 {
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  .footer-newsletter-wrapper .newsletter-input h2 {
    font-size: 24px;
  }
}

.footer-newsletter-wrapper .newsletter-input p {
  font-size  : 18px;
  font-weight: 500;
  color      : var(--white);
}

.footer-newsletter-wrapper .newsletter-input .footer-input {
  position  : relative;
  margin-top: 30px;
}

.footer-newsletter-wrapper .newsletter-input .footer-input input {
  background    : var(--white);
  border        : none;
  outline       : none;
  width         : 100%;
  padding       : 18px 20px;
  border-radius : 100px;
  color         : #727171;
  line-height   : 1;
  text-transform: capitalize;
}

@media (max-width: 991px) {
  .footer-newsletter-wrapper .newsletter-input .footer-input input {
    padding: 15px 20px;
  }
}

@media (max-width: 767px) {
  .footer-newsletter-wrapper .newsletter-input .footer-input input {
    padding: 17px 20px;
  }
}

@media (max-width: 575px) {
  .footer-newsletter-wrapper .newsletter-input .footer-input input {
    padding: 14px 20px;
  }
}

.footer-newsletter-wrapper .newsletter-input .footer-input input::placeholder {
  color: #727171;
}

.footer-newsletter-wrapper .newsletter-input .footer-input .newsletter-btn {
  position: absolute;
  top     : 0px;
  right   : 0px;
}

.contact-us-main {
  border-radius   : 10px;
  padding         : 12px 16px;
  background-color: var(--bg);
  text-align      : center;
  position        : relative;
  transition      : all 0.4s ease-in-out;
}

.contact-us-main.style-2 {
  background-color: var(--theme);
}

.contact-us-main.style-2 .contact-box-items {
  border: 1px solid var(--white);
}

.contact-us-main.style-2 .contact-box-items .icon {
  color: var(--white);
}

.contact-us-main.style-2 .contact-box-items .content h3 a {
  color: var(--white);
}

.contact-us-main.style-2 .contact-box-items .content p {
  color: var(--white);
}

.contact-us-main .contact-box-items {
  border-radius: 10px;
  border       : 1px solid var(--border);
  padding      : 28px 30px;
}

.contact-us-main .contact-box-items .icon {
  margin-bottom: 20px;
}

.contact-us-main .contact-box-items .content h3 {
  font-weight  : 600;
  margin-bottom: 5px;
}

.contact-us-main .contact-box-items .content p {
  font-size  : 16px;
  font-weight: 400;
  color      : var(--text);
}

.contact-us-main:hover {
  background-color: var(--theme);
}

.contact-us-main:hover .contact-box-items .icon img {
  filter: grayscale(100%) brightness(300%);
}

.contact-us-main:hover .contact-box-items .content {
  position: relative;
  z-index : 1;
}

.contact-us-main:hover .contact-box-items .content h3 {
  color: var(--white);
}

.contact-us-main:hover .contact-box-items .content h3 a {
  color: var(--white);
}

.contact-us-main:hover .contact-box-items .content p {
  color: var(--white);
}

.contact-us-wrapper .contact-us-contact {
  padding: 120px 0;
}

@media (max-width: 991px) {
  .contact-us-wrapper .contact-us-contact {
    padding: 80px 0 30px;
  }
}

.contact-us-wrapper .contact-us-contact .comment-form-wrap .form-clt input,
.contact-us-wrapper .contact-us-contact .comment-form-wrap .form-clt textarea {
  width           : 100%;
  outline         : none;
  border          : none;
  border-radius   : 100px;
  border          : 1px solid rgba(255, 255, 255, 0.15);
  padding         : 16px 20px;
  background-color: transparent;
  color: #fff;
  font-weight     : 400;
}

.contact-us-wrapper .contact-us-contact .comment-form-wrap .form-clt input::placeholder,
.contact-us-wrapper .contact-us-contact .comment-form-wrap .form-clt textarea::placeholder {
  color: var(--white);
}

.contact-us-wrapper .contact-us-contact .comment-form-wrap .form-clt textarea {
  padding-bottom: 100px;
  border-radius : 20px;
  resize        : none;
}

.contact-us-wrapper .contact-us-contact .comment-form-wrap .form-clt .nice-select {
  background-color: transparent;
  padding         : 16px 20px;
  border-radius   : 100px;
  border          : 1px solid rgba(255, 255, 255, 0.15);
}

.contact-us-wrapper .contact-us-contact .comment-form-wrap .form-clt .nice-select span {
  font-size     : 14px;
  color         : var(--white);
  font-weight   : 400;
  text-transform: capitalize;
  margin-bottom : 0;
}

.contact-us-wrapper .contact-us-contact .comment-form-wrap .form-clt .nice-select::after {
  right: 25px;
  top  : 28px;
}

.contact-us-wrapper .contact-us-contact .comment-form-wrap .form-clt .nice-select .list {
  right           : 0;
  background-color: var(--bg);
}

.contact-us-wrapper .contact-us-contact .comment-form-wrap .form-clt .nice-select .option {
  border : none;
  padding: 6px 15px;
}

.contact-us-wrapper .contact-us-contact .comment-form-wrap .theme-btn {
  background-color: transparent;
  border          : 1px solid var(--theme);
}

.contact-us-wrapper .contact-us-contact .comment-form-wrap .theme-btn:before {
  background-color: var(--theme);
}

.contact-us-wrapper .contact-us-contact .comment-form-wrap .theme-btn:hover {
  color     : var(--white);
  box-shadow: none;
}

.contact-us-wrapper .contact-us-contact .comment-form-wrap .theme-btn:hover::before {
  width: 100%;
}

.contact-us-wrapper .map-area {
  margin-left: 25px;
}

@media (max-width: 1199px) {
  .contact-us-wrapper .map-area {
    margin-left: 0;
  }
}

.contact-us-wrapper .map-area .google-map iframe {
  width : 1053px;
  height: 810px;
}

.cta-items {
  padding      : 60px 45px;
  border-radius: 20px;
  position     : relative;
  background   : radial-gradient(164.46% 92.51% at 63.51% -24.13%, #FFED70 0.33%, #DDE583 15.83%, #86CFB4 50.2%, #00AEFF 99.87%);
}

@media (max-width: 1199px) {
  .cta-items {
    padding: 60px 20px;
  }
}

.cta-items .cta-text h2 {
  color        : var(--white);
  margin-bottom: 10px;
  line-height  : 1;
  position     : relative;
  z-index      : 9;
}

.cta-items .cta-text p {
  color      : var(--white);
  font-size  : 24px;
  font-weight: 700;
  z-index    : 9;
  position   : relative;
}

@media (max-width: 575px) {
  .cta-items .cta-text p {
    font-size: 20px;
  }
}

.cta-items .theme-btn {
  margin-top: 20px;
  background: var(--white);
  color     : var(--theme);
}

.cta-items .cta-image {
  position: absolute;
  right   : 25px;
  top     : 10px;
}

@media (max-width: 1199px) {
  .cta-items .cta-image {
    max-width: 200px;
  }
}

@media (max-width: 1199px) {
  .cta-items .cta-image img {
    width : 100%;
    height: 100%;
  }
}

.cta-items.style-2 {
  background: radial-gradient(164.46% 92.51% at 63.51% -24.13%, #F9B403 0.33%, #E5BE83 15.83%, #8696CF 50.2%, #002A81 99.87%);
}

.cta-section {
  position: relative;
}

.cta-section .mobile-shape {
  position: absolute;
  right   : 0;
  bottom  : 0;
}

@media (max-width: 1199px) {
  .cta-section .mobile-shape {
    display: none;
  }
}

.cta-wrapper {
  text-align: center;
  padding   : 180px 0 180px;
}

@media (max-width: 1199px) {
  .cta-wrapper {
    padding: 150px 0 150px;
  }
}

@media (max-width: 991px) {
  .cta-wrapper {
    padding: 120px 0 120px;
  }
}

@media (max-width: 767px) {
  .cta-wrapper {
    padding: 100px 100px;
  }
}

@media (max-width: 575px) {
  .cta-wrapper {
    padding: 80px 8px;
  }
}

.cta-wrapper .cta-btn {
  margin-top     : 40px;
  display        : flex;
  align-items    : center;
  gap            : 40px;
  justify-content: center;
}

@media (max-width: 767px) {
  .cta-wrapper .cta-btn {
    flex-wrap: wrap;
  }
}

.cta-wrapper .cta-btn .watch-btn {
  display    : flex;
  align-items: center;
  gap        : 15px;
}

.cta-wrapper .cta-btn .watch-btn .video-btn {
  width           : 50px;
  height          : 50px;
  line-height     : 50px;
  text-align      : center;
  border          : 1px solid var(--white);
  border-radius   : 50%;
  background-color: transparent;
  color           : var(--white);
  font-size       : 16px;
}

.cta-wrapper .cta-btn .watch-btn h6 {
  color   : var(--white);
  position: relative;
}

.cta-bg-section {
  position             : relative;
  background-attachment: fixed;
}

.cta-bg-section::before {
  position  : absolute;
  top       : 0;
  left      : 0;
  right     : 0;
  bottom    : 0;
  width     : 100%;
  height    : 100%;
  content   : "";
  background: rgba(10, 31, 36, 0.65);
}

.instagram-wrapper {
  padding: 0 60px;
}

@media (max-width: 1399px) {
  .instagram-wrapper {
    padding: 0 30px;
  }
}

@media (max-width: 1199px) {
  .instagram-wrapper {
    padding: 0 20px;
  }
}

.instagram-wrapper h2 {
  margin-bottom: 30px;
  position     : relative;
  line-height  : 1;
  margin-top   : -7px;
}

.instagram-wrapper h2::before {
  position        : absolute;
  top             : 30px;
  left            : 9%;
  content         : "";
  height          : 1px;
  width           : 471px;
  background-color: #E6E5E5;
}

@media (max-width: 1899px) {
  .instagram-wrapper h2::before {
    display: none;
  }
}

.instagram-wrapper h2::after {
  position        : absolute;
  top             : 30px;
  right           : 9%;
  content         : "";
  height          : 1px;
  width           : 471px;
  background-color: #E6E5E5;
}

@media (max-width: 1899px) {
  .instagram-wrapper h2::after {
    display: none;
  }
}

.instagram-wrapper .instagram-banner-items .banner-image {
  position: relative;
}

.instagram-wrapper .instagram-banner-items .banner-image img {
  width        : 100%;
  height       : 100%;
  border-radius: 16px;
}

.instagram-wrapper .instagram-banner-items .banner-image::before {
  position        : absolute;
  top             : 0;
  left            : 0;
  right           : 0;
  bottom          : 0;
  content         : "";
  background-color: rgba(28, 168, 203, 0.5);
  border-radius   : 16px;
  opacity         : 0.6;
  transform       : scale(1, 0);
  transition      : transform 500ms ease;
  transform-origin: bottom center;
  z-index         : 1;
}

.instagram-wrapper .instagram-banner-items .banner-image .icon {
  position        : absolute;
  width           : 68px;
  height          : 68px;
  line-height     : 68px;
  text-align      : center;
  border-radius   : 50%;
  background-color: var(--theme);
  font-size       : 28px;
  top             : 50%;
  left            : 50%;
  transform       : translate(-50%, -50%);
  z-index         : 99;
  color           : var(--white);
  opacity         : 0;
  transition      : all 0.4s ease-in-out;
}

.instagram-wrapper .instagram-banner-items:hover .banner-image::before {
  transform       : scale(1, 1);
  transform-origin: top center;
}

.instagram-wrapper .instagram-banner-items:hover .banner-image .icon {
  opacity: 1;
}

.counter-wrapper {
  display         : flex;
  align-items     : center;
  justify-content : space-between;
  background-color: var(--theme);
  padding         : 50px 0;
}

@media (max-width: 1199px) {
  .counter-wrapper {
    flex-wrap: wrap;
    gap      : 30px;
  }
}

.counter-wrapper .counter-items {
  border-right : 1px solid rgb(169, 175, 191);
  padding-right: 100px;
}

@media (max-width: 1199px) {
  .counter-wrapper .counter-items {
    border-right : none;
    padding-right: 0;
  }
}

.counter-wrapper .counter-items .counter-content h2 {
  font-size: 54px;
  color    : var(--white);
}

@media (max-width: 991px) {
  .counter-wrapper .counter-items .counter-content h2 {
    font-size: 45px;
  }
}

@media (max-width: 767px) {
  .counter-wrapper .counter-items .counter-content h2 {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .counter-wrapper .counter-items .counter-content h2 {
    font-size: 35px;
  }
}

.counter-wrapper .counter-items .counter-content p {
  color    : var(--white);
  font-size: 18px;
}

@media (max-width: 1199px) {
  .counter-wrapper .counter-items .counter-content p {
    font-size: 16px;
  }
}

.counter-wrapper .counter-items.style-2 {
  border      : none;
  margin-right: 0;
}

.cta-wrapper-2 {
  padding      : 60px;
  border-radius: 20px;
}

.cta-wrapper-2 .cta-content .app-image {
  margin-top : 40px;
  display    : flex;
  align-items: center;
  gap        : 30px;
}

@media (max-width: 575px) {
  .cta-wrapper-2 .cta-content .app-image {
    flex-wrap: wrap;
  }
}

.cta-wrapper-2 .cta-image {
  margin-bottom: -60px;
  text-align   : right;
  position     : relative;
}

@media (max-width: 1199px) {
  .cta-wrapper-2 .cta-image img {
    width : 100%;
    height: 100%;
  }
}

.cta-wrapper-2 .cta-image .shape {
  position: absolute;
  top     : 27%;
  left    : -16%;
}

.cta-section-2 {
  position: relative;
}

.cta-section-2 .left-shape {
  position: absolute;
  bottom  : 0;
  left    : 0;
}

@media (max-width: 1199px) {
  .cta-section-2 .left-shape {
    display: none;
  }
}

.cta-box-items {
  padding      : 30px;
  border-radius: 20px;
  background   : #017DB9;
  position     : relative;
}

.cta-box-items .cta-content {
  position: relative;
  z-index : 1;
}

.cta-box-items .cta-content h3 {
  font-weight  : 800;
  color        : var(--white);
  margin-bottom: 20px;
}

.cta-box-items .cta-content .shape {
  margin-bottom: 40px;
}

.cta-box-items .cta-content .theme-btn {
  padding         : 12px 20px;
  background-color: transparent;
  border          : 1px solid var(--white);
  min-width       : 100px;
  color           : var(--white);
}

.cta-box-items .cta-content .theme-btn:before {
  background-color: var(--theme);
}

.cta-box-items .cta-content .theme-btn:hover {
  color     : var(--white);
  box-shadow: none;
}

.cta-box-items .cta-content .theme-btn:hover::before {
  width: 100%;
}

.cta-box-items .cta-image {
  position: absolute;
  bottom  : 14px;
  right   : 40px;
}

@media (max-width: 1199px) {
  .cta-box-items .cta-image {
    bottom: 0;
    right : 0;
  }
}

.cta-box-items.style-2 {
  background: #F29D00;
}

.cta-box-items.style-2.bg-color {
  background-color: #1CA8CB;
}

.cta-box-items.style-2 .cta-content h3 {
  margin-bottom: 105px;
}

.cta-offer-wrapper {
  margin-top: 90px;
}

@media (max-width: 1199px) {
  .cta-offer-wrapper {
    margin-top: 95px;
  }
}

@media (max-width: 991px) {
  .cta-offer-wrapper {
    margin-top: 180px;
  }
}

@media (max-width: 767px) {
  .cta-offer-wrapper {
    margin-top: 145px;
  }
}

.cta-offer-wrapper .offer-content .coming-soon-timer {
  display      : flex;
  align-items  : center;
  gap          : 20px;
  margin-top   : 30px;
  margin-bottom: 40px;
  flex-wrap    : wrap;
}

.cta-offer-wrapper .offer-content .coming-soon-timer .timer-content {
  border-radius  : 8px;
  border         : 0.5px solid var(--white);
  background     : radial-gradient(157.24% 123.22% at 47.19% -0.63%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(25px);
}

.cta-offer-wrapper .offer-content .coming-soon-timer .timer-content h3 {
  color        : var(--white);
  font-size    : 33px;
  font-weight  : 600;
  border-bottom: 1px solid #E6F7FC;
  padding      : 13px 22px;
  line-height  : 1;
}

.cta-offer-wrapper .offer-content .coming-soon-timer .timer-content p {
  font-size     : 14px;
  text-transform: uppercase;
  color         : var(--white);
  font-weight   : 400;
  text-align    : center;
  padding       : 5px;
}

.cta-offer-wrapper .offer-image {
  position: relative;
  z-index : 1;
}

@media (max-width: 1199px) {
  .cta-offer-wrapper .offer-image img {
    width : 100%;
    height: 100%;
  }
}

.cta-offer-wrapper .offer-image .circle {
  width          : 386px;
  height         : 386px;
  border-radius  : 193px;
  border         : 1px solid var(--white);
  background     : radial-gradient(157.24% 123.22% at 47.19% -0.63%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(21px);
  position       : absolute;
  left           : 58%;
  top            : 50%;
  transform      : translate(-50%, -50%);
  z-index        : -1;
}

@media (max-width: 1199px) {
  .cta-offer-wrapper .offer-image .circle {
    display: none;
  }
}

.cta-offer-wrapper .offer-image .circle .text-item {
  display    : flex;
  align-items: center;
  gap        : 20px;
  position   : absolute;
  top        : 50%;
  transform  : translate(-50%, -50%);
  left       : 82%;
}

.cta-offer-wrapper .offer-image .circle .text-item .icon {
  top      : 50%;
  transform: translate(-50%, -50%);
  left     : 34%;
  position : absolute;
}

.deals-offer-items {
  border-radius: 15px;
  background   : #EFF3FA;
  padding      : 30px;
  margin-top   : 30px;
}

@media (max-width: 767px) {
  .deals-offer-items {
    padding: 15px;
  }
}

.deals-offer-items .airline-wrap {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .deals-offer-items .airline-wrap {
    flex-wrap: wrap;
  }
}

.deals-offer-items .airline-wrap .airline-card {
  display    : flex;
  align-items: center;
  gap        : 50px;
}

@media (max-width: 1199px) {
  .deals-offer-items .airline-wrap .airline-card {
    gap: 15px;
  }
}

.deals-offer-items .airline-wrap .airline-card .airline {
  display    : flex;
  align-items: center;
  gap        : 18px;
}

@media (max-width: 1199px) {
  .deals-offer-items .airline-wrap .airline-card .airline {
    gap: 10px;
  }
}

.deals-offer-items .airline-wrap .airline-card .airline .content h4 {
  font-size  : 20px;
  font-weight: 700;
}

.deals-offer-items .airline-wrap .airline-card .theme-btn {
  padding  : 12px 15px;
  min-width: 130px;
}

.deals-offer-items .airline-wrap .text {
  color: var(--theme);
}

.deals-offer-items .post-meta {
  display         : flex;
  align-items     : center;
  justify-content : space-between;
  background-color: var(--white);
  border-radius   : 6px;
  padding         : 10px 15px;
  margin-top      : 30px;
}

.deals-offer-items .post-meta li {
  color: var(--text);
}

@media (max-width: 1199px) {
  .deals-offer-items .post-meta .plane-shape {
    display: none;
  }
}

.deals-offer-items .date {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  margin-top     : 20px;
  border-bottom  : 1px solid rgba(10, 31, 36, 0.2);
  padding-bottom : 20px;
  margin-bottom  : 20px;
}

.deals-offer-items .date .content h4 {
  font-size  : 20px;
  font-weight: 600;
}

.deals-offer-items .date .content h4 span {
  color: var(--text);
}

.deals-offer-items .offer-business {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .deals-offer-items .offer-business {
    flex-wrap: wrap;
    gap      : 10px;
  }
}

.deals-offer-items .offer-business .business-content {
  display    : flex;
  align-items: center;
  gap        : 20px;
}

@media (max-width: 1199px) {
  .deals-offer-items .offer-business .business-content {
    gap: 8px;
  }
}

.deals-offer-items .offer-business .business-content .text h6 {
  font-weight: 600;
}

.deals-offer-items .offer-business span {
  color: var(--theme);
}

.deals-offer-items .offer-business .link-btn {
  color: var(--black);
}

.deals-offer-section .section-title-area .array-button {
  display    : flex;
  align-items: center;
  gap        : 10px;
}

.deals-offer-section .section-title-area .array-button .array-prev,
.deals-offer-section .section-title-area .array-button .array-next {
  width        : 56px;
  height       : 56px;
  border-radius: 50px;
  line-height  : 56px;
  text-align   : center;
  transition   : all 0.4s ease-in-out;
}

.deals-offer-section .section-title-area .array-button .array-prev:hover,
.deals-offer-section .section-title-area .array-button .array-next:hover {
  background-color: var(--header);
  color           : var(--white);
}

.deals-offer-section .section-title-area .array-button .array-prev {
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow      : 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
  color           : var(--white);
}

.deals-offer-section .section-title-area .array-button .array-prev:hover {
  background-color: var(--header);
  color           : var(--white);
}

.deals-offer-section .section-title-area .array-button .array-next {
  background: var(--header);
  color     : var(--white);
}

.deals-offer-section .section-title-area .array-button .array-next:hover {
  background-color: var(--white);
  color           : var(--header);
}

.counter-wrapper-2 {
  display      : flex;
  align-items  : center;
  gap          : 100px;
  padding      : 50px 150px;
  border-radius: 100px 0px 0px 100px;
  position     : relative;
}

@media (max-width: 1399px) {
  .counter-wrapper-2 {
    border-radius: 0;
  }
}

@media (max-width: 1199px) {
  .counter-wrapper-2 {
    flex-wrap: wrap;
    gap      : 70px;
    padding  : 50px 120px;
  }
}

@media (max-width: 991px) {
  .counter-wrapper-2 {
    padding  : 50px 80px;
    flex-wrap: wrap;
    gap      : 50px;
  }
}

@media (max-width: 767px) {
  .counter-wrapper-2 {
    padding  : 50px 45px;
    flex-wrap: wrap;
    gap      : 30px;
  }
}

.counter-wrapper-2 .counter-image {
  position: absolute;
  right   : 0;
  top     : 0;
  bottom  : 0;
}

@media (max-width: 1399px) {
  .counter-wrapper-2 .counter-image {
    display: none;
  }
}

.counter-wrapper-2 .counter-items-2 {
  border-right : 1px solid rgb(169, 175, 191);
  padding-right: 90px;
}

@media (max-width: 1399px) {
  .counter-wrapper-2 .counter-items-2 {
    border-right : none;
    padding-right: 0;
  }
}

.counter-wrapper-2 .counter-items-2 .counter-content h2 {
  font-size: 54px;
  color    : var(--white);
}

@media (max-width: 991px) {
  .counter-wrapper-2 .counter-items-2 .counter-content h2 {
    font-size: 45px;
  }
}

@media (max-width: 767px) {
  .counter-wrapper-2 .counter-items-2 .counter-content h2 {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .counter-wrapper-2 .counter-items-2 .counter-content h2 {
    font-size: 35px;
  }
}

.counter-wrapper-2 .counter-items-2 .counter-content p {
  color    : var(--white);
  font-size: 18px;
}

@media (max-width: 1199px) {
  .counter-wrapper-2 .counter-items-2 .counter-content p {
    font-size: 16px;
  }
}

.counter-wrapper-2 .counter-items-2.style-2 {
  border      : none;
  margin-right: 0;
}

.counter-section-2 .container-fluid {
  padding: 0px 0px 0px 120px;
}

@media (max-width: 1399px) {
  .counter-section-2 .container-fluid {
    padding: 0 60px;
  }
}

@media (max-width: 1199px) {
  .counter-section-2 .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 991px) {
  .counter-section-2 .container-fluid {
    padding: 0 40px;
  }
}

@media (max-width: 767px) {
  .counter-section-2 .container-fluid {
    padding: 0 40px;
  }
}

@media (max-width: 575px) {
  .counter-section-2 .container-fluid {
    padding: 0 30px;
  }
}

.counter-wrapper-3 {
  display    : flex;
  align-items: center;
  gap        : 100px;
  padding    : 80px 80px;
}

@media (max-width: 1199px) {
  .counter-wrapper-3 {
    padding  : 80px 0;
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .counter-wrapper-3 {
    justify-content: center;
    padding        : 80px 25px;
  }
}

.counter-wrapper-3 .counter-items {
  border-right : 1px dashed #A4ACB9;
  padding-right: 90px;
  text-align   : center;
}

@media (max-width: 1399px) {
  .counter-wrapper-3 .counter-items {
    border-right : none;
    padding-right: 0;
  }
}

.counter-wrapper-3 .counter-items .icon {
  position: relative;
}

.counter-wrapper-3 .counter-items .icon::before {
  position        : absolute;
  top             : 0;
  left            : 0;
  right           : 0;
  bottom          : 0;
  width           : 100%;
  height          : 100%;
  content         : "";
  width           : 80px;
  height          : 80px;
  left            : 50%;
  top             : 50%;
  transform       : translate(-50%, -50%);
  border-radius   : 100%;
  background-color: rgba(255, 255, 255, 0.1);
}

.counter-wrapper-3 .counter-items .icon::after {
  position        : absolute;
  content         : "";
  width           : 60px;
  left            : 50%;
  top             : 50%;
  transform       : translate(-50%, -50%);
  height          : 60px;
  line-height     : 60px;
  text-align      : center;
  border-radius   : 100%;
  background-color: rgba(255, 255, 255, 0.2);
}

.counter-wrapper-3 .counter-items .counter-content {
  margin-top: 50px;
}

.counter-wrapper-3 .counter-items .counter-content h2 {
  font-size  : 36px;
  font-weight: 800;
  color      : var(--white);
}

@media (max-width: 991px) {
  .counter-wrapper-3 .counter-items .counter-content h2 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .counter-wrapper-3 .counter-items .counter-content h2 {
    font-size: 26px;
  }
}

@media (max-width: 575px) {
  .counter-wrapper-3 .counter-items .counter-content h2 {
    font-size: 22px;
  }
}

.counter-wrapper-3 .counter-items .counter-content p {
  color: var(--white);
}

.counter-wrapper-3 .counter-items.style-2 {
  border      : none;
  margin-right: 0;
}

.booking-wrapper2 {
  margin-top: -50px;
  position  : relative;
  z-index   : 999;
}

.booking-wrapper2 .booking-wrap {
  margin-bottom: 10px;
}

.booking-wrapper2 .booking-wrap .nav {
  display    : flex;
  align-items: center;
  gap        : 100px;
}

@media (max-width: 1199px) {
  .booking-wrapper2 .booking-wrap .nav {
    flex-wrap: wrap;
    gap      : 20px;
  }
}

.booking-wrapper2 .booking-wrap .nav .nav-item {
  display    : flex;
  align-items: center;
  gap        : 20px;
}

.booking-wrapper2 .booking-wrap .nav .nav-item .nav-link {
  font-size  : 15px;
  color      : var(--header);
  font-weight: 500;
}

.booking-wrapper2 .booking-wrap .nav .nav-item .nav-link i {
  margin-right: 10px;
}

.booking-wrapper2 .booking-wrap .nav .nav-item .nav-link.active {
  color: var(--theme);
}

.booking-wrapper2 .tab-content {
  border-top    : 1px solid var(--border);
  padding-top   : 20px;
  border-bottom : 1px solid var(--border);
  padding-bottom: 20px;
}

.booking-wrapper2 .tab-content .form-clt .input-group .input-group-addon {
  display: none;
}

.booking-wrapper2 .tab-content .form-clt .input-group input {
  padding    : 0;
  border     : none;
  font-size  : 14px;
  font-weight: 400;
  outline    : none;
  line-height: 1;
  height     : initial;
  padding-top: 10px;
  outline    : none;
}

.booking-wrapper2 .tab-content .tour-wrapper {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .booking-wrapper2 .tab-content .tour-wrapper {
    flex-wrap: wrap;
    gap      : 30px;
  }
}

.booking-wrapper2 .tab-content .tour-wrapper .tour-item {
  display    : flex;
  align-items: center;
  gap        : 20px;
}

.booking-wrapper2 .tab-content .tour-wrapper .tour-item .icon {
  width        : 60px;
  height       : 60px;
  line-height  : 60px;
  text-align   : center;
  border-radius: 100px;
  background   : rgba(28, 168, 203, 0.1);
  position     : relative;
}

.booking-wrapper2 .tab-content .tour-wrapper .tour-item .icon::before {
  position  : absolute;
  top       : 0;
  left      : 0;
  right     : 0;
  bottom    : 0;
  width     : 100%;
  height    : 100%;
  content   : "";
  width     : 1px;
  height    : 60px;
  top       : 0px;
  background: #E6E6E6;
  left      : -25px;
  top       : 0px;
}

@media (max-width: 1399px) {
  .booking-wrapper2 .tab-content .tour-wrapper .tour-item .icon::before {
    display: none;
  }
}

.booking-wrapper2 .tab-content .tour-wrapper .tour-item.style-5 .icon::before {
  position  : absolute;
  top       : 0;
  left      : 0;
  right     : 0;
  bottom    : 0;
  width     : 100%;
  height    : 100%;
  content   : "";
  width     : none;
  height    : none;
  background: none;
}

.booking-wrapper2 .tab-content .tour-wrapper .tour-item .content .nice-select {
  padding    : 0;
  border     : none;
  font-size  : 14px;
  font-weight: 400;
  outline    : none;
  line-height: 1;
  height     : initial;
  padding-top: 10px;
}

.booking-wrapper2 .tab-content .tour-wrapper .tour-item .content .nice-select::after {
  border: none;
}

.booking-wrapper2 .tab-content .tour-wrapper .tour-item .content h5 {
  font-weight: 600;
}

.booking-wrapper2 .tab-content .tour-wrapper .tour-item .content input {
  border    : none;
  padding   : 0;
  width     : 100%;
  color     : var(--text);
  margin-top: 5px;
}

.booking-wrapper2 .tab-content .tour-wrapper .tour-item .content input::placeholder {
  color: var(--text);
}

.booking-wrapper2 .tab-content .tour-wrapper .tour-item .theme-btn {
  min-width: 145px;
}

.booking-wrapper2 .form-check-input:checked {
  background-color: var(--theme);
  border-color    : var(--theme);
}

.booking-wrapper2 .nav-link.acive .form-check-input:checked {
  background-color: var(--theme);
  border-color    : var(--theme);
}

.destination-category-item {
  margin-top: 30px;
}

.destination-category-item .category-image {
  position: relative;
  overflow: hidden;
}

.destination-category-item .category-image img {
  width        : 100%;
  height       : 100%;
  border-radius: 20px;
}

.destination-category-item .category-image::before {
  position     : absolute;
  top          : 0;
  left         : 0;
  right        : 0;
  bottom       : 0;
  width        : 100%;
  height       : 100%;
  content      : "";
  background   : linear-gradient(180deg, rgba(10, 31, 36, 0) 0%, #0A1F24 100%);
  opacity      : 1;
  transition   : all 0.4s ease-in-out;
  visibility   : hidden;
  border-radius: 20px;
}

.destination-category-item .category-image .category-content {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  position       : absolute;
  left           : 24px;
  right          : 24px;
  bottom         : -24px;
  opacity        : 1;
  transition     : all 0.4s ease-in-out;
  visibility     : hidden;
}

.destination-category-item .category-image .category-content h5 a {
  color: var(--white);
}

.destination-category-item .category-image .category-content h5 a:hover {
  color: var(--theme);
}

.destination-category-item .category-image .category-content p {
  font-size  : 14px;
  font-weight: 400;
  color      : var(--white);
}

.destination-category-item:hover .category-image::before {
  opacity   : 1;
  visibility: visible;
}

.destination-category-item:hover .category-image .category-content {
  bottom    : 30px;
  opacity   : 1;
  visibility: visible;
}

.destination-category-section .container-fluid {
  padding: 0 40px;
}

.destination-card-items {
  margin-top   : 30px;
  border       : 1px solid var(--border);
  border-radius: 20px;
}

.destination-card-items .destination-image {
  position     : relative;
  overflow     : hidden;
  border-radius: 20px;
}

.destination-card-items .destination-image img {
  width        : 100%;
  height       : 100%;
  border-radius: 20px;
  transform    : scale(1.1);
  transition   : all 0.4s ease-in-out;
}

.destination-card-items .destination-image .heart-icon {
  position     : absolute;
  right        : 20px;
  top          : 20px;
  text-align   : center;
  border-radius: 5px;
  width        : 30px;
  height       : 30px;
  line-height  : 30px;
  background   : rgba(22, 25, 33, 0.8);
}

.destination-card-items .destination-image .heart-icon i {
  color: var(--white);
}

.destination-card-items .destination-content {
  padding: 15px;
}

.destination-card-items .destination-content .meta {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  margin-bottom  : 20px;
}

.destination-card-items .destination-content .meta li {
  font-size: 14px;
  color    : var(--text);
}

.destination-card-items .destination-content .meta li i {
  color       : var(--theme);
  margin-right: 5px;
}

.destination-card-items .destination-content .meta .rating {
  display      : flex;
  align-items  : center;
  gap          : 6px;
  padding      : 8px 15px;
  line-height  : 1;
  border-radius: 100px;
  background   : rgba(28, 168, 203, 0.16);
}

.destination-card-items .destination-content .meta .rating .star i {
  color: var(--theme);
}

.destination-card-items .destination-content .meta .rating p {
  color    : var(--theme);
  font-size: 12px;
}

.destination-card-items .destination-content h5 {
  margin-bottom: 20px;
}

.destination-card-items .destination-content h5 a:hover {
  color: var(--theme);
}

.destination-card-items .destination-content .info {
  display       : flex;
  align-items   : center;
  gap           : 24px;
  border-bottom : 1px dashed var(--theme);
  padding-bottom: 10px;
  margin-bottom : 20px;
}

.destination-card-items .destination-content .info li {
  font-size  : 14px;
  font-weight: 300;
  color      : var(--text);
}

.destination-card-items .destination-content .info li i {
  color       : var(--theme);
  margin-right: 5px;
}

.destination-card-items .destination-content .price {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
}

.destination-card-items .destination-content .price h6 span {
  font-size: 12px;
  color    : var(--text);
}

.destination-card-items .destination-content .price .theme-btn.style-2 {
  border-radius: 100px;
  background   : rgba(2, 165, 206, 0.1);
  color        : var(--theme);
  padding      : 10px 20px;
  min-width    : 140px;
}

.destination-card-items .destination-content .price .theme-btn.style-2::before {
  background-color: var(--theme);
}

.destination-card-items .destination-content .price .theme-btn.style-2:hover {
  color     : var(--white);
  box-shadow: none;
}

.destination-card-items .destination-content .price .theme-btn.style-2:hover::before {
  width: 100%;
}

.destination-card-items:hover .destination-image img {
  transform: scale(1.4);
}

.destination-card-items-2 {
  margin-top: 30px;
}

.destination-card-items-2 .destination-image img {
  border-radius: 15px;
}

.destination-category-section {
  position: relative;
}

.destination-category-section .plane-shape {
  position: absolute;
  left    : 30px;
  top     : -40px;
}

.popular-destination-section {
  position: relative;
}

.popular-destination-section .car-shape {
  position: absolute;
  left    : 0;
  bottom  : 0;
}

@media (max-width: 1199px) {
  .popular-destination-section .car-shape {
    display: none;
  }
}

.popular-destination-section .left-shape {
  position: absolute;
  left    : 0;
  bottom  : 0;
}

.popular-destination-section .right-shape {
  position: absolute;
  right   : 0;
  top     : 80px;
}

.destination-wrapper .main-box {
  padding    : 0;
  gap        : 30px;
  display    : flex;
  align-items: center;
}

@media (max-width: 1199px) {
  .destination-wrapper .main-box {
    flex-wrap      : wrap;
    justify-content: center;
    gap            : 0 30px;
  }
}

.destination-wrapper .main-box .box {
  background-image   : url(../img/destination/14.jpg);
  background-position: center center;
  background-repeat  : no-repeat;
  background-size    : cover;
  z-index            : 1;
  width              : 414px !important;
  height             : 420px;
  position           : relative;
  overflow           : hidden;
  list-style         : none;
  transition         : all 0.4s ease-in-out;
  margin-top         : 30px;
  overflow           : hidden;
  border-radius      : 15px;
}

@media (max-width: 1199px) {
  .destination-wrapper .main-box .box {
    width : 570px !important;
    height: 420px;
  }
}

@media (max-width: 575px) {
  .destination-wrapper .main-box .box {
    height    : 420px;
    object-fit: cover;
  }
}

.destination-wrapper .main-box .box .destination-content {
  position       : absolute;
  bottom         : 30px;
  left           : 30px;
  opacity        : 0;
  visibility     : hidden;
  transition     : all 0.4s ease-in-out;
  right          : 30px;
  display        : flex;
  align-items    : center;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .destination-wrapper .main-box .box .destination-content {
    flex-wrap: wrap;
    gap      : 20px;
  }
}

.destination-wrapper .main-box .box .destination-content .text h3 {
  margin-bottom: 5px;
}

.destination-wrapper .main-box .box .destination-content .text h3 a {
  color: var(--white);
}

.destination-wrapper .main-box .box .destination-content .text h3 a:hover {
  color: var(--theme);
}

.destination-wrapper .main-box .box .destination-content .text span {
  color: var(--white);
}

.destination-wrapper .main-box .box .destination-content .theme-btn {
  background-color: transparent;
  border          : 1px solid var(--white);
  color           : var(--white);
}

.destination-wrapper .main-box .box .destination-content .theme-btn:before {
  background-color: var(--theme);
}

.destination-wrapper .main-box .box .destination-content .theme-btn:hover {
  color     : var(--white);
  box-shadow: none;
}

.destination-wrapper .main-box .box .destination-content .theme-btn:hover::before {
  width: 100%;
}

.destination-wrapper .main-box .box.bg {
  background-image: url(../img/destination/14.jpg);
  width           : 138px;
  height          : 340px;
}

.destination-wrapper .main-box .box.bg-1 {
  background-image: url(../img/destination/15.jpg);
  width           : 255px;
  height          : 380px;
}

.destination-wrapper .main-box .box.bg-2 {
  background-image: url(../img/destination/16.jpg);
}

.destination-wrapper .main-box .box.bg-3 {
  background-image: url(../img/destination/17.jpg);
  width           : 255px;
  height          : 380px;
}

.destination-wrapper .main-box .box.bg-4 {
  background-image: url(../img/destination/18.jpg);
  width           : 138px;
  height          : 340px;
}

.destination-wrapper .main-box .box.active {
  width : 950px !important;
  height: 420px;
}

.destination-wrapper .main-box .box.active::before {
  position  : absolute;
  top       : 0;
  left      : 0;
  right     : 0;
  bottom    : 0;
  width     : 100%;
  height    : 100%;
  content   : "";
  background: rgba(10, 31, 36, 0.4);
}

.destination-wrapper .main-box .box.active .destination-content {
  opacity   : 1;
  visibility: visible;
}

.top-destination-section {
  position: relative;
}

.top-destination-section .bag-shape {
  position: absolute;
  top     : 38%;
  left    : 30px;
}

@media (max-width: 1399px) {
  .top-destination-section .bag-shape {
    display: none;
  }
}

.top-destination-section .watch-shape {
  position: absolute;
  bottom  : 40px;
  right   : 40px;
}

@media (max-width: 1399px) {
  .top-destination-section .watch-shape {
    display: none;
  }
}

.tour-destination-wrapper .main-sidebar {
  margin-top: 30px;
}

.tour-destination-wrapper .main-sidebar .single-sidebar-widget {
  background-color: var(--white);
  border          : 1px solid var(--border);
  padding         : 30px;
  margin-bottom   : 30px;
  border-radius   : 10px;
}

.tour-destination-wrapper .main-sidebar .single-sidebar-widget .wid-title {
  margin-bottom: 25px;
}

.tour-destination-wrapper .main-sidebar .single-sidebar-widget .wid-title.style-2 {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
}

.tour-destination-wrapper .main-sidebar .single-sidebar-widget .categories-list .checkbox-single {
  position    : relative;
  padding-left: 18px;
  cursor      : pointer;
}

.tour-destination-wrapper .main-sidebar .single-sidebar-widget .categories-list .checkbox-single:not(:last-child) {
  border-bottom : 1px solid var(--border);
  padding-bottom: 15px;
}

.tour-destination-wrapper .main-sidebar .single-sidebar-widget .categories-list .checkbox-single input {
  position: absolute;
  opacity : 0;
  cursor  : pointer;
  height  : 0;
  width   : 0;
}

.tour-destination-wrapper .main-sidebar .single-sidebar-widget .categories-list .checkbox-single:not(:last-child) {
  margin-bottom: 15px;
}

.tour-destination-wrapper .main-sidebar .single-sidebar-widget .categories-list .checkbox-single .checkbox-area .checkmark {
  position: absolute;
  left    : 0;
  height  : 20px;
  width   : 20px;
  border  : 1px solid var(--theme);
  top     : 5px;
}

.tour-destination-wrapper .main-sidebar .single-sidebar-widget .categories-list .checkbox-single .checkbox-area .checkmark::after {
  content: "";
}

.tour-destination-wrapper .main-sidebar .single-sidebar-widget .categories-list .checkbox-single .checkbox-area input:checked~.checkmark {
  background-color: var(--theme);
}

.tour-destination-wrapper .main-sidebar .single-sidebar-widget .categories-list .checkbox-single .checkbox-area input:checked~.checkmark::after {
  content    : "\f00c";
  position   : absolute;
  font-family: "Font Awesome 6 Pro";
  top        : -5px;
  left       : 5px;
  color      : var(--theme);
  font-size  : 11px;
}

.tour-destination-wrapper .main-sidebar .single-sidebar-widget .categories-list .checkbox-single .checkbox-area input:checked~.checkmark:after {
  display: block;
  color  : var(--white);
}

.tour-destination-wrapper .main-sidebar .single-sidebar-widget .categories-list .checkbox-single .text-color {
  color: #586061;
}

.destination-details-image img {
  width        : 100%;
  height       : 100%;
  border-radius: 20px;
}

.new-destination-wrapper {
  margin-right: -40%;
}

@media (max-width: 1399px) {
  .new-destination-wrapper {
    margin-right: -20%;
  }
}

@media (max-width: 1199px) {
  .new-destination-wrapper {
    margin-right: 0;
  }
}

.new-destination-items {
  margin-top: 30px;
}

.new-destination-items .thumb {
  position: relative;
}

.new-destination-items .thumb::before {
  position     : absolute;
  top          : 0;
  left         : 0;
  right        : 0;
  bottom       : 0;
  width        : 100%;
  height       : 100%;
  content      : "";
  border-radius: 18px;
  background   : linear-gradient(180deg, rgba(37, 37, 37, 0) 0%, #252525 100%);
}

.new-destination-items .thumb img {
  width        : 100%;
  height       : 100%;
  border-radius: 18px;
}

.new-destination-items .thumb .content {
  position       : absolute;
  z-index        : 9;
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  left           : 35px;
  right          : 35px;
  bottom         : 35px;
}

@media (max-width: 1199px) {
  .new-destination-items .thumb .content {
    left     : 30px;
    right    : 30px;
    bottom   : 30px;
    flex-wrap: wrap;
    gap      : 20px;
  }
}

.new-destination-items .thumb .content h3 a {
  color: var(--white);
}

.new-destination-items .thumb .content h3 a:hover {
  color: var(--theme);
}

.new-destination-items .thumb .content p {
  color: var(--white);
}

.new-destination-items .thumb .content .icon {
  width           : 60px;
  height          : 60px;
  line-height     : 60px;
  text-align      : center;
  display         : inline-block;
  border-radius   : 50%;
  background-color: var(--white);
  color           : var(--header);
  text-align      : center;
}

.new-destination-items .thumb .content .icon:hover {
  background-color: var(--theme);
  color           : var(--white);
}

.new-top-desti-thumb {
  margin-top: 30px;
  position  : relative;
  overflow  : hidden;
}

.new-top-desti-thumb img {
  width        : 100%;
  height       : 100%;
  border-radius: 18px;
}

.new-top-desti-thumb::before {
  position     : absolute;
  top          : 0;
  left         : 0;
  right        : 0;
  bottom       : 0;
  width        : 100%;
  height       : 100%;
  content      : "";
  border-radius: 18px;
  background   : linear-gradient(0deg, rgba(14, 14, 14, 0.7) 0%, rgba(14, 14, 14, 0.7) 100%);
  opacity      : 0;
  visibility   : hidden;
  transition   : all 0.4s ease-in-out;
}

.new-top-desti-thumb .content {
  position  : absolute;
  bottom    : -100px;
  left      : 30px;
  opacity   : 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  z-index   : 9;
}

.new-top-desti-thumb .content h4 a {
  color: var(--white);
}

.new-top-desti-thumb .content h4 a:hover {
  color: var(--theme);
}

.new-top-desti-thumb .content p {
  color: var(--white);
}

.new-top-desti-thumb .icon {
  width        : 60px;
  height       : 60px;
  line-height  : 60px;
  text-align   : center;
  border-radius: 50%;
  border       : 2px solid var(--white);
  text-align   : center;
  color        : var(--white);
  display      : inline-block;
  position     : absolute;
  top          : -100px;
  left         : 50%;
  transform    : translate(-50%, -50%);
  opacity      : 0;
  visibility   : hidden;
  transition   : all 0.4s ease-in-out;
}

.new-top-desti-thumb .icon:hover {
  background-color: var(--theme);
  border          : 2px solid var(--theme);
}

.new-top-desti-thumb:hover::before {
  opacity   : 1;
  visibility: visible;
}

.new-top-desti-thumb:hover .content {
  bottom    : 30px;
  opacity   : 1;
  visibility: visible;
}

.new-top-desti-thumb:hover .icon {
  top       : 50%;
  opacity   : 1;
  visibility: visible;
}

.destination-details-wrapper .destination-details-items .details-image img {
  width        : 100%;
  height       : 100%;
  border-radius: 20px;
}

.destination-details-wrapper .destination-details-items .details-content {
  margin-top: 30px;
}

.destination-details-wrapper .destination-details-items .map-area {
  margin-top: 40px;
}

.destination-details-wrapper .destination-details-items .map-area h3 {
  font-size    : 30px;
  font-weight  : 700;
  margin-bottom: 20px;
}

.destination-details-wrapper .destination-details-items .map-area .google-map iframe {
  width        : 100%;
  height       : 460px;
  border-radius: 20px;
}

.destination-details-wrapper .destination-details-items .map-area .review-items li {
  display    : flex;
  align-items: center;
  gap        : 24px;
  position   : relative;
}

.destination-details-wrapper .destination-details-items .map-area .review-items li:not(:last-child) {
  margin-bottom: 40px;
}

.destination-details-wrapper .destination-details-items .map-area .review-items li:nth-child(2) {
  margin-left: 135px;
}

@media (max-width: 1199px) {
  .destination-details-wrapper .destination-details-items .map-area .review-items li:nth-child(2) {
    margin-left: 0;
  }
}

.destination-details-wrapper .destination-details-items .map-area .review-items li .thumb img {
  border-radius: 12px;
}

.destination-details-wrapper .destination-details-items .map-area .review-items li .content .star {
  color        : #FFB700;
  margin-bottom: 4px;
}

.destination-details-wrapper .destination-details-items .map-area .review-items li .content p {
  margin-top: 7px;
}

.destination-details-wrapper .destination-details-items .map-area .review-items li .content .reply-icon {
  color   : var(--header);
  position: absolute;
  top     : 0;
  right   : 0;
}

.destination-details-wrapper .destination-details-items .map-area .review-items li .content .reply-icon i {
  color       : var(--theme);
  margin-right: 10px;
}

.destination-details-wrapper .destination-details-items .map-area.ratting-items {
  background-color: var(--bg);
  border-radius   : 20px;
  padding         : 50px 40px;
}

.destination-details-wrapper .destination-details-items .map-area.ratting-items h3 {
  line-height: 1;
}

.destination-details-wrapper .destination-details-items .map-area.ratting-items ul {
  display      : flex;
  align-items  : center;
  gap          : 70px;
  margin-bottom: 10px;
}

@media (max-width: 1399px) {
  .destination-details-wrapper .destination-details-items .map-area.ratting-items ul {
    flex-wrap: wrap;
    gap      : 30px;
  }
}

.destination-details-wrapper .destination-details-items .map-area.ratting-items ul li {
  font-size  : 16px;
  font-weight: 600;
  color      : var(--header);
  display    : flex;
  align-items: center;
  gap        : 12px;
  flex-basis : 25%;
}

@media (max-width: 1399px) {
  .destination-details-wrapper .destination-details-items .map-area.ratting-items ul li {
    flex-basis: initial;
  }
}

.destination-details-wrapper .destination-details-items .map-area.ratting-items ul li .star {
  color: #F7921E;
}

.destination-details-wrapper .destination-details-items .map-area.ratting-items h4 {
  font-size    : 20px;
  font-weight  : 600;
  margin-top   : 50px;
  margin-bottom: 25px;
}

.destination-details-wrapper .destination-details-items .map-area.ratting-items .form-clt input,
.destination-details-wrapper .destination-details-items .map-area.ratting-items .form-clt textarea {
  border          : none;
  outline         : none;
  width           : 100%;
  background-color: var(--white);
  padding         : 20px 30px;
  line-height     : 1;
  border-radius   : 10px;
  text-transform  : capitalize;
  color           : #455151;
}

.destination-details-wrapper .destination-details-items .map-area.ratting-items .form-clt input::placeholder,
.destination-details-wrapper .destination-details-items .map-area.ratting-items .form-clt textarea::placeholder {
  color: #455151;
}

.destination-details-wrapper .destination-details-items .map-area.ratting-items .form-clt textarea {
  padding-bottom: 152px;
}

.faq-wrapper .faq-content p {
  color: #504E4E;
}

.faq-wrapper .faq-content .faq-list {
  display      : flex;
  align-items  : center;
  gap          : 35px;
  margin-top   : 40px;
  padding      : 25px 0;
  border-bottom: 1px solid var(--border);
  border-top   : 1px solid var(--border);
}

@media (max-width: 1199px) {
  .faq-wrapper .faq-content .faq-list {
    flex-wrap: wrap;
    gap      : 20px;
  }
}

.faq-wrapper .faq-content .faq-list li {
  color: #504E4E;
}

.faq-wrapper .faq-content .faq-list li img {
  margin-right: 16px;
}

.faq-wrapper .faq-items {
  margin-left: 50px;
}

@media (max-width: 1199px) {
  .faq-wrapper .faq-items {
    margin-left: 0;
  }
}

.faq-wrapper .faq-items .accordion-item {
  border          : 0;
  background-color: var(--white);
  border-radius   : 12px;
  box-shadow      : 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
}

.faq-wrapper .faq-items .accordion-item .accordion-header {
  border: none;
}

.faq-wrapper .faq-items .accordion-item .accordion-header .accordion-button {
  font-weight     : 600;
  color           : var(--theme);
  border          : 0;
  border-radius   : 0;
  box-shadow      : none;
  background-color: var(--white);
  border-radius   : 12px;
  padding         : 25px 30px 0;
  text-transform  : capitalize;
  font-size       : 22px;
}

@media (max-width: 1199px) {
  .faq-wrapper .faq-items .accordion-item .accordion-header .accordion-button {
    font-size: 20px;
  }
}

.faq-wrapper .faq-items .accordion-item .accordion-header .accordion-button::after {
  content    : "\f324";
  background : transparent;
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  transition : all 0.3s ease-in-out !important;
  color      : var(--header);
}

.faq-wrapper .faq-items .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content    : "\f322";
  background : transparent;
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  transform  : rotate(0);
  color      : var(--theme);
}

.faq-wrapper .faq-items .accordion-item .accordion-header .accordion-button.collapsed {
  background-color: transparent;
  padding         : 25px 30px;
  color           : var(--header);
}

.faq-wrapper .faq-items .accordion-item .accordion-collapse .accordion-body {
  padding-left: 30px;
  padding-top : 15px;
  color       : #504E4E;
}

.faq-section {
  position: relative;
}

.faq-section .left-shape {
  position: absolute;
  left    : 0;
  bottom  : 0;
}

@media (max-width: 1399px) {
  .faq-section .left-shape {
    display: none;
  }
}

.feature-card-items {
  text-align: center;
}

@media (max-width: 1199px) {
  .feature-card-items {
    margin-bottom: 20px;
  }
}

.feature-card-items .icon {
  width           : 82px;
  height          : 82px;
  border-radius   : 50px;
  line-height     : 82px;
  text-align      : center;
  background-color: rgba(28, 168, 203, 0.2);
  margin          : 0 auto;
  margin-bottom   : 20px;
}

.feature-card-items .icon.bg-color {
  background: #FEE8E8;
}

.feature-wrapper .feature-content .feature-area {
  position     : relative;
  margin-bottom: 50px;
}

.feature-wrapper .feature-content .feature-area .line-shape {
  position: absolute;
  right   : 297px;
  top     : 5px;
}

@media (max-width: 1399px) {
  .feature-wrapper .feature-content .feature-area .line-shape {
    display: none;
  }
}

.feature-wrapper .feature-content .feature-area .feature-items {
  display    : flex;
  align-items: center;
  gap        : 100px;
  margin-top : 30px;
}

@media (max-width: 1399px) {
  .feature-wrapper .feature-content .feature-area .feature-items {
    gap: 60px;
  }
}

@media (max-width: 1199px) {
  .feature-wrapper .feature-content .feature-area .feature-items {
    flex-wrap: wrap;
    gap      : 20px;
  }
}

.feature-wrapper .feature-content .feature-area .feature-items:not(:last-child) {
  margin-bottom: 50px;
}

@media (max-width: 1199px) {
  .feature-wrapper .feature-content .feature-area .feature-items:not(:last-child) {
    margin-bottom: 30px;
  }
}

.feature-wrapper .feature-content .feature-area .feature-items .feature-icon-item {
  display    : flex;
  align-items: center;
  gap        : 24px;
}

.feature-wrapper .feature-content .feature-area .feature-items .feature-icon-item .icon {
  width           : 67px;
  height          : 67px;
  line-height     : 67px;
  border-radius   : 50px;
  text-align      : center;
  background-color: var(--theme);
}

.feature-wrapper .feature-content .feature-area .feature-items .circle-icon {
  display    : flex;
  align-items: center;
  gap        : 20px;
}

.feature-wrapper .feature-content .feature-area .feature-items .circle-icon li i {
  color: var(--theme);
}

.feature-wrapper .feature-image img {
  width : 100%;
  height: 100%;
}

.travel-feature-section {
  position: relative;
}

.travel-feature-section .shape-1 {
  position: absolute;
  left    : -18px;
  top     : 114px;
}

@media (max-width: 1399px) {
  .travel-feature-section .shape-1 {
    display: none;
  }
}

.travel-feature-section .shape-2 {
  position: absolute;
  right   : 0;
  top     : 0;
}

@media (max-width: 1399px) {
  .travel-feature-section .shape-2 {
    display: none;
  }
}

.deals-offer-section {
  position: relative;
}

.deals-offer-section::before {
  position: absolute;
  top     : 0;
  left    : 0;
  right   : 0;
  bottom  : 0;
  width   : 100%;
  height  : 100%;
  content : "";
}

.deals-offer-wrapper .price-items {
  padding: 0 80px;
}

.deals-offer-wrapper .price-items .price-image h2 {
  font-size: 200px;
  color    : var(--white);
}

.deals-offer-wrapper .price-items .coming-soon-timer {
  display    : flex;
  align-items: center;
  gap        : 60px;
  margin-top : 80px;
}

@media (max-width: 1399px) {
  .deals-offer-wrapper .price-items .coming-soon-timer {
    flex-wrap : wrap;
    margin-top: 50px;
    gap       : 40px;
  }
}

.deals-offer-wrapper .price-items .coming-soon-timer .timer-content h2 {
  font-size    : 40px;
  color        : var(--white);
  display      : inline-block;
  font-weight  : 700;
  margin-bottom: 10px;
}

.deals-offer-wrapper .price-items .coming-soon-timer .timer-content p {
  font-weight: 500;
  color      : var(--white);
}

.deals-offer-wrapper .section-title-area {
  display        : flex;
  align-items    : center;
  gap            : 130px !important;
  justify-content: initial;
}

@media (max-width: 1399px) {
  .deals-offer-wrapper .section-title-area {
    justify-content: center;
    flex-wrap      : wrap;
    gap            : 17px !important;
    margin-bottom  : 30px;
  }
}

@media (max-width: 1199px) {
  .deals-offer-wrapper .section-title-area {
    gap: 10px !important;
  }
}

@media (max-width: 767px) {
  .deals-offer-wrapper .section-title-area {
    gap: 35px !important;
  }
}

.deals-offer-wrapper .offer-slide-items .offer-slider {
  margin-right: -85px;
}

@media (max-width: 1199px) {
  .deals-offer-wrapper .offer-slide-items .offer-slider {
    margin-right: 0;
  }
}

.deals-offer-wrapper .offer-slide-items .offer-items .offer-image {
  position: relative;
  overflow: hidden;
}

.deals-offer-wrapper .offer-slide-items .offer-items .offer-image::before {
  position     : absolute;
  top          : 0;
  left         : 0;
  right        : 0;
  bottom       : 0;
  width        : 100%;
  height       : 100%;
  content      : "";
  border-radius: 10px;
  background   : linear-gradient(180deg, rgba(22, 25, 33, 0) 0%, #161921 100%);
  opacity      : 0;
  visibility   : hidden;
  transition   : all 0.4s ease-in-out;
}

.deals-offer-wrapper .offer-slide-items .offer-items .offer-image img {
  width        : 100%;
  height       : 100%;
  border-radius: 10px;
}

.deals-offer-wrapper .offer-slide-items .offer-items .offer-image .offer-content .offer-btn {
  position: absolute;
  left    : 24px;
  top     : 24px;
}

.deals-offer-wrapper .offer-slide-items .offer-items .offer-image .offer-content .offer-btn li {
  font-size       : 14px;
  font-weight     : 500;
  color           : var(--white);
  background-color: var(--theme);
  padding         : 10px;
  line-height     : 1;
  border-radius   : 8px;
}

.deals-offer-wrapper .offer-slide-items .offer-items .offer-image .offer-content .offer-btn li:not(:last-child) {
  margin-bottom: 5px;
}

.deals-offer-wrapper .offer-slide-items .offer-items .offer-image .offer-content .offer-btn li.bg-color {
  background-color: var(--header);
}

.deals-offer-wrapper .offer-slide-items .offer-items .offer-image .offer-content .content {
  position: absolute;
  left    : 24px;
  bottom  : 24px;
}

.deals-offer-wrapper .offer-slide-items .offer-items .offer-image .offer-content .content h3 a {
  color: var(--white);
}

.deals-offer-wrapper .offer-slide-items .offer-items .offer-image .offer-content .content h3 a:hover {
  color: var(--theme);
}

.deals-offer-wrapper .offer-slide-items .offer-items .offer-image .offer-content .content span {
  font-size  : 20px;
  font-weight: 700;
  color      : var(--white);
}

.deals-offer-wrapper .offer-slide-items .offer-items:hover .offer-image::before {
  opacity   : 1;
  visibility: visible;
}

.choose-us-wrapper .choose-us-content .choose-us-area {
  margin-top: 40px;
  position  : relative;
  z-index   : 1;
}

.choose-us-wrapper .choose-us-content .choose-us-area .line-shape {
  position: absolute;
  left    : 29px;
  top     : 28px;
  z-index : -1;
}

@media (max-width: 1199px) {
  .choose-us-wrapper .choose-us-content .choose-us-area .line-shape {
    display: none;
  }
}

.choose-us-wrapper .choose-us-content .choose-us-area .choose-us-items {
  display: flex;
  gap    : 30px;
}

@media (max-width: 1199px) {
  .choose-us-wrapper .choose-us-content .choose-us-area .choose-us-items {
    flex-wrap: wrap;
  }
}

.choose-us-wrapper .choose-us-content .choose-us-area .choose-us-items:not(:last-child) {
  margin-bottom: 30px;
}

.choose-us-wrapper .choose-us-content .choose-us-area .choose-us-items .number {
  width           : 56px;
  height          : 56px;
  line-height     : 56px;
  border-radius   : 50px;
  text-align      : center;
  color           : var(--theme);
  background-color: #E1EFF3;
}

.choose-us-wrapper .choose-us-content .choose-us-area .choose-us-items .content h4 {
  font-size    : 20px;
  margin-bottom: 12px;
}

.choose-us-wrapper .choose-us-content .choose-us-area .choose-us-items .content p {
  font-size: 14px;
}

@media (max-width: 1399px) {
  .choose-us-wrapper .choose-us-thumb img {
    width : 100%;
    height: 100%;
  }
}

.video-wrapper .watch-button {
  display        : flex;
  align-items    : center;
  gap            : 40px;
  justify-content: center;
  margin-bottom  : 80px;
}

@media (max-width: 1199px) {
  .video-wrapper .watch-button {
    margin-top   : 30px;
    margin-bottom: 30px;
    gap          : 10px;
  }
}

.video-wrapper .watch-button .theme-btn.style-2 {
  background-color: var(--theme-2);
}

.video-wrapper .watch-button .theme-btn.style-2:before {
  background-color: var(--theme);
}

.video-wrapper .video-image {
  position             : relative;
  border-radius        : 20px;
  padding              : 270px 0;
  background-attachment: fixed;
}

@media (max-width: 1199px) {
  .video-wrapper .video-image {
    padding: 200px 0;
  }
}

@media (max-width: 991px) {
  .video-wrapper .video-image {
    padding: 170px 0;
  }
}

@media (max-width: 767px) {
  .video-wrapper .video-image {
    padding: 140px 0;
  }
}

@media (max-width: 575px) {
  .video-wrapper .video-image {
    padding: 100px 0;
  }
}

.video-wrapper .video-image::before {
  position        : absolute;
  top             : 0;
  left            : 0;
  right           : 0;
  bottom          : 0;
  width           : 100%;
  height          : 100%;
  content         : "";
  background-color: rgba(10, 31, 36, 0.45);
  border-radius   : 50px;
}

.video-wrapper .video-image .video-btn {
  width           : 110px;
  height          : 110px;
  line-height     : 110px;
  border-radius   : 110px;
  text-align      : center;
  background-color: var(--theme);
  color           : var(--white);
  top             : 50%;
  left            : 50%;
  position        : absolute;
  transform       : translate(-50%, -50%);
  font-size       : 18px;
}

.watch-video-section {
  position: relative;
}

.watch-video-section .bg-shape {
  position: absolute;
  left    : 50px;
}

.feature-tour-items {
  margin-top: 30px;
}

.feature-tour-items .feature-tour-image {
  position: relative;
}

.feature-tour-items .feature-tour-image img {
  width        : 100%;
  height       : 100%;
  border-radius: 15px;
}

.feature-tour-items .feature-tour-image .location {
  position        : absolute;
  left            : 25px;
  top             : 25px;
  background-color: var(--white);
  padding         : 7px 12px;
  border-radius   : 100px;
  line-height     : 1;
}

.feature-tour-items .feature-tour-image .location li {
  font-size  : 14px;
  font-weight: 400;
  color      : var(--text);
}

.feature-tour-items .feature-tour-image .location li i {
  color       : var(--theme);
  margin-right: 5px;
}

.feature-tour-items .feature-tour-content {
  margin-top: 20px;
  position  : relative;
}

.feature-tour-items .feature-tour-content h4 {
  font-size    : 20px;
  font-weight  : 600;
  margin-bottom: 30px;
}

.feature-tour-items .feature-tour-content h4 a:hover {
  color: var(--theme);
}

.feature-tour-items .feature-tour-content h5 {
  transition: all 0.4s ease-in-out;
}

.feature-tour-items .feature-tour-content h5:hover {
  color: var(--theme);
}

.feature-tour-items .feature-tour-content h5 span {
  font-size  : 13px;
  font-weight: 400;
  color      : var(--text);
}

.feature-tour-items .feature-tour-content .icon {
  border-radius: 5px;
  border       : 1px solid rgba(10, 31, 36, 0.25);
  width        : 42px;
  height       : 42px;
  line-height  : 38px;
  text-align   : center;
  position     : absolute;
  right        : 0;
  bottom       : 0;
}

.feature-tour-items .feature-tour-content .icon:hover {
  background-color: var(--theme);
  border          : 1px solid var(--theme);
  color           : var(--white);
}

.featured-tour-section {
  position: relative;
}

.featured-tour-section::before {
  position        : absolute;
  top             : 0;
  left            : 0;
  right           : 0;
  bottom          : 0;
  width           : 100%;
  height          : 100%;
  content         : "";
  background-color: var(--bg);
  top             : -35%;
  z-index         : -1;
}

.featured-tour-section .left-shape {
  position: absolute;
  top     : 50%;
  left    : 50px;
}

@media (max-width: 1399px) {
  .featured-tour-section .left-shape {
    display: none;
  }
}

.featured-tour-section .right-shape {
  position: absolute;
  bottom  : 23%;
  right   : 30px;
}

@media (max-width: 1399px) {
  .featured-tour-section .right-shape {
    display: none;
  }
}

.featured-tour-section .array-button {
  display: grid;
  gap    : 10px;
}

.featured-tour-section .array-button .array-prev,
.featured-tour-section .array-button .array-next {
  width        : 56px;
  height       : 56px;
  border-radius: 50px;
  line-height  : 56px;
  text-align   : center;
  transition   : all 0.4s ease-in-out;
  color        : var(--white);
}

.featured-tour-section .array-button .array-prev {
  background-color: var(--theme);
  position        : absolute;
  bottom          : 36%;
  right           : 11%;
}

.featured-tour-section .array-button .array-prev:hover {
  background-color: var(--header);
}

.featured-tour-section .array-button .array-next {
  background: rgba(2, 165, 206, 0.1);
  position  : absolute;
  left      : 11%;
  bottom    : 35%;
  color     : var(--header);
}

.featured-tour-section .array-button .array-next:hover {
  background-color: var(--header);
  color           : var(--white);
}

.featured-flight-items {
  margin-top: 30px;
}

.featured-flight-items .featured-image img {
  width        : 100%;
  height       : 100%;
  border-radius: 15px;
}

.featured-flight-items .featured-content {
  margin-top: 20px;
}

.featured-flight-items .featured-content .featured-post {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  margin-bottom  : 10px;
}

.featured-flight-items .featured-content .featured-post .feature-list li {
  font-size  : 16px;
  font-weight: 400;
  color      : var(--text);
}

.featured-flight-items .featured-content .featured-post .feature-list li i {
  color       : var(--theme);
  margin-right: 5px;
}

.featured-flight-items .featured-content .featured-post .text p {
  color: var(--text);
}

.featured-flight-items .featured-content .featured-cont {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  border-bottom  : 1px solid #E6E6E6;
  padding-bottom : 20px;
  margin-bottom  : 30px;
}

.featured-flight-items .featured-content .featured-cont p {
  font-size: 14px;
  color    : var(--text);
}

.featured-flight-items .featured-content .featured-cont p b {
  font-size: 18px;
  color    : var(--theme);
}

.featured-flight-items .featured-content .featured-rating {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
}

.featured-flight-items .featured-content .featured-rating .star {
  display      : inline-block;
  margin-bottom: 20px;
}

.featured-flight-items .featured-content .featured-rating .star i {
  color: #F16522;
}

.featured-flight-items .featured-content .featured-rating .star h6 {
  font-weight: 400;
  margin-top : 10px;
}

.featured-flight-items .featured-content .featured-rating .theme-btn {
  padding         : 15px 22px;
  background-color: transparent;
  border          : 1px solid var(--theme);
  color           : var(--header);
}

.featured-flight-items .featured-content .featured-rating .theme-btn:before {
  background-color: var(--theme);
}

.featured-flight-items .featured-content .featured-rating .theme-btn:hover {
  color     : var(--white);
  box-shadow: none;
}

.featured-flight-items .featured-content .featured-rating .theme-btn:hover::before {
  width: 100%;
}

.airlines-items {
  display      : flex;
  align-items  : center;
  gap          : 15px;
  border-radius: 13px;
  background   : rgba(6, 51, 71, 0.06);
  border       : 1px solid var(--white);
  padding      : 20px;
  transition   : all 0.4s ease-in-out;
}

@media (max-width: 1199px) {
  .airlines-items {
    margin-top: 30px;
  }
}

.airlines-items .content {
  font-weight: 700;
  color      : #1D3638;
}

.airlines-items:hover {
  border    : 1px solid #1CA8CB;
  background: var(--white);
}

.top-airlines-section {
  margin-bottom: -50px;
}

.activities-items .activities-image {
  position     : relative;
  overflow     : hidden;
  border-radius: 20px;
}

.activities-items .activities-image img {
  width        : 100%;
  height       : 100%;
  border-radius: 20px;
  transform    : scale(1.1);
  transition   : all 0.4s ease-in-out;
}

.activities-items .activities-image .post {
  font-size       : 12px;
  font-weight     : 600;
  color           : var(--white);
  padding         : 8px 10px;
  line-height     : 1;
  background-color: var(--theme);
  position        : absolute;
  top             : 25px;
  left            : 25px;
  border-radius   : 100px;
}

.activities-items .activities-content {
  margin-top: 30px;
}

.activities-items .activities-content h4 a:hover {
  color: var(--theme);
}

.activities-items:hover .activities-image img {
  transform: scale(1.4);
}

.activities-details-wrapper .details-thumb {
  margin-bottom: 30px;
  position     : relative;
}

.activities-details-wrapper .details-thumb img {
  width        : 100%;
  height       : 100%;
  border-radius: 20px;
}

.activities-details-wrapper .details-thumb .image-list {
  position   : absolute;
  bottom     : 20px;
  left       : 20px;
  display    : flex;
  align-items: center;
  right      : 20px;
  gap        : 15px;
}

.activities-details-wrapper .details-thumb .image-list li img {
  width        : 100%;
  height       : 100%;
  border-radius: 10px;
}

.activities-details-wrapper .activities-rating {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .activities-details-wrapper .activities-rating {
    flex-wrap: wrap;
    gap      : 20px;
  }
}

.activities-details-wrapper .activities-rating .activities-content h3 {
  font-size    : 30px;
  margin-bottom: 10px;
}

@media (max-width: 575px) {
  .activities-details-wrapper .activities-rating .activities-content h3 {
    font-size: 24px;
  }
}

.activities-details-wrapper .activities-rating .activities-content .rating {
  display    : flex;
  align-items: center;
  gap        : 20px;
}

.activities-details-wrapper .activities-rating .activities-content .rating .star i {
  color: #FE6902;
}

.activities-details-wrapper .activities-rating .activities-content .rating li i {
  color       : var(--theme);
  margin-right: 6px;
}

.activities-details-wrapper .activities-rating .share {
  border-radius: 6px;
  border       : 1px solid var(--theme);
  padding      : 20px 24px;
  line-height  : 1;
}

.activities-details-wrapper .activities-rating .share li {
  font-size: 16px;
}

.activities-details-wrapper .activities-rating .share li i {
  color      : var(--theme);
  margin-left: 5px;
}

.activities-details-wrapper .activities-wrap {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  padding        : 30px 0;
  border-top     : 1px solid var(--border);
  border-bottom  : 1px solid var(--border);
  margin-top     : 50px;
  margin-bottom  : 50px;
}

@media (max-width: 1199px) {
  .activities-details-wrapper .activities-wrap {
    flex-wrap    : wrap;
    gap          : 20px;
    padding-right: 0;
  }
}

.activities-details-wrapper .activities-wrap .activities-item {
  display      : flex;
  align-items  : center;
  gap          : 20px;
  border-right : 1px solid rgb(169, 175, 191);
  padding-right: 60px;
}

@media (max-width: 1199px) {
  .activities-details-wrapper .activities-wrap .activities-item {
    border-right: none;
  }
}

.activities-details-wrapper .activities-wrap .activities-item.style-2 {
  border      : none;
  margin-right: 0;
}

.activities-details-wrapper .activities-wrap .activities-item .content h6 {
  font-size  : 14px;
  font-weight: 600;
}

.activities-details-wrapper .activities-wrap .activities-item .content span {
  font-size: 12px;
  color    : var(--text);
}

.activities-details-wrapper .main-bar .activities-card {
  border       : 1px solid var(--border);
  padding      : 30px;
  border-radius: 10px;
}

.activities-details-wrapper .main-bar .activities-card h3 {
  margin-bottom: 30px;
}

.activities-details-wrapper .main-bar .activities-card .from-bar .from-list {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  border-bottom  : 1px solid var(--border);
  padding-bottom : 15px;
  margin-bottom  : 15px;
}

.activities-details-wrapper .main-bar .activities-card .from-bar .from-list li {
  font-size  : 18px;
  font-weight: 500;
  color      : var(--header);
}

.activities-details-wrapper .main-bar .activities-card .from-bar .from-list li i {
  color: var(--theme);
}

.activities-details-wrapper .main-bar .activities-card .from-bar .from-list li input {
  border : none;
  padding: 0;
}

.activities-details-wrapper .main-bar .activities-card .from-bar .list {
  font-size     : 18px;
  font-weight   : 500;
  color         : var(--header);
  border-bottom : 1px solid var(--border);
  padding-bottom: 15px;
  margin-bottom : 15px;
}

.activities-details-wrapper .main-bar .activities-card .from-bar .ticket {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  border-bottom  : 1px solid var(--border);
  padding-bottom : 15px;
  margin-bottom  : 20px;
}

.activities-details-wrapper .main-bar .activities-card .from-bar .ticket li {
  font-size  : 18px;
  font-weight: 500;
  color      : var(--header);
}

.activities-details-wrapper .main-bar .activities-card .from-bar .ticket li span {
  font-weight: 300;
}

.activities-details-wrapper .main-bar .activities-card .categories-list h5 {
  font-weight  : 500;
  margin-bottom: 30px;
}

.activities-details-wrapper .main-bar .activities-card .categories-list .checkbox-single {
  position    : relative;
  padding-left: 18px;
  cursor      : pointer;
}

.activities-details-wrapper .main-bar .activities-card .categories-list .checkbox-single input {
  position: absolute;
  opacity : 0;
  cursor  : pointer;
  height  : 0;
  width   : 0;
}

.activities-details-wrapper .main-bar .activities-card .categories-list .checkbox-single:not(:last-child) {
  margin-bottom: 10px;
}

.activities-details-wrapper .main-bar .activities-card .categories-list .checkbox-single .checkbox-area .checkmark {
  position: absolute;
  left    : 0;
  height  : 20px;
  width   : 20px;
  border  : 1px solid var(--border);
  top     : 5px;
}

.activities-details-wrapper .main-bar .activities-card .categories-list .checkbox-single .checkbox-area .checkmark::after {
  content: "";
}

.activities-details-wrapper .main-bar .activities-card .categories-list .checkbox-single .checkbox-area input:checked~.checkmark {
  background-color: var(--theme);
}

.activities-details-wrapper .main-bar .activities-card .categories-list .checkbox-single .checkbox-area input:checked~.checkmark::after {
  content    : "\f00c";
  position   : absolute;
  font-family: "Font Awesome 6 Pro";
  top        : -5px;
  left       : 5px;
  color      : var(--theme);
  font-size  : 11px;
}

.activities-details-wrapper .main-bar .activities-card .categories-list .checkbox-single .checkbox-area input:checked~.checkmark:after {
  display: block;
  color  : var(--white);
}

.activities-details-wrapper .main-bar .activities-card .categories-list .checkbox-single .text-color {
  color: var(--text);
}

.activities-details-wrapper .main-bar .activities-card .doller {
  margin-top: 30px;
}

.activities-details-wrapper .main-bar .activities-card .doller span {
  font-weight  : 500;
  color        : var(--header);
  display      : inline-block;
  margin-bottom: 15px;
}

.activities-details-wrapper .main-bar .activities-card .doller li {
  font-size  : 18px;
  font-weight: 500;
  color      : var(--header);
}

.activities-details-wrapper .main-bar .activities-card .doller li:not(:last-child) {
  margin-bottom: 10px;
}

.activities-details-wrapper .main-bar .activities-card .price {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  margin-bottom  : 40px;
  margin-top     : 10px;
  border-top     : 1px solid var(--border);
  padding-top    : 15px;
}

.activities-details-wrapper .main-bar .activities-card .price li {
  font-size  : 18px;
  font-weight: 500;
  color      : var(--header);
}

.activities-details-wrapper .main-bar .activities-card .theme-btn {
  width: 100%;
}

.activities-details-wrapper .main-bar .booking-bg {
  border-radius: 20px;
  position     : relative;
  height       : 340px;
  margin-top   : 30px;
}

.activities-details-wrapper .main-bar .booking-bg::before {
  position     : absolute;
  top          : 0;
  left         : 0;
  right        : 0;
  bottom       : 0;
  width        : 100%;
  height       : 100%;
  content      : "";
  border-radius: 20px;
  background   : linear-gradient(180deg, rgba(14, 14, 14, 0) 19.86%, #0E0E0E 77.79%);
}

.activities-details-wrapper .main-bar .booking-bg .text-title {
  text-align : center;
  font-size  : 24px;
  font-weight: 700;
  color      : var(--white);
  position   : absolute;
  bottom     : 30px;
  left       : 50%;
  transform  : translateX(-50%);
  width      : 100%;
  max-width  : 295px;
}

.activities-details-wrapper .activities-details-content h3 {
  margin-bottom: 20px;
  line-height  : 1;
}

.activities-details-wrapper .activities-details-content .activities-list-item {
  margin-top: 40px;
}

.activities-details-wrapper .activities-details-content .activities-list-item .activities-item {
  display    : flex;
  align-items: center;
  gap        : 60px;
  margin-top : 15px;
}

@media (max-width: 1199px) {
  .activities-details-wrapper .activities-details-content .activities-list-item .activities-item {
    flex-wrap: wrap;
  }
}

@media (max-width: 991px) {
  .activities-details-wrapper .activities-details-content .activities-list-item .activities-item {
    gap: 30px;
  }
}

.activities-details-wrapper .activities-details-content .activities-list-item .activities-item .activities-list li {
  font-weight: 500;
  color      : #1D3638;
}

.activities-details-wrapper .activities-details-content .activities-list-item .activities-item .activities-list li:not(:last-child) {
  margin-bottom: 15px;
}

.activities-details-wrapper .activities-details-content .activities-list-item .activities-item .activities-list li svg {
  margin-right: 5px;
}

.activities-details-wrapper .activities-details-content .activities-box-wrap {
  border-radius   : 16px;
  background-color: var(--bg);
  padding         : 40px 40px;
  margin-top      : 50px;
}

.activities-details-wrapper .activities-details-content .activities-box-wrap .activities-box-area {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  margin-bottom  : 40px;
}

@media (max-width: 991px) {
  .activities-details-wrapper .activities-details-content .activities-box-wrap .activities-box-area {
    flex-wrap: wrap;
    gap      : 30px;
  }
}

.activities-details-wrapper .activities-details-content .activities-box-wrap .activities-box-area .activities-box-item {
  display    : flex;
  align-items: center;
  gap        : 12px;
  width      : 100%;
}

.activities-details-wrapper .activities-details-content .activities-box-wrap .activities-box-area .activities-box-item .icon {
  width        : 44px;
  height       : 44px;
  text-align   : center;
  line-height  : 40px;
  border-radius: 6px;
  border       : 1px solid #92A4A8;
  transition   : all 0.4s ease-in-out;
}

.activities-details-wrapper .activities-details-content .activities-box-wrap .activities-box-area .activities-box-item.style-2 .icon {
  background-color: var(--theme);
}

.activities-details-wrapper .activities-details-content .activities-box-wrap .activities-box-area .activities-box-item .content span {
  font-size  : 14px;
  font-weight: 400;
}

.activities-details-wrapper .activities-details-content .activities-box-wrap .activities-box-area .activities-box-item:hover .icon {
  background-color: var(--theme);
  border          : 1px solid var(--theme);
}

.activities-details-wrapper .activities-details-content .activities-box-wrap .activities-box-area .activities-box-item:hover .icon img {
  filter: grayscale(100%) brightness(300%);
}

.activities-details-wrapper .activities-details-content .video-image {
  position     : relative;
  border-radius: 20px;
  padding      : 170px 0;
  margin-top   : 50px;
}

@media (max-width: 767px) {
  .activities-details-wrapper .activities-details-content .video-image {
    padding: 130px 0;
  }
}

@media (max-width: 575px) {
  .activities-details-wrapper .activities-details-content .video-image {
    padding: 100px 0;
  }
}

.activities-details-wrapper .activities-details-content .video-image .video-btn {
  width        : 74px;
  height       : 74px;
  line-height  : 74px;
  border-radius: 50px;
  text-align   : center;
  border       : 1px solid var(--white);
  background   : radial-gradient(157.24% 123.22% at 47.19% -0.63%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
  color        : var(--white);
  top          : 50%;
  left         : 50%;
  position     : absolute;
  transform    : translate(-50%, -50%);
  font-size    : 18px;
}

.activities-details-wrapper .activities-details-content .faq-items {
  margin-top   : 50px;
  margin-bottom: 50px;
}

.activities-details-wrapper .activities-details-content .faq-items h3 {
  margin-bottom: 20px;
}

.activities-details-wrapper .activities-details-content .faq-items .accordion-item {
  border          : 0;
  background-color: var(--white);
  border-radius   : 12px;
  box-shadow      : 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
}

.activities-details-wrapper .activities-details-content .faq-items .accordion-item .accordion-header {
  border: none;
}

.activities-details-wrapper .activities-details-content .faq-items .accordion-item .accordion-header .accordion-button {
  font-weight     : 600;
  color           : var(--theme);
  border          : 0;
  border-radius   : 0;
  box-shadow      : none;
  background-color: var(--white);
  border-radius   : 12px;
  padding         : 25px 30px 0;
  text-transform  : capitalize;
  font-size       : 18px;
}

@media (max-width: 1199px) {
  .activities-details-wrapper .activities-details-content .faq-items .accordion-item .accordion-header .accordion-button {
    font-size: 20px;
  }
}

.activities-details-wrapper .activities-details-content .faq-items .accordion-item .accordion-header .accordion-button::after {
  content    : "\f324";
  background : transparent;
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  transition : all 0.3s ease-in-out !important;
  color      : var(--header);
}

.activities-details-wrapper .activities-details-content .faq-items .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content    : "\f322";
  background : transparent;
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  transform  : rotate(0);
  color      : var(--theme);
}

.activities-details-wrapper .activities-details-content .faq-items .accordion-item .accordion-header .accordion-button.collapsed {
  background-color: transparent;
  padding         : 25px 30px;
  color           : var(--header);
}

.activities-details-wrapper .activities-details-content .faq-items .accordion-item .accordion-collapse .accordion-body {
  padding-left   : 30px;
  padding-top    : 15px;
  color          : #504E4E;
  display        : flex;
  align-items    : center;
  justify-content: space-between;
}

@media (max-width: 1399px) {
  .activities-details-wrapper .activities-details-content .faq-items .accordion-item .accordion-collapse .accordion-body {
    flex-wrap: wrap;
    gap      : 30px;
  }
}

.activities-details-wrapper .activities-details-content .faq-items .accordion-item .accordion-collapse .accordion-body p {
  max-width: 620px;
}

.activities-details-wrapper .activities-details-content .faq-items .accordion-item .accordion-collapse .accordion-body .faq-image {
  max-width: 160px;
}

.activities-details-wrapper .activities-details-content .faq-items .accordion-item .accordion-collapse .accordion-body .faq-image img {
  width        : 100%;
  height       : 100%;
  border-radius: 10px;
}

.activities-details-wrapper .activities-details-content .map-area {
  margin-bottom: 50px;
}

.activities-details-wrapper .activities-details-content .map-area h3 {
  margin-bottom: 20px;
}

.activities-details-wrapper .activities-details-content .map-area .google-map iframe {
  width        : 100%;
  height       : 458px;
  border-radius: 16px;
}

.activities-details-wrapper .activities-details-content .courses-reviews-box-items {
  border-radius: 20px;
  background   : #151415;
  padding      : 40px;
}

.activities-details-wrapper .activities-details-content .courses-reviews-box-items .courses-reviews-box {
  display    : flex;
  align-items: center;
  gap        : 35px;
}

@media (max-width: 767px) {
  .activities-details-wrapper .activities-details-content .courses-reviews-box-items .courses-reviews-box {
    flex-wrap: wrap;
    gap      : 20px;
  }
}

.activities-details-wrapper .activities-details-content .courses-reviews-box-items .courses-reviews-box .reviews-box {
  padding      : 50px 34px;
  text-align   : center;
  min-width    : 257px;
  border-radius: 28px;
  background   : rgba(255, 255, 255, 0.1);
}

.activities-details-wrapper .activities-details-content .courses-reviews-box-items .courses-reviews-box .reviews-box h2 {
  font-size  : 70px;
  font-weight: 700;
  line-height: 1;
  color      : var(--white);
}

.activities-details-wrapper .activities-details-content .courses-reviews-box-items .courses-reviews-box .reviews-box .star {
  color        : #F7921E;
  margin-bottom: 10px;
}

.activities-details-wrapper .activities-details-content .courses-reviews-box-items .courses-reviews-box .reviews-box p {
  color: var(--white);
}

.activities-details-wrapper .activities-details-content .courses-reviews-box-items .reviews-ratting-right {
  max-width: 460px;
  width    : 100%;
}

.activities-details-wrapper .activities-details-content .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item {
  display    : flex;
  align-items: center;
  gap        : 30px;
}

@media (max-width: 767px) {
  .activities-details-wrapper .activities-details-content .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item {
    flex-wrap: wrap;
    gap      : 20px;
  }
}

.activities-details-wrapper .activities-details-content .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item:not(:last-child) {
  margin-bottom: 15px;
}

.activities-details-wrapper .activities-details-content .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item .star {
  color      : #F7921E;
  display    : flex;
  align-items: center;
  gap        : 7px;
}

.activities-details-wrapper .activities-details-content .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item .star i.color-2 {
  color: var(--text);
}

.activities-details-wrapper .activities-details-content .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item span {
  font-weight: 500;
  color      : var(--white);
  font-size  : 16px;
}

.activities-details-wrapper .activities-details-content .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item .progress {
  background     : rgba(247, 146, 30, 0.15);
  justify-content: flex-start;
  border-radius  : 0;
  align-items    : center;
  position       : relative;
  display        : flex;
  height         : 5px;
  width          : 100%;
  max-width      : 244px;
}

.activities-details-wrapper .activities-details-content .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item .progress-value {
  animation    : load 3s normal forwards;
  border-radius: 0;
  background   : #F7921E;
  height       : 5px;
  width        : 0;
}

.activities-details-wrapper .activities-details-content .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item .style-two {
  animation: load2 3s normal forwards;
}

.activities-details-wrapper .activities-details-content .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item .style-three {
  animation: load3 3s normal forwards;
}

.activities-details-wrapper .activities-details-content .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item .style-four {
  animation: load4 3s normal forwards;
}

.activities-details-wrapper .activities-details-content .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item .style-five {
  animation: load5 3s normal forwards;
}

@keyframes load {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

@keyframes load2 {
  0% {
    width: 0;
  }

  100% {
    width: 90%;
  }
}

@keyframes load3 {
  0% {
    width: 0;
  }

  100% {
    width: 80%;
  }
}

@keyframes load4 {
  0% {
    width: 0;
  }

  100% {
    width: 70%;
  }
}

@keyframes load5 {
  0% {
    width: 0;
  }

  100% {
    width: 60%;
  }
}

.activities-details-wrapper .activities-details-content .cliect-review-area {
  margin-top: 50px;
}

.activities-details-wrapper .activities-details-content .cliect-review-area .review-items li {
  display    : flex;
  align-items: center;
  gap        : 24px;
  position   : relative;
}

@media (max-width: 767px) {
  .activities-details-wrapper .activities-details-content .cliect-review-area .review-items li {
    flex-wrap: wrap;
  }
}

.activities-details-wrapper .activities-details-content .cliect-review-area .review-items li:not(:last-child) {
  margin-bottom: 40px;
}

.activities-details-wrapper .activities-details-content .cliect-review-area .review-items li:nth-child(2) {
  margin-left: 135px;
}

@media (max-width: 1199px) {
  .activities-details-wrapper .activities-details-content .cliect-review-area .review-items li:nth-child(2) {
    margin-left: 0;
  }
}

.activities-details-wrapper .activities-details-content .cliect-review-area .review-items li .thumb img {
  border-radius: 12px;
}

.activities-details-wrapper .activities-details-content .cliect-review-area .review-items li .content .star {
  color        : #FFB700;
  margin-bottom: 4px;
}

.activities-details-wrapper .activities-details-content .cliect-review-area .review-items li .content p {
  margin-top: 7px;
}

.activities-details-wrapper .activities-details-content .cliect-review-area .review-items li .content .reply-icon {
  color   : var(--header);
  position: absolute;
  top     : 0;
  right   : 0;
}

.activities-details-wrapper .activities-details-content .cliect-review-area .review-items li .content .reply-icon i {
  color       : var(--theme);
  margin-right: 10px;
}

.activities-details-wrapper .activities-details-content .comments-area {
  margin-top: 40px;
}

.activities-details-wrapper .activities-details-content .comments-area .comments-heading {
  margin-bottom: 10px;
}

@media (max-width: 575px) {
  .activities-details-wrapper .activities-details-content .comments-area .activities-single-comment {
    flex-wrap: wrap;
    gap      : 20px;
  }
}

.activities-details-wrapper .activities-details-content .comments-area .activities-single-comment .content .head .con h5 {
  margin-bottom: 5px;
  font-weight  : 600;
  font-size    : 20px;
}

.activities-details-wrapper .activities-details-content .comments-area .activities-single-comment .content .head .con span {
  color: #586061;
}

.activities-details-wrapper .activities-details-content .comments-area .activities-single-comment .content .head .star i {
  color    : #FE6902;
  font-size: 14px;
}

.activities-details-wrapper .activities-details-content .rating-bar {
  margin-top: 30px;
}

.activities-details-wrapper .activities-details-content .rating-bar span {
  display     : inline-block;
  margin-right: 10px;
  font-weight : 500;
}

.activities-details-wrapper .activities-details-content .rating-bar .star {
  display: inline-block;
}

.activities-details-wrapper .activities-details-content .rating-bar .star i {
  color    : #FE6902;
  font-size: 16px;
}

.activities-details-wrapper .activities-details-content .comment-form-wrap .form-clt span {
  color        : var(--header);
  display      : inline-block;
  margin-bottom: 10px;
}

.activities-details-wrapper .activities-details-content .comment-form-wrap .form-clt input,
.activities-details-wrapper .activities-details-content .comment-form-wrap .form-clt textarea {
  width           : 100%;
  outline         : none;
  border          : none;
  background-color: transparent;
  border          : 1px solid var(--border);
  padding         : 16px 20px;
  font-weight     : 500;
  border-radius   : 8px;
  color           : var(--text);
}

.activities-details-wrapper .activities-details-content .comment-form-wrap .form-clt input::placeholder,
.activities-details-wrapper .activities-details-content .comment-form-wrap .form-clt textarea::placeholder {
  color: var(--text);
}

.activities-details-wrapper .activities-details-content .comment-form-wrap .form-clt textarea {
  padding-bottom: 100px;
}

.activities-details-wrapper .client-ratting-items {
  background-color: var(--bg);
  border-radius   : 20px;
  padding         : 50px 40px;
  margin-top      : 50px;
}

.activities-details-wrapper .client-ratting-items h3 {
  line-height: 1;
}

.activities-details-wrapper .client-ratting-items ul {
  display      : flex;
  align-items  : center;
  gap          : 70px;
  margin-bottom: 10px;
}

@media (max-width: 1399px) {
  .activities-details-wrapper .client-ratting-items ul {
    flex-wrap: wrap;
    gap      : 30px;
  }
}

.activities-details-wrapper .client-ratting-items ul li {
  font-size  : 16px;
  font-weight: 600;
  color      : var(--header);
  display    : flex;
  align-items: center;
  gap        : 12px;
  flex-basis : 25%;
}

@media (max-width: 1399px) {
  .activities-details-wrapper .client-ratting-items ul li {
    flex-basis: initial;
  }
}

.activities-details-wrapper .client-ratting-items ul li .star {
  color: #F7921E;
}

.activities-details-wrapper .client-ratting-items h4 {
  font-size    : 20px;
  font-weight  : 600;
  margin-top   : 50px;
  margin-bottom: 25px;
}

.activities-details-wrapper .client-ratting-items .form-clt input,
.activities-details-wrapper .client-ratting-items .form-clt textarea {
  border          : none;
  outline         : none;
  width           : 100%;
  background-color: var(--white);
  padding         : 20px 30px;
  line-height     : 1;
  border-radius   : 10px;
  text-transform  : capitalize;
  color           : #455151;
}

.activities-details-wrapper .client-ratting-items .form-clt input::placeholder,
.activities-details-wrapper .client-ratting-items .form-clt textarea::placeholder {
  color: #455151;
}

.activities-details-wrapper .client-ratting-items .form-clt textarea {
  padding-bottom: 152px;
}

.footer-widget-wrapper-new {
  padding : 70px 0 50px;
  position: relative;
  z-index : 9;
}

.footer-widget-wrapper-new::before {
  position     : absolute;
  top          : 0;
  left         : 0;
  bottom       : 0;
  width        : 100%;
  height       : 100%;
  content      : "";
  border-radius: 0px 0px 16px 16px;
  background   : #242625;
  width        : 32%;
  z-index      : -1;
}

@media (max-width: 1199px) {
  .footer-widget-wrapper-new::before {
    display: none;
  }
}

.footer-widget-wrapper-new .single-widget-items {
  margin-top: 30px;
}

@media (max-width: 1199px) {
  .footer-widget-wrapper-new .single-widget-items {
    text-align: left !important;
  }
}

.footer-widget-wrapper-new .single-widget-items .widget-head {
  margin-bottom: 30px;
}

.footer-widget-wrapper-new .single-widget-items .widget-head h4 {
  color         : var(--white);
  position      : relative;
  padding-bottom: 20px;
}

.footer-widget-wrapper-new .single-widget-items .widget-head h4::before {
  position        : absolute;
  bottom          : 0;
  left            : 0;
  width           : 60px;
  height          : 2px;
  content         : "";
  background-color: var(--theme);
}

.footer-widget-wrapper-new .single-widget-items .footer-content {
  text-align: center;
}

@media (max-width: 1199px) {
  .footer-widget-wrapper-new .single-widget-items .footer-content {
    text-align: left;
  }
}

.footer-widget-wrapper-new .single-widget-items .footer-content h3 {
  color        : var(--white);
  margin-bottom: 10px;
}

.footer-widget-wrapper-new .single-widget-items .footer-content p {
  color: var(--white);
}

.footer-widget-wrapper-new .single-widget-items .footer-content .footer-input {
  position  : relative;
  margin-top: 30px;
  text-align: center;
  padding   : 0 45px;
}

@media (max-width: 1199px) {
  .footer-widget-wrapper-new .single-widget-items .footer-content .footer-input {
    text-align: left !important;
    padding   : 0;
  }
}

.footer-widget-wrapper-new .single-widget-items .footer-content .footer-input input {
  background    : var(--white);
  border        : none;
  outline       : none;
  width         : 100%;
  padding       : 18px 20px;
  border-radius : 100px;
  color         : #727171;
  line-height   : 1;
  text-transform: capitalize;
  margin-bottom : 20px;
}

@media (max-width: 991px) {
  .footer-widget-wrapper-new .single-widget-items .footer-content .footer-input input {
    padding: 15px 20px;
  }
}

@media (max-width: 767px) {
  .footer-widget-wrapper-new .single-widget-items .footer-content .footer-input input {
    padding: 17px 20px;
  }
}

@media (max-width: 575px) {
  .footer-widget-wrapper-new .single-widget-items .footer-content .footer-input input {
    padding: 14px 20px;
  }
}

.footer-widget-wrapper-new .single-widget-items .footer-content .footer-input input::placeholder {
  color: #727171;
}

.footer-widget-wrapper-new .single-widget-items .footer-content .footer-input .newsletter-btn {
  width: 100%;
}

.footer-widget-wrapper-new .single-widget-items .footer-content .social-icon {
  gap       : 8px;
  margin-top: 30px;
}

@media (max-width: 1199px) {
  .footer-widget-wrapper-new .single-widget-items .footer-content .social-icon {
    justify-content: start !important;
  }
}

.footer-widget-wrapper-new .single-widget-items .footer-content .social-icon a {
  width           : 50px;
  height          : 50x;
  line-height     : 50px;
  border-radius   : 50%;
  text-align      : center;
  color           : var(--theme);
  background-color: var(--white);
  transition      : all 0.4s ease-in-out;
}

.footer-widget-wrapper-new .single-widget-items .footer-content .social-icon a:hover {
  background-color: var(--theme);
  color           : var(--white);
}

.footer-widget-wrapper-new .single-widget-items .list-items li {
  transition: all 0.4s ease-in-out;
  font-size : 18px;
}

.footer-widget-wrapper-new .single-widget-items .list-items li i {
  margin-right: 10px;
  color       : var(--white);
  transition  : all 0.4s ease-in-out;
}

.footer-widget-wrapper-new .single-widget-items .list-items li a {
  color: var(--white);
}

.footer-widget-wrapper-new .single-widget-items .list-items li:not(:last-child) {
  margin-bottom: 18px;
}

.footer-widget-wrapper-new .single-widget-items .list-items li:hover {
  margin-left: 5px;
}

.footer-widget-wrapper-new .single-widget-items .list-items li:hover a {
  color: var(--theme);
}

.footer-widget-wrapper-new .single-widget-items .list-items li:hover i {
  color: var(--theme);
}

.footer-widget-wrapper-new .single-widget-items .contact-info .contact-items {
  display: flex;
  gap    : 20px;
}

.footer-widget-wrapper-new .single-widget-items .contact-info .contact-items:not(:last-child) {
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .footer-widget-wrapper-new .single-widget-items .contact-info .contact-items {
    flex-wrap: wrap;
  }
}

.footer-widget-wrapper-new .single-widget-items .contact-info .contact-items .icon {
  /* width           : 40px; */
  height          : 40px;
  line-height     : 40px;
  border-radius   : 5px;
  text-align      : center;
  color           : var(--header);
  background-color: var(--theme);
}

.footer-widget-wrapper-new .single-widget-items .contact-info .contact-items .icon i {
  font-size: 18px;
  color    : var(--white);
}

.footer-widget-wrapper-new .single-widget-items .contact-info .contact-items .content h6 {
  font-weight: 400;
  color      : var(--white);
}

.footer-widget-wrapper-new .single-widget-items .contact-info .contact-items .content h6 a {
  color: var(--white);
}

.footer-bottom {
  padding   : 40px 0;
  position  : relative;
  border-top: 1px dashed #767676;
}

.footer-bottom .footer-wrapper {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .footer-bottom .footer-wrapper {
    flex-wrap      : wrap;
    gap            : 10px;
    justify-content: center;
  }
}

.footer-bottom .footer-wrapper p {
  color: var(--white);
}

.footer-bottom .footer-wrapper p span {
  color: var(--theme);
}

.footer-bottom .footer-wrapper .bottom-list {
  display    : flex;
  align-items: center;
  gap        : 24px;
}

.footer-bottom .footer-wrapper .bottom-list li {
  font-size  : 16px;
  font-weight: 400;
  color      : var(--white);
}

.header-top-section {
  background-color: var(--theme);
  padding         : 12px 0;
  position        : relative;
}

@media (max-width: 1199px) {
  .header-top-section {
    display: none;
  }
}

.header-top-section::before {
  position        : absolute;
  top             : 0;
  left            : 0;
  right           : 0;
  bottom          : 0;
  width           : 100%;
  height          : 100%;
  content         : "";
  background-color: #113D48;
  width           : 55%;
  clip-path       : polygon(0 0, 100% 0%, 97% 100%, 0% 100%);
}

.header-top-section .container-fluid {
  padding: 0 60px;
}

@media (max-width: 1600px) {
  .header-top-section .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1399px) {
  .header-top-section .container-fluid {
    padding: 0 40px;
  }
}

@media (max-width: 1199px) {
  .header-top-section .container-fluid {
    padding: 0 30px;
  }
}

.header-top-wrapper {
  position       : relative;
  z-index        : 9;
  display        : flex;
  align-items    : center;
  justify-content: space-between;
}

.header-top-wrapper .top-left {
  display    : flex;
  align-items: center;
  gap        : 30px;
}

.header-top-wrapper .top-left li {
  color: var(--white);
}

.header-top-wrapper .top-left li i {
  margin-right: 10px;
}

.header-top-wrapper .top-right {
  display    : flex;
  align-items: center;
  gap        : 30px;
}

.header-top-wrapper .top-right li {
  color: var(--white);
}

.header-top-wrapper .top-right li a {
  color: var(--white);
}

.header-top-wrapper .top-right li i {
  margin-right: 10px;
}

.header-top-wrapper .top-right li .social-icon {
  gap: 10px;
}

.header-1 {
  position: relative;
}

.header-1::before {
  position        : absolute;
  top             : 0;
  left            : 0;
  right           : 0;
  bottom          : 0;
  width           : 100%;
  height          : 100%;
  content         : "";
  background-color: var(--theme);
  opacity         : 0.1;
  width           : 445px;
  clip-path       : polygon(0 0, 84% 0%, 100% 100%, 0% 100%);
  z-index         : -1;
}

@media (max-width: 991px) {
  .header-1::before {
    display: none;
  }
}

.header-1 .container-fluid {
  padding: 0 60px;
}

@media (max-width: 1600px) {
  .header-1 .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1399px) {
  .header-1 .container-fluid {
    padding: 0 40px;
  }
}

@media (max-width: 1199px) {
  .header-1 .container-fluid {
    padding: 0 30px;
  }
}

@media (max-width: 1399px) {
  .header-1 .theme-btn {
    display: none;
  }
}

.header-1 .search-icon {
  width        : 50px;
  height       : 50px;
  line-height  : 50px;
  text-align   : center;
  border-radius: 50%;
  border       : 1px solid var(--border);
}

.header-1.header-3 {
  position: absolute;
  top     : 0;
  left    : 0;
  z-index : 9999;
  width   : 100%;
}

.header-1.header-3 .header-logo {
  display: none;
}

.header-1.header-3::before {
  display: none;
}

.header-1.header-3 .header-main .main-menu ul li a {
  color: var(--white);
}

.header-1.header-3 .header-main .main-menu ul li a:hover {
  color: var(--theme) !important;
}

.header-1.header-3 .header-main .main-menu ul li .submenu {
  color: var(--header);
}

.header-1.header-3 .header-main .main-menu ul li .submenu li a {
  color: var(--header);
}

.header-1.header-3 .header-main .main-menu ul li .submenu li.has-dropdown>a::after {
  position         : absolute;
  top              : 50%;
  inset-inline-end : 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform   : translateY(-50%);
  -ms-transform    : translateY(-50%);
  -o-transform     : translateY(-50%);
  transform        : translateY(-50%);
  color            : var(--theme);
}

.header-1.header-3 .header-main .sidebar__toggle {
  color: var(--white);
}

.header-1.header-3 .theme-btn {
  border    : 1px solidrgba(255, 255, 255, 0.25);
  color     : var(--white);
  background: rgba(255, 255, 255, 0.25);
}

.header-1.header-3 .search-icon {
  border: 1px solid var(--white);
  color : var(--white);
}

.header-1.header-2 {
  padding: 30px 0;
}

.header-1.header-2 .logo-2 {
  position : absolute;
  top      : 25px;
  left     : 50%;
  transform: translateX(-50%);
}

@media (max-width: 1399px) {
  .header-1.header-2 .logo-2 {
    width: 150px;
  }

  .header-1.header-2 .logo-2 img {
    width : 100%;
    height: 100%;
  }
}

@media (max-width: 1199px) {
  .header-1.header-2 .logo-2 {
    width: 100px;
  }
}

.header-1.header-2 .logo {
  display: none;
}

.logo img {
  width: 150px;
}

.header-top-section-new {
  background-color: rgba(95, 162, 179, 0.3294117647);
}

.header-top-section-new .container-fluid {
  padding: 0 150px;
}

@media (max-width: 1600px) {
  .header-top-section-new .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1399px) {
  .header-top-section-new .container-fluid {
    padding: 0 40px;
  }
}

@media (max-width: 1199px) {
  .header-top-section-new .container-fluid {
    padding: 0 30px;
  }
}

.header-section-10 {
  position: relative;
}

.header-section-10::before {
  position        : absolute;
  top             : 0;
  left            : 0;
  right           : 0;
  bottom          : 0;
  width           : 28%;
  height          : 100%;
  content         : "";
  background-color: var(--theme);
  z-index         : -1;
  clip-path       : polygon(78% 0, 100% 106%, 100% 100%, 0 100%, 0 0);
}

@media (max-width: 1899px) {
  .header-section-10::before {
    display: none;
  }
}

.header-section-10 .header-logo {
  position: absolute;
  top     : 55px;
  left    : 150px;
}

@media (max-width: 1899px) {
  .header-section-10 .header-logo {
    display: none;
  }
}

.header-top-section-new {
  padding-left: 400px;
}

@media (max-width: 1899px) {
  .header-top-section-new {
    padding-left: 0;
  }
}

@media (max-width: 1199px) {
  .header-top-section-new {
    display: none;
  }
}

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

.header-top-wrapper-new .social-icon {
  display    : flex;
  align-items: center;
  gap        : 20px;
}

.header-top-wrapper-new .social-icon span {
  font-weight: 500;
  color      : var(--header);
}

.header-top-wrapper-new .top-right {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  gap            : 30px;
}

.header-top-wrapper-new .top-right li {
  color      : var(--header);
  font-weight: 500;
}

.header-top-wrapper-new .top-right li i {
  margin-right: 10px;
}

.header-top-wrapper-new .top-right li a {
  color: var(--header);
}

.header-11 .container-fluid {
  padding: 0 150px;
}

@media (max-width: 1600px) {
  .header-11 .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1399px) {
  .header-11 .container-fluid {
    padding: 0 40px;
  }
}

@media (max-width: 1199px) {
  .header-11 .container-fluid {
    padding: 0 30px;
  }
}

.header-11 .logo-2 {
  display: none;
}

@media (max-width: 1899px) {
  .header-11 .logo-2 {
    display: block;
  }
}

@media (max-width: 1399px) {
  .header-11 .theme-btn {
    display: none;
  }
}

@media (max-width: 1199px) {
  .menu-thumb {
    display: none !important;
  }
}

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

.header-main .main-menu ul {
  margin-bottom: 0;
}

.header-main .main-menu ul li {
  position         : relative;
  list-style       : none;
  display          : inline-block;
  margin-inline-end: 40px;
}

.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}

.header-main .main-menu ul li a {
  display       : inline-block;
  font-size     : 16px;
  font-weight   : 500;
  color         : var(--header);
  padding       : 20px 0;
  text-align    : left;
  position      : relative;
  text-transform: capitalize;
  transition    : all 0.4s ease-in-out;
}

.header-main .main-menu ul li a i {
  margin-left: 4px;
  font-size  : 14px;
}

.header-main .main-menu ul li a:hover {
  color: var(--theme) !important;
}

.header-main .main-menu ul li .submenu {
  position          : absolute;
  top               : 115%;
  inset-inline-start: 0;
  min-width         : 240px;
  background        : var(--white);
  padding           : 20px 0;
  z-index           : 99999;
  visibility        : hidden;
  opacity           : 0;
  transform-origin  : top center;
  color             : var(--header);
  transform         : translateY(-10px);
  transition        : all 0.4s ease-in-out;
  border-top        : 6px solid var(--theme);
  box-shadow        : rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.header-main .main-menu ul li .submenu li {
  display: block;
  width  : 100%;
  margin : 0;
}

.header-main .main-menu ul li .submenu li a {
  position   : relative;
  z-index    : 11;
  font-size  : 16px;
  font-weight: 500;
  color      : var(--header);
  line-height: 38px;
  padding    : 0px 0px 0px 32px;
  width      : 100%;
}

.header-main .main-menu ul li .submenu li a::before {
  content   : "";
  position  : absolute;
  width     : 0px;
  height    : 2px;
  background: var(--theme);
  left      : 14px;
  bottom    : 18px;
  transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li .submenu li a:hover {
  color: var(--theme) !important;
}

.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}

.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 100%;
  top               : 0;
  visibility        : hidden;
  opacity           : 0;
}

.header-main .main-menu ul li .submenu li:hover>a {
  color      : var(--theme) !important;
  margin-left: 10px;
}

.header-main .main-menu ul li .submenu li:hover>a::before {
  width: 10px;
}

.header-main .main-menu ul li .submenu li:hover>a::after {
  color: var(--theme);
}

.header-main .main-menu ul li .submenu li:hover>.submenu {
  -webkit-transform: translateY(1);
  -moz-transform   : translateY(1);
  -ms-transform    : translateY(1);
  -o-transform     : translateY(1);
  transform        : translateY(1);
  visibility       : visible;
  opacity          : 1;
}

.header-main .main-menu ul li .submenu li.has-dropdown>a::after {
  position         : absolute;
  top              : 50%;
  inset-inline-end : 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform   : translateY(-50%);
  -ms-transform    : translateY(-50%);
  -o-transform     : translateY(-50%);
  transform        : translateY(-50%);
  color            : var(--theme);
}

.header-main .main-menu ul li .has-homemenu {
  width     : 800px;
  padding   : 30px 30px 10px 30px;
  opacity   : 0;
  left      : -250px;
  visibility: hidden;
  padding   : 30px 30px 10px 30px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items {
  display        : flex;
  align-items    : center;
  gap            : 30px;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items {
    flex-wrap: wrap;
  }
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
  position: relative;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position       : absolute;
  top            : 50%;
  left           : 50%;
  transform      : translate(-50%, -50%);
  width          : 70%;
  gap            : 10px;
  display        : flex;
  justify-content: center;
  flex-direction : column;
  opacity        : 0;
  visibility     : hidden;
  transition     : all 0.4s ease-in-out;
  margin-top     : 20px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding         : 14px 20px;
  color           : var(--white) !important;
  width           : initial;
  font-size       : 16px;
  text-align      : center;
  border-radius   : 0px !important;
  background-color: var(--theme);
  line-height     : initial;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  background-color: var(--header);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
  background         : -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
  background         : linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat  : no-repeat;
  background-size    : cover;
  background-position: center;
  width              : 100%;
  height             : 100%;
  position           : absolute;
  left               : 0;
  top                : 0;
  overflow           : hidden;
  opacity            : 0;
  -webkit-transition : all 0.3s ease-in-out;
  transition         : all 0.3s ease-in-out;
  content            : "";
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity   : 1;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity   : 1;
  visibility: visible;
  margin-top: 0;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity   : 1;
  visibility: visible;
  bottom    : 50%;
  transform : translateY(50%);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  text-align : center;
  margin     : 15px auto;
  display    : inline-block;
  font-size  : 18px;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
}

.header-main .main-menu ul li:hover>a {
  color: var(--theme-2);
}

.header-main .main-menu ul li:hover>a::after {
  color: var(--theme);
}

.header-main .main-menu ul li:hover>.submenu {
  visibility: visible;
  opacity   : 1;
  transform : translateY(0px);
}

.header-main .header-right {
  gap: 30px;
}

@media (max-width: 1399px) {
  .header-main .header-right {
    gap: 20px;
  }
}

.header-main .sidebar__toggle {
  cursor   : pointer;
  font-size: 20px;
}

.sticky {
  position         : fixed !important;
  top              : 0 !important;
  left             : 0;
  width            : 100%;
  z-index          : 100;
  transition       : all 0.9s;
  background-color : var(--white);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation        : 500ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow       : rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.sticky.header-11 .header-logo {
  display: none;
}

.sticky.header-11 .logo-2 {
  display: block;
}

.sticky.header-3 .header-logo-2 {
  display: none;
}

.sticky.header-3 .header-logo {
  display: block;
}

.sticky.header-3 .header-main .main-menu ul li a {
  color: var(--header);
}

.sticky.header-3 .header-main .main-menu ul li a:hover {
  color: var(--theme) !important;
}

.sticky.header-3 .header-main .main-menu ul li .submenu {
  color: var(--header);
}

.sticky.header-3 .header-main .main-menu ul li .submenu li a {
  color: var(--header);
}

.sticky.header-3 .header-main .sidebar__toggle {
  color: var(--header);
}

@media (max-width: 1399px) {
  .sticky.header-3 .theme-btn {
    display: none;
  }
}

.sticky.header-3 .search-icon {
  color : var(--header);
  border: 1px solid var(--border);
}

.sticky.header-3 .theme-btn {
  background-color: var(--theme);
}

.offcanvas__info {
  background           : var(--white) none repeat scroll 0 0;
  border-left          : 2px solid var(--theme);
  position             : fixed;
  right                : 0;
  top                  : 0;
  width                : 400px;
  height               : 100%;
  -webkit-transform    : translateX(calc(100% + 80px));
  -moz-transform       : translateX(calc(100% + 80px));
  -ms-transform        : translateX(calc(100% + 80px));
  -o-transform         : translateX(calc(100% + 80px));
  transform            : translateX(calc(100% + 80px));
  -webkit-transition   : transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition      : transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition           : transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index              : 99999;
  overflow-y           : scroll;
  overscroll-behavior-y: contain;
  scrollbar-width      : none;
}

.offcanvas__info::-webkit-scrollbar {
  display: none;
}

.offcanvas__info.info-open {
  opacity          : 1;
  -webkit-transform: translateX(0);
  -moz-transform   : translateX(0);
  -ms-transform    : translateX(0);
  -o-transform     : translateX(0);
  transform        : translateX(0);
}

.offcanvas__wrapper {
  position: relative;
  height  : 100%;
  padding : 30px 30px;
}

.offcanvas__wrapper .offcanvas__content .text {
  color: var(--text);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width           : 45px;
  height          : 45px;
  line-height     : 45px;
  text-align      : center;
  border-radius   : 50%;
  background-color: var(--theme);
  position        : relative;
  z-index         : 9;
  cursor          : pointer;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--white);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
  margin-top: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
  font-size     : 16px;
  font-weight   : 600;
  text-transform: capitalize;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
  color: var(--text);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
  margin-bottom: 15px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: var(--theme);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: initial;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
  width         : 100%;
  padding       : 20px 40px;
  text-transform: capitalize !important;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
  margin-top: 30px;
  gap       : 10px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
  width             : 45px;
  height            : 45px;
  line-height       : 45px;
  text-align        : center;
  font-size         : 16px;
  display           : block;
  background        : transparent;
  color             : var(--text);
  border-radius     : 50%;
  -webkit-transition: all 0.4s ease-in-out;
  transition        : all 0.4s ease-in-out;
  text-align        : center;
  border            : 1px solid var(--border);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
  background-color: var(--theme);
  color           : var(--white);
}

.offcanvas__wrapper .offcanvas__logo {
  width: 170px;
}

.offcanvas__wrapper .offcanvas__logo img {
  width : 100%;
  height: 100%;
}

.offcanvas__overlay {
  position  : fixed;
  height    : 100%;
  width     : 100%;
  background: #151515;
  z-index   : 900;
  top       : 0;
  opacity   : 0;
  visibility: hidden;
  right     : 0;
}

.offcanvas__overlay.overlay-open {
  opacity   : 0.8;
  visibility: visible;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 300px;
  }
}

@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}

.breadcrumb-wrapper {
  position: relative;
}

.breadcrumb-wrapper::before {
  position  : absolute;
  top       : 0;
  left      : 0;
  right     : 0;
  bottom    : 0;
  width     : 100%;
  height    : 100%;
  content   : "";
  background: rgba(10, 31, 36, 0.65);
}

.breadcrumb-wrapper .page-heading {
  padding   : 190px 0 170px;
  text-align: center;
  position  : relative;
}

@media (max-width: 1199px) {
  .breadcrumb-wrapper .page-heading {
    padding: 170px 0 130px;
  }
}

@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading {
    padding: 130px 0 130px;
  }
}

@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading {
    padding: 130px 0 100px;
  }
}

.breadcrumb-wrapper .page-heading h2 {
  color        : var(--white);
  font-size    : 60px;
  font-weight  : 800;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading h2 {
    font-size: 52px;
  }
}

@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading h2 {
    font-size: 46px;
  }
}

@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading h2 {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading h2 {
    font-size: 34px;
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-list {
  display        : flex;
  align-items    : center;
  gap            : 8px;
  padding        : 10px 24px;
  border-radius  : 100px;
  border         : 0.5px solid var(--white);
  background     : rgba(255, 255, 255, 0.15);
  justify-content: center;
  display        : inline-flex;
}

.breadcrumb-wrapper .page-heading .breadcrumb-list li {
  color      : var(--white);
  font-weight: 500;
}

.breadcrumb-wrapper .page-heading .breadcrumb-list li i {
  color: var(--white);
}

.breadcrumb-wrapper .page-heading .breadcrumb-list li a {
  color: var(--white);
}

::-webkit-scrollbar {
  width : 4px;
  height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow   : inset 0 0 5px var(--theme);
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background   : var(--theme);
  border-radius: 10px;
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

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

@media (max-width: 1199px) {
  .ml-50 {
    margin-left: 0;
  }
}

.ripple {
  position: relative;
}

.ripple::before,
.ripple::after {
  position         : absolute;
  left             : 50%;
  top              : 50%;
  width            : 80px;
  height           : 80px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform        : translateX(-50%) translateY(-50%);
  border-radius    : 50%;
  box-shadow       : 0 0 0 0 rgba(255, 255, 255, 0.5);
  -webkit-animation: rippleOne 3s infinite;
  animation        : rippleOne 3s infinite;
}

.ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay        : 0.9s;
  content                : "";
  position               : absolute;
  right                  : 0;
  bottom                 : 0;
}

.ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay        : 0.6s;
  content                : "";
  position               : absolute;
  right                  : 0;
  bottom                 : 0;
}

.array-button {
  display    : flex;
  align-items: center;
  gap        : 10px;
}

.array-button .array-prev {
  width           : 56px;
  height          : 56px;
  line-height     : 56px;
  border-radius   : 50px;
  text-align      : center;
  background-color: var(--header);
  color           : var(--header);
  transition      : all 0.4s ease-in-out;
}

.array-button .array-next {
  width           : 56px;
  height          : 56px;
  line-height     : 56px;
  border-radius   : 50px;
  text-align      : center;
  background-color: rgb(17, 61, 72);
  transition      : all 0.4s ease-in-out;
}

.swiper-dot .swiper-pagination-bullet {
  width           : 10px;
  height          : 10px;
  transition      : all 0.4s ease-in-out;
  background-color: var(--theme);
  opacity         : 1;
  border-radius   : 10px;
}

.swiper-dot .swiper-pagination-bullet:not(:last-child) {
  margin-right: 10px;
}

.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
  transition      : 0.6s;
  position        : relative;
}

.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position        : absolute;
  width           : 22px;
  height          : 22px;
  line-height     : 22px;
  top             : -6px;
  left            : -6px;
  border-radius   : 50%;
  background-color: transparent;
  border          : 2px solid var(--theme);
  content         : "";
}

.swiper-dot-2 {
  text-align: center;
}

.swiper-dot-2 .swiper-pagination-bullet {
  width           : 32px;
  height          : 8px;
  transition      : 0.6s;
  background-color: rgba(213, 213, 213, 0.6);
  opacity         : 1;
  border-radius   : 10px;
  position        : relative;
}

.swiper-dot-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--theme);
  transition: 0.6s;
  position  : relative;
  width     : 50px;
}

.price-range-wrapper {
  /* Custom thumb styling */
  /* Remove the default appearance for sliders in Firefox */
}

.price-range-wrapper .slider-container {
  position: relative;
  width   : 100%;
}

.price-range-wrapper .price-text label {
  color      : #1b1f2a;
  font-size  : 20px;
  font-weight: 500;
}

.price-range-wrapper .price-text input {
  color      : #1b1f2a;
  font-size  : 18px;
  font-weight: 500;
}

.price-range-wrapper .slider {
  -webkit-appearance: none;
  appearance        : none;
  width             : 100%;
  height            : 6px;
  background        : var(--theme);
  outline           : none;
  position          : absolute;
  top               : 0;
  pointer-events    : none;
}

.price-range-wrapper .slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance        : none;
  width             : 18px;
  height            : 18px;
  background        : var(--theme);
  cursor            : pointer;
  border            : 2px solid #fff;
  position          : relative;
  z-index           : 2;
  pointer-events    : all;
}

.price-range-wrapper .slider::-moz-range-thumb {
  width        : 20px;
  height       : 20px;
  background   : var(--theme);
  cursor       : pointer;
  border-radius: 4px;
  border       : 2px solid #000;
  z-index      : 2;
  position     : relative;
}

.price-range-wrapper .slider::-ms-thumb {
  width        : 20px;
  height       : 20px;
  background   : var(--theme);
  cursor       : pointer;
  border-radius: 4px;
  border       : 2px solid #000;
  z-index      : 2;
  position     : relative;
}

.price-range-wrapper input[type=range]::-moz-range-track {
  background: transparent;
}

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

@media (max-width: 767px) {
  br {
    display: none;
  }
}

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

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

/* background */
.bg-cover {
  background-repeat  : no-repeat;
  background-size    : cover;
  position           : relative;
  background-position: center;
}

.bg-cover-2 {
  background-repeat  : no-repeat;
  background-size    : cover;
  position           : relative;
  background-position: center;
  width              : 100%;
  height             : 100%;
}

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

.custom-container {
  max-width: 1680px;
}

.page-nav-wrap {
  margin-top: 60px;
}

.page-nav-wrap ul li {
  display: inline-block;
}

.page-nav-wrap ul li .page-numbers {
  display      : inline-block;
  width        : 40px;
  height       : 40px;
  text-align   : center;
  line-height  : 40px;
  border-radius: 4px;
  background   : var(--bg);
  color        : var(--theme);
  font-weight  : 700;
  transition   : all 0.3s ease-in-out;
  margin       : 0 2px;
}

.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme);
  color           : var(--white);
}

@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top : 10px;
    width      : 50px;
    height     : 50px;
    line-height: 50px;
    font-size  : 14px;
  }
}

.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
}

.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--theme);
  color           : var(--white);
}

.custom-container {
  max-width: 1410px;
  margin   : 0 auto;
}

.custom-container-3 {
  max-width: 1655px;
  margin   : 0 auto;
}

.swiper-dot4 {
  text-align: center;
}

.swiper-dot4 .swiper-pagination-bullet {
  width           : 15px;
  height          : 15px;
  transition      : 0.6s;
  background-color: var(--white);
  border          : 1px solid var(--theme);
  opacity         : 1;
  border-radius   : 100%;
  position        : relative;
}

.swiper-dot4 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
  transition      : 0.6s;
  position        : relative;
  width           : 30px;
  border-radius   : 30px;
}

.hero-1 {
  padding : 150px 205px 150px;
  position: relative;
}

@media (max-width: 1600px) {
  .hero-1 {
    padding: 180px 50px 210px;
  }
}

@media (max-width: 1399px) {
  .hero-1 {
    padding: 150px 40px 150px;
  }
}

@media (max-width: 1199px) {
  .hero-1 {
    padding: 150px 30px 150px;
  }
}

@media (max-width: 991px) {
  .hero-1 {
    padding: 130px 30px 130px;
  }
}

@media (max-width: 767px) {
  .hero-1 {
    padding: 100px 30px 100px;
  }
}

@media (max-width: 575px) {
  .hero-1 {
    padding: 80px 30px 80px;
  }
}

.hero-1 .hero-bg {
  position           : absolute;
  top                : 0;
  left               : 0;
  height             : 100%;
  width              : 100%;
  background-repeat  : no-repeat;
  background-size    : cover;
  background-position: center center;
}

.hero-1 .hero-bg::before {
  position  : absolute;
  top       : 0;
  left      : 0;
  right     : 0;
  bottom    : 0;
  width     : 100%;
  height    : 100%;
  content   : "";
  background: linear-gradient(180deg, rgba(11, 13, 17, 0.6) 0%, rgba(11, 13, 17, 0.2) 30%, #0B0D11 100%);
}

.hero-1 .hero-content {
  position: relative;
}

.hero-1 .hero-content .sub-title {
  font-size    : 18px;
  color        : var(--white);
  font-family  : "Kalam", sans-serif;
  margin-bottom: 10px;
}

.hero-1 .hero-content h1 {
  color: var(--white);
}

.hero-1 .hero-content .booking-list-area {
  border-radius  : 10px;
  border         : 1px solid var(--white);
  background     : radial-gradient(161.52% 135.78% at 50.46% -7.72%, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(25px);
  padding        : 40px 30px;
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  margin-top     : 70px;
}

@media (max-width: 1199px) {
  .hero-1 .hero-content .booking-list-area {
    flex-wrap: wrap;
    gap      : 40px;
    padding  : 50px;
  }
}

.hero-1 .hero-content .booking-list-area .booking-list {
  display    : flex;
  align-items: center;
  gap        : 20px;
}

.hero-1 .hero-content .booking-list-area .booking-list h6 {
  font-size    : 16px;
  font-weight  : 600;
  color        : var(--white);
  margin-bottom: 10px;
}

.hero-1 .hero-content .booking-list-area .booking-list .form .single-select {
  padding         : 0;
  border          : none;
  font-size       : 15px;
  font-weight     : 400;
  outline         : none;
  line-height     : 1;
  height          : initial;
  background-color: transparent;
  color           : var(--white);
  padding-right   : 25px;
}

.hero-1 .hero-content .booking-list-area .booking-list .form .single-select::after {
  right        : 0;
  border-bottom: 2px solid #fff;
  border-right : 2px solid #fff;
  margin-top   : -5px;
  width        : 8px;
  height       : 8px;
}

.hero-1 .hero-content .booking-list-area .booking-list .form .single-select .option {
  color: var(--text);
}

.hero-1 .hero-content .booking-list-area .booking-list .form-clt {
  color      : var(--white);
  line-height: 1;
}

.hero-1 .hero-content .booking-list-area .booking-list .form-clt input {
  padding         : 0;
  border          : none;
  font-size       : 14px;
  font-weight     : 400;
  outline         : none;
  line-height     : 1;
  height          : initial;
  outline         : none;
  background-color: transparent;
  color           : var(--white);
  color-scheme    : dark;
}

.hero-1 .hero-content .booking-list-area .booking-list .form-clt input::placeholder {
  color: var(--white);
}

.hero-1 .counter-area {
  position: relative;
}

.hero-1 .counter-area .counter-items {
  display    : flex;
  align-items: center;
  gap        : 48px;
  margin-top : 100px;
}

@media (max-width: 1199px) {
  .hero-1 .counter-area .counter-items {
    gap      : 40px;
    flex-wrap: wrap;
  }
}

@media (max-width: 575px) {
  .hero-1 .counter-area .counter-items {
    gap       : 32px;
    margin-top: 40px;
  }
}

.hero-1 .counter-area .counter-items .counter-text h2 {
  font-size: 40px;
  color    : var(--white);
}

@media (max-width: 1199px) {
  .hero-1 .counter-area .counter-items .counter-text h2 {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  .hero-1 .counter-area .counter-items .counter-text h2 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .hero-1 .counter-area .counter-items .counter-text h2 {
    font-size: 26px;
  }
}

.hero-1 .counter-area .counter-items .counter-text p {
  font-size  : 20px;
  font-weight: 400;
  color      : var(--white);
}

@media (max-width: 1199px) {
  .hero-1 .counter-area .counter-items .counter-text p {
    font-size: 16px;
  }
}

.hero-2 {
  padding            : 500px 90px 120px;
  border-radius      : 20px;
  margin             : 20px 20px;
  background-position: top !important;
}

@media (max-width: 1600px) {
  .hero-2 {
    padding: 400px 30px 120px;
  }
}

@media (max-width: 1399px) {
  .hero-2 {
    padding: 350px 30px 120px;
  }
}

@media (max-width: 1199px) {
  .hero-2 {
    padding: 300px 30px 100px;
  }
}

@media (max-width: 991px) {
  .hero-2 {
    padding: 260px 30px 100px;
  }
}

@media (max-width: 767px) {
  .hero-2 {
    padding: 220px 30px 100px;
  }
}

@media (max-width: 575px) {
  .hero-2 {
    padding: 180px 30px 100px;
  }
}

.hero-2 .hero-content .sub-title {
  font-size    : 18px;
  color        : var(--white);
  font-family  : "Kalam", sans-serif;
  margin-bottom: 10px;
}

.hero-2 .hero-content h1 {
  color        : var(--white);
  margin-bottom: 20px;
}

.hero-2 .hero-content p {
  color: var(--white);
}

.best-price-section {
  border       : 1px solid var(--border);
  margin-left  : 20px;
  margin-right : 20px;
  border-radius: 20px;
  padding      : 60px 30px;
}

@media (max-width: 1199px) {
  .best-price-section {
    margin-top: 0;
  }
}

.hero-bottom .best-price-wrapper {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .hero-bottom .best-price-wrapper {
    flex-wrap: wrap;
    gap      : 20px;
  }
}

.hero-bottom .best-price-wrapper .content h2 {
  font-size  : 36px;
  font-weight: 600;
}

.hero-bottom .best-price-wrapper .nav {
  display    : flex;
  align-items: center;
  gap        : 10px;
}

.hero-bottom .best-price-wrapper .nav .nav-item .nav-link {
  background-color: transparent;
  border          : 1px solid #E6E6E6;
  font-weight     : 500;
  color           : var(--header);
  font-family     : "Manrope", sans-serif;
  padding         : 12px 15px;
  border-radius   : 5px;
  line-height     : 1;
}

.hero-bottom .best-price-wrapper .nav .nav-item .nav-link.active {
  background-color: var(--header);
  color           : var(--white);
  border          : 1px solid var(--header);
}

.hero-bottom .filter-wrapper {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  margin-top     : 34px;
}

@media (max-width: 1199px) {
  .hero-bottom .filter-wrapper {
    flex-wrap: wrap;
    gap      : 20px;
  }
}

.hero-bottom .filter-wrapper .list span {
  font-weight : 700;
  color       : var(--header);
  display     : inline-block;
  margin-right: 20px;
}

.hero-bottom .filter-wrapper .list a {
  display           : inline-block;
  line-height       : 1;
  margin-right      : 20px;
  background        : transparent;
  text-transform    : capitalize;
  font-weight       : 500;
  padding           : 12px 15px;
  -webkit-transition: all 0.4s ease-in-out;
  transition        : all 0.4s ease-in-out;
  border-radius     : 5px;
}

.hero-bottom .filter-wrapper .list a.active {
  background-color: var(--header);
  color           : var(--white);
}

.hero-bottom .filter-wrapper .list a:hover {
  background-color: var(--header);
  padding         : 12px 15px;
  color           : var(--white);
}

.hero-bottom .filter-wrapper .serch-button {
  display    : flex;
  align-items: center;
  gap        : 24px;
}

.hero-bottom .filter-wrapper .serch-button span {
  font-weight: 700;
  color      : var(--header);
}

.hero-bottom .filter-wrapper .serch-button .theme-btn {
  min-width       : 145px;
  background-color: var(--theme-2);
}

.hero-bottom .filter-wrapper .serch-button .theme-btn:before {
  background-color: var(--theme);
}

.hero-bottom .filter-wrapper .serch-button .theme-btn:hover {
  color     : var(--white);
  box-shadow: none;
}

.hero-bottom .filter-wrapper .serch-button .theme-btn:hover::before {
  width: 100%;
}

.comment-form-wrap {
  margin-top: 40px;
}

.comment-form-wrap .form-clt span {
  font-weight  : 700;
  color        : var(--header);
  display      : inline-block;
  margin-bottom: 20px;
}

.comment-form-wrap .form-clt input,
.comment-form-wrap .form-clt textarea {
  width           : 100%;
  outline         : none;
  border          : none;
  border-radius   : 5px;
  padding         : 16px 20px;
  color           : var(--text);
  background-color: var(--bg);
  font-weight     : 400;
}

.comment-form-wrap .form-clt input::placeholder,
.comment-form-wrap .form-clt textarea::placeholder {
  color: var(--text);
}

.comment-form-wrap .form-clt .nice-select {
  border-radius   : 5px;
  padding         : 10px 20px;
  color           : var(--text);
  background-color: var(--bg);
  font-weight     : 400;
  border          : none;
  outline         : none;
  height          : initial;
  z-index         : 99;
}

.comment-form-wrap .form-clt .nice-select span {
  margin-bottom: 0;
  font-weight  : 400;
  color        : var(--text);
}

.comment-form-wrap .form-clt .nice-select::after {
  width : 8px;
  height: 8px;
  right : 20px;
}

.comment-form-wrap .form-clt .nice-select .list {
  width: 100%;
}

.comment-form-wrap .form-clt .input-group {
  position: relative;
}

.comment-form-wrap .form-clt .input-group .input-group-addon {
  position: absolute;
  top     : 19px;
  right   : 20px;
}

.comment-form-wrap .form-clt .input-group input {
  padding    : 0;
  border     : none;
  font-size  : 14px;
  font-weight: 400;
  outline    : none;
  padding    : 19px 20px;
  outline    : none;
}

.comment-form-wrap .form-clt textarea {
  padding-bottom: 100px;
  border-radius : 20px;
  resize        : none;
}

.comment-form-wrap .form-clt .theme-btn {
  border-radius   : 5px;
  background-color: var(--theme-2);
}

.comment-form-wrap .form-clt .theme-btn::before {
  background-color: var(--theme);
}

.hero-3 {
  position: relative;
  z-index : 999;
}

.hero-3 .hero-image {
  overflow           : hidden;
  position           : absolute !important;
  left               : 0;
  top                : 0;
  width              : 100%;
  height             : 100%;
  opacity            : 1;
  z-index            : -2;
  background-size    : cover;
  background-position: bottom !important;
}

.hero-3 .hero-content {
  text-align    : center;
  position      : relative;
  padding-top   : 240px;
  padding-bottom: 300px;
}

@media (max-width: 1399px) {
  .hero-3 .hero-content {
    padding-top   : 250px;
    padding-bottom: 280px;
  }
}

@media (max-width: 1199px) {
  .hero-3 .hero-content {
    padding-top   : 200px;
    padding-bottom: 250px;
  }
}

@media (max-width: 991px) {
  .hero-3 .hero-content {
    padding-top   : 170px;
    padding-bottom: 230px;
  }
}

@media (max-width: 767px) {
  .hero-3 .hero-content {
    padding-top   : 150px;
    padding-bottom: 200px;
  }
}

@media (max-width: 575px) {
  .hero-3 .hero-content {
    padding-top   : 130px;
    padding-bottom: 180px;
  }
}

.hero-3 .hero-content .sub-title {
  font-size  : 18px;
  color      : var(--theme);
  font-family: "Kalam", sans-serif;
}

.hero-3 .hero-content h1 {
  color        : var(--white);
  margin-bottom: 20px;
}

.hero-3 .hero-content p {
  color: var(--white);
}

.hero-3 .hero-content .about-button {
  margin-top     : 50px;
  display        : flex;
  align-items    : center;
  gap            : 30px;
  justify-content: center;
}

@media (max-width: 575px) {
  .hero-3 .hero-content .about-button {
    flex-wrap: wrap;
  }
}

.hero-3 .hero-content .about-button .theme-btn.style-2 {
  background: rgba(255, 255, 255, 0.25);
}

.hero-3 .swiper-dot {
  position : absolute;
  left     : 50%;
  transform: translateX(-50%);
  bottom   : 12%;
  z-index  : 1;
}

.hero-3 .swiper-dot .swiper-pagination-bullet {
  width        : 10px;
  height       : 10px;
  transition   : 0.6s;
  background   : var(--white);
  opacity      : 1;
  border-radius: 10px;
}

.hero-3 .swiper-dot .swiper-pagination-bullet:not(:last-child) {
  margin-right: 10px;
}

.hero-3 .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
  transition      : 0.6s;
  position        : relative;
}

.hero-3 .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position        : absolute;
  width           : 22px;
  height          : 22px;
  line-height     : 22px;
  top             : -6px;
  left            : -6px;
  border-radius   : 50%;
  background-color: transparent;
  border          : 2px solid var(--theme);
  content         : "";
}

.hero-3 .array-button {
  display : grid;
  gap     : 0px;
  position: absolute;
  right   : 60px;
  z-index : 3;
  opacity : 1;
  bottom  : 80px;
}

.hero-3 .array-button .array-prev {
  width           : 80px;
  height          : 80px;
  line-height     : 80px;
  text-align      : center;
  border-radius   : 50%;
  border          : 1px solid var(--white);
  background-color: rgba(255, 255, 255, 0.1);
  color           : var(--white);
  backdrop-filter : blur(9px);
}

.hero-3 .array-button .array-prev span {
  color: var(--white);
}

.hero-3 .array-button .array-next {
  width        : 80px;
  height       : 80px;
  line-height  : 80px;
  text-align   : center;
  border-radius: 50%;
  border       : 1px solid var(--white);
  background   : transparent;
  color        : var(--white);
}

.hero-3 .array-button .array-next i {
  color: var(--white);
}

.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding   : 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav>ul {
  padding        : 0;
  margin         : 0;
  width          : 100%;
  list-style-type: none;
  display        : block !important;
}

.mean-container .mean-nav>ul .homemenu-items {
  display        : flex;
  align-items    : center;
  gap            : 30px;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .mean-container .mean-nav>ul .homemenu-items {
    flex-wrap: wrap;
  }
}

.mean-container .mean-nav>ul .homemenu-items .homemenu {
  position: relative;
}

@media (max-width: 1199px) {
  .mean-container .mean-nav>ul .homemenu-items .homemenu {
    max-width : 300px;
    text-align: center;
    margin    : 0 auto;
    border    : 1px solid var(--border);
    padding   : 10px;
  }
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position       : absolute;
  top            : 50%;
  left           : 50%;
  transform      : translate(-50%, -50%);
  width          : 60%;
  gap            : 10px;
  display        : flex;
  justify-content: center;
  flex-direction : column;
  opacity        : 0;
  visibility     : hidden;
  transition     : all 0.4s ease-in-out;
  margin-top     : 20px;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding      : 12px 20px;
  color        : var(--white) !important;
  width        : initial;
  font-size    : 16px;
  text-align   : center;
  border-radius: 0;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb::before {
  background         : -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
  background         : linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat  : no-repeat;
  background-size    : cover;
  background-position: center;
  width              : 100%;
  height             : 100%;
  position           : absolute;
  left               : 0;
  top                : 0;
  overflow           : hidden;
  opacity            : 0;
  -webkit-transition : all 0.3s ease-in-out;
  transition         : all 0.3s ease-in-out;
  content            : "";
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity   : 1;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity   : 1;
  visibility: visible;
  margin-top: 0;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity   : 1;
  visibility: visible;
  bottom    : 50%;
  transform : translateY(50%);
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin    : 15px auto;
  display   : inline-block;
  font-size : 16px;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width         : 100%;
  padding       : 10px 0;
  color         : var(--header);
  font-size     : 16px;
  line-height   : 1.5;
  font-weight   : 500;
  text-transform: capitalize;
  border-bottom : 1px solid var(--border) !important;
  border        : none;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding   : 0 !important;
}

.mean-container .mean-nav ul li>a>i {
  display: none;
}

.mean-container .mean-nav ul li>a.mean-expand i {
  display  : inline-block;
  font-size: 18px;
}

.mean-container .mean-nav>ul>li:first-child>a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform        : rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  -ms-transform    : rotate(45deg);
  -o-transform     : rotate(45deg);
  transition       : all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height       : 200px;
  width        : 100%;
  padding      : 0;
  border-top   : 0;
  margin-bottom: 20px;
}

.news-card-items {
  margin-top: 30px;
}

.news-card-items .news-image img {
  width        : 100%;
  height       : 100%;
  border-radius: 10px;
}

.news-card-items .news-content {
  border-radius: 10px;
  background   : #F7F7F7;
  padding      : 50px 40px;
}

@media (max-width: 1399px) {
  .news-card-items .news-content {
    padding: 20px 40px;
  }
}

@media (max-width: 1199px) {
  .news-card-items .news-content {
    padding: 50px 40px;
  }
}

@media (max-width: 991px) {
  .news-card-items .news-content {
    padding: 16px 25px;
  }
}

@media (max-width: 767px) {
  .news-card-items .news-content {
    padding: 35px 35px;
  }
}

.news-card-items .news-content .post-meta {
  display      : flex;
  align-items  : center;
  gap          : 10px;
  margin-bottom: 10px;
}

@media (max-width: 1399px) {
  .news-card-items .news-content .post-meta {
    flex-wrap: wrap;
    gap      : 10;
  }
}

.news-card-items .news-content .post-meta li {
  font-size  : 16px;
  font-weight: 600;
  color      : var(--text);
}

.news-card-items .news-content .post-meta li i {
  margin-right: 8px;
  color       : var(--theme);
}

.news-card-items .news-content h3 a:hover {
  color: var(--theme);
}

.news-card-items .news-content .link-btn {
  margin-top: 22px;
  display   : inline-block;
}

@media (max-width: 1399px) {
  .news-card-items .news-content .link-btn {
    margin-top: 10px;
  }
}

@media (max-width: 991px) {
  .news-card-items .news-content .link-btn {
    margin-top: 6px;
  }
}

.news-card-items-2 {
  margin-top   : 30px;
  border-radius: 16px;
  background   : var(--white);
  box-shadow   : 0px 4px 50px 0px rgba(0, 0, 0, 0.08);
  padding      : 15px;
}

.news-card-items-2 .news-image {
  position: relative;
}

.news-card-items-2 .news-image img {
  width        : 100%;
  height       : 100%;
  border-radius: 10px;
}

.news-card-items-2 .news-content {
  padding: 30px 20px 30px;
}

@media (max-width: 1399px) {
  .news-card-items-2 .news-content {
    padding: 30px 0 30px;
  }
}

.news-card-items-2 .news-content .post-meta {
  display      : flex;
  align-items  : center;
  gap          : 24px;
  margin-bottom: 15px;
}

@media (max-width: 1399px) {
  .news-card-items-2 .news-content .post-meta {
    flex-wrap: wrap;
    gap      : 20px;
  }
}

.news-card-items-2 .news-content .post-meta li {
  color: #535353;
}

.news-card-items-2 .news-content .post-meta li i {
  margin-right: 5px;
  color       : var(--theme);
}

.news-card-items-2 .news-content h4 {
  font-size  : 20px;
  font-weight: 600;
}

.news-card-items-2 .news-content h4 a:hover {
  color: var(--theme);
}

.news-card-items-2 .news-content .news-info {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  margin-top     : 20px;
}

.news-card-items-3 {
  margin-top: 30px;
}

.news-card-items-3.style-4 {
  margin-bottom: 30px;
}

.news-card-items-3 .news-image {
  position: relative;
}

.news-card-items-3 .news-image img {
  width        : 100%;
  height       : 100%;
  border-radius: 10px;
}

.news-card-items-3 .news-content {
  padding         : 24px;
  border-radius   : 10px;
  background-color: var(--white);
  box-shadow      : 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
  position        : relative;
  margin          : -82px 22px 0px;
}

@media (max-width: 1199px) {
  .news-card-items-3 .news-content {
    padding: 20px;
  }
}

.news-card-items-3 .news-content .post-meta {
  display      : flex;
  align-items  : center;
  gap          : 24px;
  margin-bottom: 15px;
}

@media (max-width: 1399px) {
  .news-card-items-3 .news-content .post-meta {
    gap: 18px;
  }
}

.news-card-items-3 .news-content .post-meta .post {
  background   : var(--theme);
  color        : var(--white);
  border-radius: 6px;
  font-size    : 24px;
  font-weight  : 700;
  padding      : 5px 14px;
  display      : grid;
  line-height  : 1;
}

.news-card-items-3 .news-content .post-meta .post span {
  font-size  : 16px;
  font-weight: 400;
  display    : inline-block;
  margin-top : 6px;
  text-align : center;
}

.news-card-items-3 .news-content .post-meta li {
  color: #535353;
}

.news-card-items-3 .news-content .post-meta li i {
  margin-right: 5px;
  color       : var(--theme);
}

.news-card-items-3 .news-content h4 {
  font-size    : 20px;
  margin-bottom: 10px;
}

.news-card-items-3 .news-content h4 a:hover {
  color: var(--theme);
}

.news-card-items-3 .news-content .link-btn {
  color: var(--header);
}

.news-section-2 .container-fluid {
  padding: 0 110px;
}

@media (max-width: 1600px) {
  .news-section-2 .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1399px) {
  .news-section-2 .container-fluid {
    padding: 0 40px;
  }
}

@media (max-width: 1199px) {
  .news-section-2 .container-fluid {
    padding: 0 30px;
  }
}

.news-section-3 {
  position     : relative;
  margin-bottom: -30px;
}

.news-section-3 .top-shape {
  position: absolute;
  right   : 0;
  top     : 40px;
}

@media (max-width: 1199px) {
  .news-section-3 .top-shape {
    display: none;
  }
}

.main-sideber .single-sidebar-widget {
  padding      : 25px 25px;
  margin-bottom: 30px;
  border       : 1px solid var(--border);
  border-radius: 20px;
}

.main-sideber .single-sidebar-widget .wid-title {
  margin-bottom: 20px;
}

.main-sideber .single-sidebar-widget .search-widget form {
  width   : 100%;
  position: relative;
}

.main-sideber .single-sidebar-widget .search-widget form input {
  background-color: var(--white);
  font-size       : 14px;
  font-weight     : 500;
  padding         : 16px 20px;
  width           : 100%;
  border          : none;
  color           : var(--text);
  border          : 1px solid var(--border);
  border-radius   : 8px;
}

.main-sideber .single-sidebar-widget .search-widget form button {
  position        : absolute;
  right           : -2px;
  top             : 0;
  width           : 58px;
  border-radius   : 8px;
  font-size       : 18px;
  height          : 100%;
  background-color: var(--theme);
  color           : var(--white);
  text-align      : center;
  transition      : all 0.3s ease-in-out;
}

.main-sideber .single-sidebar-widget .search-widget form button:hover {
  background-color: var(--header);
}

.main-sideber .single-sidebar-widget .news-widget-categories ul li {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  font-weight    : 400;
  transition     : all 0.4s ease-in-out;
  border-radius  : 0;
  font-size      : 16px;
  line-height    : 1;
}

.main-sideber .single-sidebar-widget .news-widget-categories ul li a {
  color: var(--text);
}

.main-sideber .single-sidebar-widget .news-widget-categories ul li span {
  transition: all 0.4s ease-in-out;
  color     : var(--text);
}

.main-sideber .single-sidebar-widget .news-widget-categories ul li:not(:last-child) {
  margin-bottom : 20px;
  padding-bottom: 20px;
  border-bottom : 1px dashed var(--border);
}

.main-sideber .single-sidebar-widget .news-widget-categories ul li:hover a {
  color: var(--theme);
}

.main-sideber .single-sidebar-widget .news-widget-categories ul li:hover span {
  color: var(--theme);
}

.main-sideber .single-sidebar-widget .recent-post-area .recent-items {
  display    : flex;
  align-items: center;
  gap        : 20px;
}

.main-sideber .single-sidebar-widget .recent-post-area .recent-items:not(:last-child) {
  margin-bottom: 20px;
}

.main-sideber .single-sidebar-widget .recent-post-area .recent-items .recent-thumb img {
  border-radius: 10px;
}

.main-sideber .single-sidebar-widget .recent-post-area .recent-items .recent-content ul {
  margin-bottom: 8px;
}

.main-sideber .single-sidebar-widget .recent-post-area .recent-items .recent-content ul li {
  color: var(--theme);
}

.main-sideber .single-sidebar-widget .recent-post-area .recent-items .recent-content ul li i {
  color       : #FE6902;
  margin-right: 5px;
}

.main-sideber .single-sidebar-widget .recent-post-area .recent-items .recent-content .star {
  color        : #FFB700;
  margin-bottom: 4px;
}

.main-sideber .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 a:hover {
  color: var(--theme);
}

.main-sideber .single-sidebar-widget .recent-post-area .recent-items .recent-content .price-text {
  font-size  : 16px;
  font-weight: 400;
}

.main-sideber .single-sidebar-widget .recent-post-area .recent-items .recent-content .price-text b {
  color      : #FFB700;
  font-weight: 400;
}

.main-sideber .single-sidebar-widget .tagcloud a {
  display       : inline-block;
  padding       : 15px 21px;
  line-height   : 1;
  font-size     : 14px;
  font-weight   : 400;
  background    : var(--white);
  margin-right  : 5px;
  text-transform: capitalize;
  margin-bottom : 10px;
  border-radius : 4px;
  border        : 1px solid var(--border);
  transition    : all 0.4s ease-in-out;
}

.main-sideber .single-sidebar-widget .tagcloud a:last-child {
  margin-right: 0;
}

.main-sideber .single-sidebar-widget .tagcloud a:hover {
  background-color: var(--theme);
  color           : var(--white);
}

.main-sideber .single-sidebar-widget .desti-booking-form .form-clt input,
.main-sideber .single-sidebar-widget .desti-booking-form .form-clt textarea {
  border          : none;
  outline         : none;
  width           : 100%;
  background-color: var(--bg);
  padding         : 20px 30px;
  line-height     : 1;
  border-radius   : 10px;
  text-transform  : capitalize;
  color           : #455151;
}

.main-sideber .single-sidebar-widget .desti-booking-form .form-clt input::placeholder,
.main-sideber .single-sidebar-widget .desti-booking-form .form-clt textarea::placeholder {
  color: #455151;
}

.main-sideber .single-sidebar-widget .desti-booking-form .form-clt textarea {
  padding-bottom: 152px;
}

.main-sideber .single-sidebar-widget .desti-booking-form .theme-btn {
  width        : 100%;
  border-radius: 10px;
}

.news-standard-wrapper .news-standard-items {
  border       : 1px solid var(--border);
  padding      : 30px;
  border-radius: 10px;
}

.news-standard-wrapper .news-standard-items:not(:last-child) {
  margin-bottom: 20px;
}

.news-standard-wrapper .news-standard-items .news-thumb {
  position: relative;
}

.news-standard-wrapper .news-standard-items .news-thumb img {
  width : 100%;
  height: 100%;
}

.news-standard-wrapper .news-standard-items .news-thumb .post {
  position        : absolute;
  top             : 30px;
  left            : 30px;
  background-color: var(--theme);
  border-radius   : 8px;
  text-align      : center;
}

.news-standard-wrapper .news-standard-items .news-thumb .post h3 {
  color      : var(--white);
  display    : grid;
  padding    : 12px 15px;
  line-height: 1;
  font-size  : 24px;
  min-width  : 60px;
}

.news-standard-wrapper .news-standard-items .news-thumb .post h3 span {
  display    : inline-block;
  margin-top : 6px;
  font-size  : 14px;
  font-weight: 400;
}

.news-standard-wrapper .news-standard-items .news-content {
  margin-top: 20px;
  position  : relative;
  z-index   : 9;
}

.news-standard-wrapper .news-standard-items .news-content ul {
  display      : flex;
  align-items  : center;
  gap          : 30px;
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  .news-standard-wrapper .news-standard-items .news-content ul {
    gap: 20px;
  }
}

.news-standard-wrapper .news-standard-items .news-content ul li {
  font-size  : 16px;
  font-weight: 500;
}

.news-standard-wrapper .news-standard-items .news-content ul li i {
  color       : var(--theme);
  margin-right: 5px;
}

.news-standard-wrapper .news-standard-items .news-content h3 {
  font-weight  : bold;
  margin-bottom: 12px;
  font-size    : 30px;
  font-weight  : 600;
}

@media (max-width: 575px) {
  .news-standard-wrapper .news-standard-items .news-content h3 {
    font-size: 25px;
  }
}

.news-standard-wrapper .news-standard-items .news-content h3 a:hover {
  color: var(--theme);
}

.news-standard-wrapper .news-standard-items .news-content .theme-btn {
  margin-top: 30px;
}

.news-standard-wrapper .news-standard-items .news-content .theme-btn.style-2 {
  background-color: var(--header);
  color           : var(--white);
}

.news-standard-wrapper .news-standard-items .news-content .theme-btn.style-2:before {
  background-color: var(--theme);
}

.news-standard-wrapper .news-standard-items .news-content .theme-btn.style-2:hover {
  color     : var(--white);
  box-shadow: none;
}

.news-standard-wrapper .news-standard-items .news-content .theme-btn.style-2:hover::before {
  width: 100%;
}

.news-details-area .blog-post-details .single-blog-post .post-featured-thumb {
  height       : 460px;
  border-radius: 10px;
}

@media (max-width: 767px) {
  .news-details-area .blog-post-details .single-blog-post .post-featured-thumb {
    height: 400px;
  }
}

.news-details-area .blog-post-details .single-blog-post .post-featured-thumb .post {
  position        : absolute;
  top             : 30px;
  left            : 30px;
  background-color: var(--theme);
  border-radius   : 8px;
  text-align      : center;
}

.news-details-area .blog-post-details .single-blog-post .post-featured-thumb .post h3 {
  color      : var(--white);
  display    : grid;
  padding    : 12px 15px;
  line-height: 1;
}

.news-details-area .blog-post-details .single-blog-post .post-featured-thumb .post h3 span {
  display   : inline-block;
  margin-top: 6px;
}

.news-details-area .blog-post-details .single-blog-post .post-content {
  margin-top: 30px;
}

.news-details-area .blog-post-details .single-blog-post .post-content .post-list {
  gap           : 30px;
  margin-bottom : 20px;
  border-bottom : 1px solid var(--border);
  padding-bottom: 20px;
}

.news-details-area .blog-post-details .single-blog-post .post-content .post-list li {
  font-size  : 14px;
  font-weight: 500;
}

.news-details-area .blog-post-details .single-blog-post .post-content .post-list li i {
  color       : var(--theme);
  margin-right: 5px;
}

.news-details-area .blog-post-details .single-blog-post .post-content h3 {
  margin-bottom: 15px;
  font-size    : 30px;
}

@media (max-width: 575px) {
  .news-details-area .blog-post-details .single-blog-post .post-content h3 {
    font-size: 24px;
  }
}

.news-details-area .blog-post-details .single-blog-post .post-content h3 a:hover {
  color: var(--theme);
}

.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text {
  border-left     : 4px solid var(--theme);
  padding         : 40px;
  background-color: var(--bg);
  border-radius   : 10px;
}

.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text p {
  font-weight   : 600;
  text-transform: capitalize;
  font-style    : italic;
  line-height   : 26px;
  color         : var(--header);
  line-height   : 162%;
}

.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text svg {
  float     : right;
  margin-top: -30px;
}

.news-details-area .blog-post-details .single-blog-post .post-content .details-image img {
  width : 100%;
  height: 100%;
}

.news-details-area .blog-post-details .tag-share-wrap {
  border-top   : 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding      : 30px 0;
}

.news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
  display           : inline-block;
  padding           : 12px 26px;
  line-height       : 1;
  background        : transparent;
  margin-right      : 8px;
  text-transform    : capitalize;
  font-weight       : 500;
  -webkit-transition: all 0.4s ease-in-out;
  transition        : all 0.4s ease-in-out;
  border-radius     : 4px;
  border            : 1px solid var(--border);
}

@media (max-width: 575px) {
  .news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
    margin-bottom: 5px;
    padding      : 12px 23px;
  }
}

.news-details-area .blog-post-details .tag-share-wrap .tagcloud a:hover {
  background-color: var(--theme);
  color           : var(--white);
}

.news-details-area .blog-post-details .tag-share-wrap .social-share span {
  font-size  : 18px;
  color      : var(--header);
  font-weight: 600;
}

.news-details-area .blog-post-details .tag-share-wrap .social-share a {
  font-size: 18px;
  color    : var(--header);
}

.news-details-area .blog-post-details .tag-share-wrap .social-share a:not(:last-child) {
  margin-right: 10px;
}

.news-details-area .blog-post-details .tag-share-wrap .social-share a:hover {
  color: var(--theme);
}

.news-details-area .blog-post-details .comments-area {
  margin-top: 40px;
}

.news-details-area .blog-post-details .comments-area .comments-heading {
  margin-bottom: 10px;
}

@media (max-width: 575px) {
  .news-details-area .blog-post-details .comments-area .comments-heading {
    margin-bottom: 20px;
  }
}

.news-details-area .blog-post-details .comments-area .comments-heading h3 {
  font-size  : 30px;
  font-weight: 700;
}

@media (max-width: 575px) {
  .news-details-area .blog-post-details .comments-area .comments-heading h3 {
    font-size: 26px;
  }
}

.news-details-area .blog-post-details .comments-area .blog-single-comment {
  border-bottom: 1px solid var(--border);
}

@media (max-width: 575px) {
  .news-details-area .blog-post-details .comments-area .blog-single-comment {
    flex-wrap: wrap;
    gap      : 20px;
  }
}

.news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .con h5 {
  margin-bottom: 10px;
  font-weight  : 600;
  font-size    : 20px;
}

.news-details-area .blog-post-details .comments-area .blog-single-comment .content .reply {
  border-radius   : 50px;
  padding         : 5px 18px;
  font-weight     : 400;
  background-color: var(--theme);
  color           : var(--white);
}

.news-details-area .blog-post-details .comment-form-wrap h3 {
  font-size    : 32px;
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .news-details-area .blog-post-details .comment-form-wrap h3 {
    font-size    : 28px;
    margin-bottom: 20px;
  }
}

.news-details-area .blog-post-details .comment-form-wrap .form-clt span {
  color        : var(--header);
  display      : inline-block;
  margin-bottom: 10px;
}

.news-details-area .blog-post-details .comment-form-wrap .form-clt input,
.news-details-area .blog-post-details .comment-form-wrap .form-clt textarea {
  width           : 100%;
  outline         : none;
  border          : none;
  background-color: transparent;
  border          : 1px solid var(--border);
  padding         : 16px 20px;
  font-weight     : 500;
  border-radius   : 8px;
  color           : var(--text);
}

.news-details-area .blog-post-details .comment-form-wrap .form-clt input::placeholder,
.news-details-area .blog-post-details .comment-form-wrap .form-clt textarea::placeholder {
  color: var(--text);
}

.news-details-area .blog-post-details .comment-form-wrap .form-clt textarea {
  padding-bottom: 100px;
  resize        : none;
}

.preloader {
  align-items    : center;
  cursor         : default;
  display        : flex;
  height         : 100%;
  justify-content: center;
  position       : fixed;
  left           : 0;
  top            : 0;
  width          : 100%;
  z-index        : 9999999;
}

.preloader .animation-preloader {
  z-index: 1000;
}

.preloader .animation-preloader .spinner {
  animation       : spinner 1s infinite linear;
  border-radius   : 50%;
  border          : 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--theme);
  height          : 9em;
  margin          : 0 auto 3.5em auto;
  width           : 9em;
}

@media (max-width: 767px) {
  .preloader .animation-preloader .spinner {
    width : 7.5em;
    height: 7.5em;
    margin: 0 auto 1.5em auto;
  }
}

.preloader .animation-preloader .txt-loading {
  font       : bold 5em "Manrope", sans-serif, "Manrope", sans-serif;
  text-align : center;
  user-select: none;
}

@media (max-width: 767px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 2.5em;
  }
}

.preloader .animation-preloader .txt-loading .letters-loading {
  color   : var(--theme);
  position: relative;
}

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

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

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

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

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

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}

.preloader .animation-preloader .txt-loading .letters-loading::before {
  animation  : letters-loading 4s infinite;
  color      : var(--header);
  content    : attr(data-text-preloader);
  left       : 0;
  opacity    : 0;
  font-family: "Manrope", sans-serif;
  position   : absolute;
  top        : -3px;
  transform  : rotateY(-90deg);
}

.preloader p {
  font-size     : 15px;
  font-weight   : 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  color         : var(--theme);
}

.preloader .loader {
  position      : fixed;
  top           : 0;
  left          : 0;
  width         : 100%;
  height        : 100%;
  font-size     : 0;
  z-index       : 1;
  pointer-events: none;
}

.preloader .loader .row {
  height: 100%;
}

.preloader .loader .loader-section {
  padding: 0px;
}

.preloader .loader .loader-section .bg {
  background-color: var(--bg);
  height          : 100%;
  left            : 0;
  width           : 100%;
  transition      : all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

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

.preloader.loaded .loader-section .bg {
  width     : 0;
  transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

.search-wrap {
  width           : 100%;
  height          : 100%;
  overflow        : hidden;
  display         : none;
  position        : fixed;
  top             : 0;
  left            : 0;
  z-index         : 999999;
  background-color: rgba(255, 255, 255, 0.9);
}

.search-wrap .search-inner {
  position: relative;
  width   : 100%;
  height  : 100%;
}

.search-wrap .search-cell {
  position : absolute;
  top      : 50%;
  width    : 100%;
  transform: translateY(-50%);
}

.search-wrap .search-field-holder {
  width    : 50%;
  margin   : auto;
  position : relative;
  animation: slideInUp 0.3s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search-wrap .search-field-holder {
    width: 70%;
  }
}

@media (max-width: 575px) {
  .search-wrap .search-field-holder {
    width: 80%;
  }
}

.search-wrap .main-search-input {
  width         : 100%;
  height        : 70px;
  border        : 0;
  padding       : 0 50px;
  text-transform: capitalize;
  background    : transparent;
  font-size     : 25px;
  color         : var(--theme);
  border-bottom : 2px solid var(--theme);
  text-align    : center;
  letter-spacing: 2px;
}

@media (max-width: 575px) {
  .search-wrap .main-search-input {
    height     : 50px;
    padding    : 0 0;
    line-height: 50px;
    font-size  : 18px;
  }
}

.search-wrap input.form-control,
.search-wrap input.form-control:focus {
  background-color: var(--theme);
}

input.main-search-input::placeholder {
  color    : var(--theme);
  opacity  : 1;
  font-size: 25px;
}

@media (max-width: 575px) {
  input.main-search-input::placeholder {
    font-size: 18px;
  }
}

.search-close {
  position : absolute;
  top      : 50px;
  right    : 50px;
  font-size: 30px;
  color    : var(--theme);
  cursor   : pointer;
}

.mouse-cursor {
  position         : fixed;
  left             : 0;
  top              : 0;
  pointer-events   : none;
  border-radius    : 50%;
  -webkit-transform: translateZ(0);
  transform        : translateZ(0);
  visibility       : hidden;
}

.cursor-inner {
  width             : 6px;
  height            : 6px;
  z-index           : 10000001;
  background-color  : var(--theme);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition     : width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition        : width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left     : -35px;
  margin-top      : -35px;
  width           : 70px;
  height          : 70px;
  background-color: var(--theme);
  opacity         : 0.3;
}

.cursor-outer {
  margin-left       : -12px;
  margin-top        : -12px;
  width             : 30px;
  height            : 30px;
  border            : 1px solid var(--theme);
  -webkit-box-sizing: border-box;
  box-sizing        : border-box;
  z-index           : 10000000;
  opacity           : 0.5;
  -webkit-transition: all 0.08s ease-out;
  -o-transition     : all 0.08s ease-out;
  transition        : all 0.08s ease-out;
}

.cursor-outer.cursor-hover {
  opacity: 0;
}

.back-to-top {
  border-radius   : 50%;
  background-color: var(--theme);
  width           : 50px;
  height          : 50px;
  line-height     : 50px;
  color           : var(--white);
  font-size       : 18px;
  position        : fixed;
  display         : inline-block;
  z-index         : 999;
  right           : 30px;
  bottom          : 30px;
  transition      : all 0.4s ease-in-out;
  opacity         : 0;
  visibility      : hidden;
  transform       : translateY(20px);
}

.back-to-top:hover {
  background-color: var(--header);
  color           : var(--white);
}

.back-to-top.show {
  opacity   : 1;
  visibility: visible;
  transform : translate(0);
}

.section-title {
  position     : relative;
  z-index      : 99;
  margin-bottom: 30px;
  margin-top   : -6px;
}

.section-title .sub-title {
  font-size     : 18px;
  font-weight   : 400;
  color         : var(--theme);
  font-family   : "Kalam", sans-serif;
  margin-bottom : 10px;
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .section-title {
    margin-bottom: 0;
  }
}

.section-title-area {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  position       : relative;
  z-index        : 9;
}

@media (max-width: 991px) {
  .section-title-area {
    flex-wrap: wrap;
    gap      : 30px;
  }
}

.section-title-area .nav {
  display    : flex;
  align-items: center;
  gap        : 10px;
}

.section-title-area .nav .nav-item .nav-link {
  background   : var(--white);
  box-shadow   : 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
  font-weight  : 400;
  color        : var(--header);
  font-family  : "Manrope", sans-serif;
  padding      : 12px 30px;
  border-radius: 5px;
  line-height  : 1;
}

.section-title-area .nav .nav-item .nav-link.active {
  background-color: var(--theme);
  color           : var(--white);
}

.center {
  text-align: center;
  margin    : 0 auto;
}

.footer-bg {
  background-color: #0B1D21;
}

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

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

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

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

@media (max-width: 1199px) {
  .section-padding {
    padding: 100px 0;
  }
}

@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
}

.team-card-item {
  margin-top: 30px;
}

.team-card-item .team-image img {
  width        : 100%;
  height       : 100%;
  border-radius: 16px;
}

.team-card-item .team-content {
  padding         : 30px 25px;
  background-color: var(--white);
  box-shadow      : 0px 4px 25px rgba(56, 75, 255, 0.08);
  margin          : -68px 15px 0px;
  position        : relative;
  z-index         : 9;
  border-radius   : 16px;
}

@media (max-width: 1399px) {
  .team-card-item .team-content {
    padding: 30px 22px;
  }
}

@media (max-width: 1399px) {
  .team-card-item .team-content h4 {
    font-size: 20px;
  }
}

.team-card-item .team-content h4 a:hover {
  color: var(--theme);
}

.team-card-item .team-content p {
  color: var(--text);
}

.team-card-item .team-content .social-profile {
  position          : absolute;
  right             : 24px;
  bottom            : 95px;
  content           : "";
  -webkit-transition: all 0.4s ease-in-out;
  transition        : all 0.4s ease-in-out;
  z-index           : 2;
  display           : inline-block;
  overflow          : hidden;
  cursor            : pointer;
}

.team-card-item .team-content .social-profile ul {
  transform : translateY(100px);
  transition: all 0.6s ease-in-out;
  opacity   : 0;
  visibility: hidden;
  z-index   : -1;
}

.team-card-item .team-content .social-profile ul li a {
  width             : 36px;
  height            : 36px;
  line-height       : 36px;
  border-radius     : 50px;
  text-align        : center;
  display           : block;
  background        : var(--white);
  color             : var(--theme);
  -webkit-transition: all 0.4s ease-in-out;
  transition        : all 0.4s ease-in-out;
  text-align        : center;
  margin            : 0 auto;
  font-size         : 16px;
  margin-bottom     : 5px;
}

.team-card-item .team-content .social-profile ul li a:hover {
  color           : var(--white);
  background-color: var(--theme);
}

.team-card-item .team-content .social-profile .plus-btn {
  z-index           : 9;
  cursor            : pointer;
  width             : 36px;
  height            : 36px;
  line-height       : 36px;
  border-radius     : 50px;
  text-align        : center;
  display           : inline-block;
  background        : var(--theme);
  color             : var(--white);
  -webkit-transition: all 0.3s ease-in-out;
  transition        : all 0.3s ease-in-out;
  font-size         : 16px;
}

.team-card-item .team-content .social-profile:hover ul {
  transform : translateY(0);
  opacity   : 1;
  visibility: visible;
}

.team-details-wrapper .team-author-items {
  display      : flex;
  align-items  : center;
  gap          : 30px;
  padding      : 30px;
  border       : 1px solid var(--border);
  border-radius: 12px;
  position     : relative;
}

@media (max-width: 1199px) {
  .team-details-wrapper .team-author-items {
    flex-wrap      : wrap;
    gap            : 20px;
    justify-content: center;
    text-align     : center;
  }
}

.team-details-wrapper .team-author-items .shape {
  position: absolute;
  bottom  : 0;
  right   : 0;
}

@media (max-width: 1199px) {
  .team-details-wrapper .team-author-items .shape {
    display: none;
  }
}

.team-details-wrapper .team-author-items .thumb {
  max-width: 370px;
}

.team-details-wrapper .team-author-items .thumb img {
  width        : 100%;
  height       : 250px;
  border-radius: 8px;
}

.team-details-wrapper .team-author-items .content {
  max-width: 700px;
}

.team-details-wrapper .team-author-items .content h2 {
  font-size    : 30px;
  margin-bottom: 5px;
}

@media (max-width: 575px) {
  .team-details-wrapper .team-author-items .content h2 {
    font-size: 26px;
  }
}

.team-details-wrapper .team-author-items .content span {
  margin-bottom: 10px;
  display      : inline-block;
}

.team-details-wrapper .team-author-items .content ul {
  margin-top : 20px;
  display    : flex;
  align-items: center;
  gap        : 50px;
  border-top : 1px solid var(--border);
  padding    : 20px 0;
}

@media (max-width: 1199px) {
  .team-details-wrapper .team-author-items .content ul {
    flex-wrap      : wrap;
    gap            : 15px;
    margin-bottom  : 20px;
    margin-top     : 20px;
    justify-content: center;
  }
}

.team-details-wrapper .team-author-items .content ul li {
  color: var(--header);
}

.team-details-wrapper .team-author-items .content ul li span {
  font-weight: 500;
  color      : var(--theme);
}

.team-details-wrapper .team-author-items .content ul li i {
  margin-right: 5px;
}

.team-details-wrapper .team-author-items .content ul li .color-star {
  color: var(--theme);
}

.team-details-wrapper .team-author-items .content .social-icon {
  gap     : 15px;
  position: relative;
  z-index : 9;
}

.team-details-wrapper .team-author-items .content .social-icon a {
  width           : 36px;
  height          : 36px;
  line-height     : 36px;
  text-align      : center;
  font-size       : 16px;
  display         : block;
  color           : var(--theme);
  transition      : all 0.4s ease-in-out;
  text-align      : center;
  background-color: transparent;
  border          : 1px solid var(--theme);
}

.team-details-wrapper .team-author-items .content .social-icon a:hover {
  background-color: var(--theme);
  color           : var(--white);
  border          : 1px solid transparent;
}

.team-details-wrapper .details-info-items {
  padding      : 70px 0;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 767px) {
  .team-details-wrapper .details-info-items {
    padding: 50px 0;
  }
}

@media (max-width: 575px) {
  .team-details-wrapper .details-info-items {
    padding: 40px 0;
  }
}

.team-details-wrapper .details-info-items .info-content h2 {
  font-size    : 30px;
  margin-bottom: 15px;
}

.team-details-wrapper .details-info-items .progress-wrap {
  margin-left: 30px;
}

@media (max-width: 991px) {
  .team-details-wrapper .details-info-items .progress-wrap {
    margin-left: 0;
  }
}

.team-details-wrapper .details-info-items .progress-wrap .pro-items {
  width: 100%;
}

.team-details-wrapper .details-info-items .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 20px;
}

.team-details-wrapper .details-info-items .progress-wrap .pro-items .pro-head {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  margin-bottom  : 10px;
}

.team-details-wrapper .details-info-items .progress-wrap .pro-items .pro-head .title {
  font-size  : 16px;
  font-weight: 600;
  color      : var(--header);
}

.team-details-wrapper .details-info-items .progress-wrap .pro-items .pro-head .point {
  font-size: 16px;
  color    : var(--header);
}

.team-details-wrapper .details-info-items .progress-wrap .pro-items .progress {
  background     : var(--bg);
  justify-content: flex-start;
  border-radius  : 0px;
  align-items    : center;
  position       : relative;
  display        : flex;
  height         : 10px;
  width          : 100%;
}

.team-details-wrapper .details-info-items .progress-wrap .pro-items .progress-value {
  animation    : load 3s normal forwards;
  border-radius: 0;
  background   : var(--theme);
  height       : 10px;
  width        : 0;
}

.team-details-wrapper .details-info-items .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}

.team-details-wrapper .details-info-items .progress-wrap .pro-items .style-three {
  animation: load3 3s normal forwards;
}

@keyframes load {
  0% {
    width: 0;
  }

  100% {
    width: 90%;
  }
}

@keyframes load2 {
  0% {
    width: 0;
  }

  100% {
    width: 70%;
  }
}

@keyframes load3 {
  0% {
    width: 0;
  }

  100% {
    width: 55%;
  }
}

.team-wrapper .team-wrap {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  margin-bottom  : 50px;
}

@media (max-width: 1199px) {
  .team-wrapper .team-wrap {
    flex-wrap: wrap;
    gap      : 20px;
  }
}

.team-wrapper .team-wrap h2 {
  font-size: 40px;
}

@media (max-width: 767px) {
  .team-wrapper .team-wrap h2 {
    font-size: 34px;
  }
}

@media (max-width: 575px) {
  .team-wrapper .team-wrap h2 {
    font-size: 28px;
  }
}

.team-wrapper .team-wrap .array-button {
  display    : flex;
  align-items: center;
  gap        : 10px;
}

.team-wrapper .team-wrap .array-button .array-prev,
.team-wrapper .team-wrap .array-button .array-next {
  width        : 56px;
  height       : 56px;
  border-radius: 50px;
  line-height  : 56px;
  text-align   : center;
  transition   : all 0.4s ease-in-out;
}

.team-wrapper .team-wrap .array-button .array-prev {
  background-color: var(--white);
  box-shadow      : 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
}

.team-wrapper .team-wrap .array-button .array-prev:hover {
  background-color: var(--theme);
  color           : var(--white);
}

.team-wrapper .team-wrap .array-button .array-next {
  background: var(--theme);
  color     : var(--white);
}

.team-wrapper .team-wrap .array-button .array-next:hover {
  background-color: var(--header);
}

.team-wrapper .team-card-items-2 {
  margin-bottom: 30px;
}

.team-wrapper .team-card-items-2 .team-image img {
  width        : 100%;
  height       : 100%;
  border-radius: 10px;
}

.team-wrapper .team-card-items-2 .team-content {
  border-radius: 0px 10px 10px 10px;
  background   : var(--white);
  padding      : 30px 60px;
  box-shadow   : 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
  text-align   : center;
  margin       : -80px 0px 0px;
  position     : relative;
  margin-right : 30px;
  transition   : all 0.4s ease-in-out;
  z-index      : 1;
}

.team-wrapper .team-card-items-2 .team-content::before {
  position        : absolute;
  top             : 0;
  left            : 0;
  right           : 0;
  bottom          : 0;
  width           : 100%;
  height          : 100%;
  content         : "";
  background-color: var(--theme);
  opacity         : 0;
  visibility      : hidden;
  top             : 0;
  left            : 0;
  width           : 0;
  height          : 100%;
  transition      : all 0.4s ease-in-out;
  border-radius   : 0px 10px 10px 10px;
  z-index         : -1;
}

@media (max-width: 767px) {
  .team-wrapper .team-card-items-2 .team-content {
    padding: 30px 20px;
  }
}

@media (max-width: 1199px) {
  .team-wrapper .team-card-items-2 .team-content h4 {
    font-size: 20px;
  }
}

.team-wrapper .team-card-items-2 .team-content .social-icon {
  display        : flex;
  align-items    : center;
  gap            : 10px;
  position       : relative;
  z-index        : 9;
  margin-top     : 24px;
  justify-content: center;
}

@media (max-width: 575px) {
  .team-wrapper .team-card-items-2 .team-content .social-icon {
    margin-top: 10px;
  }
}

.team-wrapper .team-card-items-2 .team-content .social-icon a {
  width           : 40px;
  height          : 40px;
  line-height     : 40px;
  border-radius   : 50%;
  text-align      : center;
  font-size       : 16px;
  display         : block;
  color           : var(--theme);
  transition      : all 0.4s ease-in-out;
  text-align      : center;
  background-color: var(--white);
  filter          : drop-shadow(0px 4px 25px rgba(19, 76, 179, 0.15));
}

.team-wrapper .team-card-items-2:hover .team-content h4 a {
  color: var(--white);
}

.team-wrapper .team-card-items-2:hover .team-content p {
  color: var(--white);
}

.team-wrapper .team-card-items-2:hover .team-content:before {
  width     : 100%;
  opacity   : 1;
  visibility: visible;
}

.team-section-2 {
  margin-bottom: -30px;
}

.team-section {
  position: relative;
}

.team-section .jip-shape {
  position: absolute;
  right   : 0;
  bottom  : 0;
}

@media (max-width: 1199px) {
  .team-section .jip-shape {
    display: none;
  }
}

.testimonial-wrapper {
  position: relative;
}

.testimonial-wrapper .testimonial-card-items {
  padding      : 50px 30px;
  border-radius: 12px;
  border       : 1px solid #ebebeb !important;
  margin-top   : 30px;
}

.testimonial-wrapper .testimonial-card-items .star {
  display      : inline-block;
  margin-bottom: 20px;
}

.testimonial-wrapper .testimonial-card-items .star i {
  color: rgb(255, 163, 26);
}

.testimonial-wrapper .testimonial-card-items p {
  font-size  : 18px;
  font-weight: 400;
  color      : var(--header);
}

.testimonial-wrapper .testimonial-card-items .client-info-items {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  margin-top     : 40px;
}

.testimonial-wrapper .testimonial-card-items .client-info-items .client-info {
  display    : flex;
  align-items: center;
  gap        : 15px;
}

@media (max-width: 1199px) {
  .testimonial-wrapper .testimonial-card-items .client-info-items .client-info {
    flex-wrap: wrap;
  }
}

.testimonial-wrapper .testimonial-card-items .client-info-items .client-info .text h4 {
  font-size     : 20px;
  text-transform: capitalize;
  margin-bottom : 5px;
}

@media (max-width: 1399px) {
  .testimonial-wrapper .testimonial-card-items .client-info-items .client-info .text h4 {
    font-size: 18px;
  }
}

.testimonial-wrapper .testimonial-card-items .client-info-items .client-info .text p {
  text-transform: capitalize;
}

.testimonial-wrapper .testimonial-card-items.style-2 {
  border: none;
}

.testimonial-wrapper .array-button {
  display        : flex;
  align-items    : center;
  gap            : 500px;
  margin-top     : 60px;
  position       : relative;
  justify-content: center;
}

.testimonial-wrapper .array-button::before {
  position  : absolute;
  top       : 14px;
  content   : "";
  width     : 528px;
  height    : 1px;
  background: rgba(10, 31, 36, 0.2);
}

.testimonial-wrapper .array-button .array-prevs,
.testimonial-wrapper .array-button .array-nexts {
  color         : var(--header);
  font-size     : 16px;
  font-weight   : 600;
  text-transform: uppercase;
  margin-left   : 10px;
  margin-right  : 45px;
  transition    : all 0.4s ease-in-out;
}

.testimonial-wrapper .array-button .array-prevs:hover,
.testimonial-wrapper .array-button .array-nexts:hover {
  color: var(--theme);
}

.testimonial-wrapper .array-button .array-nexts {
  color     : var(--theme);
  transition: all 0.4s ease-in-out;
}

.testimonial-wrapper .array-button .array-nexts:hover {
  color: var(--header);
}

.testimonial-wrapper-2 {
  position: relative;
}

.testimonial-wrapper-2 .testimonial-image {
  max-width: 450px;
}

@media (max-width: 1199px) {
  .testimonial-wrapper-2 .testimonial-image {
    max-width: initial;
  }
}

.testimonial-wrapper-2 .testimonial-image img {
  width        : 100%;
  height       : 100%;
  border-radius: 20px;
}

.testimonial-wrapper-2 .testimonial-content {
  margin-left: -30px;
}

@media (max-width: 1399px) {
  .testimonial-wrapper-2 .testimonial-content {
    margin-left: 0;
  }
}

.testimonial-wrapper-2 .testimonial-content .testimonial-card-items {
  background-color: var(--white);
  padding         : 60px;
  border-radius   : 15px;
  margin-top      : 20px;
}

@media (max-width: 1399px) {
  .testimonial-wrapper-2 .testimonial-content .testimonial-card-items {
    margin-top: 0;
  }
}

@media (max-width: 1199px) {
  .testimonial-wrapper-2 .testimonial-content .testimonial-card-items {
    padding   : 40px;
    margin-top: 20px;
  }
}

.testimonial-wrapper-2 .testimonial-content .testimonial-card-items .star-item {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  margin-bottom  : 30px;
}

.testimonial-wrapper-2 .testimonial-content .testimonial-card-items .star-item .star i {
  color: rgb(241, 101, 34);
}

.testimonial-wrapper-2 .testimonial-content .testimonial-card-items .star-item .star span {
  font-size   : 12px;
  font-weight : 400;
  padding-left: 16px;
  color       : var(--header);
}

.testimonial-wrapper-2 .testimonial-content .testimonial-card-items .client-info-items {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  margin-top     : 28px;
}

@media (max-width: 1199px) {
  .testimonial-wrapper-2 .testimonial-content .testimonial-card-items .client-info-items {
    flex-wrap: wrap;
  }
}

.testimonial-wrapper-2 .testimonial-content .testimonial-card-items .client-info-items .info-text h6 {
  color        : #1D3638;
  margin-bottom: 5px;
}

.testimonial-wrapper-2 .testimonial-content .testimonial-card-items .client-info-items h5 {
  font-weight: 500;
  color      : var(--text);
}

.testimonial-wrapper-2 .testimonial-content .testimonial-slider2 {
  margin-right: 40px;
}

@media (max-width: 1199px) {
  .testimonial-wrapper-2 .testimonial-content .testimonial-slider2 {
    margin-right: 0;
  }
}

.testimonial-wrapper-2 .array-button {
  display : grid;
  gap     : 10px;
  position: absolute;
  top     : 50%;
  right   : -4%;
}

@media (max-width: 1199px) {
  .testimonial-wrapper-2 .array-button {
    display: none;
  }
}

.testimonial-wrapper-2 .array-button .array-prev,
.testimonial-wrapper-2 .array-button .array-next {
  width        : 56px;
  height       : 56px;
  border-radius: 50px;
  line-height  : 56px;
  text-align   : center;
  transition   : all 0.4s ease-in-out;
}

.testimonial-wrapper-2 .array-button .array-prev {
  background-color: var(--theme);
  color           : var(--white);
}

.testimonial-wrapper-2 .array-button .array-prev:hover {
  background-color: var(--header);
}

.testimonial-wrapper-2 .array-button .array-next {
  background: rgba(2, 165, 206, 0.1);
}

.testimonial-wrapper-2 .array-button .array-next:hover {
  color           : var(--white);
  background-color: var(--header);
}

.testimonial-wrapper-3 {
  position: relative;
}

.testimonial-wrapper-3 .testimonial-image img {
  width : 100%;
  height: 100%;
}

.testimonial-wrapper-3 .testimonial-content .testimonial-card-items {
  padding         : 40px 30px;
  border-radius   : 16px;
  background-color: var(--white);
  border          : 1px solid #DDE0E9;
  margin-top      : 30px;
}

.testimonial-wrapper-3 .testimonial-content .testimonial-card-items .client-info-items {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  margin-bottom  : 30px;
}

.testimonial-wrapper-3 .testimonial-content .testimonial-card-items .client-info-items .client-info {
  display    : flex;
  align-items: center;
  gap        : 12px;
}

.testimonial-wrapper-3 .testimonial-content .testimonial-card-items .client-info-items .client-info .content h4 {
  font-size: 20px;
  color    : var(--theme-2);
}

.testimonial-wrapper-3 .testimonial-content .testimonial-card-items .client-info-items .client-info .content p {
  color: #504E4E;
}

.testimonial-wrapper-3 .testimonial-content .testimonial-card-items p {
  color: #504E4E;
}

.testimonial-wrapper-3 .array-button {
  display : grid;
  gap     : 10px;
  position: absolute;
  top     : 50%;
  right   : -8%;
}

@media (max-width: 1399px) {
  .testimonial-wrapper-3 .array-button {
    display: none;
  }
}

.testimonial-wrapper-3 .array-button .array-prev,
.testimonial-wrapper-3 .array-button .array-next {
  width        : 56px;
  height       : 56px;
  border-radius: 50px;
  line-height  : 56px;
  text-align   : center;
  transition   : all 0.4s ease-in-out;
}

.testimonial-wrapper-3 .array-button .array-prev {
  background-color: var(--theme);
  color           : var(--white);
}

.testimonial-wrapper-3 .array-button .array-prev:hover {
  background-color: var(--header);
}

.testimonial-wrapper-3 .array-button .array-next {
  background: rgba(2, 165, 206, 0.1);
}

.testimonial-wrapper-3 .array-button .array-next:hover {
  background-color: var(--header);
  color           : var(--white);
}

.testimonial-section {
  position: relative;
}

.testimonial-section .bag-shape {
  position: absolute;
  right   : 0;
  bottom  : 0;
}

@media (max-width: 1199px) {
  .testimonial-section .bag-shape {
    display: none;
  }
}

/*# sourceMappingURL=main.css.map */









/* ========= Services ========== */
.service-icon-item {
  display    : flex;
  align-items: center;
  margin     : 10px 0;
}

.service-icon-item .icon {
  padding      : 10px 15px;
  background   : var(--theme);
  color        : #fff;
  border-radius: 50%;
  margin-right : 15px;
}

.service-items .right-side .icon {
  background: var(--theme-2);
}


.corporate-tours,
.trade-fairs,
.customized-holidays {
  padding: 5rem 0;
}


.corporate-tours p,
.trade-fairs p,
.customized-holidays p {
  text-align: justify;
}