/* WHOLE BODY CONSISTENT STYLES */

:root {
  --body-background: hsl(40, 4%, 28%);
  --body-background-light: hsl(40, 20%, 35%);

  --bg-dark: hsl(210, 24%, 16%);
  --bg-light: hsl(214, 15%, 98%);
  --bg-light-blue: hsl(204, 30%, 30%);
  --bg-light-blue-highlight: hsl(204, 30%, 35%);
  --text-light: hsl(214, 15%, 94%);
  --bg-grey: hsl(210, 16%, 82%);
  --bg-dark-grey: hsl(210, 16%, 40%);
  --bg-olive: hsl(125, 6%, 18%);
  --bg-olive-highlight: hsl(125, 8%, 25%);
  --bg-dusty-blue: ;
  --bg-dark-blue: hsl(218, 50%, 18%);
  --dark-blue-shadow: hsl(218, 50%, 14%);
  --dark-blue-highlight: hsl(218, 48%, 25%);
  --dusty-blue: hsl(209, 28%, 39%);
  --dusty-blue-shadow: hsl(209, 28%, 25%);
  --shadow-navy: #15253f;
  --blue-grey: #3c4349;
  --table-border: hsl(212, 10%, 74%);
  --table-hover: hsl(211, 16%, 74%);
  --btn-text: hsl(214, 15%, 91%);
  --btn-hover: hsl(210, 24%, 18%);
  --btn-text-hover: hsl(214, 15%, 94%);
  --btn-text-active: hsl(216, 33%, 97%);
  --btn-blue: hsl(215, 55%, 29%);
  --btn-blue-hover: hsl(215, 55%, 31%);
  --btn-grey: hsl(210, 24%, 18%);
  --btn-grey-hover: hsl(210, 24%, 19%);

  --btn-light-grey: hsl(210, 24%, 38%);
  --btn-light-grey-hover: hsl(210, 24%, 39%);

  --muted-dusty-blue: #3e5269;
  --muted-light-border: #b7bec7;
  --muted-dark-border: #737c8c;
}

.container-fluid {
  padding: 0;
  margin: 0;
}

.row {
  padding: 0;
  margin: 0;
  width: 100%;
}

.row > * {
  padding: 0;
  margin: 0;
}

html {
  scroll-padding-top: 69px;
}

body {
  margin: 0rem;
  padding: 0rem;
  background-color: var(--body-background);
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%236b5f47' fill-opacity='0.24' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
  color: var(--text-light);
  width: 100%;
  font-family: "Montserrat", sans-serif;
  letter-spacing: -.5px ;
}

main {
  margin: 0rem 0rem;
  line-height: 2rem;
}

a {
  text-decoration: none;
}

p {
  font-size: 1.2rem;
  margin: 0rem;

}

.italic {
  font-style: italic;
}

.bold {
  font-weight: 600;
}

/* PAGE HEADERS */

.large-header {
  margin: 0rem;
  background-attachment: fixed;
  overflow: hidden;
  object-fit: cover;
  background-size: cover;
  background-repeat: no-repeat;
}

