/* reset lists */
/* flex - center */
@font-face {
  font-family: "Roboto";
  src: url("../../fonts/Roboto-Regular.ttf") format("truetype");
  font-display: swap;
}
:root {
  --primary-col: #2b66b4;
  --accent-col: #5ca815;
  --accent-light: rgba(43, 102, 180, 0.125);
  --accent-lighter: #e9f0fa;
  --secondary-col: #408508;
  --dark-bg: #2c503b;
  --dark-col: #292b2c;
  --white-col: #ffffff;
  --backdrop: rgba(0, 0, 0, 0.7);
  --ff: Roboto;
  --fs: 16px;
  --fs-h1: 4rem;
  --fs-h2: 2rem;
  --fs-h3: 1.5rem;
  --fs-p: 1rem;
  --fw-n: 400;
  --fw-m: 500;
  --fw-b: 700;
  --f-col: var(--dark-col);
  --sec-pad: 70px 0;
  --spacer: 1rem;
  --spacer-md: calc(var(--spacer) * 2);
  --spacer-lg: calc(var(--spacer) * 3);
  --shadow: 0 0 1em rgba(0, 0, 0, 0.25);
  --br: 0.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
ul,
ol,
dl,
dd {
  margin: 0;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
  height: auto;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.btn:focus,
.btn:hover,
a {
  text-decoration: none;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
*::before,
*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-weight: 400;
  line-height: 1.1;
  color: #2b66b4;
  color: var(--primary-col);
  margin-top: 1rem;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 25em) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}
@media only screen and (max-width: 52em) {
  h4 {
    font-size: 1.3rem;
  }
}

h5 {
  font-size: 1.3rem;
  font-weight: 600;
}

h6 {
  font-size: 1.3rem;
  font-weight: 400;
}

p {
  font-size: 1rem;
  line-height: 1.8;
  padding: 0.25rem auto;
}

a {
  color: #5ca815;
  color: var(--accent-col);
}
a::hover {
  color: #408508;
  color: var(--secondary-col);
}

.home h1 {
  font-size: 3rem;
  font-weight: 500;
  color: #408508;
  color: var(--secondary-col);
}
@media only screen and (max-width: 40em) {
  .home h1 {
    font-size: 2rem;
  }
}

.welcome p {
  padding-top: 1rem;
}

.product-overview h3 {
  color: #ffffff;
  color: var(--white-col);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 3rem;
  scrollbar-color: var(--primary-col) var(--white-col);
}
html::-webkit-scrollbar {
  width: 15px;
}
html::-webkit-scrollbar-thumb {
  background: #2b66b4;
}
html::-webkit-scrollbar-track {
  background-color: #ffffff;
}

body {
  font-size: 16px;
  font-size: var(--fs);
  font-family: "Roboto";
  font-family: var(--ff);
  font-weight: 400;
  font-weight: var(--fw-n);
  color: var(--dark-col);
  color: var(--f-col);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

.container {
  width: 80%;
  max-width: 100%;
  margin: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 5%;
}
@media only screen and (max-width: 70em) {
  .header {
    margin-top: 58px;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 40em) {
  .header {
    flex-direction: column-reverse;
    margin-left: 0;
  }
}
.header-title {
  width: 30%;
}
@media only screen and (max-width: 40em) {
  .header-title {
    display: none;
  }
}
.header-img {
  width: 70%;
}
@media only screen and (max-width: 40em) {
  .header-img {
    width: 100%;
  }
}
.header img {
  grid-column: 2/3;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

hr {
  color: #2b66b4;
  color: var(--primary-col);
}

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

.hidden {
  display: none;
}

.ma {
  margin: auto;
}

.w-33 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
@media only screen and (max-width: 65em) {
  .w-33 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 1rem;
  }
}
@media only screen and (max-width: 52em) {
  .w-33 {
    flex: 0 0 70%;
    max-width: 70%;
    padding: 0 1rem;
    margin: auto;
  }
}
@media only screen and (max-width: 40em) {
  .w-33 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.sticky {
  position: sticky;
  overflow: visible;
  top: 150px;
}
@media only screen and (max-width: 65em) {
  .sticky {
    position: relative;
    top: 0;
  }
}

.tick {
  display: flex;
  align-items: center;
}
.tick-space {
  margin-right: 10px;
  color: #5ca815;
  color: var(--accent-col);
  font-weight: bold;
  font-size: 22px;
}

.points {
  list-style-type: disc;
  margin: 2rem;
}

.cta-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding: 1rem;
}
@media only screen and (max-width: 52em) {
  .cta-section {
    flex-direction: column;
    gap: 0;
  }
}
.cta-section h4 {
  color: #ffffff;
  color: var(--white-col);
}

[role=button],
a,
area,
button,
input,
label,
select,
summary,
textarea {
  touch-action: manipulation;
}

button,
select {
  text-transform: none;
  cursor: pointer;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
  padding: 0.75rem 2rem;
  font-size: 16px;
}

.btn-group-lg > .btn,
.btn {
  padding: 0.5rem 1.5rem;
  font-size: 1.25rem;
  border-radius: 0.2rem;
}
@media only screen and (max-width: 25em) {
  .btn-group-lg > .btn,
.btn {
    font-size: 1.1rem;
  }
}

.accent-btn {
  color: #ffffff;
  color: var(--white-col);
  background-color: #5ca815;
  background-color: var(--accent-col);
  border-color: #5ca815;
  border-color: var(--accent-col);
}
.accent-btn:hover {
  background-color: #408508;
  background-color: var(--secondary-col);
}

.primary-btn {
  background-color: #2b66b4;
  background-color: var(--primary-col);
  border-color: #2b66b4;
  border-color: var(--primary-col);
  color: #ffffff;
  color: var(--white-col);
}
.primary-btn:hover {
  background-color: #408508;
  background-color: var(--secondary-col);
}

.btn-search {
  margin-top: 0;
  padding: 0.5rem 0.75rem;
  border-left: none;
}

.welcome .btn {
  margin-top: 1.5rem;
}

.cta {
  margin-top: 3rem;
}

nav {
  background-color: #ffffff;
  background-color: var(--white-col);
  padding: 0.5rem 0rem;
}
nav#Home {
  opacity: 0.6;
}
nav#Home:hover {
  opacity: 1;
}

.nav {
  width: 90%;
  margin: auto;
  background-color: #ffffff;
  background-color: var(--white-col);
}
.nav-scrolled {
  opacity: 1 !important;
}
.nav-group {
  width: 100%;
}
.nav-list {
  margin: auto;
}
.nav-list-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 400;
  color: #292b2c;
  color: var(--dark-col);
  padding: 5px 15px;
  border-bottom-width: 0;
}
.nav-link:hover::after, .nav-link.active::after {
  opacity: 1;
  width: 100%;
}
.nav-link::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 2px;
  background: #2b66b4;
  background: var(--primary-col);
  opacity: 0;
  transition: opacity 0.3s, width 0.4s;
}
@media only screen and (max-width: 73em) {
  .nav-toggle {
    position: relative;
    padding: 1.5rem 1.5rem;
    font-size: 1rem;
    background: white url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(43,102,180,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E") center/2rem no-repeat;
    border: 2px solid var(--primary-col);
  }
}
.nav-contacts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media only screen and (max-width: 65em) {
  .nav-contacts {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #2b66b4;
    background-color: var(--primary-col);
  }
}
@media only screen and (max-width: 78em) {
  .nav-contact.btn-lg {
    padding: 0.5rem 0.5rem;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 65em) {
  .nav-contact.btn-lg-a {
    display: block;
  }
}
.nav-contact-a.accent-btn {
  font-size: 1rem;
  color: #000;
}
.nav-contact-details {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
@media only screen and (max-width: 52em) {
  .nav-contact .tel {
    display: none;
  }
}
@media only screen and (min-width: 52em) {
  .nav-contact .tel-mobile {
    display: none;
  }
}
.nav-checkbox {
  display: none;
}

.nav,
.nav-group,
.nav-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 65em) {
  .nav,
.nav-group,
.nav-list {
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
}

@media only screen and (max-width: 73em) {
  .nav-group,
.nav-list,
.nav-contact-q {
    display: none;
  }
}

.fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.2);
}

#dropdown:checked + .nav-group {
  display: block;
  position: absolute;
  top: 75px;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  background-color: var(--backdrop);
  width: 100%;
  z-index: 9999;
  height: 100vh;
}

