:root, [data-bs-theme=light] {
  --bs-dark-rgb: 55,121,61;
  --bs-emphasis-color-rgb: 255, 255, 255;
  --bs-emphasis-color: #555;
  --bs-primary-rgb: 0, 160, 227;
  --bs-primary: #00a0e3;
  --bs-secondary: #555;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--bs-heading-color);
  font-family: "lobster";
}

body {
  font-family: "Roboto", sans-serif;
}

.navbar-collapse.bg-dark {
  border: 0.75rem solid #FFF;
  border-radius: 3rem;
}

.navbar {
  --bs-navbar-nav-link-padding-x: auto;
  --bs-navbar-color: rgba(var(--bs-emphasis-color-rgb), 0.9);
  --bs-navbar-hover-color: rgba(var(--bs-emphasis-color-rgb), 0.99);
}

.navbar-nav .nav-item {
  Width: 100%;
  text-align: center;
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.navbar-nav .nav-item:has(.nav-link.active) {
  border-radius: 2rem;
  background-color: #4daa57;
}

.nav-item:hover {
  border-radius: 2rem;
  background-color: #4daa57;
}

img.logo-top {
  width: 230px;
  margin-top: -0.9rem;
}

.nav-link {
  font-size: 1rem;
}

@media (min-width: 1280px) {
  img.logo-top {
    width: 230px;
  }
}

@media (min-width: 1367px) {
  .nav-link {
    font-size: 1rem;
  }
}

a.phone-link {
  color: var(--bs-emphasis-color);
  font-size: 1.5rem;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #e4572e;
  --bs-btn-border-color: #e4572e;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #e04b1d;
  --bs-btn-hover-border-color: #e04b1d;
  --bs-btn-focus-shadow-rgb: 85, 122, 246;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #e04b1d;
  --bs-btn-active-border-color: #e04b1d;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: ##e4572e;
  --bs-btn-disabled-border-color: #e4572e;
}

.btn-success {
  --bs-btn-color: #fff;
  --bs-btn-bg: #479c4f;
  --bs-btn-border-color: #479c4f;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #4daa57;
  --bs-btn-hover-border-color: #4daa57;
  --bs-btn-focus-shadow-rgb: 60, 153, 110;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #4daa57;
  --bs-btn-active-border-color: #4daa57;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #4daa57;
  --bs-btn-disabled-border-color: #4daa57;
}

.offcanvas .nav-link {
  color: #37793d;
  font-size: 1.25rem;
}

.offcanvas .nav-item:hover {
  border-radius: 0;
  background-color: transparent;
  color: #4daa57;
}

header {
  z-index: 1;
  position: relative;
}

.hero-banner {
  margin-top: -3rem;
  z-index: 0;
  position: relative;
  border-radius: 4rem;
}

.hero-banner-second {
  margin-top: -3rem;
  z-index: 0;
  position: relative;
  border-radius: 4rem;
  margin-left: 1rem;
  margin-right: 1rem;
  height: 300px;
}

@media (max-width: 1200px) {
  .hero-banner {
    margin-top: 0rem;
    z-index: 0;
    position: relative;
    border-radius: 4rem;
  }
}

@media (max-width: 1200px) {
  .hero-banner-second {
    margin-top: 0rem;
    z-index: 0;
    position: relative;
    border-radius: 4rem;
    height: 200px;
  }
}

.offer {
  padding: 1.5rem;
  background-color: rgba(17,37,19,0.5);
  border-radius: 2rem;
}

@media (max-width: 450px) {
  .offer {
    max-width: 350px;
  }
}

.advantages {
  background-color: var(--bs-primary);
  background: url("../../assets/img/green-list-round-7.svg") 25% no-repeat, #0091cf;
  background-position: bottom -1px right -1px;
  height: 100%;
  align-items: center;
  display: flex;
}

.advantages h2 {
  font-family: 'Roboto';
}

.bg-blue {
  background-color: var(--bs-primary);
}

.bg-grey {
  background-color: #f9fcfa;
}

.bg-orange {
  background-color: #fef7f5;
}

.bg-blue-superlight {
  background-color: #edfaff;
}

.haracteristic li {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

ul.haracteristic {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

ul.haracteristic li {
  position: relative;
  padding-left: 1.25rem;
}

/* сама «точка» */

ul.haracteristic li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -0.25rem;
  color: #4daa57;
  font-size: 2.2rem;
  line-height: 1;
  transform-origin: center center;
}

/* пульсация только точки при наведении */

ul.haracteristic li:hover::before {
  animation: pulse-dot 0.9s ease-in-out infinite;
}

@keyframes pulse-dot {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}

.row-hover .item-project {
  margin-bottom: 0;
}

.item-project {
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  column-gap: 5px;
  font-size: 1.2rem;
}

.item-dotted {
  border-bottom: 1px dotted #ccc;
  flex-grow: 1;
  margin-left: 0.5rem;
}

.item-data {
  font-size: 1.35rem;
  font-family: "lobster";
}

.old-price {
  position: relative;
  display: inline-block;
}

.old-price::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 37%;
  width: 100%;
  border-bottom: 2px solid #e04b1d;
  transform: rotate(-10deg);
}

/* *table* */

table.rasp {
  border-collapse: collapse;
  table-layout: fixed;
  vertical-align: middle;
  border-radius: 1rem;
  overflow: hidden;
}

.table.rasp > :not(caption) > * > * {
  padding: 1rem 1rem;
}

table.rasp td {
  line-height: 1.3;
  --bs-table-striped-bg: #f7f7f7;
  --bs-table-hover-bg: #e3f7ff;
}

@media screen and (max-width: 600px) {
  table.rasp {
    border: 0;
  }
}

@media screen and (max-width: 600px) {
  .table.rasp > :not(caption) > * > * {
    padding: 0.75rem 0.75rem;
  }
}

@media screen and (max-width: 600px) {
  table.rasp thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
}

@media screen and (max-width: 600px) {
  table.rasp tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: .625em;
  }
}

