/*======================================
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: #112D37;
    --theme-color1-rgb: 17, 45, 55;
    --theme-color2: #FF7426;
    --theme-color2-rgb: 255, 116, 38;
    --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;
        display: grid;
        gap: 5px;
        & li {
            list-style: none;
            padding-left: 23px;
            line-height: 1.3;
            &:before {
                content: "\f00c";
                font-family: var(--font-awesome-free);
                font-weight: 900;
                margin-right: 10px;
                position: absolute;
                left: 0;
            }
        }
    }
}
/* --list-style-close-- */
/* --main-title-- */
.main-title {
    & h5 {
        margin-bottom: 0;   
        padding-bottom: 0;
    }
    & h2 {
        padding-bottom: 0;
    }
    &.et_pb_bg_layout_dark {
    }
}

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

/*--back-to-top--*/
.et_pb_scroll_top.et-pb-icon {
    --space: clamp(0.3125rem, -0.0164rem + 1.0526vw, 0.9375rem);
    --size: clamp(2.5rem, 2.1711rem + 1.0526vw, 3.125rem);
    height: var(--size);
    width: var(--size);
    bottom: 15px;
    right: var(--space);
    text-decoration: none;
    z-index: 999;
    border-radius: var(--size);
    background: var(--bs-white);
    transition: var(--transition);
    text-transform: uppercase;
    border: 2px solid var(--theme-color2);
    font-size: calc(var(--size) * 0.6);
    color: var(--bs-white);
    &:before {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 9;
    }
    &:after{
        inset: 0;
        content: "";
        position: absolute;
        transition: var(--transition);        
        transform: scale(0.8);
        border-radius: var(--size);
        background: var(--theme-color2);
    }
    &:hover {
        &:after{
            transform: scale(1);
        }
    }
}
/*--back-to-top-close--*/
/*--btn-design--*/
.et_pb_button {
    --btn-border-radius: 00px;
    --padding: clamp(0.625rem, 0.4514rem + 0.5556vw, 0.9375rem) clamp(1.5625rem, 1.0417rem + 1.6667vw, 2.5rem);
    position: relative !important;
    padding: var(--padding) !important;
    transition: var(--transition) !important;
    z-index: 1;
    color: var(--bs-white) !important;
    font-size: clamp(0.875rem, 0.8092rem + 0.2105vw, 1rem) !important;
    font-weight: 700;
    text-transform: uppercase;
    border: 0px solid var(--theme-color2) !important;
    overflow: hidden;
    background-color: var(--theme-color2) !important;
    border-radius: var(--btn-border-radius) !important;
	width:fit-content;
    line-height: 1.3 !important;
    display: inline-flex !important;
    &:before,
    &:after {
        content: "";
        position: absolute;
        background-color: var(--theme-color1);
        transition: var(--transition) !important;
        opacity: 1 !important;
        margin: auto !important;
        z-index: -1;
        display: block !important;
        top: 0% !important;
        left: 0% !important;
        width: 100%;
        height: 100%;
        border-radius: var(--btn-border-radius) !important;
    }
    &:hover {
        &:before {
            transform: rotateX(90deg);
        }
        &:after {
            transform: rotateY(90deg);
        }
    }
    &.sub_btn {
        padding: 0 !important;
        text-align: center;
        & .wpcf7-submit {
            padding: var(--padding) !important;
            background: transparent !important;
            font-size: inherit;
            text-transform:uppercase;
            color: inherit !important;
            border: inherit;
            cursor: pointer;
            z-index: 99;
            position: relative;
            font-weight: inherit;
            width: 100%;
        }
        &:hover {
            color: var(--bs-white) !important;
        }
    }
}

