@font-face {
  font-family: 'TT Commons';
  src: url('../fonts/TTCommons-Regular.woff2') format('woff2'),
    url('../fonts/TTCommons-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TT Commons';
  src: url('../fonts/TTCommons-Medium.woff2') format('woff2'),
    url('../fonts/TTCommons-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}


/* :root {
  --white: #fff;
  --black: #000;
  --c_dark_gray_brown: #070604;
  --c_medium_light_gray: #b0b0b0;
  --c_vibrant_sky_blue: #43baff;
  --c_strong_blue: #024BB1;
} */
.ele_TT_commons_font *{font-family: 'TT Commons' !important;}


.ele_pointer_none{pointer-events: none !important;}
.ele_overflow{overflow: hidden;}
.ele_full_hright{height: 100%;}
.elementor-widget-text-editor a{color: #E65125;}
.elementor-widget-text-editor li{margin-bottom: 5px;}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

body {
  font-size: 16px;
  font-weight: 400;
  position: relative;
  font-family: 'TT Commons', sans-serif;
}

html {
  position: relative;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

:focus {
  outline: none;
}

input[type="submit"],
button {
  -webkit-appearance: none;
}

select {
  word-wrap: normal;
}

::-webkit-input-placeholder {
  color: #6f6f6f;
}

:-moz-placeholder {
  color: #6f6f6f;
}

::-moz-placeholder {
  color: #6f6f6f;
}

ul {
  list-style: none;
}

.clr {
  clear: both;
  float: none;
  display: block;
}

.clr:after,
.afclr:after {
  clear: both;
  float: none;
  display: block;
  content: "";
}

.wrapper {
  width: 100%;
  max-width: 1280px;
  padding: 0 20px;
  margin: 0 auto;
}

.outer_block {
  overflow: hidden;
  background: url(../images/homepage-bg-gradient.svg);
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}


.wrapper_xl {
  width: 100%;
  max-width: 1380px;
  padding: 0 20px;
  margin: 0 auto;
}


a {
  text-decoration: none;
  color: var(--c_vibrant_sky_blue);
}

.heading_02 h2 {
  font-size: 56px;
  font-weight: 500;
  line-height: 1.1;
  color: #000000;
  margin-bottom: 20px;
}

.sub_title_sp span {
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  display: block;
  line-height: 1.3;
  text-align: center;
  color: #000000;
  margin-bottom: 20px;
}


.heading_04 h4 {
  font-size: 22px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.2;
  padding-bottom: 6px;
}


.heading_pra p {
  font-weight: 400;
  font-size: 24px;
  line-height: 1.3;
  color: #000000;
  padding-bottom: 20px;
}


.paragraph_pra p {
  font-size: 16px;
  font-weight: 400;
  color: #505050;
  line-height: 1.6;
  padding-bottom: 15px;
}


.paragraph_pra p:last-child,
.heading_pra p:last-child {
  padding-bottom: 0;
}

.site_button {
  font-weight: 500;
  font-size: 18px;
  font-family: 'TT Commons', sans-serif;
  line-height: 1.2;
  min-width: 142px;
  border-radius: 30px;
  text-align: center;
  color: #FFF;
  padding: 14px 20px;
  background-color: #E65125;
  border: 1px solid #E65125;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
}

.site_button:hover {
  border-color: #E65125;
  background-color: #FFF;
  color: #E65125;
}


.ct_btn_active.site_button {
  background-color: #FFF;
  color: #E65125;
}

.ct_btn_active.site_button:hover {
  background-color: #E65125;
  color: #fff;
}

.ct_btn_log.site_button {
  background-color: #FFF;
  color: #000000;
  min-width: auto;
  font-weight: 400;
  padding: 5px;
  border: 0;
}

.ct_btn_log.site_button:hover {

  color: #E65125;
}


/* .site_button:hover {
  background-image: url(../images/site-fa-btn-arrow-r.svg);
} */

/* header  */
.header_sec {
  padding: 30px 0 26px;
  box-shadow: 0px 4px 47.5px -1px rgba(0, 0, 0, 0.25);
  background-color: #fff;
  position: relative;
  z-index: 1;
}

.header_inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.header_img_sec {
  width: 21%;
}

.header_img_sec a {
  display: inline-block;
}


.header_menu_sec {
  width: 47%;

}

.header_btn_sec {
  width: 32%;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: end;
}


.header_mobile_menu {
  display: none;
}

/* css sticky header */

.sticky_header {
  position: fixed;
  left: 0;
  right: 0;
  top: -80px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.19);
  background-color: #fff;
}

.sticky_header.header_is_sticky {
  top: 0;
  opacity: 1;
  visibility: visible;
  z-index: 100;
}


.sticky_header_inner .main_logo a {
  max-width: 120px;
}

.sticky_header_inner {
  padding: 18px 0 15px;
}


/* css end sticky header */

/* menu  */
.site-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  padding-left: 65px;
}


.nav-menu li {
  position: relative;
  display: inline-block;
}

.nav-menu>li {
  margin: 0 12px;
}

.nav-menu>li>a {
  position: relative;
  font-weight: 400;
  color: #171F49;
  text-transform: capitalize;
  font-size: 18px;
  padding: 8px 5px;
  display: block;
  line-height: 1.2;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  display: inline-block;
}


.nav-menu>li:hover>a {
  color: #E65125;

}


.nav-menu .sub-menu ul li,
.nav-menu .sub-menu li {
  background: #ffffff;
}

.nav-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 180px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  z-index: 1000;
  visibility: visible;
  filter: alpha(opacity=0);
  visibility: hidden;
  opacity: 0;
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.211764);
  transform: translateY(20px);
}

.nav-menu .sub-menu li {
  background: #ffffff;
  border-bottom: 1px solid #171F49;
  border-left: none;
  padding: 0;
  display: block;
  position: relative;
}

.nav-menu .sub-menu li a {
  text-align: left;
  font-weight: 400;
  color: #171F49;
  font-size: 16px;
  line-height: 1.2;
  display: block;
  padding: 9px 35px 9px 10px;
  transition: all 0.3s ease;
}

.nav-menu .sub-menu li:hover>a {
  background: #e7e7e7;
  color: #E65125;
}

.nav-menu .sub-menu ul {
  position: absolute;
  top: 0px;
  left: 100%;
  border-top: 0;
  padding-left: 0px;
  padding-top: 0;
  filter: alpha(opacity=0);
  width: 180px;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translate(40px, 0);
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.211764);
}

.nav-menu .sub-menu li:last-child {
  border-bottom: none;
}

.nav-menu li:hover>.sub-menu {
  visibility: visible;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: translateY(0);
}

.nav-menu .sub-menu li:hover ul {
  visibility: visible;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: translate(0px, 0);
}

.nav-menu .sub-menu ul li:first-child {
  border-top: none;
}

.menu_expand {
  display: none;
  color: #000;
  transition: all 0.2s ease;
  text-decoration: none;
}

.menu_expand i {
  height: 2px;
  background: #E65125;
  display: block;
  width: 35px;
  border-radius: 5px;
}

.menu_expand i:nth-child(2) {
  margin: 10px 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-color: rgba(0, 0, 0, 0.8);
  bottom: 0;
  transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  -webkit-transition: opacity 0.3s ease;
  opacity: 0;
}

.overlay.active {
  z-index: 100;
  opacity: 1;
}

