@import url("https://fonts.googleapis.com/css2?family=Mona+Sans:ital,wght@0,200..900;1,200..900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
  /* --primary: #0aa988; */
  --primary: #00614d;
  --primary-light: #edf8f6;
  /* --primary-light-1: #ebfcff; */
  --secondary: #ff8400;
  --blue: #0178a4;
  --blue1: #0094cb;
  --dark: #222222;
  --dark-light: #666666;
  --light: #f5f5f5;
  --light1: #f8f8f8;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

::selection {
  background-color: var(--primary);
  color: #ffffff;
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--light);
}

.side-menu::-webkit-scrollbar-track {
  background-color: #ffffff;
}

.side-menu::-webkit-scrollbar {
  width: 5px;
  background-color: #ffffff;
}

.side-menu::-webkit-scrollbar-thumb {
  background-color: #999999;
  border-radius: 50px;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "Mona Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: var(--dark);
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-optical-sizing: auto;
  font-style: normal;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  line-height: 26px;
  color: #666;
}

.full-img {
  width: 100%;
}

.f20 {
  font-size: 20px;
}

.f18 {
  font-size: 18px;
}

.f16 {
  font-size: 16px;
}

.f14 {
  font-size: 14px;
}

.f12 {
  font-size: 12px;
}

.light-bg {
  background-color: var(--light);
}

.container-fluid {
  padding: 0 50px;
}

/* .container {
  width: 100%;
  max-width: 1400px;
} */

.header {
  width: 100%;
  padding: 5px 0;
  /* border-bottom: solid 1px #e8e8e8; */
  position: fixed;
  top: 0;
  background-color: var(--white);
  z-index: 999;
  transition: all 0.3s;
}

.header-fixed {
  padding: 0 0;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  /* box-shadow: 0px 5px 15px 0px rgba(0, 44, 35, 0.4); */
  box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 10%);
}

.logo img {
  width: 100%;
  max-width: 150px;
  transition: all 0.3s;
}

.header-fixed img {
  max-width: 140px;
}

.menu {
  margin-top: 20px;
}

.menu-right {
  margin-top: 12px !important;
}

.menu li {
  display: inline-block;
  margin-right: 15px;
}

.menu li a {
  color: var(--dark);
  font-size: 16px;
  transition: all 0.3s;
  font-weight: 500;
}

.menu li a:hover {
  color: var(--primary);
}

.premium-link {
  /* color: #dda033 !important; */
  color: var(--secondary) !important;
}

.menu-icon {
  position: relative;
  cursor: pointer;
}

.menu-icon img {
  width: 32px;
  position: absolute;
  bottom: -10px;
  left: -5px;
}

.post-btn {
  background-color: var(--primary);
  color: #fff !important;
  padding: 5px 12px;
  display: block;
  border-radius: 50px;
  transition: all 0.3s;
  border: solid 1px var(--primary);
}

.post-btn:hover {
  color: var(--primary) !important;
  background-color: var(--white);
}

.home-main-search {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: url(../images/search-banner.jpg) no-repeat center;
  background-size: cover;
  border-bottom: solid 1px #e8e8e8;
  margin-top: 72px;
}

.search-title {
  color: var(--dark);
  text-align: center;
  font-weight: 500;
}

.search-title span {
  color: var(--primary);
}

.sarch-wrap {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 20px;
  margin-top: 15px;
  border: solid 1px rgba(255, 255, 255, 1);
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.search-form input[type="text"]::placeholder {
  color: var(--dark);
}

.search-form input[type="text"],
.search-form select {
  width: 100%;
  border-radius: 4px;
  height: 48px;
  border: solid 1px #b8b8b8;
  outline: none;
  padding: 5px 10px;
  background-color: rgba(255, 255, 255, 0.1);
}

.search-form input[type="text"]:focus,
.search-form select:focus {
  border-color: var(--primary);
}

.search-form select {
  appearance: none;
  -moz-appearance: none;
  background-image: url("../images/down-arrow-1.png");
  background-repeat: no-repeat;
  background-position: right 5px top 50%;
  /* background-size: 0.65rem auto; */
}

/*=== dropdown ==== */

.dropdown-wrapper {
  position: relative;
}

.dropdown-input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #333;
  border-radius: 4px;
  box-sizing: border-box;
}

