:root {
  --font-family-main: 'Nunito', sans-serif;

  --color-white: #FFF;
  --color-black: #000;
  
  --color-alabaster: #F7F7F7;
  --color-athens-gray: #F4F5F7;
  --color-athens-gray-dark: #E5E6EB;
  --color-cadet-blue: #ccd0db;
  --color-tundora: #5c5c5c;
  --color-main-shaft: #303030;

  --color-cerulean: #257c99;
  --color-cerulean-light: #23C2F7;
  --color-chathams-blue: #1A4982;
  --color-chathams-blue-dark: #163D6D;
  --color-port-gore: #1C233D;
}



/* General Normilize */
input:focus,
select:focus,
button:focus,
textarea:focus {
  outline: none;
}

button {
  cursor: pointer;
}



/* Helpers */
.d--n {
  display: none;
}
.mb--d {
  margin-bottom: 20px;
}
.fw--700 {
  font-weight: 700;
}



/* General */
html {
  font-family: var(--font-family-main);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--color-tundora);
  box-sizing: border-box;
  overflow-x: hidden;
  background-color: var(--color-athens-gray-dark);
}

body {
  min-height: 100vh;
  max-width: 1600px;
  margin: 0 auto;
  font-size: 1em;
  background-color: var(--color-white);
}

*, *:before, *:after {
  box-sizing: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0;
}

a {
  color: var(--color-cerulean);
}
a:hover {
  color: var(--color-chathams-blue);
}

.wlink {
  color: var(--color-white);
}
.wlink:hover {
  color: var(--color-cerulean-light);
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin: 0;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: .25px;
  color: var(--color-main-shaft);
}

h1 strong, .h1 strong,
h2 strong, .h2 strong,
h3 strong, .h3 strong,
h4 strong, .h4 strong,
h5 strong, .h5 strong,
h6 strong, .h6 strong,
h1 b, .h1 b,
h2 b, .h2 b,
h3 b, .h3 b,
h4 b, .h4 b,
h5 b, .h5 b,
h6 b, .h6 b {
  font-weight: 600;
}

h1, .h1 {
  font-size: 2.25rem;
}
h2, .h2 {
  font-size: 1.875rem;
}
h3, .h3 {
  font-size: 1.75rem;
  line-height: 1.2;
  font-weight: 700;
}
h4, .h4 {
  font-size: 1.5rem;
}
h5, .h5 {
  font-size: 1.2rem;
}

a {
  text-decoration: none;
  transition: color .3s ease-in-out;
}

@media (min-width: 825px) {
  html {
    font-size: 16px;
  }

  h1, .h1 {
    font-size: 3.75rem;
  }
  h2, .h2 {
    font-size: 2.25rem;
  }
}

@media (max-width: 1023px) {
  html.st--nav-open {
    overflow: hidden;
  }
  .st--nav-open body {
    position: relative;
    overflow: hidden;
    height: 100%;
  }
}

@media (min-width: 1300px) {
  html {
    font-size: 17px;
  }

  h1, .h1 {
    font-size: 5rem;
  }
  h2, .h2 {
    font-size: 3rem;
  }
  h3, .h3 {
    font-size: 2.25rem;
  }
  h4, .h4 {
    font-size: 1.75rem;
  }
  h5, .h5 {
    font-size: 1.4rem;
  }
}

@media (min-width: 1600px) {
  html {
    font-size: 18px;
  }
}



/* Typography */
.small-text {
  font-size: .8rem;
}

.title {
  margin-bottom: 20px;
}

.p {
  margin-bottom: 22px;
}
.p-heading {
  font-size: 1.2rem;
  font-weight: 700;
}
.p-pre-heading {
  font-size: 1.15rem;
}
.p:last-child {
  margin-bottom: 0;
}

.image {
  display: block;
  width: 100%;
}

@media (min-width: 825px) {
  .p-heading {
    font-size: 1.33rem;
  }
}

@media (min-width: 1024px) {
  .p-heading {
    font-size: 1.45rem;
  }
}

@media (min-width: 1600px) {
  .title {
    margin-bottom: 26px;
  }
  .p {
    margin-bottom: 32px;
  }
}



/* Layout Helpers */
.section-margin {
  margin-bottom: 40px;
}
@media (max-width: 1023px) {
  body .max-mobile-view {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 480px) {
  .section-margin {
    margin-bottom: 50px;
  }
}

@media (min-width: 825px) {
  .section-margin {
    margin-bottom: 60px;
  }
  .text-width {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1024px) {
  .section-margin {
    margin-bottom: 70px;
  }
}

@media (min-width: 1300px) {
  .section-margin {
    margin-bottom: 85px;
  }
  .text-width {
    max-width: 860px;
  }
}



/* Helpers */
.bg-alabaster {
  background-color: var(--color-alabaster);
}



/* General Components */
.section {
  padding-top: 40px;
  padding-bottom: 40px;
}
.section.section--last {
  padding-bottom: 129px;
}

.container {
  padding-left: 7%;
  padding-right: 7%;
}

.heading {
  text-align: center;
  margin-bottom: 40px;
}
.heading.heading--text {
  margin-bottom: 20px;
}
.heading p {
  margin-top: 20px;
  font-size: 1.15rem;
}
.heading.heading--without-title p {
  margin-top: 0;
}

.separator {
  padding: 40px 0;
  display: flex;
  justify-content: center;
}
.separator svg {
  fill: var(--color-chathams-blue);
  width: 32px;
  height: 32px;
}

.box {
  padding: 40px 20px;
}

.list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
}
.list .list {
  margin-top: 5px;
}
.list li:last-child {
  margin-bottom: 0;
}
.list li::before {
  content: "";
  display: block;
  position: absolute;
  top: 11px;
  left: 0;
  width: 11px;
  height: 2px;
  background-color: var(--color-cerulean);
}

@media (min-width: 375px) {
  .box {
    padding: 40px 30px;
  }
}

@media (min-width: 480px) {
  .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .section.section--last {
    padding-bottom: 139px;
  }

  .box {
    padding: 40px;
  }
}

@media (min-width: 825px) {
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .section.section--last {
    padding-bottom: 124px;
  }

  .separator svg {
    width: 38px;
    height: 38px;
  }
}

@media (min-width: 1024px) {
  .section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .section.section--calendly {
    padding-bottom: 20px;
  }
  .section.section--last {
    padding-bottom: 134px;
  }

  .heading {
    margin-bottom: 50px;
  }

  .separator {
    padding: 50px 0;
  }
  .separator svg {
    width: 48px;
    height: 48px;
  }

  .list li {
    margin-bottom: 6px;
  }
  .list .list {
    margin-top: 6px;
  }

  .st--header-sticky .main {
    margin-top: 65px;
  }
}

@media (min-width: 1300px) {
  .section {
    padding-top: 85px;
    padding-bottom: 85px;
  }
  .section.section--last {
    padding-bottom: 151px;
  }

  .heading {
    margin-bottom: 60px;
  }

  .separator {
    padding: 60px 0;
  }
  .separator svg {
    width: 54px;
    height: 54px;
  }

  .box {
    padding: 60px;
  }

  .list li {
    padding-left: 25px;
    margin-bottom: 7px;
  }
  .list li::before {
    top: 12px;
    width: 15px;
  }
  .list .list {
    margin-top: 7px;
  }
}

@media (min-width: 1600px) {
  .section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .section.section--last {
    padding-bottom: 166px;
  }

  .heading {
    margin-bottom: 70px;
  }
  .heading.heading--text {
    margin-bottom: 26px;
  }
  .heading p {
    margin-top: 26px;
  }

  .separator svg {
    width: 62px;
    height: 62px;
  }

  .list li {
    padding-left: 28px;
    margin-bottom: 8px;
  }
  .list li::before {
    top: 13px;
    width: 17px;
  }
  .list .list {
    margin-top: 8px;
  }
}



/* Grid Row-Column */
.row--margin {
  margin-bottom: 40px;
}
.column:first-child {
  margin-bottom: 40px;
}
.row--small-column-margin .column:first-child {
  margin-bottom: 25px;
}

.row--1 .column,
.row--4 .column {
  margin-bottom: 25px;
}
.row--1 .column:last-of-type,
.row--4 .column:last-of-type {
  margin-bottom: 0;
}

@media (min-width: 480px) {
  .row--margin {
    margin-bottom: 50px;
  }
}

@media (min-width: 600px) {
  .row.row--4 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }
  .row--1 .column {
    margin-bottom: 30px;
  }
  .row--4 .column {
    width: 46.5%;
    margin-bottom: 30px;
  }
  .row--4 .column:nth-last-child(2) {
    margin-bottom: 0;
  }
  .row--4.row--4--3 .column:nth-last-child(2) {
    margin-bottom: 30px;
  }
}

