* {
  box-sizing: border-box;
}

html {
  font-size: 1rem;
}

body {
  font-family: "Host Grotesk", sans-serif;
  background-color: #7c3a00;
  background-image: linear-gradient(0deg, #7c3a00, rgb(31.8620689655, 20.1793103448, 14.3379310345));
  min-height: 100vh;
}

h1 {
  font-family: "Gilda Display", serif;
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
  margin: 80px 0px 20px 0px;
  padding: 0px 40px 0px 40px;
  letter-spacing: 2px;
  width: 100%;
  color: #3c261b;
}

.SmallerH1Subheading {
  font-size: 1.5rem;
}

h1.PageTitle {
  margin: 40px 0px 20px 0px;
}

h1.SmallHeading {
  font-family: "Gilda Display", serif;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 2px;
  border-style: none;
  color: #3c261b;
  text-align: left;
  margin: 40px 0px 20px 0px;
}

h2 {
  font-family: "Gilda Display", serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #3c261b;
  margin: 40px 0px 20px 0px;
  padding: 0px 40px 0px 40px;
}

h3 {
  font-size: 1.1rem;
  color: #3c261b;
  margin: 20px 0px 0px 0px;
  padding: 0px 40px 0px 40px;
}

h4 {
  font-size: 1rem;
  font-weight: bold;
  color: #3c261b;
  margin: 20px 0px 0px 0px;
  padding: 0px 40px 0px 40px;
}

p {
  font-size: 1.1rem;
  line-height: 1.5rem;
  color: #3c261b;
  padding: 10px 40px 30px 40px;
  margin: 0px;
}

a {
  font-weight: 700;
  color: #3c261b;
  border: 0;
  outline: 0;
}
a:hover {
  color: #7c3a00;
}

a.DestructiveFunction {
  color: #ff7700;
  font-size: 0.85rem;
}

ul {
  margin: 20px 0px 0px 40px;
  padding: 0px 40px 0px 40px;
}

li {
  font-size: 1rem;
  color: #3c261b;
}
li p {
  margin: 0px;
  padding: 0px;
}

#PageContent {
  width: 75%;
  max-width: 1250px;
  min-width: 500px;
  min-height: 600px;
  margin: 0px auto;
}

#CompanyTitleAndLogo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

#LogoTopPage {
  margin-top: 0px;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
}

.CompanyTitle {
  font-family: "Gilda Display", serif;
  font-size: 1.95rem;
  font-weight: 400;
  text-transform: uppercase;
  border: initial;
  color: #f1debd;
  letter-spacing: 4px;
  margin: 10px 0px 0px 20px;
  padding: 0px;
  width: initial;
}

header {
  position: relative;
  overflow: hidden;
}

#HeaderImage {
  position: relative;
  width: 1250px;
  height: 260px;
  overflow: hidden;
}
#HeaderImage img {
  position: absolute;
  width: 1250px;
  height: 260px;
  overflow: hidden;
  top: 0px;
  left: 0px;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(241, 222, 189, 0.25);
  opacity: 0;
  transition: opacity 4s;
}
#HeaderImage img.fade {
  opacity: 1;
}

/*  MAIN NAVBAR  */
.MainNavbar {
  display: flex;
  flex-wrap: wrap;
  position: sticky;
  top: 0px;
  background-color: #2C190C;
  box-shadow: 0px 0px 0px 1px #2C190C;
  margin: 1px 0px 0px 0px;
  padding: 0px;
  z-index: 100;
}

.MainNavbar a {
  display: block;
  flex: 0 0 auto;
  text-decoration: none;
  color: #f1debd;
  padding: 20px 25px;
}

.MainNavbar a:hover {
  background-color: rgba(124, 58, 0, 0.5);
}

.NavbarItems {
  padding: 0px 10px 0px 0px;
}

main {
  background-color: white;
  border-radius: 10px;
  min-height: 600px;
  padding: 1px 0px 40px 0px;
  overflow: hidden;
}

.SectionSpacing {
  margin: 50px 0px 0px 0px;
}
.SectionSpacing h1, .SectionSpacing h2, .SectionSpacing p, .SectionSpacing div {
  margin-top: 0px;
}

.BlockIndentation {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.CenteredBlockIndentation {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.FloatImgRight {
  float: right;
  max-width: 500px;
  width: 50%;
  margin: 0px 0px 20px 40px;
}

.CenteredEmphasisText {
  font-weight: 600;
  line-height: 2.5rem;
  text-align: center;
}

/*  BUTTON GROUP  */
.ButtonGroupContainer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, max-content));
  justify-content: center;
  gap: 30px 20px;
  align-items: end;
  width: 80%;
  margin: 0px auto;
}