.dropdown-box {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 99;
  padding-top: 6px;
  padding-bottom: 6px;
}

.dropdown-scroll {
  max-height: 200px; /* adjust as needed */
  overflow-y: auto;
}

.dropdown-scroll::-webkit-scrollbar-track {
  background-color: #f0f0f0;
}

.dropdown-scroll::-webkit-scrollbar {
  width: 5px;
  background-color: #ccc;
}

.dropdown-scroll::-webkit-scrollbar-thumb {
  background-color: #666;
  border-radius: 50px;
}

.dropdown-box::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 14px solid #ccc;
  z-index: 1001;
}

.dropdown-box::after {
  content: "";
  position: absolute;
  top: -13px;
  left: 21px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 13px solid white;
  z-index: 1002;
}

.dropdown-box ul {
  list-style: none;
  margin: 0;
  padding: 5px 0;
}

.dropdown-box li {
  padding: 6px 15px;
  cursor: pointer;
  position: relative;
  font-size: 15px;
  opacity: 0.8;
  font-weight: 500;
}

.dropdown-box li:hover,
.dropdown-box li.active {
  background-color: #f0f0f0;
}

.dropdown-box li.no-result {
  color: #888;
  font-style: italic;
  cursor: default;
}

.dropdown-box li span {
  position: absolute;
  right: 10px;
  font-size: 12px;
  opacity: 0.5;
  font-weight: 600;
}

.dropdown-box li.city {
  margin-top: 2px;
  font-size: 16px;
  opacity: 1;
}

/* ==== END DROPDOWM ==== */

.search-btn {
  transition: all 0.4s;
  outline: none;
  border: none;
  border-radius: 4px;
  background-color: var(--primary);
  color: #fff;
  width: 100%;
  height: 48px;
  font-size: 18px;
}

.search-btn:hover {
  background-color: var(--secondary);
}

.popular-city-list {
  margin-top: 20px;
  padding: 0 15px;
}

.popular-city-list li {
  display: inline-block;
  margin-right: 10px;
  margin-top: 5px;
}

.popular-city-list li a {
  padding: 5px 10px;
  color: var(--dark);
  border: solid 1px #fff;
  border-radius: 4px;
  transition: all 0.2s;
}

.popular-city-list li a:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.side-menu-overlay {
  position: fixed;
  width: calc(100% - 360px);
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 0.4s;
  visibility: hidden;
  opacity: 0;
  z-index: 9999;
}

.side-menu-overlay-show {
  visibility: visible;
  opacity: 1;
}

.side-menu {
  width: 100%;
  height: 100%;
  max-width: 360px;
  background-color: #fff;
  padding: 0px 0px 20px 0px;
  overflow-y: auto;
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s;
  box-shadow: -4px 5px 5px 0px rgba(0, 0, 0, 0.2);
  z-index: 99999;
}

.side-menu-show {
  opacity: 1;
  visibility: visible;
}

.close-menu {
  font-size: 25px;
  cursor: pointer;
  position: absolute;
  right: 41px;
  top: 15px;
  color: var(--dark);
}

.login-link-sec {
  width: 100%;
  height: 60px;
  background-color: #f0f0f0;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-top: solid 3px var(--primary);
}

.login-link-sec a {
  color: var(--primary);
  font-weight: 700;
  font-size: 17px;
}

.login-link-sec a i {
  font-size: 22px;
}

.side-menu-post-link {
  padding: 0 50px;
}

.side-menu-post-link a {
  padding: 5px 15px 10px;
  color: #fff;
  background-color: var(--primary);
  display: block;
  border-radius: 50px;
  text-align: center;
  font-size: 16px;
  border: solid 2px var(--primary);
  transition: all 0.3s;
}

.side-menu-post-link a i {
  font-size: 20px;
  padding-right: 7px;
}

.side-menu-post-link a:hover {
  color: var(--primary);
  background-color: var(--white);
}

.side-menu-list {
  margin-top: 25px;
  padding: 0 20px;
}

.side-menu-list li {
  margin-bottom: 10px;
}

