/* ==========================================================================
   Milestone India Corp — shared stylesheet
   Rebuilt from the original WordPress (Astra + Elementor) site.
   Edit colours in :root below.
   Fonts: Montserrat, self-hosted from /assets/fonts/ (no external Google call).
   Montserrat v31 is a variable font, so one file per subset covers weights
   400–700. To update it, re-download from Google Fonts and replace the .woff2
   files, keeping the same names.
   ========================================================================== */

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/montserrat-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/montserrat-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --red: #d94948;            /* brand red (buttons, links, accents) */
  --red-hover: rgba(217, 73, 72, 0.85);
  --navy: #011627;           /* brand dark navy (headings, overlays) */
  --body-color: rgba(1, 22, 39, 0.75);
  --muted-heading: rgba(1, 22, 39, 0.35);
  --footer-bg: #0a2941;      /* footer background */
  --offwhite: #f9f8f8;       /* light band background */
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 93.75%; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.85714285714286;
  color: var(--body-color);
  background: #fff;
  word-wrap: break-word;
}
img { max-width: 100%; height: auto; border: 0; vertical-align: middle; }
p { margin: 0 0 1.75em; }
p:last-child { margin-bottom: 0; }

a { color: var(--red); text-decoration: none; transition: color 0.2s; }
/* Default hover/focus darkens to navy so links stay visible on light (white)
   backgrounds. Links on dark surfaces (footer, nav) set their own light
   hover/focus colours below, so they are unaffected by this default. */
a:hover, a:focus, a:active { color: var(--navy); }

