﻿/*************** General styles ***************/
body {
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 400;
  --desktop-font-scale-factor: 1;
}
h1 {
  font-weight: 900;
}
h2,
.h4 {
  font-weight: 700;
}
header nav,
.btn {
  font-weight: 500;
}
address {
  margin-bottom: 0;
}
.carousel-control-next,
.carousel-control-prev {
  width: 3rem;
}
.carousel-control-next-icon,
.carousel-control-prev-icon {
  width: 1.2rem;
  height: 1.2rem;
}
.preserve-linebreaks {
  white-space: pre-line;
}
main > section {
  position: relative;
}
main > section .section-anchor {
  position: absolute;
  top: -6rem;
  display: inline-block;
  width: 1px;
  height: 1px;
  font-size: 0;
  line-height: 0;
}
.btn-primary,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:disabled,
.btn-primary:hover {
  background-color: rgb(var(--thq-theme-primary-rgb));
  border-color: rgb(var(--thq-theme-priamry-rgb));
  color: rgb(var(--thq-theme-primary-font-color-rgb));
}
.btn-primary:disabled {
  background-color: rgba(var(--thq-theme-primary-rgb), 0.6);
  border-color: rgba(var(--thq-theme-primary-rgb), 0.6);
  color: rgba(var(--thq-theme-primary-font-color-rgb), 0.6);
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:disabled,
.btn-secondary:hover {
  background-color: rgb(var(--thq-theme-secondary-rgb));
  border-color: rgb(var(--thq-theme-secondary-rgb));
  color: rgb(var(--thq-theme-secondary-font-color-rgb));
}
.btn-secondary:disabled {
  background-color: rgba(var(--thq-theme-secondary-rgb), 0.6);
  border-color: rgba(var(--thq-theme-secondary-rgb), 0.6);
  color: rgba(var(--thq-theme-secondary-font-color-rgb), 0.6);
}
#upload-button.btn-primary,
#upload-button.btn-primary:active,
#upload-button.btn-primary:focus,
#upload-button.btn-primary:hover {
  background-color: var(--thq-upload-button-colour);
  border-color: var(--thq-upload-button-colour);
  color: white;
}
/*************** Global media-query tweaks  ***************/
@media (min-width: 1200px) {
  body {
    --desktop-font-scale-factor: 0.8;
  }
}
@media (min-width: 1400px) {
  body {
    --desktop-font-scale-factor: 1;
  }
}
@media (min-width: 1200px) {
  body {
    --bs-body-font-size: calc(1rem * var(--desktop-font-scale-factor));
  }
  .btn {
    font-size: var(--bs-body-font-size);
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .h1,
  .h2,
  .h3,
  .h4,
  .h5,
  .h6 {
    line-height: calc(1.2 * var(--desktop-font-scale-factor));
  }
  h1,
  .h1 {
    font-size: calc(2.5rem * var(--desktop-font-scale-factor));
  }
  h2,
  .h2 {
    font-size: calc(2rem * var(--desktop-font-scale-factor));
  }
  h3,
  .h3 {
    font-size: calc(1.75rem * var(--desktop-font-scale-factor));
  }
  h4,
  .h4 {
    font-size: calc(1.5rem * var(--desktop-font-scale-factor));
  }
  h5,
  .h5 {
    font-size: calc(1.25rem * var(--desktop-font-scale-factor));
  }
  h6,
  .h6 {
    font-size: calc(1rem * var(--desktop-font-scale-factor));
  }
}
@media (min-width: 769px) {
  body .navbar a {
    font-size: calc(1rem * 0.8);
  }
}
/*************** Header theme-specific background  ***************/
.header {
  display: flex;
  align-content: center;
  flex-direction: column;
  justify-content: center;
}
.header-logo {
  max-height: 100px;
  max-width: 375px;
  width: auto;
  mix-blend-mode: darken;
}
img.header-logo {
  padding: 8px;
  background-color: white;
}
.header {
  background-color: white;
  box-shadow: unset;
  margin-top: unset;
  padding-top: 2rem;
  transition: padding-top 0.2s ease-in-out, background-color 0.2s ease-in-out, box-shadow 1s ease-in-out;
}
.header a.logo-brand {
  text-decoration: none;
  color: inherit;
}
.header .brand {
  display: none;
}
.header .brand.no-logo {
  display: block;
}
.header.scrolled {
  background-color: white;
  padding-top: 0;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.05);
}
.header.scrolled .header-logo {
  display: none;
}
.header.scrolled .brand {
  display: block;
}
@media (max-width: 860px) {
  .header-logo {
    max-width: 286px;
    max-height: 80px;
    width: auto;
  }
}
@media (max-width: 780px) {
  .header-logo {
    max-width: 266px;
    max-height: 80px;
    width: auto;
  }
}
@media (max-width: 767px) {
  .header {
    padding-top: 1rem;
  }
  .header .navbar-collapse {
    margin-top: 1rem;
  }
}
@media (max-width: 385px) {
  .header-logo {
    max-width: 214px;
    max-height: 60px;
    width: auto;
  }
}
/*************** Footer theme-specific background  ***************/
.footer-logo {
  max-height: 80px;
  max-width: 230px;
  border-radius: 4px;
}
img.footer-logo {
  padding: 8px;
  background-color: white;
}
@media (max-width: 768px) {
  .footer-logo {
    max-width: 285px;
  }
}
@media (min-width: 992px) {
  .footer-logo {
    max-width: 285px;
  }
}
.footer {
  background-color: rgb(var(--thq-theme-primary-rgb));
}
.footer .social-link {
  display: inline-block;
}
.footer .social-link i {
  width: auto;
  font-size: 30px;
}
/*************** Hero section ***************/
.hero-section {
  padding-top: 5rem;
}
.hero-section .hero-image {
  display: flex;
  aspect-ratio: 1;
}
.hero-section .hero-image img {
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
  object-position: center;
}
/*************** Services section ***************/
.services-section .service-icon {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  aspect-ratio: 1;
  color: rgb(var(--thq-theme-primary-rgb));
  background-color: rgba(var(--thq-theme-primary-rgb), 0.1);
}
.services-section .service-icon > i {
  line-height: 2rem;
}
.services-section .services {
  text-align: center;
}
/*************** Our work section ***************/
.our-work-section .carousel-inner {
  width: inherit;
}
.our-work-section .carousel-inner .carousel-item {
  padding: 0;
}
.our-work-section .gallery {
  margin-top: 3rem;
}
.our-work-section .gallery .gallery-item-crop {
  display: flex;
}
.our-work-section .gallery .gallery-item-crop img {
  aspect-ratio: 1;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 767px) {
  .our-work-section .gallery .gallery-item-crop {
    width: 100vw;
    height: 100vw;
  }
}
/*************** Testimonials section ***************/
.testimonials-section {
  margin-top: 3rem;
}
.testimonials-section > .testimonials-shadow {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
.testimonials-section .testimonials-caption {
  text-align: center;
  padding: 1rem;
}
.testimonials-section .testimonial-item {
  position: relative;
}
.testimonials-section .testimonial-item svg {
  position: absolute;
  content: " ";
  right: 3rem;
  top: 3rem;
  color: rgba(var(--thq-theme-primary-rgb), 0.1);
}
.testimonials-section .testimonial-item .customer-name {
  font-size: 1.12rem;
}
.testimonials-section .testimonial-item .customer-type {
  font-size: 0.88rem;
}
/*************** Contact us section ***************/
.contact-us-section {
  background: white;
}
.contact-us-section > div {
  padding-top: 3rem;
}
@media (max-width: 768px) {
  .contact-us-section > div {
    padding-top: 1rem;
  }
}
.contact-us-section .contact-icon {
  color: rgb(var(--thq-theme-primary-rgb));
}
.contact-us-section .map {
  background: lightgray;
  height: 100%;
}
.contact-us-section .contact-outer {
  padding-top: 5rem;
  position: relative;
}
.contact-us-section .contact-outer .map-wrapper {
  height: 250px;
}
.contact-us-section .contact-outer .contact-details {
  margin-top: 3rem;
}
.contact-us-section .contact-outer .contact-details > h1 {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
/*************** Enquiry section ***************/
.enquiry-section .dropzone {
  border: 1px dashed #a6adb3;
  border-radius: 5px;
  display: block;
}
.enquiry-section .dropzone.over {
  opacity: 0.5;
}