body {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: Arial, sans-serif;
}

/*=====Comman Styling Start Here=====*/
ul {
  list-style: none;
}

a {
  color: #000;
  display: inline-block;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
figure,
.owl-nav {
  padding: 0px;
  margin: 0px;
}


:root {
  --primarycolor: #4a957f;
  --secondarycolor: ;
  --lightcolor: #fff;
  --darkcolor: #000;
  --hovercolor:#45605970;
  --bgcolor: #f7f8f9c2;
  --textcolor: #3F3F3F;
}

.custom-style {
  display: inline-block;
  width: 100%;
  padding: 40px 0px;
}

.comman-title-box {
  margin-bottom: 30px;
  text-align: center;
}

.comman-title {
  color: var(--darkcolor);
  font-size: 33px;
  font-weight: 600;
  text-transform: capitalize;
}

.comman-title span {
  color: var(--primarycolor);
}

.comman-title-box strong {
  display: block;
  color: var(--textcolor);
  font-size: 14px;
  text-transform: capitalize;
  margin-top: 8px;
}


.comman-btn-box {
  margin-top: 10px;
  text-align: center;
}

.comman-btn {
  color: var(--lightcolor);
  background-color: var(--primarycolor);
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 10px 25px;
  border-radius: 8px;
  white-space: nowrap;
  border: 0px;
  outline: 0px;
  transition: all 0.5s ease-in-out;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.comman-btn::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 0%;
  transform: translateX(-100%);
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: var(--hovercolor);
  border-radius: inherit;
  transition: all 0.5s ease-in-out;
}

.comman-btn:hover::before {
  transform: translateX(0%);
}

.whatsapp {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: fixed;
  bottom: 15px;
  left: 10px;
  z-index: 99;
  animation: blink 0.8s ease-in-out infinite alternate;
}

.whatsapp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.scroll-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--lightcolor);
  background-color: var(--primarycolor);
  font-size: 16px;
  text-align: center;
  align-content: center;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  animation: bounce 0.9s ease-in-out infinite alternate;
  position: fixed;
  bottom: 15px;
  right: 10px;
  z-index: 99;
}

.pagination {
  margin-top: 20px;
  justify-content: center;
}

.pagination .page-link {
  color: var(--primarycolor);
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 10px;
  margin: 0px 11px;

}

.pagination .page-link i {
  font-size: 13px;
}

.pagination .page-link:focus {
  box-shadow: none;
  color: #fff;
  border-color: var(--primarycolor);
  background-color: var(--primarycolor);
}

.pagination .active {
  color: #fff;
  border-color: var(--primarycolor);
  background-color: var(--primarycolor);
}

.pagination .page-link:hover,
.pagination .page-link:active {
  color: #fff;
  background-color: var(--primarycolor);
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  border-radius: 10px;
}


.comman-tab .nav {
  justify-content: center;
  border: none;
}

.comman-tab .nav-link {
  text-align: center;
  color: var(--lightcolor);
  background-color: var(--primarycolor);
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
  white-space: nowrap;
  padding: 8px 24px;
  border: none;
  border-radius: 8px;
  margin:0px 5px;
  transition: all 0.3s ease-in-out;
}

.comman-tab .nav-link:hover {
  color: var(--lightcolor);
}

.comman-tab .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: var(--lightcolor);
  background-color: var(--primarycolor);
}

.property-panel .property-container {
  margin-top: 31px;
}


::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background-color: var(--lightcolor);
}

::-webkit-scrollbar-thumb {
  background-color: var(--primarycolor);
}

.nav-header {
  display: none;
}

/*=====Comman Styling End Here=====*/

/*=====Header Styling Start Here=====*/
.header {
  width: 100%;
  background-color: var(--lightcolor);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  position: sticky;
  top: 0%;
  left: 0%;
  z-index: 999999999;

}

.logo img {
  height: 62px;
  object-fit: contain;
}

