/*
Theme Name:    CKP Website Child Theme V2
Description:   CKP Child Theme V2
Version:       2.0.1
Author:        CKP Creative
Author URI:    https://www.ckpcreative.com.au/
Template:      bb-theme
License:       GNU General Public License v2 or later
License URI:   http://www.gnu.org/licenses/gpl-2.0.html


==========================================================================================
TABLE OF CONTENTS
==========================================================================================
1.0     AT-RULES
        1.1     Fonts
        1.2     Animations
2.0     RESET
3.0     REUSABLE CLASSES
4.0     LAYOUT AND DESIGN
        4.1     Common styles
                4.1.1     Rows
                4.1.2     Accordions
                4.1.3     Carousels
                4.1.4     Forms
                4.1.5     Popups
                4.1.6     Tabs
                4.1.7     Others
        4.2     Header
                4.2.1     Rows
                4.2.2     Branding
                4.2.3     Menu
                4.2.4     Others
        4.3     Content
                4.3.1     Rows
                4.3.2     Forms
                4.3.3     Popups
                4.3.4     Carousels
                4.3.5     Others
        4.4     Footer
                4.4.1     Rows
                4.4.2     Branding
                4.4.3     Menu
                4.4.4     Others
        4.5     Others
5.0     RESPONSIVE
        5.1     Large screens only (min-width: 993px)
        5.2     Medium and small screens (max-width: 992px)
        5.3     Medium screens only (min-width: 769px and max-width: 992px)
        5.4     Medium and large screens (min-width: 769px)
        5.5     Small and smaller screens (max-width: 768px)
        5.6     Small screens only (min-width: 481px and max-width: 768px)
        5.7     Gravity Forms Desktop (min-width: 641px)
        5.8     Gravity Forms Responsive (max-width: 640px)
        5.9     Smaller screens only (max-width: 480px)
==========================================================================================
*/

/**=======================================================================================
 * 1.0  AT-RULES
 * ---------------------------------------------------------------------------------------
 * At-rules are CSS statements that instruct CSS how to behave.
 *
 * Only include the following at-rules in this area:
 * - @font-face: Describes the aspect of an external font to be downloaded
 * - @keyframes: Describes the aspect of intermediate steps in a CSS animation sequence
 =======================================================================================*/

/**
 * 1.1  FONTS
 * ---- Custom fonts to apply to the website
 */

/**
 * 1.2  ANIMATIONS
 * ---- @keyframes at-rules for CSS animations
 */

/* 1.2.1  Slide down effect */
@-webkit-keyframes slide-down { 
	0% { opacity: 0; transform: translateY(-100%); }
	100% { opacity: 0.9; transform: translateY(0); }
}
@-moz-keyframes slide-down {
	0% { opacity: 0; transform: translateY(-100%); }
	100% { opacity: 0.9; transform: translateY(0); }
}
@keyframes slide-down {
	0% { opacity: 0; transform: translateY(-100%); }
	100% { opacity: 0.9; transform: translateY(0); }
}