#dropdown:checked + .nav-group .nav-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #2b66b4;
  background-color: var(--primary-col);
}
#dropdown:checked + .nav-group .nav-list-item {
  width: 100%;
  padding: 1rem;
  border-bottom: 1px solid var(--dark-col);
}
#dropdown:checked + .nav-group .nav-link {
  color: #ffffff;
  color: var(--white-col);
}
#dropdown:checked + .nav-group .nav-link.active {
  color: #5ca815;
  color: var(--accent-col);
}

.search {
  display: flex;
  align-items: center;
  justify-content: start;
}
.search:hover input[type=search] {
  width: 30%;
}

.section-blue {
  background-color: #2b66b4;
  color: white !important;
}
.section-lightblue {
  background-color: rgba(43, 102, 180, 0.125);
  background-color: var(--accent-light);
}
.section-main {
  display: grid;
  grid-template-columns: [full-start] minmax(5%, 1fr) [main-start] 1fr [center-start] repeat(4, [col-start] minmax(min-content, 300px) [col-end]) [center-end] 1fr [main-end] minmax(5%, 1fr) [full-end];
  min-height: 100vh;
}
.section-half-half {
  grid-column: main-start/main-end;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, auto));
  gap: 6rem;
  justify-items: center;
  align-items: center;
}

