.section-block {
  background: #f7f5ef;
  padding: 20px;
  margin: 20px 0;
  border-radius: 18px;
  font-family: Arial, sans-serif;
}

.section-title {
  font-size: 22px;
  font-weight: bold;
  color: #2b4d2b;
  margin-bottom: 10px;
}

.item-block {
  background: #ffffff;
  padding: 15px;
  margin-top: 12px;
  border-radius: 14px;
  border-left: 5px solid #4f8a4f;
}

.item-block div {
  margin: 4px 0;
  line-height: 1.4;
}

.label {
  font-weight: bold;
  color: #333;
}

.priority-high {
  color: red;
  font-weight: bold;
}

.priority-mod {
  color: #c39b00;
  font-weight: bold;
}

.priority-supp {
  color: purple;
  font-weight: bold;
}

#btn1 {
  padding: 49px 42px;
  margin-left: 13%;
  font-size: 1.06em;
  color: #222;
  border-radius: 12px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  display: inline-block;
  transition: background-color 0.3s ease;
}

body {
  font-family: Arial, sans-serif;
  color: #2a2a2a;
  background-color: #fafafa;
  margin: 20px;
  line-height: 1.6;
}

h1 {
  color: #2e5939;
  text-align: center;
}

h2 {
  color: #4a7d59;
  border-bottom: 2px solid #b0d6b0;
  padding-bottom: 5px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
  background: #fff;
}

th,
td {
  border: 1px solid #dcdcdc;
  padding: 10px;
  text-align: left;
  vertical-align: top;
}

th {
  background-color: #e8f4ea;
}

tr:nth-child(even) {
  background-color: #f5fbf5;
}

.note {
  background-color: #fffde7;
  border-left: 5px solid #f5c300;
  padding: 10px 15px;
  margin-top: 20px;
  font-style: italic;
}

.toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 12px;
  padding: 8px;
  border-radius: 8px;
  background: transparent;
  border: none;
  font-size: 15px;
}

.toggle:focus {
  outline: 2px solid rgba(59, 130, 246, 0.18)
}

/* Mobile responsiveness */
@media (max-width: 950px) {
  #btn1 {
    margin-left: 5%;
    font-size: 0.97em;
    padding-left: 7px 20px;
    margin-left: 1%;
    width: 100%;
    /* makes the button take full width on smaller screens */
    box-sizing: border-box;
  }
}

.spanknowmore {
  color: red;
}
.popupad {
  display: none;
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.85);
  z-index: 10000 !important;
  justify-content: center;
  align-items: center;
}
.popupad.show { display: flex !important; }
.ad-content {
  position: relative;
  margin: 0 auto;
  max-width: 500px;
  max-height: 90vh;
  overflow: auto;
}
#adClose {
  position: absolute;
  right: 6px;
  top: 2px;
  font-size: 32px;
  cursor: pointer;
  color: white;
  z-index: 10001;
}

.popup {
  max-height: 80vh;
  /* Limits popup height to 80% of viewport height */
  overflow-y: auto;
  /* Enables vertical scrollbar if content exceeds max-height */
  overflow-x: hidden;
  /* Hides horizontal scrollbar */
  padding: 20px;
  background: #b0d6b0;
  border: 1px solid black;
  position: fixed;
  /* For consistent positioning */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1050;
  /* Ensure popup is on top */
  width: 90%;
  display: none;
  /* Show/hide with JS */
}



.banner-img {
  display: block;
  /* ensures the image is treated as a block element */
  margin-left: auto;
  /* center the image horizontally */
  margin-right: auto;
  /* center the image horizontally */
  max-width: 83vw;
  /* keep image within viewport width */
  height: auto;
  /* maintain aspect ratio */
  object-fit: cover;
  /* cover the container */

}

