/* GANTRY5 DEVELOPMENT MODE ENABLED.
 *
 * WARNING: This file is automatically generated by Gantry5. Any modifications to this file will be lost!
 *
 * For more information on modifying CSS, please read:
 *
 * http://docs.gantry.org/gantry5/configure/styles
 * http://docs.gantry.org/gantry5/tutorials/adding-a-custom-style-sheet
 */

@charset "UTF-8";
:root {
  --vimby-orange: #D46600;
  --vimby-olive:  #8A8B00;
  --vimby-black:  #000000;
  --vimby-gray:   #6B6B6B;
  --vimby-white:  #FFFFFF;
  --vimby-light:  #F2F2F2;
  --vimby-mid:    #B3B3B3;
  --vimby-dark:   #333333;
}
/* ===== Vimby210 Header Navigation – Centered Middle ===== */
/* Center the entire menu horizontally & vertically */
#g-header .g-main-nav {
  display: flex;
  justify-content: center;
  /* center horizontally */
  align-items: center;
  /* center vertically */
}
/* UL container */
#g-header .g-main-nav > ul {
  display: flex;
  align-items: center;
  /* vertical centering */
  justify-content: center;
  /* horizontal centering */
}
/* LI items */
#g-header .g-main-nav > ul > li {
  display: flex;
  align-items: center;
}
/* Slim button-style links (the version you liked) */
#g-header .g-main-nav > ul > li > a {
  background: transparent;
  color: var(--vimby-black);
  padding: 4px 10px;
  margin: 0 4px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  border: 2px solid transparent;
  /* vertical alignment fix */
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
/* Hover = orange */
#g-header .g-main-nav > ul > li > a:hover {
  background: var(--vimby-orange);
  color: var(--vimby-black);
  border-color: var(--vimby-orange);
}
/* Active/current page */
#g-header .g-main-nav > ul > li.active > a, #g-header .g-main-nav > ul > li.current > a {
  background: var(--vimby-olive);
  color: var(--vimby-white);
  border-color: var(--vimby-olive);
}
/* Remove underline */
#g-header .g-main-nav a {
  text-decoration: none;
}
/* ===== Vimby210 Top Header (Logo Bar) ===== */
#g-top {
  color: #ffffff;
  z-index: 1003;
  font-size: 0.81rem;
  /* Center contents */
  display: flex;
  justify-content: center;
  align-items: center;
  /* Spacing */
  padding: 14px 0;
  /* Gradient working into the center */
  background: linear-gradient(to right, var(--vimby-black) 0%, var(--vimby-gray) 30%, var(--vimby-light) 50%, var(--vimby-gray) 70%, var(--vimby-black) 100%);
  /* Drop shadow */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
/* Center logo */
#g-top .g-branding, #g-top .g-logo, #g-top img {
  display: block;
  margin: 0 auto;
}
#g-maintop h1, #g-maintop h2, #g-maintop h3, #g-maintop h4, #g-maintop h5, #g-maintop h6, #g-maintop strong {
  color: var(--vimby-white);
}
/* ===== Showcase Strip (Veteran Owned Banner) ===== */
#g-showcase {
  min-height: 170px;
  /* allows 350x169 image to show */
  padding: 0.5rem 0;
  background-image: url('../../../../images/vim-vet-back.png');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 350px auto;
  /* lock image width to 350px */
  background-color: var(--vimby-black);
  /* Top & Bottom Brand Borders */
  border-top: 2px solid var(--vimby-olive);
  border-bottom: 2px solid var(--vimby-orange);
  color: var(--vimby-white);
  box-shadow: inset 0 -2px 6px rgba(0, 0, 0, 0.25);
}
/* Text colors inside showcase */
#g-showcase h1, #g-showcase h2, #g-showcase h3, #g-showcase h4, #g-showcase h5, #g-showcase h6, #g-showcase strong {
  color: #ffffff;
}
/* ===== last Strip (Veteran Owned Banner) ===== */
#g-last {
  min-height: 170px;
  /* allows 350x169 image to show */
  padding: 0.5rem 0;
  background-image: url('../../../../images/vim-vet-back.png');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 350px auto;
  /* lock image width to 350px */
  background-color: var(--vimby-black);
  /* Top & Bottom Brand Borders */
  border-top: 2px solid var(--vimby-olive);
  border-bottom: 2px solid var(--vimby-orange);
  color: var(--vimby-white);
  box-shadow: inset 0 -2px 6px rgba(0, 0, 0, 0.25);
}
/* Text colors inside showcase */
#g-last h1, #g-last h2, #g-last h3, #g-last h4, #g-last h5, #g-last h6, #g-last strong {
  color: #ffffff;
}
#g-feature {
  padding: 2rem 0;
  background-image: linear-gradient(to bottom, var(--vimby-light) 0%, var(--vimby-white) 50%, var(--vimby-light) 100%);
}
#g-feature img {
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* Subtle hover lift */
#g-feature img:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.75);
}
/* ===== Primary CTA Button ===== */
/* ===== Vimby210 Header CTA (Contact Button) ===== */
.wwmr-btn-primary {
  background-color: var(--vimby-orange);
  color: var(--vimby-black);
  border: 2px solid var(--vimby-orange);
  padding: 10px 22px;
  /* bigger button */
  font-size: 1rem;
  /* larger text */
  font-weight: 800;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  /* makes it stand out */
  transition: all 0.25s ease;
}
/* Hover */
.wwmr-btn-primary:hover {
  background-color: var(--vimby-black);
  color: var(--vimby-white);
  border-color: var(--vimby-orange);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}