.MainLinkButton {
  text-decoration: none;
  border-style: solid none none none;
  border-width: 1px 8px 0px 8px;
  border-color: #ff7700 rgba(64, 30, 0, 0.75) transparent rgba(64, 30, 0, 0.75);
  background-color: #823d00;
  background-image: linear-gradient(0deg, #401e00, #823d00);
  padding: 15px 40px;
  border-radius: 10px;
  color: #f1debd;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  transition: scale 0.35s, color 0.35s, background-color 0.35s;
}
.MainLinkButton:hover {
  border-top-color: #3c261b;
  background: #3c261b;
  color: #fff;
  scale: 1.075;
}

/*  MULTIPANEL LAYOUT  */
.MultipanelLayoutContainer {
  display: grid;
  grid-template-columns: repeat(4, minmax(100px, 200px));
  gap: 10px;
  justify-content: center;
  justify-items: stretch;
  align-items: stretch;
  margin: 120px 0px 80px 0px;
}

.LargeTextPanel {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column: span 2;
  grid-row: span 2;
  background-color: #ff7700;
}
.LargeTextPanel p {
  justify-self: center;
  align-self: center;
  font-family: "Gilda Display", serif;
  font-size: 1.75rem;
  text-align: center;
  color: #3c261b;
  margin: 0px;
  padding: 0px;
}

/*  MULTIPANEL JUMBLE LAYOUT  */
.MultipanelJumbleLayoutContainer {
  display: grid;
  grid-template-columns: repeat(4, minmax(100px, 200px));
  grid-template-rows: repeat(4, 100px);
  gap: 5px;
  justify-content: center;
  justify-items: stretch;
  align-items: stretch;
  margin: 60px 20px 80px 20px;
}

.JumbleItem {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  justify-items: center;
  align-items: center;
  border-radius: 10px;
  transition: scale 0.35s;
}
.JumbleItem:hover {
  scale: 1.095;
}
.JumbleItem a {
  font-family: "Gilda Display", serif;
  font-size: 1.25rem;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  color: #f1debd;
  margin: 0px;
  padding: 0px;
}

.JumbleItem2W {
  grid-column: span 2;
}

.JumbleItem3W {
  grid-column: span 3;
}

.JumbleItem4W {
  grid-column: span 4;
}

.JumbleItemLight {
  background-image: linear-gradient(to bottom, #EEBD00, #984C00);
}

.JumbleItemMedium {
  background-image: linear-gradient(to bottom, #d88500, #7E3000);
}

.JumbleItemDark {
  background-image: linear-gradient(to bottom, #A75600, #5B2400);
}

/*  THREE STEP PROCESS  */
.ThreeStepProcessContainer {
  display: grid;
  grid-template-columns: minmax(100px, 220px) minmax(100px, 220px) minmax(100px, 220px);
  gap: 0px 40px;
  justify-content: center;
  margin: 30px 0px 60px 0px;
}

.ThreeStepProcess {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
}

.ThreeStepProcessStepNumber {
  display: flex;
  justify-content: center;
  align-items: center;
  border-style: solid;
  border-width: 5px;
  border-radius: 50%;
  font-size: 1.75rem;
  font-weight: 800;
  background-color: white;
  margin-bottom: -40px;
  width: 80px;
  height: 80px;
  overflow: hidden;
  z-index: 1;
}

.ThreeStepProcessStep1 {
  border-color: #EEBD00;
  box-shadow: 0px 0px 10px #EEBD00;
}

.ThreeStepProcessStep2 {
  border-color: #d88500;
  box-shadow: 0px 0px 10px #d88500;
}

.ThreeStepProcessStep3 {
  border-color: #A75600;
  box-shadow: 0px 0px 10px #A75600;
}

.ThreeStepProcessContent {
  border-style: solid;
  border-width: 1px;
  border-radius: 10px;
  padding: 40px 20px 10px 20px;
  height: 175px;
  overflow: hidden;
}
.ThreeStepProcessContent p {
  margin: 0px;
  padding: 0px;
}

/*  TOP OF PAGE CONTACT LINKS  */
.TopOfPageContactContainer {
  display: flex;
  gap: 0px 15px;
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 0px;
  background-color: transparent;
}
.TopOfPageContactContainer a {
  color: #f1debd;
  transition: color 0.75s;
}
.TopOfPageContactContainer a:hover {
  color: rgba(255, 119, 0, 0.7);
}

/* SECTION BOXES */
.SectionBoxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 400px));
  gap: 40px;
  justify-content: center;
  align-items: stretch;
  margin: 0px 0px 80px 0px;
  width: 100%;
}
.SectionBoxes a {
  text-decoration: none;
}

.SectionBox {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-self: flex-start;
  border-radius: 10px;
  height: 100%;
  margin: 0px;
  padding: 20px;
  background-image: radial-gradient(#7c3a00, #3c261b);
  transition: scale 0.25s;
  cursor: pointer;
}
.SectionBox:hover {
  scale: 1.075;
}
.SectionBox img {
  -o-object-fit: none;
     object-fit: none;
}
.SectionBox h2 {
  font-size: 2rem;
  margin: 0px 20px 0px 10px;
  padding: 0px;
  color: #f1debd;
}
.SectionBox p {
  font-size: 1rem;
  margin: 10px 0px;
  padding: 0px;
  color: #f1debd;
}

.SingleSectionBox {
  max-width: 400px;
  margin: 40px auto 10px auto;
}
.SingleSectionBox a {
  text-decoration: none;
}

.CallToAction {
  font-size: 1.5rem;
  font-weight: 700;
  color: #7c3a00;
  text-align: center;
  margin: 60px auto 0px auto;
  max-width: 600px;
}

.CallToActionTestimonial {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 80px 14%;
}

.CallToActionImage {
  max-width: 100%;
  height: auto;
}

.FooterPara {
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  color: rgba(241, 222, 189, 0.5);
  margin: 20px 0px 60px 0px;
}

.EstimatorTotal {
  position: sticky;
  bottom: 0px;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(60, 38, 27, 0.25);
  background-color: #f1debd;
  margin: 20px 0px 0px 0px;
  padding: 20px 40px;
}
.EstimatorTotal h1 {
  font-size: 2.25rem;
  margin: 0px;
  border: none;
}

.MainButton {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  font-family: "Gilda Display", serif;
  font-size: 1.25rem;
  text-align: center;
  text-transform: uppercase;
  color: #f1debd;
  border-radius: 10px;
  border: 0px;
  padding: 10px 30px;
  margin: 0px 5px;
  background-color: #3c261b;
  cursor: pointer;
  transition: background-color 0.5s;
}
.MainButton:hover {
  background-color: #7c3a00;
}

.EstimatorCheck {
  outline: none;
  border-style: solid;
  border-width: 3px;
  border-color: #3c261b;
  border-radius: 3px;
  color: #3c261b;
  min-width: 15px;
  min-height: 15px;
}

.EstimatorSpan2 {
  grid-column: span 3;
}

.PromoteEstimateContainer {
  border-radius: 10px;
  background-color: #f1debd;
  margin: 120px 40px;
  padding: 30px 60px;
}
.PromoteEstimateContainer h1 {
  font-size: 2.5rem;
  margin: 0px 0px 20px 0px;
  border-width: 0px;
}

.ContactForm {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 60px;
  justify-items: start;
  gap: 10px 20px;
  width: 100%;
  max-width: 800px;
  margin: 0px auto;
}
.ContactForm input, .ContactForm textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border-width: 1px;
  border-style: solid;
  border-radius: 3px;
  padding: 3px;
}
.ContactForm p {
  margin: 0px;
  padding: 0px;
}
.ContactForm .MessageContent {
  grid-row: span 2;
}

.ContactUsSubmit {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  grid-column: span 2;
  font-family: "Gilda Display", serif;
  font-size: 1.15rem;
  text-align: center;
  text-transform: uppercase;
  color: #f1debd;
  border-radius: 10px;
  border: 0px;
  margin: 0px;
  padding: 10px 40px;
  background-color: #3c261b;
  cursor: pointer;
  transition: background-color 0.5s;
}

.ContactUsSubmit:hover {
  background-color: #7c3a00;
}

.ExplainerMessage {
  font-weight: 300;
  font-size: 1.5rem;
  text-align: center;
  max-width: 850px;
  margin: auto;
}

/* PRICE LIST */
.PriceListItemContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  max-width: 600px;
  margin: 20px 0px 0px 40px;
}

