h1.entry-title{
	display: none !important;
}
/* =========================================
   MODERN CUSTOM BREADCRUMB
   Theme Colors:
   Orange: #c73014
   Navy:   #06163a
   ========================================= */

.sic-custom-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;

    width: fit-content;
    max-width: 100%;

    padding: 10px 18px 10px 12px;

    background: #ffffff;

    border-left: 4px solid #c73014;
    border-radius: 6px;

    box-shadow: 0 5px 18px rgba(6, 22, 58, 0.10);

    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
}


/* =========================================
   ALL LINKS
   ========================================= */

.sic-custom-breadcrumb a {
    position: relative;

    color: #06163a;

    text-decoration: none !important;

    padding: 5px 9px;

    border-radius: 4px;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}


/* Link Hover */

.sic-custom-breadcrumb a:hover {
    color: #ffffff;

    background: #c73014;

    transform: translateY(-1px);
}


/* =========================================
   HOME
   ========================================= */

.sic-custom-breadcrumb .sic-breadcrumb-home {
    color: #c73014;
    font-weight: 700;
}


/* =========================================
   PARENT
   ========================================= */

.sic-custom-breadcrumb .sic-breadcrumb-parent {
    color: #06163a;
    font-weight: 600;
}


/* =========================================
   SEPARATOR
   ========================================= */

.sic-custom-breadcrumb .sic-separator {
    position: relative;

    color: transparent;

    width: 22px;

    font-size: 0;

    text-align: center;
}


/* Custom Arrow */

.sic-custom-breadcrumb .sic-separator::before {
    content: "";

    display: inline-block;

    width: 7px;
    height: 7px;

    border-top: 2px solid #c73014;
    border-right: 2px solid #c73014;

    transform: rotate(45deg);

    vertical-align: middle;
}


/* =========================================
   CURRENT PAGE
   ========================================= */

.sic-custom-breadcrumb .sic-breadcrumb-current {
    position: relative;

    color: #06163a;

    font-weight: 700;

    padding: 5px 10px;
}


/* Current Page Underline */

.sic-custom-breadcrumb .sic-breadcrumb-current::after {
    content: "";

    position: absolute;

    left: 10px;
    bottom: 1px;

    width: 28px;
    height: 2px;

    background: #c73014;

    border-radius: 10px;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 767px) {

    .sic-custom-breadcrumb {
        width: 100%;

        padding: 9px 10px;

        font-size: 13px;

        border-left-width: 3px;

        border-radius: 5px;
    }

    .sic-custom-breadcrumb a,
    .sic-custom-breadcrumb .sic-breadcrumb-current {
        padding: 4px 6px;
    }

    .sic-custom-breadcrumb .sic-separator {
        width: 16px;
    }

    .sic-custom-breadcrumb .sic-separator::before {
        width: 6px;
        height: 6px;
    }

    .sic-custom-breadcrumb .sic-breadcrumb-current::after {
        left: 6px;
    }
}
.headng {
    width: 100%;
    text-align: center;
    padding: 18px 20px;

    background: linear-gradient(
        90deg,
        rgba(199, 48, 20, 0.15) 0%,
        rgba(199, 48, 20, 0.55) 25%,
        #c73014 50%,
        rgba(199, 48, 20, 0.55) 75%,
        rgba(199, 48, 20, 0.15) 100%
    );
}

.headng .elementor-heading-title {
    margin: 0 !important;
    color: #ffffff !important;
    font-size: 42px !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    text-align: center;
}

@media (max-width: 767px) {
    .headng {
        padding: 13px 10px;
    }

    .headng .elementor-heading-title {
        font-size: 28px !important;
    }
}
/* ==========================================
   WPFORMS - MODERN CONTACT FORM DESIGN
   Theme:
   Orange #c73014
   Navy   #06163a
   ========================================== */

/* Form Container */
div.wpforms-container {
    background: #ffffff;
    padding: 30px !important;
    border-radius: 12px;
    border-top: 4px solid #c73014;
    box-shadow: 0 8px 30px rgba(6, 22, 58, 0.10);
}


/* LABEL */
div.wpforms-container .wpforms-field-label {
    color: #06163a !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
}