.side-menu-list li a {
  display: block;
  padding: 7px 10px;
  font-size: 15px;
  color: var(--dark);
  border: solid 1px #d5d5d5;
  transition: all 0.3s;
  font-weight: 500;
  border-radius: 5px;
  background-color: #f0f0f0;
}

.side-menu-list li a:hover {
  color: var(--primary);
  border-color: var(--primary);
  padding-left: 20px;
}

.side-menu-list-2 {
  margin-top: 50px;
  padding: 0 20px;
}

.side-menu-list-2 li a {
  color: var(--dark);
  font-size: 16px;
  padding: 8px 10px;
  display: block;
  border-bottom: solid 1px #d5d5d5;
  transition: all 0.3s;
}

.side-menu-list-2 li a:hover {
  color: var(--primary);
}

.side-menu-social-list {
  margin-top: 30px;
  padding: 0 20px;
}

.side-menu-social-list h5 {
  font-size: 16px;
}

.side-menu-social-list ul {
  margin-top: 20px;
}
.side-menu-social-list ul li {
  display: inline-block;
  margin-right: 15px;
}

.side-menu-social-list ul li a {
  width: 35px;
  height: 35px;
  border-radius: 100%;
  background-color: #e8e8e8;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s;
}

.side-menu-social-list ul li a img {
  transition: all 0.4s;
}

.side-menu-social-list ul li a:hover {
  background-color: var(--primary);
}

.side-menu-social-list ul li a:hover img {
  filter: invert();
}

.side-menu-social-list ul li:last-child img {
  width: 20px;
}

.inner-sec {
  width: 100%;
  padding: 20px 0;
}

.title {
  font-size: 20px;
  color: var(--dark);
  font-weight: 700;
}

.sub-title {
  font-size: 18px;
  color: var(--dark-light);
  font-weight: 600;
}

.primary-color {
  color: var(--primary);
}

.secondary-color {
  color: var(--secondary);
}

option:hover {
  color: var(--primary);
}

.featured-sec {
  width: 100%;
  min-height: 300px;
  background-color: var(--light1);
  border-radius: 10px;
  border: solid 1px #e8e8e8;
  transition: all 0.5s;
}

.featured-sec:hover {
  border-color: #ccc;
  background-color: var(--primary-light);
}

.featured-img {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 0 0 10px;
  transition: all 0.5s;
}

.featured-views {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 5px 8px;
  font-size: 12px;
  background-color: rgba(255, 255, 255, 0.85);
  color: var(--dark);
  border-radius: 4px;
  font-weight: 500;
}

.featured-details {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 10px;
  position: relative;
}

.pr-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary);
}

.featured-loc {
  opacity: 0.8;
  font-size: 14px;
}

.featured-price {
  font-size: 24px;
  color: var(--dark);
  font-weight: 600;
  margin-top: 10px;
}

.featured-postedby span {
  color: var(--secondary);
  font-weight: 500;
}

.swiper {
  border-radius: 10px;
  position: relative;
  z-index: 0;
}

/* ===== SWIPER ==== */
/* Common button styles */

.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  height: 40px;
  background-color: #fff; /* Button background */
  color: var(--primary); /* Arrow color */
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}

/* Adjust icon (arrow) size */
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}

/* Positioning */
.swiper-button-next {
  right: 10px;
}

.swiper-button-prev {
  left: 10px;
}

/* .swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #333;
  color: #fff;
} */

/* ===== END SWIPER ==== */

.ds-icon {
  width: 100%;
  min-height: 100px;
  background-color: var(--light);
  padding: 15px;
  text-align: center;
  border-radius: 10px;
  transition: all 0.4s;
}

.ds-icon img {
  width: 60px;
  margin-bottom: 10px;
  opacity: 0.7;
}

.ds-icon h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
}

.ds-icon:hover {
  background-color: var(--primary);
}

.ds-icon:hover h5 {
  color: var(--white);
}

.ds-icon:hover img {
  filter: invert();
  opacity: 0.9;
}

.emi-sec {
  width: 100%;
  min-height: 127.19px;
  background-color: var(--light);
  padding: 15px;
  text-align: center;
  border-radius: 10px;
  transition: all 0.4s;
  display: flex;
  justify-content: space-around;
  align-items: center;
  transition: all 0.4s;
}

