/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 20 2025 | 21:20:13 */
/* TOC:
-----------------------------------
1. colors
2. typographics
3. margins & paddings
4. buttons
5. modificators
----------------------------------- */

/* 1. colors
----------------------------------- */
.bg-primary {
  background-color: var(--global-palette1);
}
.bg-secondary {
  background-color: var(--global-palette2);
}
.bg-dark {
  background-color: var(--global-palette4);
}
.bg-subtle {
  background-color: var(--global-palette7);
}
.bg-light {
  background-color: var(--global-palette8);
}
.bg-white {
  background-color: var(--global-palette9);
}
.bg-gradient {
  background: linear-gradient(right, var(--global-palette1), var(--global-palette2));
}
.bg-blurred {
  background-color: rgba(0,0,0,.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.bg-primary, .bg-primary a, .bg-primary .elementor-heading-title,
.bg-dark, .bg-dark a, .bg-dark .elementor-heading-title {
  color: var(--global-palette9);
}
.bg-light, .bg-light a, .bg-light .elementor-heading-title,
.bg-white, .bg-white a, .bg-white .elementor-heading-title {
  color: var(--global-palette3);
}
.text-primary {
  color: var(--global-palette1) !important;
}
.text-light, .text-light .elementor-heading-title {
  color: var(--global-palette8) !important;
}
.text-white, .text-white .elementor-heading-title {
  color: var(--global-palette9) !important;
}


/* 2. typographics
----------------------------------- */
a:hover, a:focus {
  text-decoration: underline;
}
body, html {
  font-size: 14px;
}
@media (min-width: 768px) {
body, html {
  font-size: 16px;
}
}
h1, h2, h3, h4, h5, h6, .elementor-heading-title {
  line-height: 1.1;
  margin: 0 !important;
}
.elementor-widget-container p, .single-content p:last-child, .custom-html-widget p {
  margin: 0 !important;
}
.elementor-widget-container p:not(:last-child) {
  margin-bottom: 0.5rem !important;
}
@media (min-width: 1025px) {
.large .elementor-heading-title {
  font-size: 4rem;
}
.h1 .elementor-heading-title {
  font-size: 3rem;
}
.h2 .elementor-heading-title {
  font-size: 2rem;
}
.h3 .elementor-heading-title {
  font-size: 1.75rem;
}
.h4 .elementor-heading-title {
  font-size: 1.5rem;
}
}
.lead {
  font-size: 1.25rem;
  line-height: 1.4;
}
.small {
  font-size: 0.875em;
}
.kicker .elementor-heading-title {
  background-color: var(--global-palette1);
  border-radius: 0.25rem;
  color: var(--global-palette9);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1;
  padding: 0.5rem 0.75rem;
  text-transform: uppercase;
}
.text-uppercase {
  text-transform: uppercase !important;
}


/* 3. margins & paddings
------------------------------ */
.section {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.elementor-column-gap-wide > .elementor-column > .elementor-element-populated, .column-gap-wide {
  padding: 1.5rem;
}
.elementor-column-gap-wider > .elementor-column > .elementor-element-populated, .column-gap-wider {
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  }
  .elementor-column-gap-wide > .elementor-column > .elementor-element-populated, .column-gap-wide {
  padding: 2rem;
  }
  .elementor-column-gap-wider > .elementor-column > .elementor-element-populated, .column-gap-wider {
  padding: 3rem;
  }
}
.mt-0 {
  margin-top: 0 !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 1rem !important;
}
.mb-2 {
  margin-bottom: 2rem !important;
}
.mb-3 {
  margin-bottom: 3rem !important;
}
.pt-0 {
  padding-top: 0 !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}


/* 4. buttons
------------------------------------- */
button, input[type="button"], input[type="reset"], input[type="submit"],
.button, .wp-block-button__link, .elementor-button-wrapper .elementor-button, .elementor-form .elementor-button {
  border-radius: 4.5rem;
  font-size: 1rem;
  padding: 1rem 2rem;
  line-height: 1;
  position: relative;
  text-decoration: none;
}
.elementor-button:hover, .elementor-button:focus {
  box-shadow: inset 0 0 100px 0 rgba(255,255,255,.25) !important;
}
/* btn colors */
.btn-primary .elementor-button,
.btn-primary .elementor-button:hover,
.btn-primary .elementor-button:focus,
.elementor-button[type="submit"] {
  background-color: var(--global-palette1);
  border-color: var(--global-palette1);
  color: var(--global-palette9);
  fill: var(--global-palette9);
}
.btn-dark .elementor-button,
.btn-dark .elementor-button:hover,
.btn-dark .elementor-button:focus {
  background-color: var(--global-palette3);
  border-color: var(--global-palette3);
  color: var(--global-palette9);
  fill: var(--global-palette9);
}
.btn-subtle .elementor-button,
.btn-subtle .elementor-button:hover,
.btn-subtle .elementor-button:focus {
  background-color: var(--global-palette7);
  border-color: var(--global-palette7);
  color: var(--global-palette3);
  fill: var(--global-palette3);
}
.btn-white .elementor-button,
.btn-white .elementor-button:hover,
.btn-white .elementor-button:focus {
  background-color: var(--global-palette9);
  border-color: var(--global-palette9);
  color: var(--global-palette3);
  fill: var(--global-palette3);
}

/* outlined buttons */
.btn-outline .elementor-button,
.btn-outline .elementor-button:hover,
.btn-outline .elementor-button:focus {
  background-color: transparent;
  border-color: var(--global-palette3);
  color: var(--global-palette3);
  fill: var(--global-palette3);
}
.btn-white-outline .elementor-button,
.btn-white-outline .elementor-button:hover,
.btn-white-outline .elementor-button:focus {
  background-color: transparent;
  border-color: var(--global-palette9);
  color: var(--global-palette9);
  fill: var(--global-palette9);
}
/*
#kt-scroll-up.scroll-visible {
  box-shadow: 0 0 1rem rgba(0,0,0,.1);
}
*/


/* 5. modificators
------------------------------------- */
.bordered {
  border: 1px solid var(--global-palette6);
}
.border-top {
  border-top: 1px solid var(--global-palette6);
}
.border-bottom {
  border-bottom: 1px solid var(--global-palette6);
}
.border-left {
  border-left: 1px solid var(--global-palette6);
}
.border-right {
  border-right: 1px solid var(--global-palette6);
}
.op-50 {
  opacity: 0.5 !important;
}
.op-75 {
  opacity: 0.75 !important;
}
.container-25 {
  max-width: 360px;
}
.container-40 {
  max-width: 480px;
}
.container-50 {
  max-width: 640px;
}
.container-75 {
  max-width: 960px;
}
.overflow-h {
  overflow: hidden !important;
}
.rounded {
  border-radius: .5rem;
  overflow: hidden;
}
.shadow {
  box-shadow: 0 0 1rem 0 rgba(0,0,0,.1);
}
.list-unlisted {
  list-style: none;
}
.single-content ul, .single-content ol {
  margin: 0 0 10px;
}
.widget-area ul {
  padding: 0;
  margin: 0;
}
.gap-1 > .elementor-element-populated {
  gap: 1rem;
}
.gap-2 > .elementor-element-populated {
  gap: 2rem;
}
.gap-3 > .elementor-element-populated {
  gap: 3rem;
}
.grid-2 > .elementor-element-populated,
.grid-3 > .elementor-element-populated,
.grid-4 > .elementor-element-populated {
  display: grid !important;
  grid-template-columns: repeat(1, 1fr) !important;
}
@media (min-width: 1024px) {
.grid-2 > .elementor-element-populated {
  grid-template-columns: repeat(2, 1fr) !important;
}
.grid-3 > .elementor-element-populated {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
}
.grid-4 > .elementor-element-populated {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
}
}


/* NAVBAR
===================================== */
.transparent-header #wrapper #masthead {
  padding-top: 10px;
  padding-left: 20px;
  padding-right: 20px;
}

#main-header .header-button {
  border: 2px none transparent;
  box-shadow: none;
  text-decoration: none;
}