.header .nav-item {
  margin-left: 19px
}

.header .nav-link {
  color: var(--darkcolor);
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 0px !important;
  position: relative;
  overflow: hidden;
}


.header .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 0%;
  height: 2px;
  background-color: var(--primarycolor);
  border-radius: 3px;
  transition: all 0.5s ease-in-out;
}

.header .nav-link.active,
.header .nav-link:hover {
  color: var(--primarycolor);
}

.header .nav-link:hover::after {
  width: 100%;
}

/*=====Header Styling End Here=====*/

/*=====Hero Panel Styling Start Here=====*/
.hero-panel figure {
  width: 100%;
  height: 680px;
}

.hero-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*=====Hero Panel Styling End Here=====*/

/*=====About Panel Styling Start Here=====*/
.about-panel figure {
  width: 100%;
  height: 440px;
  border-radius: 15px;
  position: sticky;
  top: 87px;
  left: 0px;
}

.about-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.about-panel .about-content {
  height: 100%;
  align-content: center;
}

.about-panel h2 {
  color: var(--darkcolor);
  margin-bottom: 14px;
}

.about-panel p {
  color: var(--textcolor);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 12px;
}

#inr-content-box {
  height: 300px;
  overflow: hidden;
}

.about-panel .comman-btn {
  margin-top: 20px;
}

.add-height {
  height: auto !important;
}

/*=====About Panel Styling End Here=====*/

/*=====Property Overview Panel Styling Start Here=====*/
.project-panel,
.retail-panel {
  background-color: var(--bgcolor);
}

.project-box {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

.project-box a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.project-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: all 0.5s ease-in-out;
}

.project-box span {
  width: 100%;
  color: var(--lightcolor);
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-transform: capitalize;
  padding: 10px;
  border: 0px 0px 15px 15px;
  position: absolute;
  bottom: 0px;
  left: 0px;
}

.project-box:hover img {
  transform: scale(1.1);
}

/*=====Property Panel Styling End Here=====*/
.gallery-panel {
  padding-bottom: 25px !important;
}

.gallery-panel figure {
  width: 100%;
  height: 300px;
  border-radius: 15px;
  margin-bottom: 15px;
}

.gallery-panel a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  position: relative;
  overflow: hidden;
}

.gallery-panel img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.gallery-panel .overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0%;
  left: 0%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: inherit;
  opacity: 0;
  transform: scale(0);
  transition: all 0.5s ease-in-out;
}

.gallery-panel i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--lightcolor);
  background-color: var(--primarycolor);
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-panel a:hover .overlay {
  opacity: 1;
  transform: scale(1);
}

/*=====Property Panel Styling Start Here=====*/
.property-panel {
  background-color: var(--bgcolor);
}

.property-panel .comman-title-box {
  margin-bottom: 28px;
}

.property-box {
  width: 100%;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  margin-bottom: 24px;
}

.property-box figure {
  width: 100%;
  height: 260px;
  border-radius: 15px 15px 0px 0px;
}

.property-box figure a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  position: relative;
  overflow: hidden;
}

.property-box .property-status {
  color: var(--lightcolor);
  background-color: var(--primarycolor);
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
  position: absolute;
  top: 8px;
  left: 7px;
}

.property-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: all 0.5s ease-in-out;
}

.property-box .short-details-box {
  padding: 16px;
}

.property-box h5 {
  color: var(--darkcolor);
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  transition: all 0.5s ease-in-out;
}


.property-box h5 a:hover {
  color: var(--primarycolor);
}

.property-box .comman-btn {
  margin-top: 15px;
  padding: 9px 17px;
}

.property-box:hover img {
  transform: scale(1.1);
}
/*=====Property Panel Styling End Here=====*/

/*=====Awards Panel Styling Start Here=====*/
.awards-panel figure {
  width: 100%;
  height: 370px;
  border-radius: 15px;
  overflow: hidden;
}

.awards-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: all 0.5s ease-in-out;
}