/* REQUIRED STAR */
div.wpforms-container .wpforms-required-label {
    color: #c73014 !important;
}


/* INPUT + EMAIL + PHONE + SELECT + TEXTAREA */
div.wpforms-container input[type="text"],
div.wpforms-container input[type="email"],
div.wpforms-container input[type="tel"],
div.wpforms-container input[type="number"],
div.wpforms-container input[type="url"],
div.wpforms-container select,
div.wpforms-container textarea {
    width: 100% !important;

    background: #f8f9fb !important;
    color: #06163a !important;

    border: 1px solid #d9dee8 !important;
    border-radius: 7px !important;

    padding: 12px 15px !important;

    font-size: 15px !important;

    box-shadow: none !important;

    transition: all 0.3s ease !important;
}


/* Normal Input Height */
div.wpforms-container input[type="text"],
div.wpforms-container input[type="email"],
div.wpforms-container input[type="tel"],
div.wpforms-container input[type="number"],
div.wpforms-container input[type="url"],
div.wpforms-container select {
    height: 48px !important;
}


/* TEXTAREA */
div.wpforms-container textarea {
    min-height: 130px !important;
    resize: vertical;
}


/* FOCUS EFFECT */
div.wpforms-container input:focus,
div.wpforms-container select:focus,
div.wpforms-container textarea:focus {
    background: #ffffff !important;

    border-color: #c73014 !important;

    box-shadow:
        0 0 0 3px rgba(199, 48, 20, 0.10) !important;

    outline: none !important;
}


/* PLACEHOLDER */
div.wpforms-container input::placeholder,
div.wpforms-container textarea::placeholder {
    color: #9298a5 !important;
    opacity: 1;
}


/* FIELD SPACE */
div.wpforms-container .wpforms-field {
    padding-top: 8px !important;
    padding-bottom: 12px !important;
}


/* ==========================================
   SUBMIT BUTTON
   ========================================== */

div.wpforms-container .wpforms-submit-container {
    padding-top: 12px !important;
}

div.wpforms-container button[type="submit"],
div.wpforms-container input[type="submit"] {
    min-width: 160px !important;

    background: #c73014 !important;
    color: #ffffff !important;

    border: 2px solid #c73014 !important;
    border-radius: 6px !important;

    padding: 13px 28px !important;

    font-size: 15px !important;
    font-weight: 600 !important;

    cursor: pointer;

    box-shadow:
        0 5px 15px rgba(199, 48, 20, 0.20) !important;

    transition: all 0.3s ease !important;
}


/* BUTTON HOVER */
div.wpforms-container button[type="submit"]:hover,
div.wpforms-container input[type="submit"]:hover {
    background: #06163a !important;
    border-color: #06163a !important;

    color: #ffffff !important;

    transform: translateY(-2px);

    box-shadow:
        0 7px 18px rgba(6, 22, 58, 0.22) !important;
}


/* ==========================================
   ERROR
   ========================================== */

div.wpforms-container label.wpforms-error {
    color: #c73014 !important;
    font-size: 13px !important;
    margin-top: 5px !important;
}

div.wpforms-container input.wpforms-error,
div.wpforms-container textarea.wpforms-error,
div.wpforms-container select.wpforms-error {
    border-color: #c73014 !important;
}


/* ==========================================
   SUCCESS MESSAGE
   ========================================== */

.wpforms-confirmation-container-full {
    background: rgba(199, 48, 20, 0.06) !important;
    border: 1px solid rgba(199, 48, 20, 0.25) !important;
    border-left: 4px solid #c73014 !important;

    color: #06163a !important;

    border-radius: 7px !important;

    padding: 18px 20px !important;
}


/* ==========================================
   MOBILE
   ========================================== */

@media (max-width: 767px) {

    div.wpforms-container {
        padding: 20px 15px !important;
        border-radius: 8px;
    }

    div.wpforms-container button[type="submit"],
    div.wpforms-container input[type="submit"] {
        width: 100% !important;
    }

}

.elementor-widget-text-editor h3 {
    position: relative;
    display: inline-block;

    /* Heading Color */
    color: #c73014 !important;

    font-size: 28px !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;

    margin: 0 0 22px 0 !important;
    padding: 0 0 10px 18px !important;
}


