:root {
  /* background */
  --bg_clr_white: 0 0% 100%; /* #ffffff */
  --bg_clr_primary: 208 79% 40%; /* #156BB5 */

  --bg_clr_primary_dark: 216 66% 38%; /* #2155a1 */

  --bg_clr_primary_blue: 208 55% 47%; /* #367CB8 */

  --bg_clr_secondary: 0 0% 22%; /* #383838 */

  --bg_clr_inout: 0 0% 95%; /* #F2F2F2 */

  /* text */
  --text_white: 0 0% 100%; /* #ffffff */
  --text_black: 0 0% 0%; /* #000000 */

  --text_black_02: 0 0% 5%; /* #0E0E0E */

  --text_title: 210 15% 29%; /* #3E4954 */
  --para_text: 210 15% 29%; /* #3E4954 */
  --text_clr_primary: 208 79% 40%; /* #156BB5 */

  --text_danger: 26 40% 50%; /* #B2794D */
  --text_correct: 133 100% 31%; /* #009E23 */

  --para_text2: 0 0% 24%; /* #3C3C3C */

  --footer_title: 0 0% 22%; /* #383838 */

  --input_placeholder: 0 0% 34%; /* #565656 */

  --clr_light_grey_00: #ebebeb;
  --clr_light_grey_01: #d5d5d5;
  --clr_light_grey_02: #ededed;
  --clr_light_grey_03: #e6edf0;
  --clr_light_grey_04: #d9e1e4;

  /* border */
  --border_clr: 215 94% 94%; /* #DFECFE */

  /* font-weight */
  --font_weight_light: 300;
  --font_weight_regular: 400;
  --font_weight_medium: 500;
  --font_weight_semiBold: 600;
  --font_weight_bold: 700;
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

/* Body */
html,
body {
  /* height: 100%; */
  margin: 0;
  padding: 0;
}
body {
  background: #f7fbff;
}
:is(html, body) {
  width: 100%;
  scroll-behavior: smooth;
}

:is(button, input, select, option) {
  border-color: transparent;
  outline-color: transparent;
}
button:focus-visible {
  outline: none;
}
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

:is(h1, h2, h3, h4, h5, h6, p, a, th, td) {
  color: var(--clr_text_primary);
  margin: 0;
}

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

a:hover {
  color: hsl(var(--text_clr_primary));
  text-decoration: none;
}
button {
  outline: none !important;
  box-shadow: none !important;
}

/* width */
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  border-radius: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: hsl(var(--bg_clr_white));
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: hsla(0, 0%, 51%, 0.464);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: hsla(0, 0%, 42%, 0.568);
}

/* font */
.dm {
  font-family: "DM Serif Text", serif;
}
.inter {
  font-family: "Inter", serif;
}
/* font */

/* max-width */
.max-w-500 {
  max-width: 500px !important;
}
/* width */

.radio_btn {
  display: flex;
  cursor: pointer;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  margin-block: 20px 10px;
}
.radio_btn input {
  position: absolute;
  left: -9999px;
}
.radio_btn input:checked + span {
  background: #156bb5;
  color: hsl(var(--text_white));
}
.radio_btn input:checked + span:before {
  border: 4px solid #fff;
  background-color: #156bb5;
}
.radio_btn span {
  display: flex;
  align-items: center;
  padding: 4px 16px;
  border-radius: 99em;
  transition: 0.25s ease;
  width: 100%;
  min-height: 54px;
  border-radius: 10px;
  border: 1px solid #e7e7e7;
}
.radio_btn span:hover {
  background: #d6d6e5;
}
.radio_btn span:before {
  display: flex;
  flex-shrink: 0;
  content: "";
  background-color: #fff;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  margin-right: 16px;
  transition: 0.25s ease;
  border: 1.33px solid #156bb5;
  /* box-shadow: inset 0 0 0 0.125em #156bb5; */
}

.filelabel {
  width: 100%;
  border: 0.82px solid #b7c2d4;
  border-radius: 8px;
  padding: 5px 20px;
  transition: border 300ms ease;
  cursor: pointer;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 78px;
  flex-wrap: wrap;
}

.filelabel .name {
  font-size: 12px;
  font-weight: var(--font_weight_bold);
  color: #000000;
}

.filelabel .edit {
  width: fit-content;
  cursor: pointer;
  color: #156bb5;
  margin-block-start: 4px;
  font-size: 12px;
}

.filelabel .file_label_text {
  display: block;
  color: #8e97a4;
  font-size: 13px;
  font-weight: 500;
  flex: 1;
}

.file_upload_image {
  width: 112px;
  border-radius: 6px;
  height: 48px;
  object-fit: cover;
}
.file_name {
  flex: 1;
}

