@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* ---------------- Google fonts ------------------ */

/* ---------------- Basic css ------------------ */
:root {
  scroll-behavior: smooth;
  --white: #ffffff;
  --black: #000000;

  --white_img: brightness(0) saturate(100%) invert(99%) sepia(0%)
    saturate(7498%) hue-rotate(67deg) brightness(112%) contrast(100%);
  --black_img: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(16%);

  --bodyFont: "Poppins", serif;
  --secondaryFont: "Open Sans", serif;

  --fullMenuHeight: 11.2rem;
}

html {
  font-size: 62.5%;
}

img {
  width: 100%;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
  transition: 200ms;
  color: inherit;
}

.f-right {
  float: right;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: none;
}

button {
  background: none;
  border: none;
  outline: none;
  padding: 0;
}

/* body */
body {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.5rem;
  color: var(--black);
  overflow-x: hidden;
  font-family: var(--bodyFont);
}

.container {
  padding-left: 0;
  padding-right: 0;
}

main {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.text_green {
  color: var(--green) !important;
}

section {
  padding: 9rem 0;
}

.figure img,
.figure {
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  font-family: var(--bodyFont);
  color: var(--black);
}

/* image colros */
.white_img {
  -webkit-filter: brightness(0) saturate(100%) invert(99%) sepia(0%)
    saturate(7498%) hue-rotate(67deg) brightness(112%) contrast(100%);
  filter: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(7498%)
    hue-rotate(67deg) brightness(112%) contrast(100%);
}

.black_img {
  -webkit-filter: brightness(0) saturate(100%) invert(0%) sepia(0%)
    saturate(16%) hue-rotate(309deg) brightness(93%) contrast(107%);
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(16%)
    hue-rotate(309deg) brightness(93%) contrast(107%);
}

/* Font Weights */
.f_300 {
  font-weight: 300 !important;
}

.f_400 {
  font-weight: 400 !important;
}

.f_500 {
  font-weight: 500 !important;
}

.f_600 {
  font-weight: 600 !important;
}

.f_700 {
  font-weight: 700 !important;
}

.f_800 {
  font-weight: 800 !important;
}

.f_900 {
  font-weight: 900 !important;
}

/* titles */
h1 {
  font-size: 4.8rem;
  line-height: 1.1;
}

h2 {
  font-size: 3.8rem;
  line-height: 1.15;
}

h3 {
  font-size: 2.8rem;
  line-height: 1.1;
}

h4 {
  font-size: 2.4rem;
  line-height: 1.1;
}

h5 {
  font-size: 2rem;
  line-height: 1.1;
}

h6 {
  font-size: 2rem;
  line-height: 1.1;
}

/* texts */
.text_xl {
  font-size: 2rem;
  line-height: 1.1;
}

.text_lg {
  font-size: 1.8rem;
  line-height: 1.1;
}

.text_md {
  font-size: 1.6rem;
  line-height: 1.1;
}

.text_sm {
  font-size: 1.4rem;
  line-height: 1.1;
}

.text_xsm {
  font-size: 1.2rem;
  line-height: 1.1;
}

/* w-fit */
.w_fit {
  width: fit-content !important;
}

/* ============= hamburger_btn ============= */
.hamburger_btn {
  transform: translateX(0.2rem);
  overflow: hidden;
}

.hamburger_btn input {
  display: none;
}

.hamburger_btn .grid {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

.hamburger_btn .grid > * {
  position: relative;
}

.hamburger_btn label {
  display: block;
  cursor: pointer;
  width: 3.5rem;
  height: 3.5rem;
  position: relative;
}

.hamburger_btn svg {
  width: 9rem;
  height: 9rem;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
}

.hamburger_btn circle {
  font-size: 5rem;
}

@media (min-aspect-ratio: 1) {
  .hamburger_btn label {
    width: 3.5rem;
    height: 3.5rem;
  }
}

.hamburger_btn .menu--1 label {
  bottom: 0;
}

.hamburger_btn .menu--1 label {
  right: 0;
}

.hamburger_btn path {
  fill: none;
  stroke: var(--black);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  --length: 24;
  --offset: -38;
  stroke-dasharray: var(--length) var(--total-length);
  stroke-dashoffset: var(--offset);
  transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger_btn circle {
  fill: rgba(255, 255, 255, 0);
  opacity: 0;
}

.hamburger_btn label:hover circle {
  opacity: 1;
}

.hamburger_btn .cross input:checked + svg .line--1,
.hamburger_btn .cross input:checked + svg .line--3 {
  --length: 22.627416998;
}

.hamburger_btn .cross input:checked + svg .line--2 {
  --length: 0;
}

.hamburger_btn .back input:checked + svg .line--1,
.hamburger_btn .back input:checked + svg .line--3 {
  --length: 8.602325267;
}

.hamburger_btn .menu--1 .line--1,
.hamburger_btn .menu--1 .line--3 {
  --total-length: 126.6418304443;
}

.hamburger_btn .menu--1 .line--2 {
  --total-length: 70;
}

.hamburger_btn .menu--1 input:checked + svg .line--1,
.hamburger_btn .menu--1 input:checked + svg .line--3 {
  --offset: -94.1149185097;
}

.hamburger_btn .menu--1 input:checked + svg .line--2 {
  --offset: -50;
}

/* -------------- preloader --------------- */
#preloader {
  position: fixed;
  background: var(--white);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999999;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader3 {
  width: 5rem;
  height: 5rem;
  display: inline-block;
  padding: 0;
  text-align: left;
}

.loader3 span {
  position: absolute;
  display: inline-block;
  width: 5rem;
  height: 5rem;
  border-radius: 100%;
  background: #000000;
  -webkit-animation: loader3 1.5s linear infinite;
  animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
  animation-delay: -0.9s;
  -webkit-animation-delay: -0.9s;
}

@-webkit-keyframes loader3 {
  0% {
    transform: scale(0, 0);
    opacity: 0.8;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes loader3 {
  0% {
    transform: scale(0, 0);
    opacity: 0.8;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* -------------- Back to top ------------ */
.back-to-top {
  width: 4.5rem;
  height: 4.5rem;
  line-height: 4.5rem;
  text-align: center;
  position: fixed;
  bottom: 3rem;
  right: 2rem;
  border-radius: 50%;
  background: var(--black);
  z-index: 1000;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top img {
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(100%)
    saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%)
    hue-rotate(288deg) brightness(102%) contrast(102%);
  width: 1.5rem;
}

/* =========== Buttons ========== */

.button {
  padding: 0 4.3rem;
  height: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  color: #fff;
  font-size: 1.8rem;
  border-radius: 10rem;
  background: #000;
  transition: 0.25s ease;
}

.button_black:hover {
  background: #700cbd;
}

/* -------------- Header Styles by Sahriar --------------- */
.site_header {
  padding: 0;
  position: fixed;
  z-index: 999;
  width: 100%;
  background: transparent;
  top: 0;
  left: 0;
  height: var(--fullMenuHeight);
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site_header.sticky {
  box-shadow: 0 0 2rem 0.2rem rgba(0, 0, 0, 0.1);
  background: #5454c8;
}

/* added styles */
.logo img {
  width: 17.3rem;
}

.primary_menu_links {
  gap: 4.2rem;
  margin-right: 4rem;
}

.primary_menu_links a {
  opacity: 0.6;
}

.primary_menu_links a:hover,
.primary_menu_links a.active {
  opacity: 1;
}

.search_input input {
  margin: 0;
  height: 4.2rem;
  padding: 0 2rem;
  border-radius: 10rem;
  border: 0.1rem solid #848484;
  width: 34.5rem;
}

.search_outter {
  width: 1.8rem;
  margin-left: 0.7rem;
  cursor: pointer;
}

.search_input input::placeholder,
.search_input input {
  font-size: 1.6rem;
  color: var(--black);
  font-weight: 500;
  font-family: var(--secondaryFont);
}

.search_input input:focus {
  border: 0.1rem solid var(--black);
}

/* search_input */
.search_input input {
  background: #e0eaf7;
  padding: 0 3.2rem;
  height: 4.6rem;
  width: 25rem;
}

.search_input {
  position: relative;
}

.search_inner {
  width: 2rem;
  position: absolute;
  right: 2rem;
}

/* ============= Hero area ============= */
.hero_area {
  padding: 16rem 0 4.5rem;
  position: relative;
}

.hero_area::before {
  background: url(/assets_home/img/blue_overlay.png) no-repeat scroll top left / 100% 100%;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
}

.hero_logo {
  width: 29rem;
}

.hero_area .content h1 {
  font-size: 7.3rem;
  font-weight: 700;
}

.hero_area .content p {
  color: #fff;
  font-size: 1.8rem;
}

.scroll_icon {
  width: 2.5rem;
  display: flex;
  align-items: self-start;
  height: 3.9rem;
  border: 0.3rem solid #fff;
  border-radius: 10rem;
  justify-content: center;
  padding: 0.7rem;
  margin-top: 10.5rem;
}

.top_to_bottom {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  background: #fff;
  border-radius: 10rem;
  animation: topToBottom 1.5s infinite ease-in-out;
}

@keyframes topToBottom {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(1.2rem);
  }

  100% {
    transform: translateY(0);
  }
}

/* ============= about_area ============= */
.text_img1 {
  width: 24rem;
}

.about_area .content {
  padding: 10.5rem 0 13.5rem;
  position: relative;
}

.tower_img {
  width: 65rem;
  position: absolute;
  left: 0;
  bottom: -19rem;
}

.about_area .content p {
  max-width: 42.7rem;
}

.about_img {
  width: 63rem;
  transform: translate(-7rem, 5rem);
}

.about_img2 {
  width: 24rem;
  position: absolute;
  top: calc(50% + 5rem);
  transform: translateY(-50%);
  right: -16rem;
}

/* ============ service area ============== */
.service_area {
  background: linear-gradient(
    0deg,
    rgba(28, 102, 219, 1) 0%,
    rgba(37, 125, 237, 1) 100%
  );
  padding: 6.5rem 0 7.5rem 0;
}

.service_area .row {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 2rem;
}

.service {
  background: linear-gradient(
    0deg,
    rgba(28, 102, 219, 1) 0%,
    rgba(37, 125, 237, 1) 100%
  );
  height: 25.6rem;
  border-radius: 2rem 9rem 2rem 9rem;
  padding-top: 2.9rem;
}

.section_top h2 {
  color: #fff;
  padding-bottom: 0.8rem;
}

.text_img_white {
  width: 29.2rem;
}

.service_area .section_top {
  margin-bottom: 5rem;
}

.search_icon1 img {
  width: 6.2rem;
}

.service_icon {
  display: flex;
  align-items: end;
  height: 7rem;
  justify-content: center;
}

.service_icon img {
  width: 5rem;
}

.service_icon1 img {
  width: 6.2rem;
}

.service_icon3 img {
  width: 6.8rem;
}

.service_icon4 img {
  width: 7.4rem;
}

.service p {
  text-align: center;
  margin: 0 auto;
  margin-top: 2.5rem;
  font-size: 1.8rem;
  line-height: 1.2;
}

/* ================ faq_area ==================== */
.faq_area {
  padding: 13.7rem 0 24rem;
}

.plus_minus img {
  width: 2.5rem;
  filter: brightness(0) saturate(100%) invert(56%) sepia(76%) saturate(4789%)
    hue-rotate(201deg) brightness(94%) contrast(97%);
}

.accordion_button:not(.collapsed) .minus {
  display: block !important;
}

.accordion_button:not(.collapsed) .plus {
  display: none !important;
}

.accordion_button {
  display: grid;
  align-items: center;
  grid-template-columns: 1.5rem 1fr;
  gap: 5rem;
}

.accordion_item {
  padding: 2.4rem 0 5.8rem;
  border-top: 0.1rem solid #377deb;
}

.accordion-body {
  padding: 2rem 2rem 0 6.5rem;
  font-size: 1.6rem;
  opacity: 0.75;
}

.faq_area .section_top {
  padding-bottom: 7rem;
}

.accordion_button p {
  font-size: 2rem;
}

/* ============= tags_area ============= */
.tags_area {
  padding: 10.5rem 0 12.5rem;
  background: #000;
  border-top: 1rem solid #2176e7;
}

.tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.4rem 0.6rem;
  max-width: 92rem;
  margin: 0 auto;
}

.tags a {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 500;
  height: 4rem;
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
  background: #000000;
  border: 0.15rem solid #377deb;
  border-radius: 10rem;
}

.tags_content .section_top {
  margin-bottom: 2.7rem;
  text-align: center;
}

.tags_content .section_top h2 {
  color: #267eee;
}

.tags a:hover {
  background: #377deb;
}

/* ==================== Product Item ===================== */
.product_area {
  padding: 12.2rem 0 14.3rem;
  background: url(/assets_home/img/product_bg.png) no-repeat scroll top left / cover;
  overflow: hidden;
}

.product_area .round_circles {
  top: -10rem;
}

.product_tags {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 0 1.2rem;
}

.location h6 {
  font-size: 1.4rem;
  color: #8a94a7;
  font-weight: 600;
  width: 23.6rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.location_mark {
  width: 1.1rem;
}

.product_tags a {
  height: 2.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e4eaf2;
  padding: 0 1.2rem;
  border-radius: 0.6rem;
}

.product_info > p {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding: 0 3rem;
  margin: 1.2rem 0;
}

.product_info_top {
  padding: 2.5rem 3rem 0 3rem;
  border-bottom: 0.1rem solid #dedede;
}

.promogim {
  width: 9rem;
}

.branding_price_right p {
  color: #707070;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.8rem;
}

.branding_price_right h4 {
  font-size: 2rem;
  line-height: 3rem;
  font-weight: 500;
}

.branding_price {
  padding: 1rem 3rem;
  border-top: 0.1rem solid #dedede;
  border-bottom: 0.1rem solid #dedede;
}

.product_bottom .button {
  padding: 0 2.8rem 0 3.5rem;
  height: 4rem;
  font-size: 1.4rem;
}

.long_arrow {
  width: 1.8rem;
}

.product_bottom {
  padding: 1.8rem 3rem;
}

.product_info {
  background: #fff;
  border-bottom-left-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
}

.product_img {
  position: relative;
}

.badge p {
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--secondaryFont);
  line-height: 1.5rem;
}

.badge {
  padding: 0.41rem 1.4rem;
  background: rgba(253, 206, 41, 0.65);
  border-radius: 10rem;
  position: absolute;
  right: 1rem;
  top: 1rem;
}

.product_nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5rem 0 2rem;
}

.product_nav p > span {
  color: #267eee;
  font-weight: 700;
}

.product_right {
  display: flex;
  align-items: center;
}

.nav_link {
  display: flex;
  align-items: center;
}

.producttab_nav {
  border: 0.2rem solid #377deb;
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 10rem;
  background: #fff;
  transition: 0.25s ease;
}

.producttab_nav:hover {
  background: #f0eeee;
}

.nav_link {
  font-size: 1.6rem;
  font-weight: 600;
  padding: 0 2rem;
  gap: 1rem;
  color: #267eee;
}

.nav_link.active {
  background: #267eee;
  color: #fff;
}

.list {
  width: 3rem;
}

.map_icon {
  width: 1.4rem;
}

.product_right > p {
  font-size: 1.2rem;
  font-weight: 600;
  margin-right: 2rem;
}

.nav_link img {
  filter: brightness(0) saturate(100%) invert(42%) sepia(85%) saturate(661%)
    hue-rotate(185deg) brightness(91%) contrast(103%);
}

.nav_link.active img {
  filter: var(--white_img);
}

.badge_red {
  background: rgba(246, 105, 26, 0.73);
}

.product_row {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 2rem;
}

.product_item {
  border-radius: 1.6rem;
  overflow: hidden;
  transition: 0.25s ease-out;
}

.product_item:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 0 2rem 0.1rem rgba(0, 0, 0, 0.2);
}

/* ======= pagination ======= */
.pagination a {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.7rem;
  background: #ffffff;
  font-size: 1.6rem;
  font-weight: 700;
  color: #000000;
}

.pagination a.active,
.pagination a.active:hover {
  background: #267eee;
  color: #fff;
}

.pagination a:hover {
  background: rgb(255, 255, 255, 0.63);
}

.pagination a img {
  width: 1.5rem;
}

.pagination_numbers {
  gap: 0.3rem;
  padding: 0 1.3rem;
}

/* ================ Footer section ================= */
.footer_section {
  background: #000000;
  display: block;
}

.footer_logo img {
  width: 13.2rem;
}

.footer_links a img {
  width: 1.8rem;
}

.footer_links a img.fb {
  width: 1rem;
}

.footer_links a {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10rem;
  background: #000;
}

.footer_links a:hover {
  background: #5454c8;
}

.footer_links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.link_icon img {
  width: 1.2rem;
}

.link_icon {
  background: #267eee;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10rem;
}

.contact_links a {
  color: #fff;
  display: grid;
  align-items: center;
  grid-template-columns: 2rem 1fr;
  gap: 1rem;
  font-size: 1.4rem;
  font-weight: 400;
}

.contact_links {
  gap: 3.2rem;
}

.footer_box h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  padding-bottom: 2.2rem;
}

.footer_box ul li {
  color: #a3a3a3;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 500;
}

.footer_link_boxes {
  display: flex;
  gap: 4rem;
}

.footer_box {
  flex-grow: 1;
}

.footer_box ul {
  display: grid;
  gap: 2rem;
}

.footer_box ul li:hover {
  color: #fff;
}

.footer_section .row {
  padding: 8.5rem 0 7rem;
}

/* ============== hero_area v2 ============== */
.hero_area.v2 {
  background: url(/assets_home/img/hero_inner_color.png) no-repeat scroll top left / 100%
    100%;
  overflow: hidden;
}

.hero_img {
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
}

.flag_wrap h5 {
  font-size: 3.4rem;
  color: #fff;
  line-height: 3.6rem;
}

.flag {
  width: 3.5rem;
}

.flag_wrap {
  padding: 1.2rem 4.3rem 1.2rem 2.8rem;
  width: fit-content;
  gap: 1.5rem;
  background: linear-gradient(
    270deg,
    rgba(28, 173, 219, 1) 0%,
    rgba(38, 126, 238, 1) 100%
  );
  border-radius: 0 2.1rem 2.1rem 2.1rem;
}

.hero_ring {
  position: absolute;
  left: 8.5rem;
  width: 105.4rem;
  bottom: 1rem;
}

/* ============== filter area ============= */
.filter_icon1 {
  width: 2rem;
  left: 0;
}

.filter_area {
  padding: 1rem 2rem;
  background: #fff;
  border-radius: 10rem;
  margin-bottom: 3rem;
}

.filter_form input {
  height: 4.1rem;
  border-radius: 10rem;
  border-color: #000;
  background: #fff;
  padding: 0 2rem 0 5rem;
  font-size: 1.4rem;
  color: #2176e7;
  width: 100%;
  border-width: 0.1rem;
  cursor: pointer;
}

.filter_form input:focus {
  border-color: #2176e7;
}

.filter_form input:focus::placeholder {
  color: #2176e7;
}

.filter_form input::placeholder {
  font-size: 1.4rem;
  color: #000;
}

.filter_icon {
  width: 1.8rem;
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.filter_form_wrap_last {
  grid-template-columns: 1fr 4.1rem;
  gap: 1.3rem;
}

.fillter_button {
  background: #a7c2e3;
  width: 4.1rem;
  height: 4.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10rem;
  transition: 0.25s ease;
}

.fillter_button:hover {
  background: #7690b1;
}

.fillter_button img {
  width: 2rem;
}

/* ============= hover_area =============== */
.hover_area {
  padding: 21.5rem 0 33.4rem;
  background: #d6e1f0;
  border-radius: 2rem;
  position: relative;
}

.hover_area > p {
  position: absolute;
  left: 4rem;
  top: 3rem;
  font-size: 1.6rem;
}

.map_wrap > img {
  width: 80.5rem;
}

.map_wrap {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.map_wrap .product_item {
  position: absolute;
  width: 38rem;
  left: 50%;
  transform: translateX(-50%);
  top: 12rem;
  box-shadow: 0 0 2rem 0.1rem rgba(0, 0, 0, 0.3);
  transition: 0.35s ease-out;
  opacity: 0;
}

.map_wrap:hover .product_item {
  top: 9rem;
  opacity: 1;
}

.flag_bg {
  position: absolute;
  width: 41.5rem;
  right: -18.5rem;
  top: -6.5rem;
}

/* ================== Contact page ================== */
.hero_inner {
  padding: 21rem 0 20.5rem;
  text-align: center;
}

.hero_inner .content h1 {
  font-size: 6rem;
  line-height: 6.9rem;
  border-bottom: 0.8rem solid #267eee;
  margin: 0 auto;
  width: fit-content;
}

/* ====== Contact area ========= */
.contact_area {
  padding: 8rem 0 13.2rem;
  background: url(/assets_home/img/product_bg.png) no-repeat scroll top left / 100% 100%;
}

.contact_left .contact_links a .link_icon {
  width: 3.6rem;
  height: 3.6rem;
}

.contact_left .contact_links a {
  grid-template-columns: 3.6rem 1fr;
  color: #000;
  font-size: 1.6rem;
}

.contact_left .contact_links a .link_icon img {
  width: 1.6rem;
  filter: var(--white_img);
}

.contact_left h2 {
  color: #267eee;
  line-height: 5.6rem;
}

.contact_right {
  border-radius: 2rem;
  background: #fff;
  padding: 4.2rem 4.7rem 7.7rem 4.7rem;
}

.form_group input,
.form_group textarea {
  width: 100%;
  height: 5.5rem;
  border-radius: 1rem;
  padding: 0 2rem 0 3.2rem;
  border: 0.1rem solid #c9c9c9;
  outline: none;
}

.form_group input:focus,
.form_group textarea:focus {
  color: #267eee;
  border-color: #267eee;
}

.form_group input::placeholder,
.form_group textarea::placeholder {
  color: #000;
  font-size: 1.6rem;
}

.form_group textarea {
  height: 11.5rem;
  padding-top: 1.3rem;
  padding-bottom: 1.3rem;
}

.contact_form .row {
  --bs-gutter-x: 2.4rem;
  --bs-gutter-y: 1.4rem;
}

.check {
  width: 2rem;
  height: 2rem;
  border-radius: 0.4rem;
  border: 0.1rem solid #c9c9c9;
}

.checkbox {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 1.3rem;
  align-items: flex-start;
  cursor: pointer;
}

.checkbox p {
  font-size: 1.4rem;
  line-height: 2rem;
  transform: translateY(-0.2rem);
}

.button_blue {
  background: #267eee;
  padding: 0 4.8rem;
  margin: 0 auto;
  height: 5.3rem;
}

.button_blue:hover {
  background: #0f4a96;
}

.checkbox.active .check {
  border-color: #267eee;
  background: #267eee;
}

.round_circles {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 105rem;
  top: -1rem;
}

.text_blue {
  color: #267eee !important;
}

/* ============ legal_text_area =============== */
.legal_text_area {
  padding-bottom: 10.5rem;
  background: url(/assets_home/img/product_bg.png) no-repeat scroll top left / 100% 100%;
}

.text_contents {
  max-width: 99.6rem;
  margin-left: auto;
  margin-right: auto;
  padding: 8.4rem 9rem 11.3rem 9rem;
  border-radius: 2rem;
  background: #fff;
  transform: translateY(-4.5rem);
}

.text_box .p1 {
  line-height: 1.2;
  font-size: 2rem;
}

.text_box h5 {
  font-size: 2.4rem;
  line-height: 1.4;
}

/* =============================== Dashboard Starts ============================= */
.dashboard_page {
  font-size: 0.694vw;
}

/* ============== Step Section ================ */
.level {
  display: none;
}

.step_level_one .level_one {
  display: block;
}

.step_level_two .level_two {
  display: block;
}

.step_level_three .level_three {
  display: block;
}

.step_level_four .level_four {
  display: block;
}

.step_level_five .level_five {
  display: block;
}

.step_level_six .level_six {
  display: block;
}

.step_level_seven .level_seven {
  display: block;
}

.step_level_eight .level_eight {
  display: block;
}

.step_level_nine .level_nine {
  display: block;
}

.step_level_ten .level_ten {
  display: block;
}

.step_level_eleven .level_eleven {
  display: block;
}

.step_level_twelve .level_twelve {
  display: block;
}

.step_level_thirteen .level_thirteen {
  display: block;
}

.step_level_fourteen .level_fourteen {
  display: block;
}

.step_level_fifteen .level_fifteen {
  display: block;
}

.step_level_sixteen .level_sixteen {
  display: block;
}

.step_level_seventeen .level_seventeen {
  display: block;
}

.step_level_eighteen .level_eighteen {
  display: block;
}

/* ============= dashboard_area ============== */
.dashboard_area {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  z-index: 999;
  width: 100%;
  display: grid;
  grid-template-columns: 0fr 1fr;
  background: url(/assets_home/img/dashboard_bg.png) no-repeat scroll bottom left / 100%
    51rem;
}

:root {
  --Dshadow: 0 0.3rem 0.6rem 0 rgb(55, 125, 235, 0.36);
}

/* ================= dashboard_sidebar =============== */
.dashboard_sidebar {
  width: 28.7rem;
  background: #f6f8fc;
  height: 100%;
  padding: 3.5rem 2rem 2rem 4.5rem;
}

.dashboard_logo img {
  width: 10.6rem;
}

.step_menu {
  display: flex;
  text-align: left;
  flex-direction: column;
  gap: 3rem;
  padding-top: 7.4rem;
}

.step_menu_btn {
  text-align: left;
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  gap: 2.2rem;
}

.step_link_number {
  width: 2.6rem;
  height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d3e1f0;
  border-radius: 10rem;
  position: relative;
  font-size: 1.3rem;
  transition: 0.25s ease;
}

.step_link_number:before {
  width: 0.25rem;
  height: 0;
  content: "";
  background: #377deb;
  position: absolute;
  top: 2.65rem;
  border-radius: 10rem;
  transition: height 0.5s ease;
}

.step_menu_btn.active .step_link_number:before {
  height: 2.65rem;
}

.step_menu_btn.active .step_link_number,
.step_menu_btn:hover .step_link_number {
  background: #267eee;
  color: #fff;
  box-shadow: var(--Dshadow);
}

.step_menu_btn > span,
.step_menu_btn > span {
  color: #585858;
}

.step_menu_btn.active > span,
.step_menu_btn:hover > span {
  color: #000000;
}

.step_eight .step_menu_btn:last-child .step_link_number:before {
  display: none;
}

/* ====================== Dashboard Content ====================== */

/* ======= Progress Circle ======= */
:root {
  --size: 5.633rem;
  --bar-width: 0.4rem;
  --progress12: 12;
  --progress24: 24;
  --progress36: 36;
  --progress48: 48;
  --progress60: 60;
  --progress72: 72;
  --progress72: 72;
  --progress84: 84;
  --progress96: 96;
  --track-color: #dfeaf7;
  --progress-color: #377deb;
}

.circle {
  position: relative;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: conic-gradient(
    var(--progress-color) calc(var(--progress12) * 1%),
    var(--track-color) 0
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.step_level_two .circle {
  background: conic-gradient(
    var(--progress-color) calc(var(--progress24) * 1%),
    var(--track-color) 0
  );
}

.step_level_three .circle {
  background: conic-gradient(
    var(--progress-color) calc(var(--progress36) * 1%),
    var(--track-color) 0
  );
}

.step_level_four .circle {
  background: conic-gradient(
    var(--progress-color) calc(var(--progress48) * 1%),
    var(--track-color) 0
  );
}

.step_level_five .circle {
  background: conic-gradient(
    var(--progress-color) calc(var(--progress60) * 1%),
    var(--track-color) 0
  );
}

.step_level_six .circle {
  background: conic-gradient(
    var(--progress-color) calc(var(--progress72) * 1%),
    var(--track-color) 0
  );
}

.step_level_seven .circle {
  background: conic-gradient(
    var(--progress-color) calc(var(--progress84) * 1%),
    var(--track-color) 0
  );
}

.step_level_eight .circle {
  background: conic-gradient(
    var(--progress-color) calc(var(--progress96) * 1%),
    var(--track-color) 0
  );
}

.circle::before {
  content: "";
  position: absolute;
  width: calc(var(--size) - var(--bar-width) * 2);
  height: calc(var(--size) - var(--bar-width) * 2);
  background: #fff;
  border-radius: 50%;
}

.circle span {
  position: relative;
  font-size: 2rem;
  font-weight: 400;
  color: #000;
}

.circle span::after {
  content: "%";
  font-size: 1rem;
  position: absolute;
  right: -0.9rem;
  top: -0.5rem;
}

/* ==================== Dashboard Header ===================== */
.dashboard_content {
  width: 100%;
  height: 100%;
  position: relative;
  display: grid;
  align-content: space-between;
}

.quiter_btn img {
  width: 1.6rem;
}

.dashboard_header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  height: 8.7rem;
  align-items: center;
  padding: 0 3.5rem;
  border-bottom: 0.1rem solid #edf2fa;
}

.dashboard_header p {
  color: #797979;
  font-size: 1.2rem;
}

.dashboard_header p span {
  color: #000;
  font-size: 1.4rem;
  padding-left: 0.5rem;
}

.dashboard_step_percentage {
  display: flex;
  justify-content: center;
}

.quiter_btn {
  height: 3.2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0 0.8rem 0 2.1rem;
  background: #f6f8fc;
  width: fit-content;
  font-size: 1.4rem;
  color: #267eee;
  border-radius: 10rem;
  margin-left: auto;
}

.quiter_btn:hover {
  background: #ffffff;
  box-shadow: 0 0.4rem 1.8rem 0 rgba(0, 0, 0, 0.15);
}

/* ============= dashboard_mid ============= */
.dashboard_mid_top {
  text-align: center;
}

.dashboard_mid_top p {
  color: #797979;
  font-size: 1.6rem;
  font-weight: 500;
  padding-bottom: 1rem;
}

.dashboard_mid_top h2 {
  color: #000000;
  font-weight: 500;
  font-size: 3rem;
}

.select_btn img {
  width: 3rem;
  filter: var(--black_img);
}

.select_btn.selected img {
  filter: var(--white_img);
}

.select_btn {
  height: 5.3rem;
  display: flex;
  align-items: center;
  border: 0.1rem solid #377deb;
  padding: 0 3rem;
  gap: 1.2rem;
  border-radius: 10rem;
  white-space: nowrap;
  transition: 0.25s ease;
}

.select_btn.selected {
  background: #377deb;
  color: var(--white);
  box-shadow: var(--Dshadow);
}

.select_btns {
  display: flex;
  align-items: center;
  gap: 2rem 2rem;
  width: 77%;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  margin-top: 4rem;
}

.select_btn .appartment {
  width: 2.4rem;
}

.select_btn:not(.selected):hover {
  background: #f1f1f1;
}

/* ================ dashboard_bottom ================ */
.dashboard_bottom {
  display: grid;
  align-items: center;
  justify-content: space-between;
  padding: 5rem 3.5rem;
  grid-template-columns: 1fr 1fr 1fr;
}

.back_icon {
  width: 3.7rem;
  height: 3.7rem;
  padding: 0;
  background: transparent;
  border: 0.1rem solid #000;
  transition: 0.25s ease;
}

.icon_15 {
  width: 1.5rem;
}

.dashboard_bottom .button_black {
  height: 5.5rem;
  gap: 2rem;
  font-size: 1.6rem;
  background: #000;
  transition: 0.25s ease;
  margin: 0 auto;
}

.dashboard_bottom .button_black:hover {
  background: #3f2121;
}

.back_icon:hover {
  background: #000;
}

.back_icon:hover img {
  filter: var(--white_img);
}

/* ======== range field ======== */
.range-container {
  width: 46.6rem;
  position: relative;
  margin: 0 auto;
  height: 0.8rem;
}

.range-track {
  width: 100%;
  height: 0.8rem;
  background: #dfeaf7;
  border-radius: 10rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.range-fill {
  position: absolute;
  height: 0.8rem;
  background: #267eee;
  border-radius: 10rem;
}

.range-handle {
  width: 2rem;
  height: 2rem;
  background: #267eee;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: -webkit-grab;
  cursor: grab;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--Dshadow);
}

.range-handle img {
  width: 0.7rem;
  cursor: pointer;
}

.price-box > span {
  color: #4a4a4a;
  font-size: 1.2rem;
  font-weight: 500;
}

.price-box h3 {
  font-size: 2rem;
  color: #000000;
  font-weight: 500;
  line-height: 1.1;
}

.price-display {
  display: grid;
  align-items: center;
  justify-content: center;
  grid-template-columns: 1fr 0.1rem 1fr;
  margin-top: 3rem;
  background: #f6f8fc;
  border-radius: 10rem;
  padding: 0.8rem 0;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.price-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.border_r {
  background: #b1b1b1;
  height: 2.8rem;
  width: 0.1rem;
  display: block;
}

/* ================ Increase and Decrease area ================= */
.inc_dec_wrapper input,
.dashboard_input {
  height: 5.5rem;
  padding: 0 2rem;
  border: 0.1rem solid #377deb;
  width: 19.3rem;
  border-radius: 0.5rem;
}

.inc_dec_wrapper input::placeholder {
  color: #8a94a7;
}

.inc_dec_wrapper input:hover {
  border: 0.1rem solid #000000;
}

.inc_dec_wrapper .dashboard_number {
  width: 10.8rem;
  text-align: center;
  font-size: 1.8rem;
  color: #000000;
}

/* ======== Checkbox.v2 ======== */
.checkbox.v2 .check img {
  width: 4rem;
  position: absolute;
  top: calc(50% + 0.25rem);
  transform: translateY(-50%);
  left: -0.45rem;
  opacity: 0;
  pointer-events: none;
}

.checkbox.v2 {
  position: relative;
  pointer-events: none;
}

.select_btn.selected .checkbox.v2 .check img {
  opacity: 1;
}

.checkbox.v2 .check {
  border: 0.1rem solid #707070;
}

.select_btn.selected .checkbox.v2 .check {
  border: 0.1rem solid #ffffff;
}

textarea.dashboard_input {
  height: 11rem;
  max-width: 51.4rem;
  width: 100%;
  margin: 0 auto;
  padding-top: 1.2rem;
}

textarea.dashboard_input::placeholder {
  font-size: 1.6rem;
}

.dashboard_form {
  display: flex;
}

/* ============= loading_wrapper =========== */
.spining_icon {
  width: 5.8rem;
  animation: spin 1s linear infinite;
}

/* define the spin keyframes */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.loading_wrapper {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin: 0 auto;
  white-space: nowrap;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.loading_wrapper span strong {
  color: #2a5efc;
  margin-left: 1rem;
}

.loading_area {
  position: fixed;
  height: 100%;
  width: 115.2rem;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.blue_card {
  width: 24.9rem;
  height: 23.7rem;
  background: #a9b6fc;
  display: block;
  border-radius: 2.1rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  filter: blur(0.24rem);
}

.loading_bg {
  width: 100%;
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
}

/* =============================== Dropdown Style Ends =============================== */

/* =================== User_dropdown =================== */
.d_search_icon {
  width: 2rem;
}

.user_icon {
  width: 4.6rem;
  height: 4.6rem;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10rem;
  position: relative;
}

.user_icon img {
  width: 2rem;
}

.dropdown-toggle::after {
  display: none;
}

.dash_polygon img {
  filter: var(--white_img);
}

.dash_polygon {
  width: 1.5rem;
  height: 1.5rem;
  background: #267eee;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10rem;
  box-shadow: var(--Dshadow);
  position: absolute;
  right: -0.4rem;
  bottom: -0.34rem;
}

.dash_polygon img {
  width: 0.7rem;
}

.d_search_box {
  margin-right: 2.6rem;
  position: relative;
}

.user_dropdown_list {
  width: 21.8rem;
  border-radius: 1.6rem;
  border: none;
  box-shadow: -0.6rem 1rem 1rem 0 rgba(0, 0, 0, 0.04);
  margin: 0;
  padding: 0.5rem 0 2rem;
  overflow: hidden;
}

.user_dropdown_list .dropdown-item {
  font-size: 1.4rem;
  padding: 1.2rem 2.4rem;
  border-top: 0.1rem solid #dedede;
  color: #000;
  line-height: 1.1;
}

.user_dropdown_list .button {
  height: 4rem;
  font-size: 1.4rem;
  width: 17.6rem;
  white-space: nowrap;
  margin: 0 auto;
  font-family: var(--secondaryFont);
  background: #267eee;
  margin-top: 0.5rem;
}

.user_dropdown_list .button:hover {
  background: #fff;
  color: #267eee;
  box-shadow: var(--Dshadow);
}

.user_dropdown_list .dropdown-item:first-child {
  border-top: none;
}

.dropdown-item:active {
  background: aqua;
}

/* ===== d_search_field ====== */
.d_search_field input {
  width: 34.5rem;
  height: 4rem;
  border: none;
  padding: 0 5rem;
  background: #d4e5fb;
  border-radius: 10rem;
}

.d_search_field input:focus {
  background: #ffffff;
}

.d_search_field .d_search_icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1.6rem;
}

.d_search_close {
  width: 2.5rem;
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  filter: brightness(0) saturate(100%) invert(48%) sepia(89%) saturate(4109%)
    hue-rotate(199deg) brightness(99%) contrast(89%);
  cursor: pointer;
}

.d_search_dropdown {
  padding: 1.2rem 1.6rem;
  background: #267eee;
  border: none;
  right: 0 !important;
  left: auto !important;
  width: 0;
  overflow: hidden;
  transition: 0.35s ease;
  top: 50% !important;
  opacity: 0;
  transform: translate(0, -50%) !important;
  display: block !important;
  pointer-events: none;
  border-radius: 0;
}

.d_search_field {
  position: relative;
}

.d_search_field input::placeholder,
.d_search_field input {
  color: #3c4148;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
}

.d_search_dropdown.show {
  width: 37.5rem;
  opacity: 1;
  pointer-events: all;
}

/* ======== site_header.v2 ======== */
.site_header.v2 {
  height: 6.5rem;
  background: #5454c8;
}

.site_header.v2 .logo img {
  width: 13.5rem;
}

/* ============== trier_box ============== */
.trier_box {
  height: 3rem;
  width: 9rem !important;
  color: #2f2f2f;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  border: 0.1rem solid #267eee;
  border-radius: 0.5rem;
  background: transparent;
}

.trier_box_Wrap .user_dropdown_list {
  padding: 0.5rem 0 0.5rem;
}

.result_top {
  padding-bottom: 2rem;
}

span.d_num {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10rem;
  background: #000000;
  color: #fff;
  font-size: 1.4rem;
  margin-right: 1.6rem;
}

.d_num_wrap {
  font-size: 2rem;
}

/* =================== collapse_wrap =================== */
.collapse_wrap .button {
  background: #267eee;
  font-size: 1.4rem;
  height: 3.2rem;
  padding: 0 2rem 0 4rem;
  gap: 1rem;
}

.collapse_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-left: 2rem;
}

.collapse_wrap {
  padding: 1.4rem 1.4rem 1.4rem 2rem;
  background: #ffffff;
  border-radius: 2rem;
  border: 0.1rem solid #377deb;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.big_dot {
  width: 1.3rem;
  height: 1.3rem;
  background: #fff;
  border-radius: 10rem;
}

.collapse_content ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-top: 1rem;
}

.collapse_content ul li {
  display: grid;
  padding: 1rem 1rem 1rem 2rem;
}

.collapse_content ul li .span1 {
  color: #377deb;
  font-size: 1.4rem;
}

.collapse_content ul li .span2 {
  font-size: 1.6rem;
}

.collapse_content ul li .span2 {
  font-size: 1.5rem;
}

.collapse_btn_1 {
  position: relative;
}

.plus_minus2 {
  height: 1.3rem;
  width: 1.3rem;
  position: absolute;
  left: -2.2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.plus_minus2 .plus {
  height: 0.1rem;
  width: 1.3rem;
  background: #000000;
  content: "";
  position: absolute;
  display: block;
}

.plus_minus2 .minus {
  height: 1.3rem;
  width: 0.1rem;
  background: #000000;
  content: "";
  position: absolute;
  display: block;
  transition: 0.35s ease;
}

.collapse_btn:not(.collapsed) .plus_minus2 .minus {
  transform: rotate(90deg);
}

.collapse_wrap .collapse {
  max-height: 0;
  transition: max-height 0.5s ease;
  display: block !important;
}

.collapse_wrap .collapse.show {
  max-height: 100rem;
}

.result_percentage span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.1rem;
}

.result_percentage {
  position: relative;
}

.result_percentage img {
  width: 3rem;
}

.result_percentage span sub {
  bottom: 0;
  font-size: 0.7rem;
}

.user_icon {
  width: 3.6rem;
  height: 3.6rem;
}

.user_icon > img {
  width: 1.6rem;
}

.search_btn > .d_search_icon {
  width: 1.6rem;
}

/* ============= CreateTemplateModal ============= */
.CreationTemplate_modal .modal-header {
  flex-direction: column;
  border-bottom: 0;
  padding-top: 0;
}

.CreationTemplate_modal .modal-content {
  padding: 5rem 10rem;
  border-radius: 2rem;
  border: none;
}

.CreationTemplate_modal .modal-dialog {
  max-width: 90.2rem;
  margin: 2rem auto;
}

.create_template_form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem 3.5rem;
}

.CreationTemplate_modal .modal-body {
  margin: 0;
  padding: 0;
  border-top: none;
}

.create_template_form label {
  font-size: 1.6rem;
  color: #8a94a7;
  padding-bottom: 1.2rem;
  line-height: 1;
}

.create_template_form .form_control {
  height: 4.5rem;
  padding: 0 2rem;
}

.create_template_form .full_width {
  grid-column: 1 / -1;
}

.append_div_btn {
  height: 4.5rem;
  width: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.6rem;
  border: 0.1rem solid #cccccc;
  transition: 0.25s ease;
}

.append_div_btn img {
  width: 1.3rem;
}

.append_div {
  display: grid;
  grid-template-columns: 1fr 0fr;
  align-items: end;
  gap: 1rem;
}

.append_div_btn:hover {
  background: #f1f1f1;
}

.CreationTemplate_modal .close {
  font-size: 3rem;
  position: absolute;
  right: 2rem;
  top: 2rem;
}

/* ================== Create Template =================== */
.form_group_inner span {
  color: #8a94a7;
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.form_group_inner {
  position: relative;
}

.form_group_inner .form_control {
  padding-left: 13rem;
}

.result_checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}

.result_checkboxes .checkbox {
  color: #8a94a7;
}

.result_checkboxes .check {
  display: flex;
  align-items: center;
  padding-top: 0.35rem;
}

.result_checkboxes .check img {
  opacity: 0;
}

.result_checkboxes .checkbox.active .check img {
  opacity: 1;
}

.create_template_form .form_control::placeholder,
.create_template_form .form_control {
  color: #000000;
}

.CreationTemplate_modal .modal-body .button {
  height: 4.5rem;
  padding: 0 4.5rem;
  font-size: 1.6rem;
  margin-top: 4.5rem;
}

.append_div_list {
  display: grid;
  gap: 1rem;
}

/* ============== login_dashboard ============== */
.CreationTemplate_modal .login_dashboard {
  max-width: 50.5rem;
}

.login_dashboard .modal-content {
  padding: 5rem 6.5rem 3rem 6.5rem;
}

.login_dashboard_bottom a {
  color: #267eee;
}

.login_dashboard_bottom a:hover {
  color: #000000;
}

.CreationTemplateThree .modal-body .button {
  margin-top: 2.5rem;
}

.login_dashboard .modal-header h2 {
  line-height: 1;
  padding-top: 0;
  margin-top: 0;
}

.CreationTemplate_modal .modal-header p {
  color: #267eee;
}

/* =========== mesInformation_area =========== */
.mesInformation_area {
  padding: 10.7rem 0 12.8rem;
}

.info_tab .nav_link {
  padding: 1.2rem 4rem 1.2rem 3.7rem;
  width: 100%;
  border-radius: 10rem 0 0 10rem;
  background: transparent;
  color: #000;
  font-weight: 400;
  font-size: 1.5rem;
  display: flex;
  justify-content: space-between;
}

.info_tab {
  padding: 2.3rem 0 5rem 1.5rem;
  background: #deeaf7;
  border-bottom-left-radius: 2rem;
  border-top-left-radius: 2rem;
}

.info_tab .nav_link.active {
  background: #fff;
  color: #267eee;
}

.info_tab_notif {
  width: 1.8rem;
  height: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10rem;
  background: #267eee;
  font-size: 1.2rem;
  color: #fff;
  font-weight: 500;
}

.mesInformation_area .row {
  --bs-gutter-x: 0;
}

.mesInformation_area .create_template_form {
  background: #fff;
  padding: 4.7rem 6.3rem 13.5rem 5rem;
  border: 0.1rem solid #deeaf7;
  border-bottom-left-radius: 2rem;
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
}

/* -------- Asib Khan --------- */
/* hero area  */
.as-pages {
  border-radius: 1.4rem;
  background: #00000026;
  width: 21.9rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.as-pages p {
  opacity: 1;
  color: #fff;
}

.as-pages p {
  font-size: 1.2rem;
}

.as-pages span {
  margin: 2rem;
}

.as-content h2 {
  font-size: 4.6rem;
  line-height: 5rem;
  margin-bottom: 2rem;
}

.as-content .as-date {
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  color: #1d1d1d;
  border-radius: 6px;
  background: #e4eaf2;
  padding: 0.25rem 1.2rem;
}

.as-news-img {
  position: relative;
}

.as-news-img::before {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  background: linear-gradient(83deg, #267eee 0%, #ffffff 100%);
  content: "";
  left: 0;
}

.as-pages img {
  width: 1.5rem;
  margin-right: 0.83rem;
}
.as-pages p {
  display: flex;
  align-items: center;
}

.as-news-content .text_xl {
  padding-bottom: 5rem;
}

.as-news-content {
  padding: 0 3rem;
}

.as-news-content .text_xl {
  padding-bottom: 5rem;
  padding-right: 5rem;
}

.as-news-content h1 {
  margin-bottom: 1.8rem;
}
.as-news-content h2 {
  margin-bottom: 1.8rem;
}
.as-news-content h3 {
  margin-bottom: 1.8rem;
}
.as-news-content h4 {
  margin-bottom: 1.8rem;
}
.as-news-content p {
  margin-bottom: 1.8rem;
}
.as-news-content ul {
  margin-bottom: 1.8rem;
}

.news-content-text {
  margin-bottom: 6.5rem;
}

.as-product-area {
  padding: 10rem 0 12.28rem;
}

.as-product-title h2 span {
  color: #267eee;
}

.swiper-slide {
  padding: 25rem 0 22rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
}

.as-hero-slider h2 {
  font-size: 4.6rem;
  line-height: 5rem;
}

.video-button img {
  width: 1rem;
  margin-right: 1rem;
}

.swiper-pagination-bullet {
  width: 5.3rem !important;
  height: 0.2rem !important;
  border-radius: 0.3rem !important;
  background: #ffffff !important;
  opacity: 1 !important;
  margin: 0 0.8rem !important;
}

.swiper-pagination-bullet-active {
  height: 0.5rem !important;
}

.as-arrow {
  position: absolute;
  width: 3.6rem;
  height: 3.6rem;
  background: #000000;
  z-index: 999999;
  text-align: center;
  border-radius: 50rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 4rem;
  top: 50%;
  transform: translateY(-50%);
}

.swiper-button-ne {
  right: 0;
}

.swiper-button-pr {
  left: 0;
}

.article_row {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 2rem;
}
.article_img {
  position: relative;
}
.article_item {
  border-radius: 1.6rem;
  overflow: hidden;
  transition: 0.25s ease-out;
  background: #fff;
}
.article_info {
  border-bottom-left-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
  display: grid;
  align-content: space-between;
}
.article_info_top {
  padding: 2.5rem 3rem 0 3rem;
}
.article_tags {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 0 1.2rem;
}
.article_tags a {
  height: 2.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e4eaf2;
  padding: 0 1.2rem;
  border-radius: 0.6rem;
}
.article_bottom {
  padding: 1.8rem 3rem;
  border-top: 0.1rem solid #dedede;
}
.article_bottom .button {
  height: 4rem;
}

.article_area {
  padding: 10rem 0 26.5rem;
  background: url(/assets_home/img/product_bg.png) no-repeat scroll top left / cover;
  overflow: hidden;
}
.as-article-title h2 span {
  color: #267eee;
}

.article_item:hover {
  transform: translateY(-0.5rem);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 2rem 0.1rem;
}
.bottom-border {
  height: 0.9rem;
  background: #267eee;
  background: linear-gradient(-67deg, #267eee 0%, #0950c4 100%);
}

.as-hero-slider p {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}
.as-hero-slider p:before {
  position: absolute;
  left: 0;
  width: 110%;
  height: 0.4rem;
  content: "";
  bottom: -0.8rem;
  background: #267eee;
}
.article_info_top h5 {
  font-size: 1.89rem;
}

.article_info_top {
  height: 27rem;
}
.article_info_top p {
  height: 13rem;
  overflow: auto;
}
.article_info_top h5 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-bottom: 0;
  margin-bottom: 1.5rem;
}

/* ✅ Scrollbar for Chrome, Edge, Safari */
.article_info_top p::-webkit-scrollbar {
  width: 0.8rem; /* width of scrollbar */
  height: 0.8rem; /* height for horizontal scrollbar */
}

.article_info_top p::-webkit-scrollbar-track {
  background: #f0f0f0; /* track color */
  border-radius: 1rem;
}

.article_info_top p::-webkit-scrollbar-thumb {
  background: #999; /* scrollbar thumb color */
  border-radius: 1rem;
}

.article_info_top p::-webkit-scrollbar-thumb:hover {
  background: #666; /* color when hovered */
}

/* ✅ Firefox scrollbar */
* {
  scrollbar-width: thin; /* “auto” or “thin” */
  scrollbar-color: #999 #f0f0f0; /* thumb color, track color */
}

/* =============== Result area =============== */
.collapse_wrappers_content {
  background: #fff;
  padding: 4rem 2.5rem 5rem 2.5rem;
  border: 0.1rem solid #deeaf7;
  border-bottom-left-radius: 2rem;
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
}

.collapse_wrap.v2 .Result_notif p {
  color: #797979;
  font-size: 1.6rem;
  font-weight: 500;
}

.collapse_wrap.v2 .Result_notif span {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #deeaf7;
  border-radius: 10rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #267eee;
}

.collapse_wrap.v2 .button {
  width: 9rem;
  padding: 0 1rem;
}

.collapse_wrap.v2 .button:hover {
  background: #1053a7;
}

.collapse_wrap.v2 .collapse_content ul {
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 2rem;
}

.collapse_wrap.v2 .collapse_content ul li .span2 {
  font-size: 1.4rem;
}

.collapse_wrap.v2 .collapse_content ul li .span1 {
  line-height: 1.25;
}

.collapse_wrap.v2 .pen_icon {
  width: 2rem;
}

.custom_accordion_content {
  max-height: 0;
  transition: max-height 0.8s ease;
  overflow: hidden;
}

.custom_accordion_item.active .custom_accordion_content {
  max-height: 100rem;
}

.custom_accordion_item:not(.active) .plus_minus .minus {
  transform: rotate(180deg);
}

/* ================== hero_area.v3 ================== */
.img_56_wrap img {
  width: 13.3rem;
}

.img_56_wrap span {
  font-size: 2.8rem;
  color: #fff;
  padding: 1rem 0 1.6rem;
}

.img_56_wrap {
  display: grid;
  padding-bottom: 7rem;
}

.img_56_wrap p {
  font-size: 1.4rem;
  line-height: 1.35;
}

.hero_area.v3 {
  min-height: 100vh;
  align-items: center;
  display: flex;
  padding: 0;
  padding-top: 4rem;
  padding-bottom: 4.5rem;
}

.hero_area.v3 h1 {
  font-size: 4.6rem;
  line-height: 6rem;
}

.hero_area.v3 .content > p {
  font-size: 1.8rem;
  line-height: 1;
  padding: 1.4rem 0 2.5rem;
}

.metropolitan_slider {
  height: auto;
  display: flex;
}

.metropolitan_slider .swiper-slide {
  padding: 0;
}

.hero_v3_right {
  padding-top: 3rem;
}

.metropolitan_slider img {
  height: 48rem;
  object-fit: cover;
}

/* .swiper-pagination.v2 */
.swiper-pagination.v2 .swiper-pagination-bullet {
  width: 0.6rem;
  height: 0.6rem;
  background: #267eee;
  margin: 0 !important;
  transition: 0.25s ease;
  border-radius: 10rem;
}

.swiper-pagination.v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.swiper-pagination.v2 .swiper-pagination-bullet-active {
  width: 1rem;
  height: 1rem;
  background: #fff;
}

/* ============= product_area v3 ================ */
.product_area.v3 {
  padding-bottom: 10rem;
  background: #d9e6f2;
}

.product_area.v3 .container > .button {
  margin-bottom: 16rem;
}

.product_area.v3 .container > p {
  text-align: center;
  line-height: 1.8rem;
  font-weight: 400;
}

/* ============= Metro_logos_area ================ */
.metro_logos img {
  width: 6.7rem;
}

.metro_logos {
  gap: 1.6rem;
}

.metros_content {
  padding: 4.5rem 5.5rem 6.5rem 5.5rem;
  background: #fff;
  text-align: center;
  margin: 6.5rem 0;
}

.metros_content h2 {
  text-align: center;
}

.metros_content p {
  font-size: 1.6rem;
  line-height: 2.4rem;
}

/* ================= Contact area v2 ================= */
.Contact_img {
  width: 56.1rem;
  margin-right: -11rem;
  margin-top: -21.5rem;
}

.sticky_btns a img {
  width: 2.5rem;
}

.sticky_btns {
  display: grid;
  gap: 2.4rem;
  padding: 2.5rem;
  background: #267eee;
  width: 31rem;
  border-radius: 2rem;
  box-shadow: -1rem 1rem 2rem 0 rgba(0, 0, 0, 0.16);
  position: fixed;
  right: -24rem;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.35s ease;
  z-index: 99999;
}

.sticky_btns:hover {
  right: 1rem;
}

.sticky_btns a:hover {
  opacity: 0.75;
}

/* =========== avancement_area ========== */
.avancement_area {
  padding: 8rem 0 11.5rem;
}

.avancement_56_img {
  width: 18.7rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.avancement_step_icon img {
  width: 2.8rem;
}

.avancement_step_icon {
  width: 7rem;
  height: 7rem;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10rem;
  margin: 0 auto;
  border: 0.3rem solid #fff;
  position: relative;
  z-index: 3;
}

.avancement_step_icon img {
  filter: brightness(0) saturate(100%) invert(49%) sepia(47%) saturate(5875%)
    hue-rotate(199deg) brightness(96%) contrast(94%);
}

.avancement_steps {
  display: grid;
  max-width: 107.5rem;
  margin: 0 auto;
  align-items: center;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.avancement_step p {
  font-size: 1.8rem;
  padding-top: 1.5rem;
}

.avancement_step.active .avancement_step_icon {
  background: #267eee;
  border-color: #3374e4;
}

.avancement_step.active .avancement_step_icon img {
  filter: var(--white_img);
}

.avancement_step.active .avancement_step_icon_Wrap:before {
  background: linear-gradient(
    180deg,
    rgba(193, 217, 244, 1) 0%,
    rgba(189, 232, 240, 1) 100%
  );
  width: 8.2rem;
  height: 8.2rem;
  border-radius: 10rem;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  content: "";
  z-index: 1;
}

.avancement_area .section_top h2 {
  color: #000000;
  font-size: 3.8rem;
}

.avancement_area .section_top {
  margin-bottom: 6.5rem;
  position: relative;
}

.avancement_step_icon_Wrap {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.avancement_step {
  position: relative;
}

/* =============== apartments_area ================ */
.apartments_area {
  padding: 7rem 0;
}

/* ========== apartments_area ========= */
.apartments_accordion .collapse_content ul {
  display: flex;
  flex-direction: column;
  padding: 0rem 7rem 3rem 3.5rem;
  margin: 0;
}

.apartments_accordion .apartments_faq_left {
  white-space: nowrap;
  display: flex;
  align-items: center;
  position: relative;
}

.apartments_accordion .collapse_content ul li {
  border-bottom: 0.1rem solid #c2d8f9;
  padding-left: 0;
  padding-right: initial;
}

.apartments_accordion .collapse_content ul li:last-child {
  border-bottom: 0;
}

.apartments_accordion .blue_cube {
  width: 0.7rem;
  height: 0.7rem;
  display: block;
  background: #267eee;
  position: absolute;
  left: -2.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.apartments_accordion .apartments_faq_left p {
  color: #5a6671;
}

.apartments_accordion .apartments_faq_right a {
  gap: 1.4rem;
  padding: 0 2.4rem;
  height: 4rem;
  font-size: 1.6rem;
}

.apartments_accordion .collapse_btn_1 .text_lg {
  color: #5a6671;
}

.apartments_accordion .arrow_down_icon {
  width: 2rem;
  transition: 0.35s ease;
}

.apartments_accordion .custom_accordion_btn {
  padding: 2.5rem 4.3rem 2.5rem 0;
}

.apartments_accordion .custom_accordion_item.v2 {
  border-bottom: 0.1rem solid #377deb;
}

.apartments_accordion .custom_accordion_item.v2:first-child {
  border-top: 0.1rem solid #377deb;
}

.apartments_accordion .apartments_faq_left span.d-block.pl_20 {
  padding: 0;
}

.apartments_accordion .collapse_btn_1 .text_xl {
  text-transform: uppercase;
}

.apartments_accordion .custom_accordion_item.v2.active .arrow_down_icon {
  transform: rotate(180deg);
}

.step_line {
  width: 26rem;
  height: 0.35rem;
  background: #c2cfe5;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 6.8rem;
  z-index: 1;
}

.avancement_step.completed .step_line {
  background: #267eee;
  z-index: 2;
}

.reciever-icon {
  width: 2rem;
}

.phone-call {
  width: 2.1rem;
}

.tik-bag {
  width: 2.6rem;
}

.form_options button {
  height: 7rem;
  width: 100%;
  background: #eff4fa;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-radius: 1rem;
  transition: 0.25s ease;
  border: 0.1rem solid #eff4fa;
}

.form_options button span {
  color: #000 !important;
  font-weight: 500 !important;
  font-size: 1.4rem;
  transition: 0.25s ease;
  margin: 0;
}

.form_options button.active,
.form_options button:hover {
  background: #fff;
  border-color: #377deb;
}

.form_options button.active span,
.form_options button:hover span {
  color: #267eee !important;
}

.form_options button.active img,
.form_options button:hover img {
  filter: brightness(0) saturate(100%) invert(40%) sepia(75%) saturate(1177%)
    hue-rotate(192deg) brightness(92%) contrast(103%);
}

.form_options button img {
  transition: 0.25s ease;
}

.form_options .row {
  --bs-gutter-x: 3rem;
  --bs-gutter-y: 1rem;
}

/* ====================== filter_form_wrap ==================== */
.filter_form_wrap {
  width: 100%;
  position: relative;
}

.filter_form {
  display: flex;
  align-items: center;
  position: relative;
}

.region_input {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 2rem;
  border: 0.1rem solid #ccc;
  font-size: 0.95rem;
  cursor: pointer;
}

.dropdown_box {
  position: absolute;
  transform: translateY(3rem);
  left: 0;
  width: 52rem;
  background: #fff;
  border: 0.1rem solid #ffffff;
  border-radius: 3rem;
  box-shadow: 0 0.3rem 0.8rem rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  z-index: 10;
}

.dropdown_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  padding-bottom: 1rem;
}

.close_btn {
  background: none;
  border: none;
  font-size: 3rem;
  cursor: pointer;
}

.dropdown_search input {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 0.1rem solid #707070;
  border-radius: 0.6rem;
  color: #707070;
  font-size: 1.6rem;
  font-weight: 400;
  padding: 0 3rem;
  height: 4.6rem;
}

.dropdown_search input::placeholder {
  color: #000000;
  font-size: 1.6rem;
  font-weight: 400;
  text-transform: capitalize;
}

.region_list {
  list-style: none;
  padding: 3.5rem;
  background: var(--white);
  border-radius: 1.6rem;
  box-shadow: 0 0.3rem 0.6rem 0 rgba(0, 0, 0, 0.16);
  margin: 0;
  display: none;
}

.region_list li {
  padding: 1.4rem 0.4rem;
  display: flex;
  align-items: center;
  gap: 1.22rem;
  cursor: pointer;
  font-size: 1.6rem;
  max-height: 15rem;
  overflow-y: auto;
  border-bottom: 0.1rem solid #eaeaea;
}

.region_list ul {
  max-height: 16.5rem;
  overflow: auto;
}

.region_list li:hover {
  background: #f7f7f7;
}

.dropdown_footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.3rem 4rem;
  border-top: 0.1rem solid #cccccc;
}

.apply_btn {
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 10rem;
  padding: 0 1.4rem;
  width: 15rem;
  height: 4rem;
  font-size: 1.6rem;
  cursor: pointer;
  font-weight: 600;
  font-family: var(--secondaryFont);
  transition: 0.35s ease;
}

.apply_btn:hover {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 0.3rem 0.6rem 0 rgba(0, 0, 0, 0.16);
}

/* ========= dropdowns ======= */
.dropdown_box_top {
  padding: 3.5rem;
}

.dropdown_search span {
  color: #8a94a7;
  padding-bottom: 0.45rem;
  display: block;
}

.dropdown_inner {
  min-height: 52rem;
  display: grid;
  align-content: space-between;
}

.location_icon {
  width: 1.5rem;
}

.region_list p {
  color: #8a94a7;
  padding-bottom: 1rem;
}

/* =========== beins =========== */
.beins {
  padding: 2.5rem 0 2.5rem;
}

.beins ul li {
  height: 4.6rem;
  width: 4.6rem;
  border: 0.1rem solid #cccccc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  cursor: pointer;
}

.beins ul li p {
  position: absolute;
  bottom: -3rem;
  font-size: 1.3rem;
  color: #8a94a7;
}

.beins ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 5rem 0;
}

.beins ul li {
  margin: 0 auto;
}

.beins ul li img {
  width: 2.5rem;
}

.beins ul li img.bein1 {
  width: 2rem;
}

.beins ul li.selected p {
  color: #000;
}

.beins ul li.selected,
.beins ul li:hover {
  background: #267eee !important;
}

.beins ul li.selected img,
.beins ul li:hover img {
  filter: var(--white_img);
}

/* ============ Surfaces_annexes ============ */
.Surfaces_annexes .result_checkboxes .check img {
  width: 2.5rem;
  margin-left: -0.32rem
}

.Surfaces_annexes .result_checkboxes {
  grid-template-columns: 1fr 1fr;
}

.Surfaces_annexes .result_checkboxes .check {
  border-color: #707070;
}

.Surfaces_annexes .result_checkboxes .checkbox.active {
  color: #000000;
}

.Surfaces_annexes .result_checkboxes .checkbox.active .check {
  background: transparent;
}

.Surfaces_annexes .result_checkboxes .checkbox.active .check img {
  filter: brightness(0) saturate(100%) invert(46%) sepia(11%) saturate(6465%)
    hue-rotate(195deg) brightness(93%) contrast(98%);
}


/* =============== fillter_num ================= */
.dropdown_box.right {
    right: 0;
    left: auto;
}

.fillter_num .dropdown_inner {
    min-height: 27.6rem;
}

.fillter_num .dropdown_inner .form_group label {
    font-size: 1.6rem;
    color: #8A94A7;
    padding-bottom: 0.8rem;
}



.custom_accordion_content.collapse:not(.show) {
    display: block;
}


.icon_14 {
    width: 1.4rem;
}