.formWidth {
  width: 100%;
}

.form-group:not(:last-child) {
  margin-bottom: 0.1rem;
}

label,
output {
  display: inline-block;
}

label {
  touch-action: manipulation;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 400;
  font-weight: var(--fw-n);
}

input,
textarea {
  font-size: 1.1rem;
  font-family: inherit;
  color: inherit;
  padding: 1rem 2rem;
  border: none;
  border-bottom-color: currentcolor;
  border-bottom-style: none;
  border-bottom-width: medium;
  border-bottom: 3px solid transparent;
  width: 90%;
  display: block;
  transition: all 0.3s;
  background-color: #e9f0fa;
  background-color: var(--accent-lighter);
}
input:focus,
textarea:focus {
  border-bottom: 2px solid;
  border-bottom-color: #2b66b4;
  border-bottom-color: var(--primary-col);
}
input:focus:focus-visible,
textarea:focus:focus-visible {
  outline: currentColor;
}

#Form_Form_Phone {
  width: 100%;
}

#Form_Form_action_submit {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  border: none;
  border-radius: 0.2rem;
  background-color: #2b66b4;
  background-color: var(--primary-col);
  color: #5ca815;
  color: var(--accent-col);
  font-weight: 400 !important;
}

input[type=search] {
  padding: 0.4rem;
  width: 0;
  transition: width 0.55s ease;
}

.form-input:placeholder-shown + .form-label {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-4rem);
  transform: translateY(-4rem);
}

