*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: inherit
}

html {
    scroll-behavior: smooth
}

body {
    box-sizing: border-box;
    overflow-x: hidden;
    display: initial
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-inline-size: 100%
}

input,
button,
textarea,
select {
    font: inherit;
    letter-spacing: inherit;
    word-spacing: inherit;
    color: currentColor
}

ol,
ul {
    list-style: none
}

html {
    font-size: 62.5%
}

@media only screen and (max-width: 62em) {
    html {
        font-size: 56.25%
    }
}

@media only screen and (max-width: 28.125em) {
    html {
        font-size: 50%
    }
}

body {
    font-family: "Montserrat", sans-serif;
    font-size: 1.6rem;
    line-height: 1.4
}

.heading {
    line-height: 1.2
}

.heading--primary {
    font-size: 3.6rem
}

.heading--secondary {
    font-size: 2.4rem
}

.heading--changing {
    font-size: 3.6rem
}

@media only screen and (max-width: 62em) {
    .heading--changing {
        font-size: 2.4rem
    }
}

.u-container {
    max-width: 120rem;
    margin: 0 auto
}

.u-margin-bottom-sm {
    margin-bottom: 1.6rem
}

.u-margin-bottom-md {
    margin-bottom: 2.4rem
}

.u-margin-bottom-lg {
    margin-bottom: 3.2rem
}

.u-margin-bottom-xl {
    margin-bottom: 4.8rem
}

.u-margin-bottom-2xl {
    margin-bottom: 6.4rem
}

.u-margin-bottom-3xl {
    margin-bottom: 8rem
}

.u-text-white {
    color: #fff
}

.u-text-green {
    color: #37b24d
}

.u-text-center {
    text-align: center
}

.banner {
    font-size: 1.4rem;
    color: #373737;
    text-align: center;
    padding: 1.2rem;
    background-color: #f3f3f3;
    display: none
}

@media only screen and (max-width: 62em) {
    .banner {
        display: block
    }
}

.btn,
.btn:link,
.btn:visited {
    display: block;
    font-weight: 600;
    padding: 1.6rem 3.2rem;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out
}

.btn--primary,
.btn--primary:link,
.btn--primary:visited {
    color: #fff;
    background: #32cd32
}

.btn--primary:hover,
.btn--primary:active {
    background: #2db92d
}

.btn--gradient,
.btn--gradient:link,
.btn--gradient:visited {
    color: #fff;
    background: linear-gradient(#32cd32, #37b24d)
}

.btn--gradient:hover,
.btn--gradient:active {
    background: linear-gradient(#32cd32, #37b24d)
}

.card {
    border-radius: 30px 0 0 0;
    overflow: hidden
}

.card__body {
    padding: 1.6rem;
    background-color: #fff
}

.card__title {
    font-size: 1.8rem
}

.cta {
    display: flex;
    gap: 2.4rem;
    align-items: center;
    justify-content: center
}

@media only screen and (max-width: 50em) {
    .cta {
        flex-direction: column
    }
}

.cta__message {
    text-align: center
}

.cta__message--text {
    display: block;
    font-size: 1.4rem;
    margin: 0.5rem
}

.cta__message--number {
    font-weight: 500;
    font-size: 3.2rem
}

.cta-footer {
    display: none;
    position: sticky;
    bottom: 0;
    text-align: center;
    padding: 1.2rem;
    background-color: #32cd32
}

@media only screen and (max-width: 62em) {
    .cta-footer {
        display: block
    }
}

.cta-footer__link:link,
.cta-footer__link:visited {
    font-weight: 600;
    color: #fff;
    text-decoration: none
}

.form {
    padding: 2.4rem;
    background-color: #1f2c34
}

.form__title {
    font-size: 1.8rem
}

.form__label {
    display: inline-block;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1.2rem
}

.form__input {
    width: 100%;
    padding: 1.2rem;
    border: none;
    outline: none;
    background: #fff;
    color: #373737
}

.form__input:focus {
    box-shadow: 0 0 0 2px inset #32cd32
}

.form__input::-moz-placeholder {
    color: #373737
}

.form__input::placeholder {
    color: #373737
}

.form .btn {
    width: 100%
}

.header {
    padding: 3.2rem 2rem
}

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

@media only screen and (max-width: 28.125em) {
    .header__content {
        flex-direction: column;
        gap: 2.4rem
    }
}

.header__brand-banner {
    display: flex;
    gap: 1.2rem;
    align-items: center
}

.header__brand-banner p {
    font-size: 1.4rem;
    font-style: italic
}

@media only screen and (max-width: 62em) {
    .header__brand-banner p {
        display: none
    }
}

.header__brand,
.header__brand:link,
.header__brand:visited {
    display: inline-flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    text-decoration: none;
    color: #000
}

.header__brand--main {
    display: block;
    font-weight: 700;
    font-size: 3.6rem;
    line-height: 1
}

.header__brand--sub {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 4px
}

.list {
    display: flex;
    flex-direction: column;
    gap: 1.6rem
}

.list--with-icon .list__item {
    display: flex;
    gap: 1rem;
    align-items: center
}

.list--flexed {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap
}

.list--flexed .list__item {
    flex: 0 0 48%
}

@media only screen and (max-width: 28.125em) {
    .list--flexed .list__item {
        flex: 0 0 100%
    }
}

.list__item h3 {
    font-weight: 400;
    font-size: 1.6rem
}

.rating {
    display: flex;
    gap: 1rem;
    font-size: 1.4rem
}

.rating__icon {
    font-size: 1.4rem;
    line-height: 1;
    color: #fcc419
}

@media only screen and (max-width: 62em) {
    .testimonial--hero {
        display: none
    }
}

.grid {
    display: grid;
    gap: 2.4rem
}

.grid--centered {
    align-items: center
}

.grid--2-cols {
    grid-template-columns: repeat(2, 1fr)
}

@media only screen and (max-width: 62em) {
    .grid--2-cols {
        grid-template-columns: 1fr
    }
}

.grid--3-cols {
    grid-template-columns: repeat(3, 1fr)
}

@media only screen and (max-width: 50em) {
    .grid--3-cols {
        grid-template-columns: 1fr
    }
}

.grid--4-cols {
    grid-template-columns: repeat(4, 1fr)
}

@media only screen and (max-width: 62em) {
    .grid--4-cols {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media only screen and (max-width: 37.5em) {
    .grid--4-cols {
        grid-template-columns: 1fr
    }
}

.section {
    padding: 4rem 2rem
}

.section--hero {
    background: linear-gradient(rgba(55, 55, 55, 0.8), rgba(55, 55, 55, 0.8)), url(../../assets/upvc-respray-kent.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: none
}

@media only screen and (max-width: 62em) {
    .section--hero {
        display: block
    }
}

.section--light {
    background: #e3ecf3
}

.section--gray {
    background: #f3f3f3
}

.section--cta {
    background: linear-gradient(rgba(31, 44, 52, 0.9), rgba(31, 44, 52, 0.9)), url(../../assets/bot-fot.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center
}

.phone-number-hidden {
    visibility: hidden
}
.cta__message--number {
  color: #00c853; /* match button green */
  font-weight: 700;
  text-decoration: none;
}
.cta__message--number:hover {
  text-decoration: underline;
}
