/* =Import Required styles
========================================================================================*/

:root {
    /* Site global colours */
    --primary: #0178ac;
    --primary-hover: #016b8c;
    /* Primary color */
    --secondary: #FDA629;
    --secondary-hover: #fda629;

    --body-color: #0a1823;

    /* Body text color */
    --black: #000000;
    /* Black color */
    --white: #ffffff;


    /* container (wrap) */
    --wrap: 1390px;
    --wrapspace: 20px;
}

html {
    scroll-behavior: smooth;
}

/* =Reset CSS

/* =Box Sizing 
========================================================================================*/

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
}

*:before,
*:after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
}


/* =Deafult Tag & General Classes
========================================================================================*/

html,
body {
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -ms-font-smoothing: antialiased;
    font-smoothing: antialiased;
    /* Fix for webkit rendering */
    -webkit-text-size-adjust: 100%;
}

img {
    vertical-align: top;
    border: 0;
}

a,
button {
    transition: all 350ms ease-in-out;
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {
    a:active {
        background-color: transparent;
    }
}

strong {
    font-weight: bold;
}

ul {
    padding: 0;
    margin: 0;
}

ul li {
    line-height: 24px;
}

.wrap:after {
    content: "";
    display: table;
    clear: both;
}

:focus {
    outline: none !important;
}

.wrap {
    max-width: calc(var(--wrap) + (var(--wrapspace) * 2));
    width: 100%;
    margin: 0 auto;
    padding-left: var(--wrapspace);
    padding-right: var(--wrapspace);
}


/* =Common button CSS
========================================================================================*/

.button {
    background-color: #fff;
    border: 2px solid var(--primary);
    text-transform: uppercase;
    font-size: 16px;
    color: var(--primary) !important;
    line-height: normal;
    padding: 12px 18px;
    text-align: center;
    transition: all 350ms ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border-radius: 10px;
}

.button:hover {
    background-color: var(--primary);
    text-decoration: none;
    color: var(--white) !important;
}

.button.btn-small {
    font-size: 12px;
    padding: 5px 32px 5px 33px;
}

.button.btn-white {
    border-color: var(--white);
}

.button.btn-white:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white) !important;
}

.section-row {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 50px;
}


.section-title h2:last-child {
    margin-bottom: 0;
}

.section-title.center {
    display: table;
    margin: 0 auto 50px !important;
    text-align: center;
}

.center {
    text-align: center;
}

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

figure {
    margin: 0;
}

/* 
button,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
textarea,
select,
input[type="submit"],
input[type="button"] {
    font-size: 100%;
    margin: 0;
    vertical-align: baseline;
    vertical-align: middle;
}

button,
input[type="text"],
input[type="number"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
textarea,
input[type="submit"],
input[type="button"] {
    -webkit-appearance: none;
    border-radius: 4px;
}

button,
input {
    line-height: normal;
}

input[type="text"],
input[type="number"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
textarea,
select {
    padding: 18px 20px 17px 20px !important;
    height: 60px !important;
    font-size: 16px !important;
    line-height: normal !important;
    font-family: var(--font-secondary) !important;
    font-weight: 400 !important;
    border: 1px solid #D4D6D8 !important;
    background: var(--gray-bg-color) !important;
    transition: border-color 200ms ease-in, color 200ms ease-in, background-color 200ms ease-in;
    width: 100%;
    box-shadow: none !important;
    border-radius: 4px;
}

input[type="text"]::placeholder,
input[type="password"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
input[type="number"]::placeholder,
input[type="search"]::placeholder,
input[type="url"]::placeholder,
textarea::placeholder,
select::placeholder {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

input[type="text"].error,
input[type="password"].error,
input[type="email"].error,
input[type="number"].error,
input[type="tel"].error,
input[type="search"].error,
input[type="url"].error,
textarea.error,
select.error {
    border-color: var(--error-color) !important;
    background: var(--white) !important;
}


input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
input[type="url"]:focus,
textarea:focus,
select:focus {
    color: var(--primary) !important;
    background: var(--white) !important;
    border-color: var(--primary) !important;
}

input::-moz-focus-inner,
button::-moz-focus-inner {
    border: 0;
    padding: 0;
} */