.file_label_text .file_label_small {
  color: #444a53;
  margin-block-start: 6px;
  display: block;
  font-size: 10px;
}
.btn_file {
  width: fit-content;
  border-radius: 8px;
  padding-inline: 20px;
  min-height: 36px;
  font-weight: var(--font_weight_bold);
  font-size: 14px;
  background: hsl(var(--bg_clr_primary));
  color: hsl(var(--text_white));
  transition: cubic-bezier(0.075, 0.82, 0.165, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn_file:hover {
  background: hsl(var(--bg_clr_primary_dark));
  color: hsl(var(--text_white));
}
#FileInput {
  display: none;
}

input, .input {
  width: 100%;
  padding: 8px 20px;
  border-radius: 10px;
  border: none;
  outline: none;
  box-shadow: none;
  color: hsl(var(--input_placeholder));
  font-size: 14px;
  background: hsl(var(--bg_clr_inout));
  min-height: 50px;
}

.input2,
select {
  width: 100%;
  padding: 8px 20px;
  border-radius: 10px;
  border: none;
  outline: none;
  box-shadow: none;
  color: hsl(var(--input_placeholder));
  font-size: 14px;
  background: hsl(var(--bg_clr_inout));
  min-height: 50px;
  border: 1px solid #d0dbec;
}
.select {
  position: relative;
}
.select select {
  padding-inline-end: 40px;
  position: relative;
}

.select i {
  position: absolute;
  right: 20px;
  bottom: 14px;
  color: hsl(var(--input_placeholder));
  cursor: pointer;
  font-size: 20px;
  z-index: 1;
}

.phone_number {
  position: relative;
}

.ph_code {
  position: absolute;
  left: 0px;
  bottom: 10px;
  font-size: 14px;
  color: hsl(var(--input_placeholder));
  padding-inline: 20px;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #d0dbec;
}

.phone_number input {
  padding-inline-start: 90px;
}

input::placeholder {
  color: hsl(var(--input_placeholder));
}

.input_2 {
  position: relative;
}
.input_2 input {
  padding-inline-end: 40px;
}
.input_2 i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: hsl(var(--input_placeholder));
  cursor: pointer;
  font-size: 20px;
}
.input_label {
  font-size: 14px;
  margin-block-end: 8px;
  font-weight: var(--font_weight_semiBold);
  color: var(--para_text);
}
.input_label span {
  font-weight: var(--font_weight_regular);
}