.PriceListItem {
  font-weight: 700;
  margin: 0px;
  padding: 0px;
}

.PriceListCost {
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0px;
  padding: 0px;
}

.PriceListDescriptor {
  font-size: 0.85rem;
  width: 100%;
  margin: 10px 0px 0px 0px;
  padding: 0px;
}

/* ERROR MESSAGES */
.ErrorMsg {
  color: red;
}

.ErrorBorder {
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  border-color: #f00;
  box-shadow: 0px 0px 10px #f00;
}

/*  BEFORE AND AFTER GALLERY  */
.SmallImageComparisonGallery {
  display: grid;
  grid-template-columns: 300px 300px;
  gap: 20px;
  justify-content: center;
  justify-items: center;
  margin: 0px 0px 60px 0px;
}
.SmallImageComparisonGallery img {
  border-style: solid;
  border-width: 1px;
  border-color: white;
  padding: 3px;
  cursor: pointer;
}
.SmallImageComparisonGallery img:hover {
  border-color: #ff7700;
}

.BeforeAndAfterImage {
  display: none;
  flex-direction: column;
  align-items: center;
}

#CloseBeforeAndAfterImage {
  margin: 20px 0px 32px 0px;
}

.bal-container {
  position: relative;
  cursor: grab;
  overflow: hidden;
}