/* input[type="button"],
input[type="submit"],
button {
    cursor: pointer;
    width: auto;
    overflow: visible;
    background-color: transparent !important;
    border: 2px solid var(--secondary-hover) !important;
    text-transform: uppercase !important;
    font-size: 13px !important;
    color: var(--secondary-hover) !important;
    line-height: 1.731 !important;
    padding: 12px 34px 10px 34px !important;
    text-align: center;
    transition: all 350ms ease-in-out !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary) !important;
    box-shadow: none !important;
    letter-spacing: 0.114em !important;
    font-weight: 700 !important;
    border-radius: 0 !important;
} */
/* 
input[type="button"]:hover,
input[type="submit"]:hover,
button:hover {
    background-color: var(--primary) !important;
    text-decoration: none;
    color: #fff !important;
}

::-webkit-input-placeholder {
    opacity: 1;
}

::-moz-placeholder {
    opacity: 1;
}

:-ms-input-placeholder {
    opacity: 1;
}

:-moz-placeholder {
    opacity: 1;
}

.gfield_error input,
.gfield_error select,
.gfield_error textarea {
    border-color: #ff0000 !important;
    background: #fff !important;
}


textarea {
    width: 100%;
    height: 190px;
    overflow: auto;
    resize: vertical;
    padding: 37px 30px 37px 56px;
}

select {
    padding: 4px 30px 4px 60px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    position: relative;
    z-index: 1;
    background: none;
    line-height: 1.25;
    border-radius: 5px;
    color: #333333;
}

select::-ms-expand {
    display: none;
}

.custom-select {
    display: block;
    margin: 0;
    position: relative;
    background: #fff;
}

.custom-select:after {
    content: '\f107';
    position: absolute;
    color: #999999;
    font-family: "FontAwesome";
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
} */


.overlay {
    position: absolute;
    top: 0;
    z-index: 999;
    overflow: hidden;
}

.overlay::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

::selection {
    background-color: var(--primary);
    color: #fff;
}


/* img hover */

.img-hover {
    overflow: hidden;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.img-hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.img-hover:hover::before {
    opacity: 1;
    visibility: visible;
}

.img-hover:hover img {
    transform: scale(1.03);
}

.img-hover img {
    transition: transform 0.3s ease-in-out;
}


/* =Accordian CSS
========================================================================================*/

.accordion-databox .accordion-row:first-child {
    border-top: 0;
}

.accordion-databox .accordion-row {
    margin-bottom: 20px;
}

.accordion-databox .accordion-row h5 {
    cursor: pointer;
    margin: 0;
    background: #F1EEEC;
    color: var(--primary);
    position: relative;
    padding: 16px 75px 16px 16px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 20px;
}

.accordion-icon-left {
    width: 40px;
    min-width: 40px;
    display: inline-block;
}

.accordion-icon-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accordion-databox .accordion-row:last-child {
    margin-bottom: 0;
}

.accordion-databox .accordion-row h5:after {
    content: '\f067';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    transition: all 0.3s ease-in-out;
    font-family: FontAwesome;
    font-weight: 400;
    border: 2px solid var(--primary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
}

.accordion-databox .accordion-row h5.open {
    background-color: #F1EEEC;
}

.accordion-databox .accordion-row h5.open:after {
    content: '\f068';
}

.accordion-data {
    display: none;
    padding: 10px 15px 15px;
    background-color: #F1EEEC;
}

.accordion-data p {
    padding: 0;
    margin: 10px 0 0;
}

.accordion-data p:first-child {
    margin-top: 0;
}

/* Home Design Banner Section */

.hero-banner-main .gform-theme--foundation .gform_fields {
    --gf-form-gap-x: 16px;
    --gf-form-gap-y: 20px;
}

.hero-banner-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
    gap: 50px;
    align-items: flex-start;
}

.hero-banner-info {
    padding-top: 30px;
}

.hero-banner-info h3 {
    line-height: 1.3;
}

.hero-banner-info p:last-child {
    margin-bottom: 0;
}

.hero-banner-main .gform_heading {
    display: none;
}

.banner-form {
    padding: 30px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--primary);
}

.gform_wrapper.gravity-theme #field_submit,
.gform_wrapper.gravity-theme .gform_footer {
    justify-content: center;
    padding-bottom: 0 !important;
}

.gform_wrapper.gravity-theme #field_submit input,
.gform_wrapper.gravity-theme .gform_footer input {
    margin-bottom: 0 !important;
}

.section-title ul {
    text-align: left;
    column-count: 2;
}