.gallery {
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(7, 5vw);
  gap: 1rem;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery img:hover {
  transform: none !important;
}

.gallery-item-1 {
  grid-row: 1/span 2;
  grid-column: 1/span 2;
}

.gallery-item-2 {
  grid-row: 1/span 3;
  grid-column: 3/span 3;
}

.gallery-item-3 {
  grid-row: 1/span 2;
  grid-column: 6/span 1;
}

.gallery-item-4 {
  grid-row: 1/span 2;
  grid-column: 7/span 2;
}

.gallery-item-5 {
  grid-row: 3/span 3;
  grid-column: 1/span 2;
}

.gallery-item-6 {
  grid-row: 4/span 2;
  grid-column: 3/span 2;
}

.gallery-item-7 {
  grid-row: 4/span 1;
  grid-column: 5/span 1;
}

.gallery-item-8 {
  grid-row: 3/span 2;
  grid-column: 6/span 2;
}

.gallery-item-9 {
  grid-row: 3/span 3;
  grid-column: 8/span 1;
}

.gallery-item-10 {
  grid-row: 6/span 3;
  grid-column: 1/span 1;
}

.gallery-item-11 {
  grid-row: 6/span 3;
  grid-column: 2/span 2;
}

.gallery-item-12 {
  grid-row: 6/span 3;
  grid-column: 4/span 1;
}

.gallery-item-13 {
  grid-row: 5/span 4;
  grid-column: 5/span 3;
}

.gallery-item-14 {
  grid-row: 6/span 3;
  grid-column: 8/span 1;
}

footer {
  background-color: #2b66b4;
  background-color: var(--primary-col);
}

.footer-contact {
  color: #ffffff;
  color: var(--white-col);
}

.copyright {
  color: #292b2c;
  color: var(--dark-col);
}

.bar {
  margin: 2rem;
}

@media only screen and (max-width: 73em) {
  .slideshow {
    margin-top: 76px;
  }
}

.welcome,
.about,
.hardware,
.windowstyle {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 90%;
  margin: 3rem auto;
  gap: 3rem;
}
@media only screen and (max-width: 70em) {
  .welcome,
.about,
.hardware,
.windowstyle {
    flex-direction: column;
    height: 100% !important;
  }
}
.welcome .left,
.about .left,
.hardware .left,
.windowstyle .left {
  width: 36%;
  margin-top: -6rem;
}
@media only screen and (max-width: 70em) {
  .welcome .left,
.about .left,
.hardware .left,
.windowstyle .left {
    width: 90%;
    margin: auto;
  }
}
.welcome ul,
.about ul,
.hardware ul,
.windowstyle ul {
  margin-bottom: 2rem;
}
.welcome img,
.about img,
.hardware img,
.windowstyle img {
  margin-bottom: 1.5rem;
}
.welcome .grid-col-2,
.about .grid-col-2,
.hardware .grid-col-2,
.windowstyle .grid-col-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(310px, 1fr));
  gap: 1.5rem;
}
@media only screen and (max-width: 40em) {
  .welcome .grid-col-2,
.about .grid-col-2,
.hardware .grid-col-2,
.windowstyle .grid-col-2 {
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  }
}
.welcome .col1,
.about .col1,
.hardware .col1,
.windowstyle .col1 {
  margin-top: -1.5rem;
}
.welcome .col2,
.about .col2,
.hardware .col2,
.windowstyle .col2 {
  margin-top: 1.5rem;
}

.welcome,
.products {
  height: 100vh;
}

@media only screen and (max-width: 52em) {
  .welcome {
    margin-top: 150px;
  }
}
@media only screen and (max-width: 27em) {
  .welcome {
    margin-top: 230px;
  }
}

.news {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto 4rem;
  gap: 3rem;
}
@media only screen and (max-width: 65em) {
  .news {
    gap: 1rem;
  }
}
@media only screen and (max-width: 52em) {
  .news {
    flex-direction: column-reverse;
  }
}
.news img {
  width: 50%;
  padding-left: 100px;
}
@media only screen and (max-width: 94em) {
  .news img {
    padding-left: 0px;
  }
}
@media only screen and (max-width: 65em) {
  .news img {
    width: 90%;
    margin: 0 1rem 0 5%;
  }
}
@media only screen and (max-width: 52em) {
  .news img {
    margin: 0;
  }
}
.news-text {
  width: 50%;
  padding-right: 100px;
}
@media only screen and (max-width: 65em) {
  .news-text {
    width: 100%;
  }
}
@media only screen and (max-width: 52em) {
  .news-text {
    width: 90%;
  }
}

.products {
  display: flex;
  height: 100%;
  width: 90%;
  margin: auto;
}
@media only screen and (max-width: 65em) {
  .products {
    flex-direction: column;
  }
}
.products-left {
  width: 35%;
  padding: 140px 100px 140px 0px;
  height: 100%;
}
@media only screen and (max-width: 94em) {
  .products-left {
    padding: 70px 50px 70px 0;
  }
}
@media only screen and (max-width: 65em) {
  .products-left {
    width: 90%;
    margin: auto;
    padding: 0;
  }
}
.products-right {
  width: 65%;
  padding: 3rem 0px;
  height: 100%;
  color: #ffffff;
  color: var(--white-col);
}
@media only screen and (max-width: 65em) {
  .products-right {
    width: 90%;
    margin: 3rem auto;
  }
}