@media (max-width: 600px) {
  .banner-img {
    height: 100%;
    width: 100%;

  }

  #ddlproduct,
  .dropdownIndex {
    border-radius: 12px;
    width: 99%;
  }
}
.centered-msg {
  position: absolute;
  top: 93.5%;
  left: 63%;
  transform: translate(-50%, -50%);
  color: #f0d55d;
  font-size: 1.3em;
  padding: 15px 20px;
  box-shadow: 0 7px 22px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 16px;
  width: 45%;

}

/* For mobile devices */
@media (max-width: 600px) {
  .centered-msg {
    position: absolute;
    top: 90.5%;
    left: 63%;
    transform: translate(-50%, -50%);
    color: #f0d55d;
    font-size: 0.8em;
    padding: 15px 20px;
    box-shadow: 0 7px 22px rgba(0, 0, 0, 0.16);
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 16px;
    width: 58%;

  }
}


#ddlproduct,
.dropdownIndex {

  background-color: #6b5ca5;
  /* same as centered-msg background */
  color: white;
  /* same text color */
  border: 2px solid #f0d55d;
  border-radius: 12px;
  padding: 0 12px;
  cursor: pointer;
  outline: none;
}

/* Remove default dropdown arrow if needed */
/* #ddlproduct {
  -webkit-appearance: none; 
  -moz-appearance: none; 
  appearance: none;
  background-image: url("custom-arrow.svg"); Optional custom arrow
  background-repeat: no-repeat;
  background-position: right 10px center;
} */

#ddlproduct option {
  background-color: white;
  color: black;
  font-weight: normal;
  font-size: 1em;
}

.sub-btn {
  position: absolute;
  top: 76%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fee389;
  color: #222;
  font-size: 1.06em;
  padding: 4px 42px;
  border-radius: 12px;
  font-weight: bold;
  border: 2px solid #eee;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.10);
  text-align: center;
}

/* Mobile responsiveness */
@media (max-width: 950px) {
  .container {
    width: 98vw;
  }

  .logo {
    width: 5px;
  }

  .button-37 {
    height: 30px;
    margin-top: 2px;
  }

  .button-38 {
    margin-top: 7px;

  }

  .sub-btn {
    font-size: 0.6em;
    padding: 0px 0px;
    margin-top: 8.5%;
    width: 43%;
  }
}

body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: linear-gradient(90deg, #6caf6c 0%, #415d3d 100%);
}

.main-banner {
  width: 100%;
  min-height: 337px;
  background-color: #51944a;
  margin-top: 5%;
  color: #feecc0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  box-sizing: border-box;
}

.specs {
  font-size: 0.97em;
  margin-top: 22px;
  color: #D9E5C9;
}

.cta-btn {
  display: inline-block;
  background: #EEC049;
  color: #34564C;
  font-weight: bold;
  padding: 15px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1em;
  margin-top: 16px;
  margin-right: 12px;
}