/*
.header-navigation[class*="header-navigation-style-underline"] .header-menu-container > ul > li > a::after {
  height: 1.5px;
}
*/
.kadence-svg-iconset.svg-baseline svg {
  top: 0;
}
#mobile-toggle {
  position: relative;
  width: 3rem;
  height: 3rem;
}
.mobile-toggle-open-container .menu-toggle-open .menu-toggle-icon,
.mobile-toggle-open-container .menu-toggle-open .menu-toggle-icon:after {
  content: "";
  background: var(--global-palette3);
  height: 2px;
  width: 3rem;
  display: block;
  position: absolute;
  right: 0;
  top: 1.25rem;
  transition: all .75s ease;
}
.mobile-toggle-open-container .menu-toggle-open .menu-toggle-icon:after {
  width: 2rem;
  top: .5rem;
}
.mobile-toggle-open-container .menu-toggle-open:hover  .menu-toggle-icon {
  width: 2rem;
}
.mobile-toggle-open-container .menu-toggle-open:hover  .menu-toggle-icon:after {
  width: 3rem;
}

.mobile-toggle-open-container .menu-toggle-open .menu-toggle-icon .kadence-svg-iconset {
  display: none;
}
.transparent-header .mobile-toggle-open-container .menu-toggle-open .menu-toggle-icon,
.transparent-header .mobile-toggle-open-container .menu-toggle-open .menu-toggle-icon:after {
  background: var(--global-palette9);
}
/* offcanvas
------------------------------------- */
.popup-drawer .drawer-header {
  background-color: transparent;
  border-bottom: 1px solid rgba(255,255,255,.1);
  min-height: 80px;
  padding: 20px;
}
#mobile-drawer .drawer-header .drawer-toggle {
  border: 1px solid rgba(255,255,255,.1);
  border: 0;
  border-radius: 0;
  font-size: 40px;
  padding: 0;
  z-index: 9;
}
.drawer-toggle .toggle-close-bar {
  height: 1px;
  margin-top: -1px;
  width: 1em;
  border-radius: 0;
  margin-left: -0.5em;
}
.popup-drawer-layout-fullwidth.popup-drawer-animation-slice.active .drawer-content {
  transition: all 1.4s ease;
  transition-delay: 0.2s;
}
.drawer-content .site-header-item:first-child {
  background-color: transparent;
  margin-bottom: 0 !important;
  height: 100%;
  width: 100%;
}
.mobile-header-button-wrap,
.mobile-header-button-inner-wrap,
.mobile-header-button {
  width: 100%;
}
.mobile-header-button-wrap .mobile-header-button-inner-wrap .mobile-header-button {
  border-color: rgba(255,255,255,.5);
  box-shadow: none;
  padding: 1em 2em;
  text-align: center;
  font-size: 1.25rem;
}


