/* Hero Section */

.hero-section {
    position: relative;
    padding: 50px 0 0;
}

.hero-section-content {
    position: relative;
    padding-bottom: 30px;
}

.hero-section-content h1,
.hero-section-content h2 {
    color: #FFF;
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-size: 2rem;
    line-height: 2.5rem;
    font-weight: 700;
    letter-spacing: normal;
}

.hero-section-content h3,
.hero-section-content h4,
.hero-section-content h5,
.hero-section-content h6 {
    color: #fff;
}

.hero-section-content p,
.hero-section-content ul {
    color: #FFF;
    font-family: "Roboto", sans-serif;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.8125rem;
    letter-spacing: normal;
}

.hero-section-content p:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.hero-section-form {
    position: relative;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.16);
    padding: 40px;
}

.hero-section-form .sub-heading {
    color: #00BCE4;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.hero-section-form h3 {
    color: #394248;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-size: 2.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: 3.875rem;
    letter-spacing: normal;
    padding: 10px 0 20px;
}

.hero-section-form .form-field {
    margin-bottom: 20px;
}

.hero-section-form .google-recaptcha-text {
    color: #72c267;
    text-align: center;
    background: #ecf7eb;
    padding: 10px 20px;
    border-radius: 50px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.hero-section-form .google-recaptcha-text a {
    color: #00bce4;
}

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

.hero-section-bg::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.70) 26.25%, rgba(0, 0, 0, 0.00) 100%);
}

.hero-section-bg::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
    background: #002437;
    opacity: 0.4;
}

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

.hero-section-wave {
    position: relative;
    bottom: -16px;
    left: 0;
    object-fit: cover;
    z-index: -1;
}

@media (min-width: 1200px) {
    .hero-section {
        min-height: 849px;
        padding: 100px 0;
    }

    .hero-section-content-wrapper {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }

    .hero-section-content {
        width: calc(100% - 646px);
        padding: 50px 121px 100px 0;
    }

    .hero-section-content h1,
    .hero-section-content h2 {
        font-size: 3rem;
        line-height: 3.875rem;
    }

    .hero-section-form {
        width: 646px;
        padding: 50px 80px;
    }

    .hero-section-wave {
        position: absolute;
        bottom: -11px;
        display: none;
    }

    img.gradient-text-wave-top {
        display: none;
    }
}

/* Half Media / Half Text */

.half-media-half-text {
    padding: 20px 22px 50px;
}

.half-media-half-text__media-image {
    border-radius: 20px;
    margin-bottom: 20px;
}

.half-media-half-text__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.half-media-half-text__media-video {
    position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
    border: none;
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
}

.half-media-half-text__media-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.half-media-half-text__media-video:hover {
    border: none;
}

.half-media-half-text__media-video:hover::before {
    background: rgba(0, 0, 0, 0.3);
}

.half-media-half-text__media-video-thumbnail.placeholder {
	max-width: 427px;
	object-fit: contain;
}

