:root {
  --skyBlue: #1bb5c9;

  --yellow: #f0c828;

  --purple: #5b2e9f;

  --blue: #1478cd;

  --lightBg: #fefefe;

  --paraColor: #9b9b9b;
}

ul {
  padding: 0px;
}

a {
  cursor: pointer;

  text-decoration: none !important;

  font-weight: 600 !important;

  font-size: 16px;
}

p {
  font-size: 16px;

  font-weight: 400;

  line-height: 22px;

  font-family: "Poppins", sans-serif;
}

h3 {
  font-size: 32px !important;

  font-weight: 600 !important;

  line-height: 38px !important;

  font-family: "Open Sans", sans-serif;
}

h2 {
  font-family: "Open Sans", sans-serif;
}

.pt80 {
  padding-top: 80px;
}

.pb80 {
  padding-bottom: 80px;
}

.mb30 {
  margin-bottom: 30px;
}

.pb50 {
  padding-bottom: 50px;
}

.pt50 {
  padding-top: 50px;
}

/* navbar start */

#navbarSupportedContent {
  justify-content: end;

  margin-right: 30px;
}

nav.navbar.navbar-expand-lg.saferNavbar>div {
  border-radius: 50px;
  background-color: #ffffff;

  box-shadow: rgba(255, 137, 137, 0.1) 0px 4px 12px;
}

nav.navbar.navbar-expand-lg.saferNavbar {
  z-index: 9999;

  position: fixed;

  top: 0;

  width: 100%;

  left: 0px;
}

nav.navbar.navbar-expand-lg.saferNavbar .navbar-brand img {
  height: 77px;
}

.saferNavbar .navbar-brand {
  padding: 5px;

  margin-left: 20px;
}

/* animation */

.menu-container {
  margin-top: 20px;
}

.menu-container h3 {
  font-size: 24px;

  margin-bottom: 10px;

  text-align: center;
}

.menu-container:nth-child(3) {
  margin-top: 200px;
}

.menu {
  padding-left: 0px;

  display: flex;

  justify-content: center;
}

.navAnimation .dropdown {
  padding: 10px 20px;

  display: flex;

  font-weight: 600;

  justify-content: center;

  align-items: center;

  color: #000000;

  position: relative;

  font-size: 16px;

  perspective: 1000px;

  z-index: 100;
}

.navAnimation .dropdown:hover {
  /* background: var(--skyBlue); */

  cursor: pointer;

  color: var(--skyBlue);
}

.dropdown:hover .dropdown_menu li {
  display: block;
}

.navAnimation .dropdown_menu {
  position: absolute;

  top: 100%;

  left: 0;

  width: 170px;

  perspective: 1000px;

  z-index: -1;

  padding-left: unset;
}

.dropdown_menu li {
  display: none;

  color: #fff;

  background-color: var(--skyBlue);

  padding: 10px 20px;

  font-size: 16px;

  opacity: 0;

  text-align: left;
}

.dropdown_menu li:hover {
  background-color: var(--yellow);
}

.dropdown:hover .dropdown_menu--animated {
  display: block;
}

.dropdown_menu--animated {
  display: none;
}

.navAnimation .dropdown_menu--animated li {
  display: block;

  opacity: 1;
}

.navAnimation .dropdown_menu-1 .dropdown_item-1 {
  transform-origin: top center;

  animation: slideDown 300ms 60ms ease-in-out forwards;
}

.navAnimation .dropdown_menu-1 .dropdown_item-2 {
  transform-origin: top center;

  animation: slideDown 300ms 120ms ease-in-out forwards;
}

.navAnimation .dropdown_menu-1 .dropdown_item-3 {
  transform-origin: top center;

  animation: slideDown 300ms 180ms ease-in-out forwards;
}

.navAnimation .dropdown_menu-1 .dropdown_item-4 {
  transform-origin: top center;

  animation: slideDown 300ms 240ms ease-in-out forwards;
}

.navAnimation .dropdown_menu-1 .dropdown_item-5 {
  transform-origin: top center;

  animation: slideDown 300ms 300ms ease-in-out forwards;
}

.navAnimation .dropdown_menu-1 .dropdown_item-1.active {
  background-color: var(--purple);
}

@-moz-keyframes slideDown {
  0% {
    opacity: 0;

    transform: translateY(-60px);
  }

  100% {
    opacity: 1;

    transform: translateY(0);
  }
}

@-webkit-keyframes slideDown {
  0% {
    opacity: 0;

    transform: translateY(-60px);
  }

  100% {
    opacity: 1;

    transform: translateY(0);
  }
}

@-o-keyframes slideDown {
  0% {
    opacity: 0;

    transform: translateY(-60px);
  }

  100% {
    opacity: 1;

    transform: translateY(0);
  }
}

@keyframes slideDown {
  0% {
    opacity: 0;

    transform: translateY(-60px);
  }

  100% {
    opacity: 1;

    transform: translateY(0);
  }
}

/* animation end */

.navList>li a:hover {
  color: var(--skyBlue);
}

.navList a {
  color: #000000;

  font-weight: 600;

  font-size: 16px;

  padding: 10px 20px !important;
}

/* fdasfsdf */

/* styles.css */

.video-slider {
  position: relative;

  width: 100%;

  overflow: hidden;

  padding: unset !important;

  height: 100%;
}

.video-container {
  display: flex;

  transition: transform 0.5s ease-in-out;
}

video {
  width: 100%;

  flex-shrink: 0;
}

button.prev,
button.next {
  font-size: 21px;

  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  background-color: rgb(27 181 201 / 48%);

  color: white;

  border: none;

  z-index: 99;

  padding: 10px;

  cursor: pointer;

  height: 60px;

  width: 60px;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;
}

button.prev {
  left: 30px;

  z-index: 999;
}

button.next {
  right: 30px;

  z-index: 999;
}

.navRight {
  display: flex;

  margin-left: 10px;
}

.navRight div:nth-child(1) i {
  color: var(--yellow);

  vertical-align: middle;

  padding-right: 10px;
}

.navRight div:nth-child(2) a {
  background: var(--yellow);

  border: unset;

  margin-left: 20px;

  padding: 30px 30px;

  font-size: 18px;

  font-weight: 600;

  color: #fff;

  border-radius: 50px;

  text-decoration: none;
}

.navRight div:nth-child(1) {
  align-self: center;

  display: flex;
}

.navRight div:nth-child(1) span {
  color: #000000;

  font-size: 16px;

  font-weight: 600;
}

/* after before button */

.button1 {
  display: block;

  text-decoration: none;

  color: white;

  text-transform: uppercase;

  text-align: center;

  background: #343436;

  z-index: 0;

  position: relative;

  overflow: hidden;
}

.button1:before {
  z-index: 1;

  position: absolute;

  top: 0;

  left: -100%;

  width: 100%;

  height: 100%;

  content: "";

  background: rgba(255, 255, 255, 0.1);

  transition: 0.3s ease-in;
}

.button1:hover:before {
  left: 0;

  transition: 0.3s ease-out;
}

.button1:after {
  z-index: 1;

  position: absolute;

  top: 0;

  left: -100%;

  width: 100%;

  height: 100%;

  content: "";

  background: rgba(255, 255, 255, 0.1);

  transition: 0.6s ease-in;
}

.button1:hover:after {
  left: 0;

  transition: 0.6s ease-out;
}

/* nav end */