/* section: hero
------------------------------------- */
#hero .large {
  line-height: 1.1;
}
#hero .elementor-icon-list-text {
  display: inherit !important;
}
#hero-video .elementor-custom-embed-play {
  background-color: rgba(0,0,0,.4);
  backdrop-filter: blur(10px);
  padding: .75rem;
  border-radius: 1rem;
  line-height: 1;
  display: flex;
}
#hero-video .elementor-custom-embed-play i,
#hero-video .elementor-custom-embed-play svg {
  opacity: 1;
  font-size: 3rem;
  height: 3rem;
  width: 3rem;
  fill: #fff;
}
#hero-video .elementor-custom-embed-play::after {
  color: #fff;
  content: "Посмотреть видео";
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  font-weight: 500;
  padding: 1rem;
}


/* section: services
------------------------------------- */
#services .elementor-tabs {
  gap: 10%;
}
#services .elementor-widget-tabs .elementor-tabs-wrapper {
  display: inherit !important;
  margin-bottom: 0.5rem;
  width: 100%;
}
#services .elementor-widget-tabs .elementor-tab-desktop-title {
  font-weight: 400;
  line-height: 1.2;
  padding: 2rem;
}
#services .elementor-widget-tabs  .elementor-tab-desktop-title.elementor-active {
  background-color: var(--global-palette1);
  border-radius: 0.5rem;
}
#services .elementor-tab-desktop-title h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.5rem !important;
}

