/*
    Theme Name: bSquare 2024
    Theme URI: http://www.zohothemes.com
    Author: ZohoThemes Team
    Author URI: https://www.zohothemes.com/
    Email: support@zohothemes.com
    Description: 
    Version: 2.0
*/

@font-face {
    font-family: 'Uni Neue';
    src: url('assets/css/fonts/unineue/UniNeue-Regular.eot');
    src: url('assets/css/fonts/unineue/UniNeue-Regular.eot?#iefix') format('embedded-opentype'),
         url('assets/css/fonts/unineue/UniNeue-Regular.woff') format('woff'),
         url('assets/css/fonts/unineue/UniNeue-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500;600;700&display=swap');

:root {
    --default-color: #6f9e28;
    --secondary-color: #49494a;

    /* Semantic color tokens */
    --background: 0 0% 100%;
    --foreground: 240 10% 3.9%;
    --card: 0 0% 100%;
    --card-foreground: 240 10% 3.9%;
    --popover: 0 0% 100%;
    --popover-foreground: 240 10% 3.9%;
    --primary: 96 59% 39%; /* Green in HSL */
    --primary-foreground: 0 0% 98%;
    --secondary: 240 5.9% 10%;
    --secondary-foreground: 0 0% 98%;
    --muted: 240 4.8% 95.9%;
    --muted-foreground: 240 3.8% 46.1%;
    --accent: 240 4.8% 95.9%;
    --accent-foreground: 240 5.9% 10%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 98%;
    --border: 240 5.9% 90%;
    --input: 240 5.9% 90%;
    --ring: 96 59% 39%;

    /* Radii */
    --radius-sm: 0.3rem;
    --radius-md: 0.5rem; 
    --radius-lg: 0.8rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);

    /* Spacing */
    --spacing-x: 1rem;
    --spacing-y: 1.5rem;
}

@media (min-width: 768px) {
    .container {
        width: 850px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 1070px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1270px;
    }
}

* {
    outline: none !important;
}
html {
    font-size: 100%;
    height: 100%;
    min-height: 100%;
    overflow-y: scroll;
}
body {
    font-family: 'Uni Neue', sans-serif;
    font-size: 17px;
    line-height: 26px;
    -webkit-appearance: none;
    -webkit-font-smoothing: antialiased;
    color: #6d6d6d;
    font-weight: 300;
    background:#fff; /* url("assets/images/bg.png");*/
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -moz-osx-font-smoothing: auto;
    background-size: cover;
    position: relative;
    font-weight: normal;
    margin:0px;
    padding:0px;
}
a {
    color: #969696;
    text-decoration: none;
}
a:hover,
a:focus {
    color: #67a73c;
    text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Uni Neue', sans-serif;
    font-weight: 600;
    color: #717171;
}
h1 {
    font-size: 25px;
}
h2 {
    font-size: 22px;
}
h3 {
    font-size: 18px;
}
h4 {
    font-size: 16px;
}
h5 {
    font-size: 14px;
}
h6 {
    font-size: 13px;
}
h1.heading {
    font-size: 26px;
}
h2.heading {
    font-size: 22px;
}
h3.heading {
    font-size: 18px;
}
h4.heading {
    font-size: 16px;
}
h5.heading {
    font-size: 14px;
}
h6.heading {
    font-size: 13px;
}
.heading {
    margin: 0 0 20px 0;
    font-weight: 700;
    position: relative;
    color: #6B6B6B;
}
.heading.border {
    padding-bottom: 8px;
}
.heading.border:after {
    content: "";
    width: 70px;
    height: 3px;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #ff9100 !important;
}
a.read-more {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    color: #174e9c;
    position: relative;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}
a.read-more i {
    font-size: 11px;
    line-height: 20px;
    opacity: 0;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}
a.read-more:hover {
    color: #FF7E65;
}
a.read-more:hover i {
    opacity: 1;
    color: #FF7E65;
}

.view-more-block {
    background: #EEEEEE;
    display: block;
    text-align: center;
}

a.home-view-more {
    padding: 12px 0;
    width: 15%;
    margin: 30px 0;
    border: 1px solid #f1f1f1;
    border-radius: 3px;
}

img {
    max-width: 100%;
    height: auto;
}
#wrapper {
    margin: 0;
    padding: 0;
}

p {
    margin: 0 0 15px;
    line-height: 25px;
    color:hsl(var(--foreground) / 0.7) !important;
}

.portfolio-content p, .portfolio-content h4 {
    color:#fff !important;
}

ul li, ol li {
    color:hsl(var(--foreground) / 0.7) !important;
}

header .bbt_logo, header .logo_img {
    margin:0px;
    padding:0px;
    line-height: 0px;
}


/* .header .logo {
    margin-top:2px;
    float: right;
    width:65px;
} */

.page-header {
    padding: 35px 0px;
    margin: 0px;
    border-bottom: 1px solid #eee;
    background:linear-gradient(90deg, #dff3ea, #dff3f0, #dde6da, #dff3eb, #dff3ec);
}

.page-banner {
    position: relative;
    height:500px;
    background-size: cover !important;
    background-position: center center;
    display: block;
    width: 100%;
    text-align: left;
    background-color: #f7f7f7;
    z-index: 1;
}

.page-banner:before {
    content: '';
    background: transparent;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.95;
}

.page-banner-wrapper {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding:82px 0px;
}

.page-banner h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0px;
    font-style: normal;
    text-align: left;
    color: #f49224;
}

.breadcrumb-wrapper {
    position: absolute;
    bottom: 0px;
}