/* solid_btn */
.solid_btn {
  width: 100%;
  border-radius: 10px;
  min-height: 50px;
  font-weight: var(--font_weight_bold);
  font-size: 16px;
  background: hsl(var(--bg_clr_primary));
  color: hsl(var(--text_white));
  transition: cubic-bezier(0.075, 0.82, 0.165, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.solid_btn:hover {
  background: hsl(var(--bg_clr_primary_dark));
  color: hsl(var(--text_white));
}

.solid_btn_white {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  border-radius: 10px;
  min-height: 50px;
  font-weight: var(--font_weight_semiBold);
  font-size: 18px;
  background: hsl(var(--bg_clr_white));
  padding: 6px 26px;
  color: hsl(var(--text_black));
  transition: cubic-bezier(0.075, 0.82, 0.165, 1);
}
.solid_btn_white:hover {
  background: hsl(var(--bg_clr_primary));
  color: hsl(var(--text_white));
}

.solid_btn_black {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  border-radius: 10px;
  min-height: 50px;
  font-weight: var(--font_weight_semiBold);
  font-size: 18px;
  background: hsl(var(--bg_clr_secondary));
  padding: 6px 26px;
  color: hsl(var(--text_white));
  transition: cubic-bezier(0.075, 0.82, 0.165, 1);
}
.solid_btn_black:hover {
  background: hsl(var(--bg_clr_primary));
  color: hsl(var(--text_white));
}

.outline_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  border-radius: 10px;
  min-height: 50px;
  font-weight: var(--font_weight_semiBold);
  font-size: 18px;
  background: transparent;
  border: 1px solid hsl(var(--text_white));
  padding: 6px 26px;
  color: hsl(var(--text_white));
  transition: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.outline_btn:hover {
  background: hsl(var(--bg_clr_white));
  color: hsl(var(--text_black));
}

.outline_btn_blue {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  border-radius: 10px;
  min-height: 50px;
  font-weight: var(--font_weight_semiBold);
  font-size: 18px;
  background: transparent;
  border: 1px solid hsl(var(--bg_clr_primary_dark));
  padding: 6px 26px;
  color: hsl(var(--bg_clr_primary_dark));
  transition: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.outline_btn_blue:hover {
  background: hsl(var(--bg_clr_primary_dark));
  color: hsl(var(--text_white));
  border: 1px solid hsl(var(--bg_clr_white));
}

.outline_btn_black {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  border-radius: 10px;
  min-height: 50px;
  font-weight: var(--font_weight_semiBold);
  font-size: 18px;
  background: transparent;
  border: 1px solid hsl(var(--text_title));
  padding: 6px 26px;
  color: hsl(var(--text_title));
  transition: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.outline_btn_black:hover {
  background: hsl(var(--bg_clr_primary_dark));
  color: hsl(var(--text_white));
  border: 1px solid hsl(var(--bg_clr_white));
}

.outline_btn_danger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  border-radius: 10px;
  min-height: 50px;
  font-weight: var(--font_weight_semiBold);
  font-size: 18px;
  background: transparent;
  border: 1px solid #de7373;
  padding: 6px 26px;
  color: #ce5555;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.outline_btn_danger:hover {
  background: #ce5555;
  color: hsl(var(--text_white));
  border: 1px solid #ce5555;
}

/* solid_btn */

.myContainer {
  max-width: min(100% - 35px, 1228px);
  margin: 0 auto;
}

/* typo */
.h1 {
  font-size: clamp(30px, 5vw, 65px);
  line-height: 1.2;
}
.h2 {
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.2;
}
/* typo */

/*header*/
.inner_top_wrapper{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}
/*header*/

/* banner */
.banner_images {
  width: 100%;
  background: url(/assets/images/home/bgBanner.webp) no-repeat center;
  background-size: cover;
}

.bg_inner {
  width: 100%;
  padding-block: 170px 0;
  display: flex;
  align-items: flex-end;
}
.content {
  width: 100%;
  max-width: 660px;
}
.content .title {
  color: hsl(var(--text_white));
  text-transform: capitalize;
}
.btn_group {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-block-start: 30px;
}
.images_group {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-block-start: clamp(30px, 5vw, 60px);
  padding-block-end: clamp(30px, 5vw, 80px);
}
.images_group img {
  width: clamp(100px, 5vw, 140px);
  height: clamp(100px, 5vw, 140px);
  object-fit: cover;
  border-radius: 27px;
  box-shadow: 9px 8px 44.1px 0px #00000040;
  box-shadow: 33px 53px 26.6px -27px #00000040;
}
.bg_image {
  width: 100%;
}
.bg_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bread_crumb {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: white;
  gap: 6px;
  margin-block-end: 10px;
}
.bread_crumb a {
  color: hsl(var(--text_white));
  text-decoration: none;
}

/* inner_page_banner */
.inner_page_banner .bg_inner {
  padding-block: 170px 0px;
}
.inner_page_banner .bg_inner .bg_image {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.inner_page_banner .bg_inner .bg_image img {
  max-width: 425px;
}
.inner_page_banner .content {
  padding-block-end: clamp(40px, 5vw, 100px);
}
/* inner_page_banner */

@media (max-width: 767px) {
  .bg_inner {
    flex-direction: column;
    align-items: center;
  }
  .bg_image {
    height: clamp(200px, 90vw, 400px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-block-start: 30px;
  }
  .bg_image img {
    object-fit: contain;
  }
  .inner_page_banner .content {
    padding-block-end: 40px;
  }
  .inner_page_banner .bg_inner .bg_image {
    margin: 0;
    align-items: flex-end;
    justify-content: center;
    height: clamp(100px, 80vw, 400px);
  }
  .inner_page_banner .bg_inner .bg_image img {
    object-position: bottom;
  }
}
@media (max-width: 479px) {
  .images_group,
  .btn_group {
    flex-wrap: wrap;
  }
}

/* banner */

/* header */
.top_header {
  width: 100%;
  position: absolute;
  top: 14px;
  z-index: 112;
}

.link_tH {
  text-align: end;
  color: hsl(var(--text_white));
  text-decoration: none;
  cursor: pointer;
  display: flex;
  /*margin-inline-start: auto;*/
  width: fit-content;
}
.link_tH:hover {
  color: hsl(var(--text_white));
  text-decoration: underline;
}

.header {
  width: 100%;
  position: absolute;
  top: 10px;
  z-index: 111;
}

.header.header-expanded {
  z-index: 113;
}

.navbar {
  width: 100%;
  border-radius: 10px;
  position: relative;
  z-index: 0;
  padding: 0;
}
.navbar::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin-block: auto;
  width: 100%;
  height: 70px;
  border-radius: 10px;
  background: hsl(var(--bg_clr_white));
  z-index: -1;
}
.navbar_inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
}
.navbar-toggler {
  display: none;
}
.menu {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-inline: 30px;
  background: none;
  border: none;
}
.menu .menu_item {
  padding-block: 20px;
  position: relative;
  border-bottom: 2px solid transparent;
  text-decoration: none;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1);
  font-weight: var(--font_weight_medium);
  background: none;
  color: #46383d;
}

.menu .menu_item.active {
  border-bottom: 2px solid hsl(var(--text_clr_primary));
  color: hsl(var(--text_clr_primary));
}

.menu .menu_item:hover {
  border-bottom: 2px solid hsl(var(--text_clr_primary));
  color: hsl(var(--text_clr_primary));
}

.user {
  padding: 2px 20px;
  border-left: 1px solid hsl(var(--border_clr));
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  color: hsl(var(--text_clr_primary));
  cursor: pointer;
  text-decoration: none;
}

.navbar-toggler {
  border: none;
  position: relative;
  background-color: transparent;
  box-shadow: none !important;
  outline: none !important;
  min-height: 40px;
}

.navbar-toggler-icon {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s;
}

/* When toggled */
.navbar-toggler .navbar-toggler-icon {
  transform: rotate(0deg);
}

.navbar-toggler .navbar-toggler-icon:before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: #333;
  /* transform: rotate(45deg); */
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.navbar-toggler .navbar-toggler-icon:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: #333;
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  /* transform: rotate(-45deg); */
}

/* Ensure toggler icon animates only when the navbar is not collapsed */
.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  background-color: transparent;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon:before {
  top: 0px;
  transform: rotate(45deg);
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon:after {
  bottom: 0px;
  transform: rotate(-45deg);
}
.close_menu {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 20px;
  font-size: 24px;
  text-decoration: none;
  background: none;
  outline: none;
  padding-bottom: 0;
}

@media (max-width: 1199px) {
    .menu{
        gap: 16px;
    }
    .user{
        padding: 2px 12px;
    }
}

@media (max-width: 1023px) {
  .navbar-toggler {
    display: block;
  }
  .menu {
    display: none;
  }
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: -400px;
    width: 320px;
    background: hsl(var(--bg_clr_white));
    height: 100svh;
    transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  }
  .navbar-collapse.show {
    left: 0;
    z-index: 1111;
  }
  .navbar-collapse .menu {
    display: block;
    flex-direction: column;
    flex-wrap: wrap;
  }
  .navbar-collapse .menu .menu_item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: start;
    padding-inline: 0;
  }
}

@media (max-width: 767px) {
  .navbar-brand img {
    width: 140px;
    object-fit: contain;
  }
  .navbar-collapse{
      width: 250px;
  }
}

@media (max-width: 575px) {
  .navbar-brand img {
    width: 100px;
  }
  .user h6{
      overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    width: 31px;
  }
}

/* header */