#services .elementor-widget-tabs .elementor-tab-content {
  padding: 0;
}
#services .services-spacer {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 24rem;
}
#services .service-1 {
  background-image: url('/wp-content/uploads/men-with-bikes-summer-versus-winter.jpg');
}
#services .service-2 {
  background-image: url('/wp-content/uploads/riding-atv.jpg');
}
#services .service-3 {
  background-image: url('/wp-content/uploads/service-31.jpg');
}
#services .elementor-tab-title,
#services .elementor-tab-title::before,
#services .elementor-tab-title::after,
#services .elementor-tab-content,
#services .elementor-tabs-content-wrapper {
  border-width: 0 !important;
}
@media (min-width: 768px) {
#services .section-heading {
  position: absolute;
}
#services .elementor-widget-tabs .elementor-tabs-wrapper {
  display: inherit;
  width: 40%;
}
#services .services-spacer {
  min-height: 40rem;
}
}
#services .elementor-widget-tabs .elementor-tab-mobile-title {
  display: none !important;
}

/* section: stats
------------------------------------------ */
.elementor-widget-counter {
  overflow: hidden;
}
.elementor-counter {
  padding: 0;
}
.elementor-counter .elementor-counter-number-wrapper {
  gap: .25em;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.1em;
  margin-bottom: 1rem;
}
.elementor-counter .elementor-counter-title {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
}


/* section: vehicles
------------------------------------- */
#vehicles .elementor-widget-call-to-action {
  margin-bottom: 0 !important;
}
#vehicles .elementor-cta__content {
  background: transparent;
  padding: 1.5rem;
  gap: .75rem;
}
#vehicles .elementor-cta .elementor-cta__bg-overlay,
#vehicles .elementor-cta:hover .elementor-cta__bg-overlay {
  background: rgba(0,0,0,.3);
  background: linear-gradient(0deg,rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
  opacity: 1 !important;
}
#vehicles .elementor-cta__content-item,
#vehicles .elementor-cta__content-item .elementor-icon {
  border-color: #fff;
  color: #fff;
  fill: #fff;
}
#vehicles .elementor-cta__title {
  font-size: 1.5rem;
  font-weight: 500;
}
#vehicles .elementor-cta__description {
  font-size: 1rem;
  line-height: 1.4;
}


/* section: contacts (banner)
------------------------------------- */
#contacts-box .elementor-widget-call-to-action {
}
#contacts-box .elementor-cta__bg-overlay {
  opacity: 0 !important;
}
#contacts-box .elementor-cta__content {
  background-color: transparent;
  border-left: 2px solid rgba(255,255,255,.25);
  min-height: auto;
  padding: 0 1rem;
}
#contacts-box .elementor-cta__title {
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem !important;
}
#contacts-box .elementor-cta__description {
  font-size: 1.5rem;
  line-height: 1.2;
}
#contacts-box .elementor-button,
#contacts-box .elementor-button:hover {
  background: transparent !important;
  box-shadow: none !important;
  border: 0;
  font-size: 1.5rem;
  line-height: 1.2;
  padding: 0;
  text-align: left;
  text-wrap: nowrap;
  text-decoration: underline;
}