@media (min-width: 825px) {
  .row--margin {
    margin-bottom: 60px;
  }
}

@media (min-width: 1024px) {
  .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .row--rovnyi {
    align-items: flex-start;
  }
  .row.row--4--3 {
    justify-content: space-around;
  }
  .row--margin {
    margin-bottom: 70px;
  }
  .column {
    width: 46.5%;
  }
  .column:first-child,
  .row--small-column-margin .column:first-child {
    margin-bottom: 0;
  }
  .row--desktop-invert .column:first-child {
    order: 2;
  }
  .row--desktop-invert .column:last-child {
    order: 1;
  }
  .row--1 {
    flex-wrap: wrap;
  }
  .row--1 .column {
    width: 100%;
    margin-bottom: 30px;
  }
  .row--4 .column {
    width: 28%;
    margin-bottom: 0;
  }
  .row--4.row--4--3 .column:nth-last-child(2) {
    margin-bottom: 0;
  }
}

@media (min-width: 1300px) {
  .row--margin {
    margin-bottom: 85px;
  }
  .row--1 .column {
    margin-bottom: 40px;
  }
}

@media (min-width: 1600px) {
  .row--margin {
    margin-bottom: 100px;
  }
  .row--1 .column {
    margin-bottom: 50px;
  }
}



/* Button */
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: auto;
  border: none;
  padding: 13px 26px 11px;
  border-radius: 6px;
  background-color: var(--color-athens-gray);
  font-size: .85rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-tundora);
  transition: all .3s ease-in-out;
}
.button:hover {
  background-color: var(--color-tundora);
  color: var(--color-white);
}

.button.button--small {
  padding: 8px 16px 7px;
  font-size: .75rem;
}

.button.button--big {
  padding: 16px 32px 13px;
  font-size: 1rem;
}

.button.button--blue {
  background-color: var(--color-cerulean);
  color: var(--color-white);
}
.button.button--blue:hover {
  background-color: var(--color-cerulean-light);
}

.button.button--bordered {
  border: 1px solid var(--color-tundora);
  background-color: transparent;
}
.button.button--bordered:hover {
  background-color: var(--color-chathams-blue);
  border-color: var(--color-chathams-blue);
}

.button--with-icon svg {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  fill: var(--color-tundora);
  transition: fill .3s ease-in-out;
}
.button.button--blue.button--with-icon svg {
  fill: var(--color-white);
}
.button--with-icon:hover svg {
  fill: var(--color-white);
}
.button--small.button--with-icon svg {
  width: 15px;
  height: 15px;
  margin-right: 6px;
}
.button--big.button--with-icon svg {
  width: 22px;
  height: 22px;
  margin-right: 10px;
}



/* Topper */
.topper {
  display: flex;
  flex-direction: column;
}



/* Bar */
.bar {
  margin-top: 60px;
  order: 2;
  padding: 18px 0;
  background-color: var(--color-cerulean);
  color: var(--color-white);
}
.bar__item:first-child {
  margin-bottom: 18px;
}

.bar .social-list {
  justify-content: center;
}
.bar .social-link {
  border-color: var(--color-white);
}
.bar .social-link:hover {
  border-color: var(--color-chathams-blue);
}
.bar .social-link svg {
  fill: var(--color-white);
}
.bar .social-link:hover svg {
  fill: var(--color-chathams-blue);
}

.bar .inline-list {
  flex-wrap: wrap;
}
.bar .inline-list__item {
  width: 100%;
  margin-right: 0;
  display: flex;
  justify-content: center;
}
.bar .inline-list__item:first-child {
  margin-bottom: 6px;
}

.bar .button--bordered {
  border-color: var(--color-white);
  color: var(--color-white);
}
.bar .button--with-icon svg {
  fill: var(--color-white);
}

@media (min-width: 580px) {
  .bar .inline-list {
    flex-wrap: nowrap;
    justify-content: center;
  }
  .bar .inline-list__item {
    width: auto;
    margin-right: 12px;
  }
  .bar .inline-list__item:first-child {
    margin-bottom: 0;
  }
}

@media (min-width: 825px) {
  .bar__inner {
    display: flex;
    justify-content: space-between;
  }
  .bar__item {
    display: flex;
    align-items: center;
  }
  .bar__item:first-child {
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .bar {
    order: 1;
    margin-top: 0;
  }
}



/* Header */
.header {
  order: 1;
  padding: 6px 0 6px 0;
  position: fixed;
  z-index: 6;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-white);
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 1024px) {
  .header {
    position: static;
    order: 2;
    padding: 0;
  }
  .st--header-sticky .header {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1600px;
  }
}



/* Logo */
.logo {
  position: relative;
  display: block;
  width: 163px;
  height: 48px;
}
.logo svg {
  width: 163px;
  height: 48px;
}
.logo__tm {
  position: absolute;
  top: -2px;
  right: -20px;
  font-size: 9px;
  color: var(--color-chathams-blue);
}
.logo__desc {
  position: absolute;
  bottom: -15px;
  left: 0;
  font-size: 10px;
  color: var(--color-chathams-blue);
  font-weight: 700;
}

