/*=====Reset CSS======*/
*,
::after,
::before {
  box-sizing: border-box;
}

article,
aside,
canvas,
figure,
figcaption,
footer,
header,
nav,
section,
audio,
video,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol {
  margin: 0;
  padding: 0;
  border: 0;
}

a,
button,
input,
input[type="button"],
input[type="submit"],
select,
.btn,
textarea {
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  text-decoration: none;
  font-style: normal;
}

a:focus,
button:focus,
input:focus,
input[type="button"]:focus,
input[type="submit"]:focus,
select:focus,
.btn:focus,
textarea:focus,
.bootstrap-select .dropdown-toggle:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

img {
  max-width: 100%;
  height: auto;
}

a,
label,
span {
  display: inline-block;
  vertical-align: middle;
  vertical-align: 0;
}

figure {
  -webkit-transition: all ease 0.4s;
  -o-transition: all ease 0.4s;
  transition: all ease 0.4s;
  margin: 0;
  font-size: 0;
  line-height: 100%;
}

figure img {
  max-width: 100%;
}

ul,
ol {
  list-style: none;
}

/* clears the ‘X’ from Internet Explorer */
input[type=search]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

/* clears the ‘X’ from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
  -webkit-appearance: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}
html{
  scroll-behavior: smooth;
  scroll-padding: 80px;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 28px;
  color: #434343;
  background-color: #fff;
  position: relative;
  font-size: 16px;
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 15px;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--theme-color);
}

.svg_container {
  display: none;
}

.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  width: 100%;
}

::-moz-selection {
  background-color: var(--theme-color);
  color: #fff;
}

::selection {
  background-color: var(--theme-color);
  color: #fff;
}

/*=====Reset CSS======*/

/*===== Global CSS ======*/
:root {
  --theme-color: #DE6623;
}

h2 {
  font-size: 50px;
  font-weight: 700;
  line-height: 130%;
  text-transform: uppercase;
  color: #131313;
}

h2 span {
  color: var(--theme-color);
}

h1 {
  color: #fff;
  font-size: 90px;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: 0%;
}

h1 span {
  color: var(--theme-color);
}

.glb_btn {
  min-width: 200px;
  height: 60px;
  padding: 10px 25px;
  border: 1px solid var(--theme-color);
  border-radius: 10px;
  color: var(--theme-color);
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.glb_btn:hover {
  background-color: var(--theme-color);
  color: #fff;
}

.glb_btn.glb_btn_white {
  color: #fff;
  border-color: #fff;
}

.glb_btn.glb_btn_white:hover {
  background-color: #fff;
  color: var(--theme-color);
}

/*===== Global CSS ======*/

/***** header start *************/
header {
  position: fixed;
  width: 100%;
  z-index: 5;
  top: 0;
  left: 0;
  /* transition: 0.6s all ease-in-out; */
  padding: 18px 0px;
  /* background: transparent; */
  background: #fff;
}

/* sticky_header */
 .sticky_hdr header{
  filter: drop-shadow(0px 15px 25px rgba(0,76,102,0.15));
  -webkit-filter: drop-shadow(0px 15px 25px rgba(0,76,102,0.15));
  background: rgb(247, 247, 247);
} 



.navbar-brand {
  padding: 0px;
  font-weight: 700;
  font-size: 32px;
  color: #131313;
}

.navbar-brand:hover {
  color: #131313;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 17px 0px;
}

.navbar-nav .nav-item {
  margin-right: 30px;
  position: relative;
}

.navbar-nav .nav-item a {

  position: relative;
}

.navbar-nav .nav-item a::after {
  content: '';
  position: absolute;
  width: 0px;
  height: 2px;
  border-radius: 5px;
  background-color: var(--theme-color);
  display: block;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: 15px;
  transition: all 400ms ease-in-out;
}

.navbar-nav .nav-item a:hover::after {
  width: 100%;
}


.navbar-nav .nav-item a.active::after{
  width: 100%;
}



.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-nav .nav-link.active {
  color: var(--theme-color);
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: #131313;
  font-size: 14px;
  text-transform: uppercase;
}

.navbar-nav .nav-item:hover .nav-link {
  color: var(--theme-color);
}

.nav_right {
  position: relative;
}

.search {
  margin-right: 30px;
}

.search_form {
  position: absolute;
  top: 125%;
  right: 100px;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: all 400ms ease-in-out;
}

.search+.search_form.frm_active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.search_form input {
  width: 300px;
  height: 50px;
  padding: 10px 60px 10px 20px;
  border-radius: 40px;
  border: 1px solid #333333;
}

.search_form input::placeholder {
  font-weight: 400;
  font-size: 18px;
  color: #131313;
}

input:focus {
  border-color: var(--theme-color);
}

.search_form button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  padding: 0px;
  border: 0px;
  background: var(--theme-color);
  color: #fff;
  font-size: 20px;
  padding: 5px 10px;
  border-radius: 40px;
}

.hedr_cont_btn {
  min-width: 143px;
  height: 45px;
  border: 1px solid var(--theme-color);
  background-color: var(--theme-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 5px;
}

.hedr_cont_btn:hover {
  background-color: transparent;
  color: var(--theme-color);
}

.navbar-toggler {
  padding: 0;
  border: 0;
  outline: 0;
}

.line {
  fill: none;
  stroke: black;
  stroke-width: 6;
  stroke-linecap: round;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}

.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}

.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.navbar:has(.navbar-collapse.collapsing),
.navbar:has(.navbar-collapse.show) {
  background: #000;
}