/* 1.2.2  Spinner */
@keyframes spinner {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/**=======================================================================================
 * 2.0  RESET
 * ---------------------------------------------------------------------------------------
 * Set default styles for elements
 =======================================================================================*/
 .fl-page p {
    margin-bottom: 1.5em;
}
 .fl-page p:last-child {
    margin-bottom: 0;
}

/**=======================================================================================
 * 3.0  REUSABLE CLASSES
 * ---------------------------------------------------------------------------------------
 * CSS classes that can be re-used althroughout the website
 =======================================================================================*/


/**=======================================================================================
 * 4.0  LAYOUT AND DESIGN
 * ---------------------------------------------------------------------------------------
 * General and specific CSS styles for layouts, pages, and/or features
 =======================================================================================*/

/**
 * 4.1  COMMON STYLES
 * ---- Styles that are commonly used on multiple pages
 */

/* 4.1.1  Rows */

/* 4.1.2  Accordions */

/* 4.1.3  Carousels */

/* 4.1.4  Forms */

/* 4.1.4.1  Gravity Forms */
.fl-module .gform_wrapper .gform_validation_errors {
	background: #c02b0a;
	border: 0;
	margin-bottom: 20px;
}
.fl-module .gform_wrapper .gform_validation_errors > h2 {
	color: #FFF;
}
.fl-module .gform_wrapper div.gfield {
	padding: 0;
	margin-top: 0;
}
.fl-module .gform_wrapper .gfield.gfield_error {
	background: none;
	border: 0;
}
.fl-module .gform_wrapper .top_label .gfield_label {
	line-height: normal;
}
.fl-module .gform_wrapper .gfield_required {
	color: inherit;
}
.fl-module .gform_wrapper .gfield textarea {
	resize: vertical;
}
.fl-module .gform_wrapper.gravity-theme .gfield_validation_message,
.fl-module .gform_wrapper.gravity-theme .validation_message {
	background: none;
	padding: 0;
	border: 0;
	margin-top: 5px;
}
.gform_ajax_spinner {
	margin-left: 20px;
	border: 4px solid rgba(145, 125, 125, 0.3);
	border-left: 4px solid rgba(110, 73, 217, 0.7);
	animation: spinner 1.1s infinite linear;
	border-radius: 50%;
	width: 30px;
	height: 30px;
}

/* 4.1.4.2  UABB Gravity Forms */
.fl-module .uabb-gf-style input[type] {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

/* 4.1.4.3  Powerpack Gravity Forms */

/* 4.1.5  Popups */

/* 4.1.6  Tabs */

/* 4.1.7  Others */

/**
 * 4.2  HEADER
 * ---- Styles that apply to the header area
 */

/* 4.2.1  Rows */

/* 4.2.2  Branding */

/* 4.2.3  Menu */

/* 4.2.4  Others */

/**
 * 4.3  CONTENT
 * ---- Styles that apply to the content area of specific pages
 */

/* 4.3.1  Homepage */

/**
 * 4.4  FOOTER
 * ---- Styles that apply to the footer area
 */

/* 4.4.1  Rows */

/* 4.4.2  Branding */

/* 4.4.3  Menus */

/* 4.4.4  Others */
.copyright {
	text-align: center;
}
.copyright a,
.copyright .developer {
	display: inline-block;
}

/**
 * 4.5  OTHERS
 * ---- Styles for elements that does not meet the criteria above
 */

/**=======================================================================================
 * 5.0  RESPONSIVE
 * ---------------------------------------------------------------------------------------
 * CSS styles that apply to different media types.
 * 
 * Only include the following at-rules in this area:
 * - @media   : A conditional group rule that will apply its content if the device meets
                the criteria of the condition defined using a media query.
 * - @page    : Describes the aspect of layout changes that will be applied when printing
                the document.
 * - @supports: A conditional group rule that will apply its content if the browser meets
                the criteria of the given condition.
 =======================================================================================*/


.header-nav ul.pp-advanced-menu-horizontal li.btn a{
	padding: 8px 18px;
    border-radius: 4px;
	line-height: normal;
	font-weight: 700;
}
.header-nav ul.pp-advanced-menu-horizontal li.btn.btn-outline a{
	color: #03A74F;
	border: 1px solid #03A74F;
}
.header-nav ul.pp-advanced-menu-horizontal li.btn.theme-btn a{
	background: #03A74F;
	border: 1px solid #03A74F;
	color: #fff;
}
.header-nav ul.pp-advanced-menu-horizontal li.btn.btn-outline a:hover,
.header-nav ul.pp-advanced-menu-horizontal li.btn.theme-btn a:hover{
	background: #4D473D;
	border-color: #4D473D;
	color: #fff;
}
.header-nav ul.pp-advanced-menu-horizontal li.btn.theme-btn{
	margin-left: 20px;
}
.header-nav ul.pp-advanced-menu-horizontal li a:hover,
.header-nav ul.pp-advanced-menu-horizontal li .pp-has-submenu-container > a:hover{
	color: #03A74F;
}
.footer-list-info.fl-node-pvm1d6blk2aw ul.pp-list-items li .pp-list-item-content{
	align-items: center !important;
}
.footer-section.fl-node-61803fa368be4 .fl-node-4zvdr5lpo6xh{
	position: relative;
	display: flex;
	align-items: center;
}
.footer-section.fl-node-61803fa368be4 .fl-node-4zvdr5lpo6xh:before{
	position:absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	height: 1px;
	background: #303030;
}
.footer-bottom-menu .fl-menu nav{
	display: flex;
    align-items: center;
    justify-content: center;
}
.made-text i.fa-heart{
	font-family: "Font Awesome 5 Free" !important;
	color: #ECECEC !important;
	font-weight: 900 !important;
	padding: 0px 5px;
}
.fl-button-wrap a.fl-button:active{
	top: 0px;
}
.footer-menu ul.menu li a:hover{
	color: #03a74f;
}
.max-content-center .gradiant-col{
	background: linear-gradient(180deg, #9CD868 0%, #03A74F 100%);
}
.max-content-center .max-left-content-col .fl-col-content{
	max-width: 586px;
    margin-left: auto;
    margin-right: 55px;
}
.max-content-center .max-right-content-col .fl-col-content{
	max-width: 586px;
    margin-left: 55px;
    margin-right: auto;
}
.fl-module-pp-infolist.box-content-info ul.pp-list-items li.pp-list-item .pp-icon-wrapper,
.fl-module-pp-infolist.box-content-info ul.pp-list-items li.pp-list-item .pp-icon-wrapper .pp-infolist-icon-inner{
	width: 100%;
	height: auto;
}
.fl-module-pp-infolist.box-content-info ul.pp-list-items li.pp-list-item .pp-icon-wrapper .pp-infolist-icon-inner{
	text-align: left;
}
.fl-module-pp-infolist.box-content-info ul.pp-list-items li.pp-list-item .pp-list-item-content{
	padding: 0px;
	height: 100%;
}
.fl-module-pp-infolist.box-content-info ul.pp-list-items li.pp-list-item .pp-heading-wrapper{
	padding: 30px 35px 50px;
	border: 1px solid #CAB590;
	height: 100%;
}
.fl-module-pp-infolist.box-content-info ul.pp-list-items li.pp-list-item .pp-heading-wrapper span.subtitle{
	font-size: 18px;
	color: #0A0B1C;
	font-weight: 500;
}
.fl-module-pp-infolist.box-content-info ul.pp-list-items li.pp-list-item .pp-heading-wrapper p:first-child{
	margin-top: 5px;
	margin-bottom: 10px;
}
.fl-module-pp-infolist.box-content-info ul.pp-list-items li.pp-list-item .pp-heading-wrapper span.black{
	color: #0A0B1C;
	font-weight: 700;
}
.google-review-module .pp-testimonials-wrap .pp-testimonials{
	max-width: 1120px;
	margin: 0 auto;
}
.google-review-module .pp-testimonial .pp-testimonials-image img{
	margin-bottom: 10px;
}
.google-review-module .pp-testimonial .pp-title-wrapper{
	margin-top:30px;
}
.google-review-module .pp-testimonials .owl-nav button.owl-prev{
	left: 10px;
}
.google-review-module .pp-testimonials .owl-nav button.owl-next{
	right: 10px;
}
.google-review-module .pp-testimonials .owl-nav button{
	text-indent: -9999px;
}
.google-review-module .pp-testimonials .owl-nav button.owl-prev::before{
	background-image: url(assets/images/aerrow-left.svg);
    width: 35px;
    height: 35px;
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    background-size: 35px;
    background-position: center;
    background-repeat: no-repeat;
}
.google-review-module .pp-testimonials .owl-nav button.owl-next::before{
	background-image: url(assets/images/aerrow-right.svg);
    width: 35px;
    height: 35px;
    content: "";
    top: 0;
    right: 0;
    position: absolute;
    background-size: 35px;
    background-position: center;
    background-repeat: no-repeat;
}
.max-col-content.fl-col{
	float: none;
	margin-left: auto;
	margin-right: auto;
}
.contact-form .gform_heading .gform_required_legend{
	display: none;
}
.contact-form.fl-module-pp-gravity-form .gform_validation_errors{
	padding: 12px 10px 12px 48px !important;
}
.made-text span.developer a:hover{
	color: #03A74F !important;
}
header.sticky-activated .fl-row-content-wrap{
	background: #fff;
}
.header-nav ul.pp-advanced-menu-horizontal li.btn:focus,
.header-nav ul.pp-advanced-menu-horizontal li.btn.focus{
	outline: none !important;
}
.contact-form.fl-module-pp-gravity-form .ginput_container_radio .gfield_radio{
	display: grid;
	grid-template-columns: repeat(3,1fr);
	
}
.contact-form.fl-module-pp-gravity-form .ginput_container_radio .gfield_radio .gchoice input[type=radio],
.contact-form.fl-module-pp-gravity-form .ginput_container_radio .gfield_radio .gchoice input[type=radio]:focus{
	appearance: none;
    width: 20px !important;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #03A74F;
    position: relative;
    cursor: pointer;
    outline: none;
}
.contact-form.fl-module-pp-gravity-form .ginput_container_radio .gfield_radio .gchoice label.gform-field-label--type-inline{
	cursor: pointer;
}
.contact-form.fl-module-pp-gravity-form .ginput_container_radio .gfield_radio .gchoice input[type=radio]:checked::after{
	content: "";
    width: 10px;
    height: 10px;
    top: 3px;
    left: 3px	;
    position: absolute;
    border-radius: 50%;
    border: 2px solid #03A74F;
}
.contact-form.fl-module-pp-gravity-form .ginput_container_radio .gfield_radio .gchoice{
	display: flex;
	align-items: center;
	grid-gap: 10px;
}
.contact-form.fl-module-pp-gravity-form .gfield--type-select{
	grid-column: 1 / -1 !important;
}
.contact-form.fl-module-pp-gravity-form .gfield--type-select select.gfield_select{
	appearance: none;
    background-image: url(assets/images/dropdown-aerrow.svg);
    background-position: center right 15px;
    background-size: 15px;
    background-repeat: no-repeat;
	cursor: pointer;
}
.google-review-module .pp-testimonials .owl-item{
	padding: 10px;
}
.slider-content .left-part .content p{
	line-height: 1.4;
}
.about_list li.pp-list-item-2 .pp-infolist-description p{
	line-height: 1.5;
}
.contact-form .gform_wrapper.gravity-theme .gfield_required{
	padding-left: 0px;
}
.commercial-list-col .fl-col-content{
	display: flex;
	flex-wrap: wrap;
	grid-gap: 15px;
	justify-content: space-between;
}
.commercial-list-col .fl-col-content .fl-module-pp-infolist{
	width: calc(33.33% - 15px);
}
.commercial-list-col .pp-infolist-wrap,
.commercial-list-col .pp-list-items,
.commercial-list-col .fl-module-content,
.commercial-list-col .pp-infolist,
.commercial-list-col .pp-list-items,
.commercial-list-col .pp-list-item,
.commercial-list-col .pp-list-item .pp-list-item-content {
    height: 100%;
    margin-top: 0;
}
.google-review-module .pp-testimonials .pp-testimonial{
	box-shadow: -5px -4px 8px 0px rgba(0, 0, 0, 0.08), 3px 5px 10px 0px rgba(0, 0, 0, 0.08);
}
.header-navbar .pp-advanced-menu ul.sub-menu{
	border-top-color: #000;
}





@media only screen and (max-width:1310px){
	.header-nav .fl-node-hsv09jt2cfoz .pp-advanced-menu .menu > li{
		margin-left: 30px;
	}
}

@media only screen and (max-width:1280px){
	.footer-section .footer-col-1{
		width: 39%;
	}
	.footer-section .footer-col-4{
		width: 28%;
	}
}

@media only screen and (max-width:1181px){
	.header-nav .fl-node-hsv09jt2cfoz .pp-advanced-menu .menu > li{
		margin-left: 20px;
	}
}




@media only screen and (max-width:1180px){
	.header-nav .fl-node-hsv09jt2cfoz .pp-advanced-menu .menu > li{
		margin-left: 20px;
	}
	.header-navbar .pp-advanced-menu-mobile button.pp-advanced-menu-mobile-toggle{
		background-color: transparent !important;
	}
	.footer-section.fl-node-61803fa368be4 .fl-node-4zvdr5lpo6xh{
		display: block;
	}
	nav.pp-off-canvas-menu ul.sub-menu li a{
		padding: 5px 10px 5px 25px !important;
	}
	header.sticky-activated{
		position: fixed !important;
	}
	nav.pp-off-canvas-menu ul.menu li.btn{
		text-align: left;
	}
	nav.pp-off-canvas-menu ul.menu li.btn a{
		padding: 8px 18px;
		border-radius: 4px;
		line-height: normal;
		font-weight: 700;
		display: inline-block
	}
	nav.pp-off-canvas-menu ul.menu li.btn.btn-outline a{
		color: #03A74F;
    	border: 1px solid #03A74F;
		padding-left: 10px;
        padding-right: 10px;
	}
	nav.pp-off-canvas-menu ul.menu li.btn.btn-outline a:hover,
	nav.pp-off-canvas-menu ul.menu li.btn.theme-btn a:hover{
		background: #4D473D;
		border-color: #4D473D;
		color: #fff;
		padding-left: 10px;
        padding-right: 10px;
	}
	nav.pp-off-canvas-menu ul.menu li.btn.theme-btn a{
		background: #03A74F;
    	border: 1px solid #03A74F;
    	color: #fff;
		padding-left: 10px;
        padding-right: 10px;
	}
	nav.pp-off-canvas-menu ul.menu li.btn.theme-btn{
		margin-top:10px;
	}
	nav.pp-off-canvas-menu ul.menu li.btn{
		padding-left: 0px;
	}
	.google-review-module .pp-testimonials-wrap .pp-testimonials{
		width: 90%;
	}
	header .header-section .fl-row-content-wrap{
		background: #fff;
	}
	.max-content-center .max-left-content-col .fl-col-content,
	.max-content-center .max-right-content-col .fl-col-content{
		max-width: 100%;
		margin-left: 20px;
		margin-right: 20px;
	}
	nav.pp-off-canvas-menu ul#menu-header-menu-1 li a span.pp-menu-toggle {
        width: 15px !important;
        right: 0px !important;
		height: 50px;
        margin: -25px 0 0;
    }
	
}

@media only screen and (max-width:992px){
	
	.box-content-info ul.pp-list-items{
		flex-wrap: wrap;
    	justify-content: center;
	}
	.box-content-info.fl-node-yk7i2wuame0n ul.pp-list-items li.pp-list-item{
		width: calc(50% - 25px);
	}
	.box-content-info.fl-node-yk7i2wuame0n ul.pp-list-items li.pp-list-item .pp-infolist-icon-inner img{
		width: 100%;
	}
	.content-des-col.fl-col{
		width: 51%;
	}
	.button-col.fl-col {
		width: 23%;
	}
	.google-review-module .pp-testimonials-wrap .pp-testimonials{
		width: 100%;
		max-width: 100%;
	}
	.google-review-module .pp-testimonials .owl-nav button.owl-prev,
	.google-review-module .pp-testimonials .owl-nav button.owl-next{
		top: auto;
		bottom: -80px;
	}
	.google-review-section .fl-row-content-wrap{
		padding-bottom: 100px;
	}
	.commercial-list-col .fl-col-content{
		justify-content: center;
	}
	.commercial-list-col .fl-col-content .fl-module-pp-infolist{
		width: calc(50% - 15px); 
	}
	.commercial-list-col .pp-list-items .pp-infolist-icon-inner img{
		width: 100%;
	}
}





@media only screen and (max-width:767px){
	.footer-list-info ul.pp-list-items li.pp-list-item .pp-list-item-content{
		justify-content: center;
	}
	.box-content-info.fl-node-yk7i2wuame0n ul.pp-list-items li.pp-list-item{
		width: 100%;
	}
	.about_list.fl-module-pp-infolist ul.pp-list-items li.pp-list-item .pp-list-item-content{
		align-items: flex-start;
		padding: 0px;
	}
	.about_list.fl-module-pp-infolist ul.pp-list-items li.pp-list-item.pp-list-item-2 .pp-icon-wrapper{
		display: none;
	}
	.google-review-module .pp-testimonials .owl-nav button.owl-next::before{
		right: 120px;
	}
	.google-review-module .pp-testimonials .owl-nav button.owl-prev::before{
		left: 120px;
	}
	.contact-form.fl-module-pp-gravity-form .ginput_container_radio .gfield_radio{
		grid-template-columns: repeat(1, 1fr);
    	grid-gap: 15px;
	}
	.contact-form .gform_wrapper.gravity-theme input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]){
		line-height: normal;
		min-height: auto;
	}
	.footer-bottom-menu ul.menu li a{
		padding-right: 0px;
	}
	.footer-bottom-menu ul.menu{
		grid-gap: 20px;
	}
	.contact-form.fl-module-pp-gravity-form .ginput_container_radio .gfield_radio{
		margin-top:10px;
	}
	.commercial-list-col .fl-col-content .fl-module-pp-infolist{
		width: 100%;
	}
	.fl-module-pp-infolist.box-content-info ul.pp-list-items li.pp-list-item .pp-heading-wrapper{
		padding: 20px 25px 35px;
	}


}