.breadcrumb {
    background: rgba(0, 0, 0, 0.8);
    margin: 0px;
    padding: .3rem .75rem;
    width: auto;
    display: inline-flex;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.breadcrumb .breadcrumb-item {
    color:#1e9518;
}

.breadcrumb .breadcrumb-item a {
    text-decoration: none;
    color:#fff;
    font-size: 13px;
    text-transform: uppercase;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}


.banner-panel {
    background: #fcfcfc url('assets/images/contact-us-banner-v2.jpg') no-repeat top center;
    height: 300px;
    min-height: 200px;
    padding: 0px 0;
    background-size: cover;
    background-position: center;
}

.banner-panel img.cbimg {
    height: 250px;
    position: relative;
    display: block;
    z-index: 2;
    top: 0;
    z-index: 2;
}

.bdrB {
    border-bottom: 1px solid #e0e0e0;
}

.contactus_bnrInfo_2 {
    width: 363px;
    height: auto;
    padding: 27px 20px 0px 20px;
    position: absolute;
    right: 390px;
    top: 120px;
    z-index: 10;
}

.contactus_bnrInfo_2 ul {
}

.contactus_bnrInfo_2 ul li {
    margin-bottom: 1px;
    padding: 15px;
    width: 100%;
    display: block;
    background: rgba(255,255,255,0.8);
    color: #5c8a17;
    font-size:14px;
}

.contactus_bnrInfo_2 ul li span {
    font-size: 19px;
    font-weight: normal;
    display: block;
}

.contactus_bnrInfo_2 ul li:last-child {
    background: rgba(24, 131, 48, 0.8);
    height: 75px;
}

.contactus_bnrInfo_2 ul li:last-child div {
    margin-bottom: 5px;
    color: #fff;
    width: 50%;
    float: left;
}

.contactus_bnrInfo_2 ul li:last-child div:last-child {
    margin-bottom: 5px;
    color: #fff;
    width: 100%;
    height: 40px;
    float: left;
    padding-left: 15px;
}

/*** Wordpress Core */

.alignnone {
    margin: 5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}
.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}
.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}
a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}
a img.alignnone {
    margin: 5px 20px 20px 0;
}
a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}
a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%;
    padding: 5px 3px 5px;
    text-align: center;
}
.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}
.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}
.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}
.wp-caption .wp-caption-text {
    padding-top: 5px;
}
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}
.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}
blockquote {
    font-style: italic;
    font-weight: normal;
    border-color: #174e9c;
}