.bal-after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
  overflow: hidden;
}

.bal-before {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 15;
  overflow: hidden;
}

.bal-before-inset {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

.bal-after img,
.bal-before img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  top: 0;
  bottom: 0;
  left: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.bal-beforePosition {
  background: #121212;
  color: #fff;
  left: 0;
  pointer-events: none;
  border-radius: 0.2rem;
  padding: 2px 10px;
}

.bal-afterPosition {
  background: #121212;
  color: #fff;
  right: 0;
  pointer-events: none;
  border-radius: 0.2rem;
  padding: 2px 10px;
}

.beforeLabel {
  position: absolute;
  bottom: 0;
  margin: 1rem;
  font-size: 1em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.afterLabel {
  position: absolute;
  bottom: 0;
  margin: 1rem;
  font-size: 1em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.bal-handle {
  height: 41px;
  width: 41px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -20px;
  margin-top: -21px;
  border: 2px solid #fff;
  border-radius: 1000px;
  z-index: 20;
  pointer-events: none;
  box-shadow: 0 0 10px rgb(12, 12, 12);
}

.handle-left-arrow,
.handle-right-arrow {
  width: 0;
  height: 0;
  border: 6px inset transparent;
  position: absolute;
  top: 50%;
  margin-top: -6px;
}

.handle-left-arrow {
  border-right: 6px solid #fff;
  left: 50%;
  margin-left: -17px;
}

.handle-right-arrow {
  border-left: 6px solid #fff;
  right: 50%;
  margin-right: -17px;
}

.bal-handle::before {
  bottom: 50%;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgb(12, 12, 12);
}

.bal-handle::after {
  top: 50%;
  margin-top: 20.5px;
  box-shadow: 0 0 5px rgb(12, 12, 12);
}

.bal-handle::before,
.bal-handle::after {
  content: " ";
  display: block;
  width: 2px;
  background: #fff;
  height: 9999px;
  position: absolute;
  left: 50%;
  margin-left: -1.5px;
}

.bal-container {
  width: 100%;
  max-width: 600px;
  max-height: 400px;
  aspect-ratio: 3/2;
}

/*  INFO PACKET  */
.InfoPacketStorageOptions {
  display: grid;
  grid-template-columns: minmax(100px, 500px) 300px;
  grid-template-rows: 40px 1fr;
  -moz-column-gap: 20px;
       column-gap: 20px;
  justify-content: center;
  margin: 30px 0px 0px 0px;
}
.InfoPacketStorageOptions h3 {
  margin: 0px;
  padding: 0px;
}
.InfoPacketStorageOptions p {
  margin: 0px;
  padding: 0px;
}

.InfoPacketLogo {
  grid-row-start: span 2;
  margin: 0px 0px 60px 0px;
}

/*  TESTIMONY CAROUSEL  */
.TestimonySlides {
  margin: auto;
  width: 100%;
  max-width: 800px;
}

.Testimony {
  padding: 0px;
}

/*  MAIN FORM STYLE  */
.MainFormContainer {
  display: flex;
  flex-direction: column;
  justify-self: center;
  margin: 0px auto 20px auto;
  width: 100%;
  max-width: 500px;
}

h2.MainFormSectionHeading {
  grid-column: span 2;
  font-size: 1.25rem;
  margin: 20px 0px 0px 0px;
  padding-left: 3px;
}

p.MainFormExplanation {
  font-size: 0.9rem;
  color: rgba(60, 38, 27, 0.9);
  margin: 0px;
  padding-left: 3px;
}

.MainFormBottomPadding {
  padding-bottom: 30px;
}

.MainFormControlContainer {
  border-style: solid;
  border-color: white;
  border-width: 0px 0px 0px 3px;
  margin: 0px 0px 15px 0px;
}

.MainFormControlContainerError {
  border-color: red;
}

.MainFormControlLabel {
  font-weight: 700;
  font-size: 0.85rem;
  color: rgba(60, 38, 27, 0.9);
  padding: 0px;
  margin: 0px 0px 5px 0px;
}

.MainFormControlDescription {
  font-size: 0.85rem;
  color: rgba(60, 38, 27, 0.9);
  margin: 0px 0px 5px 0px;
  padding: 0px;
}

.MainFormControlStatusContainer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}

input.MainFormControl, textarea.MainFormControl {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(255, 119, 0, 0.75);
  background-color: rgba(255, 119, 0, 0.25);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: #3c261b;
  width: 100%;
  margin: 0px;
  padding: 8px 15px;
  box-shadow: 0px 0px 0px #7c3a00;
  transition: all 0.5s;
}
input.MainFormControl:hover, input.MainFormControl:focus, textarea.MainFormControl:hover, textarea.MainFormControl:focus {
  border-color: #7c3a00;
  background-color: rgba(255, 119, 0, 0.1);
  box-shadow: 0px 0px 10px #7c3a00;
}

.MainFormControlStatusContainer fieldset {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(255, 119, 0, 0.75);
}

.MainFormControlStatusContainer fieldset div {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: end;
  font-size: 0.85rem;
  font-weight: 700;
  color: #3c261b;
  margin: 8px 5px;
}

input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-flex;
  align-content: center;
  justify-content: center;
  font-size: 2rem;
  padding: 0.5rem;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(255, 119, 0, 0.75);
  border-radius: 3px;
  background-image: initial;
  box-shadow: 0px 0px 0px #3c261b;
  transition: box-shadow 0.5s;
}
input[type=checkbox]:hover, input[type=checkbox]:focus {
  border-color: #7c3a00;
  background-color: rgba(255, 119, 0, 0.1);
  box-shadow: 0px 0px 10px #7c3a00;
}
input[type=checkbox]:checked {
  background-image: radial-gradient(circle, #ff7700 20%, #3c261b 60%);
}

.MainFormControlError {
  border-color: red !important;
  background-color: rgba(255, 0, 0, 0.1) !important;
  box-shadow: 0px 0px 10px red !important;
}

.MainFormStatus {
  width: 35px;
  height: 35px;
}

.MainFormStatusSuccess {
  display: none;
  font-size: 25px;
  color: rgb(0, 156, 52);
  padding: 5px;
}

.MainFormStatusError {
  display: none;
  font-size: 25px;
  color: red;
  padding: 5px;
}

.MainFormRequired {
  color: red;
  font-size: 0.65rem;
}

.MainFormErrorMessage {
  font-size: 0.85rem;
  font-weight: 700;
  color: red;
  margin: 3px 0px 0px 0px;
  padding: 0px;
  opacity: 0;
}

h2.MainFormDataResultLabel {
  grid-column: span 2;
  font-family: "Gilda Display", serif;
  font-size: 1.75rem;
  font-weight: 400;
  margin: 10px 0px 20px 0px;
  padding: 15px 25px;
  background-color: #f1debd;
}

/* MY COMMITMENT STATMENT */
#MyCommitmentContainer {
  display: grid;
  grid-template-columns: minmax(200px, 600px) 355px;
  max-width: 955px;
  margin: 60px auto 0px auto;
}

.MyCommitmentTitle {
  font-family: "Qwigley", cursive;
  font-size: 5rem;
  text-align: center;
  margin: 40px 0px 0px 0px;
  padding: 0px;
}

.MyCommitmentImage {
  grid-row: span 2;
  margin: 0px 0px 20px 0px;
}

#MyCommitmentDescription {
  display: flex;
  flex-direction: column;
}