.product {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: #2b66b4;
  background-color: var(--primary-col);
}
@media only screen and (max-width: 40em) {
  .product {
    flex-direction: column;
    padding-bottom: 3rem;
  }
}
.product-overview,
.product img {
  width: 50%;
}
@media only screen and (max-width: 40em) {
  .product-overview,
.product img {
    width: 100%;
    height: auto;
  }
}
.product-overview {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 2rem;
}
@media only screen and (max-width: 40em) {
  .product-overview {
    width: 90%;
  }
}
.product img {
  background-color: #ffffff;
  background-color: var(--white-col);
  border: 1px solid;
  border-color: #2b66b4;
  border-color: var(--primary-col);
  background-image: url(../../img/placeholder-white.png);
}
@media only screen and (max-width: 94em) {
  .product img {
    height: 410px;
    object-position: center;
    object-fit: cover;
  }
}
.product + .product {
  margin-top: 2rem;
}
.product a {
  background: white;
  padding: 0.25rem 0.5rem;
}

#Features {
  display: grid;
  grid-template-columns: [full-start] minmax(5%, 1fr) [main-start] 1fr [center-start] repeat(4, [col-start] minmax(min-content, 300px) [col-end]) [center-end] 1fr [main-end] minmax(5%, 1fr) [full-end];
}

.feature img {
  height: 50px;
}
.feature-content {
  grid-column: main-start/main-end;
  margin: auto;
  padding: 100px;
}
@media only screen and (max-width: 65em) {
  .feature-content {
    padding: 0px;
    width: 90%;
  }
}
.feature-heading {
  margin-top: 3rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 3rem 6rem;
  align-items: start;
  padding: 1rem 0;
}

.process {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 4rem;
  gap: 3rem;
}
@media only screen and (max-width: 94em) {
  .process {
    padding: 4rem 0;
    align-items: unset;
  }
}
@media only screen and (max-width: 65em) {
  .process {
    flex-direction: column;
  }
}
.process img {
  width: 50%;
}
@media only screen and (max-width: 65em) {
  .process img {
    width: 90%;
    margin: auto;
  }
}
.process h2 {
  margin-bottom: 2rem;
}
.process-steps {
  width: 50%;
  padding-right: 100px;
}
@media only screen and (max-width: 94em) {
  .process-steps {
    padding-right: 0px;
  }
}
@media only screen and (max-width: 65em) {
  .process-steps {
    width: 90%;
    margin: auto;
  }
}

.step {
  display: flex;
  align-items: center;
  gap: 2rem;
  background-color: #2b66b4;
  background-color: var(--primary-col);
  color: #ffffff;
  color: var(--white-col);
  padding: 1rem;
}
.step-number {
  font-size: 2.5rem;
}
.step-details h5 {
  color: #ffffff;
  color: var(--white-col);
}
.step + .step {
  margin-top: 2rem;
}

#projects {
  display: grid;
  grid-template-columns: [full-start] minmax(5%, 1fr) [main-start] 1fr [center-start] repeat(4, [col-start] minmax(min-content, 300px) [col-end]) [center-end] 1fr [main-end] minmax(5%, 1fr) [full-end];
  grid-template-rows: repeat(2, min-content);
  margin: 4rem auto;
}

.projects {
  grid-column: main-start/main-end;
  grid-row: 2/3;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: start;
  padding: 1rem 0;
}
.projects-title {
  grid-column: main-start/main-end;
  grid-row: 1/2;
}

.project img {
  height: 260px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-1 {
  background-image: url(/img/modern-new-house.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  margin-top: 50px;
  padding-top: 0.5rem;
}
@media only screen and (max-width: 52em) {
  .contact-1 h1 {
    background-color: rgba(255, 255, 255, 0.8);
    width: max-content;
    padding: 0.5rem 0.75rem;
    text-align: center;
    margin: 0.5rem auto;
  }
}
.contact-1 .section-content {
  background-color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  padding: 2rem;
  width: 90%;
  margin: auto;
}
@media only screen and (max-width: 52em) {
  .contact-1 .section-content {
    flex-direction: column;
  }
}
.contact-1 .contact-details {
  width: 35%;
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 2rem;
}
@media only screen and (max-width: 52em) {
  .contact-1 .contact-details {
    width: 90%;
    margin-top: 2rem;
  }
}

#contact {
  margin: 6rem auto 0;
}
@media only screen and (max-width: 65em) {
  #contact {
    margin: 3rem auto 0;
  }
}

