body {
  font-size: 16px;
  background: var(--body_background);
}

a {
  color:var(--link_text);
  text-decoration: none;
}

a:hover {
  color:var(--link_text_hover);
}

.btn-primary {
  background: var(--button_background) !important;
  border-color: var(--button_background) !important;
  color: var(--button_text) !important;
}
.btn-primary:hover {
  background: var(--button_background_hover) !important;
  border-color: var(--button_background_hover) !important;
  color: var(--button_text_hover) !important;
}

.breadcrumb-bg {
  background: #f0f0f0;
  font-size: 13px;
  padding:8px 0;
}

.breadcrumb {
  margin:0;
  font-size:12px;
  padding: 0;
}

.breadcrumb > li:first-child {
  padding: 0 20px 0 0;
}

.breadcrumb > li {
  padding: 0 20px;
  position: relative;
  white-space: nowrap;
}

.breadcrumb > li:after {
  content: '';
  display: block;
  position: absolute;
  top: 5px;
  right: -5px;
  width: 7px;
  height: 7px;
  border-right: 1px solid #d1d1d1;
  border-bottom: 1px solid #d1d1d1;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.breadcrumb > li:last-child {
  font-weight: 500;
}

.breadcrumb > li:last-child:after {
  display: none;
}

.breadcrumb > li:after {
  content: '';
  display: block;
  position: absolute;
  top: 5px;
  right: -5px;
  width: 7px;
  height: 7px;
  border-right: 1px solid #999;
  border-bottom: 1px solid #999;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.breadcrumb > li:last-child:after {
  display: none;
}

#home-page h1, #home-page h2 {
  font-size: 30px;
  font-weight: normal;
}

#service-page, #contact-page, #information-page {
  margin-top:20px;
  min-height: 400px;
}

.services .service__item {
  position: relative;
  overflow: hidden;
  color: white;
  min-height: 280px;
  background: #000;
}

.services .service__item:has(img)::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
 }

.services .service__item img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.services .service__item h5 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.services .service__item:hover h5 {
  text-decoration: underline;
}

.services .service__item ul, .services .service__item h5, .services .service__item p {
  position: relative;
  z-index: 2;
  padding: 0;
  margin: 0;
}

.services .service__item a {
  color:#FFF;
  text-decoration: none;
}

.services .service__item a:hover {
  text-decoration: underline;
}

.services .service__item li {
  margin-bottom:10px;
}

.services .service__item li:last-child {
  margin-bottom:0px;
}

.services .service__item li a {
  color:#ffc600;
  font-size: 16px;
}

.reviews {
  background: #efefef;
}

.reviews .review-item {
  background: #FFF;
}

.reviews .review-item .review-text {
  border-bottom: 1px solid #e7e7e7;
}

.reviews .review-item .review-author {
  font-size: 16px;
  font-weight: bold;
}

.reviews .review-item .review-city {
  font-size: 14px;
  font-weight: normal;
  color:#999999;
}

.reviews .review-item img {
  border-radius: 50%;
}

.reviews .review-item svg {
  margin-right: -3px;
  height:15px;
}

.reviews .review-item svg.active path {
  fill: #FFD953;
}

.reviews .review-item svg path {
  fill: #E1E2E4;
}

.arguments {
  border-top:1px solid #e7e7e7; 
  border-bottom:1px solid #e7e7e7; 
}

.arguments .argument-item {
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 959px) {
  .arguments .argument-item {
    font-size: 14px;
    font-weight: 600;
  }
}

.form .border {
  border:5px solid #ffc600 !important;
}

.category-navigation a.active {
  color: #999999 !important;
}
.category-navigation li.main-category a {
  font-weight: 600;
}
.category-navigation li.children-category a {
  font-weight: 400;
}

hedaer {
  background: var(--header_background);
}

header a[href^="tel"] {
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    color:#000;
}

#header-mobile {
  border-bottom:1px solid #e7e7e7; 
}

#mobileMenu .nav-item a {
  font-weight: 600;
  color:#000;
}

#mobileMenu a[href^="tel"] {
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    color:#000;
}

footer {
  background: var(--footer_background);
  color: var(--footer_text);
  font-size: 12px;
}

footer a {
  text-decoration: none;
  color:var(--footer_link);
  font-size: 14px;
}

footer ul a:hover {
  color:var(--footer_link_hover);
  text-decoration: underline;
}

footer h6  {
  color:var(--footer_title);
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 20px;
}

footer ul {
  margin:0;
  padding:0;
}

footer .footer-services {
  border-bottom: 1px solid var(--footer_border);
  padding-bottom: 50px;
}