/* =========================
   Global Styles
   ========================= */
:root {
  --color-primary: #b3303d;
  --color-secondary: #;
  --color-dark: #111;
  --color-light: #fefefe;
  --color-white: #ffffff;
  --color-grey: #27282a;
  --color-text: #696969;
  --font-base: "Inter", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  font-weight: 500;
  font-style: normal;
  line-height: 1;
  color: var(--color-text);
  background: #fff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

ul {
  list-style: none;
  list-style-position: inside;
}
a { text-decoration: none; color: inherit; }

.btn-primary,
.btn-secondary,
.btn-tertiary {
  display: inline-block;
  padding: 20px 40px;
  border-radius: 3px;
  font-weight: bold;
  transition: background 0.3s ease;
  border: 0px solid;
  font-size: 1.125rem;
  font-weight: 700;
}

.btn-primary { background: var(--color-primary) !important; color: #fff !important; }
.btn-primary:hover { background: var(--color-grey) !important; }

.btn-secondary { background: var(--color-secondary) !important; color: #fff !important; }
.btn-secondary:hover { background: var(--color-grey) !important; }

.btn-tertiary { background: var(--color-dark) !important; color: #fff !important; }
.btn-tertiary:hover { background: var(--color-grey) !important; }

.xlpad {
  padding-bottom: 20px;
}
.lpad {
  padding-bottom: 15px;
}
.mpad {
  padding-bottom: 10px;
}
.spad {
  padding-bottom: 5px;
}
.contact-bg {
  background-image: url(img/contact-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
hr {
  border-color: var(--color-primary);
  margin: 20px 0px 40px 0px;
  width: 50px;
  border-width: 2px;
  border-style: solid;
}
/* =========================
   Fonts
   ========================= */

.primary {
  font-size: 4.5rem;
  font-family: "Mulish", sans-serif;
  font-weight: 800;
  color: var(--color-grey);
  letter-spacing: -2px;
  line-height: 1.1em;
}
.secondary {
  font-size: 3rem;
  font-family: "Mulish", sans-serif;
  font-weight: 800;
  color: var(--color-grey);
  letter-spacing: -2px;
  line-height: 1.1em;
}
.tertiary {
  font-size: 1.75rem;
  font-family: "Mulish", sans-serif;
  font-weight: 800;
  text-transform: capitalize;
  letter-spacing: -2px;
  line-height: 1.1em;
}
.branded {
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1.1em;
}
.buttons-text {
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: capitalize;
}
p {
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.4rem;
}

/* =========================
   Header & Navigation
   ========================= */
.site-header {
  background: #F7F7F7;
  border-bottom: 4px solid var(--color-primary);
  top: 0;
  z-index: 1000;
}
.logo {
  border: 0rem;
  border-radius: 0px;
  background-color: var(--color-white);
}
a.logo {
  padding: 10px;
}
img.logo {
  width: 69px;
}
.header-overlay {
  background-color: var(--color-white);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0em 0;
}
.menu {
  display: flex;
}
.menu.is-open {
  display: block;
}
.main-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
ul#primary-menu {
  list-style: none;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.main-nav a {
  color: var(--color-grey);
  font-size: 1rem;
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  padding: 1rem;
}
.main-nav a:hover {
  color: var(--color-primary);
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  background-color: var(--color-secondary);
  border-radius: 3px;
}
.hamburger {
  width: 25px;
  height: 2px;
  background: black;
  display: block;
  position: relative;
}
.hamburger::before,
.hamburger::after {
  content: "";
  width: 25px;
  height: 2px;
  background: black;
  position: absolute;
  left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

/* =========================
   Hero Section
   ========================= */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 0 10rem 0;
  gap: 2em;
}
.bg-container .overlay {
  background-color: #f2f6f9;
}
.hero-left {
  width: 48%;
  flex: 1;
  color: var(--color-text);
}
.hero-right {
  width: 48%;
  flex: 1;
  border-radius: 0px;
  color: var(--color-grey);
  background-color: var(--color-white);
  padding: 2rem;
  box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.1);
}
.contact-form label {
  font-family: "Mulish", sans-serif;
  display: block;
  margin-top: 1em;
  font-weight: 500;
  font-size: 0.875rem;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.75em;
  margin-top: 0.5em;
  border: 1px solid #111;
  border-radius: 3px;
  font-size: 1rem;
}
.contact-form button {
  margin-top: 1em;
  width: 100%;
}
.hero-right h2 {
  color: #27282a;
  font-family: "Mulish", sans-serif;
  font-weight: 600;
  font-size: 2rem;
}
/* =========================
   Two Column Section
   ========================= */
.two-col {
  display: flex;
  align-items: flex-start;
  gap: 2em;
  padding: 4em 0;
  flex-wrap: wrap;
  flex-direction: row;
}
.two-col.reversed { flex-direction: row-reverse; }
.section1-bg {
  background-image: url(img/section1-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section1-bg .overlay {
  background-image: linear-gradient(90deg, rgb(255 255 255 / 100%) 50%, rgb(255 255 255 / 30%) 100%);
}
.section1-bg .two-col-left, .section1-bg .two-col-right {
  flex-grow: 1;
  width: 48%;
}
.section1-bg .two-col-right img {
  height: 500px;
  width: 100%;
  object-fit: cover;
  object-position: bottom;
}
.section2-bg {
  background-image: url(img/Flat-roofs-19.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section2-bg .overlay {
  background-color: rgb(1 1 1 / 75%);
}
.section2-bg .two-col-left {
  flex-grow: 1;
  width: 58%;
}
.section2-bg .two-col-right {
  width: 38%;
  flex-grow: 1;
}
.section2-bg h2, .section2-bg p {
  color: var(--color-white);
  z-index: 2;
}
.section2-bg .two-col {
  padding: 8rem 0;
}
.callout-section {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
.selling-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
.selling-box {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #ffffff2b;
  width: 48%;
  flex-grow: 1;
}
.selling-box:hover {
  background-color: #ffffff2b;
}
.selling-box h3, .selling-box p {
  color: var(--color-white);
  text-align: center;
}
.selling-box h3 {
  font-size: 1.125rem;
  font-weight: 800;
  font-family: "Mulish", sans-serif;
  line-height: 25.2px;
  letter-spacing: 0px;
}
.selling-box svg {
  margin-bottom: 1rem;
}
.callout-box {
  padding: 32px;
  width: 32%;
  flex-grow: 1;
  background-color: var(--color-white);
  box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.1);
  margin-top: -6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.callout-box p {
  text-align: center;
}
.callout-box h3 {
  text-align: center;
  color: var(--color-grey);
  font-size: 1.5rem;
  font-weight: 600;
}
.numbers {
  padding: 1rem;
  background-color: var(--color-white);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.1);
  margin-top: -8rem;
  width: 700px;
}
.number-box {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  width: 32%;
  flex-grow: 1;
  border-color: #f2f6f9;
  border-style: solid;
  border-width: 0px 1px 0px 0px;
}
.number-box:last-child {
  border-width: 0px 0px 0px 0px;
}
.number-box span {
  font-size: 3rem;
  font-family: "Mulish", sans-serif;
  font-weight: 800;
  color: var(--color-primary);
  text-align: center;
}
.number-box p {
  font-size: 1rem;
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  text-align: center;
}
/* =========================
   Highlights Section
   ========================= */
.highlights-bg .overlay {
  background-image: linear-gradient(135deg, var(--color-grey) 0%, var(--color-dark) 100%);
}
.highlights {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8rem 0;
  gap: 20px;
}
.highlights p,
.highlights h3 {
  color: var(--color-white);
}
.highlight-box {
  text-align: center;
  padding: 10px;
  background-color: var(--color-secondary);
  width: 25%;
  flex-grow: 1;
}
.highlight-box img {
  padding-bottom: 20px;
}
.highlight-header {
  width: 25%;
  flex-grow: 1;
}
.highlight-header h3 {
  font-size: 3rem;
  font-family: "Mulish", sans-serif;
  font-weight: 800;
  line-height: 1.1em;
}
/* =========================
   Services Section
   ========================= */
.services { padding: 2em 0; text-align: center; }
.services { font-size: 2rem; margin-bottom: 0em; }
.services .section-sub {
  color: var(--color-dark);
  width: 75%;
  margin: auto;
  padding-bottom: 2rem;
}
#services-heading {
  color: var(--color-dark);
  padding-bottom: 3rem;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(325px, 1fr));
  gap: 0.5em;
}
.service-card {
  background-color: var(--color-white);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.1);
}
.service-card div:last-child {
  padding: 2rem;
}
.service-card h3 {
  font-size: 1.5rem;
  padding-right: 1rem;
  font-weight: 600;
  font-family: "Mulish", sans-serif;
  color: var(--color-grey);
}
.service-card p {
  color: var(--color-grey);
  font-size: 0.875rem;
}
.service-card .btn-primary.buttons-text {
  padding: 10px 20px !important;
}
.service-card img {
  height: 280px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
/* =========================
   Reviews Section
   ========================= */
.section3-bg {
  background-image: url(img/bg1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section3-bg .overlay {
  background-image: radial-gradient(at top center, #FFFFFFCC 0%, #ffffff 65%);
}
.section3-bg .two-col {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.section3-bg .two-col-left, .section3-bg .two-col-right {
  width: 60%;
  flex-grow: 1;
}
.section3-bg .two-col-right {
  padding: 4rem;
  background-color: white;
  box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-self: end;
  margin-top: -22rem;
  border-radius: 3px;
}
.section3-bg img {
  border-radius: 3px;
}

/* =========================
   FAQ Section
   ========================= */

.faq-bg {
  background: var(--color-white);
}
.faq-bg .two-col-left {
  width: 68%;
  flex-grow: 1;
}
.faq-bg .two-col-right {
  width: 28%;
  flex-grow: 1;
}
.faq-bg h2 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--color-grey);
  font-family: "Mulish", sans-serif;
}
.card {
  padding: 1.75rem;
  background-color: #f2f6f9;
  margin-bottom: 0.5rem;
  border-radius: 3px;
}
.q {
  font-size: 1.125rem;
  color: var(--color-grey);
  font-family: "Mulish", sans-serif;
  font-weight: 800;
}
.answer {
  padding: 1.5rem 0.5rem 0.5rem 0.5rem;
  line-height: 1.4;
}
summary {
  padding-left: 0.5rem;
}
::marker {
  font-size: 20px;
  color: var(--color-primary);
}
.contact-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  background-image: linear-gradient(135deg, #010101 0%, #27282a 100%);
  border-radius: 3px;
  margin-bottom: 20px;
}
.contact-box h3 {
  color: white;
  font-family: "Mulish", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}
.contact-left {
  background-color: #f2f6f9;
  padding: 2rem 1.5rem;
}
/* =========================
   Gallery Section
   ========================= */

.gallery-bg {
  padding: 2em 0;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0em;
  background-color: #010101;
}
#gallery-heading {
  color: white;
  padding-bottom: 1rem;
}
.gallery .section-sub {
  color: var(--color-white);
  width: 75%;
  margin: auto;
  padding-bottom: 4rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0.5em;
}
.gallery-card {
  color: #fff;
  border-radius: 0px;
  position: relative;
  overflow: hidden;
  height: 350px;
  width: 100%;
}
img.gallery-card {
  border: 0px !important;
  object-fit: cover;
}
/* =========================
   Contact Section
   ========================= */
.contact-left { flex: 1; }
.contact-left h3 {
  color: #27282a;
  font-family: "Mulish", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
}
.contact-left address { margin-top: 1.5em; line-height: 1.4; }
form.contact-form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 1.125rem;
}
.short-input {
  width: 48%;
  flex-grow: 1;
}

/* =========================
   Footer
   ========================= */

.site-footer { 
  background-image: linear-gradient(135deg, #27282a 0%, #010101 100%);
  color: #fff; 
  margin-top: 0rem; 
}
.site-footer h3 {
  font-family: "Mulish", Sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
}
.footer-inner { 
  display: flex;
  gap: 2em; 
  padding: 2rem 0;
  align-items: flex-start;
}
.footer-left img {
  margin-right: 1rem;
  border: 0rem;
  border-radius: 0px;
}
.footer-left {
  display: flex;
  align-items: center;
  width: 50%;
}
.footer-middle {
  width: 25%;
}
.footer-middle a {
  font-size: 0.875rem;
  font-family: "Inter", Sans-serif;
  font-weight: 400;
  line-height: 20px;
}
.footer-middle li {
  padding-bottom: 4px;
}
.footer-right {
  width: 20%;
}
.footer-right a, .footer-right p { 
  font-size: 0.875rem;
  font-family: "Inter", Sans-serif;
  font-weight: 400;
  line-height: 20px;
}
.copyright-banner {
  background: var(--color-secondary);
  text-align: left;
  padding: 0.4em 0;
  font-size: 0.813rem;
}
.cr-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-family: "Inter", sans-serif;
}
small {
  color: var(--color-white);
  padding: 10px 10px 8px 10px;
  border-radius: 3px;
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 1325px) {
  .service-grid { grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); }
  .numbers {margin-top: -6rem;}
}
@media (max-width: 1100px) {
  .main-nav { display: flex; justify-content: flex-end; }
  .main-nav a { color: var(--color-grey); width: 100%; display: block; }
  .main-nav a:hover { color: var(--color-white); background-color: var(--color-primary); }
  .menu-toggle { display: block; padding: 1rem 0.5rem;         background-color: #f2f6f9; margin-right: 1rem }
  .main-nav .menu { flex-direction: column; background: var(--color-white); position: absolute; right: 0em; top: 8%; border: 1px solid #ddd; padding: 1em; gap: 0em; display: flex; width: 100%; }
  [hidden] { display: none !important; }
  .hero, .two-col { flex-direction: column; }
  .nomob { /*display: none;*/ height: 500px; width: 100%; object-fit: cover; }
  .hero-left, .hero-right {width: 100%;}
  .callout-box {width: 22%;}
  .section1-bg .two-col-left, .section1-bg .two-col-right {width: 100%;}
  .highlight-header {width: 75%;}
  .highlight-box {width: 25%;}
  .section2-bg .two-col-left {width: 100%;}
  .faq-bg .two-col {flex-direction: row;}
}
@media (max-width: 1020px) {
  .hero, .two-col { flex-direction: column; }
  .footer-inner { flex-direction: column; gap: 1em; }
  .footer-left, .footer-middle, .footer-right { width: 100%; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0px; }
  .footer-right { padding-bottom: 1rem; }
  .two-col { padding: 2em 0; }
  .services { padding: 2em 0; }
  .service-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
  .gallery { padding: 2em 0; }
  .services .section-sub, .gallery .section-sub { width: 100%; }
  .cr-box { flex-direction: column; text-align: center; }
}
@media (max-width: 767px) {
  .main-nav .menu { top: 13%; }
  .footer-middle a { font-size: 1rem; }
  button#accept-cookies { margin-top: 10px; }
  .primary { font-size: 2rem; }
  .secondary { font-size: 2rem; }
  .callout-box {width: 48%;}
  .callout-box:last-child {margin-top: 0;}
  .numbers {width: auto;}
  .highlight-header {width: 100%;}
  .highlights {flex-direction: column;}
  .highlight-box {width: 100%;}
  .section3-bg .two-col-left, .section3-bg .two-col-right {width: 100%;}
  img.logo {width: 90px;}
.main-nav .btn-primary {display: none;}
.section3-bg .two-col-right {padding: 2rem;}
.number-box span {font-size: 2rem;}
.callout-box {margin-top: 0rem;}
.number-box {padding: 0.5rem;}
.footer-left img {margin-right: 0rem; margin-bottom: 1rem;}
}
