/* @import url('http://example.com/example_style.css'); */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* fallback */
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/materialicons/v140/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2) format('woff2');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

/**
 * CSS @imports must be at the top of the file.      
 * Add them above this section.                             
 */

/* ==========================================================================


   1. BASE STYLES                                             


   ========================================================================== */


/** 
 * Box Sizing
 * 
 * Applies a natural box layout model to all elements so that width and padding 
 * are essentially combined, making responsive styles easier to manage.
 */

*, *:before, *:after { -webkit-box-sizing: border-box; box-sizing: border-box;
}

:root{
	--containerw: calc((100vw - 1440px) / 2);
}

html{
	font-size: 1rem;
}
html, body {
  min-height: 100%;
  margin: 0;
  padding: 0;
} 

/* Website background color and default font styles */
body {
  background: #fff;
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.4;
}

/**
 * Page Center
 *
 * Apply .page-center to full-width modules.
 */

.container {
	float: none;
	max-width: 1440px;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
}

img{
    max-width: 100%;
    height: auto;
}

a { 
    text-decoration: none;
    outline: none;
    color: #000;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}
a:hover, a:focus { 
    text-decoration: none;
    outline: none;
    color: #38B6FF; 
}

hr {
  color: #ccc;
  background-color: #ccc;
  height: 1px;
  border: none;
}

/* Highlighted Text */
::-moz-selection {
  color: #fff;
  background: #38B6FF;
  text-shadow: none;
}
::selection {
  color: #fff;
  background: #38B6FF;
  text-shadow: none;
}


/* ==========================================================================
   Typography
   ========================================================================== */


/* Basic text */
p {
    margin: 0 0 15px;
} 
p:last-child{
    margin: 0;
}
small {}
strong {
    font-weight: 700;
}
em {}
cite {}
code {}
pre {}

sup, sub {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sup { top: -0.5em; }
sub { bottom: -0.25em; }

/* Headings */
h1, h2, h3, h4, h5, h6 {
    margin: 0px 0 15px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {}


h1 {
    font-size: 60px;
	line-height: 75px;
}
h2 {
    font-size: 48px;
	line-height: 1.4;
}
h3 {
    font-size: 36px;
	line-height: 1.4;
}
h4 {
    font-size: 30px;
	line-height: 1.4;
}
h5 {
    font-size: 24px;
	line-height: 1.4;
}
h6 {
    font-size: 22px;
	line-height: 1.4;
}

/* Lists */
ul, ol {}
ul ul, ul ol, ol ol, ol ul {}
li {}

ul.unstyled, ol.unstyled {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Quotes */
blockquote {}
blockquote p {}
blockquote small {}
blockquote small:before {}

q:before, q:after, blockquote:before, blockquote:after {}

.cmn_padd{
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
}
.cmn_padd_top{
	padding-top: 6.25rem;
	padding-bottom: 0;
}
.cmn_padd_bottom{
	padding-bottom: 6.25rem;
	padding-top: 0;
}
a.cmn_btn {
    background-color: #FFC700;
    display: inline-block;
    padding: 19px 50px 20px;
    font-size: 18px;
	line-height: 1;
    text-transform: uppercase;
    color: #015963;
    font-weight: 600;
    position: relative;
	text-align: center;
	white-space: normal;
	overflow: hidden;
	z-index: 1;
}
a.cmn_btn:hover{
	background-color: #015963;
	color: #fff;
}
a.cmn_btn:before,
a.cmn_btn:after {
    content: "";
    position: absolute;
    left: 0;
    height: 50%;
    width: 100%;
    background-color: #015963;
	z-index: -1;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
}
a.cmn_btn:before {
    top: -50%;
}
a.cmn_btn:hover:before {
	top: 0;
}
a.cmn_btn:after {
    bottom: -50%;
}
a.cmn_btn:hover:after {
	bottom: 0;
}

.alm-btn-wrap .alm-load-more-btn {
    background-color: #FFC700 !important;
    display: inline-block !important;
    padding: 19px 50px 20px !important;
    font-size: 16px !important;
	line-height: 1 !important;
    text-transform: uppercase !important;
    color: #015963 !important;
    font-weight: 600 !important;
    position: relative !important;
	text-align: center !important;
	white-space: normal !important;
	overflow: hidden !important;
	z-index: 1 !important;
	height: auto !important;
	border-radius: 0px !important;
	margin: 40px 0 0 !important;
}
.alm-btn-wrap .alm-load-more-btn:hover{
	background-color: #015963 !important;
	color: #fff !important;
}



.title h6 {
    color: #FFC700;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 6.6px;
    text-transform: uppercase;
    margin: 0 0 20px;
}
.title h2 {
    color: #015963;
    font-weight: 800;
    line-height: normal;
    margin: 0;
}
.title p{
    color: #015963;
}
.ubhide {
  display: none;
}
.ubhidden_item{
	display: none !important;
}
.ub_graybg{
	background-color: #f5f5f5;
}
.pg_cntwrap {
    color: #000;
}

/* ==========================================================================
   Header
   ========================================================================== */

.header_top {
    background-color: #d92927;
    padding: 10px;
    color: #fff;
}
.header_top > .container > .row {
    align-items: center;
}
.header_top i.fa {
    margin-right: 10px;
}
.header_top .conemail {
    text-align: right;
}
.header_top a {
    color: #fff;
}
.header_top a:hover {
    color: #000;
    font-weight: 700;
}
.custom_header {
    position: relative;
    background-color: #fff;
	z-index: 10;
}
.custom_header .ct_logo_wrapper {
    padding: 20px 0;
}
.custom_header .ct_logo_wrapper img.custom-logo {
    max-width: 140px;
}
.main_header .mainmenu .primary-menu-container > ul {
    list-style: none;
    margin: 0;
    padding: 0;
	text-align: right;
}
.main_header .mainmenu .primary-menu-container > ul > li {
    display: inline-block;
	position: relative;
	margin-right: 60px; 
}
.main_header .mainmenu .primary-menu-container > ul > li:last-child{
	margin: 0;
}
.main_header .mainmenu .primary-menu-container > ul > li > a {
	color: #181818;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: block;
    padding: 40px 0px 41px;
}
/*.main_header .mainmenu .primary-menu-container > ul > li.current-menu-item > a,
.main_header .mainmenu .primary-menu-container > ul > li:hover > a,
.main_header .mainmenu .primary-menu-container > ul > li > a:hover{
	color: #FFC700;
}*/
.main_header .mainmenu .primary-menu-container > ul > li.menu-item-has-children > a:after{
	content: "\f107";
	display: inline-block;
    font-family: FontAwesome;
    font-size: inherit;
	margin-left: 5px;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/*=== Submenu Css ===*/

.main_header .mainmenu .primary-menu-container > ul > li ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    background-color: #015963;
    min-width: 275px;
    list-style: none;
    margin: 0;
    padding: 0;
	display: none;
    box-shadow: 0px 0px 10px rgba(20 92 164 / 50%);
}
.main_header .mainmenu .primary-menu-container > ul > li:nth-last-child(1) ul.sub-menu,
.main_header .mainmenu .primary-menu-container > ul > li:nth-last-child(2) ul.sub-menu{
	top: 100%;
    left: auto;
	right: 0;
} 
.main_header .mainmenu .primary-menu-container > ul > li:hover > ul.sub-menu > li:hover > ul.sub-menu,
.main_header .mainmenu .primary-menu-container > ul > li:hover > ul.sub-menu{
	display: block;
}
.main_header .mainmenu .primary-menu-container > ul > li > ul.sub-menu > li > ul.sub-menu {
    top: 0;
    left: 100%;
}
.main_header .mainmenu .primary-menu-container > ul > li ul.sub-menu li > a {
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: block;
    padding: 50px 0px 51px;
    padding: 15px 40px 15px 15px;
    display: block;
    background-color: transparent;
	position: relative;
	text-align: left;
}
.main_header .mainmenu .primary-menu-container > ul > li ul.sub-menu li:hover > a, 
.main_header .mainmenu .primary-menu-container > ul > li ul.sub-menu li > a:hover {
    background-color: #35a5b9;
}
.main_header .mainmenu .primary-menu-container > ul > li ul.sub-menu li.menu-item-has-children > a:after{
	content: "\f0da";
    display: inline-block;
    font-family: FontAwesome;
    font-size: inherit;
    margin-left: 0px;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    right: 15px;
    font-size: 20px;
    line-height: 1;
    top: 10px;
}



/* ==========================================================================
   Footer
   ========================================================================== */


/*=== Footer Top Css ===*/

.footer_top {
    background: linear-gradient(180deg, #015963 0%, #015963 100%);
    padding: 100px 0;
    color: #fff;
}
.footitle h6 {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}
.footer_menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer_menu ul li {
    display: block;
    padding: 12px 0;
}
.footer_menu ul li a {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
}
/* .footer_menu ul li.current-menu-item a, */
.footer_menu ul li a:hover{
	color: #FFC700;
}
.footer_contact .fconitem:not(:last-child) {
    margin-bottom: 20px;
}
.footer_contact .fconitem {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}
.footer_contact .fconitem .ficon {
    max-width: 25px;
    padding: 0;
}
.footer_contact .fconitem .fcontext {
    max-width: calc(100% - 25px);
    padding-left: 10px;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}
.footer_contact .fconitem .fcontext a{
	color: #fff;
}
.footer_contact .fconitem .fcontext a:hover{
	color: #FFC700;
}
.footer_logo {
    margin-bottom: 40px;
}
.hcon_item.si_icon h5 {
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    margin: 0 0 15px;
}
ul.social_list {
    list-style: none;
    margin: 0;
    padding: 0;
}
ul.social_list li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}
ul.social_list li a {
    height: 38px;
    width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1E4FAD;
    border-radius: 100%;
    font-size: 22px;
    line-height: 40px;
    color: #fff;
}
.si_icon ul.social_list li:nth-child(1) a{
	background-color: #1E4FAD;
} 
.si_icon ul.social_list li:nth-child(2) a{
	background-color: #007AB5;
}
.si_icon ul.social_list li:nth-child(3) a{
	background: #d6249f;
	background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}
ul.social_list li a:hover{
	background: #FFC700 !important;
}

/*=== Footer Bottom Css ===*/

.footer_copyright {
    background: #d92927;
    padding: 25px 0;
    color: #fff;
}
.footer_copyright .row {
    align-items: center;
}
.footer_copyright p {
    font-size: 14px;
    font-weight: 400;
	text-align: center;
}



/* ==========================================================================
   Forms
   ========================================================================== */
   
 
   
   


/* All Global Forms
   ========================================================================== */


/* Labels */

body label {
    margin: 0 0 10px;
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #000;
}



/* One Line Inputs */


body input[type="text"],
body input[type="password"], 
body input[type="datetime"], 
body input[type="datetime-local"], 
body input[type="date"], 
body input[type="month"], 
body input[type="time"], 
body input[type="week"], 
body input[type="number"], 
body input[type="email"], 
body input[type="url"], 
body input[type="search"], 
body input[type="tel"], 
body input[type="color"],
body input[type="file"],
body textarea,
body select {
    width: 100%;
    background-color: transparent;
    padding: 10px 15px;
    height: auto;
    min-height: auto;
    line-height: 1;
    border: 1px solid #000000;
    margin-bottom: 20px;
    border-radius: 0;
    color: #000;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 15px;
    outline: none;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
}


body textarea.form-control{
    height: 145px;
    resize: none;
	border-radius: 0;
	background-color: transparent;
}
body select.form-control {
    appearance: auto;
    -moz-appearance: auto;
    -ms-appearance: auto;
    -o-appearance: auto;
    -webkit-appearance: auto;
}

body input[type="text"]:focus,
body input[type="password"]:focus, 
body input[type="datetime"]:focus, 
body input[type="datetime-local"]:focus, 
body input[type="date"]:focus, 
body input[type="month"]:focus, 
body input[type="time"]:focus, 
body input[type="week"]:focus, 
body input[type="number"]:focus, 
body input[type="email"]:focus, 
body input[type="url"]:focus, 
body input[type="search"]:focus, 
body input[type="tel"]:focus, 
body input[type="color"]:focus,
body input[type="file"]:focus,
body textarea:focus,
body select:focus {
    border-color: #000;
}

/* Separate Styles for Multiple Line Inputs */
body textarea {}
body textarea:focus {}

/* Separate Styles for Drop Downs */
body select {}
body select:focus {}

/* Multiple Selection Inputs */

body input[type="radio"] {}
body input[type="checkbox"] {}





/* Placeholder Text */
.form-control::-webkit-input-placeholder { /* Webkit Browsers */
   color: #c8c8c8 !important;
   opacity: 1; 
}
.form-control:-moz-placeholder { /* Firefox 18- */
   color: #c8c8c8 !important;
   opacity: 1;
}
.form-control::-moz-placeholder { /* Firefox 19+ */
   color: #c8c8c8 !important;
   opacity: 1;
}
.form-control:-ms-input-placeholder { /* IE10 */
   color: #c8c8c8 !important;
   opacity: 1;
}

.bann_form .main_form form label.error {
    position: relative;
    top: -8px;
    color: #f00;
}

/* ==========================================================================
   Buttons                                              
   ========================================================================== */


/* All Global Buttons (Excluding CTAs)
   ========================================================================== */

.alm-btn-wrap button.blogload_more,
body input[type="submit"],
body input[type="button"] {
    cursor: pointer;
    -webkit-appearance: none;
    background-color: #35A5B9;
    border-radius: 0;
    width: auto;
    padding: 19px 40px 20px;
    font-family: 'Inter', sans-serif;
	font-style: normal;
	color: #FFF;
	text-align: center;
	font-size: 18px;
	font-weight: 600;
	line-height: normal;
    white-space: normal;
	text-transform: uppercase;
    border: 0 none;
    outline: none;
    -webkit-box-shadow: none;
            box-shadow: none;
	display: block;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
}

.alm-btn-wrap button.blogload_more:hover,
body input[type="submit"]:hover,
body input[type="button"]:hover {
    background: #000;
    color: #fff;
}

.alm-btn-wrap button.blogload_more:focus,
body input[type="submit"]:focus,
body input[type="button"]:focus {
    background: #000;
    color: #fff;
}

.alm-btn-wrap button.blogload_more{
	display: inline-block;
	background: #38B6FF !important;
	font-size: 1.125rem;
}
.alm-btn-wrap button.blogload_more:hover{
	background: #145CA4 !important;
}


.wpcf7-not-valid-tip {
    position: relative;
    top: -12px;
}
.wpcf7 form.failed .wpcf7-response-output, 
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output, 
.wpcf7 form.unaccepted .wpcf7-response-output, 
.wpcf7 form.payment-required .wpcf7-response-output {
    border: 0 none;
    color: #f00;
    margin: 20px 0 30px;
    padding: 0;
}

/*===== Main Content Css =====*/

/*=== Home Page Css ===*/

.home_banner_wrapper{
	position: relative;
}
.bannslider_item {
    height: calc(100vh - 122px);
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    display: table;
    padding: 50px 0;
    color: #fff;
}
.bannslider_item .slider_inner {
    display: table-cell;
    vertical-align: middle;
    position: relative;
    z-index: 1;
    text-align: center;
}
.bannslider_item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0 0 0 / 50%);
}
.home_banner_slider .banncnt {
	margin-bottom: 50px;
}
.home_banner_slider .banncnt h1 {
    color: #FFF;
	text-align: center;
	font-style: normal;
	font-weight: 800;
	text-transform: uppercase;
	margin: 0 0 25px;
}
.home_banner_slider .banncnt h1 strong{
	color: #FFC700;
}
.home_banner_slider .owl-item.active .banncnt h1{
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: fadeInLeft;
	        animation-name: fadeInLeft;
	-webkit-animation-delay: 1s;
	        animation-delay: 1s;
}
.home_banner_slider .banncnt p {
    color: #FFF;
	text-align: center;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.5; 
}
.home_banner_slider .owl-item.active .banncnt p{
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: fadeInRight;
	        animation-name: fadeInRight;
	-webkit-animation-delay: 1s;
	        animation-delay: 1s;
}
.home_banner_slider .owl-item.active .bann_btnwrap{
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: fadeInUp;
	        animation-name: fadeInUp;
	-webkit-animation-delay: 1s;
	        animation-delay: 1s;
}
.home_banner_wrapper a.slidenav {
    background-color: rgba(217 41 39 / 60%);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    height: 106px;
    width: 72px;
    text-align: center;
    padding: 10px;
    font-size: 65px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}
.home_banner_wrapper a.slidenav.slide_prev {
    left: 50px;
}
.home_banner_wrapper a.slidenav.slide_next {
    right: 50px;
}
.home_banner_wrapper a.slidenav:hover {
    background: rgba(217 41 39 / 100%);
}
/*=== About Section Css ===*/

.wwr_mainsec .row {
    align-items: center;
}
.ub_specitem {
    border: 1px solid #FFC700;
    min-height: 258px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 15px;
}
.ub_specitem .number {
    color: #015963;
    font-size: 55px;
    font-weight: 800;
    line-height: normal;
    margin-bottom: 20px;
}
.ub_specitem .txt {
    color: #181818;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}
.cc_aboutsec {
    background: #015963;
    margin-bottom: 100px;
}
.cc_aboutsec .aboutcnt {
    padding: 65px;
    color: #fff;
}
.cc_aboutsec .aboutcnt .title h2 {
    color: #fff;
}
.cc_aboutsec .aboutcnt .title {
    margin-bottom: 30px;
}
.cc_aboutsec .aboutcnt .ab_des p {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}
.cc_aboutsec .abimgCOl {
    position: relative;
}
.cc_aboutsec .abimgCOl .abImg {
	position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: calc(100% - 12px);
}
.cc_aboutsec .abimgCOl .abImg img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
/*=== Our Land Project Section ===*/
.olp_mainsec {
    padding-bottom: 30px;
}
.olp_sec_wrapper .title {
    margin-bottom: 90px;
    text-align: center;
}
.recentprojects .pro_inner .projectlogo {
    min-height: 145px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.recentprojects .pro_inner .projectlogo img {
    max-height: 140px;
}
.recentprojects .pro_inner .pro_img {
    max-height: 325px;
    overflow: hidden;
}
.recentprojects .pro_inner .pro_img img {
    width: 100%;
    height: 325px;
    object-fit: cover;
    object-position: center center;
    transition: 0.3s ease-in-out;
    transform: scale(1);
}
.recentprojects .pro_inner:hover .pro_img img {
    transform: scale(1.1);
}
.recentprojects .pro_inner .pro_cnt_wrap {
    border: 1px solid #DDD;
    background: #FFF;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    min-height: 275px;
}
.recentprojects .pro_inner {
    margin-bottom: 50px;
}
.recentprojects .pro_inner .pro_cnt_wrap h3 {
    color: #015963;
    font-weight: 700;
    line-height: normal;
}
.recentprojects .pro_inner .pro_cnt_wrap h3 a {
    color: #015963;
}
.recentprojects .pro_inner .pro_cnt_wrap h3 a:hover{
	color: #FFC700;
}
.recentprojects .pro_inner a.cmn_btn {
    padding: 19px 40px 20px;
    font-weight: 800;
    color: #fff;
	background: #35A5B9;
}
.recentprojects .pro_inner .pro_cnt_wrap p.prolocation {
    color: #35A5B9;
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    display: flex;
    align-items: center;
}
.recentprojects .pro_inner .pro_cnt_wrap p.prolocation img {
    margin-right: 8px;
}
/*=== Main Product Css ===*/
.multibrandpro_sec {    
	background-size: cover;    
	background-position: center center;    
	background-repeat: no-repeat;    
	position: relative;    
	padding: 85px 0;
}
.multibrandpro_sec:before {    
	content: "";    
	position: absolute;    
	left: 0;    
	top: 0;    
	height: 100%;    
	width: 100%;    
	background-color: rgba(1 89 99/ 90%);
}
.multibrandpro_sec > .container {    
	position: relative;    z-index: 1;
}
.multibrandpro_sec .title {    
	margin-bottom: 50px;
}
.multibrandpro_sec .title h2 {    
	color: #fff;
}
.mbrandprojects .pro_inner .projectlogo {    
	background-color: #fff;    
	min-height: 125px;    
	max-height: 125px;    
	padding: 15px;
}
.mbrandprojects .pro_inner .projectlogo img {    
	max-height: 100px;
}
.mbrandprojects .pro_inner .pro_img{	
	max-height: 425px; 
	overflow: hidden;
}
.mbrandprojects .pro_inner .pro_img img{	
	width: 100%;    
	height: 425px;    
	object-fit: cover;    
	object-position: center center;    
	transition: 0.3s ease-in-out;    
	transform: scale(1);
}
.mbrandprojects .pro_inner:hover .pro_img img{	
	transform: scale(1.1);
}
.mbrandprojects .pro_inner .pro_cnt_wrap {    
	border: 1px solid #FFF;    
	border-top: 0 none;    
	box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.15);    
	display: block;     
	padding: 30px 15px;
}
.mbrandprojects .pro_inner .pro_cnt_wrap h4 {    
	color: #FFF;      
	font-weight: 700;    
	line-height: normal;    
	margin: 0 0 15px;
}
.mbrandprojects .pro_inner .pro_cnt_wrap h4 a {    
	color: #fff;
}
.mbrandprojects .pro_inner .pro_cnt_wrap h4 a:hover {    
	color: #ffc700;
}
.mbrandprojects .pro_inner .pro_cnt_wrap a.cmn_btn {    
	background-color: #35A5B9;
    padding: 15px 20px 15px;
    color: #fff;
    font-size: 16px;
	display: block;
}
.mbrandprojects .pro_inner .pro_cnt_wrap a.cmn_btn:before,
.mbrandprojects .pro_inner .pro_cnt_wrap a.cmn_btn:after {    
	background-color: #FFC700;
}

/*=== Featured Section Css ===*/

.ccfeatured_sec {
    padding: 100px 0;
}
.ccfeatured_sec .fleft_col {
    padding-right: 25px;
}
.ccfeatured_sec .fleft_col .title {
    margin-bottom: 20px;
}
.ccfeatured_sec .fleft_col .featured_des {
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 30px;
}
.ccfeatured_sec .fleft_col .featured_item_wrap {
    background: #F9F9F9;
    padding: 35px;
}
.ccfeatured_sec .fleft_col .featured_item_wrap .featured_item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 30px;
}
.ccfeatured_sec .fleft_col .featured_item_wrap .featured_item:last-child {
    margin: 0;
}
.ccfeatured_sec .fleft_col .featured_item_wrap .featured_item .ficon {
    margin-right: 40px;
	max-width: 50px;
}
.ccfeatured_sec .fleft_col .featured_item_wrap .featured_item .ftext {
    color: #35A5B9;
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
}
.ccfeatured_sec .fleft_col .featured_item_wrap .featured_item .ftext span.chk_icon {
    height: 22px;
    width: 22px;
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    background: #ffc700;
    border-radius: 100%;
    padding: 1px 3px;
    text-align: center;
    margin-left: 15px;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}
.ccfeatured_sec .fleft_col .featured_item_wrap .featured_item:hover .ftext span.chk_icon {
    opacity: 1;
}
.ccfeatured_sec .fright_col {
    position: relative;
}
.fright_col .fslider_item img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
}
.ccfeatured_sec .fright_col a.slidenav {
    background-color: rgba(53 165 185 / 60%);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    height: 106px;
    width: 72px;
    text-align: center;
    padding: 10px;
    font-size: 65px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ccfeatured_sec .fright_col a.slidenav.fslide_prev {
    left: 30px;
}
.ccfeatured_sec .fright_col a.slidenav.fslide_next {
    right: 30px;
}
.ccfeatured_sec .fright_col a.slidenav:hover {
    background: rgba(53 165 185 / 100%);
}


/*=== Our Video Section Css ===*/

.our_video_sec {
    padding-bottom: 100px;
}
.our_video_sec .title {
    margin-bottom: 50px;
    text-align: center;
}
.our_video_sec .video_item {
    height: 600px;
    overflow: hidden;
	position: relative;
	margin: 12px 0;
}
.our_video_sec .video_item img{	
	width: 100%;    
	height: 600px;    
	object-fit: cover;    
	object-position: center center;    
	transition: 0.3s ease-in-out;    
	transform: scale(1);
}
.our_video_sec .video_item:hover img{	
	transform: scale(1.1);
}
.our_video_sec .video_item .video_inner {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
}
.play_cion {
  width: 48px;
  height: 48px;
  background: rgba(255 255 255 / 85%);
  border-radius: 50%;
  position: relative;
  display: block;
}
.play_cion::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translateX(-40%) translateY(-50%);
	transform: translateX(-40%) translateY(-50%);
	transform-origin: center center;
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 15px solid #FE951F;
	z-index: 100;
	-webkit-transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
	transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.play_cion:before {
	content: "";
	position: absolute;
	width: 150%;
	height: 150%;
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
	-webkit-animation: pulsate1 2s;
	animation: pulsate1 2s;
	-webkit-animation-direction: forwards;
	animation-direction: forwards;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: steps;
	animation-timing-function: steps;
	opacity: 1;
	border-radius: 50%;
	border: 5px solid rgba(255, 255, 255, .75);
	top: -25%;
	left: -25%;
	background: rgba(198, 16, 0, 0);
}
.our_video_sec .bann_btnwrap {
    text-align: center;
    padding-top: 33px;
}
.our_video_sec .bann_btnwrap a.cmn_btn {
    background: #35A5B9;
    color: #fff;
}


@-webkit-keyframes pulsate1 {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 1;
    box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
    box-shadow: none;

  }
}

@keyframes pulsate1 {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 1;
    box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1);
    opacity: 0;
    box-shadow: none;

  }
}