/* @media (min-width: 1024px) {
  .logo {
    width: 245px;
    height: 40px;
  }
  .logo svg {
    width: 245px;
    height: 40px;
  }
} */



/* Nav */
.nav-list_inner-list {
  display: none;
}

@media (max-width: 1023px) {
  .nav {
    display: block;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 60px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    overflow: auto;
    background-color: var(--color-chathams-blue);
    transform: translate3d(0, -150%, 0);
    transition: transform .3s ease-in-out .3s, padding .3s ease-in-out 0s;
  }
  .st--nav-open .nav {
    transform: translate3d(0, 0, 0);
    transition: transform .3s ease-in-out 0s, padding .3s ease-in-out .3s;
    padding-left: 25px;
    padding-right: 25px;
  }
  .nav-list__item {
    margin-bottom: 10px;
  }
  .nav-list__item:last-child {
    margin-bottom: 0;
  }
  .nav-link {
    font-size: 1.5rem;
    color: var(--color-white);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color .3s ease-in-out;
  }
  .nav-link:hover {
    color: var(--color-cerulean-light);
  }
  .nav-list_inner-list {
    margin-top: 5px;
  }
  .nav-list_inner-list.active {
    display: block;
  }
  .nav-list_inner-list a {
    color: var(--color-white);
    font-size: 1.17rem;
  }
  .nav-list_inner-list li {
    margin-bottom: 4px;
  }
}

@media (min-width: 1024px) {
  .logo__desc {
    bottom: -21px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-chathams-blue);
  }
  .nav {
    display: flex;
  }
  .nav-list {
    display: flex;
  }
  .nav-list__item {
    margin-right: 12px;
    position: relative;
  }
  .nav-list__item:last-child {
    margin-right: 0;
  }
  .nav-link {
    display: block;
    padding-top: 29px;
    padding-bottom: 29px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-tundora);
  }
  .nav-link:hover {
    color: var(--color-cerulean);
  }
  .nav-link.active {
    color: var(--color-cerulean);
  }
  .nav-list .nav-link:hover + .nav-list_inner-list {
    display: block;
    position: absolute;
    z-index: 99;
    top: 99.9%;
    left: -37px;
    width: 320px;
    padding: 20px 40px;
    background-color: var(--color-alabaster);
  }
  .nav-list_inner-list:hover {
    display: block;
    position: absolute;
    z-index: 99;
    top: 99.9%;
    left: -37px;
    width: 320px;
    padding: 20px 40px;
    background-color: var(--color-alabaster);
  }
  .nav-list_inner-list li:first-child {
    display: none;
  }
}

@media (min-width: 1300px) {
  .nav-list__item {
    margin-right: 25px;
  }
  .nav-link {
    font-size: 1rem;
  }
}

@media (min-width: 1600px) {
  .nav-list__item {
    margin-right: 30px;
  }
  .nav-link {
    font-size: 1.15rem;
  }
}



/* Burger Button */
.burger-button {
  padding: 0;
  border: none;
  background-color: var(--color-athens-gray);
  width: 48px;
  height: 48px;
  display: block;
  position: relative;
  overflow: hidden;
}
.burger-button span {
  display: block;
  position: absolute;
  left: 12px;
  width: 24px;
  height: 2px;
  background-color: var(--color-main-shaft);
  opacity: 1;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
}
.burger-button span:nth-child(1) {
  top: 15px;
}
.burger-button span:nth-child(2) {
  top: 23px;
}
.burger-button span:nth-child(3) {
  top: 31px;
}
.st--nav-open .burger-button span:nth-child(1) {
  top: 23px;
  transform: rotate(135deg);
}
.st--nav-open .burger-button span:nth-child(2) {
  opacity: 0;
  left: -50px;
}
.st--nav-open .burger-button span:nth-child(3) {
  top: 23px;
  transform: rotate(-135deg);
}

@media (min-width: 1024px) {
  .burger-button {
    display: none;
  }
}