.navbar:has(.navbar-collapse.collapsing) .nav-link,
.navbar:has(.navbar-collapse.show) .nav-link,
.navbar:has(.navbar-collapse.collapsing) .navbar-brand,
.navbar:has(.navbar-collapse.show) .navbar-brand {
  color: #fff;
}

.navbar:has(.navbar-collapse.collapsing) .line,
.navbar:has(.navbar-collapse.show) .line {
  stroke: #fff;
}

/***** header end *************/


/* banner start */
.home_bnr {
  position: relative;
  margin-bottom: 130px;
  padding: 170px 0 420px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  height: 100vh;
  margin-top: 87px;
}

.home_bnr>img {
  width: 100%;
}

/* .absolute_text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
} */

/* .home_bnr .bnr_title {
  padding: 155px 0px 0px;
} */

.home_bnr .bnr_title h1 {
  font-size: 100px;
  font-family: "Poppins", sans-serif;
  color: #000;
  text-transform: uppercase;
  text-align: center;
}

.home_bnr .bnr_title h1 span {
  color: var(--theme-color);
  display: block;
}

.scroll_down {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 180px;
  animation: flote 2.5s linear infinite;
}

@keyframes flote {
  0% {
    bottom: 140px;
  }

  50% {
    bottom: 180px;
  }

  100% {
    bottom: 140px;
  }
}

/* banner end */

/* buy section start */
.buy {
  margin-bottom: 130px;
  overflow-x: hidden;
  position: relative;
}

.buy .row {
  align-items: center;
}



.buy_left h2 {
  font-family: "Poppins", sans-serif;
  font-size: 51px;
  color: #131313;
  margin-bottom: 20px;
}

.buy_left p {
  font-size: 17px;
  line-height: 30px;
  margin-bottom: 30px;
  max-width: 500px;
  font-family: "Poppins", sans-serif;
}

.buy_right {
  margin: 0px -145px 0px 105px;
}

.buy_right img {
  width: 100%;
}

.indicator {
  position: relative;
}

/* .section_indicator {
  position: absolute;
  transform: rotate(-90deg);
  left: 0px;
  top: 50%;
} */

.section_indicator h6 {
  font-size: 13px;
  text-transform: uppercase;
  color: #6A6A6A;
  font-family: "Poppins", sans-serif;
  position: relative;
  display: inline-block;
}

.section_indicator h6::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 1px;
  background-color: #6A6A6A;
  top: 0;
  bottom: 0;
  margin-top: 8px;
  margin-left: 24px;
}

.section_indicator {
  display: inline-block;
  transform: rotate(-90deg);
  transform-origin: left;
  bottom: 0;
  position: absolute;
  margin-bottom: 90px;
  margin-left: -55px;
}

.recent_post .section_indicator {
  transform: rotate(90deg);
  top: 0;
  position: absolute;
  margin-bottom: 0;
  margin-left: 0;
  right: 0;
  margin-right: -170px;
  margin-top: 27%;
  bottom: unset;
}

.explore .section_indicator {
  display: inline-block;
  transform: rotate(90deg);
  transform-origin: left;
  top: 0;
  position: absolute;
  margin-bottom: 0;
  margin-left: 0;
  right: 0;
  margin-right: -115px;
  margin-top: 48%;
  bottom: unset;
}

.discover .section_indicator {
  bottom: 0;
  margin-bottom: 410px;
  margin-left: -55px;
}

.what_client_say .section_indicator {
  display: inline-block;
  transform: rotate(90deg);
  transform-origin: left;
  top: 0;
  position: absolute;
  margin-bottom: 0;
  margin-left: 0;
  right: 0;
  margin-right: -210px;
  margin-top: 15%;
  bottom: unset;
}

.explore .section_indicator h6::after {
  top: 0;
  bottom: 0;
  margin-top: 8px;
  margin-left: 20px;
}

/* buy section end */

/* explore section start */
.explore {
  margin-bottom: 100px;
}

.explore_iner h2 {
  text-align: center;
  margin-bottom: 60px;
  font-family: "Poppins", sans-serif;
}

.explore_box {
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}

.inside_box {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  text-align: center;
}

.inside_box h4 {
  font-size: 45px;
  font-family: "Poppins", sans-serif;
  color: #fff;
  margin-bottom: 50px;
}

/* explore section end */


/* profile section start */
.profile {
  padding: 130px 0px;
  background-color: #F7F7F7;
  /* background-color: #ddcaca; */
  overflow-x: hidden;
}

.profile .row {
  align-items: center;
}

.profile_txt h2 {
  font-family: "Poppins", sans-serif;
  font-size: 49px;
  line-height: 65px;
  text-transform: uppercase;
  max-width: 580px;
  margin-bottom: 20px;
}

.profile_txt h2 span:nth-child(2) {
  display: inline;
}

.profile_txt p {
  line-height: 32px;
  margin-bottom: 50px;
}

.profile_txt h4 {
  font-size: 24px;
  margin-bottom: 14px;
  letter-spacing: 1px;
  font-weight: 700;
}

.profile_txt h5 {
  font-size: 14px;
  color: var(--theme-color);
}

.profile_img {
  margin-right: -120px;
  margin-left: 100px;
  position: relative;
  z-index: 1;
}

.profile_img::after {
  content: '';
  position: absolute;
  z-index: -1;
  background-color: #fff;
  top: 67px;
  left: -30px;
  bottom: 0px;
  right: -10%;
  border-radius: 30px;
  filter: drop-shadow(0px 18px 50px rgba(0, 0, 0, 0.15));
}