/* section: testimonials
------------------------------------- */
#testimonials .elementor-main-swiper {
  width: 100% !important;
}
#testimonials .elementor-widget-reviews .swiper-slide {
  border: 0;
  border-radius: 0.5rem;
}
#testimonials .elementor-testimonial {
  flex-direction: column-reverse;
  display: flex;
  justify-content: space-between;
  height: 100%;
}
#testimonials .elementor-testimonial__content {
  padding: 1.5rem;
}
#testimonials .elementor-testimonial__header {
  padding: 1.5rem;
  padding-top: 0;
}
#testimonials .elementor-testimonial__text {
  font-size: 1.25rem;
  font-style: normal;
  line-height: 1.25;
}
.elementor-testimonial__name,
.elementor-testimonial__title {
  font-style: normal;
}
.elementor-testimonial__footer cite,
.elementor-testimonial__header cite {
  line-height: 1.25;
  justify-content: center;
}
/* navigation */
#testimonials .elementor-swiper-button {
  background-color: var(--global-palette1);
  border: 0;
  padding: 1rem;
  border-radius: 3rem;
  display: inline-flex;
  font-size: 1rem;
  width: 3rem;
  height: 3rem;
  top: auto;
  bottom: -5rem;
  transform: translateY(0%);
}
#testimonials .elementor-swiper-button:hover {
  box-shadow: inset 0 0 100px 0 rgba(255,255,255,.25) !important;
}
#testimonials .elementor-swiper-button-prev {
  padding-left: 0.9rem;
  left: auto;
  right: 3.5rem;
}
#testimonials .elementor-swiper-button-next {
  padding-right: 0.9rem;
  left: auto;
  right: 0;
}
@media (min-width: 768px) {
#testimonials .elementor-swiper-button {
  top: -5.5rem;
  bottom: auto;
}
}


/* section: faq
------------------------------------- */
.elementor-toggle-item {
  background-color: var(--global-palette7);
  border: 0;
  border-radius: .5rem;
  margin-bottom: .75rem;
}
.elementor-toggle-item:hover {
  box-shadow: inset 0 0 100px 0 rgba(255,255,255,.25) !important;
}
.elementor-toggle-item:last-child {
  margin-bottom: 0;
}
.elementor-toggle .elementor-tab-title {
  border-bottom: 0;
  color: var(--global-palette3);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.1;
  padding: 1.5rem 1.25rem;
}
.elementor-toggle .elementor-tab-title.elementor-active {
  border-bottom: none !important;
}
.elementor-toggle .elementor-tab-content {
  border-bottom: 0;
  padding: 1.25rem;
  padding-top: 0;
  padding-right: 2.5rem;
}
.elementor-toggle .elementor-tab-title .elementor-toggle-icon svg {
  margin-inline-start: 0;
}


/* FOOTER
===================================== */
footer .site-top-footer-wrap {
  display: none;
}
.footer-display {
  font-size: 4rem;
  line-height: 1;
  color: #fff;
}
footer .site-middle-footer-wrap {
  border-top: 1px solid rgba(255,255,255,.1);
}
footer .site-container {
  border-left: 1px solid rgba(255,255,255,.1);
}
footer .footer-logo {
  max-width: 10rem;
}
footer .footer-html {
  margin: 0;
}
#footer-menu li:first-child {
  margin-right: 1em;
}

/* section: contact form */
#contact-form .elementor-field-type-acceptance {
  margin-bottom: 1.5rem !important;
}
#contact-form .elementor-field-type-acceptance span {
  font-size: 0.875rem !important;
  line-height: 1.1 !important;
}

/* input
input[type="text"], input[type="email"], input[type="tel"] {
  background-color: transparent;
  border: 2px solid rgba(0,0,0,.25);
  border-radius: 1rem;
  color: var(--global-palette9);
  font-family: 'Craftwork Grotesk', sans-serif;
  font-size: 1.25rem;
  padding: 1rem;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus	{
  border-color: var(--global-palette1);
  box-shadow: 0 0 0 5px var(--global-palette2);
  color: var(--global-palette3);
}
input::placeholder {
  color: rgba(0,0,0,.5);
}
----------------------------------- */

/* section: book-now
#book-now .elementor-icon-list-item a {
  border: 1px solid;
  border-radius: 3rem;
  line-height: 1;
  padding: 0.75em 1.5em;
}
#book-now .elementor-icon-list-items.elementor-inline-items,
#book-now .elementor-icon-list-item {
  margin-left: 0;
  margin-right: 0;
}
#book-now .elementor-icon-list-items.elementor-inline-items {
  gap: 0.5rem;
}
#book-now .small-text a {
  color: var(--global-palette1);
  text-decoration: underline;
}
----------------------------------- */