.MyCommitmentParagraph {
  margin: 0px;
  padding: 0px 40px 20px 40px;
}

p.MyCommitmentHeading {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 20px 0px 10px 0px;
  padding: 0px;
}

/*  FADED BOTTOM COLLAPSIBLE SECTION  */
.FadedSection {
  height: 200px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, white 20%, transparent 100%);
          mask-image: linear-gradient(to bottom, white 20%, transparent 100%);
  margin: 0px 0px 40px 0px;
}

.FadedSectionExpanded {
  height: auto;
  -webkit-mask-image: none;
          mask-image: none;
}

button.FadedSectionButton {
  display: block;
  outline: none;
  width: calc(100% - 40px - 40px);
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: rgba(124, 58, 0, 0.5);
  border-radius: 500px;
  background-color: rgba(255, 119, 0, 0.1);
  margin: 0px auto 40px auto;
  padding: 15px 25px;
  font-family: "Host Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 100;
  color: #3c261b;
  cursor: pointer;
  transition: background-color 0.35s;
}
button.FadedSectionButton:hover {
  background-color: rgba(255, 119, 0, 0.2);
}

.FadedSectionLeftChevron {
  padding-right: 20px;
}

.FadedSectionRightChevron {
  padding-left: 20px;
}

/*  SERVICES ACCORDION  */
.ServicesAccordionItem {
  display: grid;
  grid-template-rows: 0fr;
  border-style: solid;
  border-color: #7c3a00;
  border-width: 0px 0px 0px 3px;
  margin: 0rem;
  padding: 0px 10px;
  transition: grid-template-rows, padding, 0.5s;
}