.section-title ul li {
    position: relative;
    z-index: 1;
    padding-left: 32px;
    margin-bottom: 15px;
}

.section-title ul li:last-child {
    margin-bottom: 0;
}

.section-title ul li::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary);
    z-index: -1;
    pointer-events: none;
}

.section-title strong {
    font-weight: 500;
    color: #333333;
}

.home-design-services-section .portfolio-sec .portfolio-col ul {
    text-align: left;
}

.home-design-services-section .portfolio-sec .portfolio-col ul li {
    position: relative;
    z-index: 1;
    padding-left: 32px;
    margin-bottom: 10px;
}

.home-design-services-section .portfolio-sec .portfolio-col ul li:last-child {
    margin-bottom: 0;
}

.home-design-services-section .portfolio-sec .portfolio-col ul li::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary);
    z-index: -1;
    pointer-events: none;
}

.section-title:last-child {
    margin-bottom: 0 !important;
}

/* Home Design Services Section */

.five-star-section .section-title h2 {
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 10px 0;
}

.five-star-logo {
    max-width: 220px;
}

.five-star-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonial Section */

.testimonial-main-sec .wrap {
    max-width: 1570px
}

.testimonial-section {
    background-color: #f7f7f7;
}

.testimonial-section .section-title h2 {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.testimonial-item {
    background: #fff;
    padding: 40px 20px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .08);
}

.testimonial-carousel .owl-item {
    padding: 15px;
}

.testimonial-carousel .owl-stage {
    display: flex;
}

.testimonial-carousel .owl-item.active {
    max-height: max-content;
}

.client-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.client-info {
    margin-bottom: 15px;
}

.client-info p {
    margin-bottom: 0;
    font-weight: 500;
    text-transform: uppercase;
}

.testimonial-slider-row {
    padding: 0 50px;
    position: relative
}

.testimonial-swiper {
    position: static;
    padding: 20px;
}

.testimonial-swiper .swiper-slide {
    height: auto;
    display: flex;
    flex-direction: column
}

/* Swiper */

.swiper-pagination {
    display: none;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary);
    transition: all 350ms ease-in-out;
    margin-top: 0;
    transform: translateY(-50%);
    width: 44px;
    height: auto;
    aspect-ratio: 1;
    background-color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--primary);
    color: #fff
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 22px
}


.swiper-button-next {
    right: 0
}

.swiper-button-prev {
    left: 0
}

.swiper-button-next,
.swiper-button-prev {
    background-color: var(--primary);
    color: var(--white);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--secondary);
    color: var(--white);
}

/* Swiper */

.star {
    display: inline-block;
    width: 110px;
    height: 22px;
    position: relative;
    overflow: hidden;
}

.star::before,
.star::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/star.svg);
    background-repeat: repeat-x;
    background-size: 22px;
}

.star::before {
    width: calc((100% / 5) * var(--rating));
    z-index: 1;
}

.star::after {
    filter: grayscale(1);
    opacity: 1;
}

/* Testimonial Section */


/* Services Section */

.services-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.services-row .services-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    width: calc(25% - 23px);
    box-shadow: 0 4px 60px rgba(0, 0, 0, .08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.services-row .services-item:hover img {
    animation: icon-bounce .8s 1;
}

@keyframes icon-bounce {

    0%,
    20%,
    50%,
    80%,
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    40% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }

    60% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px)
    }
}

.services-info .service-heading:last-child {
    padding-bottom: 0;
}

.services-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.services-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Services Section */

/* Container layout */
.banner_form_wrapper .gf_page_steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    border-bottom: 0 !important;
    overflow: hidden;
    margin-bottom: 0;
    padding-bottom: 0;
}

.banner_form_wrapper .gf_step {
    height: auto !important;
    margin: 0 !important;
    position: relative;
    opacity: 1 !important;
    text-align: center;
}

.banner_form_wrapper .gf_step::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100vw;
    height: 2px;
    background: #d9d9d9 !important;
    z-index: 0;
}

.banner_form_wrapper .gf_step .gf_step_number {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    transition: all 0.3s ease;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    background-color: #cfd3d9 !important;
}


.banner_form_wrapper .gf_step_label {
    display: block !important;
    text-align: center;
    position: relative;
    margin-top: 30px;
    padding-left: 0 !important;
}


