/* RESET */

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

ol[class],
ul[class] {
  padding: 0;
}

blockquote,
body,
dd,
dl,
figcaption,
figure,
h1,
h2,
h3,
h4,
li,
ol[class],
p,
ul[class] {
  margin: 0;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: 'Lora', sans-serif;
  font-weight: 100;
  -webkit-font-smoothing: antialiased;
  position: relative;
  background-color: #fff;
}

ol[class],
ul[class] {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }
}

html {
  scroll-behavior: smooth;
}

/* COLORS */

	:root {
	--blue: #0660ca;
  --orange: #f7931e;
	--white: #fff;
	--lightgray: #f9fafb;
	--darker: #11182b;
	--dark: #202a37;
	--black: #000;
	}

/* FONTS */
@font-face {
  font-family: "PT";
  src: url("../fonts/PTSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PT";
  src: url("../fonts/PTSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PT";
  src: url("../fonts/PTSans-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

body { font-family: "PT", system-ui, -apple-system, sans-serif; }
strong, b { font-weight: 700; }
em, i { font-style: italic; }


  p {
      color: var(--colorDark);
      font-family: 'PT', sans-serif;
      font-weight: 400;
      font-size: 16px;
      margin-bottom: 20px;
      line-height: 160%;
  }

  h1 {
    font-family: 'PT', sans-serif;
    letter-spacing: .02em;
    font-size: 40px;
    color: rgb(255,255,255,1);
    text-transform: uppercase;
    font-weight: 600;
    text-align: left;
    line-height: 110%;
    margin-bottom: 20px;
  }

  
  h3 {
    font-family: 'PT', sans-serif;
    letter-spacing: .02em;
    font-size: 24px;
    color: var(--colorWhite);
    text-transform: uppercase;
    font-weight: 600;
    text-align: left;
    line-height: 110%;
    margin-bottom: 10px;
  }

  .big-heading {
     font-size: 54px;
    font-family: 'PT', sans-serif;
    text-align: center;
    text-transform: none;
    margin-bottom: 30px;
    line-height: 130%;
  }

  .white {
    color: #fff;
  }

  .dark {
    color: var(--dark);
  }

  .orange {
    color: var(--orange);
  }

  .white-bg {
    background-color: var(--white);
  }

   .dark-bg {
    background-color: var(--dark);
  }

.darker-bg {
    background-color: var(--darker);
  }

  .lightgray-bg {
    background-color: var(--lightgray);
  }

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

/* LINKS */

a {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
  font-family: inherit;
}

.post a:not(.learn-more) {
  color: var(--colorPrimary);
}

.post a:hover {
  border-bottom: 2px dotted var(--colorPrimary);
}

/* COMPONENTS */

.content-wrapper {
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 6%;
  display: block;
}

.split {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
}


.post {
  max-width: 1000px;
  margin: 0 auto;
}

.post p {
  text-align: left;
  color: var(--colorDarkFont);
  font-size: 20px;
  line-height: 1.8em;
}

.post p:last-of-type {
  margin-bottom: 0px;
}

.post h2 {
  text-align: left;
  margin: .6em 0 .8em;
}

.post li:before {
  font-family: 'FontAwesome';
  content: '\f0da';
  margin: 4px 8px 0 0;
  color: var(--colorDark);
  font-size: 16px;
}

.post ul {
  list-style: none;
  padding-left: 20px;
}

.post li {
  display: flex;
  font-family: 'Jost', sans-serif;
  color: var(--colorDark);
  font-size: 20px;
  font-weight: 400;
}

.post li p {
  margin-bottom: 10px;
}


/* BUTTONS */

  .learn-more {
    display: inline-block;
    color: #fff;
    height: auto;
    min-width: 320px;
    justify-content: center;
    align-items: center;
    padding: 20px 24px;
    text-transform: capitalize;
    font-family: 'PT', sans-serif;
    font-weight: 600;
    line-height: 100%;
    border-radius: 9px;
    letter-spacing: .02em;
    font-size: 18px;
    background-color: var(--orange);
    transition: all .4s;
  }

  a.learn-more:hover {
  transform: scale(1.03);
  cursor: pointer;
  }

  input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

/* OVERLAYS */

  .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgb(0,0,0,.3);
  }

/* FORMATTING */

  .alignleft {
      float: left;
      margin: 0 20px 20px 0;
      height: auto;
  }

  .alignright {
      float: right;
      margin: 0 0px 20px 20px;
      height: auto;
  }

  .aligncenter {
      display: block;
      margin: 0 auto 20px;
      height: auto;
  }

  .split {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }

   /* Header */

   header {
    width: 100%;
    position: relative;
    display: block;
    height: auto;
    background-color: var(--colorWhite);
    left: 0;
    top: 0;
    z-index: 15;
    padding: 12px;
    transition: all .5s;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-content .logo {
    height: 100px;
}



/* HOME PAGE */
/* Home - Hero */

section#hero {
  display: block;
  height: auto;
  /* background: var(--blue) url('/wp-content/themes/remodeler-2024/images/home-hero.jpg') no-repeat center center / cover; */
  position: relative;
}

img.background-image {
    position: absolute;
    right: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  max-width: 900px;
  margin: 0 auto;
  z-index: 10;
  position: relative;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 50px;
}

#hero h1 {
  font-size: 54px;
  font-family: 'PT', sans-serif;
  text-align: center;
  text-transform: none;
  margin-bottom: 30px;
  line-height: 130%;
}

#hero h2 {
  font-family: 'PT', sans-serif;
  font-size: 32px;
  margin-bottom: 30px;
  color: var(--colorWhite);
  text-align: center;
}

.steps-row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    column-gap: 20px;
    margin-bottom: 50px;
}