.ServicesAccordionItem > div {
  overflow: hidden;
}

.ServicesAccordionItemShow {
  padding: 0px 10px 10px 10px;
  grid-template-rows: 1fr;
}

.ServicesAccordionHeadingContainer {
  display: grid;
  grid-template-columns: 1fr 50px;
  border-style: solid;
  border-color: #7c3a00;
  border-width: 0px 0px 1px 0px;
  margin: 0px;
  padding: 10px 0px 0px 0px;
  cursor: pointer;
}

.ServicesAccordionHeadingContainer:hover {
  background-color: #f1debd;
}

.ServicesAccordionHeading {
  font-size: 1.5rem;
  color: #3c261b;
  padding: 10px 20px;
  margin: 0px;
}

.ServicesAccordionHeadingSmall {
  display: inline;
  font-size: 1.1rem;
}

.ServicesAccordionArrow {
  justify-self: center;
  align-self: center;
  color: #3c261b;
  transition: transform 0.5s;
}

.ServicesAccordionArrowShow {
  transform: rotate(90deg);
}

/*  SERVICES PAGE DELIVERY SECTION  */
.ServicesDeliverySection {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
  gap: 0px 20px;
  max-width: 800px;
  margin: 30px auto 0px auto;
  padding: 0px 40px 0px 40px;
}
.ServicesDeliverySection img {
  justify-self: center;
}

.ServicesDeliverySubSection {
  display: flex;
  flex-direction: column;
}
.ServicesDeliverySubSection img {
  align-self: center;
}

.ServicesDeliverySectionHeading {
  font-size: 1.5rem;
  font-weight: 300;
  margin: 20px 0px 5px 0px;
  padding: 0px;
}

.ServicesDeliverySectionContent {
  margin: 0px;
  padding: 0px;
}

/*  SERVICES PAGE RESOLUTION SECTION  */
.ServicesResolutionSection {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 0px 10px;
  margin: 30px 0px 0px 0px;
}

/*  SERVICES PAGE DELIVERY SECTION  */
.ServicesImageDeliverySection {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
  gap: 0px 20px;
  max-width: 800px;
  margin: 30px auto 0px auto;
  padding: 0px 40px 0px 40px;
}
.ServicesImageDeliverySection img {
  justify-self: center;
}

.ServicesImageDeliverySubSection {
  display: flex;
  flex-direction: column;
}
.ServicesImageDeliverySubSection img {
  align-self: center;
}

.ServicesImageDeliverySectionHeading {
  font-size: 1.5rem;
  font-weight: 300;
  margin: 20px 0px 5px 0px;
  padding: 0px;
}

.ServicesImageDeliverySectionContent {
  margin: 0px;
  padding: 0px;
}

/*  IMAGE WITH CAPTIONS  */
.ImgContainer {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: auto;
}
.ImgContainer p {
  text-align: center;
}
.ImgContainer img {
  width: 100%;
  max-width: 600px;
  -o-object-fit: contain;
     object-fit: contain;
}