/*=== Form Section Css ===*/

.bottom_formwrap {
    padding: 100px 0;
}
.bottom_formwrap .mainform {
    background-color: #015963;
}
.bottom_formwrap .mainform .form_wrap {
    padding: 150px 35px 150px 11px;
}
.bottom_formwrap .mainform .form_wrap .form-control {
    background-color: #FFFFFF;
    border: 1px solid #fff;
    padding: 15px 15px;
    font-weight: 300;
    font-size: 14px;
    color: #000;
    line-height: 23px;
    border-radius: 0;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
}
.bottom_formwrap .formlogo_wrapper {
    height: 100%;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
	background-size: cover;
    background-position: center;
}
.bottom_formwrap .formlogo_wrapper:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(255 199 0 / 60%);
}
.bottom_formwrap .formlogo_wrapper .form_logo {
    position: relative;
}
.bottom_formwrap .mainform .form_wrap select.form-control{
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url(../images/selarr.png);
	background-repeat: no-repeat;
	background-position: right 22px top 20px;
	color: #000;
}
.bottom_formwrap .mainform .form_wrap select.form-control option{
	color: #000;
}
.bottom_formwrap .mainform .form_wrap select.form-control::-webkit-input-placeholder,
.bottom_formwrap .mainform .form_wrap .form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #000 !important;
	opacity: 1 !important;
}
.bottom_formwrap .mainform .form_wrap select.form-control::-moz-placeholder,
.bottom_formwrap .mainform .form_wrap .form-control::-moz-placeholder { /* Firefox 19+ */
	color: #000 !important;
	opacity: 1 !important;
}
.bottom_formwrap .mainform .form_wrap select.form-control:-ms-input-placeholder,
.bottom_formwrap .mainform .form_wrap .form-control:-ms-input-placeholder { /* IE 10+ */
	color: #000 !important;
	opacity: 1 !important;
}
.bottom_formwrap .mainform .form_wrap select.form-control:-moz-placeholder,
.bottom_formwrap .mainform .form_wrap .form-control:-moz-placeholder { /* Firefox 18- */
	color: #000 !important;
	opacity: 1 !important;
}
.bottom_formwrap .mainform .form_wrap .form-control:focus{
	border-color: #FFC700;
}
.bottom_formwrap .mainform .form_wrap .btn_grp{
	position: relative;
}
.bottom_formwrap .mainform .form_wrap .btn_grp span.wpcf7-spinner {
    position: absolute;
    right: 0;
    top: 50%;
    z-index: 1;
    transform: translateY(-50%);
}