/* Intro */
.intro {
  display: flex;
  flex-direction: column;
}
.intro--short .intro__image {
  display: none;
}
.intro--short .intro__title {
  margin-bottom: 0;
}
.intro__main {
  order: 2;
  background-color: var(--color-chathams-blue);
  color: var(--color-white);
  padding: 40px 7% 42px;
}
.intro__image {
  order: 1;
  height: 200px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.intro__title {
  color: var(--color-white);
}

.intro__image--intro {
  background-image: url(/assets/images/new/intro/intro-home-m.webp);
}
.intro__image--services {
  background-image: url(/assets/images/new/intro/intro-services-m.webp);
}
.intro__image--materials {
  background-image: url(/assets/images/new/intro/intro-materials-m.webp);
}
.intro__image--about {
  background-image: url(/assets/images/new/intro/intro-about-m.webp);
}
.intro__image--areas {
  background-image: url(/assets/images/new/intro/intro-areas-m.webp);
}
.intro__image--financing {
  background-image: url(/assets/images/new/intro/intro-financing-m.webp);
}
.intro__image--insurance {
  background-image: url(/assets/images/new/intro/intro-insurance-m.webp);
}
.intro__image--phone {
  background-image: url(/assets/images/new/intro/intro-phone-m.webp);
}
.intro__image--inhome {
  background-image: url(/assets/images/new/intro/intro-inhome-m.webp);
}
.intro__image--roof-installation {
  background-image: url(/assets/images/new/intro/intro-roof-installation-m.webp);
}
.intro__image--roof-replacement {
  background-image: url(/assets/images/new/intro/intro-roof-replacement-m.webp);
}
.intro__image--flat-roof {
  background-image: url(/assets/images/new/intro/intro-flat-roof-m.webp);
}
.intro__image--roof-foam-coating {
  background-image: url(/assets/images/new/intro/intro-roof-foam-coating-m.webp);
}
.intro__image--siding-replacement {
  background-image: url(/assets/images/new/intro/intro-siding-replacement-m.webp);
}
.intro__image--metal-roof {
  background-image: url(/assets/images/new/intro/intro-metal-roof-m.webp);
}
.intro__image--pvc-roof {
  background-image: url(/assets/images/new/intro/intro-pvc-roof-m.webp);
}
.intro__image--composite-roof {
  background-image: url(/assets/images/new/intro/intro-composite-roof-m.webp);
}
.intro__image--fiberglass-shingles {
  background-image: url(/assets/images/new/intro/intro-fiberglass-shingles-m.webp);
}

@media (min-width: 375px) {
  .intro__image {
    height: 250px;
  }
}

@media (min-width: 480px) {
  .intro__image {
    height: 300px;
  }
}

@media (min-width: 600px) {
  .intro__image {
    height: 400px;
  }
  .intro__image--intro {
    background-image: url(/assets/images/new/intro/intro-home-t.webp);
  }
  .intro__image--services {
    background-image: url(/assets/images/new/intro/intro-services-t.webp);
  }
  .intro__image--materials {
    background-image: url(/assets/images/new/intro/intro-materials-t.webp);
  }
  .intro__image--about {
    background-image: url(/assets/images/new/intro/intro-about-t.webp);
  }
  .intro__image--areas {
    background-image: url(/assets/images/new/intro/intro-areas-t.webp);
  }
  .intro__image--financing {
    background-image: url(/assets/images/new/intro/intro-financing-t.webp);
  }
  .intro__image--insurance {
    background-image: url(/assets/images/new/intro/intro-insurance-t.webp);
  }
  .intro__image--phone {
    background-image: url(/assets/images/new/intro/intro-phone-t.webp);
  }
  .intro__image--inhome {
    background-image: url(/assets/images/new/intro/intro-inhome-t.webp);
  }
  .intro__image--roof-installation {
    background-image: url(/assets/images/new/intro/intro-roof-installation-t.webp);
  }
  .intro__image--roof-replacement {
    background-image: url(/assets/images/new/intro/intro-roof-replacement-t.webp);
  }
  .intro__image--flat-roof {
    background-image: url(/assets/images/new/intro/intro-flat-roof-t.webp);
  }
  .intro__image--roof-foam-coating {
    background-image: url(/assets/images/new/intro/intro-roof-foam-coating-t.webp);
  }
  .intro__image--siding-replacement {
    background-image: url(/assets/images/new/intro/intro-siding-replacement-t.webp);
  }
  .intro__image--metal-roof {
    background-image: url(/assets/images/new/intro/intro-metal-roof-t.webp);
  }
  .intro__image--pvc-roof {
    background-image: url(/assets/images/new/intro/intro-pvc-roof-t.webp);
  }
  .intro__image--composite-roof {
    background-image: url(/assets/images/new/intro/intro-composite-roof-t.webp);
  }
  .intro__image--fiberglass-shingles {
    background-image: url(/assets/images/new/intro/intro-fiberglass-shingles-t.webp);
  }
}

@media (min-width: 825px) {
  .intro__main {
    padding: 40px 7% 45px;
  }
  .intro__image {
    height: 500px;
  }
}

@media (min-width: 1024px) {
  .intro {
    flex-direction: row;
  }
  .intro__title {
    font-size: 2.5em;
  }
  .intro__main {
    order: 1;
    width: 44%;
    padding: 60px 7% 65px;
  }
  .intro__image {
    order: 2;
    width: 56%;
    height: auto;
  }
  .intro--short .intro__image {
    display: block;
  }
  .intro__image--intro {
    background-image: url(/assets/images/new/intro/intro-home-d.webp);
  }
  .intro__image--services {
    background-image: url(/assets/images/new/intro/intro-services-d.webp);
  }
  .intro__image--materials {
    background-image: url(/assets/images/new/intro/intro-materials-d.webp);
  }
  .intro__image--about {
    background-image: url(/assets/images/new/intro/intro-about-d.webp);
  }
  .intro__image--areas {
    background-image: url(/assets/images/new/intro/intro-areas-d.webp);
  }
  .intro__image--financing {
    background-image: url(/assets/images/new/intro/intro-financing-d.webp);
  }
  .intro__image--insurance {
    background-image: url(/assets/images/new/intro/intro-insurance-d.webp);
  }
  .intro__image--phone {
    background-image: url(/assets/images/new/intro/intro-phone-d.webp);
  }
  .intro__image--inhome {
    background-image: url(/assets/images/new/intro/intro-inhome-d.webp);
  }
  .intro__image--roof-installation {
    background-image: url(/assets/images/new/intro/intro-roof-installation-d.webp);
  }
  .intro__image--roof-replacement {
    background-image: url(/assets/images/new/intro/intro-roof-replacement-d.webp);
  }
  .intro__image--flat-roof {
    background-image: url(/assets/images/new/intro/intro-flat-roof-d.webp);
  }
  .intro__image--roof-foam-coating {
    background-image: url(/assets/images/new/intro/intro-roof-foam-coating-d.webp);
  }
  .intro__image--siding-replacement {
    background-image: url(/assets/images/new/intro/intro-siding-replacement-d.webp);
  }
  .intro__image--metal-roof {
    background-image: url(/assets/images/new/intro/intro-metal-roof-d.webp);
  }
  .intro__image--pvc-roof {
    background-image: url(/assets/images/new/intro/intro-pvc-roof-d.webp);
  }
  .intro__image--composite-roof {
    background-image: url(/assets/images/new/intro/intro-composite-roof-d.webp);
  }
  .intro__image--fiberglass-shingles {
    background-image: url(/assets/images/new/intro/intro-fiberglass-shingles-d.webp);
  }
}

@media (min-width: 1600px) {
  .intro__main {
    padding: 60px 7% 68px;
  }
}



/* Social List, Social Link */
.social-list {
  display: flex;
}
.social-list__item {
  margin-right: 7px;
}
.social-list__item:last-child {
  margin-right: 0;
}

.social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid  var(--color-chathams-blue);
  border-radius: 50%;
  transition: border-color .3s ease-in-out;
}
.social-link:hover {
  border-color: var(--color-cerulean);
}
.social-link svg {
  width: 16px;
  height: 16px;
  fill: var(--color-chathams-blue);
  transition: fill .3s ease-in-out;
}
.social-link:hover svg {
  fill: var(--color-cerulean);
}

@media (min-width: 825px) {
  .social-link {
    width: 38px;
    height: 38px;
  }
  .social-link svg {
    width: 18px;
    height: 18px;
  }
}



/* Inline List */
.inline-list {
  display: flex;
}
.inline-list__item {
  margin-right: 12px;
}
.inline-list__item:last-child {
  margin-right: 0;
}



/* Service Card */
.service-card {
  position: relative;
  display: block;
  text-align: center;
  border-bottom: 3px solid var(--color-athens-gray-dark);
  height: 100%;
}
.service-card__header {
  height: 200px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: margin .3s ease-in-out;
}
.service-card__main {
  padding: 20px 20px 0;
}
.service-card__main p {
  margin-top: 10px;
  color: var(--color-tundora);
}
.service-card__footer {
  padding: 20px;
  transition: padding .3s ease-in-out;
}
.service-card__button {
  font-size: .85rem;
  font-weight: 700;
  color: var(--color-cerulean);
}
.service-card.service-card--non-hover p {
  margin-bottom: 20px;
}

@media (min-width: 1024px) {
  .service-card::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
    width: 0;
    height: 3px;
    background-color: var(--color-cerulean);
    transition: all 0.3s ease-in-out 0s;
  }
  .service-card:hover::after {
    width: 100%;
  }
  .service-card.service-card--non-hover:hover::after {
    width: 0;
  }
}