.nav-menu .sub-menu>.menu-item-has-children>a::before {
  position: absolute;
  content: "";
  display: block;
  height: 8px;
  width: 8px;
  right: 12px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  border-top: 1px solid #171F49;
  border-left: 1px solid #171F49;
  transition: all 0.5s ease-in-out;
  transform: rotate(135deg);
}


.nav-menu>.menu-item-has-children>a {
  padding-right: 20px;
  position: relative;
}

.nav-menu>.menu-item-has-children>a::before {
  position: absolute;
  content: "";
  display: block;
  height: 7px;
  width: 7px;
  right: 5px;
  top: 14px;
  transition: all 0.5s ease-in-out;
  transition: all 0.3s ease;
  border-top: 1px solid #171F49;
  border-left: 1px solid #171F49;
  transform: rotate(225deg);
}

.nav-menu>.menu-item-has-children:hover>a::before {
  border-top: 1px solid #E65125;
  border-left: 1px solid #E65125;
}


.cross_button {
  margin-top: 20px;
  display: block;
  text-align: center;
  position: absolute;
  top: 0px;
  right: 20px;
  display: none;
}

.cross_button a {
  font-size: 22px;
  color: #242323;
  cursor: pointer;
  border: 1px solid #242323;
  border-radius: 3px;
  padding: 4px;
  display: inline-block;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 1.2;
}

.m_close_icon:before,
.m_close_icon:after {
  display: block;
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background: #000000;
  top: 17px;
  left: 5px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.m_close_icon:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.haeder_mobile_menu_bottom,
.haeder_mobile_menu_top {
  display: none;
}

.expand_plus {
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
  height: 35px;
  padding: 25px 10px 2px;
  cursor: pointer;
  z-index: 100;
  display: none;
}

.expand_plus i {
  display: block;
  position: relative;
  width: 12px;
  height: 10px;
  top: -8px;
}

.expand_plus:after {
  margin-right: -2px;
  transform: translate(-50%, -50%) rotate(-135deg);
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin-left: -2px;
  box-sizing: border-box;
  border-top: 2px solid #000;
  border-left: 2px solid #000;
  transform-origin: center;
}

.expand_plus.active:after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav_menu_overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #0000008f;
  z-index: 20;
  width: 100%;
  height: 100%;
  display: none;
  opacity: 0;
  visibility: hidden;
}

.nav_menu_overlay.active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.header_mobile_logo {
  max-width: 250px;
  width: 100%;
}


/* banner  */


.banner_section {
  position: relative;
  padding: 155px 0 100px;

}


.content_top_entry {
  width: 100%;
  margin: 0 auto;
  display: flex;
  text-align: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.content_top_entry h1 {
  font-size: 56px;
  font-weight: 500;
  line-height: 1.1;
  color: #000000;
  margin-bottom: 20px;
}


.content_top_entry p {
  font-weight: 400;
  font-size: 24px;
  line-height: 1.3;
  color: #000000;
  margin-bottom: 20px;
}

.banner_btn {
  text-align: center;
}


.category_section {
  padding-bottom: 145px;
}


.sl_tab_src {
  width: max-content;
  margin: 0 auto;
  padding-bottom: 10px;
  margin-bottom: 25px;
  overflow: hidden;
  overflow-x: auto;

}

/* width */
.sl_tab_src::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* Track */
.sl_tab_src::-webkit-scrollbar-track {
  background: #171F49;
}


/* Handle */
.sl_tab_src::-webkit-scrollbar-thumb {
  background: #E65125;
}

/* Handle on hover */
.sl_tab_src::-webkit-scrollbar-thumb:hover {
  background: #E65125;
}

.sl_tab_src ul {
  display: flex;
  gap: 10px;
}

.sl_tab_src ul li {
  display: inline-block;
  white-space: nowrap;
}


.sl_tab_src ul li>button {
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 25px;
  display: block;
  line-height: 1.3;
  text-align: center;
  color: #252525;
  padding: 11px 25px;
  min-width: 130px;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  border: none;
  background-color: transparent;
  cursor: pointer;
  font-family: 'TT Commons', sans-serif;
}


.sl_tab_src ul li button.active{
  background-color: #FFFFFF;
}

.cct_tabs_slide .swiper-slide {
  transform: scale(.95) translateZ(0);
  opacity: .5;
  transform: scale(.90);
  transition: all .3s ease-in-out;
}

.cct_tabs_slide .swiper-backface-hidden .swiper-slide {
  transform: scale(.90) translateZ(0);
}

.cct_tabs_slide .swiper-slide.swiper-slide-active {
  transform: scale(1) !important;
  opacity: 1 !important;
}

.cct_tabs_slide .swiper-backface-hidden .swiper-slide.swiper-slide-active {
  transform: scale(1) translateZ(0) !important;
}


.banner_ct_image {
  width: 100%;
  position: relative;

  border-radius: 35px;
  overflow: hidden;
}


.banner_ct_image::after {
  content: "";
  display: block;
  position: absolute;
  text-align: center;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  right: 0;
  z-index: 1
}

.banner_ct_image img {
  background: linear-gradient(89.36deg, rgba(255, 255, 255, 0.12) 33.66%, rgba(255, 255, 255, 0.77) 99.45%);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 240 / 121
}


.swiper-slide-active .banner_ct_image img {
  background: none;
}


.ct_arro_next:after,
.ct_arro_prev:after {
  display: none
}

.swiper-button-next.ct_arro_next {
  right: 110px;
}

.swiper-button-prev.ct_arro_prev {
  left: 110px;
}

.ct_arro_next,
.ct_arro_prev {
  width: 60px;
  height: 60px;
  box-shadow: 0px 0px 4px 0px #00000040;
  max-width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 100%;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  padding: 15px
}

.ct_arro_next>svg>path,
.ct_arro_prev>svg>path {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease
}

.ct_arro_next:hover>svg>path,
.ct_arro_prev:hover>svg>path {
  stroke: #fff
}

.ct_arro_next:hover,
.ct_arro_prev:hover {
  background-color: #E65125
}


.why_different_section {
  padding-bottom: 145px;
}


.why_differ_title {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  max-width: 890px;
}

.learn_dff_tbn {
  text-align: center;
  margin-top: 20px;
}

.why_differ_title.heading_02 h2 {
  margin-bottom: 15px;
}

.why_differ_title.sub_title_sp span {
  margin-bottom: 10px;
}


.explore_type_features {
  padding-bottom: 145px;
}

.explore_item_row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 11px 15px;
  padding: 15px 0 75px;

}

.explore_item_col {
  height: 100%;
  width: 100%;
}