.emi-sec:hover {
  background-color: var(--secondary);
}

.emi-sec h6 {
  line-height: 24px;
}

.emi-sec:hover h6 {
  color: var(--white);
}

.emi-icon {
  width: 90px;
  height: 90px;
  background-color: var(--white);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.emi-icon img {
  width: 50px;
}

.pricing-box {
  width: 100%;
  padding: 30px 60px;
  background-color: var(--light1);
  border-radius: 10px;
  border: solid 1px #f0f0f0;
  min-height: 300px;
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
  /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
  transition: all 0.4s;
}

/* .pricing-box:hover {
  box-shadow: none;
} */

.pricing-box.popular {
  background-color: var(--primary);
  color: #fff;
  box-shadow: none;
}

.pricing-box h1 {
  font-size: 20px;
  text-align: center;
  font-weight: 700;
}

.pricing-list {
  margin-top: 40px;
}

.pricing-list li {
  margin-bottom: 25px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
}

.fw-stroke {
  -webkit-text-stroke: 1px;
}

.pricing-badge {
  position: absolute;
  top: 5px;
  right: -38px;
  padding: 10px 35px 5px 74px;
  transform: rotate(45deg);
  background-color: var(--primary);
  color: #fff;
}

.choose-plan-btn {
  width: 100%;
  min-height: 40px;
  color: #fff;
  background-color: var(--secondary);
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  transition: all 0.4s;
  border: solid 1px var(--secondary);
}

.choose-plan-btn:hover {
  background-color: var(--light1);
  color: var(--secondary);
}

.choose-plan-btn.disable,
.choose-plan-btn.disable:hover {
  background-color: #e8e8e8;
  border-color: #e8e8e8;
  color: #777;
}

.pr-box {
  width: 100%;
  padding: 8px;
  background-color: var(--white);
  border-radius: 10px;
  border: solid 1px #e8e8e8;
  /* margin-bottom: 20px; */
  transition: all 0.4s;
  position: relative;
  margin-bottom: 10px;
  box-shadow: 0 2px 10px  #d5d5d571;
}

.pr-box:hover {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-color: #999999;
}

.pr-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}

.pr-box h1 {
  font-size: 16px;
  font-weight: 600;
  padding-left: 1px;
}

.pr-box h2 {
  font-size: 12px;
  opacity: 0.8;
  font-weight: 500;
  position: relative;
  padding-left: 18px;
}

.pr-box h2 span {
  color: var(--primary);
  position: absolute;
  left: 0;
}

.pr-price {
  display: flex;
  justify-content: space-between;
  padding: 12px 5px;
}

.pr-rera {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--dark);
  font-size: 14px;
  border-radius: 4px;
  font-weight: 600;
}

.ai-assbox {
  width: 100%;
  padding: 5px 5px;
  background-color: var(--white);
  /* border-radius: 10px; */
  /* border: solid 1px #d5d5d5; */
}

.ai-assbox h1 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 15px;
  color: var(--primary);
}

.brd-right {
  border-right: solid 1px var(--light);
}

.emi-overlay {
  position: fixed;
  z-index: 99999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}

.emi-overlay-show {
  opacity: 1;
  visibility: visible;
}

.emi-body {
  width: 100%;
  /* height: 700px; */
  background-color: var(--white);
  margin-top: 70px;
  border-radius: 10px;
  padding: 20px 30px;
  position: relative;
  overflow-y: auto;
}

.emi-body label {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
}

.emi-close-button {
  position: absolute;
  right: 15px;
  top: 5px;
  cursor: pointer;
  font-size: 22px;
}

.form-input {
  width: 100%;
  height: 50px;
  border-radius: 5px;
  outline: none;
  border: solid 1px #b6b6b6;
  transition: all 0.3s;
  padding-left: 10px;
}

.form-input:focus {
  border: solid 1px #00614e73;
  box-shadow: 0 0 5px #00614e73;
}