.half-media-half-text__media-video i {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 30px;
	color: #FFF;
	background: #00BCE4;
	width: 90px;
	height: 90px;
	border-radius: 50%;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.half-media-half-text__media-video:hover i {
    transform: translate(-50%, -50%) scale(1.2);
}

.half-media-half-text__content {
    padding-bottom: 30px;
}

.half-media-half-text__content h2 {
    color: #414141;
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-size: 2rem;
    line-height: 2.5rem;
    font-weight: 700;
    letter-spacing: normal;
    padding-bottom: 20px;
}

.half-media-half-text__content p {
    color: #414141;
    font-family: "Roboto", sans-serif;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.8125rem;
    letter-spacing: normal;
}

.half-media-half-text__content p:has(+ .half-media-half-text__icons) {
	margin-bottom: 0;
	padding-bottom: 30px;
}

.half-media-half-text__content .btn {
    font-family: "Roboto", sans-serif;
    font-size: 1.125rem;
    letter-spacing: normal;
	border-radius: 99px;
	border: 2px solid #00BCE4;
	background: #FFF;
	color: #00BCE4;
}

.half-media-half-text__content .btn:hover {
	background: #00BCE4;
	color: #FFF;
}

.half-media-half-text__icon-content {
    position: relative;
    margin-bottom: 30px;
}

.half-media-half-text__icon-content h3 {
    color: #414141;
    font-family: "Roboto", sans-serif;
    font-size: 1.625rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.8125rem;
    letter-spacing: normal;
    padding: 0 0 10px;
}

.half-media-half-text__icon-content p {
    color: #414141;
    font-family: "Roboto", sans-serif;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.8125rem;
    letter-spacing: normal;
    padding: 0;
}

.half-media-half-text__icon-image {
	width: 30px;
	height: 30px;
    margin-bottom: 10px;
}

.half-media-half-text__icon-image i {
    font-size: 30px;
    color: #72C267;
}

@media (min-width: 768px) {
    .half-media-half-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 50px 0;
    }

    .half-media-half-text__media {
        width: 80%;
        height: 400px;
        margin-bottom: 30px;
    }

    .half-media-half-text__media-image,
    .half-media-half-text__media-video {
        border-radius: 20px;
        margin-bottom: 0;

    }

    .half-media-half-text__media-video i {
        font-size: 50px;
        width: 120px;
        height: 120px;
    }

    .half-media-half-text__content {
        width: 80%;
        padding-left: 0px;
    }
}

