/*======================================
Theme Name: Divi Child
Theme URI: https://divicake.com/
Description: Smart. Flexible. Beautiful. Divi is the most powerful theme in our collection.
Version: 4.14.1
Author: Elegant Themes
Author URI: http://www.elegantthemes.com
Template: Divi
======================================*/


/* You can add your own CSS styles here. Use !important to overwrite styles if needed. */
:root {
    --theme-color1: #235850;
    --theme-color1-rgb: 35, 88, 80;
    --theme-color2: #73c9bc;
    --theme-color2-rgb: 115, 201, 188;
    --theme-color3: #edede5;
    --theme-color3-rgb: 237, 237, 229;
    --bs-black: #000000;
    --bs-black-rgb:0, 0, 0;
    --bs-white: #ffffff;
    --bs-white-rgb: 255, 255, 255;
    --transition: all 800ms ease;
    --font-awesome-free: "Font Awesome 6 Free";
    --font-awesome-brands: "Font Awesome 6 Brands";
    --color-gradient-1: linear-gradient(90deg, var(--theme-color2) 0%, var(--theme-color1) 100%);
    --color-gradient-2: linear-gradient(90deg, var(--theme-color1) 0%, var(--theme-color2) 100%);
}
@-moz-document url-prefix() {
    * {
        scrollbar-width: thin; 
        scrollbar-color: var(--theme-color1) #efefef; 
    }
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 0px;
    background-color: #efefef;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--theme-color1);
    border-radius: 0px;
}
::-webkit-scrollbar-thumb {
    background: var(--theme-color1);
    border-radius: 10px;
}
::-moz-selection {
    background: var(--theme-color1);
    color: var(--theme-color2);
}
::selection {
    background: var(--theme-color1);
    color: var(--theme-color2);
}

::-webkit-input-placeholder {
    color: inherit !important;
    opacity: 1;
}
:-ms-input-placeholder {
    color: inherit !important;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit !important;
    opacity: 1;
}

::placeholder {
    color: inherit !important;
    opacity: 1;
}

body {
    overflow-y: auto;
    overflow-x: hidden;
    accent-color: var(--theme-color1);
    /* word-break: break-word; */
}

div#page-container {
    overflow-y: visible;
    overflow-x: hidden;
}
header .et_pb_blurb_content {
    display: flex;
    align-items: center;
}

body:not(.et-fb) #et-boc .et-l #dd-section {
    z-index: 999999 !important;
}

#wpadminbar {
    z-index: 9999999 !important;
}

.et_pb_row {
    width: 90%;
}

footer .et_pb_column .et_pb_widget {
    width: 100% !important;
    margin-right: 0;
    margin-bottom: 0 !important;
}

.wpcf7-spinner {
    position: absolute;
}

.wpa-test-msg {
    display: block;
    width: 100%;
    float: left;
}
.contact-form-sec form .et_pb_column {
    margin-bottom: 15px !important;
}
.equal-img, .equal-img * {
    height: 100%;
    display: flex;
    object-fit: cover;
}
/* --list-style-- */

.list-style {
    & ul {
        padding: 0;
        & li {
            list-style: none;
            &:before {
                content: "\f5bb";
                font-family: var(--font-awesome-free);
                font-weight: 900;
                margin-right: 10px;
            }
        }
    }
}
/* --list-style-close-- */
/* --main-title-- */
.main-title {
    & h5 {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        position: relative;
        margin-bottom: 15px;
        &:after {
            content: "";
            background-image: url(/wp-content/uploads/2025/05/title-icon.png);
            display: block;
            padding: 10px;
            background-size: contain;
            background-repeat: no-repeat;
        }      
    }
    & h2 {
        & .last-word {
            position: relative;
            color: var(--theme-color1);
        }        
    }
    &.et_pb_bg_layout_dark {
    }
}

/* --main-title-close-- */

/*--back-to-top--*/
.et_pb_scroll_top.et-pb-icon {
    --size: clamp(2.5rem, 2.1711rem + 1.0526vw, 3.125rem);
    bottom: 15px;
    right: 15px;
    text-decoration: none;
    z-index: 999;
    width: var(--size);
    height: var(--size);
    font-size: calc(var(--testimonial-size) * 0.36);
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
    color: var(--theme-color2);
    background-color: var(--theme-color1);
    border-radius: 0;
    &:before {
        content: "\f102";
        font-family: var(--font-awesome-free);
        font-weight: 900;
    }
    &:after {
        content: "";
        position: absolute;
        inset: 0;
        background-color: var(--theme-color1);
        border-radius: 0%;
        opacity: 0;
        z-index: -2;
        -webkit-animation-duration: 0.7s;
        animation-duration: 0.7s;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
        animation-name: shadow-blink;
        -webkit-animation-name: shadow-blink;
        animation-timing-function: ease-out;
        -webkit-animation-timing-function: ease-out;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
    }
    &:hover {
        background-color: var(--theme-color3);
    }
}