.profile_img img {
  width: 100%;
}

/* profile section end */


/* what cllient say start */
.what_client_say {
  padding-top: 120px;
  padding-bottom: 70px;
  overflow-x: hidden;
}

.what_client_say h2 {
  font-family: "Poppins", sans-serif;
  color: #131313;
  line-height: 65px;
  text-align: center;
  margin-bottom: 0px;
  text-transform: uppercase;
}


.review_content {
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid transparent;
  filter: drop-shadow(0px 6px 9px rgba(0, 0, 0, 0.1));
  -webkit-filter: drop-shadow(0px 6px 9px rgba(0, 0, 0, 0.1));
  transition: all 300ms ease;
  position: relative;
  height: 100%;
  z-index: 5;
}

.review_txt::after {
  content: "";
  position: absolute;
  width: 115px;
  height: 85px;
  background: url(../images/dot.png) left top no-repeat;
  top: 0;
  right: 0;
  margin-top: 20px;
  margin-right: 10px;
}

.review_content .review_txt {
  padding: 52px 30px;
  /* border-bottom: 1px solid #d9d9d9; */
}

.review_blk {
  position: relative;
  z-index: 1;
}

.reviewer_dtls {
  display: flex;
  gap: 15px;
  margin-top: 60px;
  align-items: center;
  justify-content: left;
  z-index: 5;
  position: relative;
}

.reviewer_name h5 {
  font-size: 27px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  padding-bottom: 7px;
  color: #000;
  flex: 0 0 auto;
}

.reviewer_name span {
  display: block;
  color: #464646;
  font-size: 14px;
}

.review_content .review_txt p {
  color: #434343;
  font-family: "Poppins", sans-serif;
  line-height: 32px;
  font-size: 18px;
}

.slide_outer {
  /* width: 350px; */
  width: 483px;
  padding: 0 15px;
  height: auto;

}

.slick-track {
  display: flex;
  direction: ltr;
}

.review_slider .slick-dots {
  bottom: 40px;
}

.review_slider .slick-list {
  width: 100vw;
  padding-bottom: 120px;
  padding-top: 55px;
}

.reviwtxtarea {
  text-align: left;
}

.stararea {
  padding-bottom: 38px;
  text-align: -webkit-left;
}

.discover_head .glb_btn {
  min-width: 300px;
}

.orgboxarea {
  width: 80px;
  height: 80px;
  border-radius: 50px;
  background-color: #DE6623;
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  /* order: 1; */
  flex: 0 0 auto;
}

.review_slider .slick-dots li.slick-active button:before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #000;
  opacity: 1;
}

.review_slider .slick-dots li button:before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #000;
  opacity: .10;
}

.review_slider .slick-dots li button {
  width: auto;
  height: auto;
}

.review_slider.slick-dotted.slick-slider {
  margin-bottom: 0px;
}

/* what cllient say end */


/* disvover section start */
.discover {
  padding: 120px 0px 100px;
  background: #F7F7F7;
}

.discover_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 55px;
}

.discover_head h2 {
  font-family: "Poppins", sans-serif;
  line-height: 65px;
  max-width: 700px;
  text-transform: uppercase;
}

.discover_box {
  height: 400px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  margin-bottom: 29px;
}

.discover_box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.discover_box h3 {
  position: absolute;
  bottom: 30px;
  left: 30px;
  font-size: 28px;
  color: #fff;
  font-weight: 700;
  line-height: 38px;
}

/* disvover section end */

/* resent pssts start */
.recent_post {
  padding: 120px 0px 105px;
}

.recent_post h2 {
  font-family: "Poppins", sans-serif;
  line-height: 65px;
  text-align: center;
  max-width: 90%;
  margin: 0 auto 50px;
  text-transform: uppercase;
}

.post_img {
  /* height: 400px; */
  border-radius: 30px;
  overflow: hidden;
}

.post_img>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post_dtls {
  max-width: 430px;
  margin: 0 auto;
  padding: 40px 30px;
  border-radius: 26px;
  box-shadow: 0 4px 24px 0 rgba(128, 137, 147, 0.1);
  background-color: #fff;
  margin-top: -27px;
  position: relative;
}

.post_date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #6a6a6a;
  font-family: "Poppins", sans-serif;
  margin-bottom: 16px;
  font-weight: 500;
}

.post_dtls h5 {
  font-family: "Poppins", sans-serif;
  margin-bottom: 26px;
  color: #131313;
  font-size: 22px;
  font-weight: 600;
  line-height: 160%;
}

.post_dtls span {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #6a6a6a;
}


.lft_small_post {
  position: relative;
}

.lft_small_post .post_img {
  width: 380px;
  height: 280px;
}

.lft_small_post .post_dtls {
  padding: 35px 25px;
  max-width: 345px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0px;
  right: 0;
  border-radius: 30px;
}

.lft_small_post .post_date {
  font-size: 14px;
  margin-bottom: 20px;
}

.lft_small_post .post_date img {
  max-width: 20px;
  margin-right: 5px;
}

.lft_small_post .post_dtls h5 {
  font-size: 18px;
  margin-bottom: 18px;
}

.lft_small_post .post_dtls span {
  font-family: "Poppins", sans-serif;
  color: #a3a3a3;
}

.rt_post_wrp .lft_small_post:not(:last-child) {
  margin-bottom: 30px;
}

/* resent pssts end */

/* blog banner section start */
.blog_bnr {
  padding: 129px 0px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 87px;
}