.gform_wrapper.gravity-theme .gf_step_active .gf_step_number {
    background-color: var(--primary) !important;
    color: #fff !important;
    border-color: var(--primary) !important;
}

p.gform_description:empty {
    display: none;
}

.gform_wrapper.gravity-theme .gf_step_completed .gf_step_number {
    background-color: #cfd3d9 !important;
    color: #fff !important;
}

.banner_form_wrapper .gf_step_completed .gf_step_number::after,
.banner_form_wrapper .gf_step_completed .gf_step_number::before {
    display: none !important;
}

.banner_form_wrapper .gf_step.gf_step_completed::before {
    background: var(--primary) !important;
}

.banner_form_wrapper .gf_step.gf_step_completed .gf_step_number {
    background-color: var(--primary) !important;
    color: #fff !important;
    border-color: var(--primary) !important;
}

.banner_form_wrapper .gform_page_footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px !important;
    padding-bottom: 0 !important;
    gap: 20px;
}

.banner_form_wrapper .gform_page_footer .gform_previous_button {
    display: none;
}

.page-template-template-flexible-page .gform_wrapper.gravity-theme .gfield_required {
    font-size: 24px !important;
    vertical-align: bottom !important;
    padding-inline-start: 2px;
}

.gform_heading .gform_required_legend {
    display: none !important;
}

.banner_form_wrapper .gform_page_footer input {
    margin: 0 !important;
}

.banner_form_wrapper .ginput_left {
    width: 100% !important;
    flex: 1 0 auto !important;
}

.gform_wrapper.gravity-theme .gsection {
    padding-right: 0 !important;
}

.page-template-template-flexible-page #main-header,
.page-template-template-flexible-page #main-footer {
    display: none;
}

.page-template-template-flexible-page img {
    box-shadow: none;
    border: 0;
}

.custom-header {
    padding: 25px 0px;
}

/* 
section.section-row:nth-child(even) {
    background-color: #f7f7f7;
} */

.custom-footer {
    border-top: 2px solid var(--primary);
    padding: 60px 0;
}

.custom-footer .custom-nav-row {
    flex-direction: column;
}

.custom-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.custom-nav-row.logo-only {
    justify-content: center;
}

.custom-nav-row .custom-logo-link {
    max-width: 180px;
    width: 100%;
    display: flex;
}

.menubox .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.menubox .menu li a {
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

.menubox .menu li a:hover {
    color: var(--secondary);
}

.menubox .menu li a:focus {
    text-decoration: none;
}

.nav-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    height: auto;
    background-color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    z-index: 9999;
    transform: translate(-50%, -50%);
    margin: 0 auto;
    padding: 50px 30px 30px;
    max-width: 600px;
    display: none;
    text-align: center;
}