@media (min-width: 1300px) {
  .service-card__main {
    padding: 30px 25px 0;
  }
  .service-card__main p {
    margin-top: 15px;
  }
  .service-card__footer {
    padding: 30px 25px;
  }
  .service-card.service-card--non-hover p {
    margin-bottom: 25px;
  }
}



/* Banner */
.banner__image {
  position: relative;
  height: 200px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.banner__image.banner__image--logo {
  background-size: 50%;
}

.banner__image--residential {
  background-image: url(/assets/images/new/residential-options-m.webp);
}
.banner__image--commercial {
  background-image: url(/assets/images/new/commercial-options-m.webp);
}

.banner__stepper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-cerulean);
  color: var(--color-white);
  font-weight: 700;
  padding: 10px 20px;
}
.banner__main {
  background-color: var(--color-port-gore);
  color: var(--color-cadet-blue);
  padding: 40px 20px;
}
.banner__main h2,
.banner__main h3,
.banner__main ul {
  color: var(--color-white);
}

@media (min-width: 375px) {
  .banner__main {
    padding: 40px 30px;
  }
}

@media (min-width: 480px) {
  .banner__main {
    padding: 40px;
  }
  .banner__image {
    height: 250px;
  }
}

@media (min-width: 680px) {
  .banner__image--residential {
    background-image: url(/assets/images/new/residential-options-t.webp);
  }
  .banner__image--commercial {
    background-image: url(/assets/images/new/commercial-options-t.webp);
  }
}

@media (min-width: 1024px) {
  .banner {
    display: flex;
  }
  .banner--invert .banner__image {
    order: 2;
  }
  .banner--invert .banner__main {
    order: 1;
  }
  .banner__stepper {
    position: static;
    width: 200px;
    margin-top: -20px;
    margin-left: -20px;
  }
  .banner__image {
    height: auto;
    width: 50%;
  }
  .banner__main {
    width: 50%;
  }
  .banner__image--residential {
    background-image: url(/assets/images/new/residential-options-l.webp);
  }
  .banner__image--commercial {
    background-image: url(/assets/images/new/commercial-options-l.webp);
  }
}

@media (min-width: 1300px) {
  .banner__stepper {
    width: 220px;
  }
  .banner__main {
    padding: 60px;
  }
}

@media (min-width: 1600px) {
  .banner__stepper {
    width: 230px;
  }
  .banner__image--residential {
    background-image: url(/assets/images/new/residential-options-d.webp);
  }
  .banner__image--commercial {
    background-image: url(/assets/images/new/commercial-options-d.webp);
  }
}



/* Simple Card */
.simple-card {
  background-color: var(--color-athens-gray);
  padding: 40px 20px;
  text-align: center;
}
.simple-card__header {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.simple-card__header svg {
  fill: var(--color-cerulean);
  width: 36px;
  height: 36px;
}
.simple-card__main p {
  margin-top: 10px;
}

@media (min-width: 375px) {
  .simple-card {
    padding: 40px 30px;
  }
}

@media (min-width: 480px) {
  .simple-card {
    padding: 40px;
  }
}

@media (min-width: 1024px) {
  .simple-card__header svg {
    width: 38px;
    height: 38px;
  }
}

@media (min-width: 1300px) {
  .simple-card {
    padding: 60px;
  }
  .simple-card__header {
    margin-bottom: 30px;
  }
  .simple-card__header svg {
    width: 41px;
    height: 41px;
  }
  .simple-card__main p {
    margin-top: 15px;
  }
}

@media (min-width: 1600px) {
  .simple-card__header svg {
    width: 44px;
    height: 44px;
  }
}



/* Testimonials */
.testimonials-slider {
  padding: 30px 20px 70px;
  background-image: url(/assets/images/testimonials-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.testimonial-card {
  text-align: center;
}
.testimonial-card__header {
  margin-bottom: 30px;
}
.testimonial-card__header-inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto;
  border: 1px solid var(--color-chathams-blue);
  border-radius: 50%;
  margin-top: 10px;
}
.testimonial-card__header-inner::before {
  content: "";
  display: block;
  position: absolute;
  top: -11px;
  left: -11px;
  width: 78px;
  height: 78px;
  border: 1px solid #12345c;
  border-radius: 50%;
}
.testimonial-card__svg {
  position: relative;
  width: 28px;
  height: 28px;
  fill: var(--color-white);
}
.testimonial-card__text {
  color: var(--color-cadet-blue);
  font-size: 1.15rem;
}
.testimonial-card__author {
  margin-top: 17px;
  color: var(--color-white);
}

.slick-arrow {
  position: absolute;
  z-index: 1;
  bottom: 0;
  width: 40px;
  height: 40px;
  border: none;
  background-color: var(--color-cerulean);
  color: var(--color-white);
  font-size: 1.6rem;
  transition: background-color .3s ease-in-out;
}
.slick-arrow:hover {
  background-color: var(--color-cerulean-light);
}
.slick-prev {
  right: 41px;
}
.slick-next {
  right: 0;
}

@media (min-width: 375px) {
  .testimonials-slider {
    padding: 30px 30px 70px;
  }
}

@media (min-width: 480px) {
  .testimonials-slider {
    padding: 40px 40px 80px;
  }

  .slick-arrow {
    width: 50px;
    height: 50px;
  }
  .slick-prev {
    right: 51px;
  }
}

@media (min-width: 1024px) {
  .testimonials-slider {
    padding: 60px 60px 110px;
  }
  .testimonial-card__header {
    margin-bottom: 50px;
  }
  .testimonial-card__author {
    margin-top: 27px;
  }

  .slick-arrow {
    width: 60px;
    height: 60px;
  }
  .slick-prev {
    right: 61px;
  }
}



/* Service Area Section */
.map__image {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}
.map__image iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}
.map__card-wrapper {
  padding: 40px 0;
  background-color: var(--color-port-gore);
}
.map__card {
  color: var(--color-cadet-blue);
}
.map__card h2 {
  color: var(--color-white);
}

@media (min-width: 480px) {
  .map__card-wrapper {
    padding: 50px 0;
  }
  .map__card ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .map__card li {
    width: 40%;
  }
}

@media (min-width: 825px) {
  .map__card-wrapper {
    padding: 60px 0;
  }
  .map__image {
    height: 500px;
  }
}

@media (min-width: 1024px) {
  .map {
    position: relative;
  }
  .map__card-wrapper {
    padding: 0;
    background: none;
  }
  .map__card {
    position: absolute;
    z-index: 1;
    left: 12%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    background-color: var(--color-port-gore);
    padding: 60px 40px;
  }
  .map__card li {
    width: 100%;
  }
}

@media (min-width: 1300px) {
  .map__card {
    width: 40%;
    padding: 60px;
  }
  .map__card.map__card--big {
    width: 40.5%;
  }
  .map__card li {
    width: 40%;
  }
}

@media (min-width: 1600px) {
  .map__card.map__card--big {
    width: 37.5%;
  }
}



/* Simple List */
.simple-list li {
  margin-bottom: 3px;
  position: relative;
}
.simple-list li:last-child {
  margin-bottom: 0;
}
.simple-list--svg svg {
  position: absolute;
  top: 6px;
  left: 0;
  width: 13px;
  height: 13px;
  fill: var(--color-cerulean);
}
.simple-list--svg li {
  padding-left: 20px;
}
.simple-list--big {
  font-size: 1.15rem;
}
.simple-list--big li {
  padding-left: 25px;
}
.simple-list--big.simple-list--svg svg {
  width: 16px;
  height: 16px;
}

@media (min-width: 825px) {
  .simple-list--big.simple-list--svg svg {
    width: 18px;
    height: 18px;
  }
}

@media (min-width: 1024px) {
  .simple-list li {
    margin-bottom: 5px;
  }
  .simple-list--big li {
    padding-left: 30px;
  }
  .simple-list--big.simple-list--svg svg {
    width: 20px;
    height: 20px;
  }
}

@media (min-width: 1300px) {
  .simple-list--svg svg {
    top: 7px;
    width: 14px;
    height: 14px;
  }
  .simple-list--svg li {
    padding-left: 22px;
  }
  .simple-list--big li {
    padding-left: 30px;
  }
}

@media (min-width: 1600px) {
  .simple-list--svg svg {
    top: 8px;
    width: 15px;
    height: 15px;
  }
  .simple-list--svg li {
    padding-left: 24px;
  }
  .simple-list--big li {
    padding-left: 35px;
  }
}



/* Board */
.board {
  margin-bottom: 40px;
}
.board:last-of-type {
  margin-bottom: 0;
}
.board__header-content {
  padding: 40px 20px;
  background-color: var(--color-port-gore);
  color: var(--color-cadet-blue);
}
.board__header-content h2,
.board__header-content h3 {
  color: var(--color-white);
}
.board__header-image {
  height: 200px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.board__main {
  padding: 40px 20px;
  background-color: var(--color-alabaster);
}

@media (min-width: 375px) {
  .board__header-content,
  .board__main {
    padding: 40px 30px;
  }
}

@media (min-width: 480px) {
  .board {
    margin-bottom: 50px;
  }
  .board__header-content,
  .board__main {
    padding: 40px;
  }

  .board__header-image {
    height: 250px;
  }
}

@media (min-width: 825px) {
  .board {
    margin-bottom: 60px;
  }
}

@media (min-width: 1024px) {
  .board {
    margin-bottom: 70px;
  }
  .board__header {
    display: flex;
    width: 86%;
    margin-left: auto;
    margin-right: auto;
  }
  .board__header-content {
    padding: 60px 40px;
    width: 50%;
  }
  .board__header-image {
    width: 50%;
    height: auto;
  }
  .board__main {
    margin-top: -190px;
    padding: 250px 60px 60px;
  }
}

@media (min-width: 1300px) {
  .board {
    margin-bottom: 85px;
  }
  .board__main {
    margin-top: -190px;
    padding: 260px 60px 70px;
  }
  .board__header-content {
    padding: 60px;
  }
}

@media (min-width: 1600px) {
  .board {
    margin-bottom: 100px;
  }
  .board__main {
    margin-top: -190px;
    padding: 270px 60px 80px;
  }
}



/* Contact Form */
#form-success-message, #form-error-message, #form-info-message {
  display: none;
}

#form-success-message {
  color: #27ae60;
  font-weight: 700;
}

