/* PPC Styles */

.bg-white {
    background: #fff;
}

.bg-grey {
    background: #f7f7f7;
}

.bg-blue {
    background: #19bae0;
}

.bg-blue * {
	color: #fff !important;
}

.bg-blue li::before {
    background-color: #fff;
}

.bg-white + .bg-white,
.bg-grey + .bg-grey,
.bg-blue + .bg-blue {
    padding-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
}

h2 {
    font-size: 24px;
}

.masthead {
    display: none;
}

@media (min-width: 768px) {
    h2 {
        font-size: 32px;
    }
}

@media (min-width: 1025px) {
    h2 {
        font-size: 42px;
    }

    .page-header:has(.simple-banner) + .page-main {
        margin-top: 140px;
    }
}

/* Hero Section */

.hero-section {
    position: relative;
}

.hero-section__content {
    position: relative;
    z-index: 1;
}

.hero-section__content h2,
.hero-section__content p,
.hero-section__content a {
    color: #fff;
}

.hero-section__content .btn-primary {
    background-color: #00b3dd;
}

.hero-section__content .btn-primary:hover {
    background-color: #0098bc;
}

.hero-section__background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
    z-index: -1;
}

.hero-section__background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(97deg,rgb(140, 198, 63) 0%,rgba(140, 198, 63) 25%,rgba(140, 198, 63,.65) 70%,rgba(140, 198, 63,0) 100%);
}

.hero-section__background img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Product Slider */

.product-slider__item {
    text-align: center;
    padding: 15px;
}

.product-slider__item-image {
    position: relative;
    display: block;
    width: 100%;
    height: 200px;
    margin-bottom: 15px;
}

.product-slider__item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-slider__item-title {
    font-size: 16px;
    margin: 0;
}

.product-slider__overview-id {
    font-size: 16px;
    color: #195ea9;
}

.product-overview__price {
    font-size: 16px;
}

/* WYSIWYG */

.wysiwyg p:last-child {
    margin-bottom: 0;
}

/* Quote Form */

.request-quote-form {
    position: relative;
    background: #8cc63f;
}

.request-quote-form__content {
    margin-bottom: 25px;
}

.request-quote-form__content h2 {
    color: #fff;
}

.request-quote-form__content p {
    color: #fff;
}

.request-quote-form__form .wpcf7-form {
	width: 100%;
	max-width: 820px;
	margin: 0 auto;
}

.request-quote-form__form .wpcf7-form label {
    font-family: 'montserratregular', sans-serif;
    color: #fff;
    margin-bottom: 10px;
}

.request-quote-form__form .wpcf7-form [class*="col-"],
.request-quote-form__form .wpcf7-form [data-name="address"] {
    display: block;
	margin-bottom: 25px;
}

.request-quote-form__form .wpcf7-form .wpcf7-list-item label {
	display: flex;
	align-items: center;
}

.request-quote-form__form .wpcf7-form .wpcf7-list-item label .icheckbox_minimal {
    top: 0;
}

.request-quote-form__form .wpcf7-form .wpcf7-list-item label .wpcf7-list-item-label {
    font-size: 16px;
	line-height: 1;
    color: #fff;
    margin-left: 10px;
}

.request-quote-form__form .wpcf7-form .recaptcha-info,
.request-quote-form__form .wpcf7-form .recaptcha-info a {
    color: #fff;
}

.request-quote-form__form .wpcf7-form .wpcf7-submit {
    display: inline-block;
    width: max-content;
    margin: 0;
    padding: 10px 45px;
}

.request-quote-form__form .wpcf7-form .wpcf7-spinner {
    margin: 0 0 0 10px;
}

.request-quote-form__form .wpcf7-form .wpcf7-not-valid-tip {
	font-size: 14px;
}

.request-quote-form__form .wpcf7-form .wpcf7-response-output {
	display: block;
	margin-top: 25px;
}

.request-quote-form__form .wpcf7-form .wpcf7-form.invalid .wpcf7-response-output {
    color: #e92828;
}

.request-quote-form__form .wpcf7-form .wpcf7-form.sent .wpcf7-response-output {
    color: #fff;
}

/* Icon Cards */

.icon-cards__icons {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
}

.icon-cards__icon {
	width: 400px;
    text-align: center;
	background: #f7f7f7;
	padding: 30px 10px;
}

.icon-cards__icon .icon {
    display: inline-flex;
    margin-bottom: 15px;
}

.icon-cards__icon .title {
    font-size: 18px;
    font-family: 'montserratbold';
    color: #1b2125;
}

.icon-cards__icon:hover {
    opacity: 0.6;
}

@media(min-width: 768px) {
    .icon-cards__icon {
        width: calc(50% - 20px);
    }
}

@media(min-width: 1200px) {
    .icon-cards__icon {
        width: calc(25% - 20px);
    }
}

/* Image Cards */

.image-cards__images {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
}

.image-cards__image {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	background: #fff;
	box-shadow: 0px 0px 20px #00000029;
}

.image-cards__image .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 25px;
}

.image-cards__image .title {
    color: #00B3DD;
}

.image-cards__image .description {
    margin: 0;
}

.image-cards__image .cta {
    margin-top: auto;
	padding: 0 25px 25px;
}

.image-cards__image .image {
	width: 100%;
	height: 250px;
}

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

.image-cards__button {
    text-align: center;
    margin-top: 50px;
}

.image-cards__button .btn-primary {
    background: #00B3DD;
}

@media(min-width: 768px) {
    .image-cards__image {
        width: calc(50% - 20px);
    }
}

@media(min-width: 1200px) {
    .image-cards__image {
        width: calc(33% - 20px);
    }
}

/* Testimonial Slider */

.testimonial-slider__wrapper .slick-track {
    display: flex;
    align-items: stretch;
}

.testimonial-slider__wrapper .slick-slide {
    height: auto !important;
    flex: 1;
}

.testimonial-slider__wrapper .slick-dots {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
    margin-bottom: 0;
}

.testimonial-slider__wrapper .slick-slide > div {
	height: 100%;
    padding: 20px;
}

.testimonial-slider__item {
    height: 100%;
	background: #fff;
	box-shadow: 0px 0px 20px #00000029;
	padding: 20px;
}

.testimonial-slider__item * {
    color: #505a61 !important;
}

.testimonial-slider__item-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.testimonial-slider__item-content p {
    margin: 0;
}

.testimonial-slider__item-details {
    margin-top: 20px;
}

.testimonial-slider__item-name {
    font-family: 'montserratbold', sans-serif;
}

.testimonial-slider__item-company {
    font-size: 16px;
}

@media (min-width: 1200px) {
    .testimonial-slider__item {
        padding: 40px;
    }
}

/* Half Image Half Text */

.half-image-half-text {
    width: 100%;
    position: relative;
}

.half-image-half-text__wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.half-image-half-text__image {
    width: 100%;
    height: 300px;
}

.half-image-half-text__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.half-image-half-text__content {
    padding: 45px 24px;
}

.half-image-half-text__content p {
    margin-top: 0;
}

.half-image-half-text__content p:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .half-image-half-text__image {
        height: 300px;
    }

    .half-image-half-text__content {
        padding: 70px 50px;
    }
}

@media (min-width: 1200px) {
    .half-image-half-text__wrapper {
        flex-direction: row;
        align-items: stretch;
    }
    
    .half-image-half-text__image {
        width: 50%;
        height: auto;
    }
    
    .half-image-half-text__content {
        width: 50%;
        padding: 100px 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}