.nav-modal-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.nav-modal-body {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.nav-modal-stay {
    background-color: var(--primary);
    border: 2px solid var(--primary);
    color: #fff !important;
    padding: 12px 18px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    outline: none;
    box-shadow: none;
    font-weight: 600;
    border-radius: 10px;
}

.nav-modal-stay:hover {
    background-color: transparent !important;
    border-color: var(--primary) !important;
    color: var(--primary) !important;
}

.nav-modal-close {
    position: absolute;
    left: auto;
    top: 20px;
    right: 20px;
    cursor: pointer;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-modal-close:after,
.nav-modal-close:before {
    content: "";
    height: 20px;
    width: 20px;
    border-top: 1px solid #000;
    position: absolute;
    right: -8px;
    transform: rotate(-45deg);
    transition: all 0.3s ease-in-out;
}

.nav-modal-close:before {
    right: 6px;
    transform: rotate(45deg);
}

.nav-modal-close:hover {
    opacity: 0.3;
}

.overlay-active {
    position: relative;
    top: 0;
    z-index: 1;
    overflow: hidden;
}

.overlay-active::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    z-index: 999;
    pointer-events: none;
    backdrop-filter: blur(5px);
}


.footer-form-sec {
    max-width: 1100px;
    margin: 0 auto 30px;
}

.footer-form-sec .section-title {
    text-align: center;
}

.footer-form {
    max-width: 800px;
    margin: 0 auto;
}

.footer-form .gform-footer {
    justify-content: center;
}

/* Thank You Section */

.thank-you-page-banner .hero-banner-info {
    padding-top: 0;
    text-align: center;
}

/* Image  Gallery Sldier*/

.slider-main-sec {
    padding-top: 0;
}

.slider-container {
    padding: 0 60px;
    position: relative;
}

.image-swiper {
    position: static;
}

.image-slider-main-sec .wrap+.image-slider-main-sec,
.five-star-section .wrap+.testimonial-main-sec {
    margin-top: 50px;
}

.image-slider-main-sec .wrap {
    max-width: 1570px;
}

.image-swiper .swiper-wrapper {
    align-items: center;
}

.image-item {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 160px;
    margin: 0 auto;
}

.image-item img {
    width: auto;
    height: auto;
    object-fit: cover;
}

/* CTA Section*/
.cta-section {
    background-color: var(--primary);
    text-align: center;
}

.cta-section :is(h1, h2, h3, h4, h5, h6, p, span) {
    color: #fff;
}

.cta-section .cta-button {
    margin-top: 20px;
}

.cta-section .cta-button .btn {
    padding: 12px 24px;
    background-color: var(--primary);
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-section .cta-button .btn:hover {
    background-color: var(--secondary);
}

/* CTA Section*/

.dark-bg {
    color: #fff;
    background-repeat: no-repeat;
    background-size: cover;
}

.dark-bg .section-title :is(h1, h2, h3, h4, h5, h6, p, span) {
    color: inherit;
}

/* Container & layout */
.section-row.two-column-wysiwyg {
    padding: 40px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    color: #333;
    /* Default text color */
    font-family: Arial, sans-serif;
}

.section-row.two-column-wysiwyg .wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.two-col-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.two-col-content p:last-child {
    margin-bottom: 0;
}


.two-col-content,
.two-col-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

/* Columns */
.left-col,
.right-col {
    flex: 1 0 calc(50% - 25px);
}

/* Headings */
.left-col h1,
.right-col h1,
.left-col h2,
.right-col h2,
.left-col h3,
.right-col h3,
.left-col h4,
.right-col h4,
.left-col h5,
.right-col h5,
.left-col h6,
.right-col h6 {
    margin: 1em 0 0.5em 0;
    font-weight: 700;
    line-height: 1.2;
}

.left-col h1:first-child,
.right-col h1:first-child,
.left-col h2:first-child,
.right-col h2:first-child,
.left-col h3:first-child,
.right-col h3:first-child,
.left-col h4:first-child,
.right-col h4:first-child,
.left-col h5:first-child,
.right-col h5:first-child,
.left-col h6:first-child,
.right-col h6:first-child {
    margin-top: 0;
}

.left-col h1,
.right-col h1 {
    font-size: 2.5rem;
}

.left-col h2,
.right-col h2 {
    font-size: 2rem;
}

.left-col h3,
.right-col h3 {
    font-size: 1.75rem;
}

/* Paragraphs */
.left-col p,
.right-col p {
    margin: 0 0 1.25em 0;
    line-height: 1.6;   
}

/* Links */
.left-col a,
.right-col a {
    color: var(--primary);
    transition: all 0.3s ease-in-out;
}

.left-col a:hover,
.right-col a:hover {
    color: var(--secondary);
    text-decoration: none;
}

blockquote {
    padding: 20px;
    background-color: rgba(1, 120, 172, .08);
}

/* Spans (inline text styling) */
.left-col span,
.right-col span {
    font-weight: 600;
}

/* Lists */

.left-col ul,
.right-col ul {
    list-style-type: inherit;
}

.left-col ol,
.right-col ol {
    list-style-type: auto;
}

.left-col ul,
.right-col ul,
.left-col ol,
.right-col ol {
    margin: 0 0 1.25em 1.5em;
    padding: 0; 
    line-height: 1.5;
}

.left-col ul li,
.right-col ul li,
.left-col ol li,
.right-col ol li {
    margin-bottom: 0.5em;
}

/* Nested lists */
.left-col ul ul,
.right-col ul ul,
.left-col ol ol,
.right-col ol ol {
    margin-left: 1.5em;
}

/* Images */
.left-col img,
.right-col img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.two-col-content .col {
    flex: 1 0 calc(50% - 25px);
}

.image-col,
.video-col {
    border-radius: 10px;
    overflow: hidden;
}

.video-col video {
    width: 100%;
    height: auto;
    display: block;
}

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

.two-col-content.align-center {
    align-items: center;
}

.two-col-content.align-start {
    align-items: flex-start;
}