/**
Theme Name: FPPBI
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: FPPBI Theme
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
Template: astra
*/

/* ===================================================================== */
/* ===================================================================== */
/*  FPPBI Base Theme                                                     */
/*  FPPBI theme is dependent to bootstrap v5                             */
/* ===================================================================== */
/* ===================================================================== */
/*  $0 - Root - CSS Variables                                            */
/*  $1 - HTML & Style Elements                                           */
/*       $1.1 - Styles - Typography                                      */
/*       $1.2 - HTML Elements - Headings                                 */
/*       $1.3 - HTML Elements - Links                                    */
/*       $1.4 - HTML Elements - Images                                   */
/*       $1.5 - HTML Elements - Inputs and Selectors                     */
/*       $1.6 - HTML Elements - Buttons                                  */
/*       $1.7 - Styles - Text Colors                                     */
/*       $1.8 - Styles - Background Colors                               */
/*       $1.9 - Styles - Space                                           */
/*       $1.10 - Styles - Border Radius                                  */
/*       $1.11 - Styles - Border Size                                    */
/*       $1.12 - Styles - Elevation/Shadows                              */
/*       $1.13 - Styles - Flex Properties                                */
/*       $1.14 - Styles - Others                                         */
/*  $2 - Section  Elements                                               */
/*       $2.1 - Section                                                  */
/*       $2.2 - Section - Hero                                           */
/*  $3 - Page Layout                                                     */
/*       $3.1 - Page Layout - Header                                     */
/*       $3.2 - Page Layout - Menu                                       */
/*       $3.3 - Page Layout - Content                                    */
/*       $3.4 - Page Layout - Footer                                     */
/*  $4 - Patterns                                                        */
/*       $4.1 - Pattern - Cards                                          */
/*       $4.2 - Pattern - Slider                                         */
/*       $4.3 - Pattern - Accordion                                      */
/*       $4.4 - Pattern - Block Image                                    */
/*       $4.5 - Pattern - Modal                                          */
/*       $4.6 - Pattern - Gallery                                        */
/*       $4.7 - Pattern - List                                           */
/*       $4.8 - Pattern - Icon List                                      */
/*       $4.9 - Pattern - Table                                          */
/*       $4.11 - Pattern - Testimonial                                   */
/*  $5 - Articles/Blog                                                   */
/*  $6 - Custom Pages                                                    */
/* ===================================================================== */
/* ===================================================================== */

/* ===================================================================== */
/*  $0 - Root - CSS Variables                                            */
/* ===================================================================== */

:root {

    /* Font Sizes */
    --font-size-base: 1rem;
    --h1-font-size: 3.5rem;
    --h2-font-size: 3rem;
    --h3-font-size: 2.5rem;
    --h4-font-size: 2rem;
    --h5-font-size: 1.5rem;
    --h6-font-size: 1.25rem;

    /* Elevation / Shadow */
    --shadow-none: none;
    --shadow-xs: 0px 2px 4px 0px rgba(0, 0, 0, 0.10);
    --shadow-sm: 0px 4px 8px 0px rgba(0, 0, 0, 0.10);
    --shadow-md: 0px 8px 16px 0px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0px 16px 32px 0px rgba(0, 0, 0, 0.10);    

}

/* ================================================================ */
/*  $1 - HTML Elements                                              */
/* ================================================================ */

html, body {
    text-size-adjust: none;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
}

body {
    font-size: var(--font-size-base);
    font-weight: 400;
}
.flex-wrap .uagb-icon-list__wrap {
	flex-wrap: wrap;
	gap: 10px
}
.flex-wrap .uagb-icon-list__wrap .wp-block-uagb-icon-list-child {
	margin: 0 !important
}

/* $1.1 - Styles - Typography & Size */
h2.wp-block-heading {
    margin-bottom: 10px !important;
}
.sub-title {
    margin-top: 0;
    font-size: 20px
}

/* $1.2 - HTML Elements - Headings */
h1, .h1, .entry-content h1,
h2, .h2, .entry-content h2,
h4, .h3, .entry-content h3,
h4, .h4, .entry-content h4,
h5, .h5, .entry-content h5,
h6, .h6, .entry-content h6,
body, p {
    line-height: 1.5;
}
h1, .h1, .entry-content h1 {
    font-size: calc(1.475rem + 2.7vw);
    font-weight: 800;
    line-height: 1.3;
}
h2, .h2, .entry-content h2 {
    font-size: calc(1.425rem + 2.1vw);
    font-weight: 400;
    line-height: 1.3;
}
h3, .h3, .entry-content h3 {
    font-size: calc(1.375rem + 1.5vw);
    font-weight: 400;
}
h4, .h4, .entry-content h4 {
    font-size: calc(1.325rem + .9vw);
    font-weight: 400;
}
h5, .h5, .entry-content h5 {
    font-size: calc(1.275rem + .3vw);
    font-weight: 400;
}
h6, .h6, .entry-content h6 {
    font-size: calc(1.25rem + .3vw);
    font-weight: 400;
}

