@charset "UTF-8";
/* HAZARDOUS TREE REMOVAL - PAGE SPECIFIC STYLES */
/*-- -------------------------- -->
<---        Hazard Risks         -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #hazard-risks {
    padding: var(--sectionPadding);
    overflow: hidden;
    position: relative;
    z-index: 1;
    text-align: center;
  }
  #hazard-risks .pc-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(2.5rem, 4vw, 4rem);
  }
  #hazard-risks .pc-content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #hazard-risks .pc-title {
    max-width: 51.3125rem;
  }
  #hazard-risks .pc-text {
    margin-bottom: 0;
  }
  #hazard-risks .pc-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  #hazard-risks .pc-item {
    list-style: none;
    width: 100%;
    box-sizing: border-box;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* 24px - 32px */
    gap: clamp(1.5rem, 3vw, 2rem);
    position: relative;
    z-index: 1;
  }
  #hazard-risks .pc-item:last-of-type:before {
    display: none;
  }
  #hazard-risks .pc-item:before {
    /* gradient line divider */
    content: "";
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(186, 186, 186) 50%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.6;
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
  }
  #hazard-risks .pc-item:first-of-type {
    padding-top: 0;
  }
  #hazard-risks .pc-item:last-of-type {
    padding-bottom: 0;
    border: none;
  }
  #hazard-risks .pc-image-group {
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50%;
    background-color: rgba(193, 91, 58, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex: none;
    position: relative;
  }
  #hazard-risks .pc-flex {
    width: 100%;
  }
  #hazard-risks .pc-icon {
    width: 2.5rem;
    height: auto;
  }
  #hazard-risks .pc-h2 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2.5vw, 1.5625rem);
    line-height: 1.2em;
    /* reserves space for 2 lines so card text stays aligned across a row whether the title wraps or not */
    min-height: 2.4em;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
    color: var(--headerColor);
  }
  #hazard-risks .pc-item-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.6vw, 1rem);
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #hazard-risks .pc-card-group {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  #hazard-risks .pc-item {
    width: calc(50% - 1px);
    /* every card gets equal padding once items sit side by side instead of stacked; overrides the mobile first/last-of-type reset */
  }
  #hazard-risks .pc-item:first-of-type, #hazard-risks .pc-item:last-of-type {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  #hazard-risks .pc-item:before {
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(186, 186, 186) 50%, rgba(255, 255, 255, 0) 100%);
    left: auto;
    right: 0;
  }
  #hazard-risks .pc-item:nth-child(2n):before {
    display: none;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #hazard-risks .pc-item {
    width: calc(25% - 1px);
  }
  #hazard-risks .pc-item:nth-child(2n):before {
    display: block;
  }
  #hazard-risks .pc-item:last-of-type:before {
    display: none;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #hazard-risks .pc-title,
  body.dark-mode #hazard-risks .pc-text,
  body.dark-mode #hazard-risks .pc-h2,
  body.dark-mode #hazard-risks .pc-item-text {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #hazard-risks .pc-text,
  body.dark-mode #hazard-risks .pc-item-text {
    opacity: 0.8;
  }
  body.dark-mode #hazard-risks .pc-image-group {
    background-color: rgba(193, 91, 58, 0.2);
  }
}
/*-- -------------------------- -->
<---      Reactive vs Proactive  -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #hazard-mindset {
    padding: var(--sectionPadding);
    overflow: hidden;
    position: relative;
    z-index: 1;
    text-align: center;
  }
  #hazard-mindset .pc-container {
    width: 100%;
    max-width: 70rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 40px - 56px */
    gap: clamp(2.5rem, 4vw, 3.5rem);
  }
  #hazard-mindset .pc-content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #hazard-mindset .pc-title {
    max-width: 43.75rem;
  }
  #hazard-mindset .pc-text {
    margin-bottom: 0;
  }
  #hazard-mindset .pc-compare-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    position: relative;
  }
  #hazard-mindset .pc-compare-card {
    flex: 1;
    box-sizing: border-box;
    border-radius: 0.75rem;
    /* 24px - 40px */
    padding: clamp(1.5rem, 4vw, 2.5rem);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 1rem;
  }
  #hazard-mindset .pc-reactive {
    background-color: #f3f2f0;
    border: 1px solid #e3e1dd;
  }
  #hazard-mindset .pc-reactive .pc-compare-tag {
    background-color: rgba(193, 91, 58, 0.12);
    color: var(--secondary);
  }
  #hazard-mindset .pc-reactive .pc-compare-title,
  #hazard-mindset .pc-reactive .pc-compare-ul li {
    color: var(--headerColor);
  }
  #hazard-mindset .pc-reactive .pc-compare-ul li {
    opacity: 0.75;
  }
  #hazard-mindset .pc-reactive .pc-compare-ul li:before {
    content: "✕";
    color: var(--secondary);
  }
  #hazard-mindset .pc-proactive {
    background-color: var(--primary);
    box-shadow: 0 1.5rem 3rem rgba(44, 110, 73, 0.25);
  }
  #hazard-mindset .pc-proactive .pc-compare-tag {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
  }
  #hazard-mindset .pc-proactive .pc-compare-title,
  #hazard-mindset .pc-proactive .pc-compare-ul li {
    color: #fff;
  }
  #hazard-mindset .pc-proactive .pc-compare-ul li:before {
    content: "✓";
    color: #fff;
  }
  #hazard-mindset .pc-proactive .pc-button-solid {
    margin-top: 0.5rem;
  }
  #hazard-mindset .pc-compare-tag {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.2em;
    padding: 0.375rem 0.875rem;
    border-radius: 62.4375rem;
    display: inline-block;
  }
  #hazard-mindset .pc-compare-title {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2em;
    margin: 0;
  }
  #hazard-mindset .pc-compare-ul {
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  #hazard-mindset .pc-compare-ul li {
    position: relative;
    /* 24px - 28px */
    padding-left: clamp(1.5rem, 3vw, 1.75rem);
    font-size: 1rem;
    line-height: 1.5em;
  }
  #hazard-mindset .pc-compare-ul li:before {
    width: 1.125rem;
    font-size: 0.875rem;
    font-weight: 900;
    line-height: 1.5em;
    position: absolute;
    top: 0;
    left: 0;
  }
  #hazard-mindset .pc-compare-divider {
    align-self: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #e3e1dd;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    flex: none;
    text-transform: uppercase;
    font-size: 0.8125rem;
    font-weight: 900;
    color: var(--headerColor);
    letter-spacing: 0.05em;
    position: relative;
    z-index: 2;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #hazard-mindset .pc-compare-group {
    flex-direction: row;
    align-items: stretch;
  }
  #hazard-mindset .pc-compare-divider {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #hazard-mindset .pc-proactive {
    transform: scale(1.03);
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #hazard-mindset .pc-title,
  body.dark-mode #hazard-mindset .pc-text {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #hazard-mindset .pc-text {
    opacity: 0.8;
  }
  body.dark-mode #hazard-mindset .pc-reactive {
    background-color: #232323;
    border-color: #333;
  }
  body.dark-mode #hazard-mindset .pc-reactive .pc-compare-title,
  body.dark-mode #hazard-mindset .pc-reactive .pc-compare-ul li {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #hazard-mindset .pc-compare-divider {
    background-color: var(--dark);
    border-color: #333;
    color: var(--bodyTextColorWhite);
  }
}
/*-- -------------------------- -->
<---        Prepared Band        -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #prepared-band {
    padding: var(--sectionPadding);
    overflow: hidden;
    position: relative;
    z-index: 1;
    text-align: center;
    background-color: var(--headerColor);
    background-image: linear-gradient(160deg, #1a1a1a 0%, #223d2c 100%);
  }
  #prepared-band .pc-container {
    width: 100%;
    max-width: 44rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #prepared-band .pc-topper {
    color: var(--secondaryLight);
  }
  #prepared-band .pc-title {
    color: var(--bodyTextColorWhite);
  }
  #prepared-band .pc-text {
    color: var(--bodyTextColorWhite);
    opacity: 0.85;
  }
  #prepared-band .pc-button-box {
    width: 100%;
    /* 32px - 48px */
    margin-top: clamp(2rem, 4vw, 3rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
  }
  #prepared-band .pc-button-solid {
    margin: 0;
    background-color: var(--secondary);
  }
  #prepared-band .pc-text-link {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5em;
    color: var(--bodyTextColorWhite);
    text-decoration: underline;
    text-underline-offset: 0.25em;
    opacity: 0.85;
    transition: opacity 0.3s;
  }
  #prepared-band .pc-text-link:hover {
    opacity: 1;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #prepared-band .pc-button-box {
    flex-direction: row;
  }
}

/*# sourceMappingURL=hazardous-tree-removal.css.map */