/*** Pagination ***/
.pagination {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -moz-background-clip: padding-box;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
.pagination > li > a,
.pagination > li > span {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    padding: 0;
    margin: 0 5px 0 0;
    color: #000;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
    color: #fff;
    background-color: #174e9c;
    border-color: #174e9c;
}
.pagination > li:first-child > a,
.pagination > li:last-child > a,
.pagination > li:first-child > span,
.pagination > li:last-child > span {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -moz-background-clip: padding-box;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
.pagination > li span.current {
    color: #000;
    background-color: #174e9c;
    border-color: #174e9c;
}
.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
    color: #000;
    background-color: #174e9c;
    border-color: #174e9c;
}
.pagination.circle > li > a,
.pagination.circle > li > span {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -moz-background-clip: padding-box;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
.pagination.round-square > li > a,
.pagination.round-square > li > span {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -moz-background-clip: padding-box;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
.pagination.round-square > li span.current {
    color: #fff;
    background-color: #174e9c;
    border-color: #174e9c;
}
.pagination.dashed > li > a,
.pagination.dashed > li > span {
    border: none;
    border-bottom: solid 2px #eee;
}
.pagination.dashed > li > a:hover,
.pagination.dashed > li > span:hover,
.pagination.dashed > li > a:focus,
.pagination.dashed > li > span:focus {
    color: #174e9c;
    background-color: transparent;
    border-color: #174e9c;
}
.pagination.dashed > li span.current {
    color: #174e9c;
    background-color: transparent;
    border-color: #174e9c;
}
.pagination.dashed > .active > a,
.pagination.dashed > .active > a:focus,
.pagination.dashed > .active > a:hover,
.pagination.dashed > .active > span,
.pagination.dashed > .active > span:focus,
.pagination.dashed > .active > span:hover {
    color: #174e9c;
    background-color: transparent;
    border-color: #174e9c;
}
/*** Buttons ***/
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: var(--radius-md, 0.5rem);
    transition: all 0.2s ease;
    gap: 0.5rem;
}
.btn.btn-sm {
    padding: 6px 15px;
}
.btn.btn-md {
    padding: 10px 25px;
}
.btn.btn-lg {
    padding: 14px 40px;
}
.btn.btn-square {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -moz-background-clip: padding-box;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
.btn.btn-rounded {
    border: none;
    overflow: hidden;
}
.btn.btn-rounded.btn-sm {
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    -moz-background-clip: padding-box;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
.btn.btn-rounded.btn-md {
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    -moz-background-clip: padding-box;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
.btn.btn-rounded.btn-lg {
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    -moz-background-clip: padding-box;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
.btn.btn-primary {
    background: var(--default-color);
    color: white;
    border: none;
}
.btn.btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}
.btn.btn-secondary {
    border-radius: 5px;
    color: #fff;
    height: 40px;
    text-transform: uppercase;
    background-image: -webkit-linear-gradient(top,#8a8a8a 0, #404040 100%) !important;
    background-image: -o-linear-gradient(top,#8a8a8a 0,#404040 100%) !important;
    background-image: -webkit-gradient(linear,left top,left bottom,from(#8a8a8a),to(#404040)) !important;
    background-image:linear-gradient(to bottom,#8a8a8a 0,#404040 100%) !important;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff8a8a8a', endColorstr='#ff404040', GradientType=0) !important;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false) !important;
    border-color: #252525;
    border-bottom: 3px solid #252525;
    border-style: none none solid;
    background-color:#252525;
    background-position:0 !important;
    padding:10px 20px;
    font-family: 'Uni Neue', sans-serif;
}
.btn.btn-secondary:hover, .btn.btn-secondary:focus {
    color:#fff;
    background-image: -webkit-linear-gradient(top,#404040 0, #8a8a8a 100%) !important;
    background-image: -o-linear-gradient(top,#404040 0,#8a8a8a 100%) !important;
    background-image: -webkit-gradient(linear,left top,left bottom,from(#404040),to(#8a8a8a)) !important;
    background-image: linear-gradient(to bottom,#404040 0,#8a8a8a 100%) !important;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff404040', endColorstr='#ff8a8a8a', GradientType=0) !important;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false) !important;
    border-color: #636363;
    border-bottom: 3px solid #636363;
    border-style: none none solid;
    background-color:#636363;
    background-position:0 !important;
}

.btn-default {
    text-shadow: 0 1px 0 #fff;
    background-image: -webkit-linear-gradient(top,#fff 0,#e0e0e0 100%);
    background-image: -o-linear-gradient(top,#fff 0,#e0e0e0 100%);
    background-image: -webkit-gradient(linear,left top,left bottom,from(#fff),to(#e0e0e0));
    background-image: linear-gradient(to bottom,#fff 0,#e0e0e0 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    background-repeat: repeat-x;
    border-color: #dbdbdb;
    border-color: #ccc
}

.btn-default:focus,.btn-default:hover {
    background-color: #e0e0e0;
    background-position: 0 -15px
}

.btn-default.active,.btn-default:active {
    background-color: #e0e0e0;
    border-color: #dbdbdb
}

.btn-default.disabled,.btn-default.disabled.active,.btn-default.disabled.focus,.btn-default.disabled:active,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled],.btn-default[disabled].active,.btn-default[disabled].focus,.btn-default[disabled]:active,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default.active,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover {
    background-color: #e0e0e0;
    background-image: none
}

.btn.btn-tertiary {
    background-color: #dddddd;
    border-color: #dddddd;
    color: #000000;
}
.btn.btn-tertiary:hover {
    background-color: #174e9c;
    border-color: #174e9c;
    color: #000000;
}
.btn.btn-outline {
    background: transparent;
    border: 2px solid var(--default-color);
    color: var(--default-color);
}
.btn.btn-outline:hover {
    background: var(--default-color);
    color: white;
}

/*** Tables ***/
.table {
    margin-bottom: 40px;
}
.table > thead > tr > th {
    padding: 14px 12px;
    background-color: #f5f5f5;
    border-bottom-width: 1px;
}
.table > tbody > tr > td {
    padding: 14px 12px;
}
.table > tbody > tr > th {
    padding: 14px 12px;
}
.table.table-striped > thead > tr > th {
    padding: 14px 12px;
    border-bottom-width: 1px;
    background-color: #000;
    color: #fff;
}
.table.design1 > tbody > tr > td {
    background-color: #fafafa;
}
.table.design1 > tbody > tr > th {
    background-color: #fafafa;
}
.table.design1 > thead > tr > th {
    border-bottom-width: 1px;
    background-color: #ddd;
    color: #000;
}

/*** Search Results ***/
ul.search-results {
    margin: 0;
    padding: 0;
    list-style: none;
}
ul.search-results li {
    margin: 0 0 15px 0;
    padding: 0 0 15px 0;
    border-bottom: solid 1px #f5f5f5;
}
ul.search-results li h4 {
    margin: 0;
}
ul.search-results li h4 a {
    color: #202020;
    text-decoration: none;
}


/*** 404 Page ***/
.error-content {
    margin: 100px 0;
    padding: 0;
    text-align: center;
}
.error-content h1 {
    margin: 0;
    font-size: 72px;
    font-weight: 700;
    color: #174e9c;
}
.error-content p.lead {
    font-size: 24px;
    margin-bottom: 30px;
}

.sticky-header {
    position: fixed!important;
    left: 0;
    top: 0;
    background: #FFF;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.4);
    width: 100%;
    animation-name: menu_sticky;
    animation-timing-function: ease-out;
    height: 120px;
    transition: 1.2s cubic-bezier(.17,.85,.438,.99);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    -webkit-animation: fadeInDown 0.5s;
}

/*****  Info head *****/

.info-head {
    background: linear-gradient(
        to right,
        hsl(var(--primary)),
        hsl(var(--primary) / 0.85)
    );
    backdrop-filter: blur(4px);
    padding: 0.75rem 0;
}
.info-head ul li{
	list-style: none;
	float: left;
	margin-right: 15px;
	padding-right: 15px;
	font-size: 15px;
	border-right: 1px solid #dedede;
    margin-top:0px;
    color: #fff;
}
.info-head ul li:last-child{
	border-right: 0;
}
.info-head ul li ul li{
	list-style: none;
	float: none;
	margin: 0;
	font-size: 12px;
	border-right: 0;	
	padding: 0;
}
.info-head ul li ul li a{
	padding: 5px 15px 5px 10px;
	line-height: 20px;
	font-size: 12px;
}
.info-head ul li ul li a img{
	padding-right: 10px;
}
.info-head ul li .dropdown-menu{
	min-width: 120px;
	padding: 0;
	left: 0px;
	top: 30px;
}
.info-head .dropdown-menu > li > a:hover,
.info-head .dropdown-menu > li > a:focus,
.info-head .dropdown-menu > .active > a,
.info-head .dropdown-menu > .active > a:hover,
.info-head .dropdown-menu > .active > a:focus {
	background-color: #f5f5f5;
	background-image: -webkit-gradient(linear, left 0%, left 100%, from(#f5f5f5), to(#f5f5f5));
	background-image: -webkit-linear-gradient(top, #f5f5f5, 0%, #f5f5f5, 100%);
	background-image: -moz-linear-gradient(top, #f5f5f5 0%, #f5f5f5 100%);
	background-image: linear-gradient(to bottom, #f5f5f5 0%, #f5f5f5 100%);
	color: #000;
}
.info-head ul li a {
	color: #fff;
    text-decoration: none;
}
.info-head ul li a.dropdown-item {
    color:#000;
}
.info-head ul li i{
	padding: 8px 5px 0 0;
	color: #fff;
	font-size: 14px;
}
.info-head ul li a i{
	font-size: 13px;
	padding-top: 3px;
	padding-left: 5px;
}

ul.quick-support-lingual {
    float:right;
    margin:-1px 0px 0px 0px;
}

ul.call-support {
    float:left;
    margin:-1px 0px 0px 0px;
    padding:0px;
}

ul.quick-support-lingual .btn-group > .btn {
    line-height: 12px;
    padding:5px 4px 4px;
    background:none;
    border:none;
    color:#fff;
}
ul.quick-support-lingual .btn-group img {
    height: 24px;
    width: 24px;
}
.btn-group img.lang {
    margin-right: 5px;
    margin-top: -1px;
    border-radius: 50%;
    border: solid 1px #3fc045;
    padding: 2px;
}

header {
    background: #fff;
    border-bottom: solid 1px #f2f2f2;
    padding: 0px 0;
    left: 0;
    width: 100%;
    z-index: 20;
    position: relative;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    -ms-transition: 0.3s all ease;
    transition: 0.3s all ease;
}

/******* Navigation Bar ********/


.nav-wrapper {
    margin:0rem;
    display: flex;
}

#menu-nav-menu {
    margin-top: 5px;
}

.navbar {
    padding:0 !important;
    float: right;
}

.navbar-nav {
    display: flex;
    gap: 1rem;
    text-transform: uppercase;
}

.navbar-nav > li > a {
    font-family: 'Uni Neue';
    font-size:15px;
    color:#000;
    z-index: 111;
    display: block;
    font-weight: 400;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
    background: hsl(var(--background));
    border-radius: var(--radius-lg);
    border: 1px solid hsl(var(--border));
    box-shadow: var(--shadow-lg);
    transition: opacity 0.15s ease-in-out;
}

.dropdown-menu li {
    float: none;
    position: relative;
    border-bottom: 1px solid rgba(89,169,89,.4);
}

.dropdown-menu li:first-child {
    margin-top:0px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.dropdown-menu li a {
    font-family: 'Uni Neue', sans-serif;
    text-transform: capitalize;
    display:block;
    margin:0;
    position:relative;
    text-decoration:none;
    font-size:15px;
    line-height:16px;
    color:#131313;
    overflow:hidden;
    padding:12px 15px 12px;	
    background: transparent;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    -ms-transition: 0.3s all ease;
    transition: 0.3s all ease;
}
.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li:first-child a {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
.dropdown-menu li:last-child a {
    margin-bottom:0px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.navbar-nav>li>a {
    padding-top:10px;
    padding-bottom:10px;
}
 
.navbar-nav .nav-item .nav-link {
    position: relative;
    transition: color 0.2s ease, transform 0.2s ease;
    padding: 0.5rem 1rem;
}

.navbar-nav .nav-item .nav-link:before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--default-color);
    transform: scaleX(0);
    transition: transform 0.2s ease;
    transform-origin: center;
}

.navbar-nav .nav-item .nav-link:hover {
    transform: translateY(-1px);
}

.navbar-nav .nav-item .nav-link:hover::before {
    transform: scaleX(1);
}
 
.navbar-nav > li {
    margin: 0rem .5rem;
}

.nav .open>a, .nav .open>a:focus, .nav>li>a:hover,.navbar-nav .nav-link.active {
    text-decoration: none;
    background-color: transparent;
    color:#1e9518;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.navbar-nav .dropdown-menu:before {
    content: url('assets/images/nav-arrow.png');
    position: absolute;
    top: -17px;
    left: 5%;
    margin-left: -15px;
    width: 0px;
    height: 0px;
    margin: 0px auto;
}

.navbar-nav>li>.dropdown-menu {
    margin-top:11px;
    padding: 0;
}

.home-slider {
    min-height:400px;
    padding:0px;
    display: block;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    background: #f3f3f3;
}

#menu-nav-menu .dropdown-menu > .active > a {
    background-color: #6f9e28;
    background-image: -webkit-linear-gradient(top,#8dc13f 0,#6f9e28 100%);
    background-image: -o-linear-gradient(top,#8dc13f 0,#6f9e28 100%);
    background-image: -webkit-gradient(linear,left top,left bottom,from(#8dc13f),to(#6f9e28));
    background-image: linear-gradient(to bottom,#8dc13f 0,#6f9e28 100%);
    background-repeat: repeat-x;
}

.sf-menu{	
	margin:0;
	float: right;		
	padding-top: 9px;		
}
.sf-menu ul{
	position:absolute;	
	list-style: none;
	top:-999em;
	width:auto;
	display:none;
}
.sf-menu > li{
	position: relative;
	float:left;	
	list-style: none;	
	line-height: 20px;
	margin:0 30px 0 0;	
}
.sf-menu li a i{
	padding-left: 3px;
}
.sf-menu > li:last-child {	
	margin:0;
}
.sf-menu > li > a {
	text-decoration:none;
	display:block;
	font-size:12px;	
	font-weight: 300;
	color:#131313;	
        text-transform: uppercase;
}

.is-sticky .sf-menu li:hover ul,.is-sticky .sf-menu li.sfHover ul{top:36px;}
.is-sticky  .sf-menu li li:hover ul,.is-sticky  ul.sf-menu li li.sfHover ul{left:160px;top:0;}

.sf-menu li:hover ul,.sf-menu li.sfHover ul { 
    top:38px;  
    left:0px; 
    z-index:999;
}

.sf-menu li:hover li ul,ul.sf-menu li.sfHover li ul{top:-999em}
.sf-menu li.current,.sf-menu li:hover,.sf-menu li.sfHover{
	text-decoration:none;
}
.sf-menu li li a{
	display:block;
	margin:0;
	position:relative;
	text-decoration:none;
	font-size:12px;
	line-height:16px;
	color:#131313;
	overflow:hidden;
	padding:12px 15px;	
	background: #f9f9f9;
	-webkit-transition: 0.3s all ease;
	-moz-transition: 0.3s all ease;
	-o-transition: 0.3s all ease;
	-ms-transition: 0.3s all ease;
	transition: 0.3s all ease;
}
.sf-menu li li > a:hover, .sf-menu li li.sfHover > a, .sf-menu li li.current > a{
	color:#1B1823;		
}
.sf-menu li li{
	float:none;
	position:relative;	
	border-bottom: 1px solid #eee;
}
.sf-menu li li a i{
	float: right;
	font-size: 15px;
}
.sf-menu li li:last-child{
	border-bottom: 0;
}
.sf-menu li li a:hover{
	color: #fff;	
	-webkit-transition: 0.3s all ease;
	-moz-transition: 0.3s all ease;
	-o-transition: 0.3s all ease;
	-ms-transition: 0.3s all ease;
	transition: 0.3s all ease;
}
.sf-menu li li:hover ul,ul.sf-menu li li.sfHover ul{left:160px;top:0;}


/*** CONTENT *****/

.box-action {
    background-color: #292929;
    text-align: center;
}

.box-action h1 {
    width: 75%;
    float: left;
    color: #fff;
    padding: 22px 0;
    margin: 0;
    font-weight: 200;
    font-size: 28px;
}

.box-action .button {
    width: 25%;
    height: 100%;
    padding: 15px 0;
    float: right;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #6f9e28;
    margin:5px 0px;
    border-radius: 8px;
}
.box-action .button a {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    line-height: 36px;
    text-decoration: none;
}

.box-action .left_arrow {
    position: absolute;
    width: 0;
    height: 0;
    left: -31px;
    top: 22%;
    border-top: 45px transparent;
    border-bottom: 45px solid transparent;
    border-right: 45px solid #27292B;
    font-size: 0;
    line-height: 0;
    transform: rotate(405deg);
}

.box-action .right_arrow {
    position: absolute;
    width: 0;
    height: 0;
    right: 0px;
    top: 22%;
    border-top: 45px transparent;
    border-bottom: 45px solid transparent;
    border-right: 45px solid #27292B;
    font-size: 0;
    line-height: 0;
    transform: rotate(224deg);
}

.general-box-action {
    background-image: url('assets/images/tagline-bg.jpg');
    background-repeat: no-repeat;
    background-position: left center;
    padding: 20px 0;
    margin-top: 10px;
    margin-bottom: 10px;
    position: relative;
    text-align: center;
    min-height:250px;
}

.general-box-action h1 {
    font-family: 'Cookie', cursive;
    width: 100%;
    float: left;
    color: var(--default-color);
    padding: 15px 0;
    margin: 40px 0px 0px;
    font-weight: 500;
    font-size: 60px;
    text-align: center;
}

.general-box-action .button {
    width: 25%;
    height: 100%;
    padding: 15px 0;
    float: right;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #6f9e28;
    margin:5px 0px;
    border-radius: 8px;
}
.general-box-action .button a {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    line-height: 36px;
    text-decoration: none;
}

.title-heading {
    position: relative;
    text-align: center;
    padding:30px 0px;
}

.title-heading .line {
    height: 1px;
    z-index: 1;
    background-color: #c5c5c5;
    width: 95%;
    left: 5%;
    position: absolute;
    top: 48%;
}

.title-heading h1 {
    font-family: 'Uni Neue', sans-serif;
    background:#fff;
    width: 28%;
    margin: 0 auto;
    z-index: 2;
    position: relative;
    font-weight: 900;
    color: #6f9e28;
    font-size: 30px;
}

.our-services .title-heading h1 {
    width:100%;
    font-size: 35px;
}


.title-heading span.sub-title {
    font-size:15px;
}

.our-works {
    min-height:425px;
}

.section-gray .title-heading h1 {
    background:#eeeeee;
}
    
.padding-top {
    padding-top: 50px;
}

.services {
    height: 100%;
    padding: var(--spacing-y) var(--spacing-x);
    background: #fff;
    border-radius: 8px;
    border: 1px solid hsl(var(--border, 220 13% 91%));
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.services:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md, 0 4px 6px -1px rgb(0 0 0 / 0.1));
}

.services .icons {
    margin: 0 10px 20px 0;
    width: 50px;
    height: 50px;
    display: inline-block;
}

.services .content {
    flex: 1;
}

.services .content h4 {
    margin: 0 0 5px;
    font-weight: 600;
    color: hsl(var(--foreground));
}

.services .content h5 {
    margin: 0 0 10px;
    color: var(--default-color);
    font-weight: 400;
}

.border-right {
    border-right: 1px solid #dedede;
    padding-right: 15px;
}

.footer-border-right {
    border-right:1px solid #505050;
    padding-right: 15px;
}

.services .content p {
    margin-bottom: 5px;
}

.services .fa {
    color: #6f9e28 !important;
}

hr.tall {
    margin: 50px 0 35px;
    border: 0;
    height: 1px;
    background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.20), rgba(0,0,0,0));
    background-image: -moz-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.20), rgba(0,0,0,0));
    background-image: -ms-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.20), rgba(0,0,0,0));
    background-image: -o-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.20), rgba(0,0,0,0));
}

.offices, .contact {
    margin: 0 auto;
    max-width: 1200px;
    text-align: center;
}

.offices h4, .contact h4 {
    background: url("assets/images/bg.png") repeat scroll 0 0 rgba(0, 0, 0, 0);
    color: #333;
    display: inline-block;
    font-size: 24px;
    font-weight: 300;
    line-height: 30px;
    padding: 0 30px;
    position: relative;
    top: -60px;
    z-index: 9;
}

.office-locations h3 {
    color: #6f9e28;
    padding-bottom: 0px;
}

.office-locations h4, .enquiries h4 {
    font-weight: 400;
}


address {
    line-height: 30px;
    font-size: 15px;
}

address i {
    padding-right: 10px;
    color: #6f9e28;
}


/*** Map ***/
#officeMap {
    width: 100%;
    min-height: 600px;
}

/*** Footer ***/

.menu-footer {
    padding: 5px 0 0 30px;
    margin:0px;
}

#footer ul li {
    display: list-item;
    margin: 0 10px;
}

#footer ul li a  {
    color: #969696;
    font-size: 1rem;
    text-decoration: none;
}

#footer ul.menu li::before {
    font-family: "Font Awesome 6 Pro";
    content: "\f0c1";
    color: #606060;
    font-weight: 500;
    font-size: 12px;
    margin-right: 12px;
    top: -3px;
    position: relative;
}

#footer #inner-footer .footer-widget li i {
    margin-right: 12px;
    color: #606060;
}

#footer {
    margin: 0;
    padding: 0;
    background: url("assets/images/footer-bg.gif");
}
#footer #inner-footer h4 {
    color:#6d8160;
    font-family: inherit;
    font-size:.90rem;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0px;
}
#footer #inner-footer {
    color: #969696;
    padding: 50px 0px 0px;
    font-size: 1rem;
}
#footer #inner-footer .footer-widget {
    margin: 0 0 40px 0;
}
#footer #inner-footer .footer-widget a {
    color: #969696;
    text-decoration: none;
    display: inline-block
}
#footer #inner-footer .footer-widget a:hover,
#footer #inner-footer .footer-widget a:focus {
    color: #6f9e28; /*#FF7E65;*/
    text-decoration: none;
}
#footer #inner-footer .footer-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
}
#footer #inner-footer .footer-widget ul li {
    padding-bottom: 4px;
    margin-bottom: 4px;
}
/* #footer #inner-footer .footer-widget ul li a:before {
    content: "";
    padding-right: 14px;
    background-image: url('assets/images/arrow.png');
    background-repeat: no-repeat;
    background-position: left center;
} */
#footer #inner-footer .footer-widget h2.widget-title {
    margin: 0 0 15px 0;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}
#footer #inner-footer .footer-widget .tagcloud a {
    margin: 0 3px 3px 0;
    padding: 1px 10px;
    display: inline-block;
    text-decoration: none;
    color: #aaa;
    background-color: #353535;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -moz-background-clip: padding-box;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
#footer #inner-footer .footer-widget.widget_recent_entries a,
#footer #inner-footer .footer-widget.widget_recent_comments a {
    font-weight: 700;
}
#footer #inner-footer .footer-widget.widget_recent_entries span.post-date,
#footer #inner-footer .footer-widget.widget_recent_comments span.post-date {
    font-style: italic;
    display: block;
    font-size: 12px;
}
#footer #inner-footer .footer-widget.widget_recent_entries li,
#footer #inner-footer .footer-widget.widget_recent_comments li {
    border-bottom: solid 1px #333;
    padding-bottom: 8px;
    margin-bottom: 8px;
}
#footer #inner-footer .footer-widget.widget_recent_entries li:last-child,
#footer #inner-footer .footer-widget.widget_recent_comments li:last-child {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
#footer #inner-footer .footer-widget #wp-calendar {
    width: 100%;
}
#footer #inner-footer .footer-widget #wp-calendar caption {
    padding-top: 0;
    text-align: right;
    color: #777;
    font-size: 13px;
    font-weight: 700;
}
#footer #inner-footer .footer-widget #wp-calendar thead {
    font-size: 10px;
}
#footer #inner-footer .footer-widget #wp-calendar thead th {
    padding-bottom: 10px;
    text-align: center;
}
#footer #inner-footer .footer-widget #wp-calendar tbody {
    color: #aaa;
}
#footer #inner-footer .footer-widget #wp-calendar tbody td {
    background: #303030;
    border: 1px solid #252525;
    text-align: center;
    padding: 8px;
}
#footer #inner-footer .footer-widget #wp-calendar tbody td:hover {
    background: #252525;
}
#footer #inner-footer .footer-widget #wp-calendar tbody .pad {
    background: none;
}
#footer #inner-footer .footer-widget #wp-calendar tbody a {
    color: #174e9c;
}
#footer #inner-footer .footer-widget #wp-calendar tfoot #next,
#footer #inner-footer .footer-widget #wp-calendar tfoot #prev {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
}
#footer #inner-footer .footer-widget #wp-calendar tfoot #next {
    text-align: right;
}
#footer #inner-footer .footer-widget.widget_search .screen-reader-text {
    display: none;
}
#footer #inner-footer .footer-widget.widget_search label {
    width: 100%;
}
#footer #inner-footer .footer-widget.widget_search input[type="search"] {
    padding-left: 10px;
    padding-right: 40px;
    height: 40px;
    width: 100%;
    background-color: transparent;
    border: solid 2px #404040;
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
    -moz-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
    font-weight: normal;
}
#footer #inner-footer .footer-widget.widget_search #searchsubmit {
    background: none;
    border: 1px solid #e5e5e5;
    border-style: none solid;
    border-radius: 0 5px 5px 0;
    bottom: 1px;
    position: absolute;
    right: 0;
    text-indent: -9999px;
    top: 1px;
    white-space: nowrap;
    width: 50px;
}
#footer #inner-footer .footer-widget.widget_search .search-form {
    position: relative;
}
#footer #inner-footer .footer-widget.widget_search .search-form:after {
    display: inline-block;
    font-family: FontAwesome;
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f002";
    color: #777;
    position: absolute;
    right: 14px;
    top: 10px;
    z-index: 1;
}
#footer #inner-footer .footer-widget.widget_search .search-form input[type="submit"] {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 0;
    left: auto;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 0;
    font-size: 0;
    color: transparent;
    z-index: 2;
    outline: none;
    border: none;
}