@media only screen and (max-width:480px){
	.our-service-section .fl-row-content-wrap{
		background-image: url(assets/images/services-mobile.jpg);
	}
	.elevate-banner-section .fl-row-content-wrap{
		background-image: url(assets/images/elevate-mobile.jpg);
	}
	.trust-banner-section .fl-row-content-wrap{
		background-image: url(assets/images/trust-mobile.jpg);	
	}
	.contact-section .fl-row-content-wrap{
		background-image: url(assets/images/contact-mobile.jpg);	
	}
}









/**
 * 5.1  LARGE SCREENS ONLY
 * ---- (min-width: 993px)

 */
@media only screen and (min-width: 993px) {
    
}

/**
 * 5.2  MEDIUM AND SMALL SCREENS
 * ---- (max-width: 992px)
 */
@media only screen and (max-width: 992px) {
    
}

/**
 * 5.3  MEDIUM SCREENS ONLY
 * ---- (min-width: 769px and max-width: 992px)
 */
@media only screen and (min-width: 769px) and (max-width: 992px) {

}

/**
 * 5.4  MEDIUM AND LARGE SCREENS
 * ---- (min-width: 769px)
 */
@media only screen and (min-width: 769px) {

}

/**
 * 5.5  SMALL AND SMALLER SCREENS
 * ---- (max-width: 768px)
 */
@media only screen and (max-width: 768px) {
    header.sticky-activated {
		width: 100%;
		position: fixed !important;
		left: 0;
		right: 0;
		top: 0;
		z-index: 100;
		-webkit-animation: slide-down 0.7s;
		-moz-animation: slide-down 0.7s;
		animation: slide-down 0.7s;
	}
	.home header.sticky-activated {
		background-color: #ffffff;
	}
	header.sticky-activated .fl-row-content-wrap {
		-webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
		box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
	}
}

/**
 * 5.6  SMALL SCREENS ONLY
 * ---- (min-width: 481px and max-width: 768px)
 */
@media only screen and (min-width: 481px) and (max-width: 768px) {

}

/**
 * 5.7  GRAVITY FORMS DESKTOP
 * ---- (min-width: 641px)
 */
@media only screen and (min-width: 641px) {

}

/**
 * 5.8  GRAVITY FORMS RESPONSIVE
 * ---- (max-width: 640px)
 */
@media only screen and (max-width: 640px) {
	
}

/**
 * 5.9  SMALLER SCREENS ONLY
 * ---- (max-width: 480px)
 */
@media only screen and (max-width: 480px) {

}