.videoSec::before {
  background: #24242482;

  height: 100%;

  width: 100%;

  position: absolute;

  content: "";

  left: 0px;

  top: 0px;

  z-index: 99;
}

.overLayVideo {
  position: relative;

  padding: unset !important;
}

.contentVideo {
  position: absolute;

  top: 250px;

  width: 100%;

  left: 3%;

  color: #ffff;

  z-index: 99;

  width: 94%;

  text-align: center;

  right: 3%;
}

.contentVideo h1 {
  font-size: 80px;

  font-weight: 700;
}

.contentVideo span {
  color: transparent;

  -webkit-text-stroke-width: 2px;

  -webkit-text-stroke-color: white;
}

.contentVideo p {
  font-size: 30px;

  font-weight: 600;
}

a.button1.btnBook {
  max-width: unset;

  width: 100%;

  margin: auto;

  padding: 19px;

  font-size: 17px;

  font-weight: 600;

  background-color: var(--yellow);

  border-radius: 0px 10px 10px 0px;
}

/* .findNowSec {

    display: flex;

    justify-content: center;

    margin: auto;

} */

/* .findNowSec input {

    border: unset;

    padding: 20px;

    border-right: 1px solid #d7d7d7;

    width: 100%;

    border-radius: 10px 0px 0px 10px;

    height: 64px;

} */

/* .findNowSec input::placeholder {

    font-weight: 600;

    color: #000000;

} */

/* .findNowSec select { */

/* border: unset;

    border-right: 1px solid #d7d7d7;

    padding: 20px;

    width: 100%;

    height: 64px;

    font-weight: 600;

}



.findNowSec {

    margin-top: 25px;

    background: #fbfbfb2e;

    padding: 20px;

    border-radius: 10px;

} */

/* 

.findNowSec div {

    width: 280px;

} */

/* .findNowSec input:focus {

    border: unset !important;

    box-shadow: unset !important;

    outline: unset;

} */

.sliderWidthContent {
  max-width: 1000px;

  margin: auto;
}

a.button1.btnBook i {
  margin-left: 3px;

  top: 2px;

  position: relative;
}

/* home about */

#features {
  background-color: #1bb5c9ab;

  padding: 31px 0 30px 0;

  position: absolute;

  width: 100%;

  bottom: 0px;
}

#features .col-md-3::after {
  content: "";

  position: absolute;

  bottom: -30px;

  left: 11px;

  display: block;

  width: 0;

  height: 5px;

  background: var(--yellow);

  transition: width 0.5s ease-in-out;
}

#features .col-md-3 div {
  display: flex;

  flex-direction: column;

  justify-content: flex-start;

  align-items: flex-start;

  padding: 0 20px 0 0;
}

#features .col-md-3 {
  position: relative;

  display: inline-block;

  z-index: 99;
}

#features .col-md-3:hover::after {
  width: 91%;

  transform: scaleY(1);
}

section#features p {
  color: #fff;
}

section#features h6 {
  color: #fff;
}

section#features img {
  filter: brightness(0) invert(1);
}

section.videoSec {
  position: relative;
}

#about {
  margin: 80px 0;
}

#about .blueBg {
  background-color: #0a1727;

  height: 203px;
}

#about form {
  background-color: #ffffff;

  padding: 42px 20px;

  margin-top: -5.5rem;

  box-shadow: 0px 4px 39px 0px rgba(0, 0, 0, 0.14);
}

#about-message {
  position: fixed;

  display: none;

  background-color: rgba(255, 255, 255);

  color: #000000;

  box-shadow: 0px 10px 39px -4px rgba(24, 39, 75, 0.1),
    0px 5.747572422027588px 12.932037353515625px -4.310678958892822px rgba(24, 39, 75, 0.12);

  text-align: center;

  width: 60%;

  padding: 103px 0;

  font-size: 36px;

  font-weight: 400;

  line-height: 40px;

  top: 23%;

  z-index: 3;

  right: 19%;

  border-radius: 40px;
}

#about form h6 {
  color: var(--yellow);

  padding-bottom: 15px;
}

#about input {
  padding: 3px 0 10px 0;

  width: 139px;
}

#about select {
  cursor: pointer;

  width: 154px;

  padding: 5px 10px 10px 0;
}

#about input {
  padding: 3px 0 10px 0;

  width: 139px;
}

#about form li {
  border: none !important;
}

#about form button {
  color: var(--yellow);

  border-radius: 40px;

  background-color: transparent;

  transition: 0.7s ease-in-out;
}

#about h4 {
  color: var(--yellow);

  padding: 70px 0 20px 0;
}

#about p {
  color: #9b9b9b;

  /* padding: 20px 0 10px 0; */
}

.globalBtnActive a {
  text-decoration: none;

  color: #ffffff;

  text-transform: capitalize;

  padding: 16px 36px !important;
}

#about .aboutImg {
  /* margin-top: -5.5rem; */

  position: relative;
}

.aboutImg img {
  width: 100%;

  height: 500px;

  object-fit: cover;
}

#about .customer {
  background-color: var(--skyBlue);

  padding: 20px 0;
}

#about .experience {
  background-color: var(--yellow);

  width: 195px;

  padding: 47px 36px;

  border-radius: 50%;

  position: absolute;

  bottom: 60px;

  left: -134px;

  height: 195px;

  text-align: center;
}

#about input,
#about input:hover,
#about input:focus,
#about input:active {
  -webkit-text-fill-color: #9b9b9b !important;
}

#about input,
#about select {
  outline: none;

  border: none;

  background-color: transparent;

  font-family: "Open Sans", sans-serif;

  border-bottom: 1px solid #9b9b9b;

  color: #9b9b9b !important;
}

input,
input:hover,
input:focus,
input:active {
  transition: background-color 5000s ease-in-out 0s;
}

#about h6 {
  font-size: 20px;

  font-weight: 600;

  line-height: 26px;

  font-family: "Open Sans", sans-serif;

  text-transform: capitalize;
}

.globalBtn button {
  border: 1px solid var(--yellow);

  padding: 16px 36px !important;
}

li {
  list-style: none;
}

#about h2 {
  font-size: 50px;

  font-weight: 700;

  line-height: 56px;

  font-family: "Open Sans", sans-serif;
}

.aboutImg>figure {
  margin-bottom: unset;
}

.aboutImg h2,
.aboutImg p {
  color: #fff;
}

@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.experience {
  animation: rotate360 5s linear infinite;
}

#special {
  margin: 50px 0 0px 0;

  background-color: var(--blue);

  padding: 70px 0;
}

#special h3 {
  color: var(--yellow);

  padding: 35px 0 20px 20px;

  margin-bottom: unset;
}

#special p {
  padding: 0 0 20px 20px;

  color: #ffffff;

  margin-bottom: unset;
}

.offer {
  position: relative;

  overflow: hidden;

  transition: 0.5s ease;
}

#special img {
  width: 100%;
  transition: 0.3s ease-in-out;
}

.offer img {
  width: 100%;

  object-fit: cover;
}

.overlaytwo {
  position: absolute;

  bottom: 0;

  left: 0;

  cursor: pointer;

  right: 0;

  background: linear-gradient(360deg,
      #f0c82873 0%,
      rgb(240 200 40 / 36%) 80%,
      transparent 100%);

  overflow: hidden;

  width: 100%;

  height: 0;

  transition: 0.4s ease;
}