#footer .copyright-footer #copyright-text,
#footer .copyright-footer #designed-by {
    font-size: 1rem;
    color: #B7B7B7;
}
#footer .copyright-footer p {
    padding-top: 10px;
}

/* #footer .copyright-footer a:hover {
    color:#6f9e28;
    text-decoration: none;
} */

#footer .zt-recent-activity-widget {
    list-style-type:none; 
    margin:0; padding:0;
}
#footer .zt-recent-activity-widget li {
    background:url('assets/images/note.png') no-repeat 0 4px; 
    padding:0 0 6px 30px !important; 
    margin-bottom:6px !important;  
    border-bottom:dotted 1px #434342;
}


#footer .zt-recent-activity-widget li a {
    width:100%;
    margin:0px;
    padding:0px;
}
#footer .zt-recent-activity-widget li a:before {
    content:'';
    background-image: none !important;
}
#footer .zt-recent-activity-widget h3 {
    font-size:14px; 
    margin:0 0 5px 0;
    padding:0px !important;
}

#footer .zt-recent-activity-widget li span {
    display:block;
}

.zt-recent-activity-widget span.act-info {
    font-size:12px;
}

.contact-form .form-control {
    height: 45px;
    border: solid 1px #ddd;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -moz-background-clip: padding-box;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    font-size: 14px;
    color: #555;
}