.blog_innr span {
  min-width: 240px;
  padding: 10px 11px 10px 17px;
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.blog_innr h1 {
  font-weight: 600;
  color: #fff;
  font-size: 60px;
  margin-bottom: 35px;
  max-width: 718px;
}

.blog_innr p {
  font-size: 25px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
}

.review_slider_one {
  direction: rtl;
  z-index: 2;
}


/* blog banner section end */


/* blog content section start */
.blog_cont_wrp {
  padding: 80px 0px 60px;
}

.table_of_content {
  position: sticky;
  top: 110px;
}

.table_of_content .accordion-body {
  padding: 0px;
}

.table_of_content .accordion-body ul {
  position: relative;
}

.table_of_content .accordion-body ul::before {
  content: '';
  position: absolute;
  width: 2px;
  background: #a3a3a3;
  height: 100%;
  left: -2px;
  border-radius: 50px;
  top: 0;
}

.table_of_content .accordion-body ul li:not(:last-child) {
  margin-bottom: 30px;
}

.table_of_content .accordion-body ul li a {
  font-size: 14px;
  font-weight: 500;
  color: #6a6a6a;
  padding: 0px;
  background: transparent;
  border: 0px;
  padding-left: 15px;
  position: relative;
  transition: all 500ms linear;
}

/* .table_of_content .accordion-body ul li a.active {
  color: var(--theme-color);
} */

.table_of_content .accordion-body ul li a.active::after {
  content: '';
  position: absolute;
  width: 2px;
  background: var(--theme-color);
  height: 100%;
  left: -2px;
  border-radius: 50px;
  top: 0;
}

.table_of_content .accordion-item {
  border: 2px solid transparent;
  border-radius: 10px;
}

.table_of_content .accordion-item .accordion-button {
  padding: 0 0 20px;
  background-color: transparent;
  color: #131313;
  font-size: 20px;
  font-weight: 600;
  border: 0px;
  box-shadow: none;
}

.table_of_content .accordion-item .accordion-button:focus {
  box-shadow: none;
  border: none;
}

.table_of_content .accordion-item .accordion-button::after {
  background-image: none;
  content: '\f078';
  font-family: 'fontAwesome';
  font-size: 15px;
  color: rgb(179, 179, 179);
}

.main_content h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 43px;
  margin-bottom: 20px;
}

.main_content h3 {
  font-size: 24px;
  font-weight: 600;
  color: #131313;
  margin-bottom: 20px;
  line-height: 35px;
}

.main_content p {
  color: #494949;
  line-height: 27px;
}


.intro,
.content_div {
  margin-bottom: 40px;
}

.content_div .blg_img {
  padding-bottom: 20px;
}

.content_div .blg_img img {
  border-radius: 20px;
  overflow: hidden;
  display: block;
}

.list_cont {
  padding-top: 30px;
}

.list_cont h4 {
  font-size: 20px;
  line-height: 34px;
  color: #373737;
  padding-bottom: 20px;
  font-weight: 600;
}

.list_cont ul li {
  position: relative;
  color: #494949;
  line-height: 27px;
  padding-left: 30px;
}

.list_cont ul li::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #494949;
}

.list_cont ul li:not(:last-child) {
  margin-bottom: 16px;
}

.keep_learning {
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 24px 0 rgba(128, 137, 147, 0.1);
  background-color: #fff;
  margin-bottom: 40px;
}

.keep_learn_hdng {
  display: flex;
  justify-content: space-between;
  padding-bottom: 24px;
}

.keep_learn_img {
  flex: 0 0 auto;
  margin-left: 20px;
}

.keep_learn_hdng_txt h3 {
  margin-bottom: 10px;
}

.keep_learn_hdng_txt p {
  font-size: 14px;
  color: #6a6a6a;
  line-height: 21px;
}

.contact_frm input {
  width: 100%;
  height: 50px;
  padding: 13px 25px 13px;
  border-radius: 10px;
  border: solid 1px #d9d9d9;
  background-color: #fff;
  margin-bottom: 30px;
}

.contact_frm input:focus {
  border-color: var(--theme-color);
}

.contact_frm input::placeholder {
  color: #676767;
  font-size: 14px;
}