@-webkit-keyframes shadow-blink {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        transform: scale(1.7);
        -webkit-transform: scale(1.7);
        -ms-transform: scale(1.7);
        -o-transform: scale(1.7)
    }
}

@keyframes shadow-blink {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        transform: scale(1.7);
        -webkit-transform: scale(1.7);
        -ms-transform: scale(1.7);
        -o-transform: scale(1.7)
    }
}
/*--back-to-top-close--*/

/*--btn-design--*/
.et_pb_button {
    --padding: 10px 25px;
    --after-size: 50%;
    position: relative !important;
    padding: var(--padding) !important;
    transition: var(--transition) !important;
    z-index: 2;
    color: var(--bs-white) !important;
    font-size: clamp(0.875rem, 0.8092rem + 0.2105vw, 1rem);
    font-weight: 600;
    text-transform: capitalize;
    border: 0px solid var(--theme-color1) !important;
    overflow: hidden;
    background-color: var(--theme-color1) !important;
    border-radius: 0 !important;
    &:after {
        content: "";
        position: absolute;
        opacity: 1 !important;
        margin: 0 !important;
        z-index: -1;
        display: block !important;
        inset: 0;
        clip-path: circle(0% at 50% 50%);
        transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
        background: var(--theme-color2);
    }
    &:hover {
        color: var(--theme-color3) !important;
        &:after {
            clip-path: circle(100% at 50% 50%);
            transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
        }
    }
    &.sub_btn {
        padding: 0 !important;
        text-align: center;
        display: inline-block;
        float: left;
        & .wpcf7-submit {
            padding: var(--padding) !important;
            background: transparent !important;
            font-size: inherit;
            color: inherit !important;
            border: inherit;
            cursor: pointer;
            z-index: 99;
            position: relative;
            font-weight: inherit;
        }
        &:hover {
            /* color: var(--theme-color1) !important; */
        }
    }
    &.et_pb_bg_layout_dark {
        background-color: var(--theme-color2) !important;
        &:after {
            background-color: rgba(var(--bs-white-rgb), 0.2);
        }
    }
}
 @keyframes mask_animation {
    from {
      -webkit-mask-position: 0 0;
      mask-position: 0 0;
    }
  
    to {
      -webkit-mask-position: 100% 0;
      mask-position: 100% 0;
    }
  }
  
  @keyframes mask_animation_2 {
    from {
      -webkit-mask-position: 100% 0;
      mask-position: 100% 0;
    }
  
    to {
      -webkit-mask-position: 0 0;
      mask-position: 0 0;
    }
  }
a.et_pb_button.white-btn {
    color:var(--bs-black) !important;
}
a.et_pb_button.white-btn:after {
    filter:brightness(0) invert(1);
}
a.et_pb_button.white-btn:hover {
    color:var(--bs-white) !important;
}
/*--btn-design-close--*/


/*******  | HEADER CODE |  *******/
.et_pb_slide_overlay_container {
    background: linear-gradient(180deg, #000000a8, #00000024, #000000d1);
}
/* --header-- */

.main-header {
    --bg-opacity: 0.8;
    background-color: rgba(var(--theme-color3-rgb), var(--bg-opacity)) !important;
}
.has_et_pb_sticky {
    & .main-header {
        --bg-opacity: 1;    
        animation: 800ms ease-in-out 0s normal none 1 running fadeInDown;
        box-shadow: 0 0 12px #00000038;
    }
}
    
@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-200px);
        -ms-transform: translateY(-200px);
        transform: translateY(-200px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}


/* --header-close-- */