.contact-form textarea.form-control {
    min-height: 100px;
}


#footer .copyright-footer {
    margin: 0;
    padding: .5rem 0rem;
    background: url("assets/images/copyright-bg.gif");
    color:#ddd;
}

#footer .logo-footer {
    float: left;
}

#footer .copy p {
    margin-left: -5px !important;
}
#footer .copy p {
    padding: 5px 0 0 0;
    margin: 0;
    font-size: 1rem;
    color:#848484 !important;
}

#footer .social {
    text-align: right;
    margin-top: 20px;
}

#footer .social li a img {
    width: 30px;
    height: 30px;
    margin: 0px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    opacity: 0.5;
}

#footer .social li a img:hover { 
    opacity: 1;
}

#footer .social li {
    /* border-radius: 50%; */
    width: 32px;
    height: 32px;
    text-align: center;
    display: inline-block;
    margin: 0px;
}
#footer .social li i{
    color: #333;
    text-shadow:none;
    font-size: 18px;
    line-height: 35px;
}

#footer .social li:hover i{
    color: #fff;
}

#footer .tags a{
	color: #dedede;
}

/* #footer .social li.facebook:hover {
    background:#3A5795;
} */

#footer .social li.twitter:hover {
    background:#5EA9DD;
}

#footer .social li.youtube:hover {
    background:#CC181E;
}