@media (min-width: 1200px) {
    .half-media-half-text {
        padding: 100px 0;
        flex-direction: row;
    }

    .half-media-half-text__media {
        width: 842px;
        height: 600px;
    }

    .half-media-half-text__media-image,
    .half-media-half-text__media-video {
        border-radius: 0px 20px 80px 0px;
        margin-bottom: 0;

    }

    .half-media-half-text__content {
        max-width: 646px;
        margin-left: 134px;
        padding-left: 0;
    }

    .half-media-half-text__content h2 {
        font-size: 3rem;
        line-height: 3.875rem;
    }

    .half-media-half-text__icon {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .half-media-half-text__icon-image {
        position: relative;
        top: 1px;
        margin-bottom: 0;
    }

    .half-media-half-text__icon-content {
        width: calc(100% - 30px);
        margin-left: 16px;
    }
}

/* Tabbed Accordion */

@font-face {
    font-family: 'icomoon-accordion';
    src: url('https://www.caldwellandgregory.com/wp-content/themes/caldwellgregory/assets/icons/icomoon-accordion2/icomoon-accordion.eot?pzfzcw');
    src: url('https://www.caldwellandgregory.com/wp-content/themes/caldwellgregory/assets/icons/icomoon-accordion2/icomoon-accordion.eot?pzfzcw#iefix') format('embedded-opentype'),
        url('https://www.caldwellandgregory.com/wp-content/themes/caldwellgregory/assets/icons/icomoon-accordion2/icomoon-accordion.ttf?pzfzcw') format('truetype'),
        url('https://www.caldwellandgregory.com/wp-content/themes/caldwellgregory/assets/icons/icomoon-accordion2/icomoon-accordion.woff?pzfzcw') format('woff'),
        url('https://www.caldwellandgregory.com/wp-content/themes/caldwellgregory/assets/icons/icomoon-accordion2/icomoon-accordion.svg?pzfzcw#icomoon-accordion') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="icomoon-accordion"],
[class*=" icomoon-accordion"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon-accordion' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icomoon-accordionwashing-machine-v2:before {
  content: "\e900";
}
.icomoon-accordiondryer:before {
  content: "\e901";
}
.icomoon-accordionwashing-machine-v1:before {
  content: "\e902";
}
.icomoon-accordionapprove:before {
  content: "\e903";
}
.icomoon-accordionguarantee:before {
  content: "\e904";
}
.icomoon-accordionpersonalization:before {
  content: "\e905";
}

.tabbed-accordion {
    background: #ECF7EB;
    padding: 50px 0;
}

.tabbed-accordion__content {
    padding-bottom: 30px;
}

.tabbed-accordion__content h2 {
    color: #394248;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-size: 2rem;
    line-height: 2.5rem;
    font-weight: 700;
    letter-spacing: normal;
}

.tabbed-accordion__content p {
    color: #414141;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.8125rem;
    letter-spacing: normal;
    padding: 0;
}

.tabbed-accordions__tabs {
	display: flex;
	flex-direction: column;
	gap: 20px;
	clear: both;
    margin-bottom: 20px;
}

.tabbed-accordions__tab-item {
    position: relative;
	border-radius: 10px 20px 20px 10px;
	background: #FFF;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.16);
	padding: 30px 40px;
    width: 100%;
	display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.tabbed-accordions__tab-item:hover,
.tabbed-accordions__tab-item.active {
	background: #72C267;
	border-radius: 20px;
}

.tabbed-accordions__tab-item::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 100%;
    border-radius: 10px 0 0 10px;
    background: #72C267;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.16);
    transition: all 0.3s ease-in-out;
}

.tabbed-accordions__tab-item:hover::before,
.tabbed-accordions__tab-item.active::before {
    width: 20px;
    background: #394248;
}

.tabbed-accordion__tab-heading {
    color: #394248;
    font-family: "Roboto", sans-serif;
    font-size: 1.625rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.8125rem;
    letter-spacing: normal;
    padding: 0;
}

.tabbed-accordions__tab-item:hover .tabbed-accordion__tab-heading,
.tabbed-accordions__tab-item.active .tabbed-accordion__tab-heading {
    color: #FFF;
}

.tabbed-accordion__tab-description {
    display: none;
    color: #FFF;
    font-family: "Roboto", sans-serif;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.8125rem;
    letter-spacing: normal;
}

.tabbed-accordions__tab-item.active .tabbed-accordion__tab-description {
    display: block;
}

.tabbed-accordions__tab-icon {
    width: 30px;
    height: 30px;
}

.tabbed-accordions__tab-icon i {
    font-size: 30px;
    color: #000;
}

.tabbed-accordions__tab-item:hover .tabbed-accordions__tab-icon i,
.tabbed-accordions__tab-item.active .tabbed-accordions__tab-icon i {
    color: #FFF;
}

.tabbed-accordions__content-item {
    display: none;
}

.tabbed-accordions__content-item.active {
    display: block;
}

.tabbed-accordions__content-heading {
    color: #414141;
    font-family: "Roboto", sans-serif;
    font-size: 2.125rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding-bottom: 20px;
}

.tabbed-accordions__content-description {
    color: #414141;
    font-family: "Roboto", sans-serif;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.8125rem;
}

@media (min-width: 768px) {
    .tabbed-accordions__tabs {
        flex-flow: row wrap;
        align-items: stretch;
        justify-content: center;
        gap: 20px;
    }
}

@media (min-width: 1200px) {
    .tabbed-accordion {
        padding: 100px 0;
    }

    .tabbed-accordion__content {
        padding-bottom: 50px;
    }

    .tabbed-accordions__wrapper {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .tabbed-accordions__tabs {
        width: 602px;
        margin-bottom: 0;
    }

    .tabbed-accordions__content {
        width: calc(100% - 602px);
        padding-left: 60px;
    }

    .tabbed-accordion__content h2 {
        font-size: 3rem;
        line-height: 3.875rem;
    }

    .tabbed-accordions__content-heading {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 16px;
    }

    .tabbed-accordions__content-heading i {
        font-size: 40px;
    }

    .tabbed-accordions__tab-item {
        flex-direction: row;
        align-items: center;
    }
}

@media (min-width: 1600px) {
    .tabbed-accordions__content {
        padding-left: 120px;
    }
}

/* Full Width Image with Gradient Text */

.full-width-image-with-gradient-text {
    position: relative;
    padding: 100px 0;
}

.gradient-text-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
}

.gradient-text-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
}