/*******  | HOMEPAGE CODE |  *******/
/*--home-slider-sec--*/
.home-slider-sec {
    --slide-description: 800px;
    --controllers-size: clamp(1.375rem, 1.1118rem + 0.8421vw, 1.875rem);
    & .et_pb_slides {
        & .et_pb_slide{
            & .et_pb_slide_overlay_container {
/*                 background: linear-gradient(180deg, #0000004f, #0000007a, #000000); */
                     background: linear-gradient(180deg, #00000000, #00000047, #000000);
            }
            &:before {
                content: "";
                position: absolute;
                background: var(--theme-color2);
                background: linear-gradient(111deg, rgba(var(--theme-color1-rgb), 0.5), rgba(var(--theme-color1-rgb), 0.1), transparent);
                inset: 0;
            }   
        }     
        & .et_pb_container {
            & .et_pb_slide_title {
                position: relative;
                display: inline-block;
                border-radius: 0;
                margin-bottom: 10px;
/*                 font-size: clamp(2.1875rem, 0.0493rem + 6.8421vw, 6.25rem) !important; */
                 font-size: clamp(1.5rem, 3.5vw + 1rem, 4.375rem) !important;
                background: linear-gradient(0deg, rgba(var(--bs-white-rgb), 0.8), var(--bs-white));
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }
        }
        & .et_pb_slide_description {
            position: relative;
            text-shadow: none !important;
            max-width: var(--slide-description);
            padding: 0;
            & .et_pb_slide_content {
                & h2 {
                    font-size: clamp(1.875rem, 0.8882rem + 3.1579vw, 3.75rem);
                }
            }
        }
    }
    & .et-pb-slider-arrows {
        position: absolute;
        bottom: var(--controllers-size);
        left: auto;
        right: var(--controllers-size);
        display: flex;
        flex-direction: column;        
        gap: calc(var(--controllers-size) * 0.3333);

        & a {
            left: auto !important;
            opacity: 1;
            right: auto !important;
            margin: 0 0px;
            bottom: 0px;
            position: relative;
            color: var(--theme-color1);
            border-radius: calc(var(--controllers-size) * 1.6667);
            opacity: 1;
            width: calc(var(--controllers-size) * 1.6667);
            height: calc(var(--controllers-size) * 1.6667);
            background-color: var(--bs-white);
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: var(--controllers-size);

            &.et-pb-arrow-prev:before {
                content: "\23";
            }
            &.et-pb-arrow-next:before {
                content: "\24";
            }
            &:hover {
                background-color: var(--theme-color1);
                color: var(--bs-white);
            }
        }
    }    
    & .et-pb-controllers {
        bottom: auto;
        top: 55%;
        left: 3%;
        right: auto;
        text-align: center;
        transform: translate(0, -50%);
        display: flex;
        flex-direction: column;
        gap: calc(var(--controllers-size) * 0.3333);
        width: auto;
        & a {
            height: var(--controllers-size);
            width: calc(var(--controllers-size) * 0.1667);
            opacity: 1;
            background-color: var(--bs-white);
            margin-right: 0;
            &.et-pb-active-control {
                background-color: var(--theme-color1);
            }
        }
    }
}
.home-slider-sec .et-pb-active-slide .et_pb_slide_description{
animation-name: none;
}

/*--home-slider-sec-close--*/


/*--home-about-sec--*/
.home-about-sec {
    counter-reset: section;
    --icon-size: clamp(3.75rem, 2.7632rem + 3.1579vw, 5.625rem);
    & .et_pb_gallery {
        & .et-pb-controllers {
            display: none !important;
        }
    }
    & .et_pb_blurb {
        &:before {
            content: "";
            top: auto;
            bottom: 0;
            width: 100%;
            height: 0;
            left: 0;
            position: absolute;
            -webkit-transition: all .6s ease;
            transition: all .6s ease;
            background-size: 101% 101%;
            background-color: var(--theme-color1);
        }
        & .et_pb_main_blurb_image {
            width: var(--icon-size);
            text-align: center;
            margin-bottom: 0;
            vertical-align: middle;
        }
        & .et_pb_image_wrap {
            &:before {
                counter-increment: section;
                content: "0" counter(section) ;
                font-size: calc(var(--icon-size) * 0.5); /* = 45px */
                color: var(--theme-color1);
                transition: var(--transition);
            }
            & .et-pb-icon {
                display: none;
            }
        }
        &.active {
            &:before {
                height: 100%;
                top: 0;
                bottom: auto;
            }
            & .et_pb_image_wrap {
                &:before {
                    color: var(--bs-white);
                }
            }
        }
    }
}
/*--home-about-sec-close--*/
/* --home-services-sec-- */
.home-services-sec {
    & .et_pb_row {
        justify-content: center;        
        & .et_pb_column_empty {
            display: none;
        }  
    }
    & .et_pb_column:has(.et_pb_blurb) {      
        &:before {
            background-color: var(--theme-color2);
            left: 0;
            top: 100%;
            position: absolute;
            content: "";
            height: 100%;
            width: 100%;
            -webkit-transition: all .6s ease;
            transition: all .6s ease;
            background-size: 101% 101%;
        }
        &:hover {
            &:before {
                top: 0;
            }
        }
    }
    
}
/* --home-services-sec-close-- */
/* step form css */
.steps-form .automotive-box .gfield_radio{
    display:grid !important;
    grid-template-columns:repeat(2,1fr);
}
.steps-form .automotive-box .gfield_radio .gchoice {
    position: relative;
    width: 100%;
    border: 1px solid #cfcfcf;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    padding: 22px;
	gap:0px;
}
.steps-form .automotive-box .gfield_radio .gchoice label {
    margin: 0;
    letter-spacing: 1px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    padding-bottom: 10px;
}
.steps-form .automotive-box .gfield_radio .gchoice input{
    position:absolute;
    inset:0;
    opacity:0;
}
.steps-form .automotive-box .gfield_radio .gchoice input:checked + label{
    border-color:var(--theme-color1);
}
.steps-form .like-to-do {
    text-align: center;
    order: 2;
}
.steps-form .like-to-do legend.gfield_label{
    background:var(--bs-white);
    margin:0;
}
.steps-form .like-to-do .gchoice {
    position: relative;
    display: block;
    padding: 0px !important;
    border: none !important;
}
.steps-form .like-to-do .gchoice label{
    border:1px solid #cfcfcf;
    padding:10px;
    border-radius:10px;
    cursor:pointer;
	margin:0;
	font-size:14px !important;
}
.steps-form .like-to-do .gchoice input{
    position:absolute;
    inset:0;
    text-align:center;
    margin:auto;  
    opacity:0;
}
.steps-form .like-to-do .gchoice input:checked + label{
    background:var(--theme-color1);
    color:var(--bs-white);
}
.vehicle-checkbox .ginput_container .gfield_checkbox {
    display:grid ;
    grid-template-columns:repeat(3,1fr);
}
.vehicle-checkbox .ginput_container  .gchoice{
    display: block;
    position:relative;
}
.vehicle-checkbox .ginput_container  .gchoice label{
    border:1px solid #cfcfcf;
    padding:12px;
     width:100%;
    border-radius:10px;
    cursor:pointer;
	margin:0;
}
.vehicle-checkbox .ginput_container  .gchoice input{
    position:absolute;
    inset:0;
    margin:auto;
    opacity:0;
}
.vehicle-checkbox .ginput_container  .gchoice input:checked + label{
    border-color:var(--theme-color1);
    color:var(--theme-color1);
}
.other-option-field input{
    border: 1px solid #cfcfcf !important;
    outline:none !important;
}
.second-steps-form .gfield input[type="text"], .second-steps-form .gfield input[type="number"] {
    border-color: #cfcfcf!important;
    border-radius: 10px !important;
    padding: 24px 18px !important;
    outline: none !important;
}
.steps-form .automotive-box .gfield_radio .gchoice .main-img img {
    width: 30px !important;
}
.steps-form .automotive-box .gfield_radio .gchoice.active {
    background: #f9fafb;
    border: 1px solid var(--theme-color1);
}
.gform_confirmation_message {
    color: var(--bs-black);
    font-weight: 400;
    text-align: center;
}
/* 2 June Css */
.pum-container {
    border: none !important;
    padding: 60px 50px !important;
    border-radius: 20px !important;
}
.pum-container .gform_heading h2 {
    font-size: 30px !important;
    font-weight: 500;
    padding-bottom: 24px;
} 
.pum-container button.pum-close.popmake-close {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    right: 36px !important;
    top: 30px !important;
    color: var(--bs-black) !important;
    font-size: 44px !important;
}
.steps-form .auto-description p {
    font-weight: 400;
    font-size: 14px;
    color: #434343;
    line-height: 1.4em;
}
/* .steps-form .auto-description {
	display: none;
} */
.gform-page-footer input.gform_next_button, .gform-page-footer input.gform_previous_button, .gform-page-footer input.gform_button {
    background: var(--theme-color1) !important;
    padding: 14px 30px !important;
    border-radius: 0px !important;
}
.gform-page-footer input.gform_previous_button {
    background: transparent !important;
}
.gform_next_button:focus, .gform_previous_button:focus, .gform-page-footer input.gform_button {
  outline: none !important;
  box-shadow: none !important;
  border-color: transparent !important;
}
.financial-form .gform-body.gform_body {
    border-top: 1px solid #f1f1f1;
    padding-top: 40px;
}
.financial-form .gf_page_steps {
    margin-bottom: 40px !important;
}
.financial-form .gf_page_steps span.gf_step_number:after {
    background: var(--theme-color1) !important;
    border-color: var(--theme-color1) !important;
}
.vehicle-checkbox .ginput_container {
    padding-top: 14px;
}
.second-steps-form .gfield input[type="text"], .second-steps-form .gfield input[type="number"] {
    border-color: #cfcfcf!important;
    border-radius: 10px !important;
    padding: 24px 18px !important;
    outline: none !important;
}
.credit-rating .gfield_radio .gchoice {
    position: relative;
    display: block !important;
}
.credit-rating .gfield_radio .gchoice input {
    position: absolute;
    inset: 0;
    text-align: center;
    margin: auto;
    opacity: 0;
    width: 100% !important;
}
.credit-rating .gfield_radio .gchoice label{
    border: 1px solid #cfcfcf;
    padding: 16px 16px;
    border-radius: 10px;
    cursor: pointer;
    margin: 0;
}
.credit-rating .gfield_radio {
    display: grid !important;
    grid-template-columns: repeat(2,1fr);
}
.credit-rating .gfield_radio  .gchoice input:checked + label {
    border:1px solid var(--theme-color1);
}
/* .steps-form .automotive-box .gfield_radio .gchoice {
    border: 1px solid #cfcfcf;
    border-radius: 10px;
} */
.steps-form .automotive-box .gfield_radio .gchoice .auto-description {
    order: 0;
}
.steps-form .automotive-box .like-to-do .gfield_radio {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 30px;
}
.steps-form .automotive-box .gfield_radio .gchoice .main-img {
    order: -1;
}
.final-step .ginput_container .gfield_checkbox {
    grid-template-columns: repeat(1, 1fr);
}
.top-border:before {
    content: '';
    width: 100%;
    height: 1px;
    background: #235850 !important;
    display: block;
    position: absolute;
    top: -30px;
}
.top-border{
    position:relative;
    padding: 26px 0px !important;
}
.top-border legend.gfield_label.gform-field-label {
    top: 20px !important;
    position: relative;
}
.final-step .ginput_container .gchoice {
    border:1px solid #cfcfcf;
    padding: 24px 20px 24px 70px;
    border-radius: 10px;
}
.final-step .ginput_container .gchoice .last-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin:auto;
    left: 18px;
}
.final-step .ginput_container .gchoice label {
    border: none;
    padding: 0px;
    font-size: 16px;
    font-weight: 500;
}
.final-step .ginput_container .gchoice .last-icon img {
    width: 40px;
    background: #f8f8f8;
    padding: 8px;
    border-radius: 5px;
}
.final-step .ginput_container .gchoice .auto-description p {
    font-weight: 300;
    font-size: 13px;
    color: #3f3f3f;
    padding-top: 4px;
}
/* 2 June Css Close */
/* step form css close*/
/*******  | FOOTER CODE |  *******/