/* #footer .social li.linkedin:hover {
    background:#0077B5;
} */

.sidebar-widget {
    margin:30px 0px;
}

footer .input-group-addon i {
    color: #131313;
    text-shadow: 1px 1px 1px #ccc;
}

footer .btn {
    border: 0 !important;
    font-size: 16px !important;
    border-radius: 0 3px 3px 0 !important;
    font-weight: 300 !important;
}

footer .btn.btn-primary {
    background: #6f9e28 !important;
    background-color: #6f9e28 !important;
    border-style: none none solid !important;
    color: #fff !important;
    text-transform: uppercase !important;
    transition: all 0.2s linear 0s !important;
    height:34px;
    padding:0px 10px !important;
}

input.error::-webkit-input-placeholder { /* WebKit browsers */
    color:    #FF0000;
    
    opacity:  0.8;
}

label.error {
    color: #FF0000;
    opacity:  0.8;
    font-size: 13px;
    font-family: 'Uni Neue', sans-serif;
}

input.error:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #FF0000;
   opacity:  0.8;
}
input.error::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #FF0000;
   opacity:  0.8;
}
input.error:-ms-input-placeholder { /* Internet Explorer 10+ */
   color:    #FF0000;
   opacity: 0.8;
}

textarea.error::-webkit-input-placeholder { /* WebKit browsers */
    color:    #FF0000;
    opacity:  0.8;
}
textarea.error:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #FF0000;
   opacity:  0.8;
}
textarea.error::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #FF0000;
   opacity:  0.8;
}
textarea.error:-ms-input-placeholder { /* Internet Explorer 10+ */
   color:    #FF0000;
   opacity: 0.8;
}