.contacts-2,
.contacts {
  display: grid;
  grid-template-columns: [full-start] minmax(5%, 1fr) [main-start] 1fr [center-start] repeat(4, [col-start] minmax(min-content, 300px) [col-end]) [center-end] 1fr [main-end] minmax(5%, 1fr) [full-end];
  grid-template-rows: repeat(2, min-content);
  margin-top: 3rem;
}
.contacts-2-title,
.contacts-title {
  grid-column: main-start/main-end;
  grid-row: 1/2;
}

.contact-2,
.contact {
  grid-column: main-start/main-end;
  grid-row: 2/3;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 6rem;
}
@media only screen and (max-width: 80em) {
  .contact-2,
.contact {
    gap: 1.5rem;
  }
}

#About.header {
  margin-bottom: 10rem;
}
@media only screen and (max-width: 70em) {
  #About.header {
    margin-bottom: 0;
  }
}

.about {
  align-items: flex-start;
}
@media only screen and (max-width: 70em) {
  .about {
    align-items: center;
  }
}
@media only screen and (max-width: 70em) {
  .about .grid-col-2 {
    margin-top: 2rem;
  }
}

#Hardware.header {
  margin-bottom: 10rem;
}
@media only screen and (max-width: 70em) {
  #Hardware.header {
    margin-bottom: 0;
  }
}

.hardware {
  align-items: flex-start;
}
@media only screen and (max-width: 70em) {
  .hardware {
    align-items: center;
  }
}
.hardware .product-source-details {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 70em) {
  .hardware .product-source-details {
    flex-direction: column;
  }
}
.hardware .product-source-descr {
  width: 70%;
}
.hardware .product-source-logo {
  width: 256px;
  height: 80px;
}
.hardware .product-source-logo-2 {
  margin-bottom: 0rem !important;
}

.more-products {
  display: grid;
  grid-template-columns: [full-start] minmax(5%, 1fr) [main-start] 1fr [center-start] repeat(4, [col-start] minmax(min-content, 300px) [col-end]) [center-end] 1fr [main-end] minmax(5%, 1fr) [full-end];
  grid-template-rows: repeat(2, min-content);
}

.product-sources {
  grid-column: main-start/main-end;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 4rem;
}
@media only screen and (max-width: 40em) {
  .product-sources {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
.product-logos {
  display: flex;
  align-items: center;
}
.product-source-logo {
  width: 256px;
  height: 80px;
  margin-right: 2rem;
}
.product-source-last {
  margin-bottom: 3rem;
}
.product-source-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.product-source-img {
  margin-left: -10px;
}

#Windows.header {
  margin-bottom: 5rem;
}
@media only screen and (max-width: 65em) {
  #Windows.header {
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width: 40em) {
  #Windows.header {
    margin-bottom: 0;
  }
}

.windows {
  display: grid;
  grid-template-columns: [full-start] minmax(5%, 1fr) [main-start] 1fr [center-start] repeat(4, [col-start] minmax(min-content, 300px) [col-end]) [center-end] 1fr [main-end] minmax(5%, 1fr) [full-end];
  grid-template-rows: repeat(2, min-content);
}
.windows-title {
  grid-column: center-start/center-end;
  grid-row: 1/2;
}
.windows-overview {
  grid-column: center-start/center-end;
  grid-row: 2/3;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 6rem;
  align-items: start;
  margin: 3rem 0;
}

.doors {
  background-color: red;
}

#TiltTurn.header {
  margin-bottom: 10rem;
}
@media only screen and (max-width: 70em) {
  #TiltTurn.header {
    margin-bottom: 3rem;
  }
}

/*# sourceMappingURL=style.css.map */