/*=== Map Section Css ===*/

.toploc_bar {
    background: #015963;
    color: #fff;
    padding: 50px 0;
}
.toploc_bar .title h6 {
    margin-bottom: 15px;
}
.toploc_bar .title h2 {
    color: #fff;
}
.toploc_bar .location_wrap {
    text-align: right;
}
.toploc_bar .location_wrap ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.toploc_bar .location_wrap ul li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 50px;
    color: #FFF;
    font-size: 24px;
    font-weight: 700;
    line-height: 38px;
}
.toploc_bar .row {
    align-items: center;
}
.toploc_bar .location_wrap ul li:last-child {
    margin-right: 0;
}
.toploc_bar .location_wrap ul li span.circle {
	width: 38px;
	height: 38px;
	display: inline-block;
	border: 2px solid #fff;
	border-radius: 100%;
	margin-right: 15px;
	vertical-align: middle;
	position: relative;
	top: -4px;
	background-color: transparent;
}
.toploc_bar .location_wrap ul li.Queensland-2 span.circle{
	background-color: #67FAFC;
}
.toploc_bar .location_wrap ul li.SouthAustralia-1 span.circle{
	background-color: #FFC700;
}
.toploc_bar .location_wrap ul li.Victoria-20 span.circle{
	background-color: #0298A7;
}
.ccmap_sec .fullmap img {
    width: 100%;
	object-fit: cover;
	object-position: center center;
}
.ccmap_sec .map_inner {
    position: relative;
}
.ccmap_sec .map_inner .mapicon_marker {
    position: absolute;
    z-index: 1;
}
.ccmap_sec .map_inner .Queensland-2.mapicon_marker {
    top: 10px;
    right: 33%;
}
.ccmap_sec .map_inner .SouthAustralia-1.mapicon_marker {
    top: 35%;
    left: 37%;
}
.ccmap_sec .map_inner .Victoria-20.mapicon_marker {
    bottom: 30px;
    right: 31%;
}
.popover-icon {
	background: none;
	color: none;
	border: none;
	padding: 0;
	outline: none;
	cursor: pointer;
}
.popover-icon i {
	color: #04a0b2;
	text-align: center;
	margin-top:4px;
}
.popover-header {
	display: none;
}
.popover {
	max-width: 306.6px;
	border-radius: 6px;
	border: none;
	box-shadow: 0 0 6px 1px #eee;
}
.popover-body {
	border: none;
	padding: 20px 49.4px 24px 24px;
	color: #5f6976;
	font-size: 15px;
	font-style: italic;
	z-index: 2;
	line-height: 1.53;
	letter-spacing: 0.1px;
	position: relative;
}
.popover-close {
	position: absolute;
	top: 5px;
	right: 10px;
	opacity: 1;
}
.material-icons {
	font-size: 16px;
	font-weight: bold;
	color: #04a0b2;
}