.main-card {
  background: #D9E5C9;
  color: #34564C;
  border-radius: 15px;
  padding: 22px 30px;
  margin-bottom: 24px;
  font-size: 1.3em;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.left-circle {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: #fffdfa;
  border: 6px solid #b33c36;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-right: 32px;
  margin-left: 8%;
  box-shadow: 0 0 10px #a9cc9d77;
}

.watch-icon {
  position: absolute;
  left: 38px;
  top: 71px;
  width: 42px;
  height: 60px;
  background: #e6f2ea;
  border-radius: 10px;
  border: 2px solid #444;
  text-align: center;
  font-size: 34px;
  color: #d7322b;
  line-height: 60px;
  font-weight: bold;
  z-index: 1;
}

.report-icon {
  position: absolute;
  right: 38px;
  top: 57px;
  width: 60px;
  height: 51px;
  background: #fff5f5;
  border-radius: 5px;
  border: 2px solid #888;
  text-align: center;
  font-size: 38px;
  color: #b33c36;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.borderline-text {
  position: absolute;
  bottom: 16px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 1.04rem;
  font-weight: bold;
  color: #b33c36;
  letter-spacing: 1.5px;
}

.right-content {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  min-width: 350px;
  margin-left: 20%;
  z-index: 10;
}

.main-headline {
  font-size: 2.1rem;
  font-weight: bold;
  letter-spacing: 2.5px;
  color: #feecc0;
  margin-bottom: 9px;
  margin-left: -8%;
  text-shadow: 0 2px 10px #395a28a0;
}

.sub-headline {
  font-size: 1.35rem;
  font-weight: bold;
  margin-left: 40%;
  color: #feecc0;
  margin-bottom: 10px;
}

.main-desc {
  font-size: 1.15rem;
  font-weight: 500;
  color: #feecc0;
  margin-left: 25%;
  text-shadow: 0 1px 2px #0004;
}

@media (max-width: 1200px) {
  .main-banner {
    flex-direction: column;
    align-items: center;
    min-height: 0;
    padding: 16px 1vw;
  }

  .left-circle {
    margin-right: 5%;
    margin-bottom: 5%;
    margin-top: 26%;
    width: 80px;
    height: 80px;
  }

  .right-content {
    min-width: 0;
  }

  .main-headline {
    font-size: 1.22rem;
  }

  .main-desc,
  .sub-headline {
    font-size: 1.03rem;
  }
}

.banner-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  /* Optional for rounded edges */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
  /* Optional for subtle shadow */
}

.banner-container {
  width: 100%;
  padding: 16px;
  background: #eaf5e1;
  /* Light background */
  text-align: center;
}

/* flip card */
.flip-card {
  perspective: 1000px
}

.card {
  background: transparent;
  border-radius: var(--radius);
  width: 100%;
  height: 220px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform .6s cubic-bezier(.2, .9, .3, 1);
  box-shadow: var(--shadow)
}

.flip-card:focus-within .card,
.flip-card:hover .card {
  transform: rotateY(180deg)
}

.card-face {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center
}

.front {
  background: #feecc0;
  border: 2px solid rgba(10, 10, 10, 0.932);
}

.back {
  background: #b0d6b0;;
  border: 2px solid rgba(10, 10, 10, 0.932);
  transform: rotateY(180deg)
}

.icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 28px;
  border: 2px dashed var(--accent);
  color: var(--accent);
  margin-bottom: 12px
}

.q {
  font-weight: 600;
  color: var(--accent);
  font-size: 16px;
  margin: 0
}

.a {
  color: var(--muted);
  font-size: 14px;
  margin-top: 8px;
  line-height: 1.45
}

.caption {
  margin-top: 12px;
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .06em
}

/* accessible button overlay to allow keyboard users to flip */
.flip-btn {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: transparent;
  border: 0;
  cursor: pointer
}

:root {
  --bg: #f5efe6;
  /* soft beige */
  --card-bg: #ffffff;
  --accent: #184d2f;
  /* dark green */
  --muted: #6b6b6b;
  --radius: 14px;
  --shadow: 0 6px 18px rgba(24, 77, 47, 0.08);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

html,
body {
  height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--accent)
}

.wrap {
  max-width: 1173px;
  margin: 1px auto;
  padding: 1px
}

header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 70%;
  margin-left: 18%;
}

.logo {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(180deg, #eaf6ec, #f5f8f5);
  display: grid;
  place-items: center;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 700
}

h1 {
  font-size: 20px;
  margin: 0
}

p.lead {
  margin: 6px 0 20px;
  width: 100%;
  color: var(--muted);
  font-size: 14px
}

/* grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px
}

/********** Template CSS **********/
/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}