.full-width-image-with-gradient-text__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.full-width-image-with-gradient-text__bg::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 20%, rgba(0, 0, 0, 0.00) 95%);
}

.full-width-image-with-gradient-text__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.full-width-image-with-gradient-text__content {
    position: relative;
    width: 100%;
    max-width: 646px;
    z-index: 2;
}

.full-width-image-with-gradient-text__content h2 {
    color: #FFF;
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-size: 2rem;
    line-height: 2.5rem;
    font-weight: 700;
    letter-spacing: normal;
    padding-bottom: 20px;
}

.full-width-image-with-gradient-text__content h3,
.full-width-image-with-gradient-text__content h4,
.full-width-image-with-gradient-text__content h5,
.full-width-image-with-gradient-text__content h6 {
    color: #fff;
}

.full-width-image-with-gradient-text__content p {
    color: #FFF;
    font-family: "Roboto", sans-serif;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.8125rem;
    letter-spacing: normal;
}

.full-width-image-with-gradient-text__content p:has(+ .btn) {
    padding-bottom: 30px;
}

.full-width-image-with-gradient-text__content .btn {
    font-family: "Roboto", sans-serif;
    font-size: 1.125rem;
    letter-spacing: normal;
	border-radius: 99px;
	border: 2px solid #00BCE4;
	background: #FFF;
	color: #00BCE4;
}

.full-width-image-with-gradient-text__content .btn:hover {
	background: #00BCE4;
	color: #FFF;
}


.full-width-image-with-gradient-text__content ul{
    color: #fff;
}

@media (min-width: 768px) {
    .full-width-image-with-gradient-text {
        padding: 150px 0;
    }
}

@media (min-width: 1200px) {
    .full-width-image-with-gradient-text {
        min-height: 815px;
        padding: 209px 0 202px;
    }

    .full-width-image-with-gradient-text__content h2 {
        font-size: 3rem;
        line-height: 3.875rem;
    }
}

/* Testimonials Slider */

.testimonials-section {
    position: relative;
    padding: 60px 0;
    background: #F5F5F5;
}

.testimonials-wrapper {
    position: relative;
    padding: 0 22px;
}

.testimonials-header {
    text-align: center;
}

.testimonials-header h2 {
    margin-bottom: 5px;
}

.testimonials-slider .slick-track {
    display: flex !important;
}

.testimonials-slider .slick-slide {
    height: inherit !important;
    padding: 0 16px;
}

.testimonials-slider .slick-slide>div {
    height: 100%;
}

.testimonials-slider .slick-list {
    margin: 0 -16px;
    padding: 38px 0 75px;
}

.testimonials-slider .slick-slide {
    padding: 0 16px;
}

.testimonials-slider-item {
    height: 100%;
}

.testimonials-slider-item-column {
    width: 100%;
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
    border-radius: 8px;
    padding: 30px 30px 92px;
    position: relative;
    height: 100%;
}

.testimonials-slider-item-column::after {
    content: "";
    width: 100%;
    height: 8px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #72C267 0%, #45A538 101.9%);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.testimonials-quote {
    position: absolute;
    top: -20px;
    left: 30px;
    color: #72C267;
    font-size: 41px;
}

.testimonials-slider-item-column p {
    font-size: 16px;
    letter-spacing: .025em;
    padding: 0;
}

.testimonials-user {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 30px 38px;
    width: 100%;
}

.circle-user {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(160, 160, 160, .15);
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    color: #5B676F;
    font-size: 24px;
}

.circle-user img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    font-family: 'object-fit: cover;';
    border-radius: 50%;
}

.testimonials-user-content {
    width: calc(100% - 50px);
    padding-left: 12px;
}

.testimonials-user-content h5 {
    padding: 0 0 2px;
    color: #4E8ABE;
    letter-spacing: .05em;
}