/*=== Blog Section Css ===*/

.ccblog_section {
    padding: 100px 80px 100px;
}
.ccblog_section .title {
    text-align: center;
    margin-bottom: 50px;
}
.ccblog_section .title h6 {
    margin-bottom: 15px;
}
.ccblog_section .blog_items .pro_img {
	max-height: 500px;
    overflow: hidden;
}
.ccblog_section .blog_items .pro_img img{
	width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center center;
    transition: 0.3s ease-in-out;
    transform: scale(1);
}
.ccblog_section .blog_items:hover .pro_img img{
	transform: scale(1.1);
}
.ccblog_section .blog_items .post_cnt_wrap {
    padding: 50px 0;
    border-bottom: 1px solid #DADADA;
}
.ccblog_section .blog_items .post_cnt_wrap h5 {
    color: #015963;
    font-weight: 700;
    line-height: 30px;
	margin-bottom: 10px;
}
.ccblog_section .blog_items .post_cnt_wrap h5 a {
    color: #015963;
}
.ccblog_section .blog_items .post_cnt_wrap h5 a:hover {
    color: #FFC700;
}
.ccblog_section .blog_items .post_cnt_wrap p {
    color: #35353D;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}
.ccblog_section .blog_sliderwrapper{
	position: relative;
}
.ccblog_section .blog_sliderwrapper a.slidenav {
	background-color: rgba(53 165 185 / 60%);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    height: 95px;
    width: 55px;
    text-align: center;
    padding: 10px;
    font-size: 50px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ccblog_section .blog_sliderwrapper a.slidenav.bslide_prev {
    left: -75px;
}
.ccblog_section .blog_sliderwrapper a.slidenav.bslide_next {
    right: -75px;
}
.ccblog_section .blog_sliderwrapper a.slidenav:hover {
    background: rgba(53 165 185 / 100%);
}

/*=== Gallery Section Css ===*/

.gallery_section {
    position: relative;
    padding: 100px 0;
}
.gallery_section .gallbg {
    position: absolute;
    top: 0;
    left: 0;
    height: 65%;
    width: 100%;
    background-size: cover;
    background-position: center center;
}
.gallery_section:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(1 89 99 / 80%);
}
.gallery_section .container {
    position: relative;
    z-index: 1;
}
.gallery_section .title {
    margin-bottom: 50px;
    text-align: center;
}
.gallery_section .title h2 {
    color: #fff;
}
.main_gallery .galltop_wrap {
    padding: 0 115px;
	margin-bottom: 50px;
    position: relative;
}
.maingall_img  .mgall_img {
    text-align: center;
}
.maingall_img .mgall_img img {
    display: inline-block;
}
.main_gallery .galltop_wrap a.slidenav {
    background-color: rgba(53 165 185 / 60%);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    height: 106px;
    width: 72px;
    text-align: center;
    padding: 10px;
    font-size: 65px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main_gallery .galltop_wrap a.slidenav.gslide_prev {
    left: 0;
}
.main_gallery .galltop_wrap a.slidenav.gslide_next {
    right: 0;
}
.main_gallery .galltop_wrap a.slidenav:hover {
    background: rgba(53 165 185 / 100%);
}
.main_gallery .galltop_wrap .thumbnail_gall img {
    height: 120px;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1);
    transition: all 0.5s ease-in-out;
}
.main_gallery .galltop_wrap .thumbnail_gall .slick-slide{
	padding: 2px;
}
.main_gallery .galltop_wrap .thumbnail_gall .thumbnail_img {
    padding: 2px;
    position: relative;
    height: 120px;
    overflow: hidden;
}
.main_gallery .galltop_wrap .thumbnail_gall .thumbnail_img:hover img {
    transform: scale(1.2);
}
.main_gallery .galltop_wrap .thumbnail_gall .slick-slide.slick-current.slick-active .thumbnail_img:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(24, 24, 24, 0.70);
	z-index: 1;
}