.home-slider .curve_edge {
    background: url("assets/images/curv.png");
    bottom: -13px;
    height: 75px;
    left: 50%;
    margin-left: -228px;
    position: absolute;
    width: 456px;
    z-index: 2;
}

.section-gray {
    background:#eeeeee;
    display:block;
}

.borders {
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
}

.paddings {
    padding: 30px 0;
}

/* Recent Works Layout */

#main {
  padding: 40px 0 80px;
}

/* Main Boxes Styling */

#box-container {
  margin: 0 auto;
  max-width:100%;
}

#entry-listing {
  margin-left: -16px;
}

#entry-listing .entry h1 {
    font-size: 14px;
    margin-bottom: 12px;
}

#entry-listing .entry p {
    font-size:13px;
    margin-bottom: 0px;
}

#entry-listing .entry p span {
    font-weight: bold;
}

.box {
    box-shadow: 0 2px 4px hsl(var(--primary) / 0.06), 
                0 1px 2px hsl(var(--primary) / 0.12);
    border: 1px solid hsl(var(--primary) / 0.08);
    border-radius: var(--radius-lg);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px hsl(var(--primary) / 0.12), 
                0 2px 4px hsl(var(--primary) / 0.08);
}

.box .entry-content-cnt {
  padding: 0px;
  border-bottom: 1px solid #e6e6e6;
}