.et_pb_button .et_pb_bg_layout_dark {
    --theme-color1: var(--theme-color2);
}
/*--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 {
    & .et_pb_slider {
        & .et_pb_slider_container_inner {
            display: flex;
            width: 100%;
            vertical-align: middle;
            align-items: center;
            justify-content: space-between;
            flex-direction: row-reverse;
            min-height: 100%;
        }
        & .et_pb_slide {
            -webkit-animation: cloudMove 120s linear 0s infinite;
            animation: cloudMove 120s linear 0s infinite;
            background-attachment: fixed;
			&:before {
				/* content: "";
				inset: 0;
				background-color: rgba(255, 255, 255, 0.6);
				position: absolute; */
			}
        }
        & .et_pb_slide_description {
            text-shadow: none !important;
            & .et_pb_slide_title {
                & span {
                    color: var(--theme-color2);
                }
            }
        }
    }
    & .et_pb_slide_image {
        background-image: url(/wp-content/uploads/2025/06/slider-bg-circle.webp);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        top: auto;
        margin: auto !important;
        display: block !important;
        & img {            
            -webkit-animation: movers 1s infinite  alternate !important;
            -moz-animation: movers 1s infinite  alternate !important;
            -o-animation: movers 1s infinite  alternate !important;
            -webkit-animation: movers 1s infinite  alternate !important;
            animation: movers 1s infinite  alternate !important;
            aspect-ratio: 1;
            object-fit: contain;
        }
    }
    & .et-pb-controllers {
        --controller-size: 30px;
        & a {            
            width: var(--controller-size);
            height: var(--controller-size);
            background-color: transparent !important;
            text-indent: 0;
            font-size: 0;
            opacity: 1;
            color: var(--theme-color1);
            &:after {
                content: "\f1b0";
                font-family: var(--font-awesome-free);
                font-weight: 900;
                font-size: 24px;
            }
            &.et-pb-active-control {
                color: var(--theme-color3);
            }
        }
    }
}

@-webkit-keyframes mover {
    0% { 
        transform: translateY(0);
    }
    100% { 
        transform: translateY(-10px); 
    }
}
@-webkit-keyframes movers {
    0% { transform: translateX(0); }
    100% { transform: translateX(-10px); }
}

@keyframes cloudMove {
    0% {
        background-position: -1920px 100%;
    }

    100% {
        background-position: 0 100%;
    }
}

@-moz-keyframes cloudMove {
    0% {
        background-position: -1920px 100%;
    }

    100% {
        background-position: 0 100%;
    }
}
@-o-keyframes cloudMove {
    0% {
        background-position: -1920px 100%;
    }

    100% {
        background-position: 0 100%;
    }
}
@-webkit-keyframes cloudMove {
    0% {
        background-position: -1920px 100%;
    }

    100% {
        background-position: 0 100%;
    }
}
/* --home-slider-sec-close-- */


/*--home-about-sec--*/
.home-about-sec {

}
/*--home-about-sec-close--*/
/*--home-contact-sec--*/
.home-contact-sec>.et_pb_row {
    background: rgba(var(--theme-color1-rgb), 0.05);
}
.home-contact-sec {
    & .wpcf7-form {
        & label {
            margin-bottom: 5px;
            display: block;
            font-weight: 600;
        }
        & .et_pb_column {
            margin-bottom: 10px;
        }
        & .wpcf7-form-control:not(input[type="radio" i], input[type="checkbox" i], .wpcf7-submit, .wpcf7-recaptcha) {
            width: 100% !important;
            padding: clamp(0.625rem, 0.4605rem + 0.5263vw, 0.9375rem);
            background-color: var(--bs-white);
            border: 0px solid #dfe5e8;
            font-size: 14px;
            border-radius: 5px;
            margin-bottom: 0px;
            max-height: clamp(7.5rem, 6.5132rem + 3.1579vw, 9.375rem);
            color: #4D5756;
        }
    }
    & .wpcf7-response-output {
        float: left;
        width: 100%;
        margin: 0 !important;
    }
}
.contact-form-sec form .et_pb_column:has(.wpcf7-submit) {
    margin-bottom: 0 !important;
}
.contact-form-sec form p {
    padding-bottom: 0px;
}
.contact-form-sec .et_pb_blurb_position_left .et_pb_main_blurb_image{
    vertical-align: middle !important;
}
 
/*--home-contact-sec--*/
/*******  | 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) {

}

@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;
    }
    .home-slider-sec {
        & .et_pb_slider {
            & .et_pb_slider_container_inner {
                flex-direction: column;
                justify-content: center;
            }
            & .et_pb_slide_description {
                padding: 0;
                margin: 0;
            }
        }
        & .et_pb_slide_image {
            max-width: 290px;
            margin-block: 30px !important;
        }
    }
}