.step-container.white-bg {
    padding: 30px 20px;
    flex: 0 0 calc((100% / 4) - 20px);
    box-shadow: 0px 0px 8px #eee;
    border-radius: .75em;
}

.step-container.white-bg img {
    height: 60px;
}

.step-container.white-bg h3 {
    color: var(--dark);
    font-size: 16px;
    text-transform: none;
    text-align: center;
    line-height: 140%;
}

.step-container.white-bg p {
    font-size: 14px;
    margin-bottom: 0px;
}

p.big-body-text.dark {
    font-size: 23px;
    margin: 0 auto 40px;
    max-width: 900px;
    line-height: 140%;
}

/* INTERNAL PAGES */
/* Internal Pages - Internal Hero */

section.internal-header {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  margin-top: 0px;
  background-color: var(--colorGold);
  position: relative;
}

section.internal-header h1, section.internal-header p.hero-title {
  color: var(--colorWhite);
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 0px;
  position: relative;
  z-index: 10;
  text-align: center;
  font-family: 'PT';
  width: 100%;
}

/* GALLERY PAGE */

.image-gallery-row {
  display: flex;
  flex-direction: row;
  flex-flow: wrap;
  justify-content: center;
  flex-flow: wrap;
  max-width: 1000px;
  margin: 40px auto 0;
  row-gap: 14px;
  column-gap: 14px;
  }

  .image-gallery-container {
  height: 188px;
  overflow: hidden;
  }

  .image-gallery-container img {
  min-height: 200px;
  min-width: 100%;
  object-fit: cover;
  transition: .5s all;
  }

  .image-gallery-container img:hover {
  transform: scale(1.05);
  }

  a.image-gallery-container {
  border-bottom: none;
  border-radius: 6px;
  flex: 0 0 calc(20% - 12px);
  }

  a.image-gallery-container:hover {
    border-bottom: none;
  }


  .industries-row.dark-bg h3 {
    color: var(--orange);
    text-align: center;
    text-transform: capitalize;
    font-size: 18px;
    margin-bottom: 30px;
}

.industries-row.dark-bg {
    padding: 24px 20px 32px;
    border-radius: .75em;
}

.industries-column {
    flex-direction: column;
    row-gap: 30px;
    display: flex;
    margin-bottom: 40px;
}

.industries-row-row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.industries-row-row .vertical-line {
    flex: 0 0 2px;
    background-color: var(--orange);
}

.industries-image {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 calc((100% / 3) - 4px);
    padding: 0px 20px 0px 0px;

}

.industries-info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 calc((100% / 3) - 4px);
    padding: 0px 24px;
}

.industries-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 calc((100% / 3) - 4px);
    padding-left: 30px;
}

.industries-info p {
    color: var(--white);
    font-size: 16px;
    text-align: left;
    line-height: 140%;
    margin-bottom: 0px;
}

.industries-list ul {
    margin: 0;
}

.industries-list ul li p {
    margin-bottom: 0px;
}

.results-row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    column-gap: 30px;
}

.white-bg.testimonial-container {
    flex: 0 0 calc((100% /3) - 30px);
        padding: 30px 20px;
    box-shadow: 0px 0px 8px #eee;
    border-radius: .75em;
}

p.quote {
    text-align: left;
        font-style: italic;
}

p.source {
    text-align: left;
    font-weight: 700;
    margin-bottom: 0px;
}

.results-content h2 {
    margin-bottom: 50px;
        font-size: 30px;
}

.why-choose-row {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    align-items: stretch;
    row-gap: 30px;
    column-gap: 30px;
}

