
:root {
  --orange: #dc4d26;
  --blue: #2384bd;
  --navy: #102b6f;
  --dark: #1e1e1e;
  --text: #4f4f4f;
  --muted: #767676;
  --soft: #f3f4f6;
  --line: #e6e6e6;
  --white: #fff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.15em;
}
.container { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .08);
}
.header-wrap {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 118px;
  align-items: center;
  gap: 28px;
}
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.logo-symbol {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #5967a6;
  border: 2px solid #5967a6;
  font-size: 42px;
}
.logo-type {
  color: #487393;
  font-size: 15px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
.logo-type small {
  display: block;
  margin-top: 4px;
  color: #487393;
  font-size: 12px;
  letter-spacing: .8px;
  text-decoration: none;
}
.header-main {
  display: grid;
  gap: 12px;
  min-width: 0;
}
.utility {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  min-height: 48px;
  border-bottom: 1px solid var(--line);
  color: #171717;
  font-size: 14px;
  white-space: nowrap;
}
.utility span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.utility .icon { color: var(--orange); }
.top-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 31px;
  padding: 0 12px;
  color: #fff;
  background: var(--orange);
  border-radius: 2px;
  font-weight: 700;
  font-size: 13px;
}
.main-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 34px;
  color: #101010;
  font-size: 15px;
}
.main-nav > a,
.nav-item > a {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.home-link { font-size: 18px; }
.nav-item { position: relative; }
.dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 220px;
  padding: 8px 0;
  background: #fff;
  border-top: 3px solid var(--orange);
  box-shadow: 0 18px 35px rgba(0, 0, 0, .18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: .18s ease;
}
.dropdown.wide { min-width: 300px; }
.dropdown a {
  display: block;
  padding: 9px 16px;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
  white-space: nowrap;
}
.dropdown a:hover { color: var(--orange); background: #fafafa; }
.nav-item:hover .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.menu-btn { display: none; }
.hero {
  min-height: 575px;
  background:
    linear-gradient(rgba(0, 0, 0, .38), rgba(0, 0, 0, .48)),
    url("assets/hero-bg.png") center / cover no-repeat;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
}
.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(44px, 5.6vw, 76px);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 900;
  text-shadow: 0 4px 0 rgba(0, 0, 0, .4);
}
.hero p {
  max-width: 950px;
  margin: 0 auto;
  font-size: 19px;
  line-height: 1.5;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .4);
}
.hero-dots {
  position: absolute;
  right: 34px;
  bottom: 22px;
  display: flex;
  gap: 10px;
}
.hero-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .75);
}
.hero-dots span:first-child { background: var(--navy); }
.intro {
  padding: 76px 0 58px;
  text-align: center;
}
.section-heading {
  text-align: center;
  margin-bottom: 34px;
}
.section-heading span {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 900;
}
.section-heading h2 {
  margin: -67px 0 16px;
  color: var(--orange);
  text-transform: uppercase;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.2;
  letter-spacing: 3px;
}
.section-heading i {
  width: min(690px, 80%);
  height: 2px;
  background: var(--blue);
  display: block;
  margin: 0 auto;
}
.section-heading p {
  max-width: 720px;
  margin: 20px auto 0;
  color: var(--muted);
}
.intro p,
.wide-text {
  max-width: 1120px;
  margin: 0 auto 20px;
  color: #5e5e5e;
  font-size: 20px;
}
.read-more {
  display: inline-block;
  margin-top: 12px;
  color: var(--blue);
  font-size: 20px;
  text-decoration: underline;
}
.product-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #efefef;
}
.product-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  color: #fff;
}
.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .48);
}
.product-card img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  filter: grayscale(.35);
  transition: transform .25s ease;
}
.product-card:hover img { transform: scale(1.04); }
.product-card span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  padding: 0 16px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  z-index: 1;
  line-height: 1.35;
}
.product-card span::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .48);
  z-index: -1;
  border-radius: 4px;
}
.quality-band {
  min-height: 455px;
  color: #fff;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .22)),
    url("assets/equipment-paver.png") center / cover no-repeat;
}
.quality-band h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1.05;
  font-weight: 900;
}
.quality-band ul {
  padding-left: 18px;
  margin: 0;
  color: #fff;
  font-size: 14px;
}
.quality-band li::marker { color: var(--orange); }
.team-section {
  padding: 70px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 46px;
}
.team-section .section-heading { text-align: left; }
.team-section .section-heading i { margin-left: 0; }
.team-section img {
  border-radius: 2px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .14);
}
.value-panel {
  padding: 85px 0;
  background:
    linear-gradient(rgba(0, 0, 0, .72), rgba(0, 0, 0, .72)),
    url("assets/project-bridge.png") center / cover no-repeat;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.value-grid article {
  min-height: 118px;
  padding: 30px;
  display: flex;
  align-items: center;
  color: #fff;
  border-radius: 8px;
  background: #6ba3d9;
}
.value-grid article:nth-child(2) { background: #dd7146; }
.value-grid article:nth-child(3) { background: #9d5bad; }
.value-grid h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
}
.quick-links {
  padding: 64px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #dedede;
}
.quick-card {
  min-height: 160px;
  padding: 26px;
  background: #fff;
}
.quick-card h3 {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 20px;
}
.quick-card p { margin: 0; color: #666; }
.inner-hero {
  min-height: 285px;
  background:
    linear-gradient(rgba(0, 0, 0, .52), rgba(0, 0, 0, .58)),
    url("assets/hero-bg.png") center / cover no-repeat;
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
}
.inner-hero h1 {
  margin: 0 0 8px;
  font-size: clamp(34px, 4vw, 54px);
  text-transform: uppercase;
  letter-spacing: 3px;
}
.inner-hero p { margin: 0; color: rgba(255, 255, 255, .86); }
.page-section { padding: 74px 0; }
.page-section.compact { padding-top: 10px; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.two-col .section-heading { text-align: left; }
.two-col .section-heading i { margin-left: 0; }
.two-col p {
  font-size: 18px;
  color: #575757;
}
.two-col > img,
.image-grid img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .14);
}
.orange-list {
  margin: 22px 0 0;
  padding-left: 20px;
  font-size: 17px;
}
.orange-list li { margin: 8px 0; }
.orange-list li::marker { color: var(--orange); }
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-bottom: 72px;
}
.stats-row article {
  text-align: center;
  background: var(--soft);
  padding: 26px;
  border-top: 4px solid var(--orange);
}
.stats-row strong {
  display: block;
  color: var(--orange);
  font-size: 42px;
  line-height: 1;
}
.stats-row span { color: #333; font-weight: 700; }
.choose-area {
  padding: 72px 0 60px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
}
.choose-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
}
.choose-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}
.choose-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(16, 43, 111, 0.08);
  height: 100%;
}
.choose-item-offset { margin-top: 30px; }
.choose-item h4 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.3;
}
.choose-item p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
}
.choose-content .site-heading { text-align: left; margin-bottom: 12px; }
.choose-content .site-title-tagline {
  display: inline-block;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 800;
  font-size: 13px;
}
.choose-content .site-title {
  margin: 6px 0 10px;
  color: var(--navy);
  text-transform: none;
  letter-spacing: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
}
.choose-content p { color: var(--text); font-size: 17px; }
.choose-image-wrap img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 14px 35px rgba(16, 43, 111, 0.12);
}
.logo-showcase {
  padding-top: 8px;
  padding-bottom: 80px;
}
.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.logo-card {
  display: grid;
  place-items: center;
  min-height: 110px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(16, 43, 111, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.logo-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 30px rgba(16, 43, 111, 0.14);
}
.logo-card img {
  width: 100%;
  max-height: 86px;
  object-fit: contain;
}
.about-image-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}
.about-card {
  min-height: 180px;
  padding: 10px;
}
.about-card:nth-child(1) { transform: translateY(0); }
.about-card:nth-child(2) { transform: translateY(18px); }
.about-card:nth-child(3) { transform: translateY(36px); }
.about-card img {
  max-height: none;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.mt-lg-5 { margin-top: 3rem; }
@media (max-width: 991px) {
  .choose-grid { grid-template-columns: 1fr; }
  .choose-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .choose-cards { grid-template-columns: 1fr; }
  .choose-item-offset { margin-top: 0; }
}
@media (max-width: 767px) {
  .choose-item { padding: 16px; }
  .choose-item + .choose-item { margin-top: 14px; }
  .choose-item h4 { font-size: 17px; }
}
.card-grid {
  display: grid;
  gap: 22px;
}
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.mini-card {
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
  min-height: 210px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .05);
}
.mini-card span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--orange);
  margin-bottom: 16px;
}
.mini-card h3 {
  margin: 0 0 10px;
  color: #222;
  font-size: 20px;
}
.mini-card p { margin: 0; color: #666; }
.certificate-grid { align-items: stretch; }
.certificate-card { display: flex; flex-direction: column; gap: 10px; }
.certificate-tag {
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff4ea;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.certificate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}
.cert-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .15s ease, background .2s ease;
}
.cert-btn:hover { transform: translateY(-1px); }
.cert-btn-primary {
  background: var(--orange);
  color: #fff;
}
.cert-btn-secondary {
  background: #f4f4f4;
  color: #222;
  border: 1px solid #ddd;
}
.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.tag-grid span {
  padding: 13px 20px;
  background: #f4f8fb;
  border-left: 4px solid var(--orange);
  font-weight: 700;
}
.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.image-grid img {
  height: 210px;
  object-fit: cover;
}
.contact-box {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-box strong { color: var(--orange); }
.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  background: #f7f7f7;
  border-top: 4px solid var(--orange);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #ddd;
  padding: 0 14px;
  font: inherit;
  background: #fff;
}
.contact-form textarea {
  min-height: 120px;
  padding-top: 12px;
  resize: vertical;
}
.contact-form button {
  min-height: 48px;
  border: 0;
  background: var(--orange);
  color: #fff;
  font: inherit;
  font-weight: 800;
}
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.sitemap-grid a {
  padding: 14px 18px;
  background: #f7f7f7;
  border-left: 4px solid var(--orange);
}
.footer {
  color: #bfc3ca;
  background: #222;
  padding-top: 54px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1.1fr;
  gap: 42px;
  padding-bottom: 42px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo .logo-symbol {
  width: 58px;
  height: 58px;
  font-size: 33px;
}
.footer-logo .logo-type,
.footer-logo .logo-type small { color: #fff; }
.footer h3 {
  margin: 0 0 18px;
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.footer li a::before {
  content: ">";
  color: var(--orange);
  margin-right: 8px;
}
.footer a:hover { color: #fff; }
.follow {
  display: flex;
  gap: 18px;
  margin-top: 24px;
}
.follow a {
  color: #fff;
  font-weight: 800;
}
.footer-cert-center {
  display: block;
  margin: 14px 18px 0;
}
.footer-cert-images {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
}
.footer-cert-img {
  width: 170px;
  height: 170px;
  object-fit: contain;
  display: block;
  border-radius: 8px;
  background: #fff;
  padding: 6px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .18);
}
.footer-link { color: var(--orange); text-decoration: underline; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .15);
  font-size: 14px;
}
.floating-call {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .22);
  font-size: 24px;
}
@media (max-width: 1050px) {
  .header-wrap {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 0;
  }
  .logo { justify-content: center; }
  .utility { justify-content: center; flex-wrap: wrap; }
  .main-nav { justify-content: center; flex-wrap: wrap; gap: 20px; }
  .product-strip,
  .quick-links,
  .footer-grid,
  .stats-row,
  .card-grid.four { grid-template-columns: repeat(2, 1fr); }
  .two-col,
  .team-section { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .header-wrap { width: min(100% - 22px, 1240px); }
  .utility { display: none; }
  .menu-btn {
    display: block;
    width: 100%;
    min-height: 42px;
    border: 0;
    color: #fff;
    background: var(--orange);
    font-weight: 800;
  }
  .main-nav { display: none; align-items: stretch; flex-direction: column; gap: 0; }
  .main-nav.open { display: flex; }
  .main-nav > a,
  .nav-item > a {
    min-height: 42px;
    border-bottom: 1px solid var(--line);
  }
  .dropdown {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border-top: 0;
    display: none;
  }
  .nav-item:hover .dropdown { display: block; }
  .hero { min-height: 430px; }
  .hero h1 { font-size: 38px; letter-spacing: 1px; }
  .hero p { font-size: 14px; padding: 0 14px; }
  .product-strip,
  .quick-links,
  .footer-grid,
  .stats-row,
  .card-grid.three,
  .card-grid.four,
  .value-grid,
  .image-grid,
  .sitemap-grid { grid-template-columns: 1fr; }
  .section-heading h2 { letter-spacing: 1px; }
  .page-section { padding: 52px 0; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Slider and logo image styles */
.logo-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid #5967a6;
  background: #fff;
  padding: 6px;
}
.hero-slider {
  position: relative;
  width: 100%;
  min-height: 575px;
  overflow: hidden;
}
.hero-slider .slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease;
}
.hero-slider .slides img {
  width: 100%;
  height: 575px;
  object-fit: cover;
  flex: 0 0 100%;
}
.hero-slider .hero-shade {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
  background: linear-gradient(rgba(0,0,0,.28), rgba(0,0,0,.48));
  color: #fff;
}
.hero-dots { position: absolute; right: 20px; bottom: 20px; display: flex; gap: 8px; z-index: 5; }
.hero-dots span { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,.5); cursor: pointer; border: 2px solid rgba(0,0,0,.12); }
.hero-dots span.active { background: var(--navy); border-color: #fff; }

@media (max-width: 720px) {
  .hero-slider .slides img { height: 430px; }
  .hero-dots { right: 12px; bottom: 12px; }
}
 .row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.col, [class*="col-"] {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

/* Auto-layout equal-width column behavior */
.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}
.col-1  { flex: 0 0 8.333333%; max-width: 8.333333%; }
.col-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-3  { flex: 0 0 25%; max-width: 25%; }
.col-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-6  { flex: 0 0 50%; max-width: 50%; }
.col-7  { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-9  { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }
@media (min-width: 768px) {
  .col-md-1  { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .col-md-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-md-3  { flex: 0 0 25%; max-width: 25%; }
  .col-md-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-md-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-md-6  { flex: 0 0 50%; max-width: 50%; }
  .col-md-7  { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-md-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-md-9  { flex: 0 0 75%; max-width: 75%; }
  .col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-md-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-md-12 { flex: 0 0 100%; max-width: 100%; }
}
@media (min-width: 992px) {
  .col-lg-1  { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .col-lg-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-lg-3  { flex: 0 0 25%; max-width: 25%; }
  .col-lg-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-lg-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-lg-6  { flex: 0 0 50%; max-width: 50%; }
  .col-lg-7  { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-lg-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-lg-9  { flex: 0 0 75%; max-width: 75%; }
  .col-lg-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-lg-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
}