/*========== Inner Page Css ==========*/

/*=== Inner Banner Css ===*/

.inner_banner {
    height: 475px;
    width: 100%;
    padding: 50px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    display: table;
}
.inner_banner .innbann_sec {
    display: table-cell;
    vertical-align: middle;
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}
.inner_banner:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0 0 0 / 50%);
}
.inner_banner .innbann_sec h1 {
    text-transform: uppercase;
    color: #fff;
    font-weight: 800;
    margin: 0 0 10px;
}
.inner_banner .innbann_sec p {
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
}

/*=== Contact page Css ===*/

.pg_concontact_sec {
    background-color: #F4FEFF;
}
.pg_concontact_sec .pg_conform {
    border-radius: 8px;
    background: #015963;
    box-shadow: 0px 4px 38px 0px rgba(0, 0, 0, 0.05);
    padding: 50px;
    color: #fff;
}
.pg_concontact_sec .container {
    max-width: 1040px;
}
.pg_concontact_sec .pg_conform .form-control {
    background-color: #FFFFFF;
    border: 1px solid #fff;
    padding: 15px 15px;
    font-weight: 300;
    font-size: 14px;
    color: #000;
    line-height: 23px;
    border-radius: 0;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
}
.pg_concontact_sec .pg_conform select.form-control{
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url(../images/selarr.png);
	background-repeat: no-repeat;
	background-position: right 22px top 20px;
	color: #000;
}
.pg_concontact_sec .pg_conform select.form-control option{
	color: #000;
}
.pg_concontact_sec .pg_conform select.form-control::-webkit-input-placeholder,
.pg_concontact_sec .pg_conform .form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #000 !important;
	opacity: 1 !important;
}
.pg_concontact_sec .pg_conform select.form-control::-moz-placeholder,
.pg_concontact_sec .pg_conform .form-control::-moz-placeholder { /* Firefox 19+ */
	color: #000 !important;
	opacity: 1 !important;
}
.pg_concontact_sec .pg_conform select.form-control:-ms-input-placeholder,
.pg_concontact_sec .pg_conform .form-control:-ms-input-placeholder { /* IE 10+ */
	color: #000 !important;
	opacity: 1 !important;
}
.pg_concontact_sec .pg_conform select.form-control:-moz-placeholder,
.pg_concontact_sec .pg_conform .form-control:-moz-placeholder { /* Firefox 18- */
	color: #000 !important;
	opacity: 1 !important;
}
.pg_concontact_sec .pg_conform .form-control:focus{
	border-color: #FFC700;
}
.pg_concontact_sec .pg_conform .btn_grp{
	position: relative;
}
.pg_concontact_sec .pg_conform .btn_grp input.form_btn{
	width: 100%;
}
.pg_concontact_sec .pg_conform .btn_grp span.wpcf7-spinner {
    position: absolute;
    right: 0;
    top: 50%;
    z-index: 1;
    transform: translateY(-50%);
}
.pg_concontact_sec .item_box {
    border-radius: 8px;
    border: 1px solid #015963;
    margin-bottom: 40px;
    min-height: 225px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 30px;
    max-width: 350px;
}