@media screen and (min-width: 922px) {
    h1, .h1, .entry-content h1 {
        font-size: var(--h1-font-size);
    }
    h2, .h2, .entry-content h2 {
        font-size: var(--h2-font-size);
    }
    h3, .h3, .entry-content h3 {
        font-size: var(--h3-font-size);
    }
    h4, .h4, .entry-content h4 {
        font-size: var(--h4-font-size);
    }
    h5, .h5, .entry-content h5 {
        font-size: var(--h5-font-size);
    }
    h6, .h6, .entry-content h6 {
        font-size: var(--h6-font-size);
    }
}

/* $1.9 - HTML Elements - Space */
.mb-0 {
    margin-bottom: 0 !important;
}

/* ================================================================ */
/*  $3 - Page Layout                                                */
/* ================================================================ */

/* $3.1 - Page Layout - Header */
#masthead.site-header {
    position: sticky;
    top: 0;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.ast-theme-transparent-header #masthead {
/*     position: fixed; */
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, .9);
}
.ast-site-identity {
	padding: 0;
}
.ast-desktop .ast-primary-header-bar .main-header-menu > .menu-item {
	line-height: 70px;
}
.ast-mobile-header-wrap .ast-primary-header-bar,
.ast-primary-header-bar .site-primary-header-wrap {	
	min-height: 70px;
}
.main-header-menu .menu-link,
.main-header-menu > a {
    font-size: 14px;
    font-weight: 700;
	text-transform: uppercase;
}
.ast-desktop .ast-builder-menu-1 .menu-item .sub-menu .menu-link {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.ast-desktop .ast-builder-menu-1 .menu-item .sub-menu .current_page_item .menu-link,
.ast-desktop .ast-builder-menu-1 .menu-item .sub-menu .menu-link:hover {
	background: #379237;
	color: #fff
}
@media screen and (min-width: 922px) {
	.ast-primary-header-bar .site-primary-header-wrap {
		padding-left: 0;
		padding-right: 0;
	}
}

/* $3.3 - Page Layout - Content */
.ast-container,.ast-container-fluid {
    padding-left: 30px;
    padding-right: 30px
}
.ast-row {
    margin-left: -30px;
    margin-right: -30px
}
article.page {
	display: flex;
	flex-direction: column;
}
header.entry-header,
.ast-breadcrumbs-wrapper {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    max-width: 100vw;
    width: 100vw;
	padding-left: 30px;
	padding-right: 30px;
	background: #54B435
}
header.entry-header .entry-title,
.ast-breadcrumbs-wrapper .ast-breadcrumbs-inner {
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
}
header.entry-header *,
.ast-breadcrumbs-wrapper * {
	color: #fff
}
.ast-breadcrumbs-wrapper {
	order: 1;
	padding-bottom: 30px;
	font-size: 16px
}
.ast-breadcrumbs-wrapper a {
	font-weight: 700;
}
.page header.entry-header {
	margin-bottom: 0;
	order: 0;
	padding-top: 30px;
}
header.entry-header .entry-title {
	font-size: calc(1.475rem + 2.7vw);
    font-weight: 800;
	margin-bottom: 10px
}
.entry-content {
	order: 2;
}
@media screen and (min-width: 922px) {
    header.entry-header .entry-title {
        font-size: var(--h1-font-size);
    }
}
@media screen and (min-width: 1200px){
	.ast-plain-container.ast-no-sidebar #primary {
		margin-top: 0;
        margin-bottom: 0;
	}
}

/* Slider */
.slider-section {
    margin-left: calc( -50vw + 50%) !important;
    margin-right: calc( -50vw + 50%) !important;
    max-width: 100vw !important;
    width: 100vw;
}