.testimonials-user-content p {
    padding: 0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.testimonials-slider .slick-prev,
.testimonials-slider .slick-next {
    width: 50px;
    height: 50px;
    border: 1px solid #C9CED3;
    border-radius: 8px;
    transition: all .4s ease-in-out;
    color: #72C267;
    background: #fff;
}

.testimonials-slider .slick-prev:hover,
.testimonials-slider .slick-next:hover {
    background: #72C267;
    color: #fff;
    border-color: #72C267;
}

.testimonials-slider .slick-prev {
    margin-left: -50px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.testimonials-slider .slick-next {
    margin-right: -50px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: none;
}

.testimonials-slider .slick-prev::before,
.testimonials-slider .slick-next::before {
    content: "";
    font-family: 'icomoon';
    position: absolute;
    top: 50%;
    left: 50%;
    line-height: unset;
    width: unset;
    height: auto;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #72C267;
}

.testimonials-slider .slick-prev::before {
    content: "\e913";
}

.testimonials-slider .slick-next::before {
    content: "\e91c";
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.testimonials-slider .slick-prev:hover::before,
.testimonials-slider .slick-next:hover::before {
    color: #fff;
}

@media (min-width:768px) {
    .testimonials-section {
        padding: 70px 0;
    }

    .testimonials-wrapper {
        padding: 0 22px;
    }

    .testimonials-header {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .testimonials-header h2 {
        padding: 0;
        margin: 0;
    }

    .testimonials-slider .slick-list {
        padding: 44px 0 80px;
    }

    .testimonials-slider-item-column {
        border-radius: 8px;
        padding: 40px 40px 94px;
    }

    .testimonials-slider-item-column p {
        font-size: 17px;
    }

    .testimonials-slider .slick-next {
        right: 0;
        margin-right: 0;
    }

    .testimonials-slider .slick-prev {
        margin-left: 0;
        left: unset;
        right: 50px;
    }

    .testimonials-slider .slick-prev::before,
    .testimonials-slider .slick-next::before {
        font-size: 18px;
    }

    .testimonials-user-content p {
        font-size: 13px;
    }

    .testimonials-user-content h5 {
        font-size: 17px;
    }
}

@media (min-width:1200px) {
    .testimonials-section {
        padding: 120px 0;
    }

    .testimonials-wrapper {
        padding: 0 0;
    }

    .testimonials-slider .slick-list {
        margin: 0 0;
        padding: 46px 0 85px;
        margin-left: -96px;
    }

    .testimonials-slider .slick-slide {
        padding: 0 16px;
        opacity: .5;
        transition: all .4s ease-in-out;
    }

    .testimonials-slider .slick-slide.slick-active {
        opacity: 1;
    }

    .testimonials-banner {
        width: 43.7%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        overflow: hidden;
        border-radius: 0 8px 100px 0;
    }

    .testimonials-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        -o-object-fit: cover;
        font-family: 'object-fit: cover;';
    }

    .testimonials-right-panel {
        float: right;
        width: 56.3%;
        position: relative;
        z-index: 9;
        padding: 0 0;
    }

    .testimonials-slider-item-column {
        width: 420px;
        padding: 40px 50px 132px;
    }

    .testimonials-header {
        width: 100%;
        max-width: 806px;
        padding-left: 20px;
        padding-bottom: 0;
        padding-right: 16px;
        align-items: flex-end;
    }

    .testimonials-header h2 {
        max-width: 340px;
    }

    .testimonials-quote {
        font-size: 46px;
        top: -26px;
        left: 50px;
    }

    .testimonials-slider-item-column p {
        font-size: 19px;
    }

    .testimonials-user {
        padding: 0 50px 48px;
    }

    .circle-user {
        width: 74px;
        height: 74px;
        font-size: 34px;
    }

    .testimonials-user-content {
        width: calc(100% - 74px);
        padding-left: 15px;
    }

    .testimonials-user-content p {
        font-size: 14px;
    }

    .testimonials-user-content h5 {
        font-size: 20px;
    }

    .testimonials-slider .slick-prev,
    .testimonials-slider .slick-next {
        width: 56px;
        height: 56px;
    }

    .testimonials-slider .slick-prev {
        right: calc(56px + 16px);
    }

    .testimonials-slider .slick-next {
        right: 16px;
    }

    .testimonials-slider .slick-prev::before,
    .testimonials-slider .slick-next::before {
        font-size: 20px;
    }

    .testimonials-right-panel .tooltip {
        position: absolute;
        right: 178px;
        bottom: 11px;
    }
}

@media (min-width:1366px) {
    .testimonials-header {
        padding-left: 60px;
    }
}

@media (min-width:1800px) {
    .testimonials-slider .slick-next {
        right: 278px;
    }

    .testimonials-slider .slick-prev {
        right: calc(56px + 278px);
    }

    .testimonials-right-panel .tooltip {
        right: 440px;
    }
}

@media (min-width:2000px) {
    .testimonials-slider .slick-next {
        right: 335px;
    }

    .testimonials-slider .slick-prev {
        right: calc(56px + 335px);
    }

    .testimonials-right-panel .tooltip {
        right: 500px;
    }
}

@media (min-width:2400px) {
    .testimonials-slider .slick-next {
        right: 560px;
    }

    .testimonials-slider .slick-prev {
        right: calc(56px + 560px);
    }

    .testimonials-right-panel .tooltip {
        right: 722px;
    }
}

/* Contained CTA with Image + Text */

.contained-cta-with-image-text .container {
    position: relative;
}

.contained-cta-with-image-text::before {
	content: '';
	position: relative;
	top: 0;
	left: 0;
    display: block;
	width: 100%;
	height: 20px;
	background: #72C267;
}

.contained-cta-with-image-text::after {
	content: '';
	position: relative;
	top: 0;
	left: 0;
    display: block;
	width: 100%;
	height: 20px;
    background: #72C267;
}

.contained-cta-with-image-text-bg {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.contained-cta-with-image-text-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contained-cta-with-image-text__content {
	padding: 50px 0;
}

.contained-cta-with-image-text__content h2 {
    color: #414141;
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-size: 2rem;
    line-height: 2.5rem;
    font-weight: 700;
    letter-spacing: normal;
    padding-bottom: 20px;
}

.contained-cta-with-image-text__content p {
    color: #414141;
    font-family: "Roboto", sans-serif;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.8125rem;
    letter-spacing: normal;
}

.contained-cta-with-image-text__content p:has(+ .btn) {
    padding-bottom: 20px;
}

@media (min-width: 1200px) {
    .contained-cta-with-image-text {
        position: relative;
        padding-top: 120px;
    }

    .contained-cta-with-image-text::before {
        height: 120px;
        position: absolute;
        z-index: 2;
    }

    .contained-cta-with-image-text .container {
        z-index: 3;
    }

    .contained-cta-with-image-text__content {
        position: relative;
        top: -60px;
        right: 0;
        max-width: 646px;
        border-radius: 20px;
        background: #FFF;
        box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.16);
        padding: 50px 85px 70px;
        float: right;
    }

    .contained-cta-with-image-text__content h2 {
        font-size: 3rem;
        line-height: 3.875rem;
    }

    .contained-cta-with-image-text-bg {
        height: calc(100% - 120px);
        position: absolute;
        z-index: 0;
        top: 120px;
    }

    .page-template-page-landing-page .contained-cta-with-image-text {
        padding-top: 0;
    }

    .page-template-page-landing-page .contained-cta-with-image-text::before {
        content: none;
    }

    .page-template-page-landing-page .contained-cta-with-image-text-bg {
        top: 0;
        height: 100%;
    }
}

.image-content-cards {
    padding-top: 50px;
    padding-bottom: 50px;
}

.image-content-cards .__cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.image-content-cards .__cards .__card img {
    height: 200px;
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.__cards_row {
    width: 100%;
}

@media (min-width: 768px) {
    .image-content-cards .__cards {
        flex-direction: row;
    }
}
@media (min-width: 1200px) {
    .image-content-cards {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

.image-content-cards + .image-content-cards {
    padding-top: 0;
}