.overlaytwo .overlay_text {
  position: absolute;

  width: 100%;

  top: 44%;

  left: 50%;

  transform: translate(-50%, -50%);

  text-align: center;
}

.overlaytwo .overlay_text h3 {
  color: #ffffff !important;

  padding: 0 !important;
}

.overlay_text {
  bottom: 36%;
}

.globalBtn {
  display: flex;

  justify-content: center;

  align-items: center;
}

.overlaytwo .overlay_text a {
  color: #ffffff;

  border-radius: 40px;

  margin-top: 50px;
}

.globalBtn li span {
  position: absolute;

  width: 25%;

  background-color: var(--yellow);

  transform: translateY(150%);

  border-radius: 50%;

  left: calc((var(--n) - 1) * 25%);

  transition: 0.7s ease-in-out;

  transition-delay: calc((var(--n) - 1) * 0.1s);

  z-index: -1;
}

.globalBtn li span:nth-child(1) {
  --n: 1;
}

.globalBtn li span:nth-child(2) {
  --n: 2;
}

.globalBtn li span:nth-child(3) {
  --n: 3;
}

.globalBtn li span:nth-child(4) {
  --n: 4;
}

.offer:hover {
  transform: scale(0.9);
}

.offer {
  position: relative;

  overflow: hidden;

  transition: 0.5s ease;
}

.offer:hover .overlaytwo {
  height: 100%;
}

.globalBtn.mt-lg-5.mt-4 a {
  border: 2px solid #fff;

  padding: 16px 36px !important;
}

.liveTravel {
  background-image: url(../img/bg-1.webp);

  background-size: cover;

  background-repeat: no-repeat;

  background-position: center;
}

.yellowText {
  color: var(--yellow);

  font-size: 22px;

  font-weight: 600;
}

.parantView {
  display: flex;

  justify-content: space-between;

  margin-bottom: 30px;
}

.liveTravel h2 {
  font-size: 50px;

  font-weight: 700;

  margin-bottom: 20px;

  font-family: "Open Sans", sans-serif;
}

.btnNormal {
  background: var(--yellow);

  padding: 16px 30px;

  border-radius: 30px;

  border: unset;

  font-weight: 600;
}

.parantView p {
  color: var(--paraColor);
}

.cardExploreImg img {
  width: 100%;

  height: 100%;
}

.cardMain {
  background: #fff;

  cursor: pointer;
}

.cardExpContent a {
  color: #000000;

  font-weight: 700 !important;
}

.cardExpContent h4 {
  color: var(--yellow);

  margin-bottom: 15px;
}

.cardExpContent {
  padding: 25px;
}

.cardExpContent i {
  position: relative;

  top: 5px;

  left: 3px;

  font-size: 20px;
}

.cardMain:hover img {
  transform: scale(0.9);
}

.cardMain img {
  transition: 0.7s;
}

.whyChooseUsSec {
  background-image: url(../img/choose-img.webp);

  background-size: cover;

  background-repeat: no-repeat;

  background-position: center;

  background-attachment: fixed;

  background-blend-mode: overlay;

  background-color: #0000006c;

  padding-top: 100px;

  padding-bottom: 100px;
}

.whyChooseContent {
  text-align: center;
}

.whyChooseContent h2 {
  font-size: 50px;

  font-weight: 700;

  margin-bottom: 20px;

  font-family: "Open Sans", sans-serif;

  color: #fff;
}

.whyChooseContent .btnNormal {
  background: var(--yellow);

  padding: 16px 30px;

  border-radius: 30px;

  max-width: 190px;

  margin: auto;
}

.imgTourtravel {
  background: var(--yellow);

  height: 70px;

  width: 70px;

  border-radius: 50px;

  text-align: center;

  padding-top: 15px;

  margin: auto;
}

.cardTourTravel {
  text-align: center;
}

.row.rowUpper {
  margin-top: -116px;
}

.cardTourTravel {
  text-align: center;

  background: linear-gradient(180deg, #fff 0%, #fcf7e2 100%);

  padding: 20px;
}

.normalH2 {
  font-size: 50px;

  font-weight: 700;

  margin-bottom: 20px;

  font-family: "Open Sans", sans-serif;
}

.contentServices {
  color: var(--paraColor);

  max-width: 550px;

  margin-bottom: 40px;
}

.serviceCustom img {
  width: 65px;

  height: 55px;
}

.serviceCustom h6 {
  font-size: 20px;

  color: #262626;
}

.serviceCustom {
  margin-bottom: 30px;
}

.cameraManImg img {
  width: 100%;
}

.cameraImg img {
  width: 70%;

  transition: 0.5s;
}

.cameraImg {
  margin-top: -114px;

  left: -71px;

  position: relative;
}

.cameraImg img:hover {
  transform: translateY(10px);
}

/* video */

#weDo {
  margin: 50px 0;
}

.weDo-video {
  object-fit: cover;

  position: relative;
}

#weDo img {
  width: 100%;

  object-fit: cover;
}

.weDo-content {
  background-color: var(--skyBlue);
}

#weDo h4 {
  color: var(--yellow);

  margin: 0 0 15px 45px;
}

#weDo p {
  color: #9b9b9b;

  margin: 25px 0 28px 0;

  padding: 0 231px 0 45px;
}

.video-play-button span {
  color: #ffffff;

  display: block;

  position: relative;

  z-index: 3;

  margin-top: 3px;

  width: 0;

  height: 0;

  font-size: 30px;

  left: -7px;

  top: -3px;
}

.video-wrapper {
  position: relative;

  display: inline-block;
}

#myVideo {
  width: 100%;

  cursor: pointer;

  height: 100%;

  object-fit: cover;
}

.pt50 {
  padding-top: 50px;
}

#weDo h2 {
  font-size: 50px;

  font-weight: 700;

  color: #fff;

  margin-bottom: 20px;

  font-family: "Open Sans", sans-serif;

  padding-left: 45px;
}

.pr {
  padding-right: unset !important;
}

.pl {
  padding-left: unset !important;
}

.video-wrapper img {
  height: 100%;
}

#weDo p {
  color: #fff;
}

.globalBtnActive.mt-3 {
  padding-left: 16px;
}

#team {
  /* margin: 50px 0; */

  padding: 50px 0;
}

#team h4 {
  color: var(--yellow);
}

#team h2 {
  padding: 20px 0 30px 0;

  font-size: 50px;

  font-weight: 700;

  margin-bottom: 20px;

  font-family: "Open Sans", sans-serif;
}

/* team card */

.teamCard {
  position: relative;

  overflow: hidden;

  transition: 0.5s ease;
}

#team img {
  width: 100%;

  transition: 0.3s ease-in-out;

  object-fit: cover;
}

.overlaythree {
  position: absolute;

  bottom: 0;

  left: 0;

  right: 0;

  background: linear-gradient(360deg,
      #f0c82873 0%,
      rgb(240 200 40 / 36%) 80%,
      transparent 100%);

  overflow: hidden;

  width: 100%;

  height: 0;

  transition: 0.4s ease;
}

.overlay_text {
  position: absolute;

  width: 100%;

  bottom: 36%;

  left: 50%;

  transform: translate(-50%, -50%);

  text-align: center;
}

.overlay_text a:first-child i {
  padding: 9px 13px 9px 13px;
}