/*  REVIEW DIALOG BOX  */
#ReviewDialogContainer {
  display: grid;
  grid-template-columns: minmax(300px, 500px);
  justify-content: center;
  min-height: 200px;
  background-color: white;
  margin: 0px auto;
  padding: 20px 0px 20px 0px;
}

.ReviewHeading {
  justify-self: center;
  align-self: center;
}

.ReviewDialogControles {
  display: grid;
  grid-template-columns: 75px 1fr 75px;
  align-items: center;
  justify-items: center;
  max-width: 500px;
  padding: 0px;
}

.ReviewDialogReviewContainer {
  display: flex;
  flex-direction: column;
  grid-column: initial;
  max-width: 350px;
}

#ReviewChevronNext {
  grid-column: initial;
}

#ReviewChevronNext {
  grid-column: initial;
}

.ReviewDialogName {
  font-size: 1rem;
  padding: 0px;
  margin: 0px;
}

.ReviewStarsContainer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.ReviewDialogContent {
  padding: 0px;
  margin: 20px 0px 10px 0px;
  height: 200px;
  overflow-y: auto;
}
.ReviewDialogContent p {
  font-size: 0.9rem;
  padding: 0px;
  margin: 0px;
}

.ReviewDialogCloseButton {
  outline: inherit;
  justify-self: center;
  grid-column: 2/span 1;
  font-size: 1rem;
  font-weight: 600;
  color: #f1debd;
  border: none;
  border-radius: 7px;
  padding: 10px 20px;
  margin: 40px 0px 0px 0px;
  background-color: #ff7700;
  cursor: pointer;
}

.ReviewChevrons {
  color: #3c261b;
  margin: 0px;
  transition: color 0.5s;
}
.ReviewChevrons:hover {
  color: #7c3a00;
}