/* footer_sec */
.footer_sec {
  width: 100%;
  background: url("/assets/images/home/footerbg.webp") no-repeat center
    center/cover;
  padding-block: 60px clamp(50px, 8vw, 100px);
}
.foot_inner {
  width: 100%;
  display: flex;
  align-items: flex-start;
}
.foot_inner .left_side {
  width: clamp(200px, 50vw, 310px);
  padding-inline-end: 20px;
  border-inline-end: 1px solid #2b3d5f3f;
}
.foot_logo {
  width: 100%;
}
.social_icons {
  width: 100%;
  margin-block-start: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.social_icons .S_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  color: hsl(var(--text_black));
}
.social_icons .S_icon:hover {
  color: hsl(var(--text_clr_primary));
}
.copy_write {
  font-size: 12px;
  color: hsl(var(--text_black_02));
  margin-block-start: 26px;
}
.left_side .sub_text {
  font-size: 13px;
  color: hsl(var(--text_black_02));
  margin-block-start: 4px;
  font-weight: var(--font_weight_medium);
}

.right_side {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding-inline-start: clamp(30px, 8vw, 80px);
}
.foot_menu {
  width: 100%;
  padding-inline-end: clamp(0px, 8vw, 40px);
}
.foot_menu .title,
.info_menu .title {
  font-size: 20px;
  color: hsl(var(--footer_title));
}
.foot_link {
  display: flex;
  flex-direction: column;
  /* gap: 10px; */
  margin-block-start: 30px;
}
.foot_link .menu_item {
  text-decoration: none;
  font-size: 16px;
  color: hsl(var(--footer_title));
  padding: 6px 10px;
  position: relative;
}
.foot_link .menu_item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: hsl(var(--footer_title));
}
.foot_link .menu_item:hover {
  color: hsl(var(--text_clr_primary));
}
.info_menu {
  width: 100%;
}
.info_link {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-block-start: 30px;
}
.info_link .info_item {
  text-decoration: none;
  font-size: 16px;
  color: hsl(var(--footer_title));
  position: relative;
  display: flex;
  align-items: flex-start;
  word-break: break-word;
  gap: 10px;
}
.info_link .info_item i {
  font-size: 24px;
  padding-block: 2px 0;
  display: flex;
}

.info_link .info_item:hover {
  color: hsl(var(--text_clr_primary));
}

@media (max-width: 1023px) {
  .foot_inner {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .foot_inner .left_side {
    width: 100%;
    padding-inline: 0;
    border-inline-end: none;
  }
  .right_side {
    width: 100%;
    padding-inline: 0;
  }
  .right_side .foot_menu {
    margin-block-end: 30px;
  }
}
/* footer_sec */

/* gallery */

.gallery_container {
  width: 100%;
}

.gallery_container .gallery_inner {
  width: 100%;
  padding-block: 60px;
}
.gallery_images {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 36px;
}
.gallery_image {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
  cursor: pointer;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1);
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #334a5e2b;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3 cubic-bezier(0.075, 0.82, 0.165, 1);
}
.overlay i {
  font-size: 30px;
  background: hsl(var(--bg_clr_white));
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery_image:hover .overlay {
  opacity: 1;
}
.gallery_image img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1);
}

/* gallery */

/* our_product */

.our_product {
  width: 100%;
}