.overlay_text i {
  border: 2px solid #ffffff;

  color: #ffffff;

  padding: 9px 11px 9px 10px;

  font-size: 21px;

  border-radius: 50%;

  transition: 400ms;

  cursor: pointer;

  background-color: transparent;
}

.teamCard:hover {
  transform: scale(0.9);
}

.teamCard:hover .overlaythree {
  height: 100%;
}

.overlay_text i:hover {
  color: var(--yellow);

  background-color: #ffffff;

  transition: 400ms;
}

.bgTeam {
  background-color: #ffffff;

  padding: 0 0 9px 0;

  box-shadow: 0px 10px 39px -4px rgba(24, 39, 75, 0.1),
    0px 5.747572422027588px 12.932037353515625px -4.310678958892822px rgba(24, 39, 75, 0.12);
}

.teamCard+div {
  padding: 20px;
}

#team p {
  color: var(--yellow);

  /* padding: 9px 0 31px 20px; */
}

.teamCard+div h6 {
  font-size: 20px;
}

.faqSec h2 {
  text-align: center !important;

  color: #262626;

  /* padding: 20px 0 30px 0; */

  font-size: 50px;

  font-weight: 700;

  margin-bottom: 20px;

  font-family: "Open Sans", sans-serif;
}

.faqSec {
  background-image: url(../img/faq-img.webp);

  background-size: cover;

  background-attachment: fixed;
}

.faqSec p {
  text-align: center;
}

.bgWhiteFaq {
  background: #ffff;

  height: 100%;
}

.accordion-item button {
  font-weight: 600;
}

.accordion-item {
  border: unset !important;
}

.accordion-button:not(.collapsed) {
  box-shadow: unset !important;
}

.star {
  font-size: 16px;

  margin: 5px;

  cursor: pointer;

  color: var(--yellow);
}

.star:hover,
.star.selected {
  color: var(--yellow);
}

.text {
  display: none;

  color: #666;

  margin: 8%;

  text-align: center;
}

.star.selected+.rating-text .text {
  display: inline-block;
}

@media screen and (max-width: 760px) {
  .star-rating {
    width: 90%;

    max-width: 100%;

    /* Limit maximum width for smaller screens */

    height: auto;

    margin: -200px auto;

    /* Center the component horizontally and add space below */

    left: 0;

    right: 0;

    top: 50%;
  }

  h1 {
    font-size: 20px;

    /* Adjusted font size for smaller screens */

    margin: 30px 20px;

    /* Adjusted margin for smaller screens */
  }

  .text {
    margin: 4%;

    /* Adjusted margin for smaller screens */
  }
}

.testimonialSec {
  background-color: #f3f3f3;
}

.cardTesti {
  background: #ffff;

  padding: 30px;

  text-align: center;

  height: 100%;
}

.stars {
  display: flex;

  justify-content: center;
}

.imgTesti img {
  border-radius: 50%;

  height: 100%;

  width: 100%;
}

.imgTesti {
  height: 60px;

  width: 60px;

  /* border-radius: 50%; */

  margin: auto;

  margin-bottom: 20px;
}

section.testimonialSec small {
  color: var(--yellow);

  font-weight: 600;

  margin-bottom: 9px;

  display: block;

  font-size: 15px;
}

.logoSec .owl-nav {
  display: none;
}

.logoSec img {
  max-width: 160px !important;
}

.logoSec {
  padding: 50px 0px;
}

.logoSec .owl-dots {
  display: none;
}