:root {
  --bg: #FEF6F2;
  --accent: #C94A45;
  /* warm heart red */
  --muted: #55606a;
  --card: #ffffff;
  --glass: rgba(255, 255, 255, 0.55);
  --radius: 14px;
  --shadow: 0 6px 24px rgba(8, 20, 30, 0.08);
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

* {
  box-sizing: border-box
}

body {
  margin: 0;
  background: linear-gradient(180deg, var(--bg), #fff);
  color: var(--muted);
}

.banner {
  max-width: 1200px;
  margin: 28px auto;
  padding: 28px;
  border-radius: 20px;
  background: url(../img/bg.png) center center no-repeat;
  display: flex;
  align-items: center;
  gap: 28px;
  box-shadow: var(--shadow);
}

.hero-left-new {
  margin-left: 34px;
  flex: 1;
  min-width: 0
}

.eyebrow {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--glass);
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px
}

h1 {
  font-size: 28px;
  line-height: 1.05;
  margin: 25px 0 2px;
  color: #1f2b2f
}

.ctas {
  display: flex;
  gap: 12px;
  align-items: center
}

.btn {
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 700;
  border: 0;
  cursor: pointer
}

.btn-primary {
  background: linear-gradient(90deg, var(--accent), #E36B64);
  color: white;
  box-shadow: 0 6px 18px rgba(201, 74, 69, 0.18)
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(31, 43, 47, 0.08);
  color: var(--muted)
}

.hero-right-new {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  justify-content: center
}

.card {
  background: var(--card);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(16, 32, 40, 0.06)
}

/* decorative SVG styling */
.icon-heart {
  width: 160px;
  height: 160px
}

.small-note {
  font-size: 12px;
  color: #66707a;
  margin-top: 4px
}

@media (max-width:880px) {
  .banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px
  }

  .hero-right {
    width: 100%;
    order: -1
  }

  .icon-heart {
    width: 140px;
    height: 140px
  }

  h1 {
    font-size: 22px
  }
}

#spinner.show {
  transition: opacity .5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

.button-38 {
  background-color: yellow;
  /* Yellow background */
  border-radius: 50px;
  /* Oval shape */
  padding: 10px 30px;
  /* Adjust padding for oval shape */
  border: none;
  /* Remove border */
  color: black;
  /* Text color for contrast */
  cursor: pointer;
  /* Pointer cursor on hover */
  font-size: 30px;
  /* Optional: adjust text size */

}


.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

img.animated.pulse {
  animation-duration: 5s;
}

/*** Button ***/
.btn {
  font-weight: 500;
  transition: .5s;
}

.btn.btn-primary {
  color: var(--bs-white);
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 50px;
}

/* CSS */
.button-37 {
  background-color: #dc3545;
  border: 1px solid #dc3545;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, .1) 0 2px 4px 0;
  box-sizing: border-box;
  margin-left: 5%;
  color: #fff;
  cursor: pointer;
  font-family: "Akzidenz Grotesk BQ Medium", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 400;
  outline: none;
  outline: 0;
  padding: 4px 25px;
  text-align: center;
  transform: translateY(0);
  transition: transform 150ms, box-shadow 150ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-37:hover {
  box-shadow: rgba(0, 0, 0, .15) 0 3px 9px 0;
  transform: translateY(-2px);
}

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



/*** Navbar ***/
.sticky-top {
  top: -150px;
  transition: .5s;
}


.dropdown-toggle {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background: #007bff;
  color: white;
  cursor: pointer;
  border: none;
  text-align: left;
  border-radius: 4px;
}

.dropdown-toggle:hover {
  background: #0056b3;
}

.dropdown-menu {
  display: none;
  position: absolute;
  width: 100%;
  background: white;
  border: 1px solid #ddd;
  margin-top: 2px;
  border-radius: 4px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: #f1f1f1;
}


.navbar {
  padding: 11px 0 !important;
  height: 85px;
}

.p {
  color: black;
}

.navbar .navbar-nav .nav-link {
  margin-right: 45px;
  padding: 0;
  color: var(--bs-dark);
  font-weight: 500;
  transition: .5s;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--bs-white);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav {
    padding: 0 15px;
    background: var(--bs-primary);
  }

  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: .5s;
    opacity: 1;
  }
}