.ex_text_info {
  background-color: #ffffff;
  border-radius: 5px;
  padding: 15px;
  display: block;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.1;
  color: #171F49;
  box-shadow: 0px 1px 15.3px 0px #00000017;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}


.ex_text_info:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.exp_type_title.heading_02 {
  text-align: center;
}


.head_title_size_02.heading_02 h2 {
  font-size: 36px;
  line-height: 1.2;
}

.exp_type_title.heading_02 h2 span {
  background: linear-gradient(90deg, #E65125 65.38%, #171F49 95.67%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;

}


.features_item_row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px 15px;
  padding: 15px 0 0px;
}


.features_item_col .ex_text_info {
  display: flex;
  align-items: center;
  padding: 12px 13px;

}

.img_inner_l {
  max-width: 33px;
  width: 32px;
  height: 32px;
}

/* .img_inner_l img {
  width: 100%;
  height: 100%;
  object-fit: contain;

} */

.icon_ctc_r {
  width: calc(100% - 45px);
  padding-left: 6px;
}

.icon_ctc_r p {
  font-size: 18px;
  color: inherit;
  line-height: 1.2;
}

.features_item_col {
  display: flex;
  flex-direction: column;
  gap: 11px;
  width: 100%;
}

.features_item_col h3 {
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  display: block;
  line-height: 1.3;
  color: #171F49;
  margin-bottom: 0px;
}

.cale_about_out {
  display: flex;
  align-items: center;
  padding: 20px 24px 20px 55px;
  box-shadow: -1px 1px 30.3px -10px #00000040;
  flex-wrap: wrap;
  background-color: #fff;
  border-radius: 20px;

}

.cale_item_l {
  width: 57%;

}

.cale_ctc_info {
  max-width: 380px;
}

.cale_item_r {
  width: 43%;
}

.cale_img_info img {
  width: 100%;
  border-radius: 20px;
  box-shadow: -1px 1px 30.3px -10px #00000040;
}

.find_btn_top {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.find_ab_title.heading_02 h2 {
  color: #171F49;
}

.play_fd_btn {
  margin-top: 30px;
}

.play_fd_btn .site_button {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  background-color: transparent;
  padding: 5px;
  border: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #E65125;
  text-transform: uppercase;
}


.our_customers_section {
  padding-bottom: 115px;
}

.our_customers_title,
.faq_title {
  text-align: center;
}

.our_customers_title.heading_02 h2,
.faq_title.heading_02 h2 {
  color: #171F49;
}


.our_customers_content {
  padding: 0 40px 45px 40px;
  box-shadow: -1px 1px 30.3px -10px #00000040;
  margin: 30px 0;
  margin-left: 19px;
  margin-right: 19px;
  border-radius: 20px;

}

.customers_block_slider {
  position: relative;
}

.customers_block_slider .swiper-slide {
  padding-top: 53px;
  height: 100% !important;
}

.customers_info_img {
  width: 163px;
  height: 163px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
}

.customers_info_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.customers_information_ct {
  text-align: center;
  padding-top: 17px;
}

.customers_information_ct h3 {
  font-weight: 500;
  font-size: 22px;
  line-height: 1.1;
  color: #171F49;
  margin-bottom: 6px;
}

.customers_information_ct p {
  font-weight: 400;
  font-size: 18px;
  color: #171F49;
  line-height: 1.2;

}

.customers_block_slider {
  padding-top: 60px;
}

.customers_information {
  position: relative;
  top: -83px;
  margin-bottom: -83px;
}

.customers_ctc {
  padding-top: 28px;
}

.brands_tls_arrow_next {
  right: 0;
}

.brands_tls_arrow_prev {
  left: 0;
}

.brands_tls_arrow_prev,
.brands_tls_arrow_next {
  color: #171F49;
  width: 50px;
  height: 50px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  top: 55%;
}


.brands_tls_arrow_next::after,
.brands_tls_arrow_prev::after {


  font-size: 25px;
  font-weight: 400;
  color: #171F49;
}


.faq_section {
  padding-bottom: 145px;
}

.faqs_list {
  padding-top: 37px;
  max-width: 560px;
  margin: 0 auto;

}

.faqs_list_btn {
  margin-top: 60px;
}

.acc__card {
  position: relative;
  background-color: #fff;
  box-shadow: 0px 0px 4px 0px #00000040;
  border-radius: 5px;
  margin-bottom: 24px;

}

.acc__card:last-child {
  margin-bottom: 0;
}

.acc__title {
  cursor: pointer;
  display: block;
  padding: 22px 24px 23px 34px;
  position: relative;
  text-align: left;
}

.acc__title h4 {
  color: #171F49;
  font-size: 20px;
  font-weight: 500;
  display: block;
  text-align: left;
  padding-right: 35px;
}

.acc__title::after {
  position: absolute;
  left: auto;
  content: " ";
  top: 28px;
  background: url('../images/fa-arrow-down-faq.svg') no-repeat;
  background-position: center;
  background-size: contain;
  width: 19px;
  right: 23px;
  height: 11px;
  transition: all 0.2s ease;
}

.acc__title.active::after {
  background: url('../images/fa-arro-up-faq.svg') no-repeat;
  width: 19px;
  height: 11px;
  background-size: contain;
}

.acc__panel {
  padding: 0px 60px 20px 36px;

  display: none;
}


.footer_section {
  margin-bottom: 20px;
  background-color: #171F49;
  position: relative;

  /* overflow: hidden; */
}

.footer_sub_outer {
  padding: 85px 0 0 0;
  color: #fff;
  border-radius: 20px;
}


.footer_sub_container {
  display: flex;
  gap: 20px;
  /* flex-wrap: wrap; */
}

.footer_ft_logo {
  max-width: 203px;
  margin-bottom: 85px;
}

.footer_ft_title {
  color: #fff;
  background: linear-gradient(90deg, #E65125 0%, #FFFFFF 100%);
  font-size: 18px;
  font-weight: 400;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.ft_link_box{min-width: 180px;}
.footer_item_column:nth-child(1){display: flex;gap: 20px;}
.footer_item_column:nth-child(3) .ft_link_box{min-width: 380px;}
.footer_item_column:nth-child(4){display: flex;gap: 20px;}
.footer_item_column:nth-child(4) .ft_link_box{min-width: 150px;height: fit-content;}
/* .footer_item_column {
  width: calc(21% - 24.5px);
}

.footer_item_column:nth-child(3) {
  width: calc(39% - 25px);
} */

.features_link_item {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

.ft_link_box {
  background-color: #222B5C;
  border-radius: 25px;
  padding: 25px 15px 20px 20px;
  margin-bottom: 25px;
}

.ft_link_list ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}

.ft_link_list ul li {
  margin-bottom: 12px;
}

.ft_link_list ul li:last-child {
  margin-bottom: 0px;
}

.ft_link_list ul li a,
.copy_right_link li a {
  color: #8895DB;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s ease;
}


.ft_link_list ul li a:hover,
.copy_right_link li a:hover {
  color: #E65125;
}

.footer_ctc_out {
  padding-bottom: 60px;
}

.copy_right_link li a {

  font-size: 14px;

}


.footer_copy_right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0px 0 28px;
}

.copy_right_text {
  width: 50%;
  padding-right: 20px;
}

.copy_right_text p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #8895DB;
}

.copy_right_text p a {
  color: inherit;
  transition: color 0.3s ease;
}

.copy_right_text p a:hover {
  color: #E65125;
}

.copy_right_link_r {
  width: 50%;
  text-align: right;
  display: flex;
  justify-content: end;
}


.copy_right_link {
  display: flex;
  flex-wrap: wrap;

  gap: 9px 80px;
  margin: 0;
  padding: 0;
}


.no_overflow {
  overflow: hidden;
}



.fancybox__container .fancybox__backdrop {
  background: rgb(24 24 27 / 78%) !important;
}


/* search  */
.search_part_content .page-title{font-weight: 500;color: #000;}
.search_part_content article{padding: 15px 0; border-bottom: 1px solid #171f492e;}
.search_part_content h2 a{font-size: 24px; display: inline-block; margin-bottom: 10px; color: #171f49; font-weight: 500;}
.search_part_content img{display: none;}
.search_part_content .pagination svg path{fill: #e65125;}
.search_part_content .nav-prev-text,
.search_part_content .nav-next-text{display: none;}
.search_part_content .pagination .nav-links{display: flex; gap: 10px;}
.search_part_content .pagination{padding: 40px 0 0 0;}
.search_part_content .pagination .page-numbers.current{color: #e65125; font-weight: 500;}
.search_part_content .no-results .search-form label{display: none;}
.search_part_content .no-results .search-form{margin: 30px 0; display: flex; width: 80%;gap: 10px;}
.search_part_content .no-results .search-form .search-field{padding: 0 10px; width: 100%;border-radius: 10px;}
.search_part_content .no-results .search-form input{outline: 0;border: 2px solid #e65125;}
.search_part_content {padding: 50px 0 80px 0;}
.search_part_content .no-results {padding: 30px 0 0 0;}
.search_part_content .entry-footer a,
.search_part_content .entry-content a{color: #e65125;font-size: 18px;}
.search_part_content .entry-footer span,
.search_part_content .entry-content p{font-size: 18px;}
.search_part_content .search-result-count{margin-bottom: 20px;}

/* common banner  */
.common_banner_sec{position: relative;text-align: center;padding: 80px 0 80px;}
.common_banner_img{position: absolute;width: 100%;height: 100%;top: 0;left: 0;}
.common_banner_img img{width: 100%;height: 100%;object-fit: cover;}
.common_banner_overlay{position: absolute;height: 100%;width: 100%;top: 0;left: 0;}
.common_banner_innner{position: relative;}
.common_banner_title h1{font-size: 54px; font-weight: 500; line-height: 1.2em;color: #191e49;}

/* error  */
.error_pg_sec{padding: 100px 0;text-align: center;background: #efefef5e;}
.error_pg_title h1{font-size: 56px; font-weight: 500; line-height: 1.2; color: #000000; margin-bottom: 20px;}
.error_pg_content{max-width: 600px; margin: 0 auto; margin-bottom: 30px;}
.error_pg_img{max-width: 450px;margin: 0 auto 20px;}
.error_pg_img img{width: 100%;display: block;}
.error_pg_sec .site_button:hover{background: transparent;}
.error_pg_content p{font-weight: 400; font-size: 24px; line-height: 1.3; color: #000000;}


.header_menu .sub-menu-toggle{display: none !important;}



/* .outer_block.on_error_page{background: #fcfafa;} */

/* mega menu  */
.mega_menu_sec{}
.mega_menu_container{z-index: 10;}
.mega_menu_container .header_inner{position: relative;}
.mega_menu_sec.nav-menu .mega_menu_dropdown{position: static;}
.mega_menu_sub_menu{position: absolute; top: calc(100% - 10px); right: 5%; width: 1100px;  z-index: 2;padding: 12px 0 0;transition: all 0.2s ease;
opacity: 0;visibility:hidden;
}
.mega_sub_menu_inner{box-shadow: inset 0 0 0 1px #e0e2ed,0 5px 14px rgba(0,0,0,.08);display: flex;background: #fcfafa; border-radius: 30px; padding: 30px 30px;width: 100%;}
.mega_sub_menu_left{width: calc(100% - 360px);padding-right: 30px;}
.mega_sub_menu_title{}
.mega_sub_menu_title h2{font-weight: 400;font-size: 16px;color: #171F49;line-height: 1.2;padding: 0 0 20px 20px;}
.mega_sub_menu_list{ display: grid; gap: 2px 0; grid-template-columns: repeat(3, 1fr);}
.mega_sub_menu_list li{}
.mega_sub_menu_list li a{font-weight: 500;font-size: 20px;color: #171F49;line-height: 1.2;padding: 12px 20px;transition: all 0.1s ease;max-width: 200px;border-radius: 10px;display: flex;justify-content: start;align-items: center;}
.mega_sub_menu_list li a:hover{background: hsla(0,0%,100%,.651);box-shadow: 0 1px 30px 0 rgba(0,0,0,.05);}
.mega_sub_menu_right{width: 360px;}
.mega_sub_menu_img{width: 100%;height: 250px;}
.mega_sub_menu_img img{width: 100%;height: 100%;object-fit: cover;border-radius: 30px;}
.mega_menu_dropdown>a{}
.mega_menu_dropdown>a::after {
    content: "";
    position: absolute;
    bottom: -23px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 22px;
    height: 22px;
    box-shadow: inset 0 0 0 1px #e0e2ed;
    border-radius: 3px;
    background: #fcfafa;
    transform: rotate(45deg);
    mask: linear-gradient(135deg,#000 calc(50% - 1px),transparent calc(50% - 1px)) 0 0/100% 100%;
    z-index: 3;
    opacity: 0;visibility:hidden;
}
.mega_menu_dropdown:hover>a::after {opacity: 1;visibility: visible;}
.mega_menu_dropdown:hover .mega_menu_sub_menu{opacity: 1;visibility: visible;}
.mega_mobile_menu{display: none;}



.mega_sub_menu2{display: grid;grid-template-columns: repeat(4, 1fr); gap: 5px 10px;width: 100%;}
.mega_sm2_container{}
.mega_sb2_title{}
.mega_sb2_title h2{font-weight: 400;font-size: 16px;color: #171F49;line-height: 1.2;padding: 0 0 20px 15px;}
.mega_sm2_list{gap: 2px 0;display: flex;flex-direction: column;}
.mega_sm2_box{display: flex;align-items: center;padding: 8px 13px;border-radius: 12px;transition: all 0.1s ease;gap: 3px;}
.mega_sm2_box:hover{background: hsla(0,0%,100%,.651);box-shadow: 0 1px 30px 0 rgba(0,0,0,.05);}
.mega_sm2_img{max-width: 25px; width: 25px; height: 25px;}
.mega_sm2_img img{width: 100%;height: 100%;object-fit: contain;}
.mega_sm2_title{width: calc(100% - 25px); padding-left: 6px;}
.mega_sm2_title p{font-size: 17px; color: #171F49; line-height: 1.2; font-weight: 500;}

.not_home_page {background: #fff;}
.footer_sub_outer{position: relative;z-index: 1;}
.not_home_page .footer_section::after{
       content: "";
    position: absolute;
    left: 75%;
    height: 100%;
    top: -40%;
    background-image: radial-gradient(circle, rgb(0 41 249 / 28%) 0, rgb(0 41 249 / 8%) 54%, rgb(0 41 249 / 12%) 74%, rgb(0 41 249 / 0%) 100%);
    border-radius: 100%;
    filter: blur(51px);
    aspect-ratio: 1/1;
    pointer-events: none;
    z-index: 0;
  }
  .not_home_page .footer_section::before{
    content: "";
    position: absolute;
    right: 80%;
    height: 110%;
    top: -50%;
    background-image: radial-gradient(circle, rgba(230, 82, 37, 0.26) 0, rgb(230 81 37 / 21%) 54%, rgb(230 81 37 / 11%) 74%, rgb(230 81 37 / 8%) 100%);
    border-radius: 100%;
    filter: blur(80px);
    aspect-ratio: 1/1;
    pointer-events: none;
    z-index: 0;
}
.footer_color_sec{background: #171F49;position: relative;z-index: 1;}

.ele_faq_sec .e-n-accordion-item{box-shadow: 0px 0px 4px 0px #00000040;border-radius: 5px;overflow: hidden;}
.ele_faq_sec .e-n-accordion-item-title-icon svg{fill: transparent !important;}


/* .page-id-30 .not_home_page{overflow: unset;} */

.mega_mobile_menu li.mega_sm2_mobile_title {padding: 16px 18px 5px; color: #171F49; font-weight: 500; text-transform: uppercase; font-size: 15px;}
.mega_mobile_menu li.mega_sm2_mobile_title:first-child{padding: 8px 18px 5px;}
.common_features_item_row a{box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);}

.site_video_btn{
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    min-width: 142px;
    border-radius: 30px;
    text-align: center;
    color: #FFF;
    padding: 13px 20px 13px 50px;
    background-color: #E65125;
    border: 1px solid #E65125;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    background-image: url('../images/video_btn_icon_white.svg');
    background-position: 20px center;
    background-size: 20px;
    background-repeat: no-repeat;
  }
  .site_video_btn:hover{
    border-color: #E65125;
    background-color: #FFF;
    color: #E65125;
    background-image: url('../images/video_btn_icon_ornage.svg');
  }

.banner_bottom_text{
color: #171F49;
font-size: 16px;
font-family: "Lato", sans-serif;
margin-top: 20px;
}
.banner_content{max-width: 755px;margin: 0 auto;}
.why_differ_title p{max-width: 850px;font-size: 20px;}

/* service sec  */
.service_sec{overflow: hidden;padding-bottom: 130px;}
.service_inner{}
.service_title{}
.service_title.heading_02 h2{font-size: 36px; line-height: 1.2;text-align: center;margin-bottom: 35px;}
.service_title h2 span{background: linear-gradient(90deg, #E65125 65.38%, #171F49 95.67%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-fill-color: transparent;}
.service_container{position: relative;}
.service_box{padding: 10px 0;}
.service_box_img{position: relative;width: 100%;padding-top: 65%;display: inline-block;}
.service_box_img img{border-radius: 20px;position: absolute;top: 0;left: 0;width: 100%;height: 100%;object-fit: cover;object-position: center;display: block;}
.service_box_title{}
.service_box_title h3{font-size: 28px;font-weight: 500;color: #000;line-height: 1.2;margin: 20px 0 10px;}
.service_box_cat{display: flex;flex-wrap: wrap;gap: 10px 10px;}
.service_box_cat li{}
.service_box_cat li a{background: #F0F2FF;border-radius: 15px;padding: 10px;display: inline-block;box-shadow: 0 0 20px 0 #00000012;}
.service_swiper_pagination{bottom: -40px !important;display: none;}
.service_swiper_pagination .swiper-pagination-bullet-active{background: #e65125;}

.cta_sec{padding: 130px 0;}
.cta_inner{}
.cta_content{}
.cta_content p{font-weight: 400; font-size: 18px; line-height: 1.3; color: #000000; margin-bottom: 15px;}
.cta_list{margin-bottom: 35px;}
.cta_list li{
  font-size: 18px;
  font-weight: 400;
  padding-left: 23px;
  position: relative;
  color: #E65125;
  line-height: 1.4;
  margin-bottom: 9px;
  cursor: pointer;
}
.cta_list li::before{
      content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 15px;
    height: 15px;
    background-image: url('../images/list_right_icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.cale_ctc_info h2{margin-bottom: 12px;}

/* booking bar  */
.booking_inner{max-width: 1000px;margin: 0 auto;width: 100%;}
.booking_title{text-align: center;}
.booking_title h2{margin-bottom: 6px;}
.booking_title h3{font-weight: 400; font-size: 22px; line-height: 1.3; color: #000000; padding-bottom: 20px;}
.booking_container{display: flex;flex-wrap: wrap;align-items: center;margin-top: 45px;}
.booking_left{width: 50%;}
.booking_img{width: 100%;}
.booking_img img{width: 100%;object-fit: contain;display: block;}
.booking_right{width: 50%;padding-left: 80px;}
.booking_content_list li{
    font-size: 22px;
    font-weight: 400;
    line-height: 1.2em;
    margin-bottom: 23px;
    color: #171F49;
    display: flex;
    justify-content: space-between;
    align-items: start;
}
.booking_content_list li img{width: 24px;width: 24px;object-fit: contain;}
.booking_content_list li span{width: calc(100% - 35px);}
.booking_btn{margin-top: 35px;}

/* booking way  */
  .booking_way_sec{padding-bottom: 130px;}
.booking_way_inner{}
.booking_way_title{text-align: center;}
.booking_way_title h2{margin-bottom: 15px;}
.booking_way_title h3{
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2em;
    color: #000;
}
.booking_way_container{display: flex;margin-top: 40px;gap: 30px;}
.booking_way_left{width: 45%;}
.booking_way_img{width: 100%;position: relative;padding-top: 80%;}
.booking_way_img img{position: absolute;left: 0;top: 0;width: 100%;height: 100%;object-fit: contain;object-position: center;}
.booking_way_right{width: 55%;}
.booking_way_list{display: flex; flex-wrap: wrap;}
.booking_way_list_box{
      width: 33.33%;
    background: transparent;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}
.booking_way_box_icon{height: 38px;width: auto;}
.booking_way_box_icon img{object-fit: contain;width: 100%;height: 100%;object-position: center;}
.booking_way_box_active_icon{display: none;height: 38px;width: auto;}
.booking_way_box_active_icon img{object-fit: contain;width: 100%;height: 100%;object-position: center;}
.booking_way_box_text{margin-top: 15px;}
.booking_way_box_text h4{ font-size: 20px; font-weight: 400; line-height: 1.2em; color: #797776;transition: all 0.3s ease;}
.booking_way_box_text h4 a{font-weight: inherit;font-size: inherit;font-family: inherit;color: inherit;display: inline-block;transition: all 0.3s ease;}
.booking_way_list_box.active{background: #F0F2FF;}
.booking_way_list_box.active .booking_way_box_text h4{color: #171F49;}
.booking_way_list_box.active .booking_way_box_active_icon{display: block;}
.booking_way_list_box.active .booking_way_box_icon{display: none;}
.booking_way_box_text a:hover{color: #e65125; text-decoration: underline;}
.booking_way_swiper .swiper-slide{opacity: 0;visibility: hidden;}
.booking_way_swiper .swiper-slide-active{opacity: 1;visibility: visible;}

.business_type_active_img{display: none;}
.business_type_menu_sec>a.e-child:hover{background-color: #fff !important;box-shadow: 0px 4px 4px 0px #98989840;}
.business_type_menu_sec>a.e-child:hover h2.elementor-heading-title{color: #000;}
.business_type_menu_sec>a.e-child:hover .business_type_img {display: none;}
.business_type_menu_sec>a.e-child:hover .business_type_active_img{display: block;}

.bt_service_sg_menu> a.e-child:hover{background-color: #F0F2FF !important;}



.price_pg_toggle_btn{}
.price_pg_toggle_btn .e-n-tabs-heading{background: #E65125;border-radius: 25PX;padding:3px 4px 4px;width: max-content;margin: 0 auto;}
.price_pg_toggle_btn{}
.price_pg_toggle_btn .e-n-tabs-heading button{cursor: pointer;}

/* .price_pg_toggle_btn .e-n-tabs-content>.e-child.e-active{opacity: 1;visibility: visible;}
.price_pg_toggle_btn .e-n-tabs-content>.e-child{opacity: 0;visibility: hidden;transition: all 0.3s ease;} */


.elementor-widget-text-editor ul{list-style: disc;padding-left: 20px;}

@media screen and (max-width: 1380px) {
  .header_btn_sec {gap: 18px;}
  .swiper-button-next.ct_arro_next {right: 10px;}
  .swiper-button-prev.ct_arro_prev {left: 10px;}
  .site-menu {padding-left: 35px;}
  .footer_sub_container{flex-wrap: wrap;}
  .footer_item_column {width: calc(21% - 24.5px);}
.footer_item_column:nth-child(3) {width: calc(39% - 25px);}
.footer_item_column:nth-child(3) .ft_link_box,
.footer_item_column:nth-child(4) .ft_link_box,
.footer_item_column .ft_link_box{min-width: unset;}
.footer_item_column:nth-child(4),
.footer_item_column:nth-child(1){display: block;}
  /* .footer_item_column:nth-child(4){width: 100%;} */
  /* .footer_item_column:nth-child(4){flex-wrap: wrap;gap: 0;} */
}

@media screen and (max-width: 1280px) {
  .menu_expand {
    display: inline-block;
  }

  .nav_menu_container {
    display: block;
    position: fixed;
    top: 0;
    left: -220px;
    bottom: 0;
    z-index: 100;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    text-align: left;
    margin-right: 0px;
    background: #ffffff;
    width: 100%;
    padding: 20px 20px 45px 0;
    max-width: 600px;
  }

  .nav_menu_container.state-active {
    clear: both;
    left: 0;
    opacity: 1;
    visibility: visible;
  }

  .header_sec.active .nav_menu_container {
    padding: 0;
  }

  .header_img_sec {
    width: 50%;
    order: 1;
  }

  .header_img_sec a {
    max-width: 260px;
  }

  .header_btn_sec {
    width: 50%;
    order: 2;
    gap: 20px;
  }

  .haeder_mobile_menu_top {
    display: inline-block;
    width: 100%;
    padding-left: 20px;
  }

  .expand_plus,
  .cross_button {
    display: block;
  }

  .nav-menu {

    padding: 35px 0 20px;
    width: 100%;
  }

  .nav-menu li {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .nav-menu a {
    width: 100%;
  }

  .nav-menu .sub-menu li:hover>a {
    background: none;
  }

  .nav-menu .sub-menu li {
    border: none;
  }

  .nav-menu .sub-menu>.menu-item-has-children>a::before,
  .nav-menu>.menu-item-has-children>a::before,
  .nav-menu>li>a:after {
    display: none;
  }

  .nav-menu>li.current-menu-item>a,
  .nav-menu .sub-menu li a,
  .nav-menu>li>a {
    padding: 10px 20px;
    font-size: 18px;
    text-transform: capitalize;
    line-height: 1.2em;
  }

  .nav-menu .sub-menu li a {
    font-size: 16px;
    padding: 8px 18px;

  }

  .nav-menu .sub-menu li ul,
  .nav-menu .sub-menu {
    padding-left: 20px;
    width: auto;
    position: relative;
    display: none;
    visibility: visible;
    opacity: 1;
    box-shadow: none;
    left: 0;
    transform: translate(0, 0);
    top: 0;
    transition: none;
  }

  .site-menu {
    padding-left: 0;
  }

  .header_mobile_menu {
    display: flex;
  }


  .header_menu_sec {
    width: 60%;
  }

  .header_sec {
    padding: 16px 0 16px;

  }

  .header_mobile_logo {
    padding-top: 5px;
    max-width: 205px;
  }

  .site_button {

    min-width: 135px;

    padding: 11px 20px 12px;
  }


  .banner_section {

    padding: 115px 0 100px;
  }

  .content_top_entry {
    width: 68%;
    max-width: 648px;
  }

  .content_top_entry p {

    font-size: 22px;
  }


  .content_top_entry h1 {
    font-size: 52px;
    margin-bottom: 25px;
  }


  .sl_tab_src {
    width: 90%;
  }

  .sl_tab_src ul li>button {

    padding: 11px 20px;
    min-width: 117px;
  }


  .ct_arro_next,
  .ct_arro_prev {
    width: 52px;
    height: 52px;
  }


  .banner_ct_image {


    border-radius: 25px;

  }

  .category_section {
    padding-bottom: 100px;
  }


  .why_differ_title {
    max-width: 630px;
    width: 62%;
  }

  .why_differ_title.sub_title_sp span {
    margin-bottom: 22px;
  }

  .heading_02 h2 {
    font-size: 50px;
  }

  .why_differ_title.heading_02 h2 {
    margin-bottom: 25px;
  }

  .heading_pra p {

    font-size: 22px;
  }

  .learn_dff_tbn {

    margin-top: 20px;
  }

  .why_different_section {
    padding-bottom: 100px;
  }

  .ex_text_info {

    font-size: 20px;
  }

  .icon_ctc_r p {
    font-size: 17px;
    line-height: 1.1;

  }

  .icon_ctc_r {
    width: calc(100% - 32px);

  }

  .img_inner_l {
    max-width: 28px;
    width: 28px;
    height: 28px;
  }

  .features_item_row {

    grid-template-columns: repeat(auto-fit, minmax(238px, 1fr));

  }

  .explore_type_features {
    padding-bottom: 100px;
  }

  .customers_block_slider {
    padding-top: 40px;
  }

  .customers_info_img {
    width: 150px;
    height: 150px;
  }

  .our_customers_section {
    padding-bottom: 85px;
  }

  .faqs_list {
    padding-top: 30px;
  }

  .faq_section {
    padding-bottom: 100px;
  }

  .footer_sub_outer {
    padding: 85px 0 0 0;

  }

  .footer_item_column {
    width: calc(25% - 19.5px) !important;
  }

  .features_link_item {

    gap: 0;
  }

  .footer_ctc_out {
    padding-bottom: 40px;
  }

  .copy_right_link {

    gap: 9px 50px;

  }

  .brands_tls_arrow_prev,
  .brands_tls_arrow_next {

    width: 45px;
    height: 45px;
  }

  .brands_tls_arrow_next::after,
  .brands_tls_arrow_prev::after {
    font-size: 21px;
  }


  .sticky_header_inner .header_img_sec a {
    max-width: 230px;
  }

  .sticky_header_inner {
    padding: 15px 0 15px;
  }
  .common_banner_title h1{font-size: 50px;}
  .site-menu{display: inline-block;width: 100%;}
  .mega_mobile_menu{display: inline-block;}
  .mega_menu_sec .mega_menu_sub_menu{display: none;}
  .mega_menu_sec.nav-menu .mega_menu_dropdown{position: relative;}
  .mega_menu_container .header_inner{position: static;}
  .service_box_title h3{font-size: 24px;}
  .service_sec{padding-bottom: 80px;}
  .booking_way_list_box{padding: 25px 10px;}
  .booking_way_box_text h4{font-size: 18px;}
  .booking_way_sec{padding-bottom: 100px;}
  .business_type_menu_sec>a.e-child{background-color: #F0F2FF !important;box-shadow: 0px 4px 4px 0px #98989840;}
  .business_type_menu_sec>a.e-child:hover{background-color: #fff !important}
}

@media screen and (max-width: 992px) {

  .site_button {
    padding: 10px 20px 11px;
    min-width: 121px;
    font-size: 16px;
  }


  .header_btn_sec {
    width: 59%;

    gap: 20px;
  }

  .header_img_sec {
    width: 41%;

  }

  .header_img_sec a {
    max-width: 230px;

  }

  .content_top_entry h1 {
    font-size: 45px;
    margin-bottom: 18px;

  }

  .content_top_entry p {
    font-size: 20px;
  }

  .banner_section {
    padding: 80px 0 80px;
  }


  .sl_tab_src {
    width: 100%;
  }


  .sl_tab_src ul li>button {
    padding: 10px 16px;
    min-width: 107px;
  }

  .ct_arro_next,
  .ct_arro_prev {
    width: 44px;
    height: 44px;
    padding: 11px;
  }

  .banner_ct_image {
    border-radius: 20px;
  }


  .cct_tabs_slide .swiper-slide {

    transform: scale(.95);

  }

  .cct_tabs_slide .swiper-backface-hidden .swiper-slide {
    transform: scale(.95) translateZ(0);
  }


  .category_section {
    padding-bottom: 70px;
  }

  .heading_02 h2 {
    font-size: 42px;
  }

  .why_differ_title.sub_title_sp span {
    margin-bottom: 13px;
  }

  .heading_pra p {
    font-size: 20px;
  }

  .why_differ_title.heading_02 h2 {
    margin-bottom: 20px;
  }

  .learn_dff_tbn {
    margin-top: 15px;
  }

  .why_differ_title {

    width: 67%;
  }

  .why_different_section {
    padding-bottom: 70px;
  }
.service_title.heading_02 h2,
  .head_title_size_02.heading_02 h2 {
    font-size: 32px;

  }

  .explore_item_row {
    padding: 15px 0 70px;
    grid-template-columns: repeat(auto-fit, minmax(238px, 1fr));

  }

  .ex_text_info {
    font-size: 18px;
  }

  .cale_about_out {

    padding: 20px 25px 25px;

    border-radius: 17px;
  }

  .cale_ctc_info {
    padding-right: 20px;
  }

  .cale_img_info img {

    border-radius: 10px;
  }

  .play_fd_btn {
    margin-top: 22px;
  }

  .explore_type_features {
    padding-bottom: 70px;
  }

  .customers_block_slider {
    padding-top: 15px;
  }

  .customers_info_img {
    width: 130px;
    height: 130px;
  }

  .customers_information {

    top: -70px;
    margin-bottom: -70px;
  }

  .our_customers_content {
    padding: 0 35px 40px 35px;


    border-radius: 14px;
  }

  .customers_ctc {
    padding-top: 15px;
  }

  .customers_information_ct h3 {

    font-size: 20px;
  }

  .our_customers_section {
    padding-bottom: 55px;
  }

  .faqs_list {
    padding-top: 20px;
  }

  .brands_tls_arrow_prev {
    left: -6px;
  }

  .brands_tls_arrow_next {
    right: -6px;
  }


  .faq_section {
    padding-bottom: 70px;
  }

  .footer_item_column {
    width: calc(33.33% - 19.5px) !important;
  }

  .footer_item_column:last-child {
    width: 100% !important;
  }

  .footer_item_column:last-child {
    display: flex;
    gap: 25px;
  }

  .ft_link_box {

    border-radius: 20px;
    padding: 25px 15px 20px 20px;
    margin-bottom: 0;
  }

  .footer_item_column:last-child .ft_link_box {
    width: 50%;
  }

  .copy_right_link {
    gap: 9px 31px;
  }

  .footer_sub_outer {
    padding: 70px 0 0 0;
  }

  .footer_ft_title {
    margin-bottom: 20px;
  }


  .sticky_header_inner .header_img_sec a {
    max-width: 209px;
  }

  .sticky_header_inner .header_btn_sec .site_button {

    padding: 12px 16px;
  }

  .sticky_header_inner {
    padding: 12px 0 12px;
  }
  .error_pg_sec{padding: 60px 0;}
    .error_pg_title h1{font-size: 42px;}
    .error_pg_img{max-width: 350px;}
    .error_pg_content{max-width: 550px;}
    .error_pg_content p{font-size: 20px;}
    .common_banner_sec{padding: 60px 0 60px;}
    .service_title.heading_02 h2{margin-bottom: 20px;}
    .service_sec{padding-bottom: 70px;}
    .cta_list li,
    .cta_content p{font-size: 16px;}
    .cta_list {margin-bottom: 20px;}
    .booking_left{width: 45%;}
    .booking_right{padding-left: 60px;width: 55%;}
    .booking_content_list li{font-size: 19px;}
    .booking_container{margin-top: 15px;}
    .cta_sec {padding: 90px 0;}
    .booking_way_box_text h4 {font-size: 16px;}
.booking_way_box_active_icon,
.booking_way_box_icon{height: 25px;}
.booking_way_list_box{width: 50%;padding: 20px 10px;}
.booking_way_left{width: 55%;}
.booking_way_right{inline-size: 45%;}
.booking_way_container{margin-top: 30px;}
.booking_way_sec {padding-bottom: 70px;}
.booking_way_img img{object-position: top;}
}


@media screen and (max-width: 767px) {

  .header_img_sec {
    width: 50%;
  }

  .header_btn_sec {
    width: 50%;

  }

  .header_img_sec a {
    max-width: 193px;
  }

  .content_top_entry {
    width: 90%;
    max-width: none;
  }

  .content_top_entry h1 {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .banner_section {
    padding: 70px 0 70px;
  }

  .content_top_entry p {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .sl_tab_src ul li>button {
    padding: 7px 15px;
    min-width: 94px;
    font-size: 14px;
  }

  .header_btn_sec .site_button {

    padding: 6px 10px;
    font-size: 18px;
  }

  .header_btn {
    display: none;
  }

  .haeder_mobile_menu_bottom {
    display: inline-flex;
    width: 100%;
    gap: 18px;
    margin-top: 0;
    padding-left: 20px;
  }

  .header_sec {
    padding: 15px 0 15px;
  }


  .ct_arro_next,
  .ct_arro_prev {
    width: 40px;
    height: 40px;
    padding: 10px;
  }


  .banner_ct_image {
    border-radius: 14px;
  }

  .heading_02 h2 {
    font-size: 35px;
  }

  .why_differ_title {
    width: 100%;
  }

  .why_differ_title.heading_02 h2 {
    margin-bottom: 15px;
  }

  .heading_pra p {
    font-size: 18px;
  }

  .learn_dff_tbn {
    margin-top: 6px;
  }
.service_title.heading_02 h2,
  .head_title_size_02.heading_02 h2 {
    font-size: 28px;
  }

  .explore_item_row {
    padding: 10px 0 70px;
    grid-template-columns: repeat(auto-fit, minmax(212px, 1fr));
  }

  .features_item_row {
    padding: 8px 0 0px;
  }

  .icon_ctc_r p {
    font-size: 16px;
    line-height: 1.0;
  }

  .cale_item_l,
  .cale_item_r {
    width: 100%;
  }

  .cale_about_out {
    gap: 30px;
  }

  .find_btn_top {

    gap: 16px 18px;
  }

  .play_fd_btn {
    margin-top: 18px;
  }

  .our_customers_content {
    padding: 0 25px 30px 25px;
    margin: 20px 0;
    margin-left: 10px;
    margin-right: 10px;

  }

  .customers_info_img {
    width: 100px;
    height: 100px;
  }

  .customers_information {
    top: -50px;
    margin-bottom: -50px;
  }

  .customers_information_ct {

    padding-top: 12px;
  }

  .customers_information_ct p {

    font-size: 17px;
  }

  .brands_tls_arrow_next::after,
  .brands_tls_arrow_prev::after {
    font-size: 18px;
  }

  .customers_block_slider .swiper-slide {
    padding-top: 35px;

  }

  .customers_block_slider {
    padding-top: 0;
  }

  .faqs_list {
    padding-top: 10px;
  }


  .acc__title {

    padding: 18px 20px 18px 24px;

  }

  .acc__title h4 {

    font-size: 18px;
  }

  .acc__panel {
    padding: 0px 50px 15px 26px;

  }

  .acc__title::after {

    top: 22px;

    width: 18px;
    right: 20px;
    height: 11px;

  }

  .acc__title.active::after {

    width: 18px;
    height: 11px;
  }

  .acc__card {

    margin-bottom: 20px;
  }

  .our_customers_section {
    padding-bottom: 50px;
  }


  .footer_sub_container {

    gap: 20px;

  }

  .footer_item_column {
    width: calc(50% - 10px) !important;
  }

  .footer_ft_logo {

    margin-bottom: 35px;
  }

  .footer_item_column:last-child {

    gap: 20px;
  }

  .footer_item_column:nth-child(3) {
    width: 100% !important;
  }

  .footer_ctc_out {
    padding-bottom: 25px;
  }

  .copy_right_text {
    width: 100%;
    padding-right: 0;
  }

  .copy_right_text p {

    text-align: center;
  }

  .footer_copy_right {
    gap: 15px;
    flex-direction: column-reverse;
    padding: 0px 0 18px;
  }

  .copy_right_link_r {
    width: 100%;
    text-align: center;


    justify-content: center;
  }


  .sticky_header_inner .header_img_sec a {
    max-width: 188px;
  }
.search_part_content h2 a{font-size: 20px;}
    .common_banner_sec {padding: 50px 0 50px;}
    .common_banner_title h1 {font-size: 40px;}
    .error_pg_title h1 {  font-size: 32px;margin-bottom: 15px;}
    .error_pg_img{max-width: 70%;}
.not_home_page .footer_section::before {
    background-image: radial-gradient(circle, rgba(230, 82, 37, 0.26) 0, rgb(230 81 37 / 29%) 54%, rgb(230 81 37 / 43%) 74%, rgb(230 81 37 / 32%) 100%);
    width: 200px;
    aspect-ratio: auto;
    right: 50%;
    top: -100px;
}
.not_home_page .footer_section::after{
   background-image: radial-gradient(circle, rgba(0, 41, 249, 0.26) 0, rgb(0 41 249 / 29%) 54%, rgb(0 41 249 / 43%) 74%, rgb(0 41 249 / 32%) 100%);
    width: 200px;
    aspect-ratio: auto;
    left: 50%;
    top: -50px;
}
.ele_faq_sec .e-n-accordion-item-title-header .e-n-accordion-item-title-text{font-size: 18px;}
.ele_why_faq_sec .e-n-accordion-item-title-header .e-n-accordion-item-title-text{font-size: 20px;}
.service_sec{padding-bottom: 100px;}
.service_swiper_pagination{display: block;}
.booking_left{width: 100%;}
.booking_right{width: 100%;padding: 0;}
.booking_container{gap: 30px;max-width: 400px;margin: 0 auto;}
.cta_sec {padding: 70px 0;}
.booking_way_container{flex-wrap: wrap;gap: 15px;}
.booking_way_left{width: 100%;}
.booking_way_right{width: 100%;}
.booking_way_sec {padding-bottom: 60px;}
.price_pg_toggle_btn .e-n-tabs-heading button{margin: 0 !important;}
.price_pg_toggle_btn .e-n-tabs-heading{display: flex;margin-bottom: 30px;}
}


@media screen and (max-width: 479px) {


  .header_mobile_logo {
    max-width: 51%;
  }

  .header_img_sec {
    width: 58%;
    padding-right: 6px;
  }

  .header_btn_sec {
    width: 42%;
    gap: 17px;
  }

  .site_button {
    padding: 9px 18px 9px;
    min-width: 108px;

  }

  .header_btn_sec .site_button {
    padding: 6px 6px;

  }

  .banner_section {
    padding: 60px 0 40px;
  }


  .content_top_entry {
    width: 100%;

  }

  .content_top_entry h1 {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .content_top_entry p {

    margin-bottom: 10px;
  }

  .sl_tab_src ul li>button {
    padding: 5px 10px;
    min-width: 90px;

  }


  .ct_arro_next,
  .ct_arro_prev {
    width: 30px;
    height: 30px;
    padding: 8px;
  }


  .banner_ct_image {
    border-radius: 10px;
  }

  .category_section {
    padding-bottom: 60px;
  }

  .why_differ_title.sub_title_sp span {
    margin-bottom: 7px;
  }

  .heading_02 h2 {
    font-size: 29px;
  }

  .heading_pra p {
    font-size: 17px;
  }

  .why_different_section {
    padding-bottom: 60px;
  }

  .explore_item_row {
    padding: 10px 0 60px;

  }

  .find_btn_top {
    gap: 14px;
  }

  .cale_about_out {
    padding: 18px;
    border-radius: 12px;
  }

  .cale_img_info img {
    border-radius: 12px;
  }

  .explore_type_features {
    padding-bottom: 60px;
  }

  .our_customers_content {
    padding: 0 20px 25px 20px;
    box-shadow: 0px 0px 3px 0px #00000040;

  }

  .ex_text_info {

    box-shadow: 0px 0px 3px 0px #00000040;
  }

  .our_customers_section {
    padding-bottom: 40px;
  }

  .faqs_list {
    padding-top: 5px;
  }

  .acc__title {
    padding: 18px 20px 18px 20px;
  }

  .acc__title::after {
    top: 24px;
  }

  .acc__panel {
    padding: 0px 50px 15px 22px;
  }

  .faq_section {
    padding-bottom: 60px;
  }

  .footer_sub_outer {
    padding: 60px 0 0 0;
  }


  .footer_item_column {
    width: 100% !important;
  }

  .ft_link_box {
    border-radius: 16px;
    padding: 20px 15px 18px 18px;

  }

  .footer_ft_title {
    margin-bottom: 15px;
  }

  .footer_item_column:last-child .ft_link_box {
    width: 100%;
  }

  .footer_item_column:last-child {
    flex-wrap: wrap;
  }

  .copy_right_link {
    gap: 9px 20px;
  }


  .sticky_header_inner .header_btn_sec .site_button {
    padding: 10px 9px;
    font-size: 13px;
  }

  .menu_expand i:nth-child(2) {
    margin: 8px 0;
  }
  .search_part_content .no-results .search-form{width: 100%;}
    .search_part_content .page-title{font-size: 28px;}
    .error_pg_content p {font-size: 18px;}
    .error_pg_img {max-width: 80%;}
    .common_banner_sec {padding: 40px 0 40px;}
    .error_pg_sec {padding: 60px 0 50px;}
}