.contact_frm button {
  min-width: 139px;
  height: 44px;
  border-radius: 2px;
  box-shadow: 0 4px 24px 0 rgba(222, 102, 35, 0.1);
  background-color: var(--theme-color);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.contact_frm button:hover {
  background-color: transparent;
  color: var(--theme-color);
}

.resources {
  position: sticky;
  top: 110px;
}

.resources .accordion-item .accordion-header .accordion-button {
  /* padding: 14px 30px; */
  border-radius: 10px;
  background-color: var(--theme-color);
  border: 0px;
  box-shadow: none;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  justify-content: center;
}

/* .resources .collapse:not(.show) {
  display: block;
} */

.resources .accordion-header .accordion-button:focus {
  box-shadow: none;
}

.resources .accordion-item {
  border-radius: 13px;
  border: 2px solid transparent;
}

.resources .accordion-button::after {
  content: '\f078';
  background-image: none;
  width: auto;
  height: auto;
  font-size: 15px;
  font-family: 'fontAwesome';
  display: none;
  transform: rotate(270deg);
}

.resources .accordion-button:not(.collapsed):after {
  transform: rotate(-180deg);
}

.recent-post-anchor {
  text-align: center;
  padding-top: 45px;
}

.recent-post-anchor .glb_btn {
  min-width: 220px;
}

.resources .accordion-body {
  padding: 0px;
}

.resources_list li {
  padding: 30px 0px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.resources_list li a {
  font-weight: 600;
  font-size: 16px;
  color: #6a6a6a;
}

.resources_list li a.active {
  color: var(--theme-color);
}

.resources_list li a:hover {
  color: var(--theme-color);
}

.resources_list li::after {
  content: '';
  flex-shrink: 0;
  background-image: url(../images/arr_right.svg);
  margin-left: auto;
  width: 30px;
  height: 30px;
  background-size: 30px;
  background-repeat: no-repeat;
}

/* blog content section end */

/* footer start */
footer {
  background-color: #161616;
  padding: 100px 0px 50px;
}

.ftr_top {
  padding-bottom: 70px;
}

.flogo {
  margin-bottom: 30px;
}

.foot_desc p {
  font-size: 15px;
  line-height: 30px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 340px;
}

.foot_nav {
  margin-left: 72px;
}

.newsletter h2,
.foot_nav h2 {
  font-size: 25px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 30px;
}

.foot_nav ul li:not(:last-child) {
  padding-bottom: 30px;
}

.foot_nav ul li a {
  color: rgba(255, 255, 255, 0.6);
}

.foot_nav ul li a:hover {
  color: var(--theme-color);
}

.newsletter p {
  line-height: 26px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
}

.newsletter form {
  position: relative;
}

.newsletter input {
  width: 100%;
  padding: 20px 45px 20px 0px;
  background: transparent;
  color: #fff;
  border: 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.newsletter button img {
  max-width: 25px;
}

.ftr_btm {
  padding-top: 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.ftr_btm .coppy_right {
  color: #808080;
  font-size: 14px;
}

.media_link a img {
  max-width: 36px;
}

/* footer end */

/* 04-03-2024-About_Us PAGE */

section {
  position: relative;
}

.about_bnr {
  padding: 210px 0;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 87px;
}

.about_bnr h1 {
  text-align: center;
}

.agent_section {
  padding: 95px 0 110px;
}

.agent-left {
  max-width: 527px;
}

.agent-left h2 {
  padding-bottom: 12px;
}

.agent-rw:not(:last-child) {
  margin-bottom: 115px;
}

.agent-rw {
  position: relative;
}

.agent_section .agent-rw:nth-child(even) {
  flex-direction: row-reverse;
  padding: 115px 0 150px;
}


.agent_section .agent-rw:nth-child(even)::after {
  content: '';
  position: absolute;
  background: #f7f7f7;
  left: -50%;
  right: -50%;
  top: 0;
  bottom: 0;
  z-index: -1;
}

.agent-right {
  filter: drop-shadow(0px 20px 40px rgba(0, 0, 0, 0.2));
  -webkit-filter: drop-shadow(0px 20px 40px rgba(0, 0, 0, 0.2));
}

.agent_section .agent-rw:nth-child(even) .agent-left {
  padding-left: 69px;
}

.real_estate_section {
  padding: 115px 0;
  background: rgb(247, 247, 247);
}

.estate_article {
  filter: drop-shadow(0px 25px 40px rgba(0, 0, 0, 0.1));
  -webkit-filter: drop-shadow(0px 25px 40px rgba(0, 0, 0, 0.1));
  height: 100%;
}

.article_card {
  background: #fff;
  height: calc(100% - 372px);
  padding: 30px 31px;
}

.real_estate_section h2 {
  font-size: 40px;
  padding-bottom: 14px;
}

.estate_article p span {
  color: #000;
  font-weight: 700;
}

/* 04-03-2024-About_Us PAGE */

/* 05-03-2024-About_Us PAGE */
.inr-hdr {
  background: #fff;
  padding: 10px 0 15px;
}

.inr-hdr nav {
  padding: 0;
}

.neighbourhood-sectoion {
  padding: 105px 0 110px;
}

.neighbourhood-right {
  padding-left: 90px;
  padding-right: 25px;
}

.neighbourhood-right p span {
  color: #000;
  font-weight: 700;
}

.neighbourhood-left {
  filter: drop-shadow(0px 20px 40px rgba(0, 0, 0, 0.2));
}

.about-slider h2 {
  font-family: "Poppins", sans-serif;
}

.about-slider {
  background: #f7f7f7;
}

.about-slider .section_indicator {
  transform: rotate(-90deg);
  transform-origin: left;
  bottom: 0;
  margin-bottom: -70px;
  margin-left: 160px;
  right: unset;
  left: 0;
  margin-right: 0;
  margin-top: 300px;
  z-index: 0;
}

.about-slider .orgboxarea {
  order: 1;
}

.about-slider .reviewer_name {
  order: 2;
}

.faq-section {
  padding: 105px 0 115px;
}

.faq-section h2 {
  text-align: center;
}

.faq-acrdn .accordion-item {
  border: 0;
  border-bottom: 2px solid rgb(0, 0, 0, 0.1);
}

.faq-acrdn .accordion-button {
  color: rgb(19, 19, 19);
  font-size: 25px;
  font-weight: 700;
  line-height: 35px;
  background: transparent;
  box-shadow: none;
  padding-bottom: 30px;
  padding-top: 30px;
  padding-left: 0;
  padding-right: 0;
}

.faq-acrdn {
  padding-top: 10px;
}

.faq-acrdn .accordion-body {
  padding-top: 0;
  padding-bottom: 30px;
  padding-left: 0;
  padding-right: 60px;
}

.accordion-body a {
  color: #000;
  font-weight: 700;
  transition: 0.4s all;
}

.accordion-body a:hover {
  color: #DE6623;
}

.faq-acrdn .accordion {
  padding-right: 20px;
}

/* .accordion-button:not(.collapsed)::after {
  background-image: none;
  transform: rotate(0deg);
  content: '\f068';
  font-family: 'fontawesome';
  color: #DE6623;
  font-size: 25px;
}

.accordion-button::after {
  color: #DE6623;
  margin-left: auto;
  content: "\2b";
  background-image: none;
  font-size: 40px;
  font-weight: 300;
} */

/* 05-03-2024-About_Us PAGE */

/* buy page start-4th march */

.buy_banner {
  position: relative;
  /* margin-bottom: 130px; */
}


.buy_recent_post {
  padding: 80px 0px;
  position: relative;
}


.buy_recent_post h2 {
  font-family: "Poppins", sans-serif;
  font-size: 45px;
  line-height: 65px;
  color: #131313;
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 40px;
}


.buy_section_indicator {
  font-size: 12px;
  text-transform: uppercase;
  color: #6A6A6A;
  position: absolute;
  transform: rotate(-90deg);
  left: -71px;
  top: 50%;
}

.buy_section_indicator::after {
  content: '';
  width: 200px;
  height: 1px;
  background-color: #6A6A6A;
  display: inline-block;
  vertical-align: 5px;
  margin-left: 20px;
}

.keytearmarea {
  background-color: #F7F7F7;
  padding: 120px 0 80px;
}

.termtxtarea {
  position: relative;
  padding-right: 35px;
}


.termtxtarea h2 {
  font-family: "Poppins", sans-serif;
  font-size: 55px;
  line-height: 65px;
  color: #131313;
  text-align: left;
  text-transform: uppercase;

}

.termbottxtarea {
  padding-top: 30px;
}

.termbottxtarea h3 {
  font-size: 35px;
  font-family: "Poppins", sans-serif;
  color: #131313;
  font-weight: 600;
}

.termbottxtarea p {
  padding: 25px 70px 25px 0;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

.fullbtnarea {
  position: relative;
}

ul.rightbtnarea {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
}

ul.rightbtnarea li {
  margin-bottom: 25px;
  display: flex;
}


.rightbtnarea li a {
  margin-right: 25px;
  padding: 16px 28px;
  border: 1px solid rgb(73, 73, 73, 0.5);
  border-radius: 10px;
  color: #494949;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.rightbtnarea li a:hover {
  background-color: var(--theme-color);
  border: 1px solid var(--theme-color);
  color: #fff;
  border-radius: 10px;
  box-shadow: 0px 15px 35px 0px rgba(129, 52, 9, 0.25);

}

.buy_estatearea {
  padding: 97px 0px 150px;
  background-color: #F7F7F7;
}


.estatebox {
  max-width: 326px;
  margin: 0 auto;
  padding: 40px 30px 20px;
  border-radius: 26px;
  box-shadow: 0 4px 24px 0 rgba(128, 137, 147, 0.1);
  background-color: #fff;
  margin-top: -50px;
  position: relative;
}

.estatebox_img {
  /* height: 400px; */
  border-radius: 30px;
  overflow: hidden;
}

.post_img>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.buyer_rcnt h2 {
  max-width: 60%;
}

.estatebox h5 {
  font-family: "Poppins", sans-serif;
  margin-bottom: 8px;
  color: #131313;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  min-height: 90px;
}

.lft_post_wrp {
  margin-bottom: 30px;
}

.lft_post_wrp span {
  color: rgb(106, 106, 106);
  font-size: 15px;
  font-weight: 600;
}

.post_buy a {
  background-color: var(--theme-color);
  border-radius: 50px;
  padding: 0px 12px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500px;
  text-transform: uppercase;
  color: #fff;
  margin-left: 20px
}

.post_buy a:hover {
  font-family: "Poppins", sans-serif;
  color: #fff;
  background-color: #434343;
}

.buyer-bnr {
  padding: 150px 0;
}

.buy_recent_post .post_dtls {
  margin-top: -57px;
  max-width: 523px;
}

.post_date {
  justify-content: unset;
}

.post_tag {
  margin-left: 35px;
}

.buy_recent_post .lft_small_post .post_dtls {
  padding: 30px 25px;
  max-width: 355px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0px;
  right: -30px;
  border-radius: 30px;
}

.buy_recent_post .lft_small_post .post_img {
  width: 308px;
  height: 280px;
}

.accordion-body span {
  font-weight: 700;
}

.buy_estatearea .glb_btn {
  min-width: 200px;
}

.buy_estatearea .discover_head {
  margin-bottom: 20px;
}

/* buy page end */


/* dictionary start */

.dic_bnr_title {
  padding: 70px 0;
}

.dic_bnr_title h1 {
  color: #fff;
  font-size: 80px;
  font-weight: bold;
  text-align: center;
}

.dic_bnr_title p {
  color: #fff;
  font-size: 18px;
  text-align: center;
  line-height: 30px;
  font-weight: 400;
  padding: 12px 0;
}

.alfafullarea {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.alfabox {
  margin-right: 17px;
  margin-top: 17px;

}

a.singalalfa {
  border: 1px solid #fff;
  width: 55px;
  height: 55px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 25px;
  font-family: "Poppins", sans-serif;
}


a.singalalfa:hover {
  border: none;
  background-color: #fff;
  color: var(--theme-color);
}

.dic_alfaarea {
  background-color: #EDEDED;
  height: 80px;
  display: flex;
  align-items: center;
  margin-bottom: 56px;
  font-size: 45px;
  color: #000;
  font-weight: 700;
}

.dic_alfaarea h2 {
  color: #fff;

}

.alfapart ul {
  padding: 0;
}

.alfapart ul li {
  padding-bottom: 35px;
}

.alfapart ul li a {
  font-size: 18px;
  font-weight: 400;
  color: #454545;

}
.buy_banner{
  margin-top: 87px;
  padding: 90px 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.buy_banner h1{
  font-size: 80px;
  padding-bottom: 15px;
}
.about_bnr_card{
  text-align: center;
}
.about_bnr_card p{
  color: rgb(255, 255, 255);
  font-size: 18px;
  line-height: 30px;
  padding-top: 15px;
  padding-bottom: 15px;
}
.dic-wrap{
  padding-bottom: 35px;
}
.resources .accordion-header{
  line-height: 1.5;
}
.table_of_content .accordion-header{
  line-height: 1;
}

/* dictionary end */
/* 09-03-2024 */
.navbar-nav{
  display: inline-flex;
}

/* 03-04-2023 */

.resources .accordion-button::after {
  content: '\f078';
  background-image: none;
  width: auto;
  height: auto;
  font-size: 15px;
  font-family: 'fontAwesome';
  transform: rotate(0deg);
  color: white;
  display:inline-block;
}

/* neighour start */
.mapareaneigh {
  padding: 90px 0;
}


.neighbourright {
  position: relative;
  /* padding-right: 35px; */
}


.neighbourright h2 {
  font-family: "Poppins", sans-serif;
  font-size: 50px;
  line-height: 65px;
  color: #131313;
  text-align: left;
  text-transform: uppercase;

}

.neighbourright p {
  padding: 25px 0px 25px 0;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
}



ul.listbtn {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
}

ul.listbtn li {
  margin-bottom: 25px;
  display: flex;

}


.listbtn li a {
  margin-right: 20px;
  padding: 16px 28px;
  border: 1px solid rgb(73, 73, 73, 0.5);
  border-radius: 15px;
  color: #494949;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.listbtn li a:hover {
  background-color: #fff;
  border:1px solid #fff;
  color: var(--theme-color);
  border-radius: 15px;
  box-shadow: 0px 15px 35px 0px rgba(43, 15, 0, 0.15);
  
}

a.map_btn {
  min-width: 270px;
  height: 60px;
  padding: 10px 25px;
  background-color: var(--theme-color);
  border-radius: 15px;
  color: #fff;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 500;
}

a.map_btn:hover {
   border: 1px solid var(--theme-color);
  background-color: #fff;
  color: var(--theme-color);
}


.neigh_alfaarea {
  background-color: #EDEDED;
  height: 80px;
  display: flex;
  align-items: center;
  margin-bottom: 56px;
  font-size: 30px;
  color: #000;
  font-weight: 700;
}

.neigh_alfaarea h2 {
  color: #fff;

}

.Zoneslist ul {
  padding: 0;
}

.Zoneslist ul li {
  padding-bottom: 35px;
  background: url(../images/listarrow.png) left top no-repeat;
  padding-left: 47px;
}

.Zoneslist ul li a {
  font-size: 18px;
  font-weight: 400;
  color: #454545;

}


.neiagent_box{
  background: #f7f7f7;
  padding: 100px 0;
}

.edmonarea {
  background-color: #fff;
  padding: 100px 0;
}


.nei_left {
  margin-left: 52px;
}

.nei_left h2 {
  padding-bottom: 12px;
}

.edmonareatext {
  padding-top: 28px;
}

.edmonareatext h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #000;
  font-size: 30px;
  margin-bottom: 30px;

}



.bottom_list ul {
  padding: 0;
}

.bottom_list ul li {
  padding-bottom: 35px;
  background: url(../images/listarrow.png) left top no-repeat;
  padding-left: 47px;
}

.bottom_list ul li a {
  font-size: 16px;
  font-weight: 400;
  color: #454545;

}

.nei_right {
  margin-right: 47px;
}

.nei_right h2 {
  padding-bottom: 12px;
}




/* neighour end */


/* 13-04-2024 */

/* edmonton_start */
.edmn_bnnr{
  padding-top: 86px;
  background-color: #000;
}

.edmn_bnnr .bnnr_wrp{
  display: flex;
  /* align-items: center; */
  flex-wrap: wrap;
}


.edmn_bnnr .bnnr_wrp > div{
  flex: 0 0 auto;
  width: 50%;
}

.edmn_bnnr .bnnr_wrp .bnnr_cnct .bnnr_cnct_innr{
  max-width: 570px;
  margin-left: auto;
  padding-top: 140px;
  padding-bottom: 140px;
  padding-right: 87px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #CBCBCB;
}

.edmn_bnnr .bnnr_wrp h6{
  background-color: rgb(222 102 35 / 10%);
  text-align: center;
  width: fit-content;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  line-height: 10px;
  text-transform: uppercase;
  color: var(--theme-color);
  letter-spacing: 1.2px;
  margin-bottom: 30px;
}

.edmn_bnnr .bnnr_wrp h1{
  font-size: 60px;
  line-height: 95%;
  margin-bottom: 30px;
}

.edmn_bnnr .bnnr_wrp .bnnr_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* edmonton_end */


/* stat_sec_start */
.stat_sec{
  padding: 105px 0;
}

.stat_sec ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.stat_sec ul li{
  flex: 0 0 auto;
  /* width: 20%; */
  text-align: center;
  font-size: 20px;
  line-height: 22px;
  color: #434343;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}

.stat_sec ul li::after{
  position: absolute;
  content: "";
  right: -56px;
  top: 0;
  width: 1px;
  height: 87px;
  background-color: rgba(0, 0, 0, 0.1);
}

.stat_sec ul li:last-child::after{
  display: none;
}


.stat_sec h6{
  font-size: 50px;
  line-height: 1;
  margin-bottom: 15px;
  color: var(--theme-color);
  font-weight: 700;
}

.stat_sec h6 sup{
  font-size: 25px;
  line-height: 18px;
  font-weight: 600;
  top: -22px;
}

.stat_sec p span{
  display: block;
}

/* stat_sec_end */


.rl_est_ltng{
  padding: 120px 0 100px;
  background-color: #f7f7f7;
}

.rl_est_ltng .container > img{
  width: 100%;
}


.edmntn_agnt .agent-rw:nth-child(odd) .agent-left {
  padding-left: 69px;
}

.agent_section.edmntn_agnt h2 span{
  display: inline;
}

.agent_section.edmntn_agnt .agent-rw:nth-child(even) .agent-left {
  padding-left: 0;
  padding-right: 30px;
}

.edmntn_agnt .agent-rw .agent-left{
  max-width: 100%;
}

.trnsprt_wrp{
  margin-top: 30px;
}
.trnsprt_wrp h6{
  font-size: 28px;
  line-height: 1;
  color: #000;
  font-weight: 600;
  margin-bottom: 25px;
}

.agent_section.edmntn_agnt .agent-rw .agent-left > p + p{
  margin-top: 20px;
}


.near_to_sec{
  padding: 0 0 100px;
}

.near_to_sec .discover_box > a{
  height: 100%;
  width: 100%;
}

.near_to_sec .discover_head h2{
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}

.signup_box {
  padding: 100px 0;
  background-color: var(--theme-color);
}

.signup_box .box_innr{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.signup_box .box_innr h3{
  max-width: 762px;
  font-size: 52px;
  line-height: 50px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  margin-right: auto;
}

.wht_sld_btn{
  min-width: 280px;
  padding: 0 15px;
  height: 90px;
  background-color: #fff;
  color: var(--theme-color);
  font-size: 25px;
  line-height: 88px;
  font-weight: 600;
  border: 1px solid transparent;
  border-radius: 15px;
  text-align: center;
}

.wht_sld_btn:hover{
  border-color: #fff;
  background-color: transparent;
  color: #fff;
}

/* start 20.01.25 */
.gemmie_bnr {
  background-image: url(../images/gemmie_bnr.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 40px 0 65px;
  margin-top: 87px;
}
.gemmie_bnr h6 {
  color: #fff;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 30px;
}
.search_section {
  padding: 100px 0;
  background-image: url(../images/search_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}
.gemmie_bnr h1 {
  font-size: 55px;
  font-weight: 700;
  line-height: 83px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}
.search_section_hdng {
  text-align: center;
  margin-bottom: 30px;
}
.search_section_from .input_place {
  border: none;
  background-color: #fff !important;
  border: 1px solid rgb(255, 255, 255) !important;
  border-radius: 100px;
  box-shadow: 0px 20px 80px 0px rgba(0, 0, 0, 0.1) !important;
  background: rgb(255, 255, 255) !important;
  height: 80px;
  height: 80px;
  width: 100%;
  padding: 0 40px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgb(0 0 0 / 35%) !important;
}
.search_section_from {
  text-align: center;
  margin-bottom: 56px;
}
.search_submit {
  border: 1px solid rgb(255, 255, 255);
  border-radius: 100px;
  box-shadow: 0px 15px 35px 0px rgba(222, 102, 35, 0.25);
  background: rgb(222, 102, 35);
  display: inline-flex;
  min-width: 240px;
  height: 60px;
  color: rgb(255, 255, 255);
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  text-align: center;
  margin-right: 10px;
  border: 1px solid transparent;
  justify-content: center;
  align-items: center;
}

.search_section_from form {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.submint_wrap {
  display: inline-flex;
  align-items: center;
  position: absolute;
  right: 0;
  top: 10px;
}
.submint_wrap span {
  position: absolute;
  left: 50px;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.submint_wrap:hover span {
  color: var(--theme-color);
}
.submint_wrap:hover .search_submit {
  background-color: transparent;
  color: var(--theme-color);
  border-color: var(--theme-color);
}
.search_section_from .input_place::placeholder {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgb(0 0 0 / 35%) !important;
}
.search_section_from input:-webkit-autofill,
.search_section_from input:-webkit-autofill:hover,
.search_section_from input:-webkit-autofill:focus,
.search_section_from input:-webkit-autofill:active {
  -webkit-text-fill-color: rgb(0 0 0 / 35%) !important;
}
.search_list_btn {
  height: 60px;
  border-radius: 10px;
  box-shadow: 0px 15px 50px 0px rgba(0, 0, 0, 0.03);
  background: rgb(255, 255, 255);
  min-width: 270px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: rgb(19, 19, 19);
  font-size: 17px;
  font-weight: 500;
  line-height: 26px;
  text-align: center;
  width: 100%;
}
.search_list_btn:hover{
  color: #fff;
  box-shadow: 0px 15px 35px 0px rgba(129, 52, 9, 0.25);
  background: rgb(222, 102, 35);
}
.search_bottom_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: -12px;
  margin-right: -12px;
}
.search_bottom_list_item {
  flex: 0 0 auto;
  width: 25%;
  padding: 0 12px;
}
.search_bottom_list_item:nth-child(n + 5){
margin-top: 24px;
}
.search_section .explore{
  margin-bottom: 0;
}
/* end 20.01.25 */