.awards-panel figure:hover img {
  transform: scale(1.1);
}

/*=====Awards Panel Styling End Here=====*/

/*=====Testimonials Panel Styling Start Here=====*/
.testimonials-panel {
  background-color: var(--bgcolor);
}

.testimonials-panel .testimonials-box {
  border-radius: 15px;
  padding: 25px;
  background-color:var(--lightcolor);
  border: 1px solid #3f3f3f4f;
}

.testimonials-panel a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.testimonials-panel i {
  color: var(--primarycolor);
  font-size: 25px;
  margin-bottom: 16px;
}

.testimonials-panel p {
  color: var(--textcolor);
  font-size: 15px;
  line-height: 22px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  height: 76px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  margin-bottom: 24px;
}

.testimonials-panel .reviewer-box {
  display: flex;
  align-items: center;
}

.testimonials-panel .reviewer-box img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 13px;
}

.testimonials-panel h4 {
  color: var(--darkcolor);
  font-size: 15px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 2px;
}

.testimonials-panel span {
  color: var(--primarycolor);
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
}

/*=====Testimonials Panel Styling End Here=====*/

/*=====Feature Panel Styling Start Here=====*/
.feature-panel .feature-box {
  background-color: var(--bgcolor);
  border: 1px solid #3f3f3f4f;
  padding: 18px 12px;
  border-radius: 15px;
  text-align: center;

}

.feature-panel .feature-box img {
  width: 100%;
  height: 44px;
  object-fit: contain;
  margin-bottom: 14px;
}

.feature-panel h4 {
  color: var(--darkcolor);
  font-size: 14px;
  text-transform: capitalize;
}

.owl-dots {
  margin-top: 18px !important;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background-color: var(--primarycolor);
}

/*=====Feature Panel Styling End Here=====*/

/*=====Blog Panel Styling Start Here=====*/
.blog-slide {
  border-radius: 15px;
}

.blog-slide figure {
  width: 100%;
  height: 250px;
  border-radius: 15px 15px 0px 0px;
}

.blog-slide figure a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
}

.blog-slide figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: all 0.5s ease-in-out;
}

.blog-slide figure:hover img {
  transform: scale(1.1);
}

.blog-slide .details-box {
  padding: 15px;
  border-radius: 0px 0px 15px 15px;
  background-color: #e7eaedc9;
}

.blog-slide h3 a {
  color: var(--darkcolor);
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 9px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  height: 21px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  transition: all 0.5s ease-in-out;
}

.blog-slide h3 a:hover {
  color: var(--primarycolor);
}

.blog-slide p {
  color: var(--textcolor);
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  height: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  transition: all 0.5s ease-in-out;
}

.blog-slide .comman-btn {
  padding: 9px 18px;
}

/*=====Blog Panel Styling End Here=====*/

/*=====Blog List Panel Styling Start Here=====*/
.blog-list-panel .blog-slide {
  margin-bottom: 24px;
}

.blog-list-panel {
  background-color: var(--bgcolor);
}

/*=====Blog List Panel Styling End Here=====*/

/*=====Contact Us Panel Styling Start Here=====*/
.contact-panel {
  background-color: var(--bgcolor);
}

.contact-panel .map-box {
  width: 100%;
  height: 543px;
  border-radius: 15px 0px 0px 15px;
}