#form-error-message {
  color: #e74c3c;
  font-weight: 700;
}

#form-info-message {
  color: #e74c3c;
  font-weight: 700;
}

.contact-grid__item:first-child {
  margin-bottom: 32px;
}

.contact-form-wrapper {
  background-color: var(--color-supernova);
  padding: 0 20px;
  margin-left: -10px;
  margin-right: -10px;
}
.contact-form-wrapper__title {
  margin-bottom: 18px;
}

.cf__row {
  margin-bottom: 10px;
}
.cf__row--message {
  margin-bottom: 14px;
}
.cf__row:last-child {
  margin-bottom: 0;
}
.cf__row--buttons {
  display: flex;
  justify-content: space-between;
}
.cf__row--buttons button {
  width: 48%;
}

.cf__input {
  width: 100%;
  border: 2px solid var(--color-black);
  padding: 13px;
  transition: border-color .3s ease-in-out;
}
.cf__input:focus {
  border-color: var(--color-cerulean);
}
.cf__input--textarea {
  display: block;
  min-width: 100%;
  max-width: 100%;
  height: 180px;
  max-height: 180px;
  min-height: 180px;
}
.cf__alert {
  color: #e74c3c;
  font-size: 0.85em;
}
.cf__label {
  display: block;
  font-size: 1rem;
  font-weight: 500;
}
.error {
  font-size: .85rem;
}
.cf--sent .cf__row-list {
  display: none;
}
.cf__info {
  display: none;
  font-size: 1.37em;
}
.cf--sent .cf__info {
  display: block;
}


/* Calendly Widget */
.calendly-inline-widget,
  .calendly-inline-widget *,
  .calendly-badge-widget,
  .calendly-badge-widget *,
  .calendly-overlay,
  .calendly-overlay * {
    font-size: 16px;
    line-height: 1.2em;
  }
.calendly-inline-widget iframe, .calendly-badge-widget iframe, .calendly-overlay iframe {
    /*
    Values other than `display: inline` cause a scrolling bug on iOS where the underlying page
    scrolls instead of the iframe
    */
    display: inline;
    width: 100%;
    height: 100%;
  }
.calendly-popup-content {
  /* Any updates in this section should be updated for inline mode */
  position: relative;
}
.calendly-popup-content.calendly-mobile {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
  }
.calendly-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 9999;
  background-color: #a5a5a5;
  background-color: rgba(31, 31, 31, .4);
}
.calendly-overlay .calendly-close-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
.calendly-overlay .calendly-popup {
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 80%;
    min-width: 900px;
    max-width: 1000px;
    height: 90%;
    max-height: 680px;
  }
@media (max-width: 975px) {
.calendly-overlay .calendly-popup {
      position: fixed;
      top: 50px;
      left: 0;
      right: 0;
      bottom: 0;
      transform: none;
      width: 100%;
      height: auto;
      min-width: 0;
      max-height: none
  }
    }
.calendly-overlay .calendly-popup .calendly-popup-content {
      height: 100%;
    }
.calendly-overlay .calendly-popup-close {
    position: absolute;
    top: 25px;
    right: 25px;
    color: #fff;
    width: 19px;
    height: 19px;
    cursor: pointer;
    background: url(../../assets/external/close-icon.svg) no-repeat;
    background-size: contain;
  }
@media (max-width: 975px) {
.calendly-overlay .calendly-popup-close {
      top: 15px;
      right: 15px
  }
    }