/*** Hero Header ***/
.hero-header {
  position: relative;
  margin-top: -210px;
  padding-top: 13rem;
  padding-bottom: 2rem;
  background: url(../img/bg.png) center center no-repeat;
  background-size: cover;
}

.hero-header::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, .1);
  clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.hero-header .container {
  position: relative;
  z-index: 1;
}

.hero-header .breadcrumb-item+.breadcrumb-item::before {
  color: var(--bs-light);
}


/*** Feature ***/
.feature-item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, .1);
  clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.feature-item .border {
  position: relative;
  border-color: rgba(255, 255, 255, .2) !important;
  z-index: 1;
}


/*** Deal ***/
.deal {
  position: relative;
  background: url(../img/bg.png) center center no-repeat;
  background-size: cover;
}

.deal::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, .1);
  clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.deal .bg-white {
  position: relative;
  z-index: 1;
}

.deal .cdt span {
  display: block;
  font-size: 16px;
  font-style: italic;
  font-weight: 200;
  text-transform: capitalize;
}


/*** How To Use ***/
.how-to-use {
  position: relative;
  background: url(../img/bg.png) center center no-repeat;
  background-size: cover;
}

.how-to-use::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, .1);
  clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.how-to-use .container {
  position: relative;
  z-index: 1;
}

.how-to-use .border {
  border-color: rgba(255, 255, 255, .2) !important;
}


/*** Product ***/
.product-item {
  transition: .1s;
}

.product-item:hover {
  border-width: 0 !important;
  box-shadow: 0 0 35px rgba(144, 188, 121, .25);
}

.product-item:hover a.btn {
  color: var(--bs-white);
  background: var(--bs-primary);
}


/*** Testimonial ***/
.testimonial {
  position: relative;
  background: url(../img/bg.png) center center no-repeat;
  background-size: cover;
}

.testimonial::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, .1);
  clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.testimonial .testimonial-carousel {
  position: relative;
  z-index: 1;
}

.testimonial-carousel .owl-item img {
  width: 120px;
  height: 120px;
  border-color: rgba(255, 255, 255, .2) !important;
  margin: 0 auto 20px auto;
  border-radius: 100px;
}

.testimonial-carousel .owl-dots {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 3px solid rgba(255, 255, 255, .2);
  border-radius: 30px;
  transition: .5s;
}

.testimonial-carousel .owl-dot.active {
  background: var(--bs-dark);
}

.clickable-image {
  cursor: pointer;
}

/*** Blog ***/
.blog-item {
  transition: .1s;
}

.blog-item:hover {
  border-width: 0 !important;
  box-shadow: 0 0 35px rgba(144, 188, 121, .25);
}

.blog-item:hover a.btn {
  color: var(--bs-white);
  background: var(--bs-primary);
}


/*** Contact ***/
.contact-info-item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, .1);
  clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.contact-info-item .border {
  position: relative;
  border-color: rgba(255, 255, 255, .2) !important;
  z-index: 1;
}


/*** Newsletter ***/
.newsletter {
  position: relative;
  background: url(../img/bg.png) center center no-repeat;
  background-size: cover;
}

.newsletter::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, .1);
  clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.newsletter .container {
  position: relative;
  z-index: 1;
}

.newsletter .form-control {
  background: rgba(255, 255, 255, .3);
}


/*** Footer ***/
.footer .btn.btn-link {
  display: block;
  margin-bottom: 10px;
  padding: 0;
  text-align: left;
  color: var(--bs-body);
  font-weight: normal;
  transition: .3s;
}

.footer .btn.btn-link:hover {
  color: var(--bs-primary);
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 3px solid var(--bs-light);
}

.footer .copyright a {
  color: var(--bs-body);
}

.footer .copyright a:hover {
  color: var(--bs-primary);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 3px solid var(--bs-light);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}