.contact-panel iframe {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.contact-panel h3 {
  color: var(--darkcolor);
  font-size: 24px;
  text-transform: capitalize;
  margin-bottom: 8px;
}

.contact-panel h3 span {
  color: var(--primarycolor);
}

.contact-panel p {
  color: var(--textcolor);
  font-size: 14px;
  margin-bottom: 17px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  height: 43px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}

.contact-panel .form-box {
  width: 100%;
  height: 100%;
  background-color: var(--lightcolor);
  border-radius: 0px 15px 15px 0px;
  padding: 30px;
  align-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.form-box .input-box {
  margin-bottom: 15px;
}

.form-control,
.form-select {
  padding: 9px 12px;
  color: var(--darkcolor);
  border-color: #3f3f3f45;
  font-size: 15px;
}

.form-control:focus,
.form-select:focus {
  box-shadow: none;
  border-color: var(--primarycolor);
}

.checkbox-container {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-top: 10px;
}

.checkbox-container label {
  margin-left: 8px;
}

.form-box .comman-btn {
  border: none;
  outline: none;
  width: 100%;
  margin-top: 10px;
}

/*=====Contact Us Panel Styling End Here=====*/

/*=====Footer Styling Start Here=====*/
.footer {
  padding-bottom: 0px !important;
}

.footer .footer-logo {
  width: 108px;
  object-fit: contain;
  background-color: #3f3f3f17;
  padding: 12px;
  margin-bottom: 17px;
}

.footer h4 {
  color: var(--darkcolor);
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 6px;
}

.footer p {
  color: var(--textcolor);
  font-size: 14px;
  text-transform: capitalize;
}

.footer h3 {
  color: var(--darkcolor);
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.footer strong {
  display: inline-block;
  color: var(--darkcolor);
}

.footer li {
  margin-bottom: 6px;
}

.footer a {
  color: var(--darkcolor);
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
}

.footer .copyright-box {
  background-color: #e7eaed8c;
  padding: 12px 0px 6px;
  height: 100%;
  text-align: center;
  align-content: center;
  margin-top: 20px;
}

.footer .copyright-box p {
  color: var(--darkcolor);
  font-size: 14px;
  margin: 0px;
}

/*=====Footer Styling Start Here=====*/

/*=====Banner Styling Start Here=====*/
.banner-panel {
  width: 100%;
  display: block;
  padding: 105px 0px;
  text-align: center;
  background-image: url('../images/banner-img1.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.banner-panel::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.banner-panel h1 {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 14px;
}

.banner-panel .breadcrums {
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-panel .breadcrums li,
.banner-panel .breadcrums li a {
  color: #fff;
  font-size: 16px;
  text-transform: capitalize;
}

.banner-panel .breadcrums i {
  display: inline-block;
  color: var(--primary);
  font-size: 12px;
  margin: 0px 8px 0px 12px;
}

/*=====Banner Styling End Here=====*/

/*=====Project Details Panel Styling Start Here=====*/
.project-details-panel {
  background-color: var(--bgcolor);
}

.wrapper {
  margin-bottom: 30px;
}

.wrapper figure {
  width: 100%;
  height: 450px;
  border-radius: 15px;
}

.wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.wrapper .owl-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  color: var(--lightcolor) !important;
  background-color: var(--primarycolor) !important;
  text-align: center;
  align-content: center;
  position: absolute;
  top: 44%;
}

.wrapper .owl-nav .owl-prev {
  left: 3%;
}

.wrapper .owl-nav .owl-next {
  right: 3%;
}

.project-details-box {
  padding: 30px;
  border-radius: 15px;
  background-color: var(--lightcolor);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.project-details-box h3 {
  color: var(--darkcolor);
  font-size: 28px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.project-details-box h3 span {
  color: var(--primarycolor);
}

.project-details-panel h4 {
  color: var(--darkcolor);
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 27px 0px 15px;
}

.project-details-box p {
  color: var(--textcolor);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 8px;
}

.project-details-box .list {
  columns: 4;
  margin-top: 35px;
}

.project-details-box .list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.project-details-box .list i {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ececec;
  color: var(--lightcolor);
  background-color: var(--primarycolor);
  border-radius: 8px;
  margin-right: 12px;
}

.project-details-box h6 {
  color: var(--darkcolor);
  font-size: 15px;
  font-weight: 600;
  text-transform: capitalize;
  /* margin: 2px; */
}

.project-details-box .list span {
  color: var(--textcolor);
  font-size: 13px;
  font-weight: 500;
  text-transform: capitalize;
}

.project-details-box #inr-content-box {
  height: 172px;
}

.project-details-box .readmore-btn {
  color: var(--primarycolor);
  font-size: 15px;
  font-weight: 600;
  text-transform: capitalize;
  margin-top: 4px;
}

.project-details-box .comman-list {
  columns: 5;
}

.project-details-box .comman-list i {
  color: var(--primarycolor);
  font-size: 13px;
  margin-right: 4px;
}

.project-details-box .comman-list li {
  color: var(--textcolor);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.project-details-box .map-box,
.project-details-box .video-box {
  width: 100%;
  height: 350px;
  border-radius: 15px;
  margin-top: 24px;
}

.project-details-box iframe,
.project-details-box video {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.project-details-box .quicky-summary {
  columns: 4;
}

.sidebar-widgets {
  width: 100%;
  position: sticky;
  top: 87px;
  right: 0px;
}

.sidebar-widgets .inner-widget {
  padding: 25px;
  border-radius: 15px;
  background-color: var(--lightcolor);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  margin-bottom: 24px;
}

.inner-widget h4 {
  text-transform: capitalize;
  font-weight: 600;
  margin: 0px 0px 15px !important;
}


.inner-widget li {
  margin-bottom: 8px;
}

.inner-widget ul a {
  color: var(--textcolor);
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
}

.inner-widget ul i {
  font-size: 12px;
  margin-right: 3px;
}

.inner-widget .comman-btn {
  margin-top: 8px;
  padding: 9px 27px;
}

.inner-widget .seller-info-box {
  margin-bottom: 24px;
}

.inner-widget .seller-info-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.inner-widget .seller-info-box img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 15px;
}

.inner-widget .seller-info-box a {
  color: var(--textcolor);
  font-size: 14px;
  font-weight: 500;
}

.inner-widget h5 {
  color: var(--darkcolor);
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 5px;
}


.inner-widget a i {
  color: var(--primarycolor);
}


.inner-widget .input-box {
  margin-bottom: 15px;
}

.inner-widget .submit-btn {
  width: 100%;
  margin-top: 10px;
}

.search-bar {
  display: flex;
  margin: 0px !important;
}

.search-bar input {
  width: 100%;
  outline: none;
  padding: 10px 15px;
  border-radius: 4px;
  color: var(--darkcolor);
  background-color: var(--lightcolor);
  font-size: 15px;
  border: 1px solid var(--textcolor);
}

.search-bar button {
  border: none;
  outline: none;
  color: var(--primarycolor);
  background-color: transparent;
  font-size: 16px;
  margin-left: -36px;
}

.inner-widget .tag-btn {
  color: var(--lightcolor);
  background-color: var(--primarycolor);
  font-size: 14px;
  padding: 7px 10px;
  margin-bottom: 8px;
  border-radius: 8px;
}


.inner-widget .post-category li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.inner-widget .post-category li:last-child {
  margin: 0px;
}

.inner-widget .post-category img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 12px;
}

.inner-widget .post-category span {
  color: var(--textcolor);
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
}

.inner-widget .post-category i {
  margin-right: 0px;
}

.inner-widget .post-category a {
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  height: 44px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  margin-top: 6px;
}

/*=====Project Details Panel Styling End Here=====*/

/*=====Blog Details Panel Styling Start Here=====*/
.blog-details-panel {
  background-color: var(--bgcolor);
}

.blog-content-box {
  background-color: var(--lightcolor);
  padding: 20px;
  border-radius: 15px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.blog-content-box .blog-img {
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 15px 15px 0px 0px;
  margin-bottom: 20px;
}

.blog-content-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.blog-content-box figcaption {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 7px 10px;
  color: var(--lightcolor);
  background-color: var(--primarycolor);
  font-size: 12px;
  text-transform: capitalize;
  border-radius: 4px;
}

.blog-content-box h3 {
  color: var(--darkcolor);
  font-size: 23px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 30px;
  margin-bottom: 15px;
}

.blog-content-box h4 {
  color: var(--darkcolor);
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 25px 0px 12px;
}

.blog-content-box p {
  color: var(--textcolor);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 12px;
}

.blog-content-box li {
  color: var(--textcolor);
  font-size: 15px;
  margin-bottom: 8px;
}

.blog-content-box .note-box {
  background-color: var(--primarycolor);
  padding: 10px 15px;
  border-radius: 15px;
  margin-top: 10px;
}

.blog-content-box .note-box p {
  color: var(--lightcolor);
  font-size: 15px;
  margin: 0px;
}

.blog-content-box .note-box a {
  color: var(--lightcolor);
}

/*=====Blog Details Panel Styling End Here=====*/

/*=====Career Panel Styling Start Here=====*/
.career-panel {
  background-color: var(--bgcolor);
}

.career-panel .info-box h3 {
  color: var(--darkcolor);
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 12px;
}

.career-panel ul,
.blog-content-box ul {
  list-style: disc;
  padding-left: 15px;
  margin-bottom: 17px;
}

.career-panel ul li {
  color: var(--textcolor);
  font-size: 15px;
  margin-bottom: 6px;
}

.career-panel ul li::marker,
.blog-content-box ul li::marker {
  color: var(--primarycolor);
  font-size: 14px;
}

.career-panel a {
  color: var(--primarycolor);
}

.career-panel .form-box {
  background-color: var(--lightcolor);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.career-panel .form-box h3 {
  font-weight: 600;
  margin-bottom: 20px;
}

.career-panel .input-box {
  margin-bottom: 18px;
}

.career-panel .form-box label {
  color: var(--darkcolor);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
}

/*=====career Panel Styling End Here=====*/

/*=====Privacy Policy Panel Styling Start Here=====*/
.privacy-panel,
.terms-panel {
  background-color: var(--bgcolor);
}

.custom-content h2 {
  color: var(--darkcolor);
  font-size: 28px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 17px;
}

.custom-content h2 span {
  color: var(--primarycolor);
}

.custom-content h3 {
  color: var(--darkcolor);
  font-size: 19px;
  text-transform: capitalize;
  margin: 20px 0px 10px;
}

.custom-content p {
  color: var(--textcolor);
  font-size: 16px;
  line-height: 24px;
}

.custom-content ul {
  list-style: disc;
  padding-left: 15px;
}

.custom-content ul li {
  color: var(--textcolor);
  font-size: 15px;
  margin-bottom: 8px;
}

.custom-content ul li::marker {
  color: var(--primarycolor);
}

/*=====Privacy Policy Panel Styling End Here=====*/

/*=====Modal Styling Start Here=====*/
.modal {
  z-index: 9999999999;
}

.modal .modal-content {
  border: none;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.modal .modal-header {
  border: none;
  background-color: var(--primarycolor);
  padding: 12px;
}

.modal .modal-title {
  color: var(--lightcolor);
  font-size:19px;
  font-weight: 600;
  text-transform: capitalize;
}

.modal .btn-close {
  opacity: 1;
  background-image: none;
  transition: all 0.5s ease-in-out;
}

.modal .btn-close i {
  color: var(--lightcolor);
  font-size: 21px;
}

.modal .btn-close:focus {
  box-shadow: none;
}

.modal .btn-close:hover {
  transform: scale(1.1);
}

.modal .modal-body {
  padding: 20px 16px;
}

.modal .input-box{
  margin-bottom:18px;
}

.modal .submit-btn-box{
  margin-top:10px;
  text-align:center;
}
/*=====Modal Styling End Here=====*/

/*=====Animation(keyframes) Code Start Here=====*/
@keyframes bounce {
  0% {
    transform: translateY(-3px);
  }

  100% {
    transform: translateY(3px);
  }
}

@keyframes blink {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*=====Animation(keyframes) Code End Here=====*/