.calendly-badge-widget {
  position: fixed;
  right: 20px;
  bottom: 15px;
  z-index: 9998;
}
.calendly-badge-widget .calendly-badge-content {
    display: table-cell;
    width: auto;
    height: 45px;
    padding: 0 30px;
    border-radius: 25px;
    box-shadow: rgba(0, 0, 0, 0.25) 0 2px 5px;
    font-family: sans-serif;
    text-align: center;
    vertical-align: middle;
    font-weight: bold;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
  }
.calendly-badge-widget .calendly-badge-content.calendly-white {
      color: #666a73;
    }
.calendly-badge-widget .calendly-badge-content span {
      display: block;
      font-size: 12px;
    }
.calendly-spinner {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  text-align: center;
  z-index: -1;
}
.calendly-spinner > div {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-color: #e1e1e1;
    border-radius: 50%;
    vertical-align: middle;
    animation: calendly-bouncedelay 1.4s infinite ease-in-out;
    animation-fill-mode: both;
  }
.calendly-spinner .calendly-bounce1 {
    animation-delay: -0.32s;
  }
.calendly-spinner .calendly-bounce2 {
    animation-delay: -0.16s;
  }
@keyframes calendly-bouncedelay {
  0%,
  80%,
  100% {
    transform: scale(0.0);
  }
  40% {
    transform: scale(1.0);
  }
};