.box .entry-desc {
  padding: 8px 12px 10px;
  background: #fff;
  border-top: 1px solid #fff;

  -moz-border-radius: 0 0 6px 6px;
  -webkit-border-radius: 0 0 6px 6px;
  -o-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
}

.entry-content > a {
  display: block;
  line-height: 0;
}

.entry img {
  max-width: 100%;

  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  transition: all 0.2s linear;
  
  border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.entry img:hover {
  opacity: 0.6;
}

.entry-permalink {
  text-indent: -999em;
  float: right;
  background: url('images/sprites.png') no-repeat 0 -49px; width: 16px; height: 16px;
  cursor: pointer;
  margin-top: 1px;
}

.entry-permalink:hover {
  background-position: -1px -84px;
}

.entry p {
  line-height: 1.5;
}

.social-share {
    background: none repeat scroll 0 0 #F7F7F7;
    border-radius: 0 0 4px 4px;
    border-top: 1px solid #FFFFFF;
    padding: 3%;
    text-align: center;
}

/*
============================================================================
Isotope Styles
============================================================================
*/
.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  -ms-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  transition-duration: 0.8s;
}

.isotope {
  -webkit-transition-property: height, width;
  -moz-transition-property: height, width;
  -ms-transition-property: height, width;
  -o-transition-property: height, width;
  transition-property: height, width;
}

.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property:    -moz-transform, opacity;
  -ms-transition-property:     -ms-transform, opacity;
  -o-transition-property:         top, left, opacity;
  transition-property:         transform, opacity;
}

/**** disabling Isotope CSS3 transitions ****/

.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -ms-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}

.col-no-padding {
   padding: 0 !important;
   margin: 0 !important;
}


.job-container {
    
}

.job {
    border: 1px solid #ebebeb;
    border-radius: 5px;
    margin-bottom: 10px;
    padding: 10px 19px;
}

.job-position h4 {
    margin: 0px;
    padding: 0px;
    display: inline-block;
    cursor: pointer;
    width: 100%;
}

.job-position h4 a {
}

.job-description-container {
    height: auto;
    overflow: hidden;
    padding: 0px;
    display: block;
}

.job-description {
    color: #000;
    padding: 0px;
    position: relative;
    display: inline-block;
    margin-left: 0px;
    margin-top:10px;
}

job-description p {
    margin: 0;
    margin-bottom: 20px;
}

.job-description .jlist li {
    padding:0px 0px 5px;
}

.careers-page .panel-default > .panel-heading {
    background:transparent !important;
}

.careers-page .panel-heading {
    padding: 10px 15px 7px !important;
}

.careers-page .panel-title a {
    width:100% !important;
    display:inline-block;
}

.careers-page .panel-title.active a {
    color: #2b96cc !important;
}

.careers-page .panel-title {
    font-size:15px !important;
    font-weight: normal !important;
    font-family:'Mulish', sans-serif;
}

.careers-page .panel-title a span .fa {
    line-height: 25px;
}

.careers-page .panel-title a span {
    width: 22px;
    height: 24px;
    text-align: center;
    font-size: 10px;
    color: #a5a5a5;
    background: #f8f8f8;
    float: right;
    margin-right: 0px;
    border-radius: 4px;
}

.ci-email {
    font-size:14px;
}

.our-expertise {
    padding: 10px 0px 35px;
    margin: 0px;
    border-bottom: 1px solid #ccc;
    background:rgba(177, 177, 177, 0.11);
}

.ft-box {
    float: left;
    margin: 0px 10px 20px;
    box-sizing: border-box;
    border: solid 1px #efefef;
    padding: 0px 0px 0px;
    background: rgba(255, 255, 255, .11);
    border-radius: 5px;
    overflow: visible;
    box-shadow: 0px 1px 1px rgba(0,0,0,0.2), 0px 0px 0px 0 rgba(0,0,0,0.14), 0 1px 0px 0 rgba(0,0,0,0.12);
}


.owl-theme .owl-controls .owl-page span {
    background-color: #fff !important;
    border: 2px solid #c5c5c5;
    border-radius: 100%;
    cursor: pointer;
    height: 24px !important;
    margin: 0 6px !important;
    transition: background-color ease-in-out 150ms;
    width: 24px !important;
    will-change: background-color;
}

.owl-theme .owl-controls .owl-page.active span {
    background-color: #8c8c8c !important;
    cursor: default !important;
}


.alert-info, .alert-success, .alert-warning, .alert-error, .alert-validation {
  -webkit-animation: seconds 1.0s forwards;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-delay: 7s;
  animation: seconds 1.0s forwards;
  animation-iteration-count: 1;
  animation-delay: 7s;
  position: relative;
    
}
@-webkit-keyframes seconds {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    left: -9999px; 
    position: absolute;   
  }
}
@keyframes seconds {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    left: -9999px;
    position: absolute;     
  }
}

.bgwhite {
    background:#fff !important;
}

/* Grid system fixes */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(var(--spacing-x) * -0.5);
  margin-left: calc(var(--spacing-x) * -0.5);
}

[class*="col-"] {
  padding-right: calc(var(--spacing-x) * 0.5);
  padding-left: calc(var(--spacing-x) * 0.5);
  margin-bottom: var(--spacing-y);
}

/* Responsive columns */
@media (min-width: 768px) {
  .col-md-3 { width: 25%; }
  .col-md-4 { width: 33.333333%; }
  .col-md-6 { width: 50%; }
  .col-md-7 { width: 58.333333%; }
  .col-md-8 { width: 66.666667%; }
  .col-md-12 { width: 100%; }
}

/* Hero section fixes */
.hero-content {
  padding: var(--spacing-y) 0;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .border-right {
    border: none;
  }
  
  .services {
    text-align: center;
    padding: var(--spacing-x);
  }
  
  .services .icons {
    margin: 0 auto 1rem;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
}