@font-face {
    font-family: 'SharpGroteskSMBold';
    src: url('/fonts/SharpGrotesk-Bold25.otf');
}

@font-face {
    font-family: 'Lobster';
    src: url('/fonts/Lobster_1.3.otf');
}
@font-face {
    font-family: 'square_721_bt';
    src: url('/fonts/square_721_bt.ttf');
}
@font-face {
    font-family: 'asphaltic';
    src: url('/fonts/3676-font.ttf');
}
@font-face {
    font-family: 'MYRIADPRO';
    src: url('/fonts/MYRIADPRO-REGULAR.otf');
}
body {background-image:url(/wa-data/public/site/img/foot.png); background-position: right bottom; background-repeat: no-repeat;}
.asphaltic {font-family: 'asphaltic', sans-serif;}
h1, .h1 {font-family: SharpGroteskSMBold, sans-serif;}
h2, .h2 {font-family: SharpGroteskSMBold, sans-serif;}
h3, .h3 {font-family: SharpGroteskSMBold, sans-serif;}
.lbcolor {color:#003399;}
.lborcolor {color:#ff6600;}
.lbbckg {background:#6aa400!important;}
nav {font-size:20px;}
nav a {color:#fff;}
nav a:hover {color:#f2f2f2;}
.logo {background:#ededed; margin-bottom:-50px;}
.headernav {background:#ff6600; min-height:50px;}
header {}
.foot-nav {border-bottom:1px solid #fff; font-size:16px; border-top:1px solid #fff; min-height:50px;}
.lobster {font-family: 'asphaltic';}
.redcont {background-image:url(/wa-data/public/site/img/redcont.png); background-position: center; background-repeat: repeat-y;}
.fs14 {font-size:14px!important;}
.fs18 {font-size:18px!important;}
.fs24 {font-size:24px!important;}
.fs60 {font-size:60px!important;}
.himbl {max-width:250px;height:3px; background:#ed292c;}
.himblwhite {max-width:250px;height:3px; background:white;}
/*.jump {transition: transform 0.3s ease-in-out;}
.jump:hover {transform: translateY(-5px);}*/
.jump:hover {animation: bounce 0.5s infinite alternate;}
.hometop {background-image:url(/wa-data/public/site/img/car.jpg); background-position: center; background-repeat: repeat-x;}
.bg-green {background:#6aa400;}

@keyframes bounce {
  0% {
    transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
  }
  20% {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
  }
  100% {
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
  }
}
.btn-lb {
  background-color: #ff6600!important;
  color: #fff!important;
}
.btn-lb:hover {
  background-color: #e05e07!important;
}

/*спойлеры html5*/
/* Скрываем стандартный треугольник */
details summary::-webkit-details-marker {
  display: none;
}
details summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
  outline: none;
}
/* Анимация для плавного раскрытия/скрытия */
details[open] summary ~ * {
  animation: openDetails 0.3s ease-out;
}
@keyframes openDetails {
  from {
    max-height: 0;
    opacity: 0;
  }
  to {
    max-height: 1000px; /* Задайте нужную высоту */
    opacity: 1;
  }
}