.discountSec h4 {
  position: relative;

  font-family: sans-serif;

  text-transform: uppercase;

  font-size: 35px;

  letter-spacing: 4px;

  font-weight: 700;

  overflow: hidden;

  background: linear-gradient(90deg, #f0c828, #2196f3, #f0c828);

  background-repeat: no-repeat;

  background-size: 80%;

  animation: animate 8s linear infinite;

  -webkit-background-clip: text;

  -webkit-text-fill-color: rgba(255, 255, 255, 0);
}

@keyframes animate {
  0% {
    background-position: -500%;
  }

  100% {
    background-position: 500%;
  }
}

.discountSec {
  background-image: url(../img/discountSec.webp);

  background-size: cover;

  background-attachment: fixed;

  background-blend-mode: overlay;

  background-color: #04040485;

  background-size: cover;

  background-position: center;

  text-align: center;

  padding: 100px 0px;
}

.discountSec p {
  text-align: center;

  color: #ffff;

  margin-top: 20px;

  font-size: 20px;

  font-weight: 500;

  margin-bottom: 30px;
}

/* blog */

/* footer start */

.footerUpper {
  margin-top: 80px;
}

.footerContent {
  padding-top: 100px;

  background-color: var(--skyBlue);
}

.careerChangeImg {
  height: 350px;

  margin-top: -60px;

  text-align: right;
}

.lookingForHead {
  margin-top: 25px;

  color: var(--blackColor);
}

.careerChangeImg img {
  height: 100%;

  /* width: 100%; */
}

.careerChangePara {
  font-weight: 500;

  font-size: 17px;

  margin-top: 15px;
}

.footerLogo img {
  height: 70px;
}

.footerLogoContent p {
  color: #fff;

  margin-top: 20px;

  position: relative;

  font-size: 16px;

  font-weight: 500;

  padding-left: 12px;
}

.cateforiesContent h5 {
  color: var(--yellow);

  font-weight: 500;

  font-size: 22px;

  margin-bottom: 10px;

  position: relative;

  border-bottom: 3px solid var(--yellow);

  display: inline-block;
}

.cateforiesContent ul {
  padding-left: unset;
}

.cateforiesContent ul li {
  list-style: none;

  padding-bottom: 5px;
}

.cateforiesContent p {
  color: #fff;

  font-weight: 500;

  font-size: 15px;
}

.cateforiesContent ul a {
  color: rgb(255, 255, 255);

  font-weight: 400 !important;

  font-size: 15px;

  position: relative;

  padding-left: 12px;
}

.cateforiesContent input {
  background: rgb(0, 0, 0);

  width: 100%;

  padding: 10px;

  border: unset;

  border-radius: 5px;
}

.footerFormButton button {
  margin-top: 10px;

  width: 100%;

  padding: 10px;

  border: unset;

  border-radius: 5px;

  font-size: 16px;

  font-weight: 500;

  background: var(--maroon);

  color: rgb(0, 0, 0);
}

.borderFotter {
  padding-bottom: 30px;
}

.footermain {
  background-color: var(--ligtGray);

  margin-top: 50px;
}

.listCopy {
  text-align: right;
}

.listCopy li {
  color: rgb(0, 0, 0);

  display: inline-flex;

  border-right: 2px solid #ffffff5e;

  padding-right: 10px;

  margin-right: 10px;
}

.listCopy li:nth-child(3) {
  border: unset;
}

.listCopy a {
  color: rgb(255, 255, 255);

  font-weight: 400 !important;

  font-size: 15px;
}

.copyPara {
  color: rgb(255, 255, 255);

  font-weight: 500;

  margin-bottom: unset !important;
}

ul.footerIconSocial li {
  display: inline-block;

  padding-right: 20px;
}

ul.footerIconSocial a {
  color: var(--skyBlue);

  background-color: rgb(0, 0, 0);
}

ul.footerIconSocial a {
  border-radius: 3px;

  height: 51px;

  width: 50px;

  background: var(--yellow);

  display: inline-block;

  text-align: center;

  padding-top: 11px;

  border-radius: 50%;
}

.footerIconSocial i {
  font-size: 22px;

  color: white;

  padding-top: 15px;
}

.footerIconSocial {
  margin-top: 25px;

  padding-left: unset;
}

.subsBg {
  background-image: url(../img/foo.jpg);

  margin-bottom: -125px;

  z-index: 9999;

  position: relative;

  background-repeat: no-repeat;

  background-size: cover;

  background-position: center;
}

.footerImg {
  height: 140px;
}

.footerImg img {
  height: 100%;

  width: 100%;

  object-fit: contain;
}

.NewsSelter h2 {
  color: white;

  font-size: 30px;

  font-weight: 600;
}

.NewsSelter {
  height: 100%;

  display: flex;

  align-items: center;

  padding: 70px 0px;
}

.NewsSelter button {
  background: #000000;

  padding: 12px 30px;

  color: white;

  font-weight: 600;

  font-size: 17px;

  height: 55px;

  display: inline-block;
}

.NewsSelter input {
  width: 300px;

  padding: 12px 10px;

  height: 55px;

  border: unset;
}

.copySec {
  background-color: var(--yellow);

  padding: 15px 0px;
}

.copySec ul {
  margin-bottom: unset;
}

/* footer end */

.post-slide {
  background: #fff;

  margin: 20px 15px 20px;

  border-radius: 15px;

  padding-top: 1px;

  position: relative;
}

.post-slide .post-img {
  position: relative;

  overflow: hidden;

  height: 250px;
}

.post-slide .post-img img {
  width: 100%;

  height: 100%;

  transform: scale(1, 1);

  transition: transform 0.2s linear;
}

.post-slide:hover .post-img img {
  transform: scale(1.1, 1.1);
}

.post-slide .over-layer {
  width: 100%;

  height: 100%;

  position: absolute;

  top: 0;

  left: 0;

  opacity: 0;

  background: linear-gradient(360deg,
      #f0c82873 0%,
      rgb(240 200 40 / 36%) 80%,
      transparent 100%);

  transition: all 0.5s linear;
}

.post-slide:hover .over-layer {
  opacity: 1;

  text-decoration: none;
}

.post-slide .over-layer i {
  position: relative;

  top: 45%;

  text-align: center;

  display: block;

  color: #fff;

  font-size: 25px;
}

.post-slide .post-content {
  background: #fff;
}

.post-slide .post-title a {
  font-size: 25px;

  display: inline-block;

  transition: all 0.3s ease 0s;

  margin: 20px 0px 10px 0px;

  line-height: 35px;

  color: #000;
}

.post-slide .post-title a:hover {
  text-decoration: none;

  color: var(--maroon);
}

.post-slide .post-description {
  line-height: 24px;

  color: #040404;

  margin-bottom: 25px;
}

.post-slide .post-date {
  color: var(--maroon);

  font-size: 20px;

  font-weight: 700;
}

.post-slide .post-date i {
  font-size: 20px;

  color: var(--maroon);

  position: relative;

  top: 3px;

  left: 5px;
}

.post-slide .read-more {
  padding: 7px 20px;

  float: right;

  font-size: 12px;

  background: var(--maroon);

  color: #ffffff;

  border-radius: 25px;

  text-transform: uppercase;
}

.post-slide .read-more:hover {
  text-decoration: none;

  color: #fff;
}

.owl-controls .owl-buttons {
  text-align: center;

  margin-top: 20px;
}

.owl-controls .owl-buttons .owl-prev {
  background: #fff;

  position: absolute;

  top: -13%;

  left: 15px;

  padding: 0 18px 0 15px;

  border-radius: 50px;

  box-shadow: 3px 14px 25px -10px #92b4d0;

  transition: background 0.5s ease 0s;
}

.owl-controls .owl-buttons .owl-next {
  background: #fff;

  position: absolute;

  top: -13%;

  right: 15px;

  padding: 0 15px 0 18px;

  border-radius: 50px;

  box-shadow: -3px 14px 25px -10px #92b4d0;

  transition: background 0.5s ease 0s;
}

.owl-controls .owl-buttons .owl-prev:after,
.owl-controls .owl-buttons .owl-next:after {
  content: "\f104";

  font-family: FontAwesome;

  color: #333;

  font-size: 30px;
}

.owl-controls .owl-buttons .owl-next:after {
  content: "\f105";
}

@media only screen and (max-width: 1280px) {
  .post-slide .post-content {
    padding: 0px 15px 25px 15px;
  }
}

.owlSec .owl-nav {
  display: none !important;
}

.owl-nav button {
  background: var(--yellow) !important;

  margin-right: 5px;

  height: 35px;

  color: white !important;

  width: 35px;

  border-radius: 50%;
}

.owl-nav button span {
  font-size: 35px !important;

  position: relative;

  top: -13px;
}

.owl-nav {
  position: absolute;

  top: -25px;

  right: 0px;
}

.viewAll a {
  width: 185px;

  font-weight: 600;

  margin-left: auto;
}

.viewAll {
  margin-bottom: 40px;
}

/* responsive */

@media (max-width: 1199px) {
  nav.navbar.navbar-expand-lg.saferNavbar .navbar-brand img {
    height: 60px;
  }

  .navList a {
    white-space: nowrap;
  }
}

/* about us */

.aboutBanner {
  background-blend-mode: overlay;

  background-color: #1c1c1ca3;

  padding-top: 219px;

  background-size: cover;

  text-align: center;

  background-position: center;

  padding-bottom: 120px;
}

.aboutBanner span {
  color: transparent;

  -webkit-text-stroke-width: 2px;

  -webkit-text-stroke-color: white;
}

.aboutBanner h2 {
  font-size: 60px;

  font-weight: 700;
}

.experience p {
  color: #fff !important;
}

.customer p {
  color: #fff !important;
}

.aboutSec {
  background-image: url(../img/about_1_bg.png);

  background-size: cover;

  margin-bottom: 30px;

  background-position: center;
}

.missionImg {
  margin-bottom: 50px;
}

.paraText {
  color: var(--paraColor);
}

.vissionRight {
  padding-right: 30px;
}

.missionImg img {
  width: 100%;
}

.bookNow {
  background: var(--yellow);

  padding: 16px 30px;

  border-radius: 30px;

  max-width: 190px;
}

.contactSec {
  background: linear-gradient(0deg,
      rgb(255 255 255) 35%,
      rgba(27, 181, 201, 0.103) 0%);

  padding: 80px 0px 50px 0px;
}

.contactPara {
  font-weight: 500;

  font-size: 18px;
}

.sendMessage i {
  color: var(--yellow);

  font-size: 35px;
}

.sendMessage {
  display: flex;

  justify-content: space-between;
}

.contactForm h5 {
  color: var(--yellow);

  font-size: 25px;
}

.contactForm {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

  background-color: #fff;

  padding: 30px 40px;
}

.contactParent div {
  width: 100%;

  margin-bottom: 20px;
}

.contactParent {
  display: flex;
}

.contactParent input:focus,
.contactParent textarea:focus {
  outline: none;
}

.contactParent input,
.contactParent textarea {
  width: 100%;

  border: none;

  font-size: 15px;

  padding: 10px 0px;

  border-bottom: 1px solid var(--yellow);
}

.contactParent input::placeholder,
.contactParent textarea::placeholder {
  color: #b1b1b1;
}

.contactInfo {
  background: var(--yellow);

  justify-content: center;

  align-items: center;

  display: flex;

  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

  padding: 20px;
}

.contactInfo p,
.contactInfo h2,
.contactInfo i {
  color: #fff;
}

.parentContactInfo p {
  font-weight: 600;
}

.parentContactInfo div {
  margin-right: 15px;

  margin-top: 5px;
}

.parentContactInfo {
  display: flex;
}

.contactInfo h2 {
  margin-bottom: 20x;
}

.contactInfo h2 {
  font-size: 30px;

  margin-bottom: 20px;
}

.blogSec {
  padding: 80px 0px;
}

.blogImg img {
  width: 100%;
}

.blogCard span {
  color: var(--yellow);

  margin-top: 10px;

  font-weight: 500;

  display: block;

  font-size: 15px;
}

.blogCard h4 {
  font-size: 22px;

  margin-top: 10px;

  margin-bottom: 10px;
}

.blogCard a {
  color: #020202;

  font-size: 17px;
}

.blogCard img {
  transition: 0.5s;
}

.blogCard:hover img {
  transform: scale(0.9);
}

.blogCard:hover {
  cursor: pointer;
}

.blogCard p {
  font-size: 15px;
}

.footerLogoContent p::after {
  position: absolute;

  background: #f0c828;

  height: 100%;

  width: 4px;

  content: "";

  left: 0px;

  top: 0px;
}

.cateforiesContent ul a::after {
  position: absolute;

  background: #f0c828;

  height: 8px;

  width: 8px;

  content: "";

  left: 0px;

  top: 7px;

  transform: rotate(45deg);
}

.blogImg:after {
  position: absolute;

  top: 0px;

  height: 100%;

  width: 0%;

  background-image: linear-gradient(308deg,
      rgba(240, 200, 40, 0.459) 0%,
      rgba(0, 213, 255, 0.418) 100%);

  content: "";

  left: 0px;

  transition: 0.6s;

  transform: scale(0.9);
}

.blogImg {
  position: relative;

  transition: 0.6s;
}

.blogImg:hover:after {
  width: 100%;

  /* Expand the ::after element's height on hover */
}

/* login */

.loginBgSec {
  height: 100vh;

  display: flex;

  align-items: center;

  /* background-image: url(../img/loginMain.png);

    background-repeat: no-repeat;

    background-size: cover; */
}

.parentLogin {
  display: flex;

  /* background: red; */

  background-image: linear-gradient(45deg,
      hsl(48deg 86.96% 54.9%) 1%,
      hsl(48deg 86.96% 54.9%) 39%,
      hsl(48deg 86.96% 54.9%) 46%,
      hsl(185.93deg 64.8% 49.02%) 46%,
      hsl(185.93deg 64.8% 49.02%) 62%,
      hsl(185.93deg 64.8% 49.02%) 104%);

  padding: 80px;

  align-items: center;

  justify-content: space-between;

  border-radius: 5px;
}

.loginContent input {
  border: 1px solid var(--yellow);

  margin-bottom: 10px;

  width: 300px;

  padding: 10px;

  border-radius: 30px;

  display: block;
}

.btn1 button {
  border: unset;

  background: var(--yellow);

  color: #fff;

  font-size: 17px;

  font-weight: 500;

  padding: 8px 20px;

  width: 100%;

  border-radius: 30px;

  margin-top: 0px;
}

.forgotPassA {
  text-align: right;
}

.forgotPassA a {
  color: #fff;

  text-decoration: underline !important;

  font-weight: 600 !important;

  font-size: 13px;
}

.noAccoubt {
  margin-top: 20px;

  color: #fff;

  text-align: center;
}

.noAccoubt a {
  color: #fff;

  font-weight: 600 !important;

  font-size: 13px;

  text-decoration: underline !important;
}

.parentCode {
  display: flex;
}

.parentCode div:nth-child(1) {
  width: 150px;

  margin-right: 30px;
}

.parentCode div:nth-child(2) {
  width: 100%;
}

.registraionContent .col-lg-6 {
  margin-bottom: 0px;
}

.registraionContent .col-lg-12 {
  /* margin-bottom: 0px; */
}

.registraionContent p {
  margin-bottom: 10px;

  color: #fff;
}

.registraionContent span {
  margin-right: 5px;

  display: inline-block;
}

.registraionContent input,
.registraionContent select {
  border: 1px solid var(--yellow);

  width: 100%;

  padding: 10px;

  border-radius: 30px;
}

.readCheck {
  display: flex;
}

.readCheck p,
.readCheck a {
  font-size: 13px;

  color: #ffffff;
}

.readCheck a {
  font-size: 14px;

  font-weight: 500 !important;

  text-decoration: underline !important;

  font-weight: 600 !important;

  color: #ffff;
}

input:focus {
  outline: unset !important;

  box-shadow: unset !important;
}

.createButton {
  text-align: center;
}

.createButton button {
  background: var(--yellow);

  border: unset;

  padding: 10px 20px;

  border-radius: 5px;

  color: #fff;

  font-weight: 600;
}

.loginLogo img {
  width: 100%;
}

.loginLogo {
  margin-bottom: 20px;

  text-align: center;
}

.gradientRow {
  background-image: linear-gradient(45deg,
      hsl(48deg 86.96% 54.9%) 1%,
      hsl(48deg 86.96% 54.9%) 39%,
      hsl(48deg 86.96% 54.9%) 46%,
      hsl(185.93deg 64.8% 49.02%) 46%,
      hsl(185.93deg 64.8% 49.02%) 62%,
      hsl(185.93deg 64.8% 49.02%) 104%);

  padding: 60px 20px;

  border-radius: 10px;
}

.registorImg {
  height: 100%;

  align-items: center;

  display: flex;

  justify-content: center;
}

.signUpBtn {
  text-align: center;
}

.signUpBtn button {
  border: 1px solid #ffffff59;

  background-color: #000;
}

.registraionContent a {
  color: #ffff;

  text-decoration: underline !important;

  font-size: 13px;
}

.github {
  z-index: 10000;

  bottom: 10px;

  right: 10px;

  position: fixed;

  border-radius: 10px;

  background: #fff;

  padding: 0 12px 6px 12px;

  border: 1px solid #000;
}

.github a:hover,
.github a:link,
.github a:visited,
.github a:active {
  color: #000;

  text-decoration: none;
}

.github img {
  height: 30px;
}

.github #gh-project {
  font-size: 20px;

  padding-left: 5px;

  font-weight: bold;

  vertical-align: bottom;
}