::selection { background-color: var(--red); color: #fff; }

/* ---------- Headings (sizes match the original Astra settings) ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--body-color);
  line-height: 1.2;
  margin: 0 0 20px;
}
h1 { font-size: 70px; }
h2 { font-size: 34px; }
h3 { font-size: 23px; }
h4 { font-size: 16px; }
h5 { font-size: 14px; }
h6 { font-size: 12px; }

@media (max-width: 768px) {
  html { font-size: 85.5%; }
  h2 { font-size: 40px; }
  h4 { font-size: 18px; }
  h5 { font-size: 16px; }
  h6 { font-size: 14px; }
}
@media (max-width: 544px) {
  h1 { font-size: 33px; }
  h2 { font-size: 25px; }
  h3 { font-size: 20px; }
  h4 { font-size: 14px; }
  h5 { font-size: 13px; }
  h6 { font-size: 12px; }
}

.screen-reader-text {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px; height: 1px; overflow: hidden;
}

/* ---------- Layout helpers ---------- */
.container       { max-width: 1140px; margin-left: auto; margin-right: auto; }
.container-wide  { max-width: 1210px; margin-left: auto; margin-right: auto; padding-left: 20px; padding-right: 20px; }
.container-950   { max-width: 950px;  margin-left: auto; margin-right: auto; }
.container-900   { max-width: 900px;  margin-left: auto; margin-right: auto; }

.cols { display: flex; flex-wrap: wrap; }
.cols > * { min-width: 0; }
.col-25 { width: 25%; padding: 10px; }
.col-33 { width: 33.333%; padding: 10px; }
.col-50 { width: 50%; padding: 10px; }
.col-100 { width: 100%; padding: 10px; }
@media (max-width: 767px) {
  .col-25, .col-33, .col-50 { width: 100%; }
}

.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background-color: var(--red);
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  line-height: 1;
  border: 0;
  border-radius: 50px;
  padding: 15px 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.2s;
}
.btn:hover, .btn:focus { background-color: var(--red-hover); color: #fff; }
.btn-small { padding: 12px 24px; text-transform: none; letter-spacing: 0; }
@media (max-width: 767px) {
  .btn { font-size: 13px; padding: 12px 24px; }
}

/* ---------- Header ---------- */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  padding: 1em 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img { max-width: 111px; }
@media (max-width: 544px) { .logo img { max-width: 74px; } }

.site-nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav li { margin: 0; }
.site-nav a {
  display: block;
  padding: 0 20px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
}
.site-nav li.current > a,
.site-nav a:hover, .site-nav a:focus { color: #fff; }
.site-nav .nav-btn a {
  background-color: var(--red);
  color: #fff;
  font-weight: bold;
  border-radius: 100px;
  padding: 6px 20px;
  margin-left: 20px;
}
.site-nav .nav-btn a:hover { background-color: var(--red-hover); }

/* Solid (white) header — used on the Privacy Policy page */
.site-header.solid {
  position: static;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.site-header.solid .site-nav a { color: rgba(1, 22, 39, 0.75); }
.site-header.solid .site-nav li.current > a,
.site-header.solid .site-nav a:hover, .site-header.solid .site-nav a:focus { color: var(--red); }
.site-header.solid .site-nav .nav-btn a { color: #fff; }

/* Mobile menu */
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 2px;
  color: #fff;
  padding: 8px 12px;
  cursor: pointer;
}
.menu-toggle .menu-icon,
.menu-toggle .menu-icon::before,
.menu-toggle .menu-icon::after {
  display: block;
  content: "";
  width: 18px; height: 2px;
  background: currentColor;
  position: relative;
}
.menu-toggle .menu-icon::before { top: -5px; }
.menu-toggle .menu-icon::after { top: 3px; }
.site-header.solid .menu-toggle { border-color: rgba(1, 22, 39, 0.75); color: rgba(1, 22, 39, 0.75); }

@media (max-width: 921px) {
  .menu-toggle { display: block; }
  .site-nav { display: none; width: 100%; }
  .header-inner { flex-wrap: wrap; }
  .site-header.nav-open .site-nav { display: block; }
  .site-header.nav-open { background: #fff; position: absolute; }
  .site-header.nav-open .menu-toggle { border-color: rgba(1, 22, 39, 0.75); color: rgba(1, 22, 39, 0.75); }
  .site-nav ul { flex-direction: column; align-items: stretch; margin-top: 1em; }
  .site-nav a,
  .site-header.nav-open .site-nav a { color: rgba(1, 22, 39, 0.75); padding: 10px 20px; border-bottom: 1px solid #eaeaea; }
  .site-nav .nav-btn a { margin: 10px 20px; text-align: center; border-radius: 100px; border-bottom: 0; color: #fff; }
  .site-header.nav-open .site-nav .nav-btn a { color: #fff; }
}

/* ---------- Hero (homepage, with background video) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 250px 0 0;
  text-align: center;
  /* Fallback shown before the video paints / if it fails: the poster image,
     over a navy base so there is never a blank or black gap. */
  background: var(--navy) url("../img/projects-1.jpg") center center / cover no-repeat;
}
.hero video {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  object-fit: cover;
  z-index: 0;
}
.hero .overlay {
  position: absolute;
  inset: 0;
  background-color: var(--navy);
  opacity: 0.5;
  z-index: 1;
}
.hero .hero-content { position: relative; z-index: 2; }
.hero h3 { color: #fff; margin-bottom: 20px; }
/* 59px = the original's Elementor "XXL" heading preset */
.hero h1 { color: #fff; font-size: 59px; font-weight: bold; line-height: 1.2em; padding-bottom: 25px; margin: 0; }
.hero-icon { padding: 100px 0 50px; }
.hero-icon svg { width: 30px; height: 30px; fill: rgba(255, 255, 255, 0.75); }
@media (max-width: 1024px) { .hero { padding: 200px 25px 0; } }
@media (max-width: 767px) {
  .hero { padding: 150px 20px 0; }
  .hero h3 { font-size: 16px; }
  .hero h1 { font-size: 45px; line-height: 1.3em; padding-bottom: 10px; }
  .hero-icon { padding: 75px 0 25px; }
}

/* ---------- Interior page hero band ---------- */
.page-hero {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 250px 0 200px;
  text-align: center;
}
.page-hero .overlay {
  position: absolute;
  inset: 0;
  background-color: var(--navy);
  opacity: 0.5;
}
.page-hero h1 {
  position: relative;
  color: #fff;
  font-weight: bold;
  margin: 0;
}
.page-hero.hero-about    { background-image: url("../img/bg-02.jpg"); }
.page-hero.hero-products { background-image: url("../img/projects-1.jpg"); padding: 200px 0; }
.page-hero.hero-contact  { background-image: url("../img/bg-09.jpg"); }
.page-hero.hero-product  { background-image: url("../img/working-1.jpeg"); }
@media (max-width: 1024px) { .page-hero { padding: 200px 25px 175px; } }
@media (max-width: 767px)  { .page-hero { padding: 150px 20px 100px; } }

/* ---------- Generic content band ---------- */
.band { padding: 150px 0; }
@media (max-width: 1024px) { .band { padding: 100px 25px; } }
@media (max-width: 767px)  { .band { padding: 75px 20px; } }

.eyebrow {
  color: var(--muted-heading);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.heading-navy { color: var(--navy); }
.label-navy {
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* ---------- Homepage: about intro ---------- */
.sec-about { text-align: center; }
.sec-about h2 { padding: 0 125px 25px; margin: 0; }
.sec-about .btn { margin-top: 30px; }
@media (max-width: 1024px) { .sec-about h2 { padding: 0 0 25px; } }
@media (max-width: 767px)  { .sec-about h2 { padding: 0 25px 10px; } }

/* ---------- Homepage: top products (dark band) ---------- */
.sec-top-products {
  position: relative;
  background-image: url("../img/photo-1516467716199.jpeg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 150px 0;
}
@media (min-width: 1025px) { .sec-top-products { background-attachment: fixed; } }
.sec-top-products .overlay {
  position: absolute;
  inset: 0;
  background-color: var(--navy);
  opacity: 0.71;
}
.sec-top-products .cols { position: relative; align-items: center; }
.sec-top-products .col-left { padding-right: 100px; }
.sec-top-products .col-right { padding-left: 75px; }
.sec-top-products .eyebrow { color: rgba(255, 255, 255, 0.65); }
.sec-top-products h3 { margin-bottom: 10px; }
.sec-top-products h4 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.sec-top-products .product-blurb { color: rgba(255, 255, 255, 0.65); font-weight: bold; }
.sec-top-products hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin: 15px 0;
}
.sec-top-products .col-right h2 { font-size: 34px; margin-bottom: 0; }
.sec-top-products .col-right .btn { margin-top: 30px; }
@media (max-width: 1024px) {
  .sec-top-products { padding: 100px 25px; }
  .sec-top-products .col-left { padding-right: 10px; }
  .sec-top-products .col-right { padding-left: 50px; margin-top: 35px; }
}
@media (max-width: 767px) {
  .sec-top-products { padding: 75px 20px; }
  .sec-top-products .col-right { padding-left: 10px; margin-top: 15px; }
}

/* ---------- Homepage: industries ---------- */
.sec-industries .intro { text-align: center; }
.sec-industries .intro h2 { padding-bottom: 25px; margin: 0; }
.industry-row { padding-top: 25px; }
.industry-card img { width: 100%; margin-bottom: 15px; }
.industry-card h4 { margin-bottom: 20px; color: var(--navy); text-transform: uppercase; letter-spacing: 3px; }
.industry-card p { padding-right: 25px; }
@media (max-width: 767px) {
  .industry-card { padding-bottom: 35px; }
  .industry-card p { padding-right: 0; }
}

/* ---------- Call-to-action band ---------- */
.cta-band { background-color: var(--offwhite); padding: 40px 0; }
.cta-band.cta-white { background-color: #fff; }
.cta-band .cols { align-items: center; }
.cta-band .cta-spacer { width: 7%; }
.cta-band .cta-text { width: 63.957%; }
.cta-band .cta-btn { width: 22.043%; }
.cta-band h3 { color: var(--navy); margin: 0; }
@media (max-width: 1024px) {
  .cta-band { padding: 25px 0; }
  .cta-band .cta-spacer { width: 2%; }
  .cta-band .cta-text { width: 64%; }
  .cta-band .cta-btn { width: 28%; }
  .cta-band h3 { font-size: 20px; line-height: 1.3em; }
}
@media (max-width: 767px) {
  .cta-band .cta-spacer { display: none; }
  .cta-band .cta-text, .cta-band .cta-btn { width: 100%; text-align: center; }
  .cta-band h3 { font-size: 17px; line-height: 1.5em; padding: 0 25px 10px; }
}

/* ---------- About page ---------- */
.sec-about-intro .col-left { padding-right: 50px; }
.sec-about-intro .eyebrow { margin-bottom: 20px; }
.sec-about-intro h2 { color: var(--navy); margin: 0; }
@media (max-width: 767px) { .sec-about-intro .col-left { padding-right: 10px; } }

.sec-stats { background-color: var(--offwhite); padding: 100px 0 150px; }
.sec-stats .stats-head { padding-bottom: 65px; }
.sec-stats h2 { color: var(--navy); margin: 0; }
.sec-stats .stat-label-col { width: 40%; }
.sec-stats .stat-col { width: 20%; }
.counter .number {
  font-size: 69px;
  font-weight: 600;
  line-height: 1;
  color: var(--red);
}
.counter .title { color: var(--navy); font-size: 19px; }
.sec-stats hr {
  border: 0;
  border-top: 1px solid #d5d8dc;
  margin: 0 10px 75px;
}
.sec-stats .quality-note { color: var(--navy); padding-bottom: 25px; }
.sec-stats .history-col-1 { padding-right: 50px; }
.sec-stats .history-col-2 { padding-left: 25px; padding-right: 25px; }
.sec-stats .history-col-3 { padding-left: 50px; }
@media (max-width: 1024px) {
  .sec-stats { padding: 75px 25px; }
  .sec-stats .stats-head { padding-bottom: 25px; }
  .sec-stats hr { margin-bottom: 25px; }
  .sec-stats .stat-label-col { width: 49%; }
  .sec-stats .stat-col { width: 17%; }
  .sec-stats .history-col-1 { padding-right: 24px; }
  .sec-stats .history-col-2 { padding-left: 12px; padding-right: 12px; }
  .sec-stats .history-col-3 { padding-left: 24px; }
}
@media (max-width: 767px) {
  .sec-stats { padding: 75px 20px; }
  .sec-stats .stat-label-col, .sec-stats .stat-col { width: 100%; padding-bottom: 25px; }
  .sec-stats .history-col-1, .sec-stats .history-col-3 { padding: 10px; }
  .sec-stats .history-col-2 { padding: 10px; }
}

.sec-videos { padding: 50px 0; }
.sec-videos h3 { color: var(--body-color); margin: 25px 0; }
.video-embed { aspect-ratio: 16 / 9; }
.video-embed iframe { width: 100%; height: 100%; border: 0; }
/* Neutral fallback shown in place of a removed/unavailable video (no broken frame) */
.video-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 20px;
  text-align: center;
  background: var(--offwhite);
  border: 1px solid #e2e2e2;
  color: rgba(1, 22, 39, 0.55);
  font-size: 14px;
}
.sec-videos .col-50 { padding: 10px 25px; }
@media (max-width: 767px) { .sec-videos .col-50 { padding: 10px; } }

/* ---------- Products page ---------- */
.sec-catalogue-head { padding: 60px 0 0; text-align: center; }
.sec-catalogue-head h2 { margin: 0; }
.product-grid { padding: 35px 0 150px; }
.product-grid.first { padding-top: 0; }
.product-card img { width: 100%; }
.product-card h4 {
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 25px 50px 0 0;
  margin-bottom: 20px;
}
.product-card .desc { padding-right: 50px; }
.product-card .btn { margin-top: 20px; }
@media (max-width: 1024px) {
  .product-grid { padding: 0 20px 50px; }
  .product-card h4 { padding: 25px 0 0; }
  .product-card .desc { padding-right: 0; }
}
@media (max-width: 767px) {
  .product-grid { padding: 0 20px 40px; }
  .product-card { padding-bottom: 40px; }
  .product-card h4 { padding-top: 10px; }
}

/* ---------- Product detail pages ---------- */
.sec-specs-head { padding: 60px 0 0; }
.sec-specs-head h2 { margin: 0; }
.sec-specs { padding: 35px 0 50px; }
.sec-specs .cols { align-items: center; }
.sec-specs img { width: 100%; }

.sec-detail { padding: 0 0 100px; }
.toggle-group summary {
  padding: 15px;
  font-size: 15px;
  font-weight: 700;
  color: var(--body-color);
  border-bottom: 1px solid #d5d8dc;
  cursor: pointer;
  list-style: none;
}
.toggle-group details:first-child > summary { border-top: 1px solid #d5d8dc; }
.toggle-group summary::-webkit-details-marker { display: none; }
.toggle-group summary::before { content: "\25B8"; margin-right: 10px; }
.toggle-group details[open] > summary::before { content: "\25B4"; }
.toggle-group .toggle-content {
  padding: 15px;
  overflow-x: auto;
}
.toggle-content table { border-collapse: collapse; width: 100%; }
.toggle-content td, .toggle-content th { border: 1px solid #d5d8dc; padding: 6px 10px; }
@media (max-width: 1024px) {
  .sec-specs, .sec-detail { padding-left: 20px; padding-right: 20px; }
}

/* ---------- Contact page ---------- */
.sec-contact { padding: 150px 0; }
.sec-contact .col-info { padding: 50px 100px 0 10px; }
.sec-contact h2 { color: var(--navy); }
.icon-list { list-style: none; margin: 0; padding: 0; }
.icon-list li { display: flex; align-items: flex-start; margin-bottom: 15px; }
.icon-list svg {
  flex: 0 0 auto;
  width: 18px; height: 18px;
  margin: 6px 12px 0 0;
  fill: var(--red);
}
.map-embed { line-height: 0; }
.map-embed iframe { width: 100%; height: 480px; border: 0; }
@media (max-width: 1024px) { .sec-contact { padding: 75px 25px; } .sec-contact .col-info { padding: 50px 35px 0 10px; } }
@media (max-width: 767px)  { .sec-contact { padding: 50px 20px; } .sec-contact .col-info { padding: 0 10px 50px; } }

/* ---------- Forms (Contact Form 7 look) ---------- */
form label { display: block; margin-bottom: 1.75em; }
form .field-label { display: block; }
input[type="text"], input[type="email"], input[type="tel"], textarea {
  width: 100%;
  color: #666;
  font: inherit;
  padding: 0.75em;
  border: 1px solid #eaeaea;
  border-radius: 2px;
  background: #fafafa;
  box-shadow: none;
  -webkit-appearance: none;
  transition: all 0.2s linear;
  margin-top: 4px;
}
input:focus, textarea:focus { border-color: var(--red); outline: none; }
form input[type="submit"], form button[type="submit"] {
  font: inherit;
  color: #fff;
  font-weight: 400;
  border: 1px solid var(--red);
  background-color: var(--red);
  border-radius: 100px;
  padding: 6px 20px;
  cursor: pointer;
  transition: all 0.2s;
}
form input[type="submit"]:hover, form button[type="submit"]:hover {
  border-color: var(--red-hover);
  background-color: var(--red-hover);
}
.checkbox-group { margin-bottom: 1.75em; }
.checkbox-group .group-label { display: block; }
.checkbox-group label {
  display: inline-block;
  margin: 0 1em 0.5em 0;
  font-weight: 400;
}
.checkbox-group input[type="checkbox"] { margin-right: 6px; }

/* ---------- Enquiry page ---------- */
.sec-enquiry { padding: 50px 0 150px; }
.sec-enquiry h2 { color: var(--body-color); text-align: center; padding: 60px 0 25px; margin: 0; }
@media (max-width: 1024px) { .sec-enquiry { padding: 25px 25px 100px; } }
@media (max-width: 767px)  { .sec-enquiry { padding: 20px 20px 75px; } }

/* ---------- Privacy policy (plain boxed page, like the Astra default) ---------- */
.plain-page { background: var(--offwhite); padding: 50px 20px 60px; }
.plain-page .page-card {
  background: #fff;
  max-width: 1210px;
  margin: 0 auto;
  padding: 5.34em 6.67em;
}
.plain-page .entry-title { font-size: 30px; color: var(--body-color); }
.plain-page h2 { font-size: 34px; }
.plain-page h3 { font-size: 23px; }
@media (max-width: 767px) { .plain-page .page-card { padding: 2.5em 1.5em; } }

/* ---------- Footer ---------- */
.site-footer {
  background-color: var(--footer-bg);
  padding: 100px 0 40px;
  font-size: 14px;
}
.site-footer .cols { align-items: flex-start; }
.footer-col-about   { width: 30%; padding-right: 80px; }
.footer-col-products{ width: 24%; }
.footer-col-hours   { width: 24%; }
.footer-col-company { width: 22%; }
.site-footer .footer-logo img { width: 226px; }
.footer-about-text { margin-top: 20px; color: rgba(255, 255, 255, 0.65); }
.footer-about-text h4 { color: #fff; font-size: 16px; margin-bottom: 20px; }
.site-footer h5 {
  color: rgba(255, 255, 255, 0.33);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0 0 20px;
}
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin: 2px 0; }
.footer-links a,
.footer-hours { color: rgba(255, 255, 255, 0.59); font-weight: 500; }
.footer-links a:hover, .footer-links a:focus { color: var(--red); }
.footer-hours { font-size: 16px; }
.footer-hours a { color: var(--red); }
.footer-hours a:hover, .footer-hours a:focus { color: #fff; }
.footer-bottom { margin-top: 80px; color: rgba(255, 255, 255, 0.75); }
.footer-bottom .copyright { width: 50%; padding-right: 25px; }
.footer-bottom .credit { width: 50%; text-align: right; }
.footer-bottom a { color: var(--red); }
.footer-bottom a:hover, .footer-bottom a:focus { color: #fff; }
@media (max-width: 1024px) {
  .site-footer { padding: 50px; }
  .footer-col-about { width: 100%; margin-bottom: 50px; padding-right: 10px; text-align: center; }
  .footer-col-products, .footer-col-hours { width: 33%; }
  .footer-col-company { width: 33%; }
}
@media (max-width: 767px) {
  .site-footer { padding: 50px 20px; }
  .footer-col-about, .footer-col-products, .footer-col-hours, .footer-col-company {
    width: 100%; margin-bottom: 50px; text-align: center;
  }
  .footer-col-company { margin-bottom: 0; }
  .footer-bottom .copyright, .footer-bottom .credit { width: 100%; text-align: center; padding: 0; }
}
