@font-face {
  font-family: "Poppins";
  /* Give your font the name 'Poppins' */
  src: url("assets/font/Poppins-Black.ttf") format("ttf"),
    /* Specify the file paths and formats */
    url("assets/font/Poppins-BlackItalic.ttf") format("ttf"),
    url("assets/font/Poppins-Bold.ttf") format("ttf"),
    url("assets/font/Poppins-BoldItalic.ttf") format("ttf"),
    url("assets/font/Poppins-ExtraBold.ttf") format("ttf"),
    url("assets/font/Poppins-ExtraBoldItalic.ttf") format("ttf"),
    url("assets/font/Poppins-ExtraLight.ttf") format("ttf"),
    url("assets/font/Poppins-ExtraLightItalic.ttf") format("ttf"),
    url("assets/font/Poppins-Italic.ttf") format("ttf"),
    url("assets/font/Poppins-Light.ttf") format("ttf"),
    url("assets/font/Poppins-LightItalic.ttf") format("ttf"),
    url("assets/font/Poppins-Medium.ttf") format("ttf"),
    url("assets/font/Poppins-MediumItalic.ttf") format("ttf"),
    url("assets/font/Poppins-Regular.ttf") format("ttf"),
    url("assets/font/Poppins-SemiBold.ttf") format("ttf"),
    url("assets/font/Poppins-SemiBoldItalic.ttf") format("ttf"),
    url("assets/font/Poppins-Thin.ttf") format("ttf"),
    url("assets/font/Poppins-ThinItalic.ttf") format("ttf");
  /* Add more src lines if you have additional font formats */
  font-weight: normal;
  /* Adjust as needed */
  font-style: normal;
  /* Adjust as needed */
}

:root {
  --white: #ffffff;
  --black: #000000;
  --payne-gray: #555b6e;
  --cambridge-blue: #89b0ae;
  --mint-green: #bee3db;
  --apricot: #ffd6ba;
  --puce: #c08497;
  --delft-blue: #23395b;
  --ucla-blue: #406e8e;
  --rich-black: #011627;

  --font-poppins: "Poppins", sans-serif;
}