/* Calendly Widget, Calendly Toggler */
.calendly-widget-toggler {
  display: flex;
}
.calendly-widget-toggler__item {
  width: 50%;
  text-align: center;
}
.calendly-widget-toggler__item:first-child {
  border-right: 1px solid #e4e4e4;
}
.calendly-widget-link {
  display: block;
  padding: 20px;
  transition: all .2s easy;
  background-color: #fff;
}
.calendly-widget-toggler__item:first-child .calendly-widget-link {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.calendly-widget-toggler__item:last-child .calendly-widget-link {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.calendly-widget-link {
  color: #515151;
}
.calendly-widget-link:hover {
  color: #257c99;
}
.calendly-widget-link.active {
  color: #257c99;
  font-weight: bold;
  background-color: #f2fafd;
}
.calendly-widget {
	height: 860px;
}

@media (min-width: 825px) {
  /* .calendly-widget-toggler {
    margin-top: -110px;
  } */
}

@media (min-width: 1000px) {
	.calendly-widget {
		height: 860px;
	}
}

@media (min-width: 1024px) {
  /* .calendly-widget-toggler {
    margin-top: -124px;
  } */
}

@media (min-width: 1153px) {
  /* .calendly-widget-toggler {
    margin-top: -124px;
  } */
}




/* Footer */
.qoute-banner-wrapper {
  position: relative;
}
.footer.footer--simple .qoute-banner-wrapper {
  display: none;
}
.qoute-banner {
  position: absolute;
  top: -89px;
  left: 0;
  width: 100%;
  text-align: center;
  background-color: var(--color-white);
  padding: 40px 20px;
  color: var(--color-main-shaft);
  box-shadow: 0 -12px 24px -12px #afaaaa;
}
.qoute-banner p.h5 {
  margin-bottom: 20px;
  color: var(--color-main-shaft);
}

.footer {
  background-color: var(--color-chathams-blue);
  color: var(--color-white);
}

.footer .h5 {
  color: var(--color-white);
}

.footer__row {
  padding: 129px 0 40px;
}
.footer.footer--simple .footer__row {
  padding: 40px 0;
}
.footer__column {
  margin-bottom: 40px;
}
.footer__column:last-child {
  margin-bottom: 0;
}

.footer-logo {
  width: 163px;
  height: 48px;
}
.footer-logo svg {
  width: 163px;
  height: 48px;
}

.footer-margin {
  margin-bottom: 14px;
}

.footer .social-link {
  border-color: var(--color-white);
}
.footer .social-link:hover {
  border-color: var(--color-cerulean-light);
}
.footer .social-link svg {
  fill: var(--color-white);
}
.footer .social-link:hover svg {
  fill: var(--color-cerulean-light);
}

.footer__row {
  color: var(--color-cadet-blue);
}
.footer__row h4 {
  color: var(--color-cadet-blue);
  margin-bottom: 12px;
}
.footer__row a {
  color: var(--color-white);
}
.footer__row a:hover {
  color: var(--color-cerulean-light);
}

.footer-bar {
  background-color: var(--color-chathams-blue-dark);
  padding: 10px 0;
  text-align: center;
}
.footer-bar a {
  color: var(--color-white);
}
.footer-bar a:hover {
  color: var(--color-cerulean-light);
}

@media (min-width: 480px) {
  .footer__row {
    padding: 139px 0 50px;
  }

  .footer-bar .container {
    display: flex;
    justify-content: space-between;
  }
}

@media (min-width: 825px) {
  .qoute-banner {
    top: -64px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .qoute-banner p {
    margin-bottom: 0;
    margin-right: 40px;
  }
  .qoute-banner p.h5 {
    margin-bottom: 0;
  }

  .footer__row {
    padding: 124px 0 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .footer.footer--simple .footer__row {
    padding: 60px 0;
  }
  .footer__column {
    width: 47.5%;
  }
  .footer__column:nth-last-child(2) {
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .footer__row {
    padding: 134px 0 70px;
    flex-wrap: nowrap;
  }
  .footer.footer--simple .footer__row {
    padding: 70px 0;
  }
  .footer__column {
    width: auto;
    max-width: 30%;
    margin-bottom: 0;
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (min-width: 1300px) {
  .qoute-banner {
    top: -66px;
  }
  .qoute-banner p {
    margin-right: 60px;
  }

  .footer__row {
    padding: 151px 0 85px;
  }
  .footer.footer--simple .footer__row {
    padding: 85px 0;
  }
}

@media (min-width: 1600px) {
  .footer__row {
    padding: 166px 0 100px;
  }
  .footer.footer--simple .footer__row {
    padding: 100px 0;
  }
}


.grecaptcha-badge {
  display: none;
}





/* 404 page */
.page-not-found {
  text-align: center;
}
.page-not-found h1 {
  margin-bottom: 35px;
}





/* Item List */
.items-list li {
  font-size: 1.1em;
  margin-bottom: 5px;
}
.items-list li:last-child {
  margin-bottom: 0;
}
.items-list.items-list--cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 112px;
  margin-left: auto;
  margin-right: auto;
}
.items-list.items-list--cards li {
  width: 51px;
}
.items-list.items-list--cards li:nth-last-child(2) {
  margin-bottom: 0;
}





/* Product List Grid */
.prod-list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 20px;
}

@media (min-width: 600px) {
  .prod-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
  }
}

@media (min-width: 1024px) {
  .prod-list {
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 30px;
    column-gap: 30px;
  }
}



/* CTA Card */
.cta-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-color: var(--color-cerulean);
  color: var(--color-white);
  padding: 35px 20px;
  border-radius: 6px;
  transition: all .3s ease-in-out;
}
.cta-card:hover {
  background-color: var(--color-cerulean-light);
  color: var(--color-white);
}




/* Benefits */
.benefits-list__item {
  margin-bottom: 27px;
}

.benefits-list__item:last-child {
  margin-bottom: 0;
}

.benefit-card {
  text-align: center;
}

.benefit-card p {
  margin-top: 12px;
}

.benefit-card__header {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.benefit-card__header--color-emerald svg {
  fill: var(--color-emerald);
}

.benefit-card__header--color-curious svg {
  fill: var(--color-curious)
}

.benefit-card__header--color-shake svg {
  fill: var(--color-shake)
}

.benefit-card__header--color-indigo {
  fill: var(--color-indigo)
}

.benefit-card__header-inner {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--color-cerulean);
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefit-card svg {
  width: 40px;
  height: 40px;
  fill: var(--color-white);
}

@media (min-width: 1024px) {
  .benefits-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .benefits-list__item {
    width: 47.5%;
    margin-bottom: 32px;
  }

  .benefits-list__item:nth-last-child(2) {
    margin-bottom: 0;
  }
  .benefits-list--9 .benefits-list__item:nth-last-child(2) {
    margin-bottom: 32px;
  }

  .benefit-card {
    text-align: left;
    position: relative;
    padding-left: 84px;
  }

  .benefit-card p {
    margin-top: 15px;
  }

  .benefit-card__header {
    margin-bottom: 0;
    position: absolute;
    top: 0;
    left: 0;
  }
}

@media (min-width: 1300px) {
  .benefits-list__item {
    margin-bottom: 42px;
  }
  .benefits-list--9 .benefits-list__item:nth-last-child(2) {
    margin-bottom: 42px;
  }

  .benefit-card {
    padding-left: 90px;
  }
}

@media (min-width: 1600px) {
  .benefits-list__item {
    margin-bottom: 48px;
  }
  .benefits-list--9 .benefits-list__item:nth-last-child(2) {
    margin-bottom: 48px;
  }

  .benefit-card {
    padding-left: 95px;
  }

  .benefit-card__header-inner {
    width: 70px;
    height: 70px;
  }

  .benefit-card svg {
    width: 48px;
    height: 48px;
  }
}




/* Gallery Slider */
.gallery-card {
  height: 300px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (min-width: 825px) {
  .gallery-card {
    height: 450px;
  }
}

@media (min-width: 1024px) {
  .gallery-card {
    height: 500px;
  }
}

@media (min-width: 1300px) {
  .gallery-card {
    height: 700px;
  }
}





/* ACCORDION */
/* Panel style */
.accordion .a-container .a-panel {
  width: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 0;
  height: auto;
  max-height: 0;
  overflow: hidden;
}

/* Panel style when active */
.accordion .a-container.active .a-panel {
  opacity: 1;
  height: auto;
  max-height: 1500px;
}

.accordion {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}

.a-btn {
  position: relative;
  padding: 20px 20px 20px 75px;
  background-color: var(--color-cerulean);
  color: var(--color-white);
  border-radius: 6px;
  cursor: pointer;
  transition: all .3s ease-in;
}

.a-btn:hover {
  background-color: var(--color-white);
  color: var(--color-text);
}

.a-btn__icon {
  position: absolute;
  top: 11px;
  left: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--color-white);
  transition: all .3s ease-in;
}
.a-btn:hover .a-btn__icon {
  background-color: var(--color-cerulean-light);
}

.a-container {
  margin-bottom: 14px;
}

.a-container:last-child {
  margin-bottom: 0;
}

.a-panel__inner {
  position: relative;
  margin: 10px 0 0;
  padding: 25px 25px 25px 75px;
  border-radius: 6px;
  background-color: var(--color-athens-gray);
}
.a-panel--white .a-panel__inner {
  background-color: var(--color-white);
}

.a-panel__icon {
  position: absolute;
  top: 11px;
  left: 14px;
  display: flex;
  font-size: 1.2em;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--color-cerulean-light);
}

.a-panel__inner p {
  margin-bottom: 16px;
}

.a-panel__inner p:last-child {
  margin-bottom: 0;
}

@media (min-width: 1250px) {
  .a-btn {
    padding: 30px 30px 30px 105px;
  }

  .a-panel__inner {
    padding: 30px 30px 30px 105px;
  }

  .a-btn__icon {
    width: 50px;
    height: 50px;
    top: 19px;
    left: 27px;
  }

  .a-panel__icon {
    width: 50px;
    height: 50px;
    top: 19px;
    left: 27px;
  }
}



/* Grid Seven */
.grid-seven {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 20px;
}

@media (min-width: 600px) {
  .grid-seven {
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
  }
}

@media (min-width: 1024px) {
  .grid-seven {
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 30px;
    column-gap: 30px;
  }
}




/* Small Card */
.small-card__header {
  height: 200px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.small-card__main {
  padding: 40px 30px;
  background-color: var(--color-white);
}
.small-card__main > * {
  margin-bottom: 14px;
}
.small-card__main > *:last-child {
  margin-bottom: 0;
}
.small-card__step {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-cerulean);
    color: var(--color-white);
    font-weight: 700;
    padding: 10px 20px;
}

@media (min-width: 480px) {
  .small-card__header {
    height: 250px;
  }
}

@media (min-width: 1024px) {
  .small-card {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
  }
  .small-card__header {
    height: auto;
    width: 33.33%;
  }
  .small-card__main {
    flex: 1;
    width: 66.66%;
  }
}




/* Float Banner Bottom */
.float-banner {
  position: fixed;
  z-index: 2;
  bottom: -100%;
  left: 0;
  background-color: var(--color-port-gore);;
  padding: 20px 40px;
  text-align: center;
  width: 100%;
  box-shadow: 1px 1px 12px 0 rgb(0 0 0 / 10%);
  transition: all .6s ease-in-out;
}

.float-banner.active {
  bottom: 0;
}

.float-banner p {
  margin-bottom: 16px;
  color: var(--color-white);
}

.float-banner__close {
  width: 34px;
  height: 34px;
  position: absolute;
  top: 5px;
  right: 5px;
  border-radius: 50%;
  background-color: var(--color-port-gore);
  border: 2px solid var(--color-port-gore);
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  padding: 0;
  margin: 0;
  transition: all .2s ease-in-out;
}

.float-banner__close svg {
  fill: var(--color-white);
  width: 22px;
  height: 22px;
  transition: all .2s ease-in-out;
}

.float-banner__close:hover {
  background-color: var(--color-chathams-blue);;
}

.float-banner__close:hover svg {
  fill: var(--color-white);
}



.iw {
  aspect-ratio: 4 / 3;
}
.iw img {
  max-width: 100%;
}



/* GHL Widget */
.ghl-wrapper {
  max-width: 900px;
  margin: 0 auto;
}


/* Edits / Fixes */

strong, b {
  font-weight: 400;
}