.why-choose-container {
    background-color: var(--lightgray);
    padding: 10px;
    flex: 0 0 calc((100% / 3) - 30px);
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.choose-container h3 {
    font-size: 16px;
    text-transform: none;
    margin-bottom: 2px;
}

.choose-container p {
    text-align: left;
    font-size: 15px;
    margin-bottom: 0px;
}

.why-choose-content h2 {
    margin-bottom: 30px;
    font-size: 30px;

}

.about-row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.about-copy {
    flex: 0 0 60%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-right: 50px;
}

.about-copy > * {
    text-align: left;
}

.about-copy h2 {
    font-size: 36px;
}

.contact-form-content.darker-bg {
    border-radius: .75em;
    padding: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.ginput_container input {
    border: 1px solid var(--orange);
    border-radius: .5em;
    height: 68px;
    background-color: var(--dark);
	color: #fff;
}

::placeholder {
	color: #eee;
	font-weight: 600;
	padding-left: 10px;
	font-size: 13px;
}

div#field_1_9 label {
    	color: #eee;
	font-weight: 600;
	padding-left: 10px;
	font-size: 14px;
    
}

div#field_1_9 {
    text-align: left;
}

div#field_1_9 select {

    background-color: var(--dark);
    color: #fff;
    border: 1px solid var(--orange);
    border-radius: .5em;
    height: 60px;

}

.gform-footer.gform_footer.top_label {
    text-align: center;
    display: flex;
    justify-content: center;
}

.gform-footer.gform_footer input[type="submit"] {

 display: inline-block;
    color: #fff;
    height: auto;
    min-width: 320px;
    justify-content: center;
    align-items: center;
    padding: 20px 24px;
    text-transform: capitalize;
    font-family: 'PT', sans-serif;
    font-weight: 600;
    line-height: 100%;
    border-radius: 9px;
    letter-spacing: .02em;
    font-size: 18px;
    background-color: var(--orange);
    transition: all .4s;
    border: none;
  }

  .icon-container i {
    color: var(--blue);
}

.icon-container {
    flex: 0 0 40px;
    display: flex;
    align-items: flex-start;
    padding-top: 0px;
    justify-content: center;
    font-size: 18px;
}

.blue-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--blue);
    opacity: .7;
    z-index: 5;
}

section#cta {
    position: relative;
    background: var(--blue) url(/wp-content/themes/remodeler-2024/images/cta.jpg) no-repeat top center / cover;
    min-height: 360px;
}

.cta-content {
    position: relative;
    z-index: 10;
}

section#cta .cta-content {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.industries-image img {
    width: 100%;
    object-fit: cover;
    min-height: 100%;
    min-width: 100%;
}

.about-image {
    flex: 0 0 40%;
    position: relative;
}

.about-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-image-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 1em;
}

.industries-list ul {
    width: 100%;
}

.industries-list li {
    text-align: left;
    color: #fff;
}

.industries-image-container {
    height: 140px;
}

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

.footer-row .logo {
    height: 100px;
}

.footer-row > div {
    text-align: right;
}

.footer-row > div p {
    margin-bottom: 0px;
}

.footer-row a {
    color: var(--orange);
}

.contact-form-content.darker-bg p {
    color: #fff;
}

.contact-form-content.darker-bg p a {
    color: var(--orange);
}

/* start hidden + slightly shifted */
.fade-in-on-scroll{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease-out, transform .6s ease-out;
  will-change: opacity, transform;
}

/* visible state (JS adds this) */
.fade-in-on-scroll.is-visible{
  opacity: 1;
  transform: none;
}

/* accessibility */
@media (prefers-reduced-motion: reduce){
  .fade-in-on-scroll{ transition: none; transform: none; }
}

/* RESPONSIVE */

	@media screen and (max-width: 1260px) {


	}

	@media screen and (max-width: 1120px) {


	}

	@media screen and (min-width: 1001px) {

    .mobile-only {
    display: none !important;
    }

	}

	@media screen and (max-width: 1000px) {

		.desktop {
			display: none !important;
		}

    .header-content img.logo, .footer-row img.logo {
    height: 60px;
}

#hero h1 {
    font-size: 32px;
}

.hero-content p {
    font-size: 20px;
}

p.big-body-text.dark {
    font-size: 20px;
}

.steps-row {
    flex-direction: column;
    row-gap: 20px;
}

.big-heading {
    font-size: 28px;
}

.industries-row-row {
    flex-direction: column;
    row-gap: 20px;
}

.results-row {
    flex-direction: column;
    row-gap: 20px;
}

.why-choose-row {
    flex-direction: column;
    row-gap: 20px;
}

.choose-container {
    flex-grow: 1;
}

.about-copy h2 {
    font-size: 28px;
}

.about-row {
    flex-direction: column;
    row-gap: 20px;
}

.about-copy {
    flex: none;
    padding-right: 0px;
}

.about-image {
    flex: none;
    height: 320px;
}

.about-image-container img {
    object-position: top;
}

.footer-row {
    flex-direction: column;
    row-gap: 30px;
}

.footer-row p {
    text-align: center;
}

  }

  @media screen and (max-width: 900px) {

  }

  @media screen and (max-width: 780px) {

  }

  @media screen and (max-width: 520px) {

  }