/* bottom to top */

#scrollToTopButton {
  position: fixed;

  bottom: 20px;

  right: 20px;

  display: none;

  padding: 10px 15px;

  background-color: #f0c828;

  color: white;

  border: none;

  border-radius: 5px;

  cursor: pointer;
}

/* 19-10-2024 */

.verifySec {
  background: #dde3e95c;

  height: 100vh;

  display: flex;

  align-items: center;

  justify-content: center;
}

.verifyEmail {
  background: #ffff;

  text-align: center;

  max-width: 450px;

  padding: 45px 20px;

  border-bottom: 5px solid var(--skyBlue);

  margin: auto;

  border-radius: 5px;
}

.loginLogo img {
  width: 200px;
}

.verifyEmail input {
  width: 100%;

  border: 1px solid var(--yellow);

  padding: 10px;

  margin-top: 10px;

  border-radius: 5px;
}

.verifyEmail label {
  display: block;

  text-align: left;
}

.verifyBtn a {
  background: var(--yellow);

  border: unset;

  padding: 8px 30px;

  font-size: 17px;

  font-weight: 500;

  border-radius: 5px;

  color: #fff;
}

.verifyBtn button {
  background: var(--yellow);

  border: unset;

  padding: 8px 30px;

  font-size: 17px;

  font-weight: 500;

  border-radius: 5px;

  color: #fff;
}