.our_product .our_product_inner {
  width: 100%;
  padding-block: clamp(50px, 8vw, 80px);
}
.our_product_images {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 26px;
}
.our_product_image {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
}
.our_product_image img {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.our_product_image .title {
  font-size: 16px;
  color: hsl(var(--text_black_02));
  margin-block: 24px 0;
  text-transform: uppercase;
}
.our_product_content {
  width: 100%;
  margin-block-end: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.our_product_content .sub_text {
  color: hsl(var(--footer_title));
}
.our_product_content .sub_text {
  font-size: 16px;
  color: hsl(var(--footer_title));
  font-weight: var(--font_weight_semiBold);
  text-decoration: underline;
}
/* our_product */

/* help_sec */
.help_sec {
  width: 100%;
}
.help_sec .help_inner {
  width: 100%;
  background: linear-gradient(180deg, #e5e5e5 0%, #dedede 100%);
  border-radius: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-end;
  overflow: hidden;
}
.help_content {
  width: 100%;
  padding: 50px clamp(30px, 8vw, 60px);
}
.help_content .title {
  color: hsl(var(--footer_title));
  margin-block-end: 20px;
}
.help_content .sub_text {
  color: hsl(var(--footer_title));
  font-size: 18px;
}
.right_images {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  height: 100%;
}
.right_images img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
}

@media (max-width: 1023px) {
  .help_sec .help_inner {
    grid-template-columns: 1fr;
  }
  /* .right_images {
    display: none;
  } */
}
/* help_sec */

/* Testimonials */
.testimonial_sec {
  width: 100%;
}
.testimonial_sec_inner {
  width: 100%;
  padding-block: clamp(50px, 8vw, 80px) 0;
}

@media (max-width: 575px) {
  .testimonial_slider {
    padding-inline: 20px;
  }

}

.testimonial_sec_content {
  width: 100%;
  text-align: center;
  max-width: 500px;
  margin-inline: auto;
}
.testimonial_sec_content .title {
  color: hsl(var(--footer_title));
  margin-block-start: 10px;
}
.testimonial_sec_content .top_text {
  width: fit-content;
  margin-inline: auto;
  background: hsl(var(--bg_clr_primary_blue));
  color: hsl(var(--text_white));
  font-weight: var(--font_weight_semiBold);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 10px;
  border-radius: 20px;
}
.testimonial_slider {
  width: 100%;
  padding-block: 40px clamp(50px, 8vw, 80px);
}
.testimonial_slider .btn_group {
  margin-block-start: 50px;
}
.test_card {
  width: 100%;
  background: #fff9ee;
  padding: 40px 30px;
  border-radius: 24px;
}
.profile {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile img {
  width: 50px !important;
  height: 50px;
  overflow: hidden;
  border-radius: 50%;
}

.profile .profile_info .title {
  color: #061c3d;
  font-size: 16px;
  font-weight: var(--font_weight_semiBold);
}
.sub_text {
  color: #42526b;
  font-size: 14px;
  margin-block-start: 2px;
}
.content_part {
  width: 100%;
  margin-block-start: 20px;
}

.star {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-block-start: 20px;
}
.content_part .sub_text {
  color: #061c3d;
  font-size: 16px;
}
.star {
  color: #3e4954;
  font-size: 20px;
}
.star img {
  width: 24px !important;
}
.star p span {
  font-size: 12px;
}
.owl-item:nth-of-type(2n) .test_card {
  background: #e3f0ff;
}

.owl-item:nth-of-type(3n) .test_card {
  background: #f5f6f7;
}

/* Testimonials */

/* service_sec */
.service_sec {
  width: 100%;
  background: url("/assets/images/home/service.png") no-repeat center
    center/cover;
}
.service_inner {
  width: 100%;
  padding-block: clamp(50px, 8vw, 140px);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.service_content {
  width: 100%;
  max-width: 520px;
}

.service_content .top_text {
  width: fit-content;
  background: hsl(var(--bg_clr_white));
  color: hsl(var(--para_text));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 10px;
  border-radius: 20px;
}
.service_content .title {
  color: hsl(var(--footer_title));
  margin-block-start: 10px;
}
.service_content .sub_text {
  color: hsl(var(--footer_title));
  font-size: 18px;
}

.service_item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  justify-content: center;
  text-align: center;
  width: 152px;
}

.icon {
  width: 152px;
  height: 152px;
  background: #f5fcff;
  backdrop-filter: blur(31px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.service_item .title {
  color: #574e5f;
  background: hsl(var(--bg_clr_white));
  font-size: 14px;
  font-weight: var(--font_weight_semiBold);
  padding: 3px 8px;
  border-radius: 20px;
  transition: 0.3s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.service_item:hover .icon {
  background: #38526c;
  box-shadow: 0px 26px 14px -3px #0000001a;
}
.service_item:hover .icon img {
  filter: brightness(0) invert(1);
}
.service_item:hover .title {
  background: #38526c;
  color: hsl(var(--text_white));
}

@media screen and (max-width: 767px) {
  .service_inner {
    justify-content: center;
  }
  .service_content {
    text-align: center;
  }
  .service_content .top_text {
    margin-inline: auto;
  }
  .icon {
    width: 110px;
    height: 110px;
  }
  .icon img {
    width: 40px;
    object-fit: contain;
  }
  .service_item {
    width: 125px;
  }
}

/* service_sec */

/* intro_sec */
.intro_sec {
  width: 100%;
  background: #eef5fc;
}
.intro_inner {
  width: 100%;
  padding-block: clamp(50px, 8vw, 80px);
}

.intro_content {
  width: 100%;
  max-width: clamp(300px, 50vw, 500px);
}

.intro_content .top_text {
  width: fit-content;
  background: hsl(var(--bg_clr_primary_blue));
  color: hsl(var(--text_white));
  font-weight: var(--font_weight_semiBold);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 10px;
  border-radius: 20px;
}
.top_wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.intro_content .title {
  color: hsl(var(--footer_title));
  margin-block-start: 10px;
}
.intro_content .sub_text {
  color: hsl(var(--para_text));
  font-weight: var(--font_weight_medium);
  font-size: 18px;
  margin-block-start: 20px;
}
.intro_content .sub_text a {
  color: #367cb8;
  text-decoration: underline;
}
.intro_images {
  width: fit-content;
}
.intro_images img {
  max-width: 100%;
}
.counter_grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  margin-block-start: clamp(40px, 8vw, 60px);
  gap: 40px;
}
.items {
  flex: 1;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.items .count {
  font-size: clamp(30px, 5vw, 50px);
  color: hsl(var(--para_text));
  font-weight: var(--font_weight_bold);
}
.count_wrapper {
  display: flex;
  align-items: flex-start;
  text-align: center;
  justify-content: center;
  gap: 4px;
}
.items span {
  font-size: clamp(16px, 5vw, 30px);
  color: #68a4d7;
  font-weight: var(--font_weight_medium);
}
.items .text {
  font-size: 18px;
  color: hsl(var(--para_text));
  font-weight: var(--font_weight_semiBold);
}
/* intro_sec */

/* tour_sec */
.tour_sec {
  width: 100%;
}
.tour_inner {
  width: 100%;
  padding-block: clamp(50px, 8vw, 80px) 0;
}
.tour_content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline-end: 240px;
  gap: 10px;
}
.tour_content .title {
  color: hsl(var(--footer_title));
  max-width: 530px;
}

.tour_content .title span {
  color: hsl(var(--text_clr_primary));
}
.guid {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.guid .text {
  font-size: 18px;
  color: hsl(var(--para_text));
  font-weight: var(--font_weight_semiBold);
  display: flex;
  align-items: center;
  gap: 10px;
}
.tour_images_sec {
  width: 100%;
  margin-block-start: 50px;
  height: 100%;
  display: grid !important;
}

@media (max-width: 575px) {
  .tour_images_sec{
      padding-inline: 20px;
  }
}

.tour_card {
  width: 100%;
  box-shadow: 7.99px 32.86px 39.17px -17.76px #c0cfdd8a;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.tour_card:hover .tour_image img {
  scale: 1.1;
}

.tour_image {
  width: 100%;
  height: 300px;
  display: flex;
  position: relative;
  overflow: hidden;
}
.tour_image .chip {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #3e4954;
  padding: 4px 10px;
  border-radius: 20px;
  color: white;
  font-size: 12px;
  font-weight: var(--font_weight_semiBold);
}

.tour_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
  transition: all 0.3s ease-in-out;
}
.card_content {
  width: 100%;
}
.top_content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  padding: 20px 30px;
  border-bottom: 1px solid #0000001a;
}
.top_content .left_content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.top_content .title {
  color: hsl(var(--footer_title));
  font-size: clamp(18px, 5vw, 24px);
  font-weight: var(--font_weight_semiBold);
}
.top_content .sub_text {
  display: flex;
  align-items: center;
  gap: 6px;
  color: hsl(var(--para_text));
  font-size: 16px;
  font-weight: var(--font_weight_medium);
  margin-block-start: 10px;
}
.top_content .sub_text img {
  width: 22px;
}
.top_content .popular {
  background: #eaf2f9;
  padding: 4px 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5c7f9d;
  font-size: 14px;
  font-weight: var(--font_weight_semiBold);
}
.bottom_content {
  padding: 20px 30px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.money {
  width: fit-content;
}
.number {
  font-size: 24px;
  color: hsl(var(--footer_title));
  font-weight: var(--font_weight_semiBold);
  display: flex;
  align-items: center;
  gap: 4px;
}
.number span {
  font-size: 16px;
  font-weight: var(--font_weight_medium);
}
.bottom_content .btn {
  width: fit-content;
  padding-inline: 30px;
}
.bottom_content p {
  font-size: 12px;
  color: #989898;
  font-weight: var(--font_weight_medium);
}
.right_content {
  padding: 0;
  margin: 0;
  margin-block-start: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.right_content li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 14px;
}
.card_content .right_content li img {
  width: 19px;
}
.tour_sec .owl-stage {
  padding-block-end: 80px;
}
.tour_sec .owl-item,
.tour_sec .owl-stage {
  height: 100%;
}
.tour_images_sec.owl-carousel .owl-dots.disabled,
.tour_images_sec.owl-carousel .owl-nav.disabled {
  display: block;
  position: absolute;
  top: -150px;
  right: 8%;
}
.tour_images_sec .owl-prev,
.tour_images_sec .owl-next {
  border: 1px solid #3e4954 !important;
  width: 56px;
  height: 56px;
  border-radius: 50% !important;
  margin: 0;
  color: hsl(var(--footer_title));
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tour_images_sec .owl-prev span,
.tour_images_sec .owl-next span {
  font-size: 30px;
  line-height: 30px;
  display: flex;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -2px;
}

@media (max-width: 1023px) {
  .tour_images_sec.owl-carousel .owl-dots.disabled,
  .tour_images_sec.owl-carousel .owl-nav.disabled {
    display: block;
    position: absolute;
    top: inherit;
    bottom: 0;
    left: 0;
    right: 0;
    margin-inline: auto;
  }
  .tour_content {
    padding-inline: 0px;
    flex-wrap: wrap;
  }
}
/* tour_sec */

/* left_right_Sec */
.left_right_Sec {
  width: 100%;
  background: #eef5fc;
}
.left_right_Sec .inner_left_right {
  width: 100%;
  padding-block: clamp(50px, 8vw, 80px);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: clamp(40px, 8vw, 80px);
}
.left_right_Sec .left_side {
  width: 100%;
}
.left_right_Sec .left_side .left_content .title {
  color: hsl(var(--footer_title));
  margin-block-end: 20px;
}
.left_right_Sec .sub_text {
  color: hsl(var(--footer_title));
  font-size: 18px;
}
.left_right_Sec .lR_right_side {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  overflow: hidden;
  border-radius: 35px;
}
.left_right_Sec .lR_right_side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 767px) {
  .left_right_Sec .inner_left_right {
    grid-template-columns: 1fr;
  }
}
/* left_right_Sec */

/* gallery_sec */
.gallery_sec {
  width: 100%;
  padding-block: clamp(50px, 8vw, 80px);
}
.gallery_sec_inner {
  width: 100%;
}

.gallery_head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.gallery_head .title {
  color: hsl(var(--footer_title));
  margin: 0;
}

.gallery_sec_inner .nav-tabs {
  border: none;
  gap: 16px;
  margin-block-start: 20px;
}

.gallery_sec_inner .nav-tabs .nav-link {
  padding: 6px 40px;
  width: 100%;
  min-height: 50px;
  background: #f7fbff;
  border: 1px solid #d7d7d7;
  border-radius: 40px;
  font-family: "inter", sans-serif;
  font-size: 16px;
  font-weight: var(--font_weight_semiBold);
  color: #3e4954;
}

.gallery_sec_inner .nav-tabs .nav-link.active {
  border: 1px solid #1558a7;
  color: #1558a7;
}

.gallery_sec_inner .images_grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 36px;
  margin-block-start: clamp(40px, 8vw, 70px);
}

.gallery_sec_inner .images_grid .images_grid_item {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.gallery_sec_inner .images_grid .images_grid_item img {
  width: 100%;
  /*height: 100%;*/
  object-fit: cover;
  object-position: center;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.view_more {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block-start: 60px;
}
.view_more .link {
  color: #383838;
  font-size: 18px;
}

/* gallery_sec */

/* contact_sec */
.contact_sec {
  width: 100%;
  padding-block: clamp(50px, 8vw, 80px);
}

.contact_inner {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 40px;
}

.contact_inner .form_right {
  width: 100%;
}

.contact_inner .form_right .form_right_card {
  width: 100%;
  padding: clamp(20px, 8vw, 40px);
  background: hsl(var(--bg_clr_white));
  border-radius: 20px;
}

.contact_inner .form_right .form_right_card .grid_2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.contact_inner .form_right .form_right_card .btn_group {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact_inner .form_right .form_right_card .btn_group > * {
  flex: 1;
}

.contact_inner .iframe_map {
  width: 100%;
  height: 240px;
  border-radius: 20px;
  margin-block-start: 30px;
}

.form_left {
  width: 100%;
}

.form_left .title {
  color: hsl(var(--footer_title));
  margin-block-end: 20px;
}

.form_left .sub_text {
  color: hsl(var(--footer_title));
  font-size: 18px;
}

.form_left .sub_text .link {
  color: hsl(var(--text_clr_primary));
  text-decoration: underline;
}

.form_left .sub_title {
  color: hsl(var(--footer_title));
  font-size: 20px;
  font-weight: var(--font_weight_semiBold);
  margin-block-end: 20px;
}

.form_left .sub_title2 {
  color: #4e6b77;
  font-size: 15px;
  font-weight: var(--font_weight_bold);
  margin-block-start: 30px;
}

.info_card {
  background: hsl(var(--bg_clr_white));
  border-radius: 20px;
  width: 100%;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 24px;
}

.info_card .info_title {
  color: hsl(var(--text_clr_primary));
  font-size: 18px;
  font-weight: var(--font_weight_semiBold);
}

.info_grid_2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-block-start: 20px;
}

.form_left .social_icons {
  margin-block-start: 20px;
}

.form_left .social_icons .S_icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--bg_clr_white));
  border-radius: 50%;
}

/* contact_sec */

/* package_detail_inner */
.package_details_sec {
  width: 100%;
  margin-block-start: 160px;
}

.package_details_sec .package_detail_inner {
  width: 100%;
  padding-block: clamp(50px, 8vw, 80px);
}

.package_details_sec .package_detail_inner {
  width: 100%;
}

.photoGallary {
  width: 100%;
  display: grid;
  grid-template-columns: 60% 36%;
  gap: 24px;
}

.photoGallary .photo_images {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 51px 34px -30px #39495759;
}

.photoGallary .photo_images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo_right {
  width: 100%;

  background: hsl(var(--bg_clr_white));
  border-radius: 20px;
}

.photo_right .date_chip {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--text_white));
  background: #3e4954;
  padding: 2px 10px;
  font-size: 14px;
  min-height: 24px;
  border-radius: 20px;
}

.photo_right .title {
  font-size: clamp(20px, 8vw, 34px);
  margin-block-start: 20px;
}

.photo_right .offer {
  display: flex;
  align-items: center;
  width: 100%;
  margin-block-start: 10px;
  gap: 10px;
}

.photo_right .sub_head {
  width: 100%;
  margin-block-start: 24px;
  font-weight: var(--font_weight_semiBold);
  color: #3e4954;
}

.details_lists {
  width: 100%;
  padding-block-start: 10px;
  padding-inline-start: 22px;
}

.details_lists .details_items {
  width: 100%;
  list-style: disc;
  margin-block-start: 6px;
}

.top_photo_right {
  width: 100%;
  padding: 24px 20px;
  border-bottom: 1px solid #00000031;
}

.bottom_photo_right {
  width: 100%;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.bottom_photo_right .manage_price {
  padding-inline-end: 20px;
}
.bottom_photo_right .manage_price .priceM {
  font-size: clamp(20px, 4vw, 30px);
  font-weight: var(--font_weight_medium);
  color: #3e4954;
  display: flex;
  align-items: center;
  gap: 4px;
}
.bottom_photo_right .manage_price .priceM i {
  font-style: normal;
  font-weight: var(--font_weight_semiBold);
  font-size: 14px;
  margin-block-start: 10px;
}

.bottom_photo_right .manage_price .priceM span {
  font-weight: var(--font_weight_semiBold);
  font-size: 14px;
}

.bottom_photo_right .manage_price .price_small {
  font-size: 13px;
  color: #989898;
}

.complete_info {
  width: 100%;
  margin-block-start: 50px;
}

.h3 {
  font-size: clamp(18px, 8vw, 30px);
}

.h5 {
  font-size: 16px;
}

.h3_title {
  color: #3e4954;
  margin-block-start: 30px;
}

.h5_title {
  color: #3e4954;
  margin-block-start: 30px;
  font-weight: var(--font_weight_bold);
}

.para {
  color: #3e4954;
  padding-block-start: 14px;
}

.inline_list {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px 24px;
  flex-wrap: wrap;
  margin-block-start: 30px;
}

.inline_list li {
  color: #3e4954;
  position: relative;
  padding-inline-start: 26px;
}
.inline_list li:after {
  position: absolute;
  content: "";
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3e4954;
}

.flex_package {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-block-start: 40px;
  flex-wrap: wrap;
}

.flex_package .package_item {
  width: 97px;
  text-align: center;
}

.flex_package .package_item .package_image {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin-inline: auto;
  background: hsl(var(--bg_clr_white));
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;

  justify-content: center;
}
.flex_package .package_item .package_image img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: all 0.3s ease-in-out;
}

.flex_package .package_item:hover .package_image {
  background: hsl(var(--bg_clr_primary));
}

.flex_package .package_item:hover .package_image img {
  filter: brightness(0) invert(1);
}

.flex_package .package_title {
  text-align: center;
  color: #38526c;
  margin-block-start: 18px;
}

.last_card {
  width: 100%;
  padding: 16px 30px;
  background: hsl(var(--bg_clr_white));
  border-radius: 20px;
  margin-block-start: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.last_card_left {
  width: fit-content;
}

.last_card .bottom_photo_right {
  padding: 0;
  width: fit-content;
}

.last_card_left .date_chip {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--text_white));
  background: #3e4954;
  padding: 2px 10px;
  font-size: 14px;
  min-height: 24px;
  border-radius: 20px;
  white-space: nowrap;
}