.large-header .gradient {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.large-header h1 {
  padding: 4% 1.5rem;
  margin: 0rem;
  font-size: 4rem;
  color: var(--text-light);
}

.shed-header {
  height: 34vh;
  overflow: hidden;
  object-fit: cover;
  background-size: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.shed-header .gradient {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.shed-header h1 {
  padding: 4% 28% 4% 1.5rem;
  margin: 0rem;
  font-size: 3.5rem;
}

/* PAGE HEADERS RESPONSIVE */

@media only screen and (max-width: 992px) {
  .large-header {
    background-attachment: scroll;
  }
}

@media only screen and (max-width: 595px) {
  .shed-header h1{
    padding: 7% 5% 2% 1.5rem;
  }
}
/* TEMPLATES/HEADINGS! */

.section-title {
  width: max-content;
  max-width: 100%;
  height: max-content;
  font-size: 2.3rem;
  padding: 0.5rem 1.5rem;
  margin: 0 0 1.5rem 0rem;
  color: var(--text-light);
  background-color: var(--bg-dark-blue);
  border-radius: .5rem;
  box-shadow: inset 0px 3px 0px var(--dark-blue-highlight), 0px 5px 15px hsl(0, 0%, 18%);
  line-height: 2.5rem;
}

.sub-heading {
  width: max-content;
  max-width: 100%;
  min-width: 20%;
  margin: 0 0 1rem 0;
  color: var(--text-light);
  background-color: var(--dusty-blue);
  box-shadow: 0px 5px 8px hsl(0, 0%, 22%), inset 0px 3px 1px hsl(212, 22%, 44%);
  border-radius: .5rem;
  font-size: 1.8rem;
  padding: 0.5rem 1.5rem;
}

@media only screen and (max-width: 576px) {
  .section-title {
    font-size: 1.9rem;
  }

  .sub-heading {
    font-size: 1.5rem;
  }
}

/* SECTIONS! */

.btn-grey{
  padding: 0.3rem .5rem;
  margin:0rem;
  background-color: var(--btn-grey);
  text-align: center;
  align-self: center;
  color: var(--btn-text);
  justify-content: center;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  border-radius: 0.5rem;
  box-shadow: inset 0 2px 0px hsl(210, 22%, 23%), 0 2px 2px hsl(210, 24%, 14%);
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
  line-height: 1.5rem;
}

.btn-grey:hover{
  color: var(--btn-text-hover);
  background-color: var(--btn-grey-hover);
  transition-duration: 0.1s;
  box-shadow: inset 0 2px 2px hsl(210, 24%, 18%), 0 1.5px 2px hsl(210, 24%, 14%);
}

.btn-blue{
  background-color: var(--btn-blue);
  color:var(--text-light);
  padding: .75rem 1rem;
  font-size: 1.1rem;
  border-radius: 0.3rem;
  /* box-shadow: 0 -1px 0px hsl(215, 55%, 32%), 0 2px 2px hsl(215, 55%, 15%); */
  box-shadow: inset 0 2px 0px hsl(215, 55%, 33%), 0 2px 2px hsl(210, 24%, 14%);
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
  line-height: 1.5rem;
}

.btn-blue:hover{
  background-color: var(--btn-blue-hover);
  transition-duration: 0.1s;
  /* box-shadow: 0 -.5px 0px hsl(215, 55%, 32%), 0 1px 1px hsl(215, 55%, 15%); */
  box-shadow: inset 0 1.5px 2px hsl(215, 57%, 27%), 0 .5px 1px hsl(215, 55%, 15%);
}

.text-link a{
  color: var(--text-light);
  text-decoration: underline;
  text-underline-offset: .29rem;
  font-style: italic;
}

.banner {
  background-color: var(--btn-blue);
}

.banner .option-1 {
  text-align: center;
}

.banner .option-2 {
  background-color: var(--bg-dark-blue);
  padding: 1rem 0rem;
}

.banner h4 {
  margin: 0;
  padding: 0rem 1rem;
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
}

.banner h6 {
  margin: 0rem;
  padding: 1rem 1rem;
  font-size: 1.2rem;
}

/* Jump to section buttons */

.title {
  align-items: center;
  justify-content: space-between;
  display: flex;
}

.title .jump{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto;
}

  .title .jump h6{
    text-align: center;
    height:30%;
    align-content: center;
    margin: 0;
    padding: .25rem 0rem;
  }

  .title .jump .sections{
    display: flex;
    width: 100%;
    border-radius: .5rem;
    overflow: hidden;
  }

    .title .jump .sections a{
      width: 33%;
      color: var(--btn-text);
      text-align: center;
      align-content: center;
      background-color: var(--bg-dark);
      padding: .6rem .1rem;
      box-shadow: inset 0 -2px 2px hsl(210, 24%, 15%), inset 0 2px 2px hsl(210, 24%, 15%);
      transition-duration: 0.1s;
      transition-timing-function: ease-in-out;
    }

    .title .jump .sections a:hover{
      background-color: var(--btn-hover);
      transition-duration: 0.1s;
      box-shadow: inset 0 2px 2px hsl(210, 24%, 15%), 0 1px 2px hsl(210, 24%, 13%);
    }

.title .jump .sections a p{
  padding: 0rem;
  font-size: 1rem;
  height:20px;
  margin: auto auto;
  align-items: center;
  justify-content: center;
  display: flex;
}

.title .jump .sections .info-btn {
  border-top-left-radius: .5rem;
  border-bottom-left-radius: .5rem;
} 

  .title .jump .sections .info-btn p{
    border-left: 2px var(--text-light) solid;
  } 

  .title .jump .sections .pricing-btn p{
    border-left: 2px var(--text-light) solid;
    border-right: 2px var(--bg-light) solid;
  } 

.title .jump .sections .gallery-btn {
  border-top-right-radius: .5rem;
  border-bottom-right-radius: .5rem;
} 

  .title .jump .sections .gallery-btn p{
    border-right: 2px var(--bg-light) solid;
  } 

/* INFO SECTION 1 UTILITY/SELECT/CUSTOM SHEDS */

.info-section-1 {
  width: 100%;
  margin: 0rem;
  padding: 0rem 0rem;
  color: var(--text-light);
}

.info-section-1 .content {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.info-section-1 img {
  padding: 0rem;
  object-fit: cover;
  overflow: hidden;
  object-position: 70% 50%;
}

.info-section-1 .text {
  padding: 1.5rem 1rem;
  align-content: center;
  line-height: 2rem;
}

.info-section-1 p {
  margin: 0rem;
  padding: 0.5rem 1rem;
}

/* INFO SECTION 2 UTILITY/SELECT/CUSTOM */

.info-section-2 {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin: 0rem;
  padding: 0rem;
  background-color: var(--bg-olive);
background-image: url("data:image/svg+xml,%3Csvg width='84' height='48' viewBox='0 0 84 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h12v6H0V0zm28 8h12v6H28V8zm14-8h12v6H42V0zm14 0h12v6H56V0zm0 8h12v6H56V8zM42 8h12v6H42V8zm0 16h12v6H42v-6zm14-8h12v6H56v-6zm14 0h12v6H70v-6zm0-16h12v6H70V0zM28 32h12v6H28v-6zM14 16h12v6H14v-6zM0 24h12v6H0v-6zm0 8h12v6H0v-6zm14 0h12v6H14v-6zm14 8h12v6H28v-6zm-14 0h12v6H14v-6zm28 0h12v6H42v-6zm14-8h12v6H56v-6zm0-8h12v6H56v-6zm14 8h12v6H70v-6zm0 8h12v6H70v-6zM14 24h12v6H14v-6zm14-8h12v6H28v-6zM14 8h12v6H14V8zM0 8h12v6H0V8z' fill='%233b453c' fill-opacity='0.10' fill-rule='evenodd'/%3E%3C/svg%3E");  color: var(--text-light);
}

.info-section-2 .text {
  padding: 2rem 1rem;
  align-content: center;
  line-height: 2rem;
}

.info-section-2 p {
  margin: 0rem;
  padding: 0.5rem 1rem;
}

.info-section-2 img {
  padding: 0rem;
  padding-right: 0rem;
  object-fit: cover;
  overflow: hidden;
  object-position: left;
}

@media only screen and (min-width: 1400px) {
  .info-section-1 p,.info-section-2 p {
    font-size: 1.4rem;
  }
}

@media only screen and (max-width: 992px) {
  .info-section-1 p,.info-section-2 p {
    padding: 0.2rem 1rem;
  }
}

@media only screen and (max-width: 1105px) {
  .features {
    background-size: contain;
  }
}

/* SKIP TOP JUMP BACK TO TOP */

.skip-top {
  width: 3.5rem;
  font-size: 1rem;
  text-align: center;
  padding: 0.3rem;
  margin: 2rem 1.5rem;
  background-color: var(--bg-dark);
  border: var(--blue-grey) 0.05rem solid;
  border-radius: 0.3rem;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 98;
}

.skip-top a {
  color: var(--text-light);
  padding: 0rem;
  text-decoration: none;
}

.skip-top:hover {
  background-color: var(--blue-grey);
  border: var(--text-light) 0.05rem solid;
  text-decoration: underline 0.05rem var(--text-light);
  text-decoration: none;
}

.skip-top svg {
  display: block;
  justify-content: center;
}