.verifyBtn {
  margin-top: 30px;
}

.verifyEmail .title {
  max-width: 400px;

  margin: auto;

  text-align: center;

  font-family: "Poppins", sans-serif;
}

.verifyEmail .title h3 {
  font-weight: bold;
}

.verifyEmail .title p {
  font-size: 12px;

  color: #118a44;
}

.verifyEmail .title p.msg {
  color: initial;

  text-align: center;

  font-weight: bold;
}

.verifyEmail .otp-input-fields {
  margin: auto;

  background-color: white;

  max-width: 400px;

  width: auto;

  display: flex;

  justify-content: center;

  gap: 10px;
}

.verifyEmail .otp-input-fields input {
  height: 40px;

  width: 40px;

  background-color: transparent;

  border-radius: 4px;

  border: 1px solid #2f8f1f;

  text-align: center;

  outline: none;

  font-size: 16px;

  /* Firefox */
}

.verifyEmail .otp-input-fields input::-webkit-outer-spin-button,
.otp-input-fields input::-webkit-inner-spin-button {
  -webkit-appearance: none;

  margin: 0;
}

.verifyEmail .otp-input-fields input[type="number"] {
  -moz-appearance: textfield;
}

.verifyEmail .otp-input-fields input:focus {
  border-width: 2px;

  border-color: #287a1a;

  font-size: 20px;
}

#registrationForm .result {
  max-width: 400px;

  margin: auto;

  padding: 24px;

  text-align: center;
}

#registrationForm .result p {
  font-size: 24px;

  font-family: "Antonio", sans-serif;

  opacity: 1;

  transition: color 0.5s ease;
}

#registrationForm .result p._ok {
  color: green;
}

#registrationForm .result p._notok {
  color: red;

  border-radius: 3px;
}

#registrationForm .verifyEmail h3 {
  margin-bottom: 20px;
}

/* match password */

#registrationForm .error {
  color: red;

  font-size: 0.875rem;
}

#registrationForm .success {
  color: green;

  font-size: 0.875rem;

  text-align: left;
}

#registrationForm .submit-btn {
  background-color: var(--yellow);

  color: #fff;

  border: none;

  padding: 10px;

  border-radius: 4px;

  cursor: pointer;

  width: 100%;

  font-size: 17px;

  opacity: 0.6;

  pointer-events: none;
}

#registrationForm .submit-btn.enabled {
  opacity: 1;

  pointer-events: auto;
}

#registrationForm .submit-btn:hover {
  background-color: var(--skyBlue);
}

#registrationForm {
  text-align: left;
}

/* 21 Oct  */

.listTerm>p::after {
  position: absolute;

  background: #f0c828;

  content: "";

  height: 15px;

  width: 15px;

  left: 0px;

  clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);

  top: 4px;
}

.listTerm>p {
  position: relative;

  padding-left: 30px;
}

.subList {
  padding-left: 50px;
}

.subList li {
  list-style: disc;

  color: black;

  margin-bottom: 10px;
}

.header {
  position: fixed;

  top: 0;

  width: 100%;

  color: beige;

  padding: 20px 0;

  text-align: center;

  transition: padding 0.3s, font-size 0.3s;
}

.header.small {
  background-color: #fff;

  z-index: 9999;

  padding: 0px;
}

.header.small .container {
  box-shadow: unset !important;
}

.menu {
  position: sticky;

  display: inline;

  top: 140px;

  left: 0px;

  height: 100vh;

  width: 200px;

  background: #f4f4f4;

  overflow-y: auto;

  padding-top: 60px;
}

.small .navRight a {
  padding: 10px 20px !important;

  border-radius: 30px !important;
}

.header.small img {
  height: 65px !important;
}

.small .navRight div:nth-child(2) a {
  font-size: 16px;
}

/* 11 nov */

.aboutBlogDetail {
  padding: 80px 0px;
}

/* 21-11-2024 */

.travelBtn button {
  color: #fff;

  font-weight: 500;

  padding: 5px 15px;

  border-radius: 10px;

  margin-bottom: 30px;

  display: inline-block;

  background: var(--yellow);

  border: unset !important;
}

.imgReed img {
  height: 20px;

  width: 20px;

  border-radius: 50%;
}

.commentSec {
  display: flex;

  width: 100%;
}

.commentSec>div {
  width: 35%;

  border: 1px solid #d6d6d6af;

  justify-content: center;

  align-items: center;

  padding: 15px;
}

.commentSec>div p {
  align-self: center;

  margin-bottom: unset;

  margin-left: 20px;

  font-weight: 600;

  font-size: 15px;
}

.commentSec>div:nth-child(1),
.commentSec>div:nth-child(2) {
  border-right: unset;
}

.imgReed i {
  font-size: 20px;

  color: #525454;
}

.detaileft p,
.detaileft li {
  color: var(--paraColor);
}

.blogDetailImg img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  border-radius: 10px;
}

/* .blogDetailDescription {} */

.blogDetailImg {
  height: 450px;
}

.blogDetailDescription ul li:before {
  content: "\f00c";

  margin-right: 10px;

  width: 24px;

  height: 24px;

  line-height: 24px;

  border-radius: 50%;

  font-family: "FontAwesome";

  display: inline-block;

  background: #1bb5c9;

  color: #fff;

  text-align: center;
}

/* .list-style-two li:before {

    content: "\f00c";

    margin-right: 10px;

    width: 24px;

    height: 24px;

    line-height: 24px;

    border-radius: 50%;

    font-family: 'FontAwesome';

    display: inline-block;

    background: #1bb5c9;

    color: #fff;

    text-align: center;

} */

.detaileft li {
  margin-bottom: 15px;
}

.list-style-two {
  padding-left: 0px;
}

.searchDetails input {
  border: 1px solid #e9e9e9;

  width: 100%;

  padding: 10px 20px;

  background: transparent;

  border-radius: 5px;
}

.blog-sidebar .widget {
  padding: 40px 30px;

  border-radius: 10px;

  border: 1px solid #e9e9e9 !important;
}

.blog-sidebar .widget-title {
  margin-top: -8px;

  margin-bottom: 25px;

  padding-bottom: 15px;

  border-bottom: 1px solid #e9e9e9;
}

.list-style-three li:before {
  content: "\f105";

  margin-right: 8px;

  margin-bottom: -2px;

  font-family: "FontAwesome";

  color: var(--paraColor);
}

.list-style-three li {
  display: flex;

  margin-bottom: 16px;

  align-items: center;
}

.blog-sidebar li a {
  color: var(--paraColor);
}

.blog-sidebar .widget {
  padding: 40px 30px;

  border-radius: 10px;

  border: 1px solid #e9e9e9;
}

.widget-news li .image {
  flex: none;

  max-width: 100px;

  margin-right: 30px;
}

.widget-news li:not(:last-child) {
  margin-bottom: 30px;
}

.widget-news li {
  display: flex;

  align-items: center;
}

.widget-news li {
  display: flex;

  align-items: center;
}