@media only screen and (max-width: 1000px) {
  html {
    font-size: 1.15rem;
  }
  body {
    margin: 0px;
  }
  h1 {
    font-size: 1.9rem;
    margin: 60px 0px 20px 0px;
    padding: 0px 20px 0px 20px;
  }
  h2 {
    padding: 0px 20px 0px 20px;
  }
  h3 {
    padding: 0px 20px 0px 20px;
  }
  p {
    font-size: 0.9rem;
  }
  ul {
    margin: 20px 20px 0px 20px;
  }
  input {
    font-size: 1rem;
  }
  #PageContent {
    width: 100%;
    max-width: initial;
    min-width: initial;
    margin: 0px auto;
  }
  main {
    background-color: white;
    border-radius: 0px;
    padding: 40px 0px 40px 0px;
  }
  #HeaderImage img {
    border-width: 1px 1px 1px 0px;
  }
  .CompanyTitle {
    font-size: 1.25rem;
    width: -moz-min-content;
    width: min-content;
  }
  .MainNavbar a {
    padding: 10px 10px;
  }
  .FloatImgRight {
    max-width: -moz-max-content;
    max-width: max-content;
    margin: 0px 10px 10px 10px;
  }
  .BlockIndentation {
    max-width: 80%;
  }
  .InfoBoxes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 30px 0px;
    width: 100%;
  }
  .InfoBox {
    border-radius: 0px;
    box-shadow: 0px 0px 0px rgba(60, 38, 27, 0.5);
  }
  .NumberedHorizontalInfoBox {
    width: 100%;
    padding: 0px 20px;
  }
  .NumberedHorizontalInfoBox .InfoBoxMainContent {
    grid-column: 1/span 3;
    margin: 0px 10px;
  }
  .NumberedHorizontalInfoBox .NumberedInfoBoxMainContent {
    grid-column: 1/span 3;
    margin: 0px 10px;
  }
  .CallToActionTestimonial {
    margin: 60px 10px;
  }
  .SectionBoxes {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .SectionBox {
    border-radius: 0px;
    transition: none;
  }
  .SectionBox h2 {
    font-size: 1.7rem;
    margin: 0px 20px 0px 10px;
    padding: 0px;
    color: #f1debd;
  }
  .SectionBox:hover {
    scale: 1;
  }
  .FooterPara {
    margin: 20px 0px 40px 0px;
  }
  .EstimatorTotal {
    margin: 0px;
    padding: 10px 10px 20px 10px;
  }
  .EstimatorTotal h1 {
    font-size: 1.5rem;
  }
  .EstimatorTotal p {
    text-align: center;
  }
  .EstimatorSpan2 {
    grid-column: auto;
  }
  .ContactForm {
    grid-template-columns: 1fr;
    max-width: 100%;
    width: 100%;
  }
  .ContactForm .MessageContent {
    grid-row: span 2 !important;
  }
  .ContactUsSubmit {
    grid-column: initial !important;
  }
  .PromoteEstimateContainer {
    border-radius: 0px;
    margin: 60px 0px;
    padding: 30px 60px;
  }
  .PromoteEstimateContainer h1 {
    font-size: 1.75rem;
  }
  .UpperNavbar {
    margin: 20px 0px 0px 0px;
    padding: 0px;
  }
  .UpperNavbar li {
    margin: 0px;
    padding: 0px;
  }
  .PriceListItemContainer {
    margin: 20px 20px 0px 20px;
  }
  .PriceListItem {
    width: 100%;
  }
  .SmallImageComparisonGallery {
    grid-template-columns: 1fr 1fr;
    gap: 5px;
  }
  .SmallImageComparisonGallery img {
    width: 99%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .InfoPacketStorageOptions {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    -moz-column-gap: 0px;
         column-gap: 0px;
    margin: 30px 20px 0px 20px;
  }
  .InfoPacketStorageOptions h3 {
    margin: 0px 0px 20px 0px;
  }
  .InfoPacketStorageOptions p {
    margin: 0px 0px 60px 0px;
    padding: 0px;
  }
  .InfoPacketLogo {
    grid-row-start: auto;
    margin: 0px 0px 20px 0px;
  }
  .Testimony {
    padding: 0px 10px;
  }
  #MyCommitmentContainer {
    grid-template-columns: 1fr;
    justify-items: center;
    margin: 30px auto 40px auto;
    max-width: none;
  }
  .MyCommitmentImage {
    display: block;
    margin: 0px auto 20px auto;
    float: none;
  }
  p.MyCommitmentHeading {
    margin: 20px 30px 10px 30px;
    padding: 0px;
  }
  .MyCommitmentTitle {
    font-size: 3rem;
  }
  .ServicesDeliverySection {
    grid-template-columns: 1fr;
    margin: 0px auto;
  }
  .ServicesDeliverySubSection {
    margin: 60px 0px 0px 0px;
  }
  .ServicesResolutionSection {
    grid-template-columns: 1fr;
  }
  .ServicesImageDeliverySection {
    grid-template-columns: 1fr;
    margin: 0px auto;
  }
  .ServicesImageDeliverySubSection {
    margin: 60px 0px 0px 0px;
  }
  .TopOfPageContactContainer {
    display: flex;
    gap: 0px 15px;
    position: static;
    padding: 10px;
    background-color: #121212;
  }
  #ReviewDialogContainer {
    border-radius: 0px;
    max-width: none;
    padding: 20px;
  }
  .ReviewDialogControles {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 76px 76px;
    max-height: 100vh;
    overflow: hidden;
  }
  .ReviewDialogReviewContainer {
    grid-column: 1/span 2;
    grid-row: 1/span 1;
    width: 100%;
    height: 100%;
    overflow: auto;
  }
  #ReviewChevronNext {
    grid-column: 2/span 1;
    grid-row: 2/span 1;
  }
  #ReviewChevronNext {
    grid-column: 1/span 1;
    grid-row: 2/span 1;
  }
  .ReviewDialogCloseButton {
    grid-column: 1/span 2;
    grid-row: 3/span 1;
    align-self: center;
    margin: 40px 0px 80px 0px;
  }
  .MyCommitmentParagraph {
    padding: 0px 20px 20px 20px;
  }
  .MultipanelLayoutContainer {
    grid-template-columns: minmax(1fr 200px);
    gap: 0px;
  }
  .LargeTextPanel {
    grid-column: 1/-1;
    grid-row: auto;
    grid-template-rows: 200px;
  }
  .MultipanelJumbleLayoutContainer {
    grid-template-columns: repeat(4, minmax(90px, 200px));
    grid-template-rows: initial;
    grid-auto-rows: 100px;
  }
  .ServicesAccordionHeadingSmall {
    display: block;
  }
  .JumbleItem {
    grid-column: 1/-1 !important;
  }
  .ThreeStepProcessContainer {
    grid-template-columns: 1fr;
    gap: 40px 0px;
  }
  .ThreeStepProcessContent {
    margin: 15px 20px 15px 20px;
  }
  .MainLinkButton:hover {
    scale: 1;
  }
}/*# sourceMappingURL=main.css.map */