.last_card_left .title {
  font-size: clamp(20px, 8vw, 28px);
  margin-block-end: 10px;
}

.last_card_left .offer {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 10px;
}

@media (max-width: 1023px) {
  .photoGallary {
    grid-template-columns: 1fr;
  }
  .chip_wrapper {
    flex-wrap: wrap;
  }
}

/* package_detail_inner */

/* booking_modal */
.modal_scroll {
  width: 100%;
  max-height: calc(100vh - 300px);
  overflow: auto;
}
.booking_modal .modal-dialog {
  position: absolute;
  width: min(100% - 30px, 490px);
  height: fit-content;
  inset: 0;
  border-radius: 12px;

  margin: auto;
}

.booking_modal .modal-content {
  border-radius: 12px;
}

.booking_modal .modal-header {
  border-radius: 12px;
  border: none;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-weight: var(--font_weight_bold);
  color: #3e4954;
  font-size: 18px;
  font-family: "Inter", serif;
}
.booking_modal .modal-header h5 {
  font-weight: var(--font_weight_bold);
  color: #3e4954;
  font-size: 18px;
  font-family: "Inter", serif;
}

.booking_modal .modal-header .btn-close {
  position: absolute;
  right: -40px;
  top: -10px;
  background: hsl(var(--text_white));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: 1;
  border-radius: 50%;
}