/* LEFT ACCENT LINE */
.elementor-widget-text-editor h3::before {
    content: "";

    position: absolute;
    left: 0;
    top: 3px;

    width: 5px;
    height: 32px;

    /* Navy Color */
    background: #06163a;

    border-radius: 10px;
}


/* BOTTOM GRADIENT LINE */
.elementor-widget-text-editor h3::after {
    content: "";

    position: absolute;
    left: 18px;
    bottom: 0;

    width: 70px;
    height: 3px;

    background: linear-gradient(
        90deg,
        #06163a 0%,
        #06163a 55%,
        rgba(6, 22, 58, 0.15) 100%
    );

    border-radius: 20px;
}


/* MOBILE */
@media (max-width: 767px) {

    .elementor-widget-text-editor h3 {
        font-size: 23px !important;
        padding-left: 14px !important;
        margin-bottom: 18px !important;
    }

    .elementor-widget-text-editor h3::before {
        width: 4px;
        height: 27px;
    }

    .elementor-widget-text-editor h3::after {
        left: 14px;
        width: 55px;
    }
}
/* =========================================
   ELEMENTOR H4 - UNIQUE MODERN DESIGN
   ========================================= */

.elementor-widget-text-editor h4 {
    position: relative;
    display: inline-block;

    color: #06163a !important;

    font-size: 23px !important;
    line-height: 1.4 !important;
    font-weight: 700 !important;

    margin: 5px 0 20px 0 !important;
    padding: 10px 22px 10px 20px !important;

    background: linear-gradient(
        90deg,
        rgba(199, 48, 20, 0.10) 0%,
        rgba(199, 48, 20, 0.03) 75%,
        transparent 100%
    );

    border-left: 4px solid #c73014;

    border-radius: 0 8px 8px 0;
}


/* =========================================
   DECORATIVE CORNER
   ========================================= */

.elementor-widget-text-editor h4::before {
    content: "";

    position: absolute;

    left: 10px;
    top: -4px;

    width: 28px;
    height: 3px;

    background: #06163a;

    border-radius: 10px;
}


/* =========================================
   SMALL DECORATIVE DOT
   ========================================= */

.elementor-widget-text-editor h4::after {
    content: "";

    position: absolute;

    right: 8px;
    bottom: 7px;

    width: 7px;
    height: 7px;

    background: #c73014;

    border-radius: 50%;

    box-shadow:
        -11px 0 0 rgba(199, 48, 20, 0.45),
        -22px 0 0 rgba(199, 48, 20, 0.18);
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 767px) {

    .elementor-widget-text-editor h4 {
        font-size: 20px !important;

        padding: 9px 18px 9px 15px !important;

        border-left-width: 3px;
    }

    .elementor-widget-text-editor h4::before {
        left: 8px;
        width: 22px;
    }

    .elementor-widget-text-editor h4::after {
        width: 6px;
        height: 6px;
    }
}
.elementor-widget-text-editor h5{
	color: #fff;
}
.white p{
color: #fff !important;	
}
.white ul li{
color: #fff !important;	
}
.elementor-widget-text-editor ul li:before{
	 content: "\f18e" !important;
    font-family: FontAwesome;
    padding-right: 10px;
    color:#c73014;
	font-size: 20px;
}
.elementor-widget-text-editor ul li{
	list-style-type: none;
	padding-bottom: 10px;
    margin-left: 1em;
    list-style-position: outside;
    text-indent: -25px;
	padding-left: 15px;
	color: #000;
	font-size: medium;
}
.elementor-widget-text-editor p{
	color: #000;
	font-size: 17px;
}
.table-bordered td, .table-bordered th {
    border: 1px solid #fff !important;
	
}
table tr{
	background:#06163a !important;
}
table tr td p{
	color:#fff !important;
	border: 1px solid #fff !important;
	padding: 10px;
}
@media (max-width: 900px){
.elementor-widget-container table {
    margin: 0;
    padding: 0;
    white-space: nowrap;
    display: block;
    width: 100%;
    margin:0px !important;
    padding: 0 0 15px 0;
    overflow: auto;
    overflow-x: scroll;
}
}
.footer-nav-widgets-wrapper {
    display: none !important;
}
#sfaq-164-521{
	display: none !important;
}