body {
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
span,
div,
p,
strong,
article,
a,
label {
  font-family: "Poppins", sans-serif;
  font-style: normal;
}

p {
  font-style: normal;
  font-size: 17px;
  color: #161718;
  letter-spacing: 0.4px;
}

@media screen and (min-width: 1400px) {
  .container {
    max-width: 1600px !important;
  }
}

/* ---------------------------------------- button ------------------------------------- */

.button {
  display: inline-block;
  transition: all 0.2s ease-in;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #090909;
  padding: 0;
  border-radius: 0.5em;
  background: #e8e8e8;
  border: 1px solid #e8e8e8;
}

.button a {
  text-decoration: none;
  height: 100%;
  padding: 0.6em 1.2em 0.6em 1.2em;
  display: inline-block;
}

.button a span {
  display: inline-block;
  font-weight: 600;
  font-size: 18px;
  font-family: var(--font-poppins);
  color: var(--delft-blue);
}

.button a i {
  margin-left: 5px;
  font-size: 18px;
  color: var(--delft-blue);
}

.button:active {
  color: #666;
  box-shadow: inset 4px 4px 12px #c5c5c5, inset -4px -4px 12px #ffffff;
}

.button:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: block;
  transition: all 0.4s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.button:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background-color: #fbde00;
  border-radius: 50%;
  display: block;
  transition: all 0.4s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.button:hover {
  color: #fbde00;
  border: 1px solid #fbde00;
}

.button:hover a i {
  transform: rotate(360deg);
  transition: all 0.4s ease;
}

.button:hover:before {
  top: -35%;
  background-color: #fbde00;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.button:hover:after {
  top: -45%;
  background-color: #fbde00;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

/* ----------------------------------------- header ------------------------------------ */

.header {
  z-index: 9999;
  position: absolute;
  height: 5rem;
  width: 100%;
  transition: all 0.3s ease-in-out;
  background-color: transparent;
}

.navfix {
  position: sticky !important;
  top: 0 !important;
  left: 0;
  background-color: white !important;
  animation: 300ms ease-in-out fadeInDown;
  transition: all 0.3s ease-in-out;
}

.header .navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 0rem;
  padding-bottom: 0rem;
  max-width: 1600px;
  margin: 0 auto;
  position: initial;
  height: 100%;
}

.navbar-container {
  max-width: 100%;
  width: 100%;
  height: 100%;
  display: flex;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  max-width: 250px;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo img {
  width: 100%;
  height: 100%;
}

.main-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.nav {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
}

.nav .nav-dropdown {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
  position: relative;
  padding-left: 7px;
  padding-right: 7px;
}

.nav-target {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-links {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  color: var(--rich-black);
  letter-spacing: 0.5px;
  height: 100%;
  display: flex;
  align-items: center;
}

.navfix .nav-links {
  color: var(--white) !important;
}

.navfix .color-chnge-dropdown {
  color: var(--white) !important;
}

.navfix i {
  color: var(--white);
}

.nav .nav-dropdown-content {
  position: absolute;
  top: 100%;
  right: 0;
  transform: translate(0%, 0%);
  display: none;
  transition: opacity 0.2s linear, transform 0.2s linear;
}

.nav-dropdown-content.active {
  display: block;
}

/* --------- .hamburger menu icon --------- */

.hamburger-menu {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.navbar .icon {
  margin: 10px;
}

/* nav-icon-1 */
.nav-icon-1 {
  width: 30px;
  height: 30px;
  position: relative;
  transition: 0.1s;
  margin: 10px 10px;
  cursor: pointer;
  display: inline-block;
}

.nav-icon-1 span {
  width: 5px;
  height: 5px;
  display: block;
  border-radius: 50%;
  position: absolute;
}

.navfix .nav-icon-1 span {
  background-color: #fff;
}

.nav-icon-1 span {
  background-color: var(--rich-black);
}

.active-icon .nav-icon-1 span {
  background-color: var(--white);
}

.nav-icon-1:hover span {
  transform: scale(1.2);
  transition: 350ms cubic-bezier(0.8, 0.5, 0.2, 1.4);
}

.nav-icon-1 span:nth-child(1) {
  left: 0;
  top: 0;
}

.nav-icon-1 span:nth-child(2) {
  left: 12px;
  top: 0;
}

.nav-icon-1 span:nth-child(3) {
  right: 0;
  top: 0;
}

.nav-icon-1 span:nth-child(4) {
  left: 0;
  top: 12px;
}

.nav-icon-1 span:nth-child(5) {
  position: absolute;
  left: 12px;
  top: 12px;
}

.nav-icon-1 span:nth-child(6) {
  right: 0px;
  top: 12px;
}

.nav-icon-1 span:nth-child(7) {
  left: 0px;
  bottom: 0px;
}

.nav-icon-1 span:nth-child(8) {
  position: absolute;
  left: 12px;
  bottom: 0px;
}

.nav-icon-1 span:nth-child(9) {
  right: 0px;
  bottom: 0px;
}

.nav-icon-1.open {
  transform: rotate(180deg);
  cursor: pointer;
  transition: 0.2s cubic-bezier(0.8, 0.5, 0.2, 1.4);
}

.nav-icon-1.open span {
  border-radius: 50%;
  transition-delay: 200ms;
  transition: 0.5s cubic-bezier(0.8, 0.5, 0.2, 1.4);
}

.nav-icon-1.open span:nth-child(2) {
  left: 6px;
  top: 6px;
}

.nav-icon-1.open span:nth-child(4) {
  left: 6px;
  top: 18px;
}

.nav-icon-1.open span:nth-child(6) {
  right: 6px;
  top: 6px;
}

.nav-icon-1.open span:nth-child(8) {
  left: 18px;
  bottom: 6px;
}

@media screen and (max-width: 1200px) {
  .header {
    position: sticky !important;
    top: 0 !important;
    left: 0;
    background-color: transparent;
    animation: 300ms ease-in-out fadeInDown;
    transition: all 0.3s ease-in-out;
  }

  .header.navfix {
    background-color: var(--rich-black);
  }

  .main-menu {
    top: 0;
    position: absolute;
    text-align: start;
    background: var(--rich-black);
    overflow: hidden;
    display: none;
  }

  .main-menu.active {
    right: 0;
    width: 50%;
    height: 100vh;
    overflow-y: auto;
    display: block;
    background-color: var(--rich-black);
    box-shadow: 6px 6px 22px rgba(42, 31, 63, 0.1);
    top: 0;
    animation: mobileSlideOutUp;
    animation-duration: 0.5s;
  }

  .nav {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    margin-bottom: 20px;
    margin-top: 5rem;
    width: 100%;
    gap: 10px;
  }

  .nav .nav-dropdown {
    height: auto;
    line-height: 50px;
    justify-content: center;
    display: flex;
    padding-left: 0px;
    padding-right: 0px;
    width: 100%;
    flex-direction: column;
  }

  .nav-target {
    height: 100%;
    width: 100%;
    justify-content: space-between;
    padding: 0px 0px;
  }

  .navbar .button {
    margin: 15px 20px;
  }

  .nav-target i {
    font-size: 0.9em;
    transform: rotate(0deg);
    color: var(--white);
    transition: all 0.2s ease;
    padding-right: 10px;
  }

  .navfix .nav-target i {
    color: var(--white);
  }

  .nav-dropdown.open-dropdown .nav-dropdown-content {
    display: block;
    animation: dropSlideOutUp;
    animation-duration: 0.5s;
  }

  .nav-links {
    padding-left: 15px;
  }

  .nav-dropdown-box {
    padding: 15px;
  }

  .nav .nav-dropdown-content {
    position: relative;
    left: 0;
    width: 100%;
    padding: 0 !important;
    animation: dropSlideOutUp;
    animation-duration: 0.5s;
  }

  .nav .nav-dropdown-content {
    background: linear-gradient(to right, #152647 0%, #204153 100%);
    padding: 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    animation: dropSlideOutUp;
    animation-duration: 0.5s;
  }

  .nav-dropdown-flex {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
  }

  .nav-lg-bg {
    /* background: #9999995c; */
    background: #ffffff14;
    border-radius: 8px;
  }

  .nav-lg-header {
    /* margin-bottom: 20px; */
    padding: 20px;
  }

  .nav-drop-title {
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    color: var(--white);
    letter-spacing: 1.5px;
    line-height: 32px;
  }

  .nav-drop-description {
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    position: relative;
    color: #f3f3f3;
    letter-spacing: 1px;
    line-height: 22px;
  }

  .drop-flex-box {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: start;
    /* margin-top: 15px; */
    padding: 8px;
  }

  .w-drop-100 .drop-flex-box {
    padding: 0px;
  }

  .drop-box-img {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    justify-content: center;
    height: 50px;
    width: 50px;
  }

  .drop-box-img img {
    width: 40px;
    height: 40px;
  }

  .drop-box-content {
    width: 48%;
    min-height: 180px;
    margin: 3px;
  }

  .nav-dropdown-content-sm .drop-box-content {
    width: 100%;
  }

  .drop-box-content-flex {
    padding: 12px 12px;
    display: flex;
    flex-direction: column;
    border-radius: 6px;
  }

  .drop-box-title {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    color: var(--white);
    letter-spacing: 1px;
    line-height: 20px;
    margin-bottom: 8px;
  }

  .drop-box-discription {
    text-decoration: none;
    font-size: 10px;
    font-weight: 400;
    position: relative;
    color: var(--white);
    letter-spacing: 1px;
    line-height: 18px;
  }

  .drop-box-content-flex a {
    text-decoration: none;
    height: 100%;
    z-index: 5;
  }

  .nav-flex-lottie {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
  }

  .nav-flex-lottie .drop-box-title,
  .nav-flex-lottie .drop-box-discription {
    text-align: center;
  }

  .drop-hover:hover {
    background: rgb(203 203 203 / 22%);
    border-radius: 10px;
    transition: all 0.3s ease;
  }

  .drop-hover:hover .drop-box-img {
    height: 50px;
    width: 50px;
    background-color: rgb(0 1 8 / 42%);
    border-radius: 50%;
    transition: all 0.3s ease;
  }

  .drop-hover:hover .drop-box-img img {
    width: 30px;
    height: 30px;
    transition: all 0.3s ease;
  }

  .nav-dropdown-content-sm .drop-box-content {
    margin: 5px;
    min-height: auto;
  }

  .mobile-view-logo {
    width: 100%;
    height: 5rem;
    display: flex;
    align-items: center;
    position: fixed;
    z-index: 1000;
    background-color: var(--rich-black);
  }

  .navfix .mobile-view-logo {
    top: 0;
  }

  .mobile-logo-top {
    width: 200px;
    margin-left: 12px;
  }

  .mobile-logo-top a {
    width: 100%;
    height: 100%;
  }

  .mobile-logo-top a img {
    width: 100%;
  }

  .nav-links {
    color: var(--white);
  }

  .nav-dropdown.open-dropdown .nav-links {
    color: #bdbdbd;
  }

  .nav-dropdown.open-dropdown .nav-target i {
    transform: rotate(180deg);
    margin-right: 10px;
  }

  .header.navfix .nav-icon-1 span {
    background-color: var(--white);
  }

  .header .nav-icon-1 span {
    background-color: var(--rich-black);
  }

  .header .nav-icon-1.open span {
    background-color: var(--white);
  }
}

@media screen and (max-width: 768px) {
  .main-menu.active {
    width: 100%;
  }
}

@media screen and (max-width: 1600px) {
  .header .navbar {
    padding: 0 10px;
  }
}

@media screen and (min-width: 1650px) {
  .nav-dropdown-content-xl {
    width: 1140px;
  }

  .nav-dropdown-content-lg {
    width: 1000px;
  }

  .nav-dropdown-content-md {
    width: 800px;
  }

  .nav-dropdown-content-sm {
    width: 800px;
  }
}

@media screen and (min-width: 1201px) {
  .main-menu .nav .nav-dropdown:hover>.nav-dropdown-content {
    display: block;
    animation: dropSlideOutUp;
    animation-duration: 0.5s;
  }

  .hamburger-menu {
    display: none;
  }

  .nav-dropdown:hover .nav-links {
    color: #a7a7a7;
  }

  .nav-dropdown:hover i {
    color: #a7a7a7;
  }

  /* ------------ dropdown menu design ----------- */

  .nav-dropdown-content-xl {
    width: 1140px;
  }

  .nav-dropdown-content-lg {
    width: 1000px;
  }

  .nav-dropdown-content-md {
    width: 800px;
  }

  .nav-dropdown-content-sm {
    width: 800px;
  }

  .nav-dropdown-content {
    background: linear-gradient(to right, #152647 0%, #204153 100%);
    padding: 20px;
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
    border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
  }

  .navfix .nav-dropdown-content {
    border-top-left-radius: 0px !important;
    border-top-right-radius: 0px !important;
    border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
  }

  .nav-dropdown-flex {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
  }

  .w-drop-80 {
    width: 80%;
  }

  .w-drop-20 {
    width: 20%;
  }

  .w-drop-85 {
    width: 85%;
  }

  .w-drop-15 {
    width: 15%;
  }

  .w-drop-100 {
    width: 100%;
  }

  .nav-lg-bg {
    /* background: #9999995c; */
    background: #ffffff14;
    border-radius: 8px;
  }

  .nav-lg-header {
    /* margin-bottom: 20px; */
    padding: 20px;
  }

  .nav-drop-title {
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    color: var(--white);
    letter-spacing: 1.5px;
  }

  .nav-drop-description {
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    position: relative;
    color: #f3f3f3;
    letter-spacing: 1px;
  }

  .drop-flex-box {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: start;
    /* margin-top: 15px; */
    padding: 20px;
  }

  .drop-flex-box-last {
    height: 100%;
  }

  .w-drop-100 .drop-flex-box {
    padding: 0px;
  }

  .drop-box-img {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    justify-content: center;
    height: 50px;
    width: 50px;
  }

  .drop-box-img img {
    width: 40px;
    height: 40px;
  }

  .drop-box-content {
    width: 19%;
    min-height: 175px;
    margin: 3px;
    height: 100%;
  }

  .nav-dropdown-content-xl .drop-box-content {
    width: 19%;
  }

  .nav-dropdown-content-lg .drop-box-content {
    width: 24%;
  }

  .nav-dropdown-content-md .drop-box-content {
    width: 32.54%;
    height: 190px;
  }

  .nav-dropdown-content-sm .drop-box-content {
    width: 32.54%;
    height: 190px;
  }

  .drop-box-content-flex {
    padding: 12px 12px;
    display: flex;
    flex-direction: column;
    border-radius: 6px;
  }

  .nav-dropdown-content-md .drop-box-content-flex {
    height: 100%;
  }

  .drop-box-title {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    color: var(--white);
    letter-spacing: 1px;
    line-height: 20px;
    margin-bottom: 8px;
    width: 150px;
  }

  .nav-dropdown-content-md .drop-box-title {
    width: 100%;
  }

  .drop-box-discription {
    text-decoration: none;
    font-size: 10px;
    font-weight: 400;
    position: relative;
    color: var(--white);
    letter-spacing: 1px;
    line-height: 18px;
    width: 160px;
  }

  .nav-dropdown-content-sm .drop-box-discription {
    width: 100%;
  }

  .nav-dropdown-content-md .drop-box-discription {
    width: 100%;
  }

  .drop-box-content-flex a {
    text-decoration: none;
    height: 100%;
    z-index: 5;
  }

  .nav-flex-lottie {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
  }

  .nav-flex-lottie .drop-box-title,
  .nav-flex-lottie .drop-box-discription {
    text-align: center;
  }

  .drop-hover:hover {
    background: rgb(203 203 203 / 22%);
    border-radius: 10px;
    transition: all 0.3s ease;
  }

  .drop-hover:hover .drop-box-img {
    height: 50px;
    width: 50px;
    background-color: rgb(0 1 8 / 42%);
    border-radius: 50%;
    transition: all 0.3s ease;
  }

  .drop-hover:hover .drop-box-img img {
    width: 30px;
    height: 30px;
    transition: all 0.3s ease;
  }

  .nav-target i {
    font-size: 0.9em;
    transform: rotate(0deg);
    margin-left: 5px;
    color: var(--rich-black);
    transition: all 0.2s ease;
  }

  .navfix .nav-target i {
    color: var(--white);
  }

  .main-menu .nav .nav-dropdown:hover>.nav-target i {
    transform: rotate(180deg);
  }
}

@media screen and (max-width: 1650px) {
  .nav-dropdown-content-xl {
    width: 860px;
  }

  .nav-dropdown-content-lg {
    width: 860px;
  }

  .nav-dropdown-content-md {
    width: 800px;
  }

  .nav-dropdown-content-sm {
    width: 800px;
  }

  .nav-dropdown-content-lg .drop-box-content {
    width: 32%;
  }

  .w-drop-85 {
    width: 75%;
  }

  .w-drop-15 {
    width: 25%;
  }
}

@media screen and (max-width: 1500px) and (min-width: 1200px) {
  .nav-dropdown-content-lg {
    width: 580px;
  }

  .nav-dropdown-content {
    padding: 5px;
  }

  .nav-dropdown-flex {
    flex-direction: column;
  }

  .w-drop-80 {
    width: 100%;
  }

  .w-drop-20 {
    width: 100%;
  }

  .nav-lg-header,
  .drop-flex-box {
    padding: 10px;
  }

  .drop-box-img img {
    width: 25px;
    height: 25px;
  }

  .drop-box-img {
    height: 35px;
    width: 35px;
    margin-bottom: 4px;
  }

  .drop-hover:hover .drop-box-img {
    height: 35px;
    width: 35px;
  }

  .drop-hover:hover .drop-box-img img {
    width: 20px;
    height: 20px;
  }

  .drop-box-title {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 4px;
    width: 100%;
  }

  .drop-box-discription {
    font-size: 9px;
    width: 100%;
  }

  .drop-box-content {
    min-height: 150px;
  }

  .nav-flex-lottie {
    display: none;
  }

  .nav-dropdown-content-sm .drop-box-content {
    min-height: 100%;
  }

  .nav-dropdown-content-md .drop-box-content {
    min-height: 100%;
  }
}

@media screen and (max-width: 1650px) and (min-width: 1500px) {
  .nav-drop-mediaq {
    width: 980px;
  }

  .nav-drop-mediaq .drop-box-content {
    width: 24%;
  }
}

@media screen and (max-width: 1500px) and (min-width: 1200px) {
  .nav-drop-mediaq {
    width: 715px;
  }

  .nav-drop-mediaq .drop-box-content {
    width: 24%;
  }
}

@media screen and (max-width: 992px) {
  .nav-dropdown-content-lg .drop-box-content {
    width: 48%;
  }

  .drop-box-content {
    width: 48%;
    height: 196px;
  }

  .nav-dropdown-content-md .drop-box-content-flex {
    height: 100%;
  }

  .nav-dropdown-content-sm .drop-box-content {
    min-height: 100%;
    height: 100%;
  }
}

@media screen and (max-width: 500px) {
  .nav-dropdown-content-lg .drop-box-content {
    width: 100%;
  }

  .drop-box-content {
    width: 100%;
    height: auto;
    min-height: auto;
  }
}

.drop-bg-about {
  /* background: url(../img/header/bg/about.svg); */
  background: #ffffff14;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  height: 100%;
}

.drop-bg-contact {
  /* background: url(../img/header/bg/about.svg); */
  background: #ffffff14;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  height: 100%;
}

/* .drop-bg-about::before {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    content: "";
    background: linear-gradient(to bottom, #ffffff00 0%, #2828283d 0%);
    z-index: 1;
    pointer-events: none;
    transition: all 0.3s ease;
} */

/* .drop-bg-about:hover::before {
    opacity: 0.1;
    transition: all 0.3s ease;
} */

/* .drop-bg-contact::before {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    content: "";
    background: linear-gradient(to bottom, #ffffff00 0%, #2828283d 0%);
    z-index: 1;
    pointer-events: none;
    transition: all 0.3s ease;
} */

/* .drop-bg-contact:hover::before {
    opacity: 0.1;
    transition: all 0.3s ease;
} */

/* =========================================== landing page ============================================ */

.hero-banner-bg {
  background: url(../img/index/bg/banner.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-banner-section {
  min-height: calc(100vh - 5rem);
  display: flex;
  align-items: center;
}

.hero-content {
  padding: 10px;
}

.hero-title {
  margin-bottom: 30px;
}

.hero-title h1 {
  font-size: 60px;
  font-weight: 600;
  font-style: normal;
  color: var(--rich-black);
  line-height: 75px;
  margin-top: 81px !important;
}

.hero-description h5 {
  font-size: 25px;
  font-weight: 500;
  font-style: normal;
  color: var(--rich-black);
  line-height: 40px;
}

/* ------------------------------- grid logo container ---------------------------  */

.grid-logo-section {
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: #fffaf7; */
}

.grid-logo {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  /* You can adjust the number of columns */
  gap: 10px;
  /* Adjust the gap between grid items as needed */
  place-items: center;
}

.grid-item {
  text-align: center;
  /* Center the content within each grid item */
  height: 80px;
  width: 80px;
}

.grid-item img {
  max-width: 100%;
  /* Ensure images fit within their containers */
}

/* ===================================== travel content section =============================== */

.center-content h2 {
  font-size: 40px;
  font-weight: 600;
  font-style: normal;
  color: var(--rich-black);
  line-height: 60px;
  text-align: center;
}

.center-content p {
  text-align: center;
}

/* ===================================== type section =============================== */

.type-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fffaf7;
}

.tyep-title h2 {
  font-size: 40px;
  font-weight: 600;
  font-style: normal;
  color: var(--rich-black);
  line-height: 60px;
  text-align: center;
}

.grid-type {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  place-items: center;
}

.type-item {
  height: 300px;
  width: 100%;
  border-radius: 20px;
  position: relative;
  border-radius: 20px;
}

.type-item {
  perspective: 1000px;
}

.card-flip {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
  border-radius: 20px;
}

.type-item:hover .card-flip {
  transform: rotateY(180deg);
}

.card-side {
  width: 100%;
  height: 100%;
  position: absolute;
  backface-visibility: hidden;
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0px 0px 41px -4px rgba(0, 0, 0, 0.1);
}

.card-front {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.card-back {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotateY(180deg);
  flex-direction: column;
  gap: 22px;
}

.card-side h3 {
  font-size: 25px;
  font-weight: 600;
  font-style: normal;
  color: var(--rich-black);
  line-height: 38px;
  text-align: center;
  margin-bottom: 0;
}

.card-back h3 {
  color: var(--white);
}

.card-front img {
  height: 90px;
  width: 90px;
  margin-bottom: 30px;
}

.card-back img {
  height: auto;
  width: 50%;
  margin-bottom: 0px;
}

/* -------------------------------- travel intelligence solution ------------------------------------- */

.intelligence-solution-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-img {
  padding: 20px;
}

.solution-img img {
  width: 100%;
}

.w-md-45 {
  width: 45%;
}

.solution-data {
  padding: 50px;
}

.solution-data h2 {
  font-size: 40px;
  font-weight: 600;
  font-style: normal;
  color: var(--rich-black);
  line-height: 54px;
}

.solution-content {
  display: none;
}

.dotted-button {
  background: #a6b3c7;
  height: auto;
  width: auto;
  border-radius: 10px;
  outline: none;
  text-decoration: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 15px 5px;
  margin-bottom: 12px;
  text-decoration: none !important;
  writing-mode: vertical-rl;
  outline: none !important;
  border: none !important;
  cursor: pointer;
}

.dotted-button img {
  height: 40px;
  width: 40px;
  margin-bottom: 12px;
}

.dotted-button span {
  writing-mode: vertical-rl;
  text-decoration: none !important;
  outline: none !important;
  border: none !important;
}

.dotted-button.active {
  background: var(--delft-blue);
}

.dotted-button:hover {
  text-decoration: underline;
}

.intelligence-solution {
  position: relative;
}

.solution-btn {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50px;
  transform: translate(0px, -50px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* --------------------------------------------- travel intelligence process -------------------------- */

.travel-intelligence {
  background: url(../img/index/bg-shape-01.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.grid-intelligence-title h2 {
  font-size: 40px;
  font-weight: 600;
  font-style: normal;
  color: var(--rich-black);
  line-height: 54px;
  text-align: center;
  display: block;
}

.grid-intelligence {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  place-items: center;
}

.grid-intelligence-items {
  border-radius: 20px;
  height: 400px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  width: 100%;
}

.items-process-bg-1 {
  background: url(../img/index/travel-intelligence-process/Definition.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.items-process-bg-2 {
  background: url(../img/index/travel-intelligence-process/Crawling.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.items-process-bg-3 {
  background: url(../img/index/travel-intelligence-process/Preparation.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.items-process-bg-4 {
  background: url(../img/index/travel-intelligence-process/Integration.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.items-process-bg-5 {
  background: url(../img/index/travel-intelligence-process/Analysis.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.grid-intelligence-box {
  border-radius: 10px;
  background-color: #fff;
  padding: 20px;
  position: relative;
  width: 100%;
  animation: dropSlideOutUp;
  animation-duration: 0.5s;
  transition: all 0.5s ease-in;
}

.grid-intelligence-line {
  width: 50px;
  height: 4px;
  border-radius: 20px;
  background-color: var(--rich-black);
  margin-bottom: 30px;
}

.grid-intelligence-box a {
  text-decoration: none;
}

.grid-intelligence-box h4 {
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  color: var(--rich-black);
  line-height: 22px;
  display: block;
}

.grid-intelligence-box p {
  margin-bottom: 0;
  font-size: 16px;
  color: var(--payne-gray);
  display: none;
}

.intelligence-arrow {
  height: 35px;
  width: 35px;
  background-color: var(--rich-black);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: 18px;
  right: 18px;
}

.intelligence-arrow i {
  font-size: 18px;
  color: #fff;
  transform: rotate(-30deg);
}

.grid-intelligence-items:hover .grid-intelligence-box .grid-intelligence-line {
  background-color: #fbde00;
  transition: all 0.3s ease;
}

.grid-intelligence-items:hover .grid-intelligence-box p {
  display: block;
  transition: all 0.3s ease;
  animation: dropSlideOutUp;
  animation-duration: 0.5s;
}

.grid-intelligence-items:hover .grid-intelligence-box .intelligence-arrow {
  background-color: #fbde00;
}

/* --------------------------------- content wrapper ------------------------------ */

.content-wrapper a {
  text-decoration: none;
  color: var(--delft-blue);
  font-size: 18px;
  font-weight: 600;
}

.content-wrapper i {
  margin-left: 6px;
}

.content-wrapper a:hover {
  color: var(--delft-blue);
}

.content-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-image img {
  border-radius: 8px;
}

/* .bg-wrapper-1 {
    background: url(../img/index/bg-red.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    min-height: 500px;
} */

/* .bg-wrapper-2 {
    background: url(../img/index/bg-green.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    min-height: 500px;
} */

/* .bg-wrapper-3 {
    background: url(../img/index/bg-pink.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    min-height: 500px;
} */

/* .bg-wrapper-1 img {
    box-shadow: 0 18px 29px #ffe7eb;
} */

/* .bg-wrapper-2 img {
    box-shadow: 0 18px 29px #e7ffed;
} */

/* .bg-wrapper-3 img {
    box-shadow: 0 18px 29px #efeae1;
} */

/* ---------------------------------------------- use cases ----------------------------------------------- */

.section-title {
  text-align: center;
  display: block;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 600;
  font-style: normal;
  color: var(--rich-black);
  line-height: 54px;
}

.solution-section .solution-cards {
  padding: 30px;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: var(--bg-white);
  transition: 0.4s all;
  margin-top: 20px;
  background: rgb(247 249 253);
  box-shadow: inset 0px 10px 24px 0px rgba(0, 0, 0, 0.1);
}

/* .solution-section .solution-cards.scard1 {
    background: rgb(255, 240, 244);
    background: linear-gradient(54deg, rgba(255, 240, 244, 1) 0%, rgba(246, 244, 255, 1) 100%);
}

.solution-section .solution-cards.scard2 {
    background: rgb(209, 255, 241);
    background: linear-gradient(54deg, rgba(209, 255, 241, 1) 0%, rgba(246, 244, 255, 1) 100%);
}

.solution-section .solution-cards.scard3 {
    background: rgb(255, 242, 219);
    background: linear-gradient(54deg, rgba(255, 242, 219, 1) 0%, rgba(246, 244, 255, 1) 100%);
}

.solution-section .solution-cards.scard4 {
    background: linear-gradient(54deg, rgb(209 229 255 / 81%) 0%, rgba(246, 244, 255, 1) 100%);
}

.solution-section .solution-cards.scard5 {
    background: linear-gradient(54deg, rgb(255 209 243 / 61%) 0%, rgb(255 244 244) 100%);
}

.solution-section .solution-cards.scard6 {
    background: linear-gradient(54deg, rgb(209 252 255 / 61%) 0%, rgb(255 244 251) 100%);
} */

.solution-section .solution-cards .icon {
  width: 61px;
}

.solution-section .solution-cards .icon img {
  max-width: 100%;
}

.solution-section .solution-cards .text {
  width: calc(100% - 75px);
  padding-top: 5px;
}

.solution-section .solution-cards h3 {
  margin-bottom: 10px;
  transition: 0.4s all;
  font-size: 23px;
  font-weight: 600;
  font-style: normal;
  color: var(--rich-black);
  line-height: 32px;
}

.solution-section .solution-cards .text p {
  margin-bottom: 0;
}

/* ----------------------------------------------- feature ---------------------------------------------- */

.feature .container .advance-feature {
  background-color: #011627;
  border-radius: 30px;
  padding: 100px;
  position: relative;
  z-index: 99;
  overflow: hidden;
}

.feature .container .advance-feature::before {
  content: "";
  background: url(../img/index/feature-bg-top.png);
  background-repeat: no-repeat;
  width: 445px;
  height: 326px;
  background-size: contain;
  position: absolute;
  left: 0;
  top: -150px;
}

.feature .container .advance-feature::after {
  content: "";
  background: url(../img/index/feature-bg-2.png);
  background-repeat: no-repeat;
  width: 825px;
  height: 570px;
  background-size: contain;
  position: absolute;
  right: 0;
  bottom: -10px;
}

.section-titles h2 {
  font-size: 40px;
  font-weight: 600;
  font-style: normal;
  color: var(--white);
  line-height: 54px;
}

.section-titles p {
  color: var(--white);
}

.feature-block {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1000 !important;
  height: 130px;
}

.feature-block .icon {
  width: 60px;
}

.feature-block .icon img {
  max-width: 100%;
}

.feature-block .text-info {
  width: calc(100% - 75px);
}

.text-info h3 {
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
  color: #275270;
  margin-bottom: 0;
  line-height: 28px;
}

.section-titles {
  text-align: center;
  z-index: 99;
  position: relative;
}

/* -------------------------------------- testimonial --------------------------------------- */

.new-testimonial-anime-new-header-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
}

.testimonial-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: #333;
}

.testimonial-title::after {
  content: "";
  display: block;
  width: 116px;
  height: 6px;
  background-color: #e31837;
  margin: 15px auto 0;
  border-radius: 18px;
}

.new-testimonial-anime-new-header-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonial-content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-image-container {
  flex: 0 0 300px;
  height: 300px;
  border-radius: 4px;
  overflow: hidden;
}

.testimonial-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-text-content {
  flex: 1;
  position: relative;
  padding: 20px 0;
}

.quote-mark {
  position: absolute;
  top: -6px;
  left: 80px;
  font-size: 60px;
  color: #e31837;
  font-family: Arial, sans-serif;
  line-height: 1;
}

.new-testimonial-anime-new-header-quote {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
  font-weight: 600;
  font-family: inherit;
}

.testimonial-author-info {
  margin-top: 30px;
}

.new-testimonial-anime-new-header-author {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.new-testimonial-anime-new-header-position {
  font-size: 1rem;
  color: #666;
}

.new-testimonial-anime-new-header-arrow {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.3s ease;
}

.new-testimonial-anime-new-header-prev {
  left: 20px;
}

.new-testimonial-anime-new-header-next {
  right: 20px;
}

.new-testimonial-anime-new-header-arrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #666;
  border-right: 2px solid #666;
  display: block;
}

.new-testimonial-anime-new-header-prev::before {
  transform: rotate(-135deg);
  margin-left: 5px;
}

.new-testimonial-anime-new-header-next::before {
  transform: rotate(45deg);
  margin-right: 5px;
}

.new-testimonial-anime-new-header-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.new-testimonial-anime-new-header-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.3s ease;
}

.new-testimonial-anime-new-header-dot.active {
  background: #e31837;
}

.new-testimonial-anime-new-header-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.new-testimonial-anime-new-header-slide.active {
  display: block;
  opacity: 1;
}

@media (max-width: 992px) {
  .testimonial-content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-image-container {
    flex: 0 0 200px;
    height: 200px;
  }
}

/* ---------------------------------------------- counter section ---------------------------------------------------- */

.counter-section {
  background-image: url(../img/index/counter-bg.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
}

.counter-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(2, 0, 36);
  background: linear-gradient(90deg,
      rgba(2, 0, 36, 0.85) 0%,
      rgba(9, 9, 121, 0.78) 35%,
      rgba(0, 212, 255, 0.86) 100%);
  opacity: 1;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  place-items: center;
}

.counter-flex {
  padding: 25px;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #71717169;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
}

.counter-grid-container {
  z-index: 5;
  display: block;
  position: relative;
  padding: 30px 0;
}

.counter-img {
  width: 50px;
  height: 50px;
}

.counter-img img {
  width: 100%;
}

.counter-data {
  margin-left: 20px;
}

.count-colum {
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter {
  color: var(--white);
  text-align: center;
  margin-bottom: 5px;
  font-size: 22px;
  font-weight: 600;
  font-style: normal;
  display: inline-block;
}

.count-colum span {
  color: var(--white);
  text-align: center;
  margin-bottom: 5px;
  font-size: 22px;
  font-weight: 600;
  font-style: normal;
  display: inline-block;
}

.counter-data h3 {
  color: var(--white);
  text-align: center;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 1px;
}

/* --------------------------------------------- footer ----------------------------------------------- */

.footer {
  background: #121212;
}

.footer-content {
  padding: 10px;
}

.footer-horizonatal-line {
  color: white !important;
}

.last-footer {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 14px !important;
}

.copyscape-travel {
  width: 90px !important;
}

.dmca-travel {
  width: 125px !important;
  padding-inline: 15px;
}

.footer-last-content p {
  color: white !important;
}

.footer-logo {
  max-width: 250px;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.footer-logo img {
  width: 100%;
}

.footer-address i {
  color: white;
  margin-right: 10px;
}

.footer-address address {
  display: block;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 28px;
  text-align: start;
  margin-bottom: 15px;
}

.footer-address a {
  display: block;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 28px;
  text-align: start;
  margin-bottom: 15px;
  text-decoration: none;
}

.footer-flex {
  display: flex;
}

.footer-flex i {
  transform: translateY(5px);
}

.footer-address address:hover,
.footer-address a:hover,
.footer-links a:hover {
  color: #adadad;
  transition: all 0.3s ease;
}

.footer-title {
  color: var(--white);
  text-align: start;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.5px;
}

.footer-links a {
  display: block;
  font-size: 13px;
  font-weight: 400;
  font-style: normal;
  color: var(--white);
  letter-spacing: 0.8px;
  line-height: 24px;
  text-align: start;
  margin-bottom: 10px;
  text-decoration: none;
}

.copyright {
  display: block;
}

.copyright strong {
  font-size: 16px;
}

.copyright p {
  text-align: center;
  color: #fff;
}

/* ----------------------------------- new travel Intelligence solution -------------------------------------------------  */

.new-travel-intelligence-section {
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.new-intelligence-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: start;
}

.new-intelligence-container .ui {
  width: 60%;
  position: relative;
}

.new-intelligence-container .ui_inner {
  height: 480px;
  background-image: -webkit-linear-gradient(45deg, #fff 0%, #f3f3f3 100%);
  padding: 40px;
  box-shadow: inset 0px 0px 100px -56px rgba(0, 0, 0, 0.1);
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.new-intelligence-container .ui_inner__selection label .s,
.new-intelligence-container .ui_inner__selection label .l {
  background: #011627c7;
  position: absolute;
  right: -130px;
  cursor: pointer;
  width: 130px;
  color: white;
  padding: 20px;
  font-size: 14px;
  z-index: 4;
  top: 0;
  text-align: center;
  transition: all 0.2s;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.5px;
}

.new-intelligence-container .ui_inner__selection label .s:hover,
.new-intelligence-container .ui_inner__selection label .l:hover {
  background: #011627c7;
  padding: 20px 20px 20px 30px;
}

.new-intelligence-container .ui_inner__selection label .s,
.new-intelligence-container .ui_inner__selection label .l {
  border-radius: 255px 15px 205px 35px/35px 225px 35px 255px;
}

.new-intelligence-container .ui_inner__selection label .l {
  top: 0px;
  border-radius: 265px 35px 185px 14px/8px 235px 12px 255px;
  width: 200px;
  right: -192px;
  box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.06) inset;
}

.new-intelligence-container .ui_inner__selection label .l:before {
  content: "";
  display: block;
  background: #f1f1f1;
  height: 100px;
  width: 10px;
  position: absolute;
  left: -3px;
  top: 0px;
}

.new-intelligence-container .ui_inner__selection label .s {
  top: 63px;
  border-radius: 195px 35px 155px 3px/19px 265px 25px 235px;
  width: 200px;
  right: -196px;
}

.new-intelligence-container .ui_inner__selection label .s:before {
  content: "";
  display: block;
  background: #f1f1f1;
  height: 100px;
  width: 10px;
  position: absolute;
  left: -6px;
  top: 0px;
}

.new-intelligence-container .ui_inner__selection input[type="radio"] {
  display: none;
}

.new-intelligence-container .ui_inner__selection input[type="radio"]:checked+label .selected {
  background: var(--rich-black) !important;
}

.new-intelligence-container .ui_inner__selection input[type="radio"]:checked+label .ui_inner__slider .slide_inner__left {
  opacity: 1;
  left: -100px;
  transition: all 0.5s 0.35s cubic-bezier(0.175, 1.605, 0.455, 0.92);
}

.new-intelligence-container .ui_inner__selection input[type="radio"]:checked+label .ui_inner__slider .slide_inner__right h2 {
  opacity: 1;
  left: 0px;
  transition: all 0.5s 0.4s cubic-bezier(0.175, 1.605, 0.455, 0.92);
}

.new-intelligence-container .ui_inner__selection input[type="radio"]:checked+label .ui_inner__slider {
  pointer-events: all;
}

.new-intelligence-container .ui_inner__selection input[type="radio"]:checked+label .ui_inner__slider .slide_inner__right p {
  opacity: 1;
  left: 0px;
  transition: all 0.5s 0.5s cubic-bezier(0.175, 1.605, 0.455, 0.92);
}

.new-intelligence-container .ui_inner .ui_inner__slider {
  pointer-events: none;
}

.new-intelligence-container .ui_inner .ui_inner__slider .slide_inner {
  position: absolute;
  top: 54px;
  text-align: right;
}

.new-intelligence-container .ui_inner .ui_inner__slider .slide_inner__left {
  display: inline-block;
  width: 30%;
  opacity: 0;
  position: absolute;
  left: -220px;
}

.new-intelligence-container .ui_inner .ui_inner__slider .slide_inner__left img {
  width: 100%;
  z-index: 8;
  position: Relative;
  filter: drop-shadow(-4px 6px 6px rgba(0, 0, 0, 0.2));
}

.new-intelligence-container .ui_inner .ui_inner__slider .slide_inner__right {
  display: inline-block;
  width: 75%;
  padding: 0px 40px 0px 0px;
  text-align: left;
  position: relative;
  z-index: 1;
}

.new-intelligence-container .ui_inner .ui_inner__slider .slide_inner__right h2 {
  margin: 0px 0px 20px 0px;
  color: var(--delft-blue);
  font-size: 32px;
  position: relative;
  opacity: 0;
  left: -90px;
  transition: all 0.5s 0.2s cubic-bezier(0.175, 1.605, 0.455, 0.92);
}

.new-intelligence-container .ui_inner .ui_inner__slider .slide_inner__right p {
  margin: 0;
  line-height: 26px;
  font-style: normal;
  font-size: 17px;
  color: #444444;
  letter-spacing: 0.5px;
  position: relative;
  opacity: 0;
  left: -90px;
  transition: all 0.5s 0.3s cubic-bezier(0.175, 1.605, 0.455, 0.92);
}

.section-heading h2 {
  font-size: 35px;
  font-weight: 700;
  font-style: normal;
  color: var(--rich-black);
  line-height: 54px;
  text-align: center;
  display: block;
}

/* --------------------------------------------- contact us page ---------------------------------------- */

.contact-page-section {
  padding: 100px 0;
}

form {
  display: block;
}

.travel-form form .form-group {
  margin-bottom: 35px;
  position: relative;
}

.travel-form form .form-group .form-control {
  height: 55px;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 16px;
  color: #546274;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}

label {
  display: inline-block;
}

.travel-form form .form-group label {
  position: absolute;
  top: 15px;
  margin-bottom: 0;
  left: 0;
  z-index: 2;
  font-size: 16px;
  font-weight: 400;
  color: #546274;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: text;
}

.travel-form form .form-group .form-control:focus+label {
  top: -8px;
  font-size: 15px;
  color: #1e85ff;
}

.travel-form form .form-group .line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: #1e85ff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.travel-form form .form-group .form-control:focus~.line {
  width: 100%;
}

.travel-form form .form-group textarea {
  padding-top: 15px !important;
}

.submit-btn {
  border-radius: 5px;
  border: 0;
  background: var(--rich-black);
  color: #ffffff;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-top: 15px;
  padding: 15px 30px;
  letter-spacing: 0.5px;
  border: 2px solid var(--rich-black);
  transition: 0.3s ease;
}

.submit-btn:hover {
  background: var(--white);
  color: var(--rich-black);
}

/* ------------- */

.contact-details {
  position: relative;
}

.contact-details:before {
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
  content: "";
}

.contact-info {
  margin-bottom: 40px;
}

.contact-info span {
  position: relative;
  z-index: 1;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #546274;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info span:before {
  position: absolute;
  top: 0;
  left: -15px;
  right: -15px;
  bottom: 0;
  background: #ffffff;
  content: "";
  z-index: -1;
}

.contact-info a {
  font-size: 18px;
  font-weight: 500;
  color: var(--rich-black);
  font-family: "Poppins", sans-serif;
  margin-top: 10px;
  line-height: 1.85;
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-info a i {
  margin-right: 8px;
}

.contact-info ul {
  padding: 0;
  margin: 0;
  margin-top: 10px;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.fa-brands {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.social-icon li {
  display: flex;
  align-items: center;
  justify-content: start;
  height: 50px;
  width: 50px;
}

.social-icon ul li a {
  font-size: 20px;
  color: var(--rich-black);
  margin-top: 0;
}

.contact-info a:hover {
  color: #75787a;
}

.search-detail {
  border: 2px solid var(--rich-black) !important;
  border-radius: 10px !important;
  padding: 10px 35px !important;
  font-size: 20px !important;
}

/* ------------------------------------- new contact page ---------------------------------------- */

.contactus-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.touch-wrapp {
  padding: 10px;
}

.touch-content {
  margin-top: 0px;
  padding: 10px 30px;
}

.touch-content img {
  width: 100%;
}

.touch-title {
  font-size: 40px;
  font-weight: 600;
  font-style: normal;
  color: var(--rich-black);
  line-height: 54px;
}

.touch-topic {
  margin-top: 40px;
}

.touch-topic span {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.5px;
  line-height: 30px;
  color: var(--bs-primary-light);
  display: block;
}

.heroform-continer {
  padding: 30px;
  background: #f5f5f580;
  border-top: 16px solid var(--delft-blue);
  margin-top: 15px;
  border-radius: 25px;
}

fieldset {
  width: 100%;
}

.heroform-continer .this-form-field {
  margin-bottom: 1.3rem;
}

.this-form-field label {
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.5px;
  line-height: 30px;
  color: #2e344c;
  display: inline-block;
}

.services-form-field label {
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.5px;
  line-height: 30px;
  color: #2e344c;
  display: inline-block;
}

.this-form-field .input {
  margin-top: 8px;
}

input:not([type="submit"]),
select,
textarea {
  padding: 0.2rem 1rem;
  width: 100%;
  border: none;
  border-radius: 0;
  font-size: 14px;
  line-height: 2rem !important;
  /* color: #ffffff; */
  outline: none;
  box-shadow: none !important;
  border-bottom: 2px solid rgba(214, 208, 221, 0.4);
}

.form-control:focus {
  border-color: var(--puce) !important;
}

.dial-code-input {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
}

.selected-country {
  display: inline-block;
  line-height: 2rem;
  white-space: nowrap;
}

.selected-country-display {
  cursor: pointer;
  padding: 0.2rem 1rem;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  background-color: rgb(0 0 0 / 3%);
  line-height: 2rem;
  border-bottom: 2px solid rgb(192 132 151);
  color: #000;
  font-weight: 500;
  font-size: 1rem;
  font-family: var(--bs-font-sans-serif);
  display: flex;
  align-items: center;
  justify-content: center;
}

.flag-icon {
  margin-right: 10px !important;
}

.arrow-down {
  position: relative;
  width: 1em;
  display: inline-flex !important;
  margin-left: 7px;
  align-items: center;
  justify-content: center;
}

.arrow-down::after {
  content: "\f077";
  font-family: "FontAwesome";
  font-size: 0.8rem;
  transform: rotate(180deg);
}

.selected-country-display.downIcon .arrow-down::after {
  transform: rotate(0deg);
}

.select-options {
  display: none;
  position: absolute;
  z-index: 1;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: rgb(247 247 247);
  border: 2px solid rgba(214, 208, 221, 0.4);
  border-top: none;
  border-radius: 0 0 4px 4px;
  padding-left: 0;
  margin: 0;
}

.select-options.open {
  display: block;
}

.services-form-field .dial-code-input input:not([type="submit"]) {
  display: block;
}

.services-form-field .input input:not([type="submit"]),
select,
textarea {
  padding: 0.2rem 1rem;
}

.select-options li {
  padding: 6px 15px;
  cursor: pointer;
}

.select-options li span {
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.5px;
  color: #060c23;
}

.select-options li span {
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.5px;
  color: #060c23;
}

.select-options li .country-code {
  margin-left: 5px;
  color: #687093;
}

input#attachment:not([type="submit"]) {
  padding: 0 !important;
  border: none !important;
  font-size: 14px;
  line-height: 1.2rem;
  color: #33525f;
  font-weight: 500;
  display: inline-block;
  width: max-content;
  margin-bottom: 1.3rem;
}

input::file-selector-button {
  background: var(--delft-blue) !important;
  outline: none !important;
  border: none !important;
  border-radius: 6px;
  padding: 8px 13px !important;
  border-bottom: 2px solid var(--delft-blue) !important;
  font-family: var(--font-first) !important;
  font-size: 15px !important;
  color: var(--bs-light) !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  line-height: 1.5rem;
  cursor: pointer;
}

.form-select {
  border: none !important;
  border-radius: 0 !important;
  border-bottom: 2px solid rgba(214, 208, 221, 0.4) !important;
}

.input textarea {
  border: none !important;
  border-radius: 0 !important;
  border-bottom: 2px solid rgba(214, 208, 221, 0.4) !important;
}

.services-form-field {
  margin-bottom: 1.3rem;
}

.services-form-field .input input::placeholder {
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.5px;
  line-height: 30px;
  font-family: var(--bs-font-poppins);
  color: #687093;
}

.form-action {
  margin-top: 25px;
}

.form-submited .form-action .submit-button {
  display: block;
  text-align: center;
  background-color: var(--rich-black);
  padding: 10px 30px;
  border-radius: 5px;
  font-size: 20px;
  letter-spacing: 0.5px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  color: var(--bs-white);
  text-decoration: none;
  outline: none;
  border: 2px solid var(--rich-black);
  width: max-content;
  transition: all 0.2s ease-in;
}

/* ----------------- contact us banner section ----------------- */

.new-contact-us-banner {
  min-height: calc(100vh - 5rem);
  display: flex;
  align-items: center;
  background: url(../img/contact-us/contact-banner.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.new-contact-benner-content {
  padding: 10px;
}

.new-contact-benner-content h1 {
  font-size: 60px;
  font-weight: 600;
  font-style: normal;
  color: var(--rich-black);
  line-height: 75px;
  margin-bottom: 30px;
}

/* ----------------------------------- responsive ------------------------------------------ */

@media screen and (max-width: 1400px) {
  .grid-intelligence {
    grid-template-columns: repeat(3, 1fr);
  }

  .new-intelligence-container .ui {
    width: 65%;
  }

  .new-intelligence-container .ui_inner {
    height: 600px;
  }

  .new-travel-intelligence-section {
    height: 725px;
  }
}

@media screen and (max-width: 1200px) {
  .grid-item {
    height: 50px;
    width: 50px;
  }

  .grid-type {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .hero-title h1 {
    margin-top: 0px !important;
  }

  .card-side h3 {
    font-size: 18px;
    line-height: 28px;
  }

  .card-side img {
    height: 80px;
    width: 80px;
    margin-bottom: 18px;
  }

  .type-item {
    height: 250px;
  }

  .od-1 {
    order: 1;
  }

  .od-2 {
    order: 2;
  }

  .feature .container .advance-feature {
    padding: 36px;
  }

  .copyright p {
    text-align: start;
  }

  .new-intelligence-container .ui_inner__selection label .l {
    position: relative;
  }

  .new-intelligence-container .ui_inner__selection label .s {
    position: relative;
  }

  .new-intelligence-container .ui_inner__selection label .l:before,
  .new-intelligence-container .ui_inner__selection label .s:before {
    display: none;
  }

  .new-intelligence-container .ui {
    width: 100%;
  }

  .new-travel-intelligence-section {
    height: 615px;
  }

  .new-intelligence-container .ui_inner__selection label .l {
    left: 0;
    top: -115px;
  }

  .new-intelligence-container .ui_inner__selection label .s {
    right: 0;
    top: -115px;
  }

  .new-intelligence-container .ui_inner {
    border-top-right-radius: 20px;
  }

  .intelligence-title {
    height: 160px;
    padding-top: 12px;
  }
}

@media screen and (max-width: 992px) {
  .intelligence-solution-flex {
    flex-direction: column;
  }

  .w-md-45 {
    width: 100%;
  }

  .solution-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transform: translate(0px, 0);
    display: flex;
    flex-direction: row;
    align-items: end;
    justify-content: center;
  }

  .dotted-button {
    height: 10px;
    width: 40px;
    border-radius: 7px;
    padding: 8px 5px;
    margin: 5px 10px;
  }

  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .new-intelligence-container .ui {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .hero-title h1 {
    font-size: 44px;
    line-height: 58px;
  }

  .hero-title {
    margin-bottom: 10px;
  }

  .hero-description h5 {
    font-size: 20px;
    line-height: 28px;
  }

  .center-content h2 {
    font-size: 36px;
    line-height: 44px;
  }

  p {
    font-size: 16px;
  }

  .tyep-title h2,
  .solution-data h2,
  .grid-intelligence-title h2 {
    font-size: 36px;
    line-height: 48px;
  }

  .grid-type {
    grid-template-columns: repeat(2, 1fr);
  }

  .solution-btn {
    top: 97%;
    bottom: 3%;
    height: 4%;
  }

  .solution-data {
    padding: 10px;
  }

  .intelligence-solution {
    padding-bottom: 20px;
  }

  .grid-intelligence-container {
    overflow-y: auto;
  }

  .grid-intelligence {
    grid-template-columns: repeat(5, 1fr);
    width: 1200px;
  }

  .grid-intelligence-items {
    height: 285px;
    padding: 10px;
  }

  .grid-intelligence-box {
    padding: 18px;
  }

  .content-wrapper h2 {
    font-size: 36px;
    line-height: 46px;
  }

  .section-titles h2 {
    font-size: 36px;
    line-height: 46px;
  }

  .section-title h2 {
    font-size: 36px;
    line-height: 46px;
    margin-bottom: 28px;
  }

  .content-image img {
    width: 100%;
  }

  .new-intelligence-container .ui_inner__selection label .l {
    width: 145px;
  }

  .new-intelligence-container .ui_inner__selection label .s,
  .new-intelligence-container .ui_inner__selection label .l {
    padding: 12px;
  }

  .new-intelligence-container .ui_inner {
    padding: 20px;
  }

  .new-intelligence-container .ui_inner__selection label .l {
    left: 0;
    top: -80px;
  }

  .new-intelligence-container .ui_inner__selection label .s {
    right: 0;
    top: -80px;
  }

  .new-intelligence-container .ui {
    width: 100%;
  }

  .new-intelligence-container .ui_inner .ui_inner__slider .slide_inner {
    position: absolute;
    top: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .new-intelligence-container .ui_inner .ui_inner__slider .slide_inner__right {
    display: inline-block;
    width: 100%;
    padding: 10px;
  }

  .new-intelligence-container .ui_inner .ui_inner__slider .slide_inner__left {
    width: 40%;
    position: relative;
    left: 0;
  }

  .new-intelligence-container .ui_inner__selection input[type="radio"]:checked+label .ui_inner__slider .slide_inner__left {
    left: 0;
  }

  .new-travel-intelligence-section {
    height: 850px;
  }

  .new-intelligence-container .ui_inner {
    height: 730px;
  }

  .new-intelligence-container .ui_inner .ui_inner__slider .slide_inner {
    width: 100%;
    left: 0;
  }

  .new-intelligence-container .ui_inner__selection label .s:hover,
  .new-intelligence-container .ui_inner__selection label .l:hover {
    padding: 12px;
  }

  .new-intelligence-container .ui_inner .ui_inner__slider .slide_inner__right h2 {
    text-align: center;
  }

  .new-intelligence-container .ui_inner .ui_inner__slider .slide_inner__right p {
    text-align: center;
    font-size: 16px;
  }

  .section-heading h2 {
    font-size: 28px;
    line-height: 42px;
  }

  .intelligence-title {
    height: 80px;
    padding-top: 12px;
  }
}

@media screen and (max-width: 500px) {
  .hero-title h1 {
    font-size: 40px;
    line-height: 56px;
  }

  .hero-description h5 {
    font-size: 18px;
    line-height: 26px;
  }

  .grid-item {
    height: 36px;
    width: 36px;
  }

  .center-content h2 {
    font-size: 32px;
    line-height: 38px;
  }

  .tyep-title h2,
  .solution-data h2,
  .grid-intelligence-title h2 {
    font-size: 32px;
    line-height: 38px;
  }

  .card-side img {
    height: 58px;
    width: 58px;
    margin-bottom: 18px;
  }

  .content-wrapper h2 {
    font-size: 32px;
    line-height: 38px;
  }

  .section-title h2 {
    font-size: 32px;
    line-height: 38px;
  }

  .counter-grid-container {
    padding: 0px 0;
  }

  .counter-flex {
    padding: 12px;
  }

  .counter-img {
    width: 38px;
    height: 38px;
  }

  .counter {
    font-size: 20px;
    line-height: 26px;
  }

  .counter-data h3 {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 20px;
  }

  .new-intelligence-container .ui_inner__selection label .s,
  .new-intelligence-container .ui_inner__selection label .l {
    width: 100%;
    padding: 10px;
  }

  .new-intelligence-container .ui_inner__selection label .s:hover,
  .new-intelligence-container .ui_inner__selection label .l:hover {
    padding: 10px;
  }

  .new-intelligence-container .ui_inner .ui_inner__slider .slide_inner__right h2 {
    margin: 0px 0px 12px 0px;
    font-size: 28px;
  }

  .new-travel-intelligence-section {
    height: 965px;
  }

  .new-intelligence-container .ui_inner {
    height: 810px;
  }

  .section-heading h2 {
    font-size: 22px;
    line-height: 35px;
  }
}

@media screen and (max-width: 450px) {
  .grid-type {
    gap: 8px;
  }

  .tyep-title h2,
  .solution-data h2,
  .grid-intelligence-title h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .content-wrapper h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .section-title h2 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 16px;
  }

  .feature-block {
    padding: 15px;
    height: 115px;
    margin-top: 15px;
  }

  .feature-block .icon {
    width: 45px;
  }

  .section-titles h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .text-info h3 {
    font-size: 18px;
    line-height: 26px;
  }
}

@media screen and (min-width: 1400px) {
  .solution-section .solution-cards {
    height: 250px;
  }
}

@media screen and (min-width: 768px) {
  .block-before-box {
    margin-bottom: 45px;
  }

  .block-before-line::after {
    left: 50%;
    height: 100%;
    width: 1px;
  }
}

/* ---------------------------- thank you ----------------------------------- */

.thank-page-content-wrap h1 {
  font-size: 60px;
  font-weight: 600;
  font-style: normal;
  color: var(--ucla-blue);
  line-height: 75px;
  text-align: center;
}

.thank-page-content-wrap p {
  font-style: normal;
  font-size: 20px;
  color: #161718;
  letter-spacing: 0.4px;
  font-weight: 500;
  text-align: center;
}

.thanks {
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks a {
  display: block;
  text-align: center;
  background-color: var(--rich-black);
  padding: 10px 30px;
  border-radius: 5px;
  font-size: 18px;
  letter-spacing: 0.5px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  color: var(--bs-white) !important;
  text-decoration: none;
  outline: none;
  border: 2px solid var(--rich-black);
  width: max-content;
  transition: all 0.2s ease-in;
}

.thank-section {
  background-color: #ebf3d2;
}

.footer-social-icon {
  padding-top: 10px;
}

.footer-social-icon ul {
  padding-left: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
  margin-bottom: 0;
}

.footer-social-icon ul li a i {
  font-size: 20px;
  color: #fff;
}

/* ---------------------------- scraper page ---------------------------------- */

.home-scraper-banner {
  position: relative;
  background: #fff;
  height: 95vh;
  overflow: hidden;
}

.home-listout-banner {
  position: relative;
  background: #fff;
  height: 800px;
  overflow: hidden;
}

.home-scraper-container {
  max-width: 1600px;
  height: 95vh;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scraper-main-cotnent {
  padding: 20px;
}

.scraper-main-cotnent h1 {
  font-size: 48px;
  font-weight: 600;
  font-style: normal;
  color: var(--rich-black);
  line-height: 64px;
  margin-bottom: 20px;
}

.scraper-main-cotnent p {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.3px;
  font-style: normal;
  color: #263542;
  line-height: 32px;
}

.scraper-main-cotnent p.shrot-p {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.3px;
  font-style: normal;
  color: var(--rich-black);
  line-height: 34px;
}

.scraper-btn {
  margin: 30px 0;
}

.scraper-btn a {
  display: block;
  text-align: center;
  background-color: var(--rich-black);
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 500;
  font-family: Poppins, sans-serif;
  font-style: normal;
  color: var(--bs-white);
  text-decoration: none;
  outline: none;
  border: 2px solid var(--rich-black);
  width: max-content;
  transition: all 0.2s ease-in 0s;
}

.scraper-btn a:hover {
  background-color: transparent;
  color: var(--rich-black);
}

.trusted-logo {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  place-items: start;
  width: fit-content;
  margin-top: 30px;
}

.mode-logo {
  text-align: center;
  height: 60px;
  width: 60px;
}

.mode-logo img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

@media screen and (min-width: 1400px) {
  .overflow-absolute {
    height: calc(100% - 10rem);
    width: 50%;
    position: absolute;
    bottom: 0;
    right: -1%;
  }

  .overflow-absolute-inner {
    height: auto;
    width: 40%;
    position: absolute;
    bottom: 50%;
    transform: translate(0%, 50%);
    right: 0%;
  }
}

.overflow-absolute img {
  width: 100%;
  height: 100%;
}

.overflow-absolute-inner img {
  width: 100%;
  height: 100%;
}

.modal-dubble-center {
  padding: 80px 0;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}

.model-center {
  margin-bottom: 40px;
}

.model-center h2 {
  font-size: 40px;
  font-weight: 600;
  font-style: normal;
  color: var(--rich-black);
  line-height: 60px;
  text-align: center;
}

.model-center p {
  font-style: normal;
  font-size: 17px;
  color: #161718;
  letter-spacing: 0.4px;
  text-align: center;
}

.modal-dubble-cotent {
  padding: 10px;
}

.modal-d-image {
  display: flex;
  align-items: start;
  justify-content: center;
}

.modal-d-image img {
  max-width: 100%;
  width: auto;
}

.modal-d-info {
  padding: 10px;
}

.modal-d-flex {
  display: flex;
  align-items: start;
  justify-content: start;
  margin-bottom: 15px;
}

.modal-d-icon {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 1px 24px rgb(103 96 96 / 24%);
  border-radius: 5px;
  margin-top: 5px;
}

.modal-d-icon img {
  width: auto;
}

.modal-d-title {
  margin-left: 8px;
  font-style: normal;
  font-size: 17px;
  color: #161718;
  letter-spacing: 0.4px;
  text-align: start;
  width: calc(100% - 40px);
}

.pricing-beat-bg {
  padding: 80px 0;
  background: rgb(242 244 247 / 80%);
}

.pricing-beat-section {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}

.pricing-beat-content {
  padding: 15px;
}

.pricing-beat-content h2 {
  font-size: 40px;
  font-weight: 600;
  font-style: normal;
  color: var(--rich-black);
  line-height: 54px;
  text-align: start;
  margin-bottom: 15px;
}

.pricing-beat-content .beat-bold {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.3px;
  font-style: normal;
  color: #263542;
  line-height: 36px;
}

.form-column-width {
  width: 49.62%;
  display: inline-block;
}

.form-column-width .form-select {
  padding: 0.2rem 1rem !important;
  width: 100% !important;
  border: none !important;
  border-radius: 0 !important;
  font-size: 16px !important;
  line-height: 2rem !important;
  color: #000 !important;
  outline: none !important;
  box-shadow: none !important;
  border-bottom: 2px solid rgba(214, 208, 221, 0.4) !important;
}

.form-column-width input:not([type="submit"]),
select,
textarea {
  font-size: 16px !important;
}

.pricing-beat-form-bg {
  background: #e7e7e7a3;
}

.mt-15-logo {
  margin-top: 15px;
}

.goal-box {
  padding: 10px;
}

.goal-highlight {
  color: var(--delft-blue);
  font-size: 60px;
  line-height: 70px;
  font-weight: 600;
  position: relative;
  text-align: center;
}

.goal-disk {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.3px;
  font-style: normal;
  color: #4e5a63;
  line-height: 34px;
  text-align: center;
}

.global-section {
  padding: 80px 0;
}

/* --------------- tabs ----------- */

.work-tabs-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.work-tabs-button .nav-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  border: none !important;
  width: 100%;
  gap: 18px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: var(--bs-nav-tabs-link-active-color);
  background-color: var(--bs-nav-tabs-link-active-bg);
  border-color: var(--bs-nav-tabs-link-active-border-color);
}

.work-tabs-button .nav-tabs .nav-link {
  width: 300px;
  height: 100%;
  min-height: 140px;
  text-decoration: none;
  max-width: calc(50% - 9px);
  background: #fff;
  border-radius: 10px;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 17px;
  position: relative;
  z-index: 30;
  box-shadow: rgb(239 102 80 / 0%) -20px 30px 45px;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  overflow: hidden;
  border: 2px solid #01162724;
}

.work-tabs-button .nav-tabs .nav-link img {
  max-width: 40px;
  display: block;
  position: relative;
  z-index: 30;
}

.work-tabs-button .nav-tabs .nav-link h3 {
  max-width: 100%;
  font-family: var(--font-poppins);
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0.02em;
  color: var(--rich-black);
  position: relative;
  z-index: 30;
  margin-bottom: 0;
  text-align: center;
}

.work-tabs-button .nav-tabs .nav-link.active {
  border-color: var(--rich-black) !important;
}

.work-tabs-content {
  padding-left: 50px;
}

.work-tabs-inner {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}

.work-tabs-inner h3 {
  font-size: 22px;
  font-weight: 600;
  font-style: normal;
  color: var(--rich-black);
  line-height: 34px;
  text-align: start;
}

.work-tabs-inner p {
  font-style: normal;
  font-size: 17px;
  color: #161718;
  letter-spacing: 0.4px;
  text-align: start;
  margin-bottom: 0px;
}

.work-tabs-inner img {
  width: 100%;
}

.work-btn {
  display: block;
  text-align: center;
  background-color: transparent;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 500;
  font-family: Poppins, sans-serif;
  font-style: normal;
  color: var(--rich-black) !important;
  text-decoration: none;
  outline: none;
  border: 2px solid var(--rich-black);
  width: max-content;
  transition: all 0.2s ease-in 0s;
  margin: 30px 0;
}

.work-btn:hover {
  background-color: var(--rich-black) !important;
  color: var(--white) !important;
}

.experts-section {
  min-height: 80vh;
  background-color: rgb(242 244 247 / 80%);
  padding: 50px 0;
}

.experts-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 8px;
}

.experts-content {
  display: flex;
  width: 80%;
  justify-content: center;
  align-self: center;
  flex: 1 1 auto;
  min-width: 52%;
  flex-direction: column;
  padding: 16px;
  padding-left: 180px;
}

.experts-content-img {
  margin: 0px;
  padding-top: 0px;
  height: auto;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.experts-content-img>* {
  height: 100%;
  width: 100%;
}

.experts-content-img img {
  object-fit: contain;
  height: 100%;
  width: 100%;
  display: block;
}

.experts-content h2 {
  font-size: 36px;
  font-weight: 600;
  font-style: normal;
  color: var(--rich-black);
  line-height: 46px;
  text-align: start;
}

.experts-content p {
  font-style: normal;
  font-size: 17px;
  color: #161718;
  letter-spacing: 0.4px;
  text-align: start;
  margin-bottom: 0;
}

.boost-section {
  padding: 80px 0;
  background-color: rgb(250 250 250 / 1);
}

.Boost-content {
  padding: 10px;
}

.Boost-content h2 {
  font-size: 36px;
  font-weight: 600;
  font-style: normal;
  color: var(--rich-black);
  line-height: 46px;
  text-align: start;
}

.arrow-marker {
  list-style-position: outside;
  list-style-type: none;
  padding-left: 0;
  padding-top: 20px;
}

ul.arrow-marker li {
  position: relative;
  padding-left: 40px;
  font-style: normal;
  font-size: 17px;
  color: #161718;
  letter-spacing: 0.4px;
  text-align: start;
  margin-bottom: 20px;
}

ul.arrow-marker li::before {
  content: url(../img/scraper/arrow-right.svg);
  position: absolute;
  left: 0px;
}

.boost-content-image {
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.boost-content-image img {
  width: 100%;
  height: auto;
}

.boost-bottom-content {
  padding: 50px 0;
}

.boost-bottom-content-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.boost-bottom-content-img img {
  width: 100%;
  height: auto;
}

/* ------------------------------------------ media quary --------------------------------------- */

/* ------------------------------------------ 1800px --------------------------------------- */

@media screen and (max-width: 1800px) {
  .experts-content {
    padding-left: 60px;
  }
}

/* ------------------------------------------ 1600px --------------------------------------- */

@media screen and (max-width: 1400px) {
  .home-scraper-banner {
    height: 100%;
  }

  .home-listout-banner {
    min-height: 500px;
    height: 100%;
    display: flex;
    align-items: center;
  }

  .home-scraper-container {
    height: 100%;
    margin-top: 5rem;
  }

  .overflow-absolute {
    width: 100%;
    margin-top: 20px;
  }

  .modal-dubble-center {
    padding: 40px 0;
  }

  .pricing-beat-bg {
    padding: 40px 0;
  }

  .global-section {
    padding: 50px 0;
  }

  .work-tabs-button {
    overflow-y: auto !important;
  }

  .work-tabs-button .nav-tabs {
    flex-wrap: nowrap !important;
    margin-right: 0 !important;
    justify-content: start !important;
    width: 2200px;
    flex-direction: row;
    margin-top: 0rem;
  }

  .work-tabs-content {
    padding-left: 0;
    margin-top: 30px;
  }

  .experts-section {
    min-height: 100%;
    padding: 40px 0;
  }

  .experts-flex {
    flex-direction: column;
  }

  .experts-content {
    width: 100%;
    padding-left: 0;
    padding: 20px;
  }

  .boost-bottom-content {
    padding: 30px 0;
  }

  .boost-section {
    padding: 35px 0;
  }
}

/* ------------------------------------------ 1200px --------------------------------------- */

@media screen and (max-width: 1200px) {
  .home-scraper-container {
    margin-top: 1rem;
  }
}

/* ------------------------------------------ 768px --------------------------------------- */

@media screen and (max-width: 768px) {
  .scraper-main-cotnent h1 {
    font-size: 36px;
    line-height: 46px;
    margin-bottom: 10px;
  }

  .scraper-main-cotnent p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 0;
  }

  .scraper-btn {
    margin: 20px 0;
  }

  .scraper-main-cotnent p.shrot-p {
    font-size: 18px;
    line-height: 30px;
  }

  .trusted-logo {
    gap: 20px;
    margin-top: 20px;
  }

  .mode-logo {
    height: 50px;
    width: 50px;
  }

  .model-center h2 {
    font-size: 30px;
    line-height: 38px;
  }

  .model-center p {
    font-size: 16px;
  }

  .modal-d-title {
    font-size: 16px;
  }

  .pricing-beat-content h2 {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 10px;
  }

  .pricing-beat-content .beat-bold {
    font-size: 20px;
    line-height: 26px;
  }

  .form-column-width {
    width: 100%;
  }

  .model-center {
    margin-bottom: 20px;
  }

  .goal-highlight {
    font-size: 40px;
    line-height: 46px;
  }

  .goal-disk {
    font-size: 18px;
    line-height: 28px;
  }

  .experts-content-img {
    padding: 10px;
  }

  ul.arrow-marker li {
    font-size: 16px;
  }

  .experts-content h2 {
    font-size: 30px;
    line-height: 38px;
  }

  .experts-content p {
    font-size: 16px;
  }
}

@media screen and (max-width: 576px) {
  .modal-d-flex {
    align-items: start;
  }

  .modal-d-icon {
    margin-top: 6px;
  }

  .scraper-main-cotnent {
    padding: 5px;
  }

  .home-scraper-container {
    margin-top: 0.5rem;
  }

  .modal-d-info {
    padding: 0px;
  }

  .modal-d-image {
    margin-bottom: 10px;
  }

  .experts-content {
    padding: 10px;
  }

  .experts-section {
    padding: 20px 0;
  }

  .pricing-beat-bg {
    padding: 20px 0;
  }

  .work-btn {
    margin: 20px 0;
  }

  .experts-flex {
    gap: 0px;
  }
}

.bg-inner {
  background-color: rgb(242 244 247 / 80%);
}

.pricing-bg-none {
  background: none;
}

.scrape-datafeild-section {
  padding: 10px;
}

.scrape-datafeild-section h2 {
  font-size: 36px;
  font-weight: 600;
  font-style: normal;
  color: var(--rich-black);
  line-height: 46px;
  text-align: start;
}

.datafeild-tab {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
  padding-top: 10px;
}

.data-set {
  width: 50%;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.3px;
  font-style: normal;
  color: #2b3136;
  line-height: 28px;
  text-align: start;
  margin-bottom: 5px;
  position: relative;
  padding-left: 10px;
}

.data-set::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--rich-black);
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 1400px) {
  .overflow-absolute-inner {
    padding: 20px 0;
  }

  .od-lg-1 {
    order: 1;
  }

  .od-lg-2 {
    order: 2;
  }
}

@media screen and (max-width: 576px) {
  .data-set {
    width: 100%;
  }

  .Boost-content h2 {
    font-size: 30px;
    line-height: 38px;
  }

  .scrape-datafeild-section h2 {
    font-size: 30px;
    line-height: 38px;
  }
}

.main-inner-content {
  max-width: 900px;
  margin: 0 auto;
}

/* --------------------------------- list out page ---------------------------------- */

.listout-section {
  padding: 100px 0;
  background: linear-gradient(135deg,
      hsl(220.28deg 76.07% 83.55% / 20%) 7%,
      hsl(222.06deg 47.98% 80.32% / 2%) 40%,
      hsl(0deg 0% 100%) 100%);
}

.listout-box {
  padding: 35px;
  background: #fff;
  box-shadow: 0 0px 5px #e1edffad, 0 2px 70px rgb(82 99 115 / 15%);
  border-radius: 30px;
}

.main-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
}

.list-unstyle {
  width: 20%;
  padding: 10px;
}

.list-unstyle a {
  text-decoration: none;
  color: var(--payne-gray);
  font-size: 16px;
  font-family: var(--font-poppins);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.3px;
  display: inline-block;
  transition: all 0.3s ease;
}

.list-unstyle a:hover {
  color: var(--rich-black);
}

@media screen and (max-width: 1400px) {
  .list-unstyle {
    width: 25%;
  }
}

@media screen and (max-width: 1200px) {
  .list-unstyle {
    width: 33.3333%;
  }
}

@media screen and (max-width: 992px) {
  .list-unstyle {
    width: 50%;
  }
}

@media screen and (max-width: 992px) {
  .listout-box {
    padding: 20px;
  }

  .list-unstyle {
    width: 100%;
  }

  .listout-section {
    padding: 50px 0;
  }
}

/* ------------------------------------------ blog section ----------------------------------------- */

.blog-section {
  display: flex;
  align-items: center;
  justify-content: start;
  min-height: 700px;
  /* background-image: url(../img/new-header/Blog-01.webp); */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.blog-head-content {
  padding: 10px;
}

.blog-head-content h2 {
  font-size: 40px;
  font-weight: 600;
  font-style: normal;
  color: var(--rich-black);
  line-height: 54px;
}

.blog-head-content p {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.3px;
  font-style: normal;
  color: #263542;
  line-height: 36px;
}

.main-blog-section {
  padding: 50px 0;
}

.blog-box {
  padding: 10px;
  margin-bottom: 50px;
}

.blog-img {
  margin-bottom: 20px;
  border-radius: 5px;
}

.blog-img img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.blog-title {
  margin-bottom: 10px;
}

.blog-title a {
  text-decoration: none;
}

.blog-title a h3 {
  color: var(--black);
  font-size: 24px;
  line-height: 36px;
  font-weight: 500;
  position: relative;
  font-family: var(--font-poppins);
}

.blog-desc {
  margin-bottom: 10px;
}

.blog-desc a {
  text-decoration: none;
}

.blog-desc a p {
  font-size: 16px;
  color: #444444;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: 0.5px;
  font-family: var(--font-poppins);
}

.blog-box span {
  color: #788a9d;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
}

/* ----------------------------- main blog ---------------------------------- */

.main-inner-blog {
  padding-top: 5rem;
}

.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-gray-800 {
  border-color: #c2d4ee !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.box-breadcrumbs {
  display: inline-block;
}

.breadcrumb {
  margin-bottom: 0 !important;
}

.box-breadcrumbs .breadcrumb li {
  position: relative;
  padding: 0px 30px 0px 0px;
}

.box-breadcrumbs .breadcrumb li a {
  display: inline-block;
  color: #000000;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.6px;
  padding-bottom: 5px;
  transition: all 0.3s ease 0s;
  font-family: var(--font-poppins);
  text-decoration: none;
  font-style: normal;
  font-weight: 500;
}

.box-breadcrumbs .breadcrumb li span {
  display: inline-block;
  padding: 5px 0;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.6px;
  color: #767676;
  font-family: var(--font-poppins);
  font-style: normal;
  font-weight: 500;
}

.box-breadcrumbs .breadcrumb li::before {
  content: "";
  position: absolute;
  top: 8px;
  right: 10px;
  height: 15px;
  width: 15px;
  background: url(../img/blog/blog-icon/arrow-right.svg) no-repeat top right;
}

.box-breadcrumbs .breadcrumb li:last-child::before {
  display: none;
}

.color-linear.h1 {
  font-size: 46px;
  font-weight: 600;
  font-style: normal;
  color: var(--rich-black);
  line-height: 66px;
  padding-top: 22px;
}

.text-sm {
  display: inline-block;
  padding: 5px 0;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.6px;
  color: #767676;
  font-family: var(--font-poppins);
  font-style: normal;
  font-weight: 500;
}

.content-detail {
  padding: 20px 0 30px;
  padding-right: 35px;
}

.content-detail h2 {
  font-size: 36px;
  font-weight: 600;
  font-style: normal;
  color: var(--rich-black);
  line-height: 46px;
  padding-top: 18px;
}

.content-detail h3 {
  font-size: 24px;
  font-weight: 600;
  font-style: normal;
  color: var(--rich-black);
  line-height: 36px;
  padding-top: 18px;
}

.content-detail h4 {
  font-size: 21px;
  font-weight: 600;
}

.content-detail p {
  font-style: normal;
  font-size: 16px;
  color: #161718;
  letter-spacing: 0.4px;
}

.content-detail p a {
  color: var(--rich-black);
  font-weight: 600;
  font-size: 16px;
}

.content-detail ul li a {
  color: var(--rich-black);
  font-weight: 600;
  font-size: 16px;
}

/* -------------- blog contact page ---------------------- */

.main-blog-contact {
  padding: 35px 0;
}

.main-blog-contact .heroform-continer {
  background: #ffffff8c;
  box-shadow: rgb(106 133 154 / 6%) 0px 30px 80px;
  border-radius: 5px;
  margin-top: 0;
}

.blog-contact-sticky {
  position: sticky;
  top: 10%;
}

.content-detail img {
  max-width: 100%;
  width: auto;
  height: auto;
  padding: 20px 0;
}

@media screen and (max-width: 1200px) {
  .main-inner-blog {
    padding-top: 0rem;
  }

  .pb-20 {
    padding-bottom: 15px !important;
  }

  .pt-30 {
    padding-top: 20px !important;
  }

  .color-linear.h1 {
    font-size: 36px;
    font-weight: 600;
    line-height: 54px;
    padding-top: 0px;
  }

  .content-detail h2 {
    font-size: 28px;
    line-height: 38px;
  }

  .content-detail h3 {
    font-size: 20px;
    line-height: 32px;
    padding-top: 18px;
  }

  .content-detail h4 {
    font-size: 18px;
  }

  .content-detail {
    padding: 20px 0 30px;
    padding-right: 0;
  }

  .main-blog-contact {
    padding: 0;
  }

  .blog-contact-sticky {
    position: relative;
    top: 0;
  }
}

@media screen and (max-width: 576px) {
  .color-linear.h1 {
    font-size: 30px;
    font-weight: 600;
    line-height: 46px;
    padding-top: 0px;
  }

  .content-detail h2 {
    font-size: 26px;
    line-height: 36px;
  }

  .content-detail p {
    font-size: 15px;
  }

  .content-detail h3 {
    font-size: 18px;
    line-height: 28px;
    padding-top: 18px;
  }

  .content-detail h4 {
    font-size: 17px;
  }
}

.main-content-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 7rem auto;
}

.inner-detail a {
  max-width: 280px;
  margin-top: 30px;
  font-size: 20px;
  border-radius: 12px;
  display: block;
  text-align: center;
  background-color: var(--rich-black);
  padding: 10px 20px;
  letter-spacing: 1px;
  font-weight: 500;
  font-family: Poppins, sans-serif;
  font-style: normal;
  color: var(--bs-white);
  text-decoration: none;
  outline: none;
  border: 2px solid var(--rich-black);
  width: max-content;
  transition: all 0.2s ease-in 0s;
}

.inner-detail a:hover {
  border: 2px solid var(--rich-black);
}

.main-content-detail h1 {
  font-size: 60px;
  font-weight: 600;
  font-style: normal;
  color: var(--rich-black);
  line-height: 75px;
  margin-bottom: 20px;
  max-width: 100rem;
  width: 100%;
}

.main-content {
  margin: 7rem auto;
}

.main-content img {
  max-width: 150rem;
  width: 100%;
  max-height: 20rem;
  height: 100%;
}

.inner-content {
  margin: 7rem auto;
}

.inner-detail {
  max-width: 800px;
}

.inner-detail-image img {
  max-width: 700px;
  width: 100%;
  padding-top: 100px !important;
}

.inner-detail h2 {
  font-size: 40px;
  font-weight: 600;
  font-style: normal;
  color: var(--rich-black);
  line-height: 60px;
  padding-top: 100px !important;
}

@media (max-width: 768px) {
  .inner-detail h2 {
    padding-top: 150px !important;
  }

  .inner-detail-image img {
    padding-top: 0px !important;
  }
}


.link-content {
  margin: 7rem auto;
}

.border-new-white {
  border: 1px solid #fff;
  background-color: #fff;
  -webkit-box-shadow: 0px 8px 48px 0px rgba(55, 22, 98, 0.1);
  -moz-box-shadow: 0px 8px 48px 0px rgba(55, 22, 98, 0.1);
  box-shadow: 0px 8px 48px 0px rgba(55, 22, 98, 0.1);
  height: 100%;
}

.rounded-custom {
  border-radius: 1rem;
}

.p-5 {
  padding: 3rem;
}

.border-2 {
  border-width: 2px;
}

.rounded h3 {
  font-weight: 700;
  font-size: 22px;
}

.rounded img {
  width: 65px;
}

.feature-content p {
  font-style: normal;
  font-size: 16px;
  color: #161718;
  letter-spacing: 0.5px;
  text-align: start;
  margin-bottom: 0px;
  max-width: 900px;
  width: 100%;
  margin: 1rem auto;
  line-height: 30px;
}

.feature-card:hover {
  box-sizing: border-box;
  box-shadow: 1px 1px 20px rgba(117, 117, 117, 0.08);
  transition: ease-in 0.2s;
}

.inner-detail p {
  font-style: normal;
  font-size: 18px;
  color: #161718;
  letter-spacing: 0.4px;
  max-width: 900px;
  width: 100%;
}

.link-content h2 {
  font-size: 40px;
  font-weight: 600;
  font-style: normal;
  color: var(--rich-black);
  line-height: 60px;
}

.card-detail-content {
  margin: 5rem auto;
}

.card-detail {
  border: 2px solid black;
  border-radius: 15px;
  max-width: 18rem;
  width: 100%;
  height: 12rem;
  box-sizing: border-box;
  box-shadow: red;
}

.card-detail-image {
  display: flex;
  max-width: 20rem;
  width: 100%;
}

.card-detail-image img {
  max-width: 50px;
  width: 100%;
  max-height: 50px;
  height: 100%;
  margin: 20px;
}

.card-detail-image h4 {
  max-width: 18rem;
  width: 100%;
  margin: auto;
}

.inner-detail-image-sec img {
  max-width: 700px;
  width: 100%;
}

.inner-detail-sec p {
  font-style: normal;
  font-size: 18px;
  color: #161718;
  letter-spacing: 0.4px;
  text-align: start;
  margin-bottom: 0px;
  max-width: 900px;
  width: 100%;
}

.inner-detail-sec h2 {
  font-size: 36px;
  font-weight: 600;
  font-style: normal;
  color: var(--rich-black);
  line-height: 46px;
  text-align: start;
}

.exp-detail h2 {
  font-size: 40px;
  font-weight: 600;
  font-style: normal;
  color: var(--rich-black);
  line-height: 60px;
  margin-bottom: 5rem;
}

.exp-icon {
  display: flex;
  height: 104px;
  width: 104px;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(244 245 245 / var(--tw-bg-opacity));
  padding: 4px;
  font-size: 32px;
  line-height: 34px;
  margin: 2rem auto;
}

.exp-icon img {
  padding: 8px;
}

.exp-content-detail h3 {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  font-style: normal;
  color: var(--rich-black);
  line-height: 34px;
}

.exp-content-detail p {
  text-align: center;
  font-style: normal;
  font-size: 17px;
  color: #161718;
  letter-spacing: 0.7px;
  margin: 1rem auto;
  padding: 20px;
  text-align: justify;
}

.exp-main-detail {
  border-radius: 15px;
  box-sizing: border-box;
  box-shadow: 0px 0px 70px -30px rgba(0, 0, 0, 0.1);
  padding: 0.3rem;
  height: 100%;
}

.exp-main-detail-height {
  height: 100%;
}

.service-content {
  display: flex;
  flex-direction: column;
  margin-bottom: 5rem;
  margin-top: 4rem;
}

.service-content-heading h2 {
  font-size: 40px;
  font-weight: 600;
  font-style: normal;
  color: var(--rich-black);
  line-height: 60px;
  letter-spacing: 0.4px;
}

.service-content-image img {
  height: 90px;
  max-width: 90px;
}

.service-content-detail h3 {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  font-style: normal;
  color: var(--rich-black);
  line-height: 34px;
}

.service-content-detail p {
  text-align: center;
  font-style: normal;
  font-size: 17px;
  color: #161718;
  letter-spacing: 0.4px;
  margin: 1rem auto;
  padding: 6px;
}

.inner-detail a {
  display: block;
  text-align: center;
  background-color: var(--rich-black);
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 500;
  font-family: Poppins, sans-serif;
  font-style: normal;
  color: var(--bs-white);
  text-decoration: none;
  outline: none;
  border: 2px solid var(--rich-black);
  width: max-content;
  transition: all 0.2s ease-in 0s;
}

@media screen and (max-width: 1200px) and (min-width: 768px) {
  .main-content-detail h1 {
    line-height: 50px;
    font-size: 42px;
    margin-bottom: 10px;
  }

  .inner-detail {
    max-width: 100%;
  }

  .inner-detail-image img {
    object-fit: contain;
    height: 100%;
    max-width: 100%;
    display: block;
    margin-top: 1rem;
  }

  .inner-detail-sec {
    max-width: 100%;
    margin-top: 2rem;
  }

  .inner-detail-image-sec img {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .main-content-detail h1 {
    line-height: 40px;
    font-size: 36px;
    margin-bottom: 10px;
  }

  .inner-detail h2 {
    font-size: 30px;
    line-height: 40px;
    margin-top: -2rem;
  }

  .inner-detail-sec h2 {
    font-size: 30px;
    line-height: 40px;
    margin-top: 2rem;
  }

  .service-content-heading h2 {
    font-size: 30px;
    line-height: 40px;
    margin-top: -6rem;
  }

  .feature-card .border-new-white .border-2 {
    box-shadow: none;
    margin-bottom: 2rem;
  }

  .inner-detail-image img {
    margin-top: 3rem;
  }

  .main-content img {
    margin-top: -4rem;
  }

  .exp-detail h2 {
    font-size: 30px;
    line-height: 40px;
    margin-top: -8rem;
    margin-bottom: 3rem;
  }

  .media-margin {
    margin: 3rem;
  }

  .about-margin {
    margin: 2rem 0;
  }

  .link-content h2 {
    font-size: 30px;
    line-height: 40px;
    margin-top: -3rem;
  }

  .feature-content p {
    line-height: 22px;
  }

  .inner-detail-sec p {
    font-size: 17px;
  }

  .inner-detail-sec-image img {
    margin-top: -2rem;
    margin-bottom: 2rem;
  }

  .inner-detail button {
    max-width: 175px;
    font-size: 15px;
  }
}

.main-case-study-content {
  padding-top: 5rem;
}

.case-box-detail {
  display: flex;
  align-items: start;
}

.heading-style {
  font-size: 46px;
  font-weight: 600;
  font-style: normal;
  color: var(--rich-black);
  line-height: 66px;
  padding-top: 22px;
  text-align: center;
}

.date-case-info {
  text-align: center;
}

.case-content-detail img {
  max-width: 80%;
  width: auto;
  height: auto;
  padding: 20px 0;
}

.case-content-detail p {
  font-style: normal;
  font-size: 16px;
  color: #161718;
  letter-spacing: 0.4px;
}

.case-content-detail h2 {
  font-size: 36px;
  font-weight: 600;
  font-style: normal;
  color: var(--rich-black);
  line-height: 46px;
  padding-top: 18px;
}

.case-content-detail img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  padding: 20px 0;
}

.case-content-detail h3 {
  font-size: 24px;
  font-weight: 600;
  font-style: normal;
  color: var(--rich-black);
  line-height: 36px;
  padding-top: 18px;
}

.case-content-detail p {
  font-style: normal;
  font-size: 16px;
  color: #161718;
  letter-spacing: 0.4px;
  justify-content: center;
}

@media screen and (max-width: 1200px) {
  .heading-style {
    font-size: 36px;
    font-weight: 600;
    line-height: 54px;
    padding-top: 0px;
    text-align: start;
  }

  .date-info {
    text-align: start;
  }

  .case-box-detail {
    margin-top: -80px;
  }

  .case-content-detail img {
    max-width: 100%;
  }

  .case-content-detail h2 {
    font-size: 28px;
    line-height: 38px;
  }

  .case-content-detail h3 {
    font-size: 20px;
    line-height: 32px;
    padding-top: 18px;
  }
}

@media screen and (max-width: 576px) {
  .heading-style h1 {
    font-size: 30px;
    font-weight: 600;
    line-height: 46px;
    padding-top: 0px;
  }

  .case-content-detail h2 {
    font-size: 26px;
    line-height: 36px;
  }

  .case-content-detail p {
    font-size: 15px;
  }

  .case-content-detail h3 {
    font-size: 18px;
    line-height: 28px;
    padding-top: 18px;
  }
}

.main-banner-detail .container-fluid .row .col-lg-6 {
  padding-left: 0;
  padding-right: 0;
}

.main-banner-detail {
  position: relative;
  z-index: 1;
}

.banner-content {
  margin-left: auto;
  max-width: 650px;
}

.back-col {
  font-size: 19px;
  letter-spacing: 0px;
  font-weight: 500;
}

.banner-content h1 {
  margin-top: 1rem;
  font-size: 60px;
  font-weight: 600;
  font-style: normal;
  color: var(--rich-black);
  line-height: 75px;
  margin-bottom: 20px;
}

.banner-content p {
  margin-top: 1rem;
  max-width: 450px;
  font-style: normal;
  font-size: 17px;
  color: #161718;
  letter-spacing: 0.4px;
  text-align: start;
}

.banner-content a {
  display: block;
  text-align: center;
  background-color: var(--rich-black);
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 500;
  font-family: Poppins, sans-serif;
  font-style: normal;
  color: var(--bs-white);
  text-decoration: none;
  outline: none;
  border: 2px solid var(--rich-black);
  width: max-content;
  transition: all 0.2s ease-in 0s;
}

.banner-content a:hover {
  border: 2px solid var(--rich-black);
}

.banner-image img {
  max-width: 100%;
}

.banner-image {
  text-align: end;
}

.slider-main-detail {
  background-color: #f9fafb;
  padding-top: 45px;
  padding-bottom: 45px;
  margin-top: 7rem;
  margin-bottom: 7rem;
}

.slider-flex-content {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 100px;
}

.slider-icon {
  display: flex;
  align-self: center;
  justify-content: center;
}

.animation-heading {
  text-align: center;
  margin-bottom: 100px;
}

.animation-heading h2 {
  margin-bottom: 0;
  text-transform: capitalize;
  font-size: 40px;
  font-weight: 600;
  font-style: normal;
  color: var(--rich-black);
  line-height: 60px;
  text-align: center;
}

.animation-heading .bar {
  height: 5px;
  width: 90px;
  background: #f7ec9f;
  margin: 20px auto;
  position: relative;
  border-radius: 30px;
}

.animation-heading .bar::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2.7px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #fbde00;
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-name: MOVE-BG;
}

@keyframes MOVE-BG {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(88px);
  }
}

.animation-heading P {
  max-width: 600px;
  margin: 0 auto;
  font-style: normal;
  font-size: 17px;
  color: #161718;
  letter-spacing: 0.4px;
}

.box-hover-detail {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  padding: 40px 30px;
  text-align: center;
  background-position: 50%;
  background-image: url("https://startp-next.envytheme.com/images/repair-services-img/repair-services-img1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  height: auto;
}

.box-hover-detail::before {
  background: #fff;
}

.box-hover-detail::after,
.box-hover-detail::before {
  transition: 0.5s;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border: 1px dashed #fbde00;
}

.box-hover-detail::after {
  background: linear-gradient(100deg, var(--rich-black), var(--rich-black));
  opacity: 0;
  visibility: hidden;
}

.box-hover-detail .hover-icon {
  display: inline-block;
  color: #fbde00;
  width: 85px;
  height: 85px;
  line-height: 95px;
  border: 1px dotted #fbde00;
  border-radius: 50%;
  transition: 0.5s;
}

.box-hover-detail .hover-icon i::before {
  font-size: 35px;
}

.box-hover-detail:hover {
  color: #fbde00;
}

.box-hover-detail:focus:before,
.box-hover-detail:hover:before {
  opacity: 0;
  visibility: hidden;
}

.box-hover-detail:focus:after,
.box-hover-detail:hover:after {
  opacity: 0.85;
  visibility: visible;
}

.box-hover-detail:focus h3,
.box-hover-detail:focus p,
.box-hover-detail:hover h3,
.box-hover-detail:hover p {
  color: #fff;
}

.box-hover-detail:focus .hover-icon,
.box-hover-detail:hover .hover-icon {
  border-color: #fff;
  color: #fff;
  text-shadow: 0 2px white;
}

.box-hover-detail h3 {
  transition: 0.5s;
  margin-top: 22px;
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 600;
  font-style: normal;
  color: var(--rich-black);
  line-height: 34px;
}

.box-hover-detail p {
  margin-bottom: 5px;
  transition: 0.5s;
  font-style: normal;
  font-size: 17px;
  color: #161718;
  letter-spacing: 0.4px;
}

.box-hover-detail:focus:before,
.box-hover-detail:hover:before {
  opacity: 0;
  visibility: hidden;
}

.box-hover-detail:focus:after,
.box-hover-detail:hover:after {
  opacity: 0.85;
  visibility: visible;
}

.left-content-detail h2 {
  font-size: 40px;
  font-weight: 600;
  font-style: normal;
  color: var(--rich-black);
  line-height: 60px;
  text-align: start;
}

.bg-f7fafd {
  background-color: #f7fafd;
}

.hover-image-detail {
  margin-bottom: 6rem;
}

.left-content-detail {
  justify-content: center;
  align-items: center;
}

.left-content-detail p {
  margin-bottom: 20px;
  font-style: normal;
  font-size: 17px;
  color: #161718;
  letter-spacing: 0.4px;
}

.image-right-content-left-detail {
  padding-top: 80px;
  padding-bottom: 80px;
}

.right-image-detail {
  text-align: center;
}

.left-image-detail {
  text-align: center;
}

.left-content-detail a {
  display: block;
  text-align: center;
  background-color: var(--rich-black);
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 500;
  font-family: Poppins, sans-serif;
  font-style: normal;
  color: var(--bs-white);
  text-decoration: none;
  outline: none;
  border: 2px solid var(--rich-black);
  width: max-content;
  transition: all 0.2s ease-in 0s;
}

.left-content-detail a:hover {
  border: 2px solid var(--rich-black);
}

@media screen and (max-width: 1400px) {
  .banner-content {
    margin-left: 5rem;
  }
}

@media screen and (max-width: 1000px) {
  .banner-content {
    margin: 4rem auto;
    text-align: -webkit-center;
  }

  .banner-image {
    text-align: center;
  }

  .banner-content p {
    text-align: center;
  }

  .banner-content h1 {
    font-size: 50px;
    line-height: 46px;
    margin-bottom: 10px;
  }

  .banner-content p {
    font-size: 17px;
    line-height: 26px;
    margin-bottom: 0;
  }

  .banner-content a {
    margin-top: 25px;
  }

  .animation-heading h2 {
    font-size: 35px;
    line-height: 38px;
  }

  .left-content-detail h2 {
    font-size: 35px;
    line-height: 38px;
  }

  .right-content h2 {
    font-size: 35px;
    line-height: 38px;
    padding-top: 30px;
  }

  .right-image-detail img {
    margin-top: 60px;
  }

  .slider-flex-content {
    column-gap: 40px;
    flex-wrap: wrap;
    row-gap: 15px;
  }
}

@media screen and (max-width: 768px) {
  .banner-content h1 {
    font-size: 40px;
    line-height: 46px;
    margin-bottom: 10px;
  }

  .back-col {
    font-size: 16px;
  }

  .banner-content p {
    font-size: 17px;
    line-height: 26px;
    margin-bottom: 0;
  }

  .banner-content a {
    margin-top: 25px;
  }

  .animation-heading h2 {
    font-size: 30px;
    line-height: 38px;
  }

  .left-content-detail h2 {
    font-size: 28px;
    line-height: 38px;
  }

  .animation-heading p {
    font-size: 17px;
    letter-spacing: 0.6px;
  }

  .box-hover-detail p {
    font-size: 17px;
    letter-spacing: 0.6px;
  }

  .box-hover-detail h3 {
    font-size: 20px;
  }

  .left-content-detail p {
    font-size: 17px;
    letter-spacing: 0.6px;
  }

  .right-image-detail img {
    margin-top: 60px;
    max-width: 350px;
    width: 100%;
  }

  .left-image-detail img {
    max-width: 350px;
    width: 100%;
  }

  .right-content h2 {
    padding-top: 40px;
  }
}

@media screen and (max-width: 450px) {
  .banner-content h1 {
    font-size: 36px;
  }

  .banner-content p {
    font-size: 15px;
  }

  .animation-heading h2 {
    font-size: 28px;
  }

  .animation-heading p {
    font-size: 15px;
  }

  .box-hover-detail p {
    font-size: 15px;
  }

  .left-content-detail h2 {
    font-size: 28px;
  }

  .left-content-detail p {
    font-size: 15px;
  }
}

/* ---------pre code------------------------------ */

.content-detail pre {
  border: 1px solid var(--rich-black);
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 1em;
  background-color: var(--rich-black);
  padding: 5px 10px;
  border-radius: 5px;
}

.content-detail pre code {
  background-color: var(--rich-black);
  color: #fff;
  font-size: 17px;
  font-family: var(--font-poppins);
  letter-spacing: 0.4px;
  margin-bottom: 0;
  padding: 5px 5px;
  display: inline-block;
  font-weight: 400;
}

.align-change {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px !important;
}

.grid-client-structure {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  place-items: center;
  row-gap: 40px !important;
}

.align-changed {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 90% !important;
}

.align-changed p {
  text-align: center !important;
  font-size: 16px !important;
  margin-bottom: 30px !important;
}

.align-changed h2 {
  font-size: 33px !important;
}

@media screen and (max-width: 1400px) {
  .grid-client-structure {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    place-items: center;
  }
}

@media screen and (max-width: 1200px) {
  .grid-client-structure {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    place-items: center;
  }
}

@media screen and (max-width: 992px) {
  .grid-client-structure {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    place-items: center;
  }
}

@media screen and (max-width: 768px) {
  .grid-client-structure {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    place-items: center;
  }

  @media screen and (max-width: 460px) {
    .grid-client-structure {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 15px;
      place-items: center;
    }
  }

  .align-changed p {
    text-align: start !important;
  }
}

.grid-width-set {
  width: 100% !important;
  max-width: 177px !important;
}

.font-set-seciton h2 {
  font-size: 31px !important;
}

/* strip css start */

.stripe-diwali {
  height: auto;
  width: 100%;
  overflow: hidden;
}

.stripe-img {
  height: auto;
  width: 100%;
  display: block;
  position: relative;
}

.stripe-img img {
  height: auto;
  width: 100%;
}

@media screen and (max-width: 500px) {
  .desktop-balck {
    display: none;
  }

  .mobile-balck {
    display: block;
  }
}

@media screen and (min-width: 501px) {
  .desktop-balck {
    display: block;
  }

  .mobile-balck {
    display: none;
  }
}

/* strip css end */
/* ----------------------------------new header design start---------------------------------------------- */

.header.header_traval_new {
  background-color: #f8f9fa;
  padding: 15px;
}

.header_traval_new .dataset-section {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.header_traval_new .dataset-card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 15px;
  flex: 1;
  max-width: 30%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header_traval_new .dataset-card i {
  font-size: 20px;
  margin-bottom: 10px;
}

.header_traval_new .always-improving {
  padding: 15px;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* CSS */
.new-header-design {
  background-color: #0a2640;
  color: #fff;
  padding: 20px 0;
}

.new-header-design .navbar-brand {
  font-size: 24px;
  font-weight: bold;
}

.new-header-design .nav-link {
  color: #fff;
  font-size: 16px;
  margin-left: 20px;
}

.new-header-design .dataset-interface {
  background-color: #f2f2f2;
  padding: 50px 0;
  /* display: none; */
}

.new-header-design .dataset-interface .dataset-item {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.new-header-design .dataset-interface .dataset-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.new-header-design .navbar-brand img {
  max-width: 300px;
  /* Set the desired width for the logo image */
  width: 100%;
}

/* CSS */
.new-header-design .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.new-header-design .navbar-brand {
  margin-right: 20px;
}

.new-header-design .navbar-nav {
  display: flex;
  align-items: center;
}

.navbar-nav {
  margin-left: 30px !important;
}

.new-header-design .nav-link {
  margin-left: 20px;
}

.new-header-design .button {
  background-color: #ffda3d;
  color: #0a2640;
  padding: 8px 16px;
  border-radius: 4px;
  margin-left: 20px;
  border: none;
  cursor: pointer;
}

.new-header-design .button a {
  color: #0a2640;
  text-decoration: none;
}

.new-header-design>.container {
  display: flex;
  justify-content: space-between;
}

/* ------------------ */

.new-main-header:before {
  background: linear-gradient(to bottom, rgba(18, 19, 21, 0.08), transparent);
  content: "";
  height: 1rem;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 5300;
}

.new-main-header {
  z-index: 9999;
  position: absolute;
  height: 5rem;
  margin-top: -3px;
  width: 100%;
  background-color: white;
}

.new-traval-header.navfix {
  position: sticky !important;
  top: 0 !important;
  left: 0;
  background-color: #141632;
  animation: 300ms ease-in-out fadeInDown;
  transition: all 0.2s ease;
  border-top: 7px solid red;
}

@media screen and (min-width: 1201px) {
  .navhover {
    background-color: #fff;
    animation: 300ms ease-in-out fadeInDown;
  }
}

header.navhover .new-nav .new-dropdown .new-link,
header.navfix .new-nav .new-dropdown .new-link {
  color: var(--bs-dark-black);
}

.new-main-header .navbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0rem;
  padding-bottom: 0rem;
  max-width: 92%;
  margin: 0 auto;
  position: initial;
}

.navbar-brand-logo {
  width: 300px;
  height: auto;
}

.navbar-brand-logo img {
  width: 100%;
  height: 100%;
}

.new-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.new-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 1601px) {
  .new-nav .new-dropdown:hover .new-link::after {
    content: "";
    height: 6px;
    width: 100%;
    bottom: 9px;
    background: #e1e2e5;
    position: absolute;
    border-radius: 10px;
  }

  .new-nav .new-dropdown .new-link:hover::after {
    width: 100%;
  }
}

.new-nav .new-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  /* display: none; */
  padding: 0;
  width: 100%;
  /* min-height: 310px; */
  background: #fff;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, height 0.3s ease;
}

.new-dropdown-menu.active {
  display: block;
}

.new-drop-menu-flex {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  height: 100%;
}

.hover-small:hover {
  background-image: linear-gradient(to top, #cde5ff 0%, #cde5ff 100%);
}

.new-dropdwon-box.dropdown-small-box-full:hover {
  box-shadow: none;
}

.new-bg-career {
  background-image: url(../new-img/header/new-image/resources/Careers.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.bg-legal {
  padding-left: 0 !important;
}

.dropdown-small-box {
  width: 25%;
}

.drop-box-part-small-1 {
  width: 20%;
  height: 100%;
}

.drop-box-part-small-2 {
  width: 80%;
  display: flex;
  flex-wrap: wrap;
}

.drop-box-part-small-flex {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.dropdown-extrasmall-box {
  width: 20%;
}

.dropdown-small-box-full {
  padding: 12px 15px 12px 28px;
}

.drop-box-part-small-one,
.drop-box-part-small-three {
  width: 20%;
  /* min-height: 630px; */
  max-height: 675px;
  height: 675px;
  overflow-y: auto;
}

.drop-box-part-small-three::-webkit-scrollbar-track {
  background: #d7dfff;
  border-radius: 15px;
}

.drop-box-part-small-three::-webkit-scrollbar {
  width: 4px;
}

.drop-box-part-small-three::-webkit-scrollbar-thumb {
  background: #010e2b !important;
  border-radius: 15px;
}

.drop-box-part-small-two {
  width: 60%;
  display: flex;
  flex-wrap: wrap;
  max-height: 675px;
  height: 675px;
  overflow-y: auto;
}

.drop-box-part-small-one .new-dropdwon-box,
.drop-box-part-small-three .new-dropdwon-box {
  height: 100%;
}

.drop-box-part-small-two .new-dropdwon-box {
  height: auto;
}

.dropdown-medium-box {
  width: 33.33%;
}

.dropdown-larg-box {
  width: 20%;
  min-height: 310px;
}

.dropdown-extra-larg-box {
  width: calc(100% / 6);
  min-height: 310px;
}

.new-menu .new-nav .new-dropdown-menu .drop-box-flex {
  display: block;
  width: 100%;
  /* height: 100%; */
  overflow-y: auto;
  position: relative;
}

.new-dropdwon-box {
  padding: 25px 15px 18px 38px;
}

.new-dropdwon-box.dropdown-extra-larg-box:nth-of-type(1) {
  padding: 25px 15px 25px 38px;
}

.new-dropdwon-box.dropdown-extra-larg-box:nth-last-of-type(1) {
  padding: 25px 15px 25px 20px;
}

.new-dropdwon-box.dropdown-extra-larg-box {
  padding: 25px 5px 25px 5px;
}

.new-dropdwon-box.dropdown-small-box {
  padding: 15px 15px 15px 28px;
}

.new-dropdwon-box.dropdown-extrasmall-box {
  padding: 15px 15px 15px 28px;
}

.dropdown-subtitle {
  font-family: var(--bs-font-monospace);
  color: #656565;
  display: block;
  line-height: 28px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
  opacity: 0.8;
  margin-bottom: 10px;
  height: 30px;
}

.new-dropdown-navlink {
  font-family: var(--bs-font-monospace);
  color: var(--bs-dark-black);
  display: block;
  line-height: 30px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
  margin-bottom: 6px;
}

.new-drop-title-tag {
  line-height: 20px;
  color: #000;
}

.new-dropdown-flex {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 6px 10px;
  border-radius: 5px;
}

.new-dropdown-flex img {
  height: 22px;
  width: 22px;
  margin-right: 10px;
}

.dropdown-box-link {
  text-decoration: none;
  width: 100%;
  height: auto;
  display: block;
}

.dropdown-box-link img {
  width: 53px;
  height: 53px;
  display: block;
  margin-bottom: 6px;
}

.new-drop-box-link-data {
  min-height: 170px;
  margin-top: 10px;
}

.new-drop-box-dashbord-data {
  min-height: auto;
  margin-top: 10px;
}

.new-dropdown-title {
  font-family: var(--bs-font-monospace);
  color: var(--bs-dark-black);
  display: block;
  line-height: 28px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.new-dropdown-title-bold {
  font-family: var(--bs-font-monospace);
  color: var(--bs-dark-black);
  display: block;
  line-height: 28px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  margin-bottom: 10px;
}

.new-dropdown-subtitle {
  font-family: var(--bs-font-monospace);
  color: var(--bs-dark-black);
  display: block;
  line-height: 20px;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-decoration: none;
  font-style: normal;
}

.new-drop-button {
  position: relative;
}

.new-drop-button {
  position: relative;
  font-family: var(--bs-font-monospace);
  color: var(--bs-dark-black);
  display: inline-flex;
  line-height: 28px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
  font-style: normal;
  align-items: center;
}

.new-drop-button::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  filter: grayscale(100%);
  background-image: url(../new-img/header/icon/product/arrow-right.svg);
  transition: 0.2s;
  background-repeat: no-repeat;
  background-size: contain;
}

.new-drop-button-update {
  font-size: 14px;
  padding: 0 15px;
}

.new-drop-button-update:after {
  width: 14px;
  height: 14px;
  padding-left: 2px;
}

.new-drop-button:hover {
  color: #175cff;
}

.new-drop-button:hover::after {
  filter: grayscale(0%);
  transition: 0.2s;
  transform: translateX(5px);
}

.new-drop-box-button {
  position: relative;
  font-family: var(--bs-font-monospace);
  color: var(--bs-white);
  display: inline-flex;
  line-height: 28px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
  font-style: normal;
  align-items: center;
  padding: 7px 20px;
  border-radius: 8px;
  border: 1px solid #fff;
  margin-top: 5px;
}

.new-drop-box-button:hover {
  color: #000;
  background-color: #fff;
  border-color: #fff;
}

.new-drop-box-button-black {
  color: #fff;
  border-color: #000;
  background-color: #000;
}

.new-drop-box-button-black:hover {
  color: #000;
  border-color: #000;
  background-color: #fff;
}

.subtitle-white {
  color: #fff !important;
}

.title-white {
  color: #fff !important;
}

.title-white .new-drop-title-tag {
  color: #fff !important;
}

.subtitle-padding {
  padding: 0px 10px;
}

.new-dropdown-flex:hover {
  background-color: #ebedf5;
  color: #000 !important;
  transition: 0.2s;
}

.hover-white:hover {
  background-color: #fff;
  color: #000 !important;
  transition: 0.2s;
}

.hover-transparent:hover {
  background-color: #dde7eb80;
  color: #000 !important;
  transition: 0.2s;
}

.new-dropdown-flex:hover .new-drop-title-tag {
  color: #000 !important;
}

.dropdown-link-title {
  font-family: var(--bs-font-monospace);
  color: #000;
  display: block;
  line-height: 28px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
  opacity: 1;
  margin-bottom: 10px;
  height: 30px;
}

.dropdown-link-title a {
  text-decoration: none;
  color: #000;
}

.blog-details-info ul {
  list-style: disc;
  margin: 10px 0;
}

.drop-link-white {
  color: #fff;
}

.drop-link-white a {
  color: #fff;
}

.subtitle-black {
  color: #000 !important;
}

.bg-juicy {
  background-image: linear-gradient(to right, #ffecd2 0%, #fcb69f 100%);
}

.bg-night {
  background-image: linear-gradient(to top, #a18cd1 0%, #fbc2eb 100%);
}

.bg-ink {
  background-image: linear-gradient(to top, #accbee 0%, #e7f0fd 100%);
}

.bg-romors {
  background-image: linear-gradient(to top, #accbee 0%, #e7f0fd 100%);
}

.bg-solution {
  background-color: #7473bf;
  background-image: linear-gradient(135deg, #7473bf 0%, #767cec 27%);
}

.bg-sky {
  background-image: linear-gradient(135deg, #ffe8d6 0%, #ffe8d6 100%);
}

.bg-pur {
  background-image: linear-gradient(355deg, #908aff 0%, #908aff 100%);
}

.bg-blue {
  background-image: linear-gradient(135deg, #8bc6ec 0%, #9599e2 100%);
}

.bg-orange {
  background-image: linear-gradient(174deg, #ffab76 0%, #ff8845 100%);
}

.bg-green {
  background-image: linear-gradient(to top, #65c9b8 0%, #c0fff4 100%);
}

.bg-red {
  background-image: linear-gradient(180deg,
      #ffa5a5 0%,
      #ffa5a5 50%,
      #ff9696 100%);
}

.bg-pur {
  background-image: linear-gradient(to top, #ae84ef 0%, #ae84ef 100%);
}

.bg-litesky {
  background-image: linear-gradient(62deg, #daebff 0%, #daebff 100%);
}

.bg-offsky {
  background-image: linear-gradient(62deg, #d7f1fd 0%, #d7f1fd 100%);
}

.bg-lightpink {
  background-image: linear-gradient(to top, #efcde6 0%, #ffe6f8 100%);
}

.bg-lightpurple {
  background-image: linear-gradient(to top, #f3eff7 0%, #ffffff 100%);
}

.bg-reddark {
  background-image: linear-gradient(to top, #853838 0%, #975a5a 100%);
}

.bg-liteblue {
  background-image: linear-gradient(to right, #105290 0%, #3f91df 100%);
}

.bg-litegreen {
  background-image: linear-gradient(to right, #1c5261 0%, #3992ad 100%);
}

.bg-fulllightgreen {
  background-color: #effff9;
}

.bg-light-sky {
  background-image: linear-gradient(to top, #cde5ff 0%, #f2f7ff 100%);
}

.bg-dark-sky {
  background-image: linear-gradient(to top, #f2f7ff 0%, #cde5ff 100%);
}

.bg-extralight-sky {
  background-image: linear-gradient(to top, #d1cdff 0%, #f6f2ff 100%);
}

.bg-extradark-sky {
  background-image: linear-gradient(to top, #f6f2ff 0%, #d1cdff 100%);
}

.bg-light-pink {
  background-image: linear-gradient(to top, #f3c8e2 0%, #f5b3db 100%);
}

.bg-dark-blue {
  background-image: linear-gradient(to right, #1c3461 0%, #3983ad 100%);
}

.bg-off-pink {
  background-image: linear-gradient(to top, #f5eeff 0%, #f5eeff 100%);
}

.hover-extrasmall:hover {
  background-image: linear-gradient(to top, #dedcff 0%, #dedcff 100%);
}

.hover-small-extra:hover {
  background-image: linear-gradient(to top, #dedcff 0%, #dedcff 100%);
}

.bg-report {
  background: linear-gradient(to right, #ffecd2 0%, #fcb69f 100%);
  background-image: url(../new-img/header/img/resources/NEW_Report_Bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.bg-dashboard {
  background: linear-gradient(to top, #accbee 0%, #e7f0fd 100%);
  background-image: url(../new-img/header/img/resources/NEW-Dashboard.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.new-bg-blog {
  background: linear-gradient(to top, #a18cd1 0%, #fbc2eb 100%);
  background-image: url(../new-img/header/img/resources/Blog_Bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.bg-time {
  background: url(../new-img/header/img/product/times-of-india-awards-Bg.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

.nav-dashbord-content {
  margin-top: 0;
  height: 55%;
  background-color: #c9d6ec61;
}

.nav-dashbord-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  padding: 8px 28px;
  border-top: 1px solid #c0b4d8;
  transition: all 0.3s ease;
}

.nav-dashbord-link:hover {
  background-color: #c9d6ecc2;
  transition: all 0.3s ease;
}

.nav-dashbord-link-data {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.nav-dash-icon {
  margin-right: 10px;
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-dash-icon img {
  height: 35px;
  width: 35px;
}

.nav-dash-title {
  position: relative;
  font-family: var(--bs-font-monospace);
  color: #322c3c;
  display: inline-flex;
  line-height: 26px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  font-style: normal;
  align-items: center;
}

.nav-dash-arrow {
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-dash-arrow i {
  font-size: 20px;
  color: #322c3c;
  transform: translateX(-10px);
  transition: all 0.5s ease;
}

.nav-dashbord-link:hover .nav-dash-arrow i {
  transform: translateX(0px);
  transition: all 0.5s ease;
}

.new-dropdwon-box.dropdown-small-box.dashboard-pd-0 {
  padding: 0;
}

.new-dashbord-box .dropdown-box-link {
  padding: 15px 15px 15px 28px;
  height: 45%;
}

.new-dashbord-box .drop-box-flex {
  height: 100%;
}

/* ------ industry dropdown ------- */

.new-industry-box-flex {
  display: block;
}

.new-industry-box {
  display: inline-block;
  cursor: pointer;
}

.new-dropdown-flex i {
  line-height: 18px;
  display: block;
  padding: 6px 4px;
  font-size: 15px;
  margin-left: 4px;
}

.industry-dropdown-menu {
  display: block;
  padding: 12px 15px;
  background: linear-gradient(to top, #efcde6 0%, #ffe6f8 100%);
  border-radius: 5px;
}

.industry-dropdown-menu a {
  display: block;
}

.new-industry-box .industry-dropdown-menu {
  display: none;
}

.new-industry-box.open-drop-box .new-dropdown-flex i {
  transform: rotate(-180deg);
}

.new-industry-box.open-drop-box .industry-dropdown-menu {
  display: block;
}

.new-badge {
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  padding: 0.2rem 0.4rem;
  line-height: 1;
  white-space: nowrap;
  color: var(--bs-dark-light);
  background-color: rgb(180 243 178);
  margin-left: 3px;
}

#new-popup-open-btn {
  background-color: #fbde00 !important;
  border-color: #fbde00 !important;
  /* box-shadow: 0 11px 18px -8px rgb(41 6 96 / 60%); */
  cursor: pointer;
  font-size: 18px;
  color: black;
  transition: all 0.3s ease-in-out;
  padding: 0.55rem 1.75rem;
  position: relative;
  font-weight: 500;
  border-radius: 0.375rem;
  /* font-family: var(--bs-font-monospace); */
  border: 2px solid transparent;
}

#new-popup-open-btn:hover {
  box-shadow: none;
}

#new-popup-close-btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 30px;
  width: 30px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: #0b00d9;
}

#new-popup-close-btn:hover {
  background-color: #665eff;
  transition: all 0.3s;
}

#new-popup-close-btn i {
  color: #fff;
}

.new-pop-social {
  margin-top: 10px;
}

.new-popup-item {
  display: inline-block;
  background: #290660;
  margin-right: 10px;
  border-radius: 2px;
}

.new-popup-item a {
  color: #fff;
  display: inline-flex;
  width: 36px;
  height: 36px;
  line-height: 32px;
  text-align: center;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  align-items: center;
  justify-content: center;
}

.new-pop-social-list {
  padding-left: 0;
  margin-bottom: 0;
}

.white-bg-form {
  background: #ffffff9e;
  padding: 30px;
  border-radius: 15px;
}

header.navhover .new-nav .new-dropdown .new-link,
header.navfix .new-nav .new-dropdown .new-link {
  /* color: var(--bs-dark-black); */
  color: #202224;
}

.new-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.new-nav .new-dropdown {
  display: inline-block;
  margin-right: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
}

.new-nav .new-dropdown .new-link {
  text-decoration: none;
  /* font-size: 15px; */
  position: relative;
  /* font-family: var(--bs-font-monospace); */
  /* color: var(--bs-secondary-dark); */
  color: #202224;
  letter-spacing: 0.2px;
  height: 100%;

  display: flex;
  align-items: center;
}

.new-menu .new-nav .new-dropdown-menu .drop-box-flex {
  display: block;
  width: 100%;
  /* height: 100%; */
  overflow-y: auto;
  position: relative;
}

.new-dropdwon-box {
  padding: 25px 15px 18px 38px;
}

.new-dropdwon-box.dropdown-extra-larg-box:nth-of-type(1) {
  padding: 25px 15px 25px 38px;
}

.new-dropdwon-box.dropdown-extra-larg-box:nth-last-of-type(1) {
  padding: 25px 15px 25px 20px;
}

.new-dropdwon-box.dropdown-extra-larg-box {
  padding: 25px 5px 25px 5px;
}

.new-dropdwon-box.dropdown-small-box {
  padding: 15px 15px 15px 28px;
}

.new-dropdwon-box.dropdown-extrasmall-box {
  padding: 15px 15px 15px 28px;
}

.dropdown-subtitle {
  font-family: var(--bs-font-monospace);
  color: #656565;
  display: block;
  line-height: 28px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
  opacity: 0.8;
  margin-bottom: 10px;
  height: 30px;
}

.new-dropdown-navlink {
  font-family: var(--bs-font-monospace);
  color: var(--bs-dark-black);
  display: block;
  line-height: 30px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
  margin-bottom: 6px;
}

.new-drop-title-tag {
  line-height: 20px;
  color: #000;
}

.new-dropdown-flex {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 6px 10px;
  border-radius: 5px;
}

.new-dropdown-flex img {
  height: 22px;
  width: 22px;
  margin-right: 10px;
}

.dropdown-box-link {
  text-decoration: none;
  width: 100%;
  height: auto;
  display: block;
}

.dropdown-box-link img {
  width: 53px;
  height: 53px;
  display: block;
  margin-bottom: 6px;
}

.new-drop-box-link-data {
  min-height: 170px;
  margin-top: 10px;
}

.new-drop-box-dashbord-data {
  min-height: auto;
  margin-top: 10px;
}

.new-dropdown-title {
  font-family: var(--bs-font-monospace);
  color: var(--bs-dark-black);
  display: block;
  line-height: 28px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.new-dropdown-title-bold {
  font-family: var(--bs-font-monospace);
  color: var(--bs-dark-black);
  display: block;
  line-height: 28px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  margin-bottom: 10px;
}

.new-dropdown-subtitle {
  font-family: var(--bs-font-monospace);
  color: var(--bs-dark-black);
  display: block;
  line-height: 20px;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-decoration: none;
  font-style: normal;
}

.new-drop-button {
  position: relative;
}

.new-drop-button {
  position: relative;
  font-family: var(--bs-font-monospace);
  color: var(--bs-dark-black);
  display: inline-flex;
  line-height: 28px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
  font-style: normal;
  align-items: center;
}

.new-drop-button::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  filter: grayscale(100%);
  background-image: url(../new-img/header/icon/product/arrow-right.svg);
  transition: 0.2s;
  background-repeat: no-repeat;
  background-size: contain;
}

.new-drop-button-update {
  font-size: 14px;
  padding: 0 15px;
}

.new-drop-button-update:after {
  width: 14px;
  height: 14px;
  padding-left: 2px;
}

.new-drop-button:hover {
  color: #175cff;
}

.new-drop-button:hover::after {
  filter: grayscale(0%);
  transition: 0.2s;
  transform: translateX(5px);
}

.new-drop-box-button {
  position: relative;
  font-family: var(--bs-font-monospace);
  color: var(--bs-white);
  display: inline-flex;
  line-height: 28px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
  font-style: normal;
  align-items: center;
  padding: 7px 20px;
  border-radius: 8px;
  border: 1px solid #fff;
  margin-top: 5px;
}

.new-drop-box-button:hover {
  color: #000;
  background-color: #fff;
  border-color: #fff;
}

.new-drop-box-button-black {
  color: #fff;
  border-color: #000;
  background-color: #000;
}

.new-drop-box-button-black:hover {
  color: #000;
  border-color: #000;
  background-color: #fff;
}

.subtitle-white {
  color: #fff !important;
}

.title-white {
  color: #fff !important;
}

.title-white .new-drop-title-tag {
  color: #fff !important;
}

.subtitle-padding {
  padding: 0px 10px;
}

.new-dropdown-flex:hover {
  background-color: #ebedf5;
  color: #000 !important;
  transition: 0.2s;
}

.hover-white:hover {
  background-color: #fff;
  color: #000 !important;
  transition: 0.2s;
}

.hover-transparent:hover {
  background-color: #dde7eb80;
  color: #000 !important;
  transition: 0.2s;
}

.new-dropdown-flex:hover .new-drop-title-tag {
  color: #000 !important;
}

.dropdown-link-title {
  font-family: var(--bs-font-monospace);
  color: #000;
  display: block;
  line-height: 28px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
  opacity: 1;
  margin-bottom: 10px;
  height: 30px;
}

.dropdown-link-title a {
  text-decoration: none;
  color: #000;
}

.blog-details-info ul {
  list-style: disc;
  margin: 10px 0;
}

.drop-link-white {
  color: #fff;
}

.drop-link-white a {
  color: #fff;
}

.subtitle-black {
  color: #000 !important;
}

.nav-dashbord-content {
  margin-top: 0;
  height: 55%;
  background-color: #c9d6ec61;
}

.nav-dashbord-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  padding: 8px 28px;
  border-top: 1px solid #c0b4d8;
  transition: all 0.3s ease;
}

.nav-dashbord-link:hover {
  background-color: #c9d6ecc2;
  transition: all 0.3s ease;
}

.nav-dashbord-link-data {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.nav-dash-icon {
  margin-right: 10px;
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-dash-icon img {
  height: 35px;
  width: 35px;
}

.nav-dash-title {
  position: relative;
  font-family: var(--bs-font-monospace);
  color: #322c3c;
  display: inline-flex;
  line-height: 26px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  font-style: normal;
  align-items: center;
}

.nav-dash-arrow {
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-dash-arrow i {
  font-size: 20px;
  color: #322c3c;
  transform: translateX(-10px);
  transition: all 0.5s ease;
}

.nav-dashbord-link:hover .nav-dash-arrow i {
  transform: translateX(0px);
  transition: all 0.5s ease;
}

.new-dropdwon-box.dropdown-small-box.dashboard-pd-0 {
  padding: 0;
}

.new-dashbord-box .dropdown-box-link {
  padding: 15px 15px 15px 28px;
  height: 45%;
}

.new-dashbord-box .drop-box-flex {
  height: 100%;
}

.button:hover {
  color: #fbde00;
  border: 1px solid #fbde00;
}

/* ===================================== MOBILE MENU =============================================== */

.new-traval-header .hamburger-menu {
  width: 32px;
  cursor: pointer;
  line-height: 8px;
  z-index: 999;
  height: 32px;
}

.new-traval-header .new-main-header .hamburger-menu span {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: #fff;
  transition: all 0.5s;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.new-traval-header .hamburger-menu span:nth-child(2) {
  width: 22px;
}

.new-traval-header .hamburger-menu span:last-child {
  width: 12px;
}

.new-traval-header .hamburger-menu.active-icon span {
  margin-top: 15px;
  position: absolute;
  width: 32px;
}

.new-traval-header .hamburger-menu.active-icon span:first-child {
  transform: rotate(-135deg);
}

.new-traval-header .hamburger-menu.active-icon span:nth-child(2) {
  transform: rotate(135deg);
}

.new-traval-header .hamburger-menu.active-icon span:last-child {
  margin-top: 30px;
  width: 0px;
  display: none;
}

.new-traval-header .hamburger-menu.active-icon span {
  background: #37454e;
}

.new-traval-header .new-main-header.navfix .hamburger-menu span {
  background: #37454e;
}

.new-traval-header .hover-none {
  box-shadow: none !important;
}

.new-traval-header .new-menu .new-nav .new-dropdown-menu .award-flex {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.new-traval-header .new-award-logo {
  display: grid;
  grid-auto-columns: 1fr;
  margin-right: auto;
  margin-left: auto;
  grid-column-gap: 5px;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 20px;
}

.new-traval-header .new-award-logo img {
  height: 100px;
  width: 100px;
}

.new-traval-header .new-certification {
  display: grid;
  grid-auto-columns: 1fr;
  grid-row-gap: 25px;
  margin-right: auto;
  grid-column-gap: 25px;
  grid-template-columns: 2fr 2fr;
  grid-template-rows: auto;
  width: max-content;
}

.new-traval-header .new-certification img {
  width: 105px;
  height: 105px;
}

.new-traval-header .new-menu .new-nav {
  margin-right: 60px;
}

/* New Header Sub Menu CSS */
.submenu_main {
  width: 100%;
  background: white;
}

.submenu_main .submenu_inner {
  width: 100%;
}

.submenu_main .submenu_inner .subenu_inner_data {
  width: 100%;
  display: flex;
  max-width: 1800px;
  margin-left: auto;
  padding: 0 10px;
}

.submenu_main .submenu_inner .subenu_inner_data .submenu_details {
  flex-basis: 70%;
  display: flex;
  flex-wrap: wrap;
  height: fit-content;
  padding-top: 30px;
}

.submenu_heading {
  padding-bottom: 20px;
}

.submenu_main .submenu_inner .subenu_inner_data .submenu_updated {
  flex-basis: 30%;
  background-color: #fafbfd;
}

.submenu_main .submenu_inner .subenu_inner_data .submenu_details .golabal_fight_inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.submenu_main .submenu_details .golabal_fight_inner .golabal_fight {
  max-width: 24%;
}

.submenu_heading h1 {
  text-decoration: none;
  font-size: 18px;
  margin: 0;
  font-weight: 600;
  position: relative;
  color: black;
  letter-spacing: 1.5px;
}

.submenu_main .golabal_fight .golabal_details .golabal_link img {
  height: 15px;
  width: 15px;
  margin-right: 5px;
}

.submenu_main .golabal_fight .golabal_details .golabal_link a.new-jul-dropdown-item-link {
  text-decoration: none;
}

.submenu_main .golabal_fight .golabal_details .golabal_link a .golabal-new-jul-dropdown-link-flex {
  display: flex;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  color: black;
  letter-spacing: 0px;
  line-height: normal;
  margin-bottom: 0px;
}

.submenu_main .golabal-new-jul-dropdown-link-title {
  color: #141632;
}

.golabal-new-jul-dropdown-link-title {
  color: #6d7178;
  font-size: 14px;
  font-weight: 400;
  width: 100%;
}

.golabal_link_pera p {
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  position: relative;
  color: #677489;
  letter-spacing: 1px;
  line-height: 22px;
  padding: 5px 5px 5px 0px !important;
  color: #6d7178;
}

.improving {
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  padding-left: 50px;
  padding-bottom: 50px;
}

.improving .improving_pera {
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
  color: black;
  letter-spacing: 1px;
  line-height: 20px;
  margin-bottom: 8px;
}

.improving_img {
  max-width: 400px;
}

.improving_img img {
  width: 100%;
  height: 200px;
}

.improving_update .remap_arrow {
  display: flex;
  align-items: center;
}

.improving_update .remap_arrow img {
  width: 15px;
  margin-right: 10px;
}

.improving_arrow {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.improving_update .remap_arrow.remap_arrow_inner .remap_details {
  color: #111b29;
}

.remap_details {
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  position: relative;
  color: #6d7178;
  letter-spacing: 1px;
  line-height: 14px;
}

a.arrow_left {
  display: flex;
  margin-top: 10px;
  /* gap: 10px; */
  align-items: center;
  text-decoration: none;
}

.submenu_main .golabal-new-jul-dropdown-link-flex {
  display: flex;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  color: black;
  letter-spacing: 0px;
  line-height: normal;
  margin-bottom: 0px;
}

.submenu_main .golabal-new-jul-dropdown-link-flex img {
  height: 15px;
  width: 15px;
  margin-right: 10px;
}

.flight_inner h1,
h2 {
  text-decoration: none;
  font-size: 18px;
  margin: 0;
  font-weight: 600;
  position: relative;
  color: black;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
}

/* .flight_inner h1:hover {
  background-color: #f3f3f3 !important;
} */

.flight_inner {
  width: 100%;
  gap: 10px;
  flex-wrap: wrap;
  display: flex;
  max-width: 1660px;
  margin-left: auto;
  padding: 50px 10px;
}

.flight_inner_main h2 {
  /* width: 22%; */
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
}

.flight_inner_main:last-child {
  background-color: #fafbfd;
  padding: 10px 0px 0px 50px;
  width: 30%;
}

.golabal_link {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.golabal_link a.new-jul-dropdown-item-link {
  text-decoration: none;
}

.flight_img {
  max-width: 400px;
}

.flight_img img {
  width: 100%;
  height: 180px;
}

.flight_inner_main:last-child p {
  text-decoration: none;
  font-size: 17px;
  line-height: 18px;
  margin: 0;
  font-weight: 600;
  position: relative;
  max-width: 400px;
  color: #111b29;
  letter-spacing: 1px;
  margin-top: 10px;
}

.flight_inner_main:last-child p a {
  color: #111b29;
  font-size: 18px;
  font-weight: bold;
}

.flight_inner_main a {
  text-decoration: none;
}

.subenu_inner_data.subenu_inner_data_industries {
  width: 100%;
  flex-wrap: wrap;
  display: flex;
  max-width: 1660px;
  margin-left: auto;
}

.subenu_inner_data.subenu_inner_data_industries .flight_inner {
  max-width: 100%;
  flex-basis: 70%;
  padding-bottom: 0;
  height: fit-content;
}

.subenu_inner_data.subenu_inner_data_industries .flight_inner img {
  height: 15px;
  width: 15px;
  margin-right: 10px;
}

.subenu_inner_data.subenu_inner_data_industries .golabal-new-jul-dropdown-link-flex {
  display: flex;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  color: black;
  letter-spacing: 1px;
  line-height: normal;
  margin-bottom: 0px;
}

.subenu_inner_data.subenu_inner_data_industries .submenu_updated {
  flex-basis: 30%;
  background-color: #f5faff;
}

.subenu_inner_data.subenu_inner_data_industries .flight_inner .flight_inner_main {
  width: 30%;
  margin-bottom: 25px;
}

.subenu_inner_data.subenu_inner_data_industries .flight_inner_main:last-child {
  background-color: unset;
  padding: 10px;
}

.case_study_main {
  background-color: white;
  width: 100%;
}

.case_study_main .case_study_inner {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  max-width: 1660px;
  padding-top: 50px;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: auto;
  gap: 10px;
}

.case_study_main .case_study_inner .case_hotel {
  width: 48%;
  margin-bottom: 20px;
}

.case_study_main .case_study_inner .case_hotel:nth-child(even) {
  width: 48%;
}

.case_study_main .case_study_inner .case_hotel h1 {
  text-decoration: none;
  font-size: 18px;
  margin: 0;
  font-weight: 600;
  position: relative;
  color: #97a3b7;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
}

.case_hotel_inner {
  display: flex;
  gap: 15px;
}

.case_hotel_inner_img .case_img {
  max-width: 300px;
  margin-bottom: 10px;
}

.case_hotel_inner_img h3 {
  display: flex;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  color: #141632;
  letter-spacing: 1px;
  line-height: normal;
  margin-bottom: 0px;
}

.case_hotel_inner_img h3:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.case_hotel_inner a {
  width: 33%;
}

.case_study_main .case_study_inner .case_hotel:nth-child(even) a {
  width: 33%;
}

.case_hotel_inner_img .case_img img {
  width: 100%;
}

.case_hotel_inner a {
  text-decoration: none;
}

.about_us_main {
  width: 100%;
  flex-wrap: wrap;
  display: flex;
  max-width: 1660px;
  padding-left: 10px;
  padding-bottom: 30px;
  padding-right: 10px;
  margin-left: auto;
  background-color: white;
}

.about_us_main .about_us_details {
  width: 50%;
  padding-top: 40px;
}

.about_us_main .about_us_area {
  width: 50%;
  background-color: #fafbfd;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 50px;
}

.about_us_main .about_us_details .about_us_inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about_us_main .about_us_details .about_us_inner .about_us_storie {
  width: 45%;
}

.about_us_main .about_us_details .about_us_thumb img {
  width: 15px;
  height: auto;
}

.about_us_heading h1 {
  text-decoration: none;
  font-size: 26px;
  margin: 0;
  font-weight: 700;
  position: relative;
  color: #040404;
  letter-spacing: 1.5px;
}

.about_us_main .about_us_details>h1 {
  text-decoration: none;
  font-size: 18px;
  margin: 0;
  font-weight: 600;
  position: relative;
  color: #9ea9bc;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
}

.about_us_main .about_us_details .about_us_inner a .about_us_thumb {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.about_us_main .about_us_area>h1 {
  text-decoration: none;
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  position: relative;
  color: #111b29;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
}

.about_us_main .about_us_details .about_us_inner a .about_us_thumb h1 {
  text-decoration: none;
  font-size: 18px;
  margin: 0;
  font-weight: 600;
  position: relative;
  color: #141632;

  letter-spacing: 1.5px;
}

.about_us_main .about_us_details .about_us_heading p {
  color: #677489;
  font-size: 14px;
  margin-bottom: 10px;
}

.about_us_main .about_us_details .about_us_inner .about_us_storie a {
  text-decoration: none;
}

.about_us_heading {
  margin-left: 25px;
  margin-top: 5px;
}

.office_address {
  display: flex;
  gap: 40px;
}

.office_img {
  max-width: 60%;
  width: 100%;
}

.office_img img {
  width: 100%;
  height: auto;
}

.office_address_inner {
  max-width: 40%;
  width: 100%;
}

.office_address_inner>h1 {
  text-decoration: none;
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  position: relative;
  color: #111b29;
  letter-spacing: 1px;
}

.office_address_inner .map_icon {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.office_address_inner .map_icon .map_icon_inner {
  display: flex;
  gap: 5px;
  align-items: center;
}

.office_address_inner .map_icon .map_icon_inner img {
  width: 15px;
  height: auto;
}

.office_address_inner .map_icon .map_icon_inner p {
  margin: 0;
  color: #8c96a7;
  font-size: 14px;
}

.office_address_inner .arrow_left img {
  width: 15px;
  height: auto;
}

.office_address_inner .map_icon a {
  text-decoration: none;
}

.office_address .remap_details {
  color: #111b29;
}

/* New Header Sub Menu CSS End*/

.new-main-header.new-traval-header .hamburger-menu span {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: #ff0000;
  transition: all 0.5s;
}

.new-traval-header .hamburger-menu span:nth-child(2) {
  width: 22px;
}

.new-traval-header .hamburger-menu span:last-child {
  width: 12px;
}

.new-traval-header.active-icon .hamburger-menu span {
  margin-top: 15px;
  position: absolute;
  width: 32px;
}

.new-traval-header.active-icon .hamburger-menu span:first-child {
  transform: rotate(-135deg);
}

.new-traval-header.active-icon .hamburger-menu span:nth-child(2) {
  transform: rotate(135deg);
}

.new-traval-header.active-icon .hamburger-menu span:last-child {
  margin-top: 30px;
  width: 0px;
  display: none;
}

.new-traval-header.active-icon .hamburger-menu span {
  background: red;
}

/* .new-menu .new-nav .new-dropdown:hover .new-link {
  color: #ffd700;
  transition: all 0.5s;
} */
.new-traval-header .navbar-container {
  justify-content: center;
}

.new-traval-header .new-menu {
  width: 100%;
}

/* New Header Responsive Menu CSS Start*/

/* Back blue css start */
/* .hover-active .home-scraper-banner,
    .hover-active footer.footer {
      filter: blur(4px);
    } */

.blur_inner {
  position: fixed;
  top: 100px;
  backdrop-filter: blur(0px);
  left: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: -1;
}

body.hover-active .blur_inner {
  width: 100%;
  height: 100%;
  z-index: 999;
  pointer-events: auto;
  backdrop-filter: blur(4px);
  backdrop-filter: blur(20px);
  background: rgba(232, 232, 237, 0.4);
}

/* Back blue css end*/

.button-main-two {
  display: flex !important;
  margin: auto;
  margin-top: 50px !important;
}

button.button_main {
  display: inline-block;
  transition: all 0.2s ease-in;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #090909;
  padding: 0;
  border-radius: 0.5em;
  background: red;
  border: none !important;
}

button.button_main:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: block;
  transition: all 0.4s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

button.button_main:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background-color: #2F2F2F;
  border-radius: 50%;
  display: block;
  transition: all 0.4s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

button.button_main a {
  text-decoration: none;
  height: 100%;
  padding: 0.6em 1.2em 0.6em 1.2em;
  display: inline-block;
  color: white;
}

button.button_main a span {
  display: inline-block;
  font-weight: 600;
  font-size: 18px;
}

button.button_main a i {
  margin-left: 5px;
  font-size: 18px;
  color: white;
}

button.button_main:hover {
  border: 1px solid #fbde00;
}

button.button_main:hover:before {
  top: -35%;
  background-color: #011627;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

button.button_main:hover a i {
  transform: rotate(360deg);
  transition: all 0.4s ease;
}

button.button_main:hover::after {
  top: -45%;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

/* Hover On SubMenu To Add Animation  CSS*/

/* .new-traval-header .new-nav .new-dropdown-menu:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #141632;
  border-radius: 2px;
  /* box-shadow: 0 0 10px 2px rgba(20, 22, 50, 0.8); */
/* transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  animation: glowingBorder 3s infinite linear; */

.new-traval-header .new-nav .new-dropdown-menu:hover:before {
  transform: scaleX(1);
  /* box-shadow: 0 0 20px 4px rgba(20, 22, 50, 1); */
}

/* @keyframes glowingBorder {
  0% {
    box-shadow: 0 0 10px 2px rgba(20, 22, 50, 0.8);
  }
  50% {
    box-shadow: 0 0 20px 4px rgba(20, 22, 50, 1);
  }
  100% {
    box-shadow: 0 0 10px 2px rgba(20, 22, 50, 0.8);
  }
} */
/* Hover On SubMenu To Add Animation  CSS End*/

/* Hover On Arrow Move Right Left Animation  CSS Start*/
.new-traval-header a.arrow_left {
  position: relative;
  overflow: hidden;
}

.new-traval-header a.arrow_left img {
  margin-left: 10px;
  transition: transform 0.1s ease-in-out;
  animation: moveArrow 1.5s infinite alternate ease-in-out;
}

.new-traval-header a.arrow_left:hover img {
  animation-play-state: running;
}

@keyframes moveArrow {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(10px);
  }

  100% {
    transform: translateX(0);
  }
}

/* 1-1-2025 header by ajay--------------- */

.submenu_main .submenu_inner .subenu_inner_data {
  max-width: 1890px;
}

.subenu_inner_data.subenu_inner_data_industries {
  max-width: 1890px;
}

.submenu_main .submenu_details .golabal_fight_inner .golabal_fight {
  padding: 5px;
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
  cursor: pointer;
}

/* .submenu_main .submenu_details .golabal_fight_inner .golabal_fight:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  background-color: #F0F8FF;
} */

/* .subenu_inner_data.subenu_inner_data_industries .golabal-new-jul-dropdown-link-flex:hover .golabal-new-jul-dropdown-link-title {
  color: #0078D4;
} */

.new-menu .new-nav .new-dropdown:hover>.new-dropdown-menu {
  padding-bottom: 15px;
}

.submenu_main .submenu_inner .subenu_inner_data .submenu_updated {
  background-color: #f5faff;
}

.about_us_heading img {
  width: 20px;
}

.about_us_main {
  max-width: 1890px;
}

.submenu_main .submenu_inner .subenu_inner_data .submenu_details .golabal_fight_inner {
  gap: 15px;
}

a.arrow_left {
  transition: all 0.2s ease-in;
  z-index: 1;
  border-radius: 0.5em;
  text-decoration: none;
  height: 100%;
  align-items: center;
  min-height: 50px;
  justify-content: center;
  background: #fbde00;
  max-width: 150px;
  min-width: 150px;
}

.new-traval-header a.arrow_left img {
  display: none;
}

.office_address_inner a.arrow_left {
  max-height: 50px;
}

.remap_details {
  color: #011627;
}

.new-traval-header .new-mobile-logo img,
.new-traval-header .new-menu .new-mobile-logo-box {
  width: 0%;
}

/* Hover On Arrow Move Right Left Animation  CSS End*/

@media screen and (max-width: 1800px) {
  .new-nav .new-dropdown {
    margin-right: 15px;
  }
}

@media screen and (max-width: 1600px) {
  .new-traval-header .new-nav .new-dropdown-menu:hover:before {
    box-shadow: 0 0 20px 4px rgba(13, 15, 40, 1);
  }

  .new-traval-header .new-nav .new-dropdown-menu:before {
    height: 2;
  }

  .new-traval-header .mobile-menu.active::-webkit-scrollbar {
    display: none;
  }

  .new-traval-header .navbar-container {
    justify-content: space-between;
  }

  .new-traval-header .new-menu {
    width: auto;
  }

  .improving_img img {
    height: auto;
  }

  .improving_img {
    max-width: 230px;
  }

  .improving .improving_pera {
    padding: 0;
  }

  .submenu_heading h1,
  .improving .improving_pera,
  .flight_inner h1,
  .about_us_main .about_us_details .about_us_inner a .about_us_thumb h1 {
    font-size: 16px;
    letter-spacing: 1px;
  }

  .flight_inner h1 {
    margin-bottom: 10px;
  }

  .about_us_main .about_us_details .about_us_heading p {
    line-height: 25px;
  }

  .office_img {
    max-width: 250px;
  }

  .office_address_inner>h1 {
    font-size: 16px;
  }

  .office_address_inner .map_icon .map_icon_inner p {
    line-height: 18px;
  }

  .about_us_main .about_us_details>h1,
  .about_us_main .about_us_area>h1 {
    font-size: 16px;
    margin-bottom: 15px;
    letter-spacing: 1px;
  }

  .case_study_main .case_study_inner .case_hotel h1 {
    font-size: 16px;
    margin-bottom: 15px;
    letter-spacing: 1px;
  }

  .new-traval-header .new-nav .new-dropdown:hover .new-link {
    color: #141632;
  }

  .new-traval-header .new-nav .new-dropdown.open-dropdown .new-link {
    color: #141632;
    transition: all 0.5s;
  }

  .new-traval-header .new-dropdown.open-dropdown .full-new-link::after {
    color: #141632;
    transition: all 0.5s;
  }

  /* Back blue css start */
  /* .new-traval-header.active-icon:has(.navbar):has(.navbar-container):has(.new-menu):has(.new-nav):has(.new-dropdown.open-dropdown) ~ .home-scraper-banner,
  .new-traval-header.active-icon:has(.navbar):has(.navbar-container):has(.new-menu):has(.new-nav):has(.new-dropdown.open-dropdown) ~ .home-scraper-banner ~ .footer {
    filter: blur(4px);
  } */

  .new-traval-header.active-icon:has(.navbar):has(.navbar-container):has(.new-menu):has(.new-nav):has(.new-dropdown.open-dropdown)~.blur_inner {
    backdrop-filter: blur(20px);
    background: rgba(232, 232, 237, 0.4);
    width: 100%;
    height: 100%;
    z-index: 999;
    pointer-events: auto;
  }


  .new-traval-header.active-icon:has(.navbar):has(.navbar-container):has(.new-menu):has(.new-nav):has(.new-dropdown.open-dropdown:first-child)~.home-scraper-banner,
  .new-traval-header.active-icon:has(.navbar):has(.navbar-container):has(.new-menu):has(.new-nav):has(.new-dropdown.open-dropdown:first-child)~.home-scraper-banner~.footer {
    filter: blur(0px);
  }

  body.hover-active .blur_inner {
    backdrop-filter: blur(0px);
  }

  .new-traval-header .new-menu .new-mobile-logo-box {
    width: 100%;
  }

  /* Back blue css end*/

  /* ------------ */
  .new-traval-header .my-new-contact-button {
    text-align: left !important;
    margin: 0 20px;
  }

  .new-traval-header.new-main-header .navbar {
    width: 100%;
    max-width: 96%;
  }

  .new-traval-header .hamburger-menu {
    z-index: 9999;
    display: block;
  }

  .new-traval-header .navbar-brand-logo img {
    height: 65px;
  }

  .new-traval-header .mobile-menu {
    top: 0;
    position: absolute;
    text-align: start;
    background: #fff;
    overflow: hidden;
    display: none;
  }

  .new-traval-header .mobile-menu.active {
    right: 0;
    width: 50%;
    height: 100vh;
    overflow-y: auto;
    display: block;
    padding: 15px;
    /* background-color: #141632; */
    box-shadow: 6px 6px 22px rgba(42, 31, 63, 0.1);
    top: 0;
  }

  .new-traval-header .mobile-menu.active {
    padding: 0;
  }

  .new-traval-header .active {
    display: inline-block;
  }

  .new-traval-header .new-mobile-logo-box {
    position: sticky;
    top: 0;
    border-bottom: 1px solid #d9d9d9;
    z-index: 9998;
    background: white;
    height: 5rem;
  }

  .new-traval-header .new-mobile-logo {
    height: 5rem;
    width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .new-traval-header .new-mobile-logo img {
    width: 100%;
    height: 100%;
  }

  .new-traval-header .new-menu .new-nav {
    margin-right: 0px;
    gap: 0;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    /* margin-top: 20px; */
    margin-bottom: 20px;
  }

  .new-traval-header .new-nav .new-dropdown {
    height: auto;
    line-height: 52px;
    border-bottom: 1px solid #d9d9d9;
    display: block;
    width: 100%;
    margin-right: 0;
    position: relative;
    background-color: white;
  }

  .new-traval-header .new-nav .new-dropdown .new-link {
    font-size: 16px;
    display: inline-block;
    padding: 0 15px;
  }

  .new-traval-header .new-dropdown.open .new-dropdown-menu {
    display: block !important;
  }

  .new-traval-header .new-nav .new-dropdown-menu {
    top: 0;
    position: relative;
    border-radius: 8px;
    background: white;
  }

  .new-traval-header .new-drop-menu-flex {
    flex-direction: column;
  }

  .new-traval-header .drop-box-part-small-1 {
    width: 100%;
  }

  .new-traval-header .drop-box-part-small-2 {
    flex-direction: column;
    width: 100%;
  }

  .new-traval-header .dropdown-small-box {
    width: 100%;
  }

  .new-traval-header .new-dropdwon-box {
    padding: 15px 15px 15px 28px;
  }

  .new-traval-header .new-drop-box-link-data {
    min-height: auto;
  }

  .new-traval-header .bg-same {
    background-image: linear-gradient(to top, #cde5ff 0%, #f2f7ff 100%);
  }

  .new-traval-header .bg-same-dataset {
    background-image: linear-gradient(to top, #d1cdff 0%, #f6f2ff 100%);
  }

  .new-traval-header .new-menu .new-nav .new-dropdown.open-dropdown .new-dropdown-menu {
    display: block;
    opacity: 1;
    height: auto;
    overflow: visible;
    transition: opacity 0.3s ease, height 0.3s ease;
  }

  .new-traval-header .full-new-link {
    width: 100%;
    position: relative;
  }

  .new-traval-header .new-dropdown .full-new-link::after {
    margin-left: 0.25em;
    font-size: 2em;
    color: #141632;
    vertical-align: middle;
    font-family: "FontAwesome";
    content: "\f106";
    position: absolute;
    right: 10px;
    transform: rotate(180deg);
  }

  .new-traval-header .new-dropdown.open-dropdown .full-new-link::after {
    transform: rotate(0deg);
    transition: 0.3s;
  }

  .new-traval-header .dropdown-larg-box {
    width: 100%;
    min-height: auto;
  }

  .new-traval-header .dropdown-subtitle {
    height: auto;
  }

  .new-traval-header .drop-box-part-small-two,
  .new-traval-header .drop-box-part-small-one,
  .new-traval-header .drop-box-part-small-three {
    width: 100%;
    height: auto;
    max-height: 100%;
  }

  .new-traval-header .drop-box-part-small-two {
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .new-traval-header .dropdown-medium-box {
    width: 100%;
  }

  .new-traval-header .new-drop-box-button {
    margin-top: 20px;
  }

  .new-traval-header .new-nav .new-dropdown:first-child a.new-link {
    padding: 0;
  }

  .new-traval-header .new-nav .new-dropdown:first-child .full-new-link::after {
    display: none;
  }

  .new-traval-header .navbar-brand-logo {
    width: 250px;
  }

  .new-traval-header .new-nav .new-dropdown {
    margin-right: 15px;
  }

  /* ------------ */
  /* New Header Sub Menu CSS Start*/
  .submenu_main .submenu_inner .subenu_inner_data {
    flex-direction: column;
  }

  .submenu_main .submenu_inner .subenu_inner_data .submenu_details {
    flex-basis: 100%;
    padding-top: 20px;
    padding-left: 20px;
  }

  .submenu_main .submenu_details .golabal_fight_inner .golabal_fight {
    max-width: 45%;
  }

  .submenu_main .submenu_inner .subenu_inner_data .submenu_updated {
    flex-basis: 100%;
  }

  .flight_inner {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    gap: 20px;
  }

  .flight_inner_main {
    width: 45%;
  }

  .flight_inner_main:last-child {
    width: 100%;
  }

  .flight_inner_main:last-child p {
    width: 100%;
    max-width: 100%;
  }

  .subenu_inner_data.subenu_inner_data_industries {
    flex-direction: column;
  }

  .subenu_inner_data.subenu_inner_data_industries .flight_inner {
    flex-basis: 100%;
  }

  .subenu_inner_data.subenu_inner_data_industries .flight_inner .flight_inner_main {
    width: 45%;
    margin-bottom: 20px;
  }

  .subenu_inner_data.subenu_inner_data_industries .submenu_updated {
    flex-basis: 100%;
  }

  .improving {
    padding-top: 20px;
    padding-left: 20px;
    padding-bottom: 20px;
  }

  .case_study_main .case_study_inner {
    padding-top: 20px;
    flex-direction: column;
    padding-left: 20px;
  }

  .case_study_main .case_study_inner .case_hotel {
    width: 100%;
    margin-bottom: 30px;
  }

  .case_study_main .case_study_inner .case_hotel:nth-child(even) {
    width: 100%;
  }

  .about_us_main {
    flex-direction: column;
  }

  .about_us_main .about_us_details {
    width: 100%;
    padding-top: 20px;
    padding-left: 20px;
  }

  .about_us_main .about_us_area {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
  }

  .office_address {
    flex-direction: column;
    gap: 20px;
  }

  .about_us_heading {
    margin-top: 0;
  }

  .office_address_inner {
    max-width: 100%;
  }

  /* New Header Sub Menu CSS End*/
}

@media screen and (max-width: 1400px) {
  .new-traval-header .mobile-menu.active {
    width: 60%;
  }
}

@media screen and (max-width: 1400px) {
  .submenu_main .submenu_details .golabal_fight_inner .golabal_fight {
    max-width: 100%;
  }

  .case_hotel_inner a {
    width: 45%;
  }

  .case_hotel_inner {
    flex-wrap: wrap;
  }

  .case_study_main .case_study_inner .case_hotel:nth-child(even) a {
    width: 45%;
  }

  .about_us_main .about_us_details .about_us_inner .about_us_storie {
    width: 100%;
  }
}

@media screen and (max-width: 1280px) {
  .flight_inner_main {
    width: 100%;
  }

  .subenu_inner_data.subenu_inner_data_industries .flight_inner .flight_inner_main {
    width: 100%;
  }

  .case_hotel_inner a {
    width: 100%;
  }

  .case_study_main .case_study_inner .case_hotel:nth-child(even) a {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .new-traval-header .mobile-menu.active {
    width: 100%;
  }

  .new-traval-header .new-mobile-logo {
    margin-left: 10px;
  }
}

@media screen and (min-width: 1601px) {
  .new-menu .new-nav .new-dropdown:hover>.new-dropdown-menu {
    /* display: block; */
    opacity: 1;
    height: auto;
    transition: opacity 0.3s ease, height 0.3s ease;
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.15);
  }

  .new-traval-header .hamburger-menu {
    display: none;
  }

  .full-new-link {
    height: 100%;
  }
}

@media (max-width: 991px) {
  .new-header-design .navbar-nav .nav-link {
    margin-left: 0;
    margin-bottom: 10px;
  }
}

/* New Header Responsive Menu CSS End*/

/* ---------------------------- new header design end ------------------------------------ */

/* --------------------------------- new header by mt --------------------------- */

.mt-header-new {
  background-color: var(--rich-black) !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
  position: relative;
  z-index: 1001;
}

/* Search Section Styles */
.search-section {
  position: relative;
}

.search-section .nav-link {
  color: #333;
  padding: 0.5rem;
}

.search-section .nav-link:hover {
  color: #dc3545;
}

/* Search Overlay */
.search-overlay {
  display: none;
  /* Initially hidden */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Semi-transparent background */
  align-items: center;
  justify-content: center;
}

.search-overlay.active {
  display: flex;
}

/* Search Input Container */
.search-input-container {
  position: absolute;
  top: 80px;
  /* Adjust based on your header height */
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  background: white;
  border-radius: 4px;
  padding: 20px;
  display: flex;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Search Input */
.search-input {
  flex-grow: 1;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  outline: none;
}

.search-input:focus {
  border-color: #dc3545;
}

/* Search Type Select */
.search-type {
  padding: 12px;
  min-width: 120px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

/* Search Button */
.search-btn {
  padding: 12px 30px;
  background: #dc3545;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  white-space: nowrap;
}

.search-btn:hover {
  background: #c82333;
}

/* Add some animation */
.search-overlay .search-input-container {
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translate(-50%, -20px);
    opacity: 0;
  }

  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

/* Dropdown styles */
.dropdown-menu {
  display: none;
  position: absolute;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  padding: 0.5rem 0;
  min-width: 250px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.nav-section {
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.search-section {
  margin-left: auto;
}

@media (max-width: 991px) {
  .nav-section {
    margin-left: 0;
  }

  .navbar-collapse {
    background: white;
    padding: 1rem;
  }
}

.navbar-edit {
  justify-content: start !important;
}

.mt-slider-new {
  position: relative;
  overflow: hidden;
  background: #f8f9fa;
  /* height: 100vh; Changed to 80vh */
}

.mt-slider-new {
  position: relative;
}

.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.1);
  color: #000;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.slide-arrow:hover {
  background-color: #f0f0f0;
  transform: scale(1.1);
}

.slide-arrow.prev {
  left: 15px;
}

.slide-arrow.next {
  right: 15px;
}

.slide-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.nav-dot {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.nav-dot.active {
  background-color: white;
}

.nav-dot:hover {
  background-color: #fff;
}

.mt-slider-new .slide-container {
  position: relative;
  width: 100%;
  height: 100%;
  /* Changed to 100% to fill parent */
}

.mt-slider-new .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* Changed from center to flex-start */
  background-size: cover;
  background-position: center;
}

.mt-slider-new .slide-content {
  text-align: left;
  /* Changed from center to left */
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  max-width: 700px;
  position: relative;
  z-index: 9;
  margin-left: 7%;
  /* Added to give some space from the left edge */
}

.slider-content-sabre {
  text-align: left;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-left: 7%;
  max-width: 50% !important;
}

.slider-content-sabre h2 {
  color: white !important;
  font-size: 50px !important;
  font-weight: 700;
}

.slider-content-sabre p {
  color: white !important;
  font-size: 25px !important;
  font-weight: 700;
}

.slider-content-sabre .revenue {
  color: white !important;
  font-size: 30px !important;
  font-weight: 700;
  margin-bottom: 30px !important;
}

.mt-slider-new .slide.active {
  opacity: 1;
}

.slide-content h1 {
  margin-bottom: 30px;
  font-size: 50px !important;
  color: #e70000;
  font-weight: 700;
}

.slide-content h2 {
  margin-bottom: 30px;
  font-size: 50px !important;
  color: #e70000;
  font-weight: 700;
}

.slide-content p {
  font-size: 25px !important;
  margin-bottom: 30px;
}

@media (min-width: 300px) and (max-width: 750px) {
  .slide-content p {
    font-size: 22px !important;
  }

  .slide-content h2 {
    font-size: 33px !important;
  }

  .slide-content h1 {
    font-size: 33px !important;
  }

  button.button_main a {
    text-decoration: none;
    height: 100%;
    padding: 0.6em 1.2em 0.6em 1.2em;
    display: table-cell;
    color: white;
    margin: 20px 0;
  }

  .slider-content-sabre {
    max-width: 100% !important;
  }

  .slider-content-sabre h2 {
    color: white !important;
    font-size: 25px !important;
    font-weight: 700;
  }

  .slider-content-sabre p {
    color: white !important;
    font-size: 18px !important;
    font-weight: 500;
  }
}

@media (min-width: 750px) and (max-width: 1200px) {
  .slider-content-sabre {
    max-width: 100% !important;
  }
}

.mt-slider-new .slide-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.mt-slider-new .nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.mt-slider-new .nav-dot.active {
  background: #fff;
}

.mt-slider-new .slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.3);
  border: none;
  padding: 15px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
}

.mt-slider-new .slide-arrow:hover {
  background: rgba(255, 255, 255, 0.5);
}

.mt-slider-new .prev {
  left: 20px;
}

.mt-slider-new .next {
  right: 20px;
}

@media (max-width: 992px) {
  .slide-arrow {
    top: 41% !important;
  }
}

@media (max-width: 768px) {
  .slide-content p {
    font-size: 20px !important;
  }

  .slide-content h2 {
    font-size: 42px !important;
  }

  .slide-content h1 {
    font-size: 42px !important;
  }

  .mt-slider-new .slide-content {
    margin: 0 auto !important;
    max-width: 560px !important;
    padding: 0 20px !important;
  }

  .mt-slider-new {
    /* height: 100vh !important; */
  }

}


@media (max-width: 693px) {

  .slide-arrow {
    display: none !important;
  }

  .slide-content h2 {
    font-size: 30px !important;
  }

  .slide-content h1 {
    font-size: 30px !important;
  }

  .slide-content p {
    font-size: 18px !important;
  }


}




/* Style for dropdown arrows */
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 8px;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  transition: transform 0.3s ease;
  transform: rotate(0deg);
  vertical-align: middle;
}

/* Desktop styles (above 1200px) */
@media (min-width: 1201px) {
  .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}

/* Mobile styles (below 1200px) */
@media (max-width: 1200px) {

  /* Remove any transition on mobile */
  .dropdown-toggle::after {
    transition: none;
  }

  /* Simple toggle for mobile */
  .dropdown-toggle.active::after {
    transform: rotate(180deg);
  }

  /* Remove hover effect on mobile */
  .dropdown:hover .dropdown-toggle::after {
    transform: none;
  }

  /* Ensure no animation during state changes */
  .dropdown-toggle,
  .dropdown-toggle::after {
    transition: none !important;
  }
}

/* Specific color for Products and Industries */
.nav-link.dropdown-toggle {
  color: white !important;
  font-weight: 500;
}

/* Keep color black even on hover */
.nav-link.dropdown-toggle:hover {
  color: #000;
}

.contact-color a {
  color: #000;
  font-weight: 500;
}

/* Hamburger Menu Styles */
.hamburger-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: relative;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease-in-out;
  z-index: 1000;
}

.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #0a192f;
  margin: 5px 0;
  transition: all 0.3s ease-in-out;
  position: relative;
}

@media (max-width: 991px) {
  .hamburger-btn {
    display: block;
  }

  .navbar-collapse {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background-color: #0a192f;
    z-index: 999;
    transition: left 0.3s ease-in-out;
    padding: 70px 0 0 0;
    overflow-y: auto;
    justify-content: center;
  }

  .navbar-collapse.show {
    left: 0;
  }

  /* Navigation Styles */
  .navbar-nav {
    padding: 0;
    margin: 0;
    width: 100%;
  }

  .nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-link {
    color: #ffffff !important;
    padding: 20px 30px !important;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Dropdown Styles */
  .dropdown-menu {
    position: static !important;
    background-color: #0a192f !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
  }

  .dropdown-item {
    padding: 12px 45px !important;
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.05) !important;
  }

  .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
  }

  /* Dropdown Toggle Arrow */
  .dropdown-toggle::after {
    content: "↓" !important;
    border: none !important;
    margin-left: 10px;
    transition: transform 0.3s ease;
  }

  .dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
  }

  /* Hamburger Animation */
  .hamburger-btn.active span {
    background-color: #ffffff;
  }

  .hamburger-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
  }

  .hamburger-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

.mt-box-six {
  padding: 20px;

  margin: 15px 0;
  border-radius: 10px;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateX(-100px);
  /* Slide in from the left */
}

.mt-box-six.animate {
  opacity: 1;
  transform: translateX(0);
  /* Move to its original position */
}

.mt-box-six.remove-animation {
  opacity: 0;
  transform: translateX(-100px);
  /* Slide back out to the left */
}

.feature-icon {
  font-size: 24px;
  color: #5856d6;
}

.mt-box-six {
  padding: 30px;
  margin: 15px 0;
  border-radius: 10px;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateX(-100px);
  /* Slide in from the left */
}

.mt-box-six.animate {
  opacity: 1;
  transform: translateX(0);
  /* Move to its original position */
}

.mt-box-six.remove-animation {
  opacity: 0;
  transform: translateX(-100px);
  /* Slide back out to the left */
}

.feature-icon {
  font-size: 24px;
  color: #5856d6;
}

.mt-header {
  text-align: center;
  margin-bottom: 50px;
}

.mt-subtext {
  color: black !important;
  font-size: 1.1rem;
  /* max-width: 1400px; */
  margin: 12px auto 34px 30px;
  text-align: center;
}

.mt-subtext-first {
  color: black;
  font-size: 1.1rem;
  margin: 0 auto 17px;
  text-align: center;
}

.mt-subtext-last {
  color: black !important;
  font-size: 1.1rem;
  margin: 30px auto 30px;
  text-align: center;
}

.mt-box-six {
  padding: 30px;
  margin: 15px 0;
  border-radius: 10px;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  gap: 30px;
  height: 100%;
}

.logo-container img {
  height: auto !important;
  width: 75px !important;
}

.content-container {
  flex-grow: 1;
}

.feature-icon {
  font-size: 24px;
  color: white;
}

@media (max-width: 768px) {
  .mt-box-six {
    flex-direction: column;
    text-align: center;
  }
}

.bg-change-third {
  background-color: rgb(249 249 249);
}

.spark-btn {
  text-align: center;
  background-color: red !important;
  padding: 13px 20px;
  border-radius: 9px;
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 500;
  font-family: Poppins, sans-serif;
  font-style: normal;
  color: var(--bs-white);
  text-decoration: none;
  outline: none;
  border: none !important;
  width: max-content;
  transition: all 0.2s ease-in 0s;
  margin-top: 30px !important;
}

.spark-btn:hover {
  border: 3px solid red !important;
  background: transparent !important;
  color: red !important;
}

.spark-btn-two {
  display: flex;
  margin: 38px auto 0px !important;
}

.mt-cta a {
  text-decoration: none !important;
}

.airline-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2rem 2rem 2rem;
}

.airline-container-992-changes {
  padding-top: 3rem !important;
}

.airline-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 1rem;
}

.airline-card {
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.airline-logo {
  max-width: 120px;
  height: 120px;
  transition: all 0.3s ease;
  filter: grayscale(100%);
  /* Start with grayscale */
  opacity: 0.5;
  /* Start with lower opacity */
}

/* Show color when scrolled */
.airline-card.scrolled .airline-logo {
  filter: grayscale(0%);
  /* Remove grayscale on scroll */
  opacity: 1;
  /* Full opacity on scroll */
}

/* Responsive Grid */
@media (max-width: 576px) and (min-width: 480px) {
  .airline-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .airline-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .airline-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.tabs::after {
  content: "";
  position: absolute;
  width: 100%;
  bottom: 0px;
  z-index: -1;
  border-bottom: 6px solid #e1e2e5;
  border-radius: 5px;
}

.mt-case-studies {
  padding: 60px 0;
}

.mt-case-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.mt-case-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #ff0000;
}

.mt-case-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  background: white;
  transition: transform 0.3s ease;
}

.mt-case-card:hover {
  transform: translateY(-5px);
}

.mt-case-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.mt-case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mt-case-date {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.9);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  color: black;
}

.mt-case-content {
  padding: 20px;
}

.mt-case-badge {
  display: inline-block;
  background: #ff0000;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 15px;
}

.mt-case-title-small {
  font-size: 1.25rem !important;
  margin-bottom: 15px !important;
  font-weight: 600 !important;
  color: black;
}

.case-cards-container a {
  text-decoration: none !important;
}

.mt-case-text {
  color: #666;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.mt-case-link {
  color: #ff0000;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.mt-case-link:hover {
  color: #cc0000;
}

.content-container h3 {
  font-size: 22px;
  font-weight: 700;
  font-style: normal;
  color: #121315;
  margin-bottom: 15px !important;
  line-height: 25px;
}

.content-container p {
  color: #404247;
  font-size: 18px !important;
  line-height: 24px;
  font-family: Roboto, sans-serif;
}

.navbar-nav-two-mt {
  margin: 0px !important;
}

.navbar-collapse {
  justify-content: center;
}

.dataset-title {
  font-weight: bold;
  font-size: 16px;
}

/* @media (max-width: 1200px) {
    .container-max-width-change {
      max-width: 1032px;
    }
} */

.tab-container {
  display: flex;
  justify-content: center;
  margin: 10px 0 50px 0 !important;
}

.tabs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  position: relative;
}

.tab-item {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 18px;
  color: inherit;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
  font-weight: 600;
  opacity: 0.7;
}

.tab-item img {
  margin-right: 10px;
  width: 30px;
  height: 30px;
}

.tab-item span {
  font-weight: 700;
}

.tab-item.active {
  color: #d32f2f;
  border-bottom: 6px solid #d32f2f;
  font-weight: 700;
  opacity: 1;
}

.tab-item:hover {
  color: #d32f2f;
}

.case-cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start;
}

.case-card-wrapper {
  flex: 0 0 calc(25% - 23px);
  /* 25% width for 4 cards per row, minus gap space */
  max-width: calc(25% - 23px);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .case-card-wrapper {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
  }
}

@media (max-width: 991px) {
  .case-card-wrapper {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}

@media (max-width: 576px) {
  .case-card-wrapper {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.case-cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.case-card-wrapper {
  flex: 0 0 calc(25% - 23px);
  max-width: calc(25% - 23px);
}

/* -------------------- why choose us -------------------- */

.new-trav-cta-section {
  background: url(../img/new-header/Why-Choose-Travel-Scrape.png) no-repeat center center;
  background-size: cover;
  padding: 50px 0;
}

.new-trav-cta-section .new-trav-cta-content {
  text-align: center;
  margin-bottom: 50px;
}

.new-trav-cta-section h2 {
  font-size: 35px;
  font-weight: 700;
  line-height: 54px;
  margin-bottom: 20px;
}

.trav-448-cta-mq {
  padding-top: 3rem !important;
}

.new-trav-cta-section p {
  color: black !important;
  font-size: 1.1rem;
  /* max-width: 1400px; */
  margin: 12px auto 30px;
  text-align: center;
  max-width: 1200px !important;
}

.new-trav-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  text-align: center;
}

.new-trav-logo-grid img {
  max-width: 200px;
  height: auto;
}

.new-trav-button {
  text-align: center;
  margin-top: 20px;
}

.new-cta-trav-new-side-content h3 {
  font-size: 22px;
  font-weight: 600;
  font-style: normal;
  color: var(--rich-black);
  line-height: 38px;
  margin-bottom: 27px;
}

.new-cta-trav-new-side-content ul {
  padding-left: 0;
  list-style: none;
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 2rem;
  margin-left: 1.5rem;
}

.new-cta-trav-new-side-content ul li {
  font-size: 18px;
  margin: 12px auto 30px;
  line-height: 2rem;
  list-style-position: outside;
}

.list-item-container {
  width: 100%;
}

.logo-title-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.logo-title-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.logo-title-wrapper h3 {
  margin: 0 !important;
  text-align: left !important;
}

.list-item-container p {
  margin: 0;
  padding-left: 65px;
  /* This aligns the text with the title, accounting for image width + gap */
  text-align: left;
}

.new-cta-trav-new-side-content ul li img {
  /* width: 30px;
  height: 30px; */
  margin-right: 10px;
}

h2.new-cta-trav-aftert::after {
  content: "";
  position: static;
  display: block;
  height: 0.2rem;
  background: #e50000;
  width: 17rem;
  margin-top: 0.25rem;
  margin-bottom: 2.25rem;
  border-radius: 0.5rem;
  margin-left: 41%;
}



/* ---------------------------------- global connection counter ------------------------------  */

.new-travel-new-counter {
  background-image: url(../img/new-header/Global-connection.webp);
  color: white;
  padding: 50px 0;
  text-align: center;
  margin-top: 5rem !important;
  height: 100%;
}

/* Heading Styling */
.new-travel-new-counter h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 50px;
  margin-top: 30px !important;
}

/* Counter Box Styling */
.new-travel-new-counter .counter-box {
  margin-bottom: 30px;
}

.new-travel-new-counter .counter-value {
  font-size: 2.7rem;
  font-weight: bold;
}

.new-travel-new-counter .counter-label {
  font-size: 1.1rem;
  margin-top: 10px;
}

.new-travel-new-counter-changing-mq {
  justify-content: center !important;
}

/* -------------------------- industries ---------------------------------- */

.new-industry-trav-new-section {
  position: relative;
}

.new-industry-trav-new-section-hero {
  /* background-image:url(../img/new-header/Industries-01.webp); */
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  position: relative;
  animation: fadeInUp 1s ease-in-out forwards;
  opacity: 0;
  /* Initial state for animation */
}

.new-industry-trav-new-section-hero-solutions {
  /* background-image: url(../img/new-header/Solutions-01.webp); */
  /* background-image: url(../img/new-header/Our-Solution.jpg); */
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    /* Gradient overlay */
    url('../img/new-header/Our Solutions-01.webp');
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  position: relative;
  animation: fadeInUp 1s ease-in-out forwards;
  opacity: 0;
  /* Initial state for animation */
}

/* Default styles */
.hover-content-no-dsplay {
  display: none;
  font-size: 14px !important;
}

.hover-content-no-dsplay-yes {
  display: block;
}

@media (hover: hover) {
  .new-industry-trav-new-section-card-link:hover .hover-content-no-dsplay {
    display: block;
    color: white !important;
    transition: 0.3s ease-in-out;
  }

  .new-industry-trav-new-section-card-link:hover .hover-content-no-dsplay-yes {
    display: none;
  }
}


@media (hover: none) {

  .new-industry-trav-new-section-card-link:active .hover-content-no-dsplay,
  .new-industry-trav-new-section-card-link:focus .hover-content-no-dsplay {
    display: block;
    color: white !important;
  }

  .new-industry-trav-new-section-card-link:active .hover-content-no-dsplay-yes,
  .new-industry-trav-new-section-card-link:focus .hover-content-no-dsplay-yes {
    display: none;
  }
}

.new-industry-trav-new-section-card-wrapper h3 {
  color: white !important;
}

.new-content-wrapper {
  animation: fadeInUp 1s ease-in-out 0.5s forwards;
  /* Delay added */
  opacity: 0;
  /* Initial state for animation */
}

.new-industry-trav-new-section-card {
  animation: fadeInUp 1s ease-in-out 0.8s forwards;
  opacity: 0;
  /* Initial state for animation */
}

.new-industry-trav-new-section-min-height {
  min-height: 50vh;
}

.new-industry-trav-new-section-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.new-industry-trav-new-section-card-wrapper {
  position: relative;
}

.new-industry-trav-new-section-card-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.new-industry-trav-new-section-card-overlay {
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0) 100%);
  padding: 20px;
}

.new-industry-trav-new-section-card-link {
  text-decoration: none;
  color: inherit;
  text-decoration: none;
  /* Add this to remove default underline */
  display: block;
  /* Add this to make link block-level */
  cursor: pointer;
  /* Add this to show pointer cursor */
}

.new-industry-trav-new-section-card-link:hover .new-industry-trav-new-section-card {
  transform: translateY(-5px);
}

.new-industry-trav-new-section-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.new-industry-trav-new-section-list li {
  margin-bottom: 8px;
}

.new-industry-trav-new-section-list a {
  font-weight: inherit;
  color: #00495a;
  cursor: pointer;
  text-decoration: none;
  border-bottom: 1px solid #309ab5;
  font-size: 12px;
}

.new-industry-trav-new-section-list a:hover {
  color: #00495a;
}

@media (max-width: 768px) {
  .new-industry-trav-new-section-hero {
    padding: 60px 0;
  }

  .new-industry-trav-new-section-card-img {
    height: 180px;
  }
}

@media (max-width: 576px) {
  .new-industry-trav-new-section-hero {
    padding: 40px 0;
  }

  .new-industry-trav-new-section-card-img {
    height: 160px;
  }
}

.industries-h2-pm::after {
  content: "";
  position: static;
  display: block;
  height: 0.3rem;
  background: #e50000;
  width: 5rem;
  margin-top: 0.25rem;
  margin-bottom: 2.25rem;
  border-radius: 0.5rem;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOverlay {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .new-industry-trav-new-section-hero {
    animation-duration: 1.2s;
  }

  .new-content-wrapper {
    /* Renamed class */
    animation-duration: 1.2s;
  }

  .new-industry-trav-new-section-card {
    animation-duration: 1.2s;
  }
}

.new-industry-trav-new-section-min-height h2 {
  font-size: 48px !important;
  font-weight: 700;
}

.new-industry-trav-new-section-min-height p {
  max-width: 500px !important;
  color: white;
}

.new-industry-trav-new-section-min-height-two p {
  max-width: 500px !important;
  color: white !important;
  font-weight: 100 !important;
}

/* ---------------------------- blog homepage by mt ----------------------- */

.new-trav-new-blog-section {
  padding: 2rem;
}

.new-trav-new-blog-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.new-trav-new-blog-section .section-header h2 {
  font-size: 1.8rem;
  font-weight: bold;
}

.new-trav-new-blog-section .blog-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
  height: 100%;
}

.new-trav-new-blog-section .blog-card:hover {
  transform: translateY(-5px);
}

.new-trav-new-blog-section .blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.new-trav-new-blog-section .blog-card .card-body {
  padding: 1rem;
}

.new-trav-new-blog-section .blog-card .card-body h5 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: black;
}

.new-class-for-bg a {
  text-decoration: none !important;
}

.new-trav-new-blog-section .blog-card .card-body p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.5rem;
}

.new-trav-new-blog-section .blog-card .card-body .read-more {
  color: red;
  font-weight: bold;
  text-decoration: none;
}

.new-trav-new-blog-section .row .col-lg-3 {
  display: flex;
}

@media (max-width: 768px) {
  .new-trav-new-blog-section .blog-card img {
    height: 150px;
  }
}

.new-cta-third-anime-new-index-section {
  position: relative;
  min-height: 50vh;
  /* Set the height to 70vh */
  /* background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../img/new-header/Blog-01.webp); */
  background-size: cover;
  /* Make sure the image covers the full section */
  background-repeat: no-repeat;
  /* Prevent background from repeating */
}

.new-cta-third-anime-new-index-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
  z-index: -1;
}

.new-cta-third-anime-new-index-content {
  padding: 150px 0;
  color: white;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease 0.5s;
}

.new-cta-third-anime-new-index-title {
  font-size: 48px;
  font-weight: 700;
}

.new-cta-third-anime-new-index-line {
  width: 101px;
  height: 6px;
  background-color: red;
  margin: 0px 0 25px;
  border-radius: 50px;
}

.new-cta-third-anime-new-index-text {
  font-size: 21px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: white;
  max-width: 700px !important;
  font-weight: 100;
}

.new-industry-trav-new-section-min-height p {
  font-size: 21px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: white;
  max-width: 600px !important;
  font-weight: 300;
}

.new-cta-third-anime-new-index-visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------- testimonial new header ----------------------- */

.trav-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* Shows 3 items per row */
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}




/* Updated CSS */
.new-testimonial-anime-new-header-section {
  position: relative;
  padding: 80px 0;
  background: #fff;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.new-testimonial-anime-new-header-section h2 {
  color: black !important;
  font-weight: 700;
}

.new-testimonial-anime-new-header-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  text-align: center;
  /* Center alignment for all content */
}

.new-testimonial-anime-new-header-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.new-testimonial-anime-new-header-slide.active {
  display: block;
  opacity: 1;
}

.new-testimonial-anime-new-header-logo {
  max-width: 400px;
  margin: 0 auto 30px;
  display: block;
  /* Makes the image a block element */
}

@media (max-width: 768px) {
  .new-testimonial-anime-new-header-logo {
    max-width: 300px;
  }

  .new-testimonial-anime-new-header-slide img {
    max-width: 90%;
    min-height: 200px;
  }
}

/* Add styles for any other images in slides */
.new-testimonial-anime-new-header-slide img {
  display: block;
  margin: 0 auto;
  object-fit: contain;
  max-width: 80%;
  min-height: 300px;
}

.new-testimonial-anime-new-header-quote {
  font-size: 24px;
  line-height: 1.5;
  color: #333;
  margin: 30px auto;
  max-width: 800px;
  text-align: center;
}

.new-testimonial-anime-new-header-author {
  font-weight: bold;
  margin-bottom: 5px;
  text-align: center;
}

.new-testimonial-anime-new-header-position {
  color: #666;
  text-align: center;
}

/* Updated Arrow Styles */
.new-testimonial-anime-new-header-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ddd;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #333;
  z-index: 2;
  transition: all 0.3s ease;
}

.new-testimonial-anime-new-header-arrow:hover {
  background: #f5f5f5;
  border-color: #999;
}

/* Dot Navigation */
.new-testimonial-anime-new-header-nav {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 10px;
}

.new-testimonial-anime-new-header-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.3s ease;
}

.new-testimonial-anime-new-header-dot.active {
  background: #333;
}

@media (max-width: 768px) {
  .new-testimonial-anime-new-header-quote {
    font-size: 20px;
    padding: 0 20px;
  }

  .new-testimonial-anime-new-header-prev {
    left: 10px;
  }

  .new-testimonial-anime-new-header-next {
    right: 10px;
  }
}

.custom-list {
  list-style: none;
  padding: 0;
}

.custom-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.custom-list img {
  width: 30px;
  /* Same size as the previous icon */
  height: 30px;
  margin: 6px;
  /* Keeping the same margin */
  object-fit: cover;
  /* This ensures the image maintains its aspect ratio */
}

/* ---------------------- contact form -------------------------- */
.custom-contact-section {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px;
  background-color: #fff;
}

.lets-connect-contact-form h2 {
  font-size: 35px;
  font-weight: 700;
  font-style: normal;
  color: var(--rich-black);
  line-height: 54px;
  text-align: center;
  display: block;
}

@media (max-width: 600px) {
  .lets-connect-contact-form h2 {
    font-size: 29px !important;
  }
}

.custom-decorative-line {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px solid #d0e3f0;
  border-radius: 50%;
}

.custom-decorative-line.custom-left {
  top: 30%;
  left: 5%;
  transform: translateY(-50%);
}

.custom-decorative-line.custom-right {
  top: 70%;
  right: 5%;
  transform: translateY(-50%);
}

.custom-form-container {
  max-width: 700px;
  text-align: center;
  background: #fff;
  padding: 80px;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 600px) {
  .custom-form-container {
    padding: 40px !important;
  }
}

.custom-form-heading {
  font-size: 24px;
  margin-bottom: 15px;
}

.custom-form-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

.custom-contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.custom-form-row {
  display: flex;
  gap: 20px;
}

.custom-form-group {
  flex: 1;
  position: relative;
  text-align: left;
}

.custom-form-label {
  font-size: 16px;
  margin-bottom: 5px;
  display: block;
}

.custom-form-input-line,
.custom-form-input-line:focus,
.custom-form-input-line:valid {
  /* width: 100%; */
  /* border: none; */
  /* border-bottom: 2px solid #ccc; */
  /* background: none; */
  /* font-size: 14px; */
  /* padding: 5px 0; */
  /* outline: none; */
  /* transition: border-color 0.3s; */
}

.custom-form-input-line:focus {
  border-color: #0078ff;
}

.custom-form-button {
  font-size: 16px;
  color: #fff;
  background-color: #0078ff;
  border: none;
  padding: 20px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 200px;
}

.custom-form-button:hover {
  background-color: #005bb5;
}

textarea.custom-form-input-line {
  height: 80px;
  resize: none;
}

.get-started-v5 {
  padding: 40px 0px 80px 0;
  background: #fff;
}

@media (max-width: 1200px) {
  .custom-decorative-img.custom-left {
    display: none !important;
  }

  .custom-decorative-img.custom-right {
    display: none !important;
  }
}

.all-btn-two a:hover {
  border: 1px solid #006aa9;
  color: #006aa9;
  background: transparent;
}

.mx-mt-p {
  max-width: 500px !important;
}

.mx-mt-p img {
  width: 100%;
  height: auto;
}

.menu-title-text {
  color: black !important;
}

@media (max-width: 1200px) {
  .menu-title-text {
    color: white !important;
  }
}

.pagination-item {
  cursor: pointer !important;
}

@media (max-width: 1200px) and (min-width: 576px) {
  .inner_right {
    height: 550px;
    display: flex;
    justify-content: center;
    margin-top: 50px !important;
  }
}

@media (max-width: 778px) {
  .custom-form-container {
    margin: 0 1rem !important;
  }
}

@media (max-width: 576px) {
  .new-ecommerce-tab {
    padding: 12px 15px !important;
  }
}

@media (max-width: 776px) {
  .flexible .flexible_inner {
    max-width: 540px;
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }
}

.mt-contact-form-travel {
  padding: 40px 0 80px 0;
  overflow-x: hidden;
}

.mt-contact-form-travel .form-control {
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  margin-bottom: 20px;
}

.mt-contact-form-travel .badges-container {
  margin-bottom: 30px;
}

.mt-contact-form-travel .badge {
  padding: 10px 20px;
  margin-right: 10px;
  border-radius: 15px;
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
}

.mt-contact-form-travel .right-section {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.mt-contact-form-travel .background-section {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  opacity: 0;
  transform: translateX(-100%);
  animation: slideRight 1.2s ease forwards;
  background: url("https://images.pexels.com/photos/1181396/pexels-photo-1181396.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1");
  background-size: cover;
  background-position: center;
}

.mt-contact-form-travel .main-image-section {
  position: absolute;
  left: 50%;
  top: 0;
  width: 50%;
  height: 100%;
  opacity: 0;
  transform: translateY(100%);
  animation: slideUp 1.2s ease forwards;
  background: url("https://images.pexels.com/photos/3184465/pexels-photo-3184465.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1");
  background-size: cover;
  background-position: center;
}

.mt-contact-form-travel .background-image,
.mt-contact-form-travel .main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.mt-contact-form-travel .content-section {
  position: absolute;
  right: 0;
  padding: 2rem;
  width: 40%;
  z-index: 2;
}

.mt-contact-form-travel .career-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #333;
}

.mt-contact-form-travel .career-btn {
  display: inline-block;
  background: #dc3545;
  color: white;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
}

.mt-contact-form-travel .career-btn:hover {
  background: #c82333;
  transform: translateY(-2px);
  color: white;
}

.mt-contact-form-travel .background-section::after,
.mt-contact-form-travel .main-image-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.2);
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

@keyframes slideRight {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 992px) {
  .mt-contact-form-travel .content-section {
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
  }

  .mt-contact-form-travel .background-section,
  .mt-contact-form-travel .main-image-section {
    width: 100%;
    left: 0;
  }
}

.contact-form-right-design-change {
  margin-top: 150px !important;
}

.button-new-header {
  margin-left: 150px !important;
}

/* --------------------------- media query for home page by mt  */

@media (max-width: 1400px) and (min-width: 1000px) {
  .case-card-wrapper {
    flex: 1 0 calc(23% - 25px);
    max-width: calc(34% - 23px);
  }
}

@media (max-width: 1000px) and (min-width: 774px) {
  .case-card-wrapper {
    flex: 2 0 calc(37% - 23px);
    max-width: calc(49% - 23px);
  }
}

@media (max-width: 774px) and (min-width: 670px) {
  .case-card-wrapper {
    flex: 2 0 calc(51% - 23px);
    max-width: calc(51% - 23px);
  }
}

@media (max-width: 670px) and (min-width: 474px) {
  .case-card-wrapper {
    flex: 0 0 calc(80% - 23px);
    max-width: calc(80% - 23px);
  }
}

@media (max-width: 474px) and (min-width: 320px) {
  .case-card-wrapper {
    flex: 0 0 calc(100% - 23px);
    max-width: calc(100% - 23px);
  }
}

@media (max-width: 1200px) {
  .mt-box-six {
    padding: 0px !important;
  }

  .content-container h3 {
    font-size: 20px !important;
  }

  h2.new-cta-trav-aftert::after {
    margin-left: 36% !important;
    width: 14rem !important;
  }
}

@media (max-width: 992px) {
  .mt-subtext {
    font-size: 1rem;
  }

  .mt-subtext-last {
    font-size: 1rem;
    margin: 38px auto 30px;
  }

  .section-heading h2 {
    font-size: 30px !important;
  }

  .airline-container-992-changes {
    padding-top: 0px !important;
  }

  h2.new-cta-trav-aftert::after {
    margin-left: 26% !important;
  }

  .new-trav-cta-section p {
    font-size: 1rem !important;
  }

  .mt-change-992-tra-cta-section {
    margin-bottom: 40px !important;
  }

  .new-trav-logo-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 600px) {
  .tabs {
    overflow-x: scroll;
    white-space: nowrap;
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .section-heading h2 {
    font-size: 22px !important;
  }
}

@media (max-width: 576px) {
  .new-trav-cta-section h2 {
    font-size: 30px !important;
  }
}

@media (max-width: 448px) {
  .new-trav-cta-section h2 {
    font-size: 23px !important;
  }

  .trav-448-cta-mq {
    padding-top: 0px !important;
  }

  h2.new-cta-trav-aftert::after {
    margin-left: 23% !important;
    width: 11rem !important;
  }

  .new-cta-trav-new-side-content h3 {
    font-size: 18px !important;
    line-height: 33px !important;
  }

  .section-heading h2 {
    font-size: 20px !important;
    line-height: 33px !important;
  }

  .mt-subtext {
    margin: 12px 10px 34px 6px;
  }
}

@media (max-width: 344px) {
  .new-trav-cta-section h2 {
    font-size: 20px !important;
  }

  h2.new-cta-trav-aftert::after {
    margin-left: 25% !important;
    width: 7rem !important;
  }
}

@media (max-width: 1400px) and (min-width: 1200px) {
  h2.new-cta-trav-aftert::after {
    margin-left: 36% !important;
  }
}

@media (max-width: 768px) {
  .new-trav-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 448px) {
  .new-trav-logo-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 1400px) and (min-width: 992px) {
  .new-travel-new-counter-changing-mq {
    gap: 80px !important;
  }
}

@media (max-width: 992px) and (min-width: 768px) {
  .new-travel-new-counter-changing-mq {
    gap: 80px !important;
  }

  .new-travel-new-counter-changing-mq {
    justify-content: start !important;
    margin-left: 80px !important;
  }

  .new-travel-new-counter .counter-value {
    font-size: 1.8rem !important;
  }

  .new-travel-new-counter .counter-label {
    font-size: 14px !important;
  }

  .new-travel-new-counter h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .new-travel-new-counter {
    height: auto !important;
  }

  .new-testimonial-anime-new-header-section h2 {
    font-size: 2rem !important;
  }
}

@media (max-width: 576px) {

  .new-industry-trav-new-section-min-height h2,
  .new-industry-trav-new-section-min-height p {
    text-align: center;
    max-width: 500px !important;
    margin-left: 8px !important;
  }

  .industries-h2-pm::after {
    margin-left: 40%;
  }

  .new-industry-trav-new-section-min-height h2 {
    font-size: 37px !important;
  }

  .new-industry-trav-new-section-min-height p {
    font-size: 18px !important;
  }

  .new-cta-third-anime-new-index-line {
    margin-left: 43% !important;
  }

  .new-cta-third-anime-new-index-line {
    width: 51px;
  }

  .new-cta-third-anime-new-index-text,
  .new-cta-third-anime-new-index-title {
    text-align: center !important;
  }

  .new-cta-third-anime-new-index-title {
    font-size: 42px;
  }

  .new-cta-third-anime-new-index-text {
    font-size: 18px !important;
    padding: 10px !important;
  }

  .new-cta-third-anime-new-index-text {
    max-width: 550px !important;
  }

  .new-testimonial-anime-new-header-section h2 {
    font-size: 1.5rem !important;
  }

  .new-testimonial-anime-new-header-quote {
    font-size: 18px;
    padding: 0 57px;
  }
}

@media (max-width: 500px) {
  .new-travel-new-counter h2 {
    font-size: 2rem;
  }

  .new-travel-new-counter .counter-value {
    font-size: 2rem;
  }
}

@media (max-width: 400px) {
  .new-travel-new-counter h2 {
    font-size: 1.5rem;
  }

  .new-industry-trav-new-section-min-height h2,
  .new-industry-trav-new-section-min-height p {
    margin-left: 0px !important;
  }

  .new-travel-new-counter .counter-value {
    font-size: 1.5rem;
  }
}

@media (max-width: 430px) {
  .new-trav-new-blog-section .section-header {
    justify-content: start !important;
  }

  .btn-outline-dark {
    margin-left: 50px !important;
  }

  .new-trav-new-blog-section .section-header h2 {
    font-size: 1.3rem !important;
  }
}

@media (max-width: 360px) {
  .section-header {
    flex-direction: column;
  }

  .btn-outline-dark {
    margin-left: 0px !important;
    margin-top: 20px !important;
  }
}

/* new */
.top-line {
  width: 100%;
  height: 10px;
  background-color: #cc0000;
  /* Sabre's red color */
}


@media (max-width: 750px) {
  button.button_main a {
    margin: 0px !important;
  }
}

@media (max-width: 1600px) {
  .button-main-responsive a {
    padding: 0px 30px !important;
  }
}

.read-all {
  border: none;
  padding: 8px 20px;
  border-radius: 10px;
  border: 2px solid black;
  background: transparent;
  text-decoration: none;
}

.read-all a {
  text-decoration: none !important;
  color: black !important;
}

.read-all:hover {
  background-color: red;
  color: white !important;
  border: none !important;
}

@media (max-width: 1200px) {
  .custom-contact-section.get-started-v5 {
    background: none !important;
  }
}

/* .submenu_main .submenu_details .golabal_fight_inner .golabal_fight:hover {
background-color: #f3f3f3 !important;
border-radius: 5px !important;
} */

/* @media (max-width: 768px) {
  .slide-container .slide:nth-child(1) {
      background-image: url('../img/new-header/mobile-view-We-Empower-Global-Travel-Insights-with-Data-Intelligence--01.webp') !important;
  }


  .slide-container .slide:nth-child(2) {
      background-image: url(../img/new-header/mobile-view-Our-Travel-Data-Intelligence-Improves-Customer-Experience-01.webp) !important;
  }
  .slide-container .slide:nth-child(3) {
      background-image: url(../img/new-header/mobile-view-Our-Real-Time-Price-Monitoring-Make-You-Market-Leader-01.webp) !important;
  }
}

@media (max-width: 500px) {
  .hover-content-no-dsplay {
    font-size: 10px !important;
  } 
} */


.contact-form-main-button-new {
  display: inline-block !important;
  transition: all 0.2s ease-in !important;
  position: relative !important;
  overflow: hidden !important;
  z-index: 1 !important;
  color: #fff !important;
  padding: 10px 26px !important;
  border-radius: 0.5em !important;
  background: red !important;
  border: none !important;
}

.contact-form-main-button-new:hover {
  background-color: #323131 !important;
}

.golabal_fight a {
  text-decoration: none !important;
}

@media (max-width: 1400px) {
  .new-industry-trav-new-section-card h3 {
    font-size: 1.3rem !important;
  }

  .hover-content-no-dsplay {
    font-size: 8px !important;
  }
}

.all-btn-change {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width:200px) and (max-width: 299px) {
  .button_main-bottom {
    margin-top: 5% !important;
  }
}

/* ------------- FAQS -------------------------- */

.mt-new-header-faqs-container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 15px;
  width: 100%;
}

.mt-new-header-faqs-title {
  font-size: 2rem !important;
  color: black !important;
  font-weight: 700;
  margin-bottom: 50px !important;

  text-align: center;
}

.mt-new-header-faqs-list {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.mt-new-header-faqs-item {
  border-bottom: 1px solid #eee;
  background: #fff;
}

.mt-new-header-faqs-item:last-child {
  border-bottom: none;
}

.mt-new-header-faqs-question {
  width: 100%;
  text-align: left;
  padding: clamp(1rem, 2vw, 1.2rem);
  background: none !important;
  border: none;
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  color: #333;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
  gap: 1rem;

}

.mt-new-header-faqs-question:hover {
  background-color: #f8f9fa;
}

.mt-new-header-faqs-icon {
  min-width: 24px;
  width: clamp(20px, 5vw, 24px);
  height: auto;
  transition: transform 0.2s ease;
}

.mt-new-header-faqs-answer {
  padding: 0 clamp(1rem, 2vw, 1.2rem);
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.2s ease-out;
  font-size: clamp(0.9rem, 2vw, 1rem);
  background-color: #f8f9fa;
}




.mt-new-header-faqs-answer.active {
  height: auto;
  opacity: 1;
  padding: clamp(1rem, 2vw, 1.2rem);
}

.mt-new-header-faqs-icon.active {
  transform: rotate(180deg);
}

@media (max-width: 575.98px) {
  .mt-new-header-faqs-container {
    margin: 1rem auto;
    padding: 0 10px;
  }

  .custom-contact-section.get-started-v5 {
    padding-right: 10px;
    padding-left: 10px;
  }

  .custom-form-container {
    max-width: 100%;
  }
}

.faqs-section-new-mt {
  padding-bottom: 80px !important;
}

@media (max-width: 1200px) {
  .scraper-main-cotnent h1 {
    margin-top: 100px !important;
  }
}

.new-p-500 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

@media (max-width: 500px) {
  .new-p-500 {
    padding-bottom: 25px !important;
  }

}

@media (max-width: 768px) {
  .new-industry-trav-new-section-hero {
    background-position: top right !important;
  }
}

/*  Dataset card CSS */
.dataset-cards {
  border-radius: 1rem;
  padding: 1.5rem !important;
  /* border: 1px solid black; */
}

.dataset-cards img {
  width: 3rem;
}

.dataset-cards button {
  padding: 0.4rem 0.5rem;
  border-radius: 1rem;
  border: none;
  background-color: red;
}

.dataset-cards button a {
  text-decoration: none;
  color: white;
}

/*   dataset page css */
.dark-bg {
  background-color: #333;
  color: #fff;
  border-radius: 8px;
  padding: 10px 20px;
}

.dark-bg input::placeholder {
  color: #ccc;
}

.filter-container {
  display: flex;
  gap: 10px;
  justify-content: end;
}

.filter-btn {
  background-color: #333;
  color: #fff;
  border-radius: 8px;
  padding: 10px 20px;
  border: none;
}

.filter-btn select {
  background-color: transparent;
  color: #fff;
  border: none;
  outline: none;
}

.expedia-card-section {
  background-color: #302F2F;
}

.flight_inner_main {
  transition: all .2s ease-in-out;
  padding: 10px;
}

.new-flight_inner_main:hover {
  /* background-color: #f7f7f7 !important; */
  /* transform: scale(1.1); */
  /* box-shadow: 0px 10px 10px 0px solid black; */

}

.full-row-section {
  background-color: #302F2F;
}

.new-content-detail {
  display: flex !important;
  justify-content: center !important;
}

.new-ser-list {
  font-size: 18px !important;
  padding: 10px 0px !important;
  color: #363C42 !important;
}


/* NEW Header CSS START */

/* .submenu_main .submenu_details .golabal_fight_inner .golabal_fight:hover {
    background-color: red;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 10px; */
/* transform: scale(0.985); */

/* Center content on hover */
/* display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

}

 .submenu_main .submenu_details .golabal_fight_inner .golabal_fight:hover * {
    color: white;
}

.submenu_main .submenu_details .golabal_fight_inner .golabal_fight{
  min-height: 155px;
  border-radius: 15px;
  padding: 10px;
} */


/* NEW Header CSS END */

@media (min-width: 1200px) {
  .dataset-footer-section {
    width: 285px !important;
  }
}



/*-------------------------------------------------------------------------------new slider css start */


.img-slider-new {
  max-width: 800px;
}

.mt-slider-new .slide {
  justify-content: space-between !important;
  /* justify-content: center; */
}

/* .mt-slider-new .slide-content{
        margin-left: 0%;
    } */

.mt-slider-new {
  height: auto;
  padding-top: 150px;
  padding-bottom: 50px;
  min-height: 990px;
  /* max-height: 70vh; */
  /* min-height: 65vh; */
}

.mt-slider-new .slide-container {
  height: auto;
}

.mt-slider-new .slide {
  position: unset;
  height: 0px;
  visibility: hidden;
}

.mt-slider-new .slide.active {
  height: auto;
  visibility: visible;
}

.slide img {
  padding-right: 60px;
}


@media screen and (max-width: 1110px) {
  .slide {
    flex-direction: column;
    display: flex;
  }

  .slide img {
    padding-right: 0px;
  }

  .slide-content {
    order: 1;
    width: 100%;
  }

  .img-slider-new {
    order: 2;
    width: 100%;
    margin-top: 20px;
    /* Optional: Add some spacing between content and image */
  }

  .mt-slider-new .slide {
    gap: 0px;
  }

}

@media (max-width: 1110px) and (min-width: 680px) {
  .mt-slider-new .slide {
    /* height: auto; */
  }
}

.mt-slider-new .slide .slide-content {
  display: none;
}

.mt-slider-new .slide.active .slide-content {
  display: block;
}

@media (max-width: 1400px) {
  .mt-slider-new {
    min-height: 800px;
  }
}

@media (max-width: 1110px) {
  .mt-slider-new {
    min-height: unset;
  }
}

/*--------------------------------------------------------------------------------- New video Page CSS */




.video-thumbnail {
  position: relative;
  cursor: pointer;
}

.featured-img {
  width: 100%;
  height: auto;
  display: block;
}

.play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.play-button-overlay img {
  width: 24px;
  height: 24px;
}

/* Modal Styles */
.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.video-modal-content {
  position: relative;
  max-width: 80%;
  margin: auto;
  padding: 0;
  background: #000;
}

.video-close {
  position: absolute;
  top: 10px;
  right: 20px;
  color: white;
  font-size: 30px;
  cursor: pointer;
  z-index: 1000;
}

.video-box {
  display: flex;
    flex-direction: column;
    justify-content: space-between;
  min-height: 560px;
  padding: 10px;
  /* margin-bottom: 50px; */
  background: linear-gradient(135deg, rgba(255, 71, 87, 0.05), rgba(255, 107, 125, 0.08));
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 71, 87, 0.15);
}



/* new travel cta button  css start*/






.travel-cta-button-section {
  padding: 20px 0;
}

.match-center-content {
  margin-top: 40px;
  margin-bottom: 40px;
  z-index: 5;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.match-pad-bg {
  background: #e7e7e7a3 !important;
  padding: 30px 40px;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
   
}

.h5-size {
  font-weight: 500;
  text-align: center;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 20px;
}

.travel-cta-button-section .travel-contact-btn {
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.65rem 1.75rem;
  -webkit-box-shadow: none;
  font-weight: 600;
  border-radius: 0.375rem;
  font-family: "Arial", sans-serif;
  border: 2px solid transparent;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background-color: red  !important;
  border-color: #ff644fff !important;
  
}




/* .travel-cta-button-section .travel-contact-btn {
    background-color: red !important;
    border-color: #ff644fff !important;
    box-shadow: 0 11px 18px -8px rgb(41 6 96 / 60%);
}
 */

.travel-contact-btn:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}





@media(max-width:768px) {
  .travel-table-inner {
    overflow-x: scroll;

  }
}













/* new travel cta button  css end*/