.btn-calculate {
  width: 100%;
  padding: 10px;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.btn-calculate:hover {
  background-color: var(--secondary);
  transform: translateY(-2px);
}

.result-box {
  background-color: #f8fafc; 
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  border: 1px solid #e2e8f0;
}
.result-box p {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  color: #475569; 
  margin-bottom: 8px;
}
.result-box p:last-child {
  margin-bottom: 0;
}
.result-box span:first-child {
  font-weight: 500;
}
.result-box span:last-child {
  font-weight: 700;
  color: #1e3b31; 
}
.result-box.total {
  background-color: #f7fffd; 
  border-color: #9ef1e4; 
  font-size: 18px;
  font-weight: 700;
  color: #2e8158; 
}
canvas {
  max-width: 100%;
  height: auto;
  display: block; /* Remove extra space below canvas */
  margin: 0 auto; /* Center the canvas */
}

.agent-pr {
  display: flex;
  min-height: 100px;
  align-items: center;
  justify-content: space-around;
  padding: 10px;
  border-radius: 10px;
  border: solid 1px #e8e8e8;
  margin-bottom: 15px;
  background-color: var(--light);
  transition: all 0.5s;
}

.agent-pr:hover {
  border: solid 1px #d5d5d5;
}

.agent-pr img {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  object-fit: cover;
  box-shadow: 0 0px 5px #f78c016c;
  transition: all 0.5s;
}

.agent-pr:hover img {
  box-shadow: 0 0px 7px #00614eb2;
}

.agent-pr h5 {
  font-size: 16px;
  font-weight: 600;
}

.agent-pr:hover h5 {
  color: var(--primary);
  transition: all 0.5s;
}

.agent-pr h6 {
  opacity: 0.8;
  font-weight: 300;
  transition: all 0.5s;
}

.agent-pr:hover h6 {
  color: var(--secondary);
}

.blog-main {
  width: 100%;
  border-radius: 10px;
  border: solid 1px #e8e8e8;
  transition: all 0.5s;
  min-height: 280px;
  /* background-color: var(--light1); */
  box-shadow: 0 2px 10px  #d5d5d571;
}

.blog-img {
  width: 100%;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.blog-img img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: top;
  border-radius: 10px 10px 0 0;
  transition: all 0.5s;
}

.blog-main:hover .blog-img img {
  transform: scale(1.1);
}

.blog-main h1 {
  font-size: 16px;
  transition: all 0.4s;
}

.blog-main:hover h1 {
  color: var(--primary);
}

.blog-main p {
  font-size: 14px;
  line-height: 20px;
}

.blog-link {
  position: relative;
  transition: all 0.3s;
}

.blog-link i {
  position: absolute;
  right: -25px;
  top: -4px;
  font-size: 24px;
}

.blog-link:hover {
  color: var(--secondary);
}

.blog-main:hover .blog-link {
  color: var(--secondary);
}

.help-box {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-height: 150px;
  padding: 10px;
  border: solid 1px #e8e8e8;
  border-radius: 10px;
  background: var(--light);
}

.help-box h6 {
  font-weight: 600;
  padding-top: 12px;
}

.help-box img {
  width: 100%;
  max-width: 70px;
  opacity: 0.7;
}

.testimonial-sec {
  width: 100%;
  padding: 20px;
  min-height: 315px;
  background-color: #fcfaf7;
  border: solid 1px #e8e8e8;
  border-radius: 10px;
  /* display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start; */
}

.testimonial-sec p {
  font-style: italic;
  color: var(--dark);
  padding-top: 20px;
}

.profile-pic {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 100%;
}

footer {
  width: 100%;
  min-height: 300px;
  padding: 30px 0;
  /* background-color: var(--light);  */
  background: linear-gradient(160deg,rgba(255, 132, 0, 0.05) 0%, rgba(0, 97, 77, 0.1) 100%);
}

.fc-links {
  margin-top: 15px;
}

.fc-links li {
  margin-bottom: 15px;
  position: relative;
}

.fc-links li i {
  padding-right: 5px;
}

footer h4 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 35px;
}

.f-links {
  margin-top: 10px;
}

.f-links li {
  margin-bottom: 10px;
}

.f-links li a {
  transition: 0.3s;
}

.f-links li a:hover {
  color: var(--primary);
}

.btm-footer {
  width: 100%;
  background-color: #1c382f;
  padding: 12px 0px;
}

.btm-footer p {
  color: #fff;
  margin-bottom: 0;
}