/*
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;
}

body .fl-builder-content a.fl-button:active{
	top: 0px;
}
.header-nav nav.pp-menu-nav ul.sub-menu{
	padding: 10px 0px;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
}
.header-nav.fl-module-pp-advanced-menu ul.menu li.header-btn a{
	padding: 10px 22px;
	border: 2px solid #008BAC;
	border-radius: 76px;
	margin-left: 13px;
	display: inline-block;
}
.header-nav.fl-module-pp-advanced-menu ul.menu li.header-btn a:hover{
	background: #008BAC;
	color: #fff;
}
div.fl-node-htsrfioj7nc3 div.pp-advanced-menu.off-canvas ul.menu li.header-btn a{
	padding: 10px 22px;
	border: 2px solid #008BAC;
	border-radius: 76px;
	display: inline-block;
}
.header-nav.fl-module-pp-advanced-menu nav.pp-menu-nav{
	text-align: right;
}
.custom-title.fl-module-heading .fl-heading-text span{
	color: #008BAC;
}
.max-w-850.fl-module{
	max-width: 850px;
	margin: 0 auto;
}
.line-height-normal a.fl-button{
	line-height: normal !important;
}
.blurb-row.fl-col .pp-infolist-wrap .pp-list-item-content{
	padding: 0px;
}
.max-col-content.fl-col{
	float: none;
	margin-left: auto;
	margin-right: auto;
}
.custom-tab-section.fl-module-pp-advanced-tabs .pp-tabs-label{
	width: 50%;
	border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
.custom-tab-section.fl-module-pp-advanced-tabs.pricing-tab .pp-tabs-label,
.custom-tab-section.fl-module-pp-advanced-tabs.how-works-tab .pp-tabs-label,
.custom-tab-section.faq-tab.fl-module-pp-advanced-tabs .pp-tabs-label{
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
}
.custom-tab-section.fl-module-pp-advanced-tabs .pp-tabs-panel-content .tab-details{
	display: flex;
}
.custom-tab-section.fl-module-pp-advanced-tabs .pp-tabs-panel-content .tab-details.d-block{
	display: block;
	max-width: 980px;
	margin: 0 auto;
}
.custom-tab-section.fl-module-pp-advanced-tabs .pp-tabs-panel-content .tab-details.d-block table.pricing{
	width: 100%;
}
.custom-tab-section.fl-module-pp-advanced-tabs .pp-tabs-panel-content .tab-details.d-block table.pricing tr td{
	padding: 10px 15px;
	width: 50%;
}
.custom-tab-section.fl-module-pp-advanced-tabs .pp-tabs-panel-content .tab-details.d-block table.pricing tbody tr{
	border-bottom: 1px solid #008BAC;
}
.custom-tab-section .pp-tabs-panel-content .tab-details.d-block table.pricing thead td:first-child{
	background: #008bac;
	color: #fff;
	border-radius: 10px 0px 0px 0px;
}
.custom-tab-section .pp-tabs-panel-content .tab-details.d-block table.pricing thead td:last-child{
	background: #40A8C1;
	color: #fff;
	border-radius: 0px 10px 0px 0px;
}
.custom-tab-section.fl-module-pp-advanced-tabs .pp-tabs-panel-content .tab-details ul{
	width: 50%;
	padding-left: 0px;
	padding-right: 40px;
}
.custom-tab-section.fl-module-pp-advanced-tabs .pp-tabs-panel-content .tab-details .video-col{
	width: 50%;	
	padding: 0px 40px;
}
.custom-tab-section.fl-module-pp-advanced-tabs .pp-tabs-panel-content .tab-details .video-col iframe.wistia_embed{
	border-radius: 16px;
}
.custom-tab-section.fl-module-pp-advanced-tabs .pp-tabs-panel-content .tab-details ul li{
	list-style-type: none;
	margin-bottom: 5px;
	position: relative;	
	padding-left: 30px;
}
.pricing-tab.custom-tab-section.fl-module-pp-advanced-tabs .pp-tabs-panel-content .tab-details ul li{
	padding-left: 0px;
	margin-bottom: 0px;
	padding: 12px 0px;
	border-bottom: 1px solid #008BAC;
}
.custom-tab-section.fl-module-pp-advanced-tabs .pp-tabs-panel-content .tab-details ul li:before{
	position: absolute;
	content: " ";
	top: 0;
	left: 0;
	background-image: url(assets/images/blue-true.svg);
	background-repeat: no-repeat;
	background-position: center center;
	width: 17px;
	height: 17px;
}
.custom-tab-section.fl-module-pp-advanced-tabs .pp-tabs-panel-content .tab-details.no-checkmark ul li:before{
	display: none;
}
.custom-tab-section.fl-module-pp-advanced-tabs .pp-tabs-panel-content .tab-details.no-checkmark ul li{
	list-style-type: disc;
	padding-left: 0px;
}
.custom-tab-section.fl-module-pp-advanced-tabs .pp-tabs-panel-content .tab-details.no-checkmark ul{
	padding-left: 30px;
}
.pricing-tab.custom-tab-section.fl-module-pp-advanced-tabs .pp-tabs-panel-content .tab-details ul li:before{
	left: auto;
	right: 0;
	top: 50%;
    transform: translateY(-50%);
}
.custom-tab-section.fl-module-pp-advanced-tabs .pp-tabs-panel-content .custom-btn-group{
	display: flex;
	grid-gap: 6px;
	margin-top: 20px;
}
.pricing-tab.fl-module-pp-advanced-tabs .pp-tabs-panel-content .custom-btn-group{
	margin-top: 30px;
}
.custom-tab-section.fl-module-pp-advanced-tabs .pp-tabs-panel-content .custom-btn-group a.theme-btn{
	padding: 10px 22px;
	border-radius: 76px;
	font-family: "Poppins",sans-serif;
	border: 2px solid #008BAC;
	font-size: 15px;
	font-weight: 600;
}
.custom-tab-section.fl-module-pp-advanced-tabs .pp-tabs-panel-content .custom-btn-group a.theme-btn.bg-btn{
	background: #008BAC;
	color: #fff;
}
.custom-tab-section.fl-module-pp-advanced-tabs .pp-tabs-panel-content .custom-btn-group a.theme-btn.bg-btn:hover{
	background: #fff;
	color: #32312F;
}
.custom-tab-section.fl-module-pp-advanced-tabs .pp-tabs-panel-content .custom-btn-group a.theme-btn.non-bg-btn{
	background: #fff;
	color: #32312F;
}
.custom-tab-section.fl-module-pp-advanced-tabs .pp-tabs-panel-content .custom-btn-group a.theme-btn.non-bg-btn:hover{
	background: #008BAC;
    color: #fff;
}
.custom-tab-section.fl-module-pp-advanced-tabs .pp-tabs-panel-content{
	border-radius: 0px 0px 20px 20px;
}
.contact-form.fl-module-pp-gravity-form .gform_wrapper.gravity-theme .gform_validation_errors{
	padding: 20px;
	background: none;
	margin-bottom: 20px;
}
.contact-form.fl-module-pp-gravity-form .gform_wrapper.gravity-theme .gform_validation_errors h2{
	text-align: center;
}
.contact-form.fl-module-pp-gravity-form .gform_wrapper.gravity-theme select.gfield_select{
	padding: 0px 20px;
	border: 2px solid #D4EFFC;
	appearance: none;
	background-image: url(assets/images/down-aerrow.svg);
	background-repeat: no-repeat;
	background-position: 97% center;
	background-size: 14px;
	cursor: pointer;
}
.contact-form.fl-module-pp-gravity-form .gform_wrapper.gravity-theme textarea.textarea{
	border: 2px solid #D4EFFC;
}
.background-text.fl-module-rich-text{
	background: #008BAC;
	border-radius: 20px 20px 0px 0px;
}
.contact-details-text.fl-module-rich-text{
	border-radius: 0px 0px 20px 20px;
	box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.12);
}
.contact-details-text.fl-module-rich-text .fl-rich-text strong{
	color: #008BAC;
	font-weight: 600;
}
.contact-details-text.fl-module-rich-text .fl-rich-text a{
	text-decoration: underline;
	color: #32312F;
}
.inline-info-box.fl-module-info-box .infobox-left .uabb-image-content{
	margin-top: -40px;
    width: 185px;
    height: 220px;
    position: relative;
}
.inline-info-box.fl-module-info-box .infobox-left .uabb-image-content:before{
	position: absolute;
    content: " ";
    top: 22px;
    right: -10px;
    width: 270px;
    height: 450px;
    background-image: url(assets/images/frame.png);
    background-size: contain;
    background-repeat: no-repeat;
}
.inline-info-box.fl-module-info-box .infobox-left .uabb-image-content img.uabb-photo-img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100% !important;
	object-fit: cover;
}
.inline-info-box.fl-module-info-box .uabb-infobox-left-right-wrap{
	display: flex;
	align-items: center;
}
.faq-module .pp-faq .pp-faq-item:last-child{
	border-bottom: 1px solid #008BAC;
	padding-bottom: 10px;
}
.social-footer-icon.fl-module-pp-social-icons .pp-social-icons .pp-social-icon:last-child i.fa-twitter:before{
	display: none;
}
.social-footer-icon.fl-module-pp-social-icons .pp-social-icons .pp-social-icon:last-child a,
.share-icon .uabb-ss-button-twitter a.uabb-ss-grid-button-link{
	position: relative;
}
.social-footer-icon.fl-module-pp-social-icons .pp-social-icons .pp-social-icon:last-child a:before,
.share-icon .uabb-ss-button-twitter a.uabb-ss-grid-button-link:before{
	position: absolute;
	content: " ";
	top: 0;
	left: 0;
	width: 40px;
	height: 40px;
	background-image: url(assets/images/twitter.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 70px;
}
.custom-tab-section.pricing-tab .pp-tabs-panel .pp-tabs-panel-content,
.custom-tab-section.how-works-tab .pp-tabs-panel .pp-tabs-panel-content,
.custom-tab-section.faq-tab .pp-tabs-panel .pp-tabs-panel-content{
	box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
}
.post-sidebar.fl-module .fl-post-text{
	padding: 0px;
}
.post-sidebar.fl-module .fl-post-image{
	position: relative;
	height: 150px;
	border-radius: 10px;
	overflow: hidden;
}
.post-sidebar.fl-module .fl-post-image img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.post-sidebar.fl-module .fl-post-text h2.fl-post-title{
	color: #32312F;
	font-family: "Poppins",sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	margin-top: 10px;
}
.post-sidebar.fl-module .fl-post-text h2.fl-post-title span{
	content: " >";
    margin-left: 9px;
    color: #008BAC;
    font-weight: 500;
    font-size: 24px;
    line-height: 0.2;
    display: inline-block;
    vertical-align: middle;
}
.post-sidebar.fl-module .fl-post-text h2.fl-post-title a:hover{
	color: #32312F;
}
.post-sidebar.fl-module .fl-post-feed-post{
	border-bottom: none;
}
.icon-btn.fl-module-button a.fl-button i.fl-button-icon{
	color: #008BAC;
	font-size: 18px;
}
.post-pagination.fl-module-fl-post-navigation .nav-links .nav-previous{
	text-align: right;
}
.post-pagination.fl-module-fl-post-navigation .nav-links .nav-next{
	text-align: left;
}
.post-pagination.fl-module-fl-post-navigation .nav-links .nav-previous a,
.post-pagination.fl-module-fl-post-navigation .nav-links .nav-next a{
	position: relative;
}
.post-pagination.fl-module-fl-post-navigation .nav-links .nav-next a:before{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	content: " ";
	background-image: url(assets/images/right-nav.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	width: 10px;
	height: 10px;
}
.post-pagination.fl-module-fl-post-navigation .nav-links .nav-previous a:before{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	content: " ";
	background-image: url(assets/images/left-nav.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	width: 10px;
	height: 10px;
}
.case-study-section.fl-module .fl-post-feed-post{
	border-bottom: none;
}
.case-study-section.fl-module .fl-post-feed-post .custom-container{
	display: flex;
	align-items: center;
	max-width: 1280px;
	margin: 0 auto;
	padding: 60px 0px;
	grid-gap: 40px;
}
.case-study-section.fl-module .custom-container .fl-post-image,
.case-study-section.fl-module .custom-container .fl-post-text,
.case-study-section.fl-module .custom-container .deafult-img{
	width: 50%;
	margin: 20px;
	padding: 0px;
}

.case-study-section.fl-module .fl-post-feed-post .fl-post-text .fl-post-more-link{
	margin-top: 25px;
}
.case-study-section.fl-module .fl-post-feed-post .fl-post-text .fl-post-more-link a,
.blog-banner-col.fl-module .fl-post-feed-post .fl-post-text .fl-post-more-link a,
.blog-post-list.fl-module .fl-post-column .fl-post-more-link a,
.blog-post-list.fl-module .fl-post-column .fl-post-grid-content a.fl-post-grid-more,
.solution-innerdiv p a,
.brand-slider .brand-text-div .read-btn a{
	padding: 10px 22px;
	border-radius: 76px;
	font-family: "Poppins",sans-serif;
	font-weight: 600;
	font-size: 15px;
	display: inline-block;
}
div.case-study-section.fl-module div.fl-post-feed-post:first-child div.fl-post-more-link a,
.blog-banner-col.fl-module .fl-post-feed-post .fl-post-text .fl-post-more-link a{
	background: #fff;
	color: #32312F;
	border: 2px solid #fff;
}
div.case-study-section.fl-module div.fl-post-feed-post:first-child div.fl-post-more-link a:hover,
.blog-banner-col.fl-module .fl-post-feed-post .fl-post-text .fl-post-more-link a:hover{
	background: #D4EFFC;
	border: 2px solid #D4EFFC;
}
.case-study-section.fl-module .fl-post-feed-post:nth-child(even) .fl-post-more-link a,
.case-study-section.fl-module .fl-post-feed-post:nth-child(odd) .fl-post-more-link a,
.blog-post-list.fl-module .fl-post-column .fl-post-more-link a,
.blog-post-list.fl-module .fl-post-column .fl-post-grid-content a.fl-post-grid-more,
.solution-innerdiv p a,
.brand-slider .brand-text-div .read-btn a{
	background: #008BAC;
	color: #fff;
	border: 2px solid #008BAC;
}
.case-study-section.fl-module .fl-post-feed-post:nth-child(even) .fl-post-more-link a:hover,
.case-study-section.fl-module .fl-post-feed-post:nth-child(odd) .fl-post-more-link a:hover,
.blog-post-list.fl-module .fl-post-column .fl-post-more-link a:hover,
.blog-post-list.fl-module .fl-post-column .fl-post-grid-content a.fl-post-grid-more:hover,
.solution-innerdiv p a:hover,
.brand-slider .brand-text-div .read-btn a:hover{
	background: #fff;
	border: 2px solid #008BAC;
	color: #32312F;
}

.case-study-section.fl-module .fl-post-feed-post .fl-post-image img{
	border-radius: 16px;
}
.case-study-section.fl-module .fl-post-feed .fl-post-feed-post:first-child,
.case-study-section.fl-module .fl-post-feed .fl-post-feed-post:nth-child(even),
.case-study-section.fl-module .fl-post-feed .fl-post-feed-post:nth-child(odd){
	position: relative;
	overflow: visible;
}
.case-study-section.fl-module .fl-post-feed .fl-post-feed-post:first-child:before,
.case-study-section.fl-module .fl-post-feed .fl-post-feed-post:nth-child(even):before,
.case-study-section.fl-module .fl-post-feed .fl-post-feed-post:nth-child(odd):before{
	content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 100vw;
    height: 100%;
    transform: translateX(-50%);
    z-index: 1;
}
.case-study-section.fl-module .fl-post-feed .fl-post-feed-post:first-child:before{
	background-image: url(assets/images/dark-blue-pattern.jpg)!important;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.case-study-section.fl-module .fl-post-feed .fl-post-feed-post:nth-child(odd):before{
	background-image: url(assets/images/light-blue-pattern.jpg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.case-study-section.fl-module .fl-post-feed .fl-post-feed-post:first-child .fl-post-text{
	color: #fff;
	overflow: visible;
}
.case-study-section.fl-module .fl-post-feed .fl-post-feed-post .fl-post-title{
	font-family: "Poppins",sans-serif;
	font-size: 31px;
	font-weight: 600;
	margin-bottom: 20px;
	line-height: 1.3;
}
.case-study-section.fl-module .fl-post-feed .fl-post-feed-post:first-child .fl-post-title a{
	color: #fff;
}
.case-study-section.fl-module .fl-post-feed .fl-post-feed-post:nth-child(even) .custom-container{
	flex-direction: row-reverse;
}


.category-detail-content .detail-innerdiv,
.category-solution-content .solution-innerdiv{
	max-width: 720px;
	margin: 0 auto;
}

.single-category-page-content .category-solution-content{
	padding-top: 90px;
	padding-bottom: 85px;
}
.single-category-page-content .category-detail-content{
	padding-top: 45px;
	padding-bottom: 60px;
}
.single-category-page-content .category-solution-content{
	background-image: url(assets/images/light-blue-pattern.jpg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.detail-innerdiv h2 span,
.solution-innerdiv h2 span{
	color: #008BAC;
}
.detail-innerdiv h2,
.solution-innerdiv h2{
	font-family: "Poppins",sans-serif;
	font-size: 28px;
	font-weight: 600;
}
.blog-banner-col.fl-module .fl-post-feed-post{
	display: flex;
	align-items: center;
}
.blog-banner-col.fl-module .fl-post-feed-post .fl-post-image,
.blog-banner-col.fl-module .fl-post-feed-post .fl-post-text{
	width: 50%;
}
.blog-banner-col.fl-module .fl-post-feed-post .fl-post-image{
	margin-right: 20px;
	position: relative;
	height: 320px;
}
.blog-banner-col.fl-module .fl-post-feed-post .fl-post-image img{
	border-radius: 16px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-position: center;
	object-fit: cover;
}
.blog-banner-col.fl-module .fl-post-feed-post .fl-post-text{
	margin-left: 20px;
}
.blog-banner-col.fl-module .fl-post-feed-post .fl-post-text h2.fl-post-title{
	font-family: "Poppins",sans-serif;
	font-size: 20px;	
}
.blog-banner-col.fl-module .fl-post-feed-post .fl-post-text h2.fl-post-title a,
.blog-banner-col.fl-module .fl-post-feed-post .fl-post-text .fl-post-excerpt,
.blog-banner-col.fl-module .fl-post-feed-post .fl-post-text .fl-post-meta,
.blog-banner-col.fl-module .fl-post-feed-post .fl-post-text .fl-post-meta a{
	color: #fff;
}
.blog-banner-col.fl-module .fl-post-feed-post .fl-post-text .fl-post-more-link{
	margin-top: 20px;
}
.blog-post-list.fl-module .fl-post-column .fl-post-grid-post{
	border: none;	
}
.blog-post-list.fl-module .fl-post-column .fl-post-image,
.blog-post-list.fl-module .fl-post-column .fl-post-grid-image,
.page-latest-post .brand-slider .brand-img-div{
	position: relative;
	height: 270px;
	width: 100%;
	border-radius: 20px;
	overflow: hidden;
}
.blog-post-list.fl-module .fl-post-column .fl-post-image img,
.blog-post-list.fl-module .fl-post-column .fl-post-grid-image img,
.page-latest-post .brand-slider .brand-img-div img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
	object-position: center;
	object-fit: cover;
}
.blog-post-list.fl-module .fl-post-column .fl-post-text,
.blog-post-list.fl-module .fl-post-column .fl-post-grid-text{
	padding: 20px 10px;
}
.blog-post-list.fl-module .fl-post-column .fl-post-title,
.blog-post-list.fl-module .fl-post-column .fl-post-grid-title,
.brand-slider .brand-text-div .title-div p{
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2;
}
.blog-post-list.fl-module .fl-post-column .fl-post-title a:hover,
.blog-post-list.fl-module .fl-post-column .fl-post-grid-title a:hover,
.blog-post-list.fl-module .fl-post-column .fl-post-grid-meta a:hover
{
	color: #32312F;
}
.blog-post-list.fl-module .fl-post-column .fl-post-more-link a,
.blog-post-list.fl-module .fl-post-column .fl-post-grid-content a.fl-post-grid-more{
	margin-top: 20px;
}
.blog-post-list.fl-module .fl-post-column .fl-post-meta a,
.blog-post-list.fl-module .fl-post-column .fl-post-grid-meta a{
	color: #32312F;
}
.blog-post-list.fl-module .fl-post-column .fl-post-excerpt,
.blog-post-list.fl-module .fl-post-column .fl-post-grid-content p{
	overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
	font-size: 16px;
}
.blog-insight-heading.fl-module .fl-html{
	max-width: 420px;
	margin: 0 auto;
}
.blog-insight-heading.fl-module .fl-html h2{
	text-align: center;
	margin-bottom: 30px;
}
.blog-insight-heading.fl-module .fl-html h2 span{
	color: #008BAC;
}
.blog-insight-heading.fl-module .fl-html select.facetwp-dropdown{
	width: 100%;
	padding: 10px 22px;
    border-radius: 76px;
	border: 2px solid #008BAC;
	appearance: none;
	background-image: url(assets/images/down-aerrow.svg);
	background-repeat: no-repeat;
	background-position: 97% center;
	background-size: 14px;
	cursor: pointer;
}
.blog-insight-heading.fl-module .fl-html select.facetwp-dropdown:focus,
.blog-insight-heading.fl-module .fl-html select.facetwp-dropdown:focus-visible{
	border: 2px solid #008BAC !important;
	outline: none;
}
.blog-post-list.latest-post .fl-builder-pagination{
	display: none;
}
.blog-post-list.fl-module .fl-post-grid-post{
	background: transparent;
}
.blog-paginations.fl-module .facetwp-pager a.facetwp-page{
	margin: 0px 20px;
}
.blog-paginations.fl-module .facetwp-pager a.facetwp-page.active{
	padding: 5px 15px;
    border: 1px solid #008BAC;
	font-weight: normal;
	color: #008BAC;
}
.blog-paginations.fl-module .facetwp-pager a.facetwp-page{
	color: #909090;
}
.blog-paginations.fl-module .facetwp-pager a.facetwp-page.next,
.blog-paginations.fl-module .facetwp-pager a.facetwp-page.prev{
	color: #32312F;
	position: relative;
}
.blog-paginations.fl-module .facetwp-pager a.facetwp-page.prev{
	padding-left: 20px;
}
.blog-paginations.fl-module .facetwp-pager a.facetwp-page.prev:before{
	content: " ";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-image: url(assets/images/left-nav.svg);
    background-repeat: no-repeat;
    background-position: center;
    width: 15px;
    height: 15px;
}
.blog-paginations.fl-module .facetwp-pager a.facetwp-page.next{
	padding-right: 20px;
}
.blog-paginations.fl-module .facetwp-pager a.facetwp-page.next:before{
	content: " ";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-image: url(assets/images/right-nav.svg);
    background-repeat: no-repeat;
    background-position: center;
    width: 15px;
    height: 15px;
}
.details-case-img .fl-photo-content img{
	box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.10);
}
.gform_validation_errors{
	background: #ff0000 !important;
	padding: 10px !important;
	margin-bottom: 10px !important;
}
.gform_validation_errors h2{
	color: #fff !important;
	text-align: center;
}
.icon-btn a.fl-button:hover i.fl-button-icon {
	color: #fff;
}
.page-latest-post .brand-slider{
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
}
.contact-details-text.fl-module-rich-text .fl-rich-text a:hover{
	color: #008bac;
}
.brand-slider .brand-text-div{
	padding: 10px;
}
.brand-slider .brand-text-div p{
	margin-bottom: 5px;
	color: #32312F;
	font-size: 16px;
}
.brand-slider .brand-text-div .read-btn{
	margin-top: 25px;
}
.case-study-section.fl-module .fl-post-feed-post{
	display: flex;
	align-items: center;
	padding: 70px 0px;
}
.case-study-section.fl-module .fl-post-feed-post .fl-post-image{
	width: 50%;
	margin-right: 20px;
	z-index: 2;
}
.case-study-section.fl-module .fl-post-feed-post .fl-post-text{
	width: 50%;
	margin-left: 20px;
	z-index: 2;
}
.case-study-section.fl-module .fl-post-feed-post:nth-child(even){
	flex-direction: row-reverse;
}
.case-study-section.fl-module .fl-post-feed-post:nth-child(even) .fl-post-image{
	margin-right: 0px;
	margin-left: 20px;
}
.case-study-section.fl-module .fl-post-feed-post:nth-child(even) .fl-post-text{
	margin-left: 0px;
	margin-right: 20px;
}
.case-study-section.fl-module .fl-builder-pagination ul.page-numbers li{
	margin: 0px 20px;
}
.case-study-section.fl-module .fl-builder-pagination ul.page-numbers li span,
.case-study-section.fl-module .fl-builder-pagination ul.page-numbers li a{
	padding: 5px 15px;
}
.case-study-section.fl-module .fl-builder-pagination ul.page-numbers li span{
	background: none;
	border: 1px solid #008bac;
}
.case-study-section.fl-module .fl-builder-pagination ul.page-numbers li a{
	border: none;
}
.case-study-section.fl-module .fl-builder-pagination ul.page-numbers li a.next,
.case-study-section.fl-module .fl-builder-pagination ul.page-numbers li a.prev{
	color: #32312F;
}
.case-study-section.fl-module .fl-builder-pagination ul.page-numbers li a:hover{
	background: none;
}
.case-study-section.fl-module .fl-post-feed-post .deafult-img{
	z-index: 2;
}
.brand-text-div .title-div{
	margin: 20px 0px;
}
.blurb-row.fl-col .fl-module-pp-infolist .pp-heading-wrapper .pp-infolist-title h4{
	margin-bottom: 0px;
}
.fl-button-lightbox-content .gform_heading{
	display: none;
}
.tab-details strong,
.blurb-row strong{
	font-weight: 600;
}
.custom-tab-section.how-works-tab .fl-module-pp-infolist .pp-list-item-content .pp-infolist-description ul li{
	margin-bottom: 10px;
	list-style-type: disc;
}
.custom-tab-section.faq-tab.fl-module-pp-advanced-tabs .pp-tabs-label{
	width: 25%;
}
.fl-button-lightbox-content .gform_wrapper.gravity-theme input[type=text],
.fl-button-lightbox-content .gform_wrapper.gravity-theme input[type=email]{
	font-size: 16px;
	color: #32312F;
	font-family: "Poppins",sans-serif;
	border-radius: 25px;
    outline: none;
    padding: 10px 20px;
}
.fl-button-lightbox-content .gform_wrapper.gravity-theme input[type=text]::placeholder,
.fl-button-lightbox-content .gform_wrapper.gravity-theme input[type=email]::placeholder{
	color: #32312F;
	font-size: 16px;
	font-family: "Poppins",sans-serif;
}
.fl-button-lightbox-content .gform_wrapper.gravity-theme .gform_footer input[type=submit]{
	padding: 10px 22px;
	border: 2px solid #008BAC;
}
.fl-button-lightbox-content .gform_wrapper.gravity-theme .gform_footer{
	justify-content: center;
}
.fl-button-lightbox-content .gform_wrapper.gravity-theme .gform_footer input[type=submit]:hover{
	background: #fff;
	border: 2px solid #008BAC;
	color: #32312F;
}
div.fl-button-lightbox-content.fl-node-zkpsiu7v92mb-0,
div.fl-button-lightbox-content.fl-node-yqu9ak28v0p3-0{
	padding: 35px 20px 10px !important;
	background-image: url(assets/images/mobile-light-pattern.jpg);
}
.mfp-wrap div.fl-button-lightbox-content.fl-node-zkpsiu7v92mb-0 button.mfp-close,
.mfp-wrap div.fl-button-lightbox-content.fl-node-yqu9ak28v0p3-0 button.mfp-close,
.mfp-wrap div.fl-button-lightbox-content.fl-node-zkpsiu7v92mb-0 button.mfp-close:hover,
.mfp-wrap div.fl-button-lightbox-content.fl-node-yqu9ak28v0p3-0 button.mfp-close:hover{
	right: -4px;
	top: -5px !important;
}
.brand-img-div .inner-img{
	max-width: 720px;
	margin: 0 auto;
}
.brand-img-div .inner-img .brand-inner-img-div{
	position: relative;
	height: 360px;
}
.brand-img-div .inner-img .brand-inner-img-div img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.brand-img-div .inner-img img{
	border-radius: 16px;
}
.brand-img-div .inner-img{
	margin-top: -210px;
}
.tab-boxes.fl-module .fl-post-info-terms a{
	display: inline-block;
	padding: 10px;
	border: 1px solid #008BAC;
	margin-right: 5px;
    margin-bottom: 10px;
	color: #32312F;
}
.custom-tab-section.how-works-tab .fl-module-pp-infolist .pp-list-item-content .pp-infolist-description ul{
	padding-left: 20px;
}
.share-icon .uabb-ss-button-twitter .uabb-ss-icon i.fa-twitter:before{
	display: none;
}
.video-col .video-div{
	width: 100%;
    position: relative;
    height: 0;
    padding-bottom: 56.25%;
}
.blurb-row.fl-col-has-cols .fl-col-group{
	display: flex;
	flex-wrap: wrap;
}
.max-w-760.fl-module-heading .fl-module-content{
	max-width: 760px;
    margin: 0 auto;
}
.defance-industry-section .defence-list-module ul.pp-list-items{
	display: grid;
    grid-template-columns: repeat(3, 1fr);
	grid-gap: 20px;
    grid-row-gap: 70px;
}
.defance-industry-section .defence-list-module ul.pp-list-items li.pp-list-item{
	width: 100%;
	height: 100%;
}
.defance-industry-section .defence-list-module ul.pp-list-items li.pp-list-item .pp-list-item-content{
	height: 100%;
}
.defance-industry-section .defence-list-module ul.pp-list-items li.pp-list-item .pp-infolist-icon{
	margin-top: -40px;
}
.defance-industry-section .defence-list-module ul.pp-list-items li.pp-list-item .pp-heading-wrapper .pp-infolist-title{
	margin-bottom: 10px;
}
.addim-faq-section .faq-grid .pp-faq-collapse span.pp-faq-button-icon{
	display: none;
}
.addim-newsletter-form .addim-newsletter-form{
	max-width: 650px;
	margin: 0 auto;
}
.addim-newsletter-form .ginput_container_radio label.gform-field-label--type-inline{
	padding-left: 10px;
}
.addim-newsletter-form  input[type=radio],
.addim-newsletter-form  input[type=radio]:focus{
	appearance:none;
	width: 16px !important;
	height: 16px;
	border-radius: 50%;
	border: 1px solid #fff;
	position: relative;
	cursor: pointer;
	outline: none;
}
.addim-newsletter-form input[type=radio]:checked::after{
	content: "";
    background: #ffffff;
    width: 6px;
    height: 6px;
    top: 4px;
    left: 4px;
    position: absolute;
    border-radius: 50%;
}
.use-addim-section .addim-info-box .pp-heading-wrapper .pp-infobox-title-prefix,
.use-addim-section .addim-info-box .pp-heading-wrapper .pp-infobox-title{
	margin: 0px;
}
.use-addim-section .addim-info-box .pp-heading-wrapper .pp-infobox-title > span{
	font-weight: normal !important;
	font-size: 16px !important;
}
.use-addim-section .addim-info-box .pp-heading-wrapper{
	padding: 15px 15px 15px 25px;
	background: #6ADED0;
}
.use-addim-section .addim-info-box.dark-green-bg .pp-heading-wrapper{
	background: #3ABDAD;
}
.use-addim-section .addim-info-box.dark-green-bg .pp-infobox-button{
	margin-top: 15px;
}
.use-addim-section .addim-info-box.diff-color .pp-heading-wrapper{
	background: #015A7F;
}
.use-addim-section .addim-info-box.heading-bg-diff .pp-heading-wrapper{
	background:#018DAE;
}
.use-addim-section .addim-info-box .pp-description-wrap{
	padding: 15px 20px 15px 25px;
}
.use-addim-section .addim-info-box .pp-description-wrap ul li{
	margin-bottom: 15px;
	position: relative;
	padding-left: 30px;
	line-height: 1.5;
}
.use-addim-section .addim-info-box .pp-description-wrap ul li:before{
	position: absolute;
    content: " ";
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-image: url(assets/images/green-check.svg);
    background-position: center center;
    background-size: contain;
	background-repeat: no-repeat;
	
}
.use-addim-section .addim-info-box .pp-description-wrap ul{
	padding-left: 0px;
	list-style-type: none;	
}
.use-addim-section .addim-info-box .pp-infobox-button{
	text-align: center;
}
.addim-newsletter-form.fl-module-pp-gravity-form{
	max-width: 680px;
	margin: 0 auto;
}
.addim-grid-logo.logo_section{
	max-width: 580px;
	margin: 0 auto;
	margin-top: 40px;
}
.max-w-880.fl-module-rich-text{
	max-width: 880px;
	margin: 0 auto;
}
.addim-newsletter-form .gform-field-label{
	margin-bottom: 0px !important;
}
.addim-newsletter-form .gform_ajax_spinner{
	margin-top: 15px;	
}
.fl-node-tecolfbgd1vy.addim-newsletter-form .pp-gf-content .gform_wrapper .gform_validation_errors>h2{
	color: #fff !important;
}
.addim-info-box.fl-module-pp-infobox{
	position: relative;
	z-index: 99;
}
.addim_banner_section.fl-row-bg-video:before,
.addim_banner_section.fl-row-bg-video .fl-row-fixed-width.fl-row-content:before,
.addim_banner_section .fl-node-sv5wqyab18nf:before,
.addim_banner_section .fl-node-sv5wqyab18nf .fl-node-mwuk584nrx7i:before{
	content: none;
	display: block;
}
.addim_banner_section.fl-row:before,
.addim_banner_section.fl-row:after,
.addim_banner_section.fl-row-content:before,
.addim_banner_section.fl-row-content:after,
.addim_banner_section .fl-col-group:before, 
.addim_banner_section .fl-col-group:after,
.addim_banner_section .fl-col:before,
.addim_banner_section .fl-col:after,
.addim_banner_section .fl-module:before,
.addim_banner_section .fl-module:after, 
.addim_banner_section .fl-module-content:before,
.addim_banner_section .fl-module-content:after{
	content: none;
	display: block;
}

.addim_banner_section > .fl-row-content-wrap::before{
    height: 100%;
    width: 100%;
    background: rgba(25, 18, 43, 0.40);
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "";
}
.addim_banner_section > .fl-row-content-wrap .fl-row-content{
    position: relative;
}
.addim_banner_section h1{
    font-family: 'Epilogue';
    font-size: 60px;
    font-style: italic;
    font-weight: bold;
    line-height: 76px;
    margin-top: 0px;
    margin-bottom: 20px;
    line-height: 1.2;
}
.addim_banner_section p{
    font-family: 'Epilogue';
    font-size: 24px;
    font-style: normal;
    font-weight: normal;
    line-height: 1.6;
}
body .speed_col_2{
    width: 44%;
    margin-left: 6%;
}
body .speed_col_2 h2{
    font-family: 'Epilogue';
    font-size: 40px;
    font-weight: bold;
}
body .speed_col_2 p{
    font-family: 'Epilogue';
    font-weight: normal;
}
.speed_section .fl-col-group{
    display: flex;
    align-items: center;
}
.changes_all_that_section .fl-col-group{
    position: relative;
}
.changes_all_that_section .fl-row-content-wrap , .why_section .fl-row-content-wrap{
    background: linear-gradient(90deg, #018DAE -4.93%, #3ABDAD 108.99%);
}
.changes_all_that_section .fl-row-content-wrap::before,
.why_section .fl-row-content-wrap::before{
    background: url(./assets/images/pattern.png);
    mix-blend-mode: color-burn;
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    content: "";
}
.changes_all_that_section h2{
    font-family: 'Epilogue';
    font-weight: bold;
}
.changes_all_that_section p{
    font-family: 'Epilogue';
    font-weight: normal
}
body .why_col_2{
    width: 49%;
    margin-left: 5%;
}
body .why_col_2 h2{
    font-family: 'Epilogue';
    font-size: 40px;
    font-weight: bold;
}
body .why_col_2 p{
    font-family: 'Epilogue';
    font-weight: normal;
}
.why_section .fl-col-group{
    display: flex;
    align-items: center;
    position: relative;
}
.opportunities_section h2{
    font-family: 'Epilogue';
    font-weight: bold;
}
.opportunities_section p{
    font-family: 'Epilogue';
    font-weight: normal;
}
/* .opportunities_section .fl-row-content-wrap::before{
    background: url(./assets/images/white_pattern.png);
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    content: "";
} */
.opportunities_section .fl-col-group{
    position: relative;
}
.opportunities_section .fl-col-group .fl-col{
    margin: 0 auto;
    float: none;
}
.opportunities_section .logo_col{
   position: relative;
}
.opportunities_section .logo_col::before{
    content: "";
    position: absolute;
    bottom: 10px; /* Position from bottom */
    width: 40px; /* Width of the icon */
    height: 28px; /* Height of the icon */
    background-image: url(./assets/images/plush.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
}
.opportunities_section .logo_col::before {
    left: calc(50% - 20px); /* Position the icon to the left of the middle */
}
.button{
    font-family: 'Epilogue';
    font-size: 40px;
    font-weight: 600;
}
.footer_section .fl-rich-text{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer_section .fl-rich-text p{
    font-family: "Epilogue";
    font-weight: normal;
    margin-bottom: 0px;
}
body .fl-builder-content .fl-node-725qecjo9rm8.opportunities_buttongroup .fl-button-group-buttons a.fl-button:hover{
	background-color: #fff!important;
}
body .fl-builder-content .fl-node-725qecjo9rm8.opportunities_buttongroup .fl-button-group-buttons a.fl-button:focus{
	background-color: #2db3ae;
}


/*---------------------------------------------------------addim page tab section css-----------------------------------------------------*/

.business-tab-section .pp-tabs-labels{
	display: flex !important;
	justify-content: center;
	grid-gap: 10px;
	padding-bottom: 25px;
}
.business-tab-section .pp-tabs-labels .pp-tabs-label{
	padding: 10px 20px;
    border-radius: 10px;
}
.business-tab-section .pp-tabs-labels .pp-tabs-label .pp-tab-label-inner .pp-tab-title{
	line-height: 1.3;
	font-weight: 600;
}
.business-tab-section .pp-tabs-labels .pp-tabs-label .pp-tab-label-inner .pp-tab-title span{
	color: #000000;
	font-weight: 400;
	font-size: 14px;
}
.business-tab-section .pp-tabs-labels .pp-tabs-label.pp-tab-active .pp-tab-label-inner .pp-tab-title span{
	color: #fff;
}
.plan-section .fl-row-content-wrap .fl-col-group {
	grid-gap: 20px;
}
.plan-section .fl-row-content-wrap .fl-col-group .fl-col{
	width: calc(33.33% - 20px);
	border-radius: 10px;
	border-top: 3px solid #008bac;
    overflow: hidden;
	box-shadow: 0px 2px 12px 0px rgba(20, 20, 43, 0.08);
}
.plan-section .fl-row-content-wrap .fl-col-group .fl-col .fl-module-button{
	margin-top: auto;
}
.business-tab-section .pp-tabs-panels .pp-tabs-panel-content{
	padding: 0px;
	padding-top: 30px;
}
.border-bottom-text .fl-rich-text p{
	padding-bottom: 15px;
}
.business-tab-section .pp-tabs-labels .pp-tabs-label:hover .pp-tab-title span{
	color: #fff;
}
.business-tab-section ul.uabb-info-list-wrapper li .uabb-info-list-description p{
	font-size: 14px;
}
.business-tab-section .pp-tabs-labels .pp-tabs-label:focus > .pp-tab-label-inner{
	border: none;
	outline: none;
}


@media only screen and (max-width:992px){
	.plan-section .fl-row-content-wrap .fl-col-group{
		justify-content: center;
	}
	.plan-section .fl-row-content-wrap .fl-col-group .fl-col{
		width: calc(50% - 20px);
		 flex: none;
	}
}


@media only screen and (max-width:767px){
	.plan-section .fl-row-content-wrap .fl-col-group .fl-col{
		width: 100%;
		margin-bottom: 20px;
	}
	.business-tab-section .pp-tabs-labels{
		display: none !important;
	}
	.business-tab-section .pp-tabs-label .pp-tab-label-flex{
		justify-content: center;
	}
	.business-tab-section .pp-tabs-panel-label .pp-toggle-icon,
	.business-tab-section .pp-tabs-label.pp-tab-active .pp-toggle-icon{
		display: none;
	}
	.business-tab-section .pp-tabs-horizontal.pp-tabs-default .pp-tabs-label{
		padding: 15px 10px;
        border-bottom: 1px solid #d3dbe3 !important;
		border-radius: 10px;
        margin-bottom: 5px;
	}
	.business-tab-section .pp-tabs-panel .pp-tab-label-inner .pp-tab-title{
		font-size: 16px;
		font-weight: 600;
	}
	.business-tab-section .pp-tabs-panel .pp-tab-label-inner .pp-tab-title span{
		font-size: 14px;
		font-weight: 400;
	}
	
}






/** 	
 * 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.
 =======================================================================================*/

/**
 * 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:1280px){
	.case-study-section.fl-module .fl-post-feed-post .custom-container{
		margin: 0px 20px;
	}
}

@media only screen and (max-width:1180px){
	.header-nav.fl-module-pp-advanced-menu .pp-advanced-menu-mobile{
		justify-content: flex-end;
	}
	div.fl-node-htsrfioj7nc3 div.pp-advanced-menu ul.sub-menu{
		background: transparent;
	}
	.brand-img-div{
		margin-top: 0px;
		padding-top: 60px;
	}
	.custom-tab-section.how-works-tab .fl-module-pp-infolist .pp-list-item-content{
		border-radius: 108px;
	}
	.custom-tab-section.faq-tab .pp-tabs-labels .pp-tabs-label .pp-tab-label-flex .pp-tab-title{
		font-size: 17px;
	}
	.use-addim-section .fl-col-group.fl-node-imol1jnq438w{
		display: flex;
		flex-wrap: wrap;
	}
	.use-addim-section .addim-info-box.dark-green-bg .pp-infobox-button{
		margin-top: 0px;
	}
	.addim-info-box-col.fl-col{
		display: flex;
	}
}

@media screen  and (max-width: 1080px) {
    br.break{
        display: none;
    }
}



@media only screen and (max-width:1024px){
	.case-study-section.fl-module .fl-post-feed-post .custom-container{
		grid-gap: 20px;
	}
	.custom-tab-section.faq-tab .pp-tabs-labels .pp-tabs-label .pp-tab-label-flex{
		display: block;
	}
	br.break{
		display: none;
	}
	
	
	
}


@media only screen and (max-width: 992px) {
	.inline-info-box.fl-module-info-box .infobox-left .uabb-image-content:before{
		width: 270px;
    	height: 275px;
	}
	.inline-info-box.fl-module-info-box .uabb-imgicon-wrap{
		margin-right: 30px;
	}
	.inline-info-box.fl-module-info-box .uabb-module-content{
		border-radius: 10px;
	}
	.page-latest-post .brand-slider{
		grid-template-columns: repeat(2, 1fr);
	}
	.custom-tab-section.fl-module-pp-advanced-tabs .pp-tabs-panel-content .tab-details .video-col{
		padding-left: 0;
	}
	.pricing-tab.custom-tab-section.fl-module-pp-advanced-tabs .pp-tabs-panel-content .tab-details ul li{
		padding-right: 20px;
	}
	.custom-tab-section.how-works-tab .fl-module-pp-infolist .pp-list-item-content{
		border-radius: 50px;
	}
	.custom-tab-section.faq-tab .pp-tabs-labels .pp-tabs-label .pp-tab-label-flex .pp-tab-title{
		font-size: 14px;
	}
	.custom-tab-section.faq-tab.fl-module-pp-advanced-tabs .pp-tabs-label{
		padding: 15px 5px;
	}
	.defance-industry-section .defence-list-module ul.pp-list-items{
		grid-template-columns: repeat(2, 1fr);
	}
	.ipad-column-none.fl-col{
		display: none;
	}
	.ipad-full-w.fl-col{
		width: 100%;
		margin-left: 0px;
	}
	div.ipad-img-block.fl-module-photo{
		display: block;
	}
	.addim-newsletter-form.fl-module-pp-gravity-form{
		max-width: 100%;
	}
	.defance-industry-section .defence-list-module ul.pp-list-items{
		grid-row-gap: 60px;
	}
	.ipad-text-center .fl-heading{
		text-align: center !important;
	}
	.addim-info-box-col .fl-node-content.fl-col-content{
		width: 100%;
	}
	.addim-grid-logo.logo_section{
		max-width: 100%;
    	margin: 0 auto;
	}
	 body .speed_col_2{
        margin-left: 4%;
    }
    .speed_section .fl-node-oqbiyxusz40w .fl-photo{
        text-align: center;
    }
	
    
}



@media only screen and (max-width:767px){
	.custom-tab-section.fl-module-pp-advanced-tabs .pp-tabs-label,
	.custom-tab-section.faq-tab.fl-module-pp-advanced-tabs .pp-tabs-label{
		width: 100%;
	}
	.custom-tab-section.fl-node-u82xej43yktp .pp-tabs .pp-tab-active.pp-tabs-label,
	.custom-tab-section.fl-node-u82xej43yktp .pp-tabs .pp-tabs-label,
	.custom-tab-section.goverment-tab .pp-tabs .pp-tab-active.pp-tabs-label,
	.supplier-tab.custom-tab-section .pp-tabs .pp-tab-active.pp-tabs-label,{
		background: #008BAC ;
		color: #fff ;
	}
	.custom-tab-section.how-works-tab .pp-tabs-panels .pp-tabs-panel:last-child .pp-tabs-panel-label{
		background: #008BAC;
		color: #fff;
	}
	.custom-tab-section.faq-tab.fl-module-pp-advanced-tabs .pp-tabs-label{
		background: #008BAC;
		color: #fff;
	}
	.national-tab.custom-tab-section .pp-tabs .pp-tabs-label.pp-tab-active{
		background-color: #008BAC;
    	color: #fff;
	}
	
	.custom-tab-section.fl-module-pp-advanced-tabs .pp-tabs-panel-content .tab-details{
		display: block;
	}
	.custom-tab-section.fl-module-pp-advanced-tabs .pp-tabs-panel-content .tab-details ul{
		width: 100%;
		padding-right: 0px;
	}
	.custom-tab-section.fl-module-pp-advanced-tabs .pp-tabs-panel-content .custom-btn-group{
		display: block;
	}
	.custom-tab-section.fl-module-pp-advanced-tabs .pp-tabs-panel-content .custom-btn-group a.theme-btn{
		display: block;
		width: 100%;
		text-align: center;
	}
	.custom-tab-section.fl-module-pp-advanced-tabs .pp-tabs-panel-content{
		border-radius: 0px;
	}
	.custom-tab-section .pp-tabs-panels .pp-tabs-panel:last-child .pp-tabs-panel-label,
	.custom-tab-section.how-works-tab .pp-tabs-panel .pp-tabs-panel-content,
	.custom-tab-section.faq-tab .pp-tabs-panels .pp-tabs-panel:last-child .pp-tabs-panel-content{
		border-radius: 0px 0px 12px 12px;
	}
	.custom-tab-section.faq-tab .pp-tabs-panels .pp-tabs-panel:last-child .pp-tabs-label{
		border-radius: 0px 0px 12px 12px;
	}
	div.custom-tab-section .pp-tabs-panel-label span.pp-toggle-icon,
	div.custom-tab-section .pp-tabs-panel-label.pp-tab-active span.pp-toggle-icon{
		color: #fff !important;
		opacity: 1;
	}
	.blurb-row.fl-col .fl-col-group .pp-infolist-wrap .pp-icon-wrapper{
		margin-left: 0;
		margin-right: auto;
	}
	.inline-info-box.fl-module-info-box .uabb-infobox-left-right-wrap{
		display: block;
	}
	.mobile-info-box.fl-module-info-box .uabb-imgicon-wrap{
		margin-top: -30px;
	}
	.mobile-info-box.fl-module-info-box .uabb-infobox-text-wrap{
		padding-right: 20px;
	}
	.mobile-info-box.fl-module-info-box .uabb-infobox-title-wrap{
		text-align: left;
	}
	.custom-tab-section.fl-module-pp-advanced-tabs .pp-tabs-panel-content .tab-details .video-col{
		width: 100%;
	}
	.case-study-section.fl-module .fl-post-feed-post .custom-container,
	.case-study-section.fl-module .fl-post-feed .fl-post-feed-post:nth-child(even) .custom-container,
	.blog-banner-col.fl-module .fl-post-feed-post{
		flex-direction: column;
	}
	.case-study-section.fl-module .custom-container .fl-post-image,
	.case-study-section.fl-module .custom-container .fl-post-text,
	.case-study-section.fl-module .custom-container .deafult-img{
		width: 100%;
	}
	.case-study-section.fl-module .fl-post-feed-post .custom-container{
		padding: 30px 0px;
	}
	.category-detail-content .detail-innerdiv, .category-solution-content .solution-innerdiv{
		margin: 0px 20px;
	}
	.blog-banner-col.fl-module .fl-post-feed-post .fl-post-image,
	.blog-banner-col.fl-module .fl-post-feed-post .fl-post-text{
		width: 100%;
		margin: 0px;
	}
	.blog-banner-col.fl-module .fl-post-feed-post .fl-post-text{
		padding: 10px 0px;
	}
	.page-latest-post .brand-slider{
		grid-template-columns: repeat(1, 1fr);
	}
	.page-latest-post .brand-slider .brand-div{
		display: none;
	}
	.page-latest-post .brand-slider .brand-div:first-child{
		display: block;
	}
	.case-study-single .nav-links{
		display: flex;
		align-content: center;
		padding: 0px 20px;
	}
	.new-page-next-prev.fl-node-u28zc0mdwr7g .nav-links{
		display: flex;
	}
	.case-study-section.fl-module .fl-post-feed-post{
		flex-direction: column;
	}
	.case-study-section.fl-module .fl-post-feed-post .fl-post-image{
		width: 100%;
	}
	.case-study-section.fl-module .fl-post-feed-post .fl-post-text{
		width: 100%;
	}
	.case-study-section.fl-module .fl-post-feed-post:nth-child(even){
		flex-direction: column;
	}
	.case-study-section.fl-module .fl-post-feed-post .fl-post-text{
		margin: 0;
		padding: 0;
		padding-top: 20px;
	}
	.case-study-section.fl-module .fl-post-feed-post .fl-post-image{
		margin-right: 0px;
	}
	.case-study-section.fl-module .fl-post-feed-post{
		margin: 0px;
	}
	.case-study-section.fl-module .fl-post-feed-post{
		padding: 45px 0px;
	}
	.post-sidebar .fl-post-feed{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 20px;
	}
	.case-study-section.fl-module .fl-post-feed-post:nth-child(even) .fl-post-image,
	.case-study-section.fl-module .fl-post-feed-post:nth-child(even) .fl-post-text{
		margin: 0px;
	}
	.custom-tab-section.how-works-tab .fl-module-pp-infolist .pp-list-item-content{
		padding: 40px 20px;
	}
	.custom-tab-section.faq-tab.fl-module-pp-advanced-tabs .pp-tabs-label{
		width: 100%;
		border-top-left-radius: 0px;
		border-top-right-radius: 0px;
	}
	.custom-tab-section.faq-tab.fl-module-pp-advanced-tabs .pp-tabs-panel:first-child .pp-tabs-label{
		border-top-left-radius: 12px;
		border-top-right-radius: 12px;
	}
	.custom-tab-section.faq-tab.fl-module-pp-advanced-tabs .pp-tabs-label{
		padding: 15px 20px;
	}
	div.fl-button-lightbox-content{
		padding: 30px 20px !important;
	}
	.fl-button-lightbox-content .gform_wrapper.gravity-theme .gform_footer {
		padding-bottom: 0px;
	}
	.case-study-section.fl-module .fl-post-feed .fl-post-feed-post:first-child:before{
		background-image: url(assets/images/mobile-dark-pattern.jpg)!mportant;
	}
	.case-study-section.fl-module .fl-post-feed .fl-post-feed-post:nth-child(odd):before,
	.single-category-page-content .category-solution-content{
		background-image: url(assets/images/mobile-light-pattern.jpg);
	}
	.brand-img-div .inner-img{
		margin: 0px 20px;
	}
	.faq-tab.custom-tab-section .faq-module .pp-faq-collapse .pp-faq-item:first-child{
		border-top: none;
	}
	.min-height-banner.fl-row .fl-row-content-wrap{
		min-height: 765px;
	}
	.custom-tab-section.fl-module-pp-advanced-tabs .fl-module-content .pp-tabs-panels .pp-tab-active.pp-tabs-panel-label,
	.custom-tab-section.fl-module-pp-advanced-tabs .fl-module-content .pp-tabs-panels .pp-tabs-label.pp-tabs-panel-label{
		background: #008BAC !important;
		color: #fff !important;
	}
	.footer-section.fl-row .fl-col-group.fl-node-i3v29axgnklo{
		display: flex;
		flex-wrap: wrap;
	}
	.post-single-left-col.fl-col{
		overflow: hidden;
	}
	.custom-search .fl-search-form-fields{
		flex-direction: column;
		grid-gap: 20px;
		justify-content: center;
	}
	.post-sidebar.fl-module .fl-post-image{
		height: 200px;
	}
	.blog-banner-col.fl-module .fl-post-feed-post .fl-post-image{
		height: 220px;
	}
	.contact-form .gform-body span#input_2_9_6_container{
		margin-bottom: 0px;
	}
	.contact-form .gform-body .gform_fields{
		grid-row-gap: 10px;
	}
	.defance-industry-section .defence-list-module ul.pp-list-items{
		grid-template-columns: repeat(1, 1fr);
	}
	.footer_section .fl-rich-text{
		flex-direction: column;
    	grid-gap: 13px;
	}
	.addim-info-box-col.fl-col{
		margin: 0px 20px 20px 20px;
	}
	.max-w-760.fl-module-heading .fl-module-content{
		margin: 0 20px;
	}
	.addim_banner_section p{
        line-height: 1.4;
		font-size: 16px;
   }
    .addim_banner_section p{
        font-size: 18px;
    }
	.addim_banner_section h1{
		margin-bottom: 10px;
	}
	.fl-col-small:not(.fl-col-small-full-width){
		max-width: 100%;
	}
}

/**
 * 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) {
	
	.mobile-btn-block.fl-module-button-group .fl-button-group-buttons{
		display: block;
	}
	.brand-slider .brand-text-div{
		padding: 10px 0px;
	}
	.mobile-btn-block.fl-module-button-group .fl-button-group-buttons .fl-button-wrap,
	.mobile-btn-block.fl-module-button a.fl-button{
		display: block;
		width: 100%;
	}
	.blurb-row.fl-col .fl-col-group{
		display: flex;
		flex-wrap: wrap;
	}
	.blurb-box.fl-module-pp-infolist .pp-list-item-content{
		align-items: start;
	}
	.blog-paginations.fl-module .facetwp-pager a.facetwp-page{
		margin: 0px 5px;
	}
	.blog-paginations.fl-module .facetwp-pager a.facetwp-page.active{
		padding: 3px 10px;
	}
	.brand-slider .brand-text-div .read-btn a{
		display: block;
		text-align: center;
	}
	.pricing-tab.custom-tab-section.fl-module-pp-advanced-tabs .pp-tabs-panel-content .tab-details ul li {
    	padding: 12px 10px 12px 0px;
    
	}
	.mobile-btn-block a.fl-button{
		text-align: center;
	}
	.pricing-tab.custom-tab-section .pp-tabs-panel-label,
	.national-tab.custom-tab-section .pp-tabs-panel-label{
		padding: 20px 10px !important;
	}
	div.case-study-section.fl-module div.fl-post-feed-post:first-child div.fl-post-more-link a,
	.blog-banner-col.fl-module .fl-post-feed-post .fl-post-text .fl-post-more-link a,
	.blog-post-list.fl-module .fl-post-column .fl-post-more-link a{
		width: 100%;
		text-align: center;
	}
	.subscribe-form.fl-module-pp-gravity-form .gform_footer.before{
		display: block;
	}
	.subscribe-form.fl-module-pp-gravity-form .gform_footer.before input[type=submit]{
		width: 100% !important;
	}
	.post-sidebar .fl-post-feed{
		display: block;
		width: 100%;
	}
	.fl-button-lightbox-content .gform_wrapper.gravity-theme .gform_footer{
		display: block;
	}
	.fl-button-lightbox-content .gform_wrapper.gravity-theme .gform_footer input[type=submit]{
		width: 100%;
	}
	

}

@media only screen and (min-width:480px){
	.mobile-info-box.fl-module-info-box .uabb-infobox-title-wrap h3.uabb-infobox-title > br{
		display: none;
	}
}