@media screen and (max-width: 600px) {
  table.rasp td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: 1rem;
    text-align: right;
    line-height: 1.5;
  }
}

@media screen and (max-width: 600px) {
  table.rasp td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
    margin-right: 0.75rem;
  }
}

@media screen and (max-width: 600px) {
  table.rasp td:last-child {
    border-bottom: 0;
  }
}

/* *table* */

.modal-backdrop {
  --bs-backdrop-bg: #001017;
  --bs-backdrop-opacity: 0.75;
}

.modal {
  --bs-modal-color: #adb5bd;
  --bs-modal-bg: #1d4121;
  --bs-modal-border-color: rgba(255, 255, 255, 0.01);
  --bs-modal-header-border-color: #495057;
  --bs-modal-footer-border-color: #495057;
}

.modal-content {
  border-radius: 1rem;
}

.modal-header {
  background: #37793d;
}

.modal-body {
  background: url("../../assets/img/--------------------------------------------------(2)%20(1).webp") right bottom / 56% no-repeat;
}

@media screen and (max-width: 450px) {
  .modal-body {
    background: url("../../assets/img/--------------------------------------------------(2)%20(1).webp") right bottom / 43% no-repeat;
  }
}

.btn-close[data-bs-theme=light] {
  filter: var(--bs-btn-close-filter) !important;
  --bs-btn-close-white-filter: invert(1) grayscale(100%) brightness(200%) !important;
}

.pagination {
    --bs-pagination-padding-x: 0.75rem;
    --bs-pagination-padding-y: 0.375rem;
    --bs-pagination-font-size: 1rem;
    --bs-pagination-color: #00a0e3;
    --bs-pagination-bg: var(--bs-body-bg);
    --bs-pagination-border-width: var(--bs-border-width);
    --bs-pagination-border-color: var(--bs-border-color);
    --bs-pagination-border-radius: var(--bs-border-radius);
    --bs-pagination-hover-color: var(--bs-link-hover-color);
    --bs-pagination-hover-bg: var(--bs-tertiary-bg);
    --bs-pagination-hover-border-color: var(--bs-border-color);
    --bs-pagination-focus-color: var(--bs-link-hover-color);
    --bs-pagination-focus-bg: var(--bs-secondary-bg);
    --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    --bs-pagination-active-color: #fff;
    --bs-pagination-active-bg: #00a0e3;
    --bs-pagination-active-border-color: #00a0e3;
    --bs-pagination-disabled-color: var(--bs-secondary-color);
    --bs-pagination-disabled-bg: var(--bs-secondary-bg);
    --bs-pagination-disabled-border-color: var(--bs-border-color);
    display: flex;
    padding-left: 0;
    list-style: none;
}