.booking_modal .modal-body {
  padding: clamp(20px, 5vw, 36px);
}

.booking_modal .form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
/* booking_modal */


/* blog */

.bg_white {
  background: hsl(var(--bg_clr_white));
}

.blue_bg {
  background: #f7fbff;
}

.different_sec {
  width: 100%;
  margin-block-start: 20px;
}
.d_title {
  font-size: clamp(20px, 5vw, 30px);
  color: #1558a7;
}

.different_list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  padding-inline-start: 20px;
}
.different_list li {
  list-style: disc;
}

.step_bg_step {
  width: 100%;
  padding-block: clamp(50px, 8vw, 80px);
  background: hsl(var(--bg_clr_white));
}

.inner_step_bg_step {
  width: 100%;
}

.step_bg_step_content {
  width: 100%;
}

.step_bg_step_content .step_bg_step_content_heading {
  text-align: center;
  width: min(100%, 900px);
  margin-inline: auto;
}

.step_bg_step_content .step_bg_step_content_heading .title {
  color: hsl(var(--footer_title));
  margin-block-end: 24px;
}

.step_list_card {
  width: 100%;
  margin-block-start: clamp(40px, 8vw, 60px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step_list_card_item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 30px;
  background: #f7fbff;
  border-radius: 20px;
}

.step_list_card_item .step_list_card_item_left_side {
  width: 100%;
  max-width: 200px;
  font-size: clamp(20px, 5vw, 24px);
  color: #1558a7;
}

.step_list_card_item_right_side {
  flex: 1;
}

.step_list_card_item_right_side .step_list {
  width: 100%;
  padding-inline-start: 20px;
  margin-block-start: 10px;
}

.step_list_card_item_right_side .step_list li {
  list-style: disc;
  font-weight: 700;
}

@media (max-width: 767px) {
  .step_list_card_item {
    flex-direction: column;
    align-items: flex-start;
  }
  .step_list_card_item .step_list_card_item_left_side {
    max-width: 100%;
  }
}

.journy_sec {
  width: 100%;
  padding-block: clamp(50px, 8vw, 80px);
}

.inner_journy_sec {
  width: 100%;
}

.inner_journy_sec .journy_sec_content {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(40px, 8vw, 80px);
  flex-wrap: wrap;
}
.inner_journy_sec .journy_sec_content .title {
  margin-block-end: 30px;
}

.journy_sec_content_heading {
  width: min(100%, 430px);
}

.journy_sec .btn_group {
  flex-wrap: wrap;
  margin-block-start: clamp(40px, 8vw, 60px);
}

.journy_sec_card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.journy_sec_card .journy_sec_card_item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.journy_sec_card .journy_sec_card_item .journy_sec_card_left_side {
  width: 100%;
  max-width: 200px;
  font-size: clamp(20px, 5vw, 24px);
  color: #1558a7;
  padding-inline-start: 20px;
  position: relative;
}

.journy_sec_card .journy_sec_card_item .journy_sec_card_left_side::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin-block: auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1558a7;
}

.journy_sec_card_right_side ul {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  margin-block-start: 20px;
  padding-inline-start: 20px;
}
.journy_sec_card_right_side ul li {
  list-style: disc;
}

@media (max-width: 991px) {
  .inner_journy_sec .journy_sec_content {
    flex-direction: column;
  }
  .journy_sec_content_heading {
    width: 100%;
  }
}

.blog_tab {
  align-items: center;
  justify-content: center;
  padding-block-start: 60px;
  border: none;
  gap: 10px;
  background: #fff;
}

.blog_tab .nav-item .nav-link {
  border: 1px solid #d7d7d7;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  min-width: 150px;
  color: #3e4954;
  font-weight: 600;
}
.blog_tab .nav-item .nav-link.active {
  border: 1px solid #1558a7;
  background: #f7fbff;
  color: #1558a7;
}

.blog_tab_content {
  width: 100%;
  background: #fff;
}

/* blog */