/* Services */
#services-section .uagb-container-inner-blocks-wrap {
    margin-top:-75px;
    position:relative;
    z-index:1;
}
#services-section .wp-block-uagb-container {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
    border-radius: 8px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    -webkit-transition: color 150ms ease-in-out,background-color 75ms ease-in-out;
    -moz-transition: color 150ms ease-in-out,background-color 75ms ease-in-out;
    -ms-transition: color 150ms ease-in-out,background-color 75ms ease-in-out;
    -o-transition: color 150ms ease-in-out,background-color 75ms ease-in-out;
    transition: color 150ms ease-in-out,background-color 75ms ease-in-out;
		background-color:#fff;
}
#services-section .wp-block-uagb-container:hover,
#services-section .wp-block-uagb-container:focus,
#services-section .wp-block-uagb-container:active {
    background: #54B435;
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
#services-section .wp-block-uagb-container > svg {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}
#services-section .wp-block-uagb-container > svg > path {
    fill: #008000
}
#services-section .wp-block-uagb-container > svg > g > path {
    stroke: #008000
}
#services-section .wp-block-uagb-container:hover > svg > path,
#services-section .wp-block-uagb-container:focus > svg > path
#services-section .wp-block-uagb-container:active > svg > path,
#services-section .wp-block-uagb-container:hover .wp-block-uagb-icon svg path,
#services-section .wp-block-uagb-container:focus .wp-block-uagb-icon svg path,
#services-section .wp-block-uagb-container:active .wp-block-uagb-icon svg path {
    fill: #fff
}
#services-section .wp-block-uagb-container:hover .uagb-icon-wrapper svg{
	fill:#fff;
}
#services-section .wp-block-uagb-container:hover > svg > g > path,
#services-section .wp-block-uagb-container:focus > svg > g > path,
#services-section .wp-block-uagb-container:active > svg > g > path{
    stroke: #fff
}
#services-section .wp-block-heading,
#services-section .wp-block-heading strong {
    font-size: 1.125rem;
    line-height: 1.25;
}
#services-section .wp-block-uagb-container:hover .wp-block-heading,
#services-section .wp-block-uagb-container:hover .wp-block-heading strong, #services-section .wp-block-uagb-container:hover p {
    color: #fff
}
#services-section .wp-block-heading {
    margin-bottom: 10px
}
#services-section p {
    font-size: 14px
}
#services-section .wp-block-uagb-icon {
    margin-top: 0
}
#services-section .wp-block-uagb-icon svg {
    width: 20px;
    height: 20px;
}
#services-section .wp-block-uagb-buttons {
    margin: 0 !important;
    height: 0;
}
#services-section .wp-block-button__link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    border: 0;
    align-items: flex-end;
}

/* Branch Locator */
.tab-container {
    margin-top: 15px;
}
.tab-nav {
    margin-bottom: 40px;
	max-width: 500px
}
.tab-nav select {
    width: 100%;
    padding: 10px !important;
    border-radius: 8px;
    border: 1px solid #ccccd2;
    cursor: pointer;
	box-shadow: rgba(149, 157, 165, 0.25) 0px 4px 14px;
}
#branch-locator-section {
	background-size: auto 450px;
	background-repeat:repeat-x;
}
.block-group {
    display: flex;
    border-radius: 10px;
    box-shadow: rgba(149, 157, 165, 0.25) 0px 4px 14px;
    overflow: hidden;
}
.block-group .block-column {
    width: 50%
}
.branch-list {
    margin: 0 !important;
    padding: 0 !important;
}
.branch-list li {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 15px;
    margin-bottom: 10px;
}
.branch-list li .icon {
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.branch-list li .icon svg {
    fill: var(--ast-global-color-0)
}
.branch-list li .text {
    font-size: 16px;
    display: flex;
    align-items: center;
}
.block-group > div:first-child {
    padding: 40px;
    background: #F9F9F9;
}
.block-group > div:first-child h4 {
    margin-bottom: 15px
}
.block-group > div:first-child p {
    font-size: 16px;
    margin-bottom: 10px;
}
.branch-map {
    height: 100%;
	width: 100%;
    border-radius: 0 8px 8px 0;
    background: rgb(229, 227, 223);
    display: flex;
	box-shadow: rgba(149, 157, 165, 0.25) 0px 4px 4px;
}
.branch-map iframe {
    height: 100%;
	width: 100%;
	min-height: 450px
}
.block-group #branchPhoto {
	margin-top: 30px
}
.block-group #branchPhoto img {
	max-width: 150px;
	max-height: 150px;
	border-radius: 10px
}
@media screen and (max-width: 767px) {
	.block-group {
		flex-direction: column
	}
	.block-group > .block-column {
		width: 100%
	}
	.branch-map iframe {
		min-height: 300px;
	}
}