/*******  | MEDIA QUERY CODE |  *******/


@media screen and (width >= 981px) {
    
    .reverse-row {
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
        &>.et_pb_column {
            margin-left: auto !important;
            margin-right: 0 !important;
            &.et-last-child {
                margin-left: 0 !important;
            }
        }
    }  

}
@media screen and (width <= 980px) {
.pum-container {
	padding: 50px 30px !important;
}
}

@media screen and (width <= 767px) {
    
    .recaptcha iframe {
        transform: scale(0.77);
        -webkit-transform: scale(0.77);
        transform-origin: 0 0;
        -webkit-transform-origin: 0 0;
    }
    .main-title br {
        display: none;
    }
.pum-container {
	padding: 50px 20px !important;
}
.vehicle-checkbox .ginput_container .gfield_checkbox {
    grid-template-columns: repeat(1,1fr);
}
.steps-form .automotive-box .gfield_radio {
    grid-template-columns: repeat(1,1fr);
}
.credit-rating .gfield_radio {
    grid-template-columns: repeat(1,1fr);
}
.top-border {
    padding: 0px 0px !important;
}
.top-border:before {
    display:none;
}
.pum-container .gform_heading h2 {
    font-size: 22px !important;
    padding-bottom: 20px;
}
.top-border legend.gfield_label.gform-field-label {
    top: 0px !important;
}
}