/* ===== Button Override ===== */
.button {
  background-color: var(--vimby-orange) !important;
  color: var(--vimby-black) !important;
  border: 2px solid var(--vimby-orange) !important;
  border-radius: 2px;
  /* less rounded */
}
.button:hover {
  background-color: var(--vimby-olive) !important;
  border-color: var(--vimby-olive) !important;
  color: var(--vimby-white) !important;
}
/* ===== Feature Headings ===== */
#g-feature h1, #g-feature h2, #g-feature h3, #g-feature h4, #g-feature h5, #g-feature h6 {
  color: var(--vimby-olive);
}
#g-feature h1 {
  border-left: 8px solid var(--vimby-orange);
}
#g-feature h3 {
  border-left: 5px solid var(--vimby-gray);
  color: var(--vimby-olive);
}
#g-feature h4, #g-feature h5, #g-feature h6 {
  border-left: 4px solid var(--vimby-gray);
  color: var(--vimby-orange);
}
#g-feature strong {
  color: var(--vimby-orange);
}
/* ===== Clean Light Footer with Texture + Shadow Divider ===== */
#g-footer {
  background: linear-gradient(to bottom, var(--vimby-white) 0%, var(--vimby-light) 100%);
  /* subtle texture */
  background-image: linear-gradient(to bottom, var(--vimby-white), var(--vimby-light)), repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.02) 1px, transparent 1px, transparent 6px);
  color: var(--vimby-black);
  /* shadow divider */
  border-top: 4px solid var(--vimby-orange);
  box-shadow: inset 0 8px 12px rgba(0, 0, 0, 0.08);
  padding: 3rem 0;
}
/* Footer headings */
#g-footer h1, #g-footer h2, #g-footer h3, #g-footer h4, #g-footer h5, #g-footer h6 {
  color: var(--vimby-black);
}
/* Footer links */
#g-footer a {
  color: var(--vimby-orange);
  font-weight: 600;
  transition: 0.2s ease;
}
#g-footer a:hover {
  color: var(--vimby-olive);
}
/* Footer text */
#g-footer p, #g-footer small {
  color: #333333;
}
/* ===== Copyright Bar – Orange Theme ===== */
#g-copyright {
  padding: 10px 0;
  background-color: var(--vimby-orange);
  color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  text-align: center;
}
/* Links */
#g-copyright a {
  color: #fff3e0;
  /* lighter orange/cream */
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s ease;
}
#g-copyright a:hover {
  color: var(--vimby-white);
  text-decoration: underline;
}
/* ===== Subfeature ===== */
#g-subfeature {
  background-color: var(--vimby-black) !important;
  color: var(--vimby-white);
}
#g-utility {
  background-color: var(--vimby-gray) !important;
  color: var(--vimby-white);
}
#g-maintop {
  color: var(--vimby-white);
  /* Black-focused gradient */
  background: linear-gradient(to bottom, #000000 0%, #1a1a1a 40%, #000000 100%) !important;
  padding: 3rem 0;
}
/* Headings and strong text */
#g-maintop h1, #g-maintop h2, #g-maintop h3, #g-maintop h4, #g-maintop h5, #g-maintop h6, #g-maintop strong {
  color: var(--vimby-white);
}
#g-maintop img {
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* Subtle hover lift */
#g-maintop img:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.75);
}
/* ===== Services ===== */
.wwmr-services-title {
  color: var(--vimby-olive);
  border-left: 6px solid var(--vimby-orange);
}
.wwmr-section-title {
  color: var(--vimby-orange);
  border-left: 5px solid var(--vimby-olive);
}
.wwmr-services-list li {
  border-bottom: 1px solid var(--vimby-gray);
}
/* ===== CTA ===== */
.wwmr-sales-cta {
  background-color: var(--vimby-gray);
  color: var(--vimby-white);
  border-left: 6px solid var(--vimby-orange);
}
.wwmr-cta-btn {
  background-color: var(--vimby-orange) !important;
  border: 2px solid var(--vimby-orange) !important;
  color: var(--vimby-black) !important;
}
.wwmr-cta-btn:hover {
  background-color: var(--vimby-olive) !important;
  border-color: var(--vimby-olive) !important;
}
/* ===== Form ===== */
#cf7 {
  background: linear-gradient(to bottom, var(--vimby-light) 0%, var(--vimby-white) 50%, var(--vimby-light) 100%);
}
#cf7 .cf-title {
  color: var(--vimby-olive);
  border-left: 6px solid var(--vimby-orange);
}
#cf7 input:focus, #cf7 select:focus, #cf7 textarea:focus {
  border-color: var(--vimby-orange);
  box-shadow: 0 0 6px rgba(212, 102, 0, 0.35);
}
#cf7 button.cf-btn, #cf7 input[type="submit"] {
  background: var(--vimby-orange);
  color: var(--vimby-white);
}
#cf7 button.cf-btn:hover, #cf7 input[type="submit"]:hover {
  background: var(--vimby-olive);
}
/* Gradient border */
#cf7 .cf-container::before {
  background: linear-gradient(135deg, var(--vimby-orange), var(--vimby-olive));
}
/* EngageBox CTA */
.wwmr-engagebox-cta {
  background-image: linear-gradient(var(--vimby-white), var(--vimby-white)), linear-gradient(135deg, var(--vimby-orange) 0%, var(--vimby-olive) 100%);
}
.wwmr-eb-button {
  background: var(--vimby-orange);
}
.wwmr-eb-button:hover {
  background: var(--vimby-olive);
}
/*# sourceMappingURL=custom_20.css.map */