/* Flash */
.swiper-button-prev {
    left: 50px !Important
}
.swiper-button-next {
    right: 50px !Important
}
.wp-block-uagb-post-grid {
    margin-top: 40px;
}
.wp-block-uagb-post-grid .uagb-post__inner-wrap {
    background: #fff;
    padding: 0 20px 32px !important;
    border-radius: 8px;
    border: 1px solid #ccccd2
}
.wp-block-uagb-post-grid .uagb-post__title {
    font-size: 24px;
    font-weight: 600;
    margin-top: 10px
}
.uagb-post__taxonomy {
    font-size: 0 !important;
    display: flex !important;
    gap: 5px;
    margin-top: 20px
}
.uagb-post__taxonomy a {
    font-size: 14px !important;
    border: 1px solid #ccccd2;
    border-radius: 30px;
    padding: 2px 15px
}

/* $3.4 - Page Layout - Footer */
.site-footer {
    background: #008000;
}
.site-footer * {
    color: #fff !important
}
.site-above-footer-wrap[data-section="section-above-footer-builder"] .wp-block-columns {
    align-items: center !important;
}
.site-above-footer-wrap[data-section="section-above-footer-builder"] .wp-block-heading {
    font-size: 18px;
    text-transform: uppercase
}
.site-above-footer-wrap[data-section="section-above-footer-builder"] .wp-block-uagb-icon-list .uagb-icon-list__source-image {
    width: 80px
}
.site-above-footer-wrap[data-section="section-above-footer-builder"] .wp-block-buttons {
    justify-content: flex-end
}
.site-above-footer-wrap[data-section="section-above-footer-builder"] .wp-block-button__link {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    line-height: 32px;
    border-radius: 6px;
    background: #036739;
}
.site-above-footer-wrap[data-section="section-above-footer-builder"] .site-footer-above-section-2 .footer-widget-area::before {
    content:'Company';
    font-family: 'Montserrat';
}
.site-above-footer-wrap[data-section="section-above-footer-builder"] .site-footer-above-section-2 .footer-widget-area::before,
.site-above-footer-wrap[data-section="section-above-footer-builder"] .widget-title,
.site-above-footer-wrap[data-section="section-above-footer-builder"] .wp-block-uagb-advanced-heading .uagb-heading-text {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
    font-weight: 700;
}
#astra-footer-menu {
    flex-direction: column
}
#astra-footer-menu li a,
#menu-services-menu li a {
    padding: 10px 0;
    font-size: 16px;
    display: block;
}
#astra-footer-menu li:first-child a,
#menu-services-menu li:first-child a {
    padding-top: 0
}
site-above-footer-wrap[data-section="section-above-footer-builder"] .widget_text {
    margin-bottom: 10px
}
site-above-footer-wrap[data-section="section-above-footer-builder"] .site-footer-primary-section-4 p,
site-above-footer-wrap[data-section="section-above-footer-builder"] .site-footer-primary-section-4 a{
    font-size: 13px;
    margin-bottom: 0;
    line-height: 1.5;
}
.site-below-footer-wrap[data-section="section-below-footer-builder"] .ast-builder-grid-row {
    border-top: 1px solid #54b435;
    padding-top: 30px;
	padding-bottom: 20px;
}
.ast-footer-copyright p {
    font-size: 14px;
}

@media screen and (min-width:921px) {
	.site-above-footer-wrap[data-section="section-above-footer-builder"].ast-builder-grid-row-4-lheavy .ast-builder-grid-row {
    	grid-template-columns: 2fr 150px 150px 2fr;
	}
}

/* $3.4 - Pattern - Profile */
.profile-item figure {
	overflow:hidden;
	border-radius: 10px;
    width: 100%;
}
.profile-item figure img {
    width: 100%;
    height: 100%;
}
.profile-item .wp-block-uagb-image--layout-overlay__inner {
	align-items: flex-start;
	justify-content: flex-end;
	padding: 25px 25px 40px;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
}
.profile-item .wp-block-uagb-image--layout-overlay__inner:before {
	content: '';
	position: absolute;
	max-height: 220px;
	height: 100%;
	width: 100%;
	bottom: 0;
	left: 0;
	right: 0;
	display: block;
	background: rgb(0,0,0);
	background: -moz-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 75%);
	background: -webkit-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 75%);
	background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 75%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}
.profile-item .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading {
	text-transform: uppercase;
	font-weight: 700;
	line-height: 1.4;
	font-size: 1.25rem;
    max-width: 200px;
}
.profile-item .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption {
	margin-top: 0;
    text-align: left;
}