.pg_concontact_sec .item_box .icon {
    height: 55px;
    width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #D4F9FF;
    border-radius: 100%;
    color: #015963;
    font-size: 24px;
    margin: 0 0 20px;
}
.pg_concontact_sec .item_box p {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 27px;
}
.pg_concontact_sec .item_box p small {
    display: block;
    font-weight: 300;
}

/*=== Blog Page Css ===*/


.ccblog_section.blogpg {
    padding-left: 0;
    padding-right: 0;
}
.ccblog_section.blogpg .alm-listing.ctpost_listwrap{
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.ccblog_section.blogpg .alm-listing.ctpost_listwrap > div.blogpost_item {
    padding-left: 15px;
    padding-right: 15px;
}
.ccblog_section.blogpg .alm-btn-wrap {
    margin: 0;
    padding: 0;
}
.alm-btn-wrap .alm-load-more-btn.done {
    display: none !important;
}
.ccblog_section.blogpg .blog_items_wrap {
    margin-bottom: 30px;
}

/*=== Single Post Page Css ===*/

.ct_singlepost_pg .container {
    max-width: 90%;
}
.ct_singlepost_pg .postinner {
    box-shadow: 0px 0px 15px rgb(0 0 0 / 22%);
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    padding: 20px;
}
.ct_singlepost_pg .postinner .post_detail {
    padding: 15px 0;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}
.ct_singlepost_pg .postinner .post_detail .postin_d:not(:last-child) {
	padding-right: 15px;
	margin-right: 15px;
	border-right: 1px solid #ddd;
}
.button_wrp.ctwrapper_s {
    margin-top: 30px;
}
.button_wrp.ctwrapper_s {
    margin-top: 30px;
}
.ct_singlepost_pg .post_content p {
    margin: 0 0 40px;
}
.ct_singlepost_pg .post_content p:last-child {
    margin: 0;
}

/*=== Service Page Css ===*/


.multibrandpro_sec.community_sersec {
    background-position: center top;
}
.multibrandpro_sec.community_sersec::before {
    background-color: rgba(53 165 185 / 90%);
}
.multibrandpro_sec.community_sersec .title {
    text-align: center;
}
.multibrandpro_sec.community_sersec .title h2 {
    font-weight: 700;
    margin: 0 0 25px;
}
.multibrandpro_sec.community_sersec .title p {
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 4.2px;
}
.olp_sec_wrapper.commercial_ser .recentprojects .pro_inner .pro_cnt_wrap {
    min-height: 220px;
}
.olp_sec_wrapper.commercial_ser .recentprojects .pro_inner .pro_cnt_wrap p{
	color: #000;
	font-size: 14px;
	font-weight: 400;
	line-height: 26px;
}

/*===== Client Logo Slider =====*/


.client_logo_sec {
    background-color: #fff;
    padding: 20px 0 50px;
}
.client_logo_sec .clogo_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.client_logo_sec .clogo_wrap .partner_title {
    max-width: 275px;
    width: 100%;
    padding: 15px 40px 15px 0px;
    border-right: 1.5px solid #D9D9D9;
}
.client_logo_sec .clogo_wrap .partner_title h4 {
    margin: 0;
	font-style: normal;
	font-weight: 700;
	font-size: 20px;
	line-height: 24px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: #000000;
}
.client_logo_sec .clogo_wrap .plogo_wrap {
    max-width: 100%;
    width: 100%;
}
.client_logo_sec .clogo_wrap .plogo_wrap.cthw_width {
    max-width: calc(100% - 275px);
}
.client_logo_sec .clogo_wrap .plogo_wrap .plogo_item {
    padding: 0 40px;
    position: relative;
    min-height: 55px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.client_logo_sec .clogo_wrap .plogo_wrap .plogo_item img {
    width: auto;
}