.widget-news .content a {
  color: #000000 !important;
}

.blog-sidebar ul {
  padding-left: unset;
}

.widget-gallery .gallery {
  display: flex;

  flex-wrap: wrap;

  margin-right: -10px;

  margin-bottom: -10px;
}

.widget-gallery .gallery a {
  margin-right: 10px;

  margin-bottom: 10px;

  max-width: calc(33.333% - 10px);
}

.galleryLeftImg div img {
  height: 100%;

  width: 100%;

  object-fit: cover;

  border-radius: 10px;
}

.galleryLeftImg div {
  width: 50%;

  height: 400px;

  margin-right: 15px;
}

.galleryLeftImg {
  display: flex;

  margin-top: 30px;
}

.errMsg {
  display: none;

  color: rgb(155, 4, 4);

  margin: 5px 10px 10px 0;
}

.download_app .col-md-5 img {
  height: 450px;

  width: 100%;

  object-fit: contain;
}

.download_app_img img {
  height: 80px;

  width: 100% !important;

  object-fit: contain;

  margin-bottom: 30px;
}

.download_app_img {
  margin-top: 30px;

  display: flex;

  padding: 20px;

  gap: 30px;
}

.how_to_Sell .steps {
  text-align: center;
}

.how_to_Sell .steps img {
  height: 385px;

  width: 100%;

  object-fit: contain;

  margin-bottom: 30px;
}

.how_to_Sell .steps h5 {
  font-size: 17px;

  line-height: 25px;
}

.how_to_Sell {
  padding-left: 60px;

  margin-bottom: 40px;
}

.aroww_btn i {
  font-size: 30px;

  color: var(--yellow);

  animation: left-right ease-in-out 2s;

  animation-iteration-count: infinite;

  position: relative;
}

@keyframes left-right {
  0% {
    left: 0px;
  }

  50% {
    left: 10px;
  }

  100% {
    left: 0px;
  }
}

.how_to_Sell h2 {
  font-size: 50px;

  font-weight: 700;

  margin-bottom: 40px;

  font-family: "Open Sans", sans-serif;

  text-align: center;
}

.how_to_Sell .steps p {
  color: #9b9b9b;
}

.cardExploreImg {
  height: 240px;
}

.cardExploreImg img {
  height: 100%;

  width: 100%;

  object-fit: cover;
}

.lanWidth ul {
  width: 75px !important;
}

.languageIcon span {
  font-size: 16px;
  padding-left: 3px;
}

.languageIcon {
  font-size: 17px;
  /* margin-right: -1px; */
}

.accordion-button {
  background-color: #d1cfc526 !important;
  border: unset !important;
}

/* mobile responsive */
@media (max-width: 767px) {
  section.termCondition h3 {
    font-size: 25px !important;
  }

  section.termCondition h2 {
    font-size: 30px !important;
  }

  ul.dropdown_menu.dropdown_menu-1 {
    position: absolute;
    left: 90px;
    top: 17px;
  }

  .contactSec .pe-0 {
    padding-left: unset !important;
  }

  .contactSec .ps-0 {
    padding-right: unset !important;
  }

  button.navbar-toggler {
    margin-right: 20px;
  }

  li.nav-item {
    text-align: left;
  }

  .navAnimation .dropdown {
    justify-content: start !important;
  }

  .navRight span {
    margin-bottom: 10px;
  }

  .video-container video {
    height: 100%;
    width: 100%;
    object-fit: inherit;
  }

  .video-container {
    height: 500px;
    object-fit: cover;
  }

  .contentVideo h1 {
    font-size: 35px;
  }

  .contentVideo {
    position: absolute;
    top: 200px;
  }

  button.prev,
  button.next {
    height: 35px;
    width: 35px;
  }

  .sliderWidthContent p {
    font-size: 25px;
    line-height: 1.2;
  }

  #about .experience {
    display: none !important;
  }

  h2 {
    font-size: 30px !important;
    line-height: 1.2 !important;
  }

  #about h4 {
    padding-top: 0px;
  }

  #about {
    margin: 50px 0;
  }

  .pr {
    padding-left: 0px !important;
  }

  .pl {
    padding-right: 0px !important;
  }

  #weDo p {
    padding-right: 45px;
  }

  .globalBtnActive.mt-3.mb-5 {
    display: none;
  }

  .pt80 {
    padding-top: 50px;
  }

  .pb80 {
    padding-bottom: 50px;
  }

  .weDo-content .mt-5 {
    margin-top: unset !important;
  }

  .how_to_Sell {
    padding-left: unset;
  }

  .download_app .col-md-5 img {
    height: 450px;
  }

  section.testimonialSec.pt80.pb80 .col-lg-4 {
    margin-bottom: 10px;
  }

  section#special {
    padding: 50px 0px;
  }

  .download_app_img img {
    margin-bottom: unset;
  }

  .download_app_img {
    margin-top: unset;
  }

  section.testimonialSec.pt80.pb80 .col-lg-4:last-child {
    margin-bottom: 0px;
  }

  .star {
    font-size: 25px;
  }

  .listCopy ul {
    padding-left: unset !important;
  }

  .listCopy {
    text-align: left;
  }

  .aroww_btn {
    display: none;
  }

  nav.navbar.navbar-expand-lg.saferNavbar .navbar-brand img {
    height: 45px;
  }

  .header.small img {
    height: 45px !important;
  }
}

/* tablet */

@media (min-width: 768px) and (max-width: 991px) {
  ul.dropdown_menu.dropdown_menu-1 {
    position: absolute;
    left: 90px;
    top: 17px;
  }

  .contactSec .pe-0 {
    padding-left: unset !important;
  }

  .contactSec .ps-0 {
    padding-right: unset !important;
  }

  h2 {
    font-size: 35px !important;
  }

  .weDo-content {
    padding: 50px 0px;
  }

  .weDo-content .mt-5 {
    margin-top: unset !important;
  }

  #weDo p {
    padding-right: 45px;
  }

  li.nav-item {
    text-align: left;
  }

  .navAnimation .dropdown {
    justify-content: start !important;
  }

  .navRight span {
    margin-bottom: 10px;
  }

  .navAnimation .dropdown {
    justify-content: start !important;
  }

  button.navbar-toggler {
    margin-right: 20px;
  }

  .contentVideo h1 {
    font-size: 50px;
  }

  .contentVideo {
    position: absolute;
    top: 185px;
  }

  #about .experience {
    left: -25px;
  }

  .aroww_btn {
    display: none;
  }
}

.globalBtnActive a {
  display: none !important;
}

/* laptop small */
@media (min-width: 992px) and (max-width: 1024px) {
  .aroww_btn {
    display: none;
  }
}

@media (min-width: 320px) and (max-width: 575px) {
  .aboutSec {
    background: none !important;
  }
}

/* forslider only */
@media (min-width: 992px) and (max-width: 1100px) {
  .contentVideo {
    position: absolute;
    top: 215px;
  }

  #weDo p {
    padding-right: 45px;
  }
}

@media (min-width: 300px) and (max-width: 375px) {
  .contentVideo {
    position: absolute;
    top: 175px;
  }
}

section.testimonialSec.pt80.pb80 .swiper-wrapper {
  height: unset;
}

.cardTesti {
  min-height: 350px;
  max-height: 350px;
}

.faqImgCol img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.faqImgCol {
  width: 600px;
  height: 80%;
  display: flex;
  align-items: center;
}