/*!
Theme Name: APH authority
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: aph-authority
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

APH authority is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

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

/* font-family: "Inter Tight", sans-serif;
font-family: "Poppins", sans-serif; 
*/

body,
html {
    overflow-x: hidden;
}

:root {
    --bg-white: #fff;
    --bg-black: #000;
    --bg-color: #D85A32;
    --bg-color2: #f5a720;
    --body-color: #3A3A3A;
    --heading-color: #2d2d2d;
    --yelow-hover-color: #F7EBCE;
    --orange-color: #D85B32;
    --body-font: "Poppins", sans-serif;
    --heading-font: "Inter Tight", sans-serif;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--body-font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    font-weight: 500;
    font-style: normal;
    color: var(--body-color);
    font-size: 18px;
    line-height: 1.5;
    background-color: var(--bg-white);
}

b,
strong {
    font-weight: 700;
}

p {
    margin: 0 0 20px 0;
}

p:last-child {
    margin-bottom: 0;
}

h1,
.title-h1,
h2,
.title-h2,
h3,
.title-h3,
h4,
.title-h4,
h5,
.title-h5,
h6,
.title-h6 {
    margin: 0 0 25px 0;
    padding: 0;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-weight: 800;
    text-transform: capitalize;
}

h1:last-child,
.title-h1:last-child,
h2:last-child,
.title-h2:last-child,
h3:last-child,
.title-h3:last-child,
h4:last-child,
.title-h4:last-child,
h5:last-child,
.title-h5:last-child,
h6:last-child,
.title-h6:last-child {
    margin-bottom: 0;
}


h1,
.title-h1 {
    font-size: 87px;
    line-height: 1.2;
}

h2,
.title-h2 {
    font-size: 60px;
    line-height: 1.2;
}

h3,
.title-h3 {
    font-size: 34px;
    line-height: 1.2;
}

h4,
.title-h4 {
    font-size: 30px;
    line-height: 1.2;
}

h5,
.title-h5 {
    font-size: 25px;
    line-height: 1.2;
}

h6,
.title-h6 {
    font-size: 20px;
    line-height: 1.2;
}




a {
    margin: 0;
    padding: 0;
    text-decoration: none !important;
    outline: none !important;
    color: var(--bg-color2);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:hover {
    color: var(--bg-color);
}

img {
    max-width: 100%;
}


input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
select {
    background-color: transparent;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    color: #3A3A3A;
    border: 2px solid var(--bg-color2);
    height: 66px;
    padding: 0 25px;
    outline: none !important;
    font-weight: 500;
}

textarea {
    background-color: transparent;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    border: 2px solid var(--bg-color2);
    padding: 12px 16px;
    width: 100%;
    color: #3A3A3A;
    height: 200px;
    resize: none;
    outline: none !important;
    font-weight: 500;
}

select {
    border: 2px solid var(--bg-color2);
    width: 100%;
    background: url(images/sort-down.svg) no-repeat calc(100% - 25px) center transparent;
    background-size: 12px;
    padding-right: 40px;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

select::-ms-expand {
    display: none;
}

input[type="submit"] {
    background: var(--bg-color2);
    color: #161616;
    height: 72px;
    min-width: 220px;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    padding-left: 25px;
    padding-right: 25px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    outline: none !important;
    border: 2px solid var(--bg-color2);
    border-radius: 60px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

input[type="submit"]:hover {
    background: var(--bg-white);
    color: #161616;
}

::-webkit-input-placeholder {
    opacity: 1;
    color: var(--body-color);
}

:-ms-input-placeholder {
    opacity: 1;
    color: var(--body-color);
}

::-moz-placeholder {
    opacity: 1;
    color: var(--body-color);
}

:-moz-placeholder {
    opacity: 1;
    color: var(--body-color);
}


/* --- Accounts Payable & Receivable Analyst P/T – Job Description --- */
.job-desc-frame embed {
    width: 100%;
    height: 750px;
}

/* --- Accounts Payable & Receivable Analyst P/T – Job Description --- */





/* images alignment for wordpress content pages */
.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    float: none;
    clear: both;
}





/* custom checkbox */

.form_input_check label {
    position: relative;
    margin: 0;
    padding-left: 40px;
    display: inline-block;
}

.form_input_check label span {
    margin: 0;
    padding: 0;
}

.form_input_check label input[type="checkbox"] {
    visibility: hidden;
    display: none;
}

.form_input_check label input[type="checkbox"]+span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    width: 22px;
    height: 22px;
    border: 1px solid #3E3E42;
    background: transparent;
}

.form_input_check label input[type="checkbox"]+span::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    width: 22px;
    height: 22px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background: url(images/tick.svg) no-repeat center center;
    background-size: 15px;
}

.form_input_check label input[type="checkbox"]:not(:checked)+span::after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}


/* .form_input_check input[type="checkbox"]:checked + span::before {
    
} */

.form_input_check label input[type="checkbox"]:checked+span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}


/* custom radio */

.form_input_radio label {
    position: relative;
    margin: 0;
    padding-left: 30px;
    display: inline-block;
}

.form_input_radio label span {
    margin: 0;
    padding: 0;
}

.form_input_radio label input[type="radio"] {
    visibility: hidden;
    display: none;
}

.form_input_radio label input[type="radio"]+span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    border: 2px solid #000000;
    border-radius: 100%;
    background: #fff;
}

.form_input_radio label input[type="radio"]+span::after {
    content: '';
    width: 12px;
    height: 12px;
    background: #4b0049;
    position: absolute;
    top: 6px;
    left: 5px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.form_input_radio label input[type="radio"]:not(:checked)+span::after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}


/* .form_input_radio input[type="radio"]:checked + span::before {
    
} */

.form_input_radio label input[type="radio"]:checked+span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}


/* custom radio end */

/* back to top */

/* #scroll {
position: fixed;
right: 20px;
bottom: 20px;
cursor: pointer;
width: 55px;
height: 55px;
background-color: #bdd653;
display: none;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
line-height: 68px;
text-align: center;
cursor: pointer;
display: inline-block;
-webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
z-index: 9;
}

#scroll:hover {
background: #88a725;
}

#scroll i {
color: #fff;
font-size: 44px;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
-webkit-transform: translateY(0);
transform: translateY(0);
}

#scroll:hover i {
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
-webkit-transform: translateY(-6px);
transform: translateY(-6px);
} */




/* navbar*/

.navbar-brand {
    padding: 0;
    margin: 0;
    width: 86px;
    display: inline-block;
    margin-right: 50px;
}

.navbar {
    background: none;
    margin: 0;
    padding: 0;
    min-height: inherit;
    height: inherit;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

.navbar-nav li {
    position: relative;
    list-style: none;
}

.navbar-nav>li {
    margin: 0 20px;
    padding: 30px 0;
    position: relative;
}

.navbar-nav>li:last-child {
    margin-right: 0;
}

.navbar-nav>li:first-child {
    margin-left: 0;
}

.navbar-nav>li>a {
    color: var(--body-color);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    position: relative;
}

.navbar-nav>li>a:hover+.clickD {
    filter: brightness(0) saturate(100%) invert(43%) sepia(25%) saturate(3182%) hue-rotate(342deg) brightness(91%) contrast(85%);
}

/* .navbar-nav>li>a:after {
content: '';
display: block;
width: 0;
height: 2px;
background: #3B61DC;
position: absolute;
bottom: -10px;
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
} */

.navbar-nav>li.current-menu-item>a,
.navbar-nav>li>a:hover,
.navbar-nav>li.menu-item-has-children:hover>a {
    color: var(--bg-color);
}

.navbar-nav>li.menu-item-has-children:hover>a+.clickD {
    filter: brightness(0) saturate(100%) invert(43%) sepia(25%) saturate(3182%) hue-rotate(342deg) brightness(91%) contrast(85%);
}

/* .navbar-nav>li.current-menu-item>a:after,
.navbar-nav>li>a:hover:after,
.navbar-nav>li.menu-item-has-children:hover>a:after {
width: 100%;
} */


/* navbar submenu*/
/* 26.12.25 */
.sub-menu {
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    /* display: none; 
     opacity: 0; */
    visibility: hidden;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 15px;
    width: 350px;
    padding: 0;
    transition: 0.5s ease-in-out;
}

.sub-menu>li>a {
    color: #000;
    display: block;
    width: 100%;
    padding: 6px 10px;
    padding-right: 30px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    transition: 0.5s ease-in-out;
}

.sub-menu>li:first-child>a {
    border-radius: 15px 15px 0px 0px;
}

.sub-menu>li:last-child>a {
    border-radius: 0px 0px 15px 15px;
}

.sub-menu>li {
    width: 100%;
    display: block;
}

.sub-menu>li>a:hover,
.sub-menu>li.menu-item-has-children:hover>a,
.sub-menu>li.current-menu-item>a {
    background: var(--bg-color);
    color: #fff;
}

.sub-menu>li.menu-item-has-children:hover>a+.clickD,
.sub-menu>li.current-menu-item>a+.clickD {
    filter: brightness(0) invert(1);
}



.navbar-nav>li:last-child>.sub-menu {
    right: 0;
    left: inherit;
    padding: 0;
}

/* 2nd level submenu */
.navbar-nav>li>.sub-menu .sub-menu {
    position: absolute;
    left: 100%;
    top: 0;
}


/* for push-menu */
.navbar-collapse .navbar-toggler {
    display: none;
}

#navoverlay {
    display: block;
    pointer-events: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    margin: 0;
    padding: 0 !important;
    z-index: 99;
    -webkit-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
}

/* for push-menu end*/


.cmn-gap {
    padding: 130px 0px;
}

.cmn-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
    padding: 22px 30px;
    min-width: 296px;
    color: #161616;
    background-color: var(--bg-color2);
    border: 2px solid var(--bg-color2);
    border-radius: 60px;
    text-transform: capitalize;
}

.cmn-btn:hover {
    background-color: var(--bg-white);
    color: #161616;
}

.cmn-btn.line {
    background-color: var(--bg-white);
}

.cmn-btn.line:hover {
    background-color: var(--bg-color2);
}

.container-lrg {
    max-width: 1850px;
    margin: 0 auto;
    padding: 0px 15px;
}

.container {
    max-width: 1630px;
    margin: 0 auto;
    padding: 0px 15px;
}





/* ========= main style ========= */

main {
    position: relative;
}

main:before {
    content: '';
    width: 100%;
    height: 400px;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, #EFD591 0%, rgba(217, 217, 217, 0) 100%);
    z-index: -1;
}

.main-head {
    padding: 0px;
    position: relative;
    z-index: 9999;
}

.navbar-nav {
    margin: 0px auto;
}

.header-top {
    background: var(--bg-color);
    padding: 10px 0px;
}

.header-top-row {
    display: flex;
    justify-content: space-between;
}

.header-top ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hdr-scl-area ul {
    display: flex;
}

.hdr-scl-area ul li {
    margin-right: 28px;
}

.hdr-scl-area ul li a:hover {
    opacity: 0.8;
}

.hdr-scl-area ul li img {
    height: 19px;
}

.hdr-top-rgt li img {
    width: 28px;
    margin-right: 14px;
    flex-shrink: 0;
}

.hdr-top-rgt li {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--heading-font);
    color: #fff;
    display: flex;
    align-items: center;
}

.hdr-top-rgt li a {
    color: #fff;
}

.hdr-top-rgt li a:hover {
    opacity: 0.8;
}

.header-nav {
    padding: 25px 0px;
}

.navbar-nav {
    background: #fff;
    padding: 0px 40px;
    border-radius: 200px;
}

.navbar-nav .clickD {
    position: absolute;
    right: 0;
    top: 36px;
    width: 11px;
    height: 12px;
    background: url(images/sort-down.svg) center center no-repeat;
    display: block;
    background-size: 11px;
    cursor: pointer;
}

.menu-item-has-children a {
    padding-right: 20px;
}

.hdr-rgt-area {
    display: flex;
    align-items: center;
    margin-left: auto;
    padding-left: 50px;
}

/* Toggle container */
.hdr-rgt-area .toggle-switch {
    position: relative;
    width: 145px;
    height: 74px;
    background-color: #d85c28;
    border-radius: 35px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px;
    transition: background 0.3s ease;
}

/* Toggle circle */
.hdr-rgt-area .toggle-circle {
    position: absolute;
    top: 7px;
    left: 10px;
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    transition: left 0.3s ease;
    z-index: 1;
}

/* Icons */
.hdr-rgt-area .icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    border-radius: 100%;
    z-index: 2;
}

.hdr-rgt-area .icon img {
    width: 30px;
}

/* Active (dark mode) */
.hdr-rgt-area .toggle-switch.active .icon.moon {
    filter: brightness(0) saturate(100%) invert(64%) sepia(91%) saturate(4088%) hue-rotate(338deg) brightness(87%) contrast(95%);
}

.hdr-rgt-area .toggle-switch.active .toggle-circle {
    left: calc(100% - 71px);
}

body.dark-mode span.icon.sun img {
    filter: brightness(0) invert(1);
}

/* Page theme */

body.dark-mode {
    background: #161616;
    color: var(--bg-white);
}

body.dark-mode h1,
body.dark-mode .title-h1,
body.dark-mode h2,
body.dark-mode .title-h2,
body.dark-mode h3,
body.dark-mode .title-h3,
body.dark-mode h4,
body.dark-mode .title-h4,
body.dark-mode h5,
body.dark-mode .title-h5,
body.dark-mode h6,
body.dark-mode .title-h6 {
    color: var(--bg-white);
}

.lan-select-dropmenu {
    display: none;
    position: absolute;
    top: 115%;
    right: 0;
    background: var(--bg-white);
    width: 210px;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.06);
}

.lan-select-dropmenu.open {
    display: block;
}

.lan-select {
    position: relative;
    margin-left: 20px;
    min-width: 175px;
}

.lan-selected {
    background: var(--bg-color2);
    padding: 22px 30px;
    min-width: 175px;
    border-radius: 100px;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: #161616;
}

.lan-selected img {
    margin-left: 7px;
    width: 13px;
}

.lan-select-dropmenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lan-select-dropmenu li {
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    padding: 10px 25px;
}

.lan-select-dropmenu li:hover {
    color: var(--bg-color);
}

.home-banner-wrapper {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    z-index: 1;
    background: var(--bg-black);
    color: var(--bg-white);
    min-height: 774px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.home-banner-wrapper .container {
    font-size: 20px;
}

.home-ban-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 50%;
    z-index: -1;
}

.cmn-init-title {
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: #444444;
}

.home-banner-wrapper .cmn-init-title {
    color: var(--bg-white);
    margin-bottom: 15px;
}

.home-banner-wrapper h1 {
    color: var(--bg-white);
}

.home-banner-wrapper .container {
    max-width: 1185px;
}

.hm-ban-btn-wrap {
    margin-top: 50px;
}

.home-banner .container-lrg {
    max-width: 1880px;
}

.scrl-btn {
    position: absolute;
    bottom: 44px;
    right: 44px;
    cursor: pointer;
    color: var(--bg-white);
}

.scrl-btn span {
    writing-mode: sideways-lr;
    letter-spacing: 10px;
}

.scrl-mp {
    width: 40px;
    height: 20px;
    background: rgba(255, 255, 255, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    transform: rotate(-90deg);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0px 10px;
    margin-top: 15px;
}

.scrl-mp span {
    width: 6px;
    height: 12px;
    background: var(--bg-white);
    border-radius: 10px;
    transform: rotate(-90deg);
}

.sec-head-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.sec-head-wrapper .sec-head {
    width: 50%;
    margin-bottom: 0px;
    padding-right: 15px;
}

.sec-head {
    margin-bottom: 20px;
}

.cmn-title {
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: #444444;
    margin-bottom: 10px;
}

.sec-head-wrapper article {
    width: 50%;
}

.about-sec .sec-head-wrapper .sec-head {
    max-width: 574px;
}

.hm-abt-row {
    display: grid;
    /* left column = 50% width, right side split into two equal parts (25% + 25%) */
    grid-template-columns: 50% 25% 25%;
    grid-template-rows: auto auto;
    /* two rows */
    /* gap: 30px; */
    /* adjust spacing */
    align-items: stretch;
    margin: -15px;
}

.hm-abt-row .hm-abt-col {
    padding: 15px;
}

/* place the items */
.hm-abt-row .hm-abt-col:nth-child(1) {
    grid-column: 1 / 2;
    /* left big column */
    grid-row: 1 / 3;
    /* span both rows (top + bottom) */
}

.hm-abt-row .hm-abt-col:nth-child(2) {
    grid-column: 2 / 4;
    /* span both small right columns => full-right top */
    grid-row: 1 / 2;
    /* top row */
}

.hm-abt-row .hm-abt-col:nth-child(3) {
    grid-column: 2 / 3;
    /* bottom-right left half (of the right side) */
    grid-row: 2 / 3;
    /* bottom row */
}

.hm-abt-row .hm-abt-col:nth-child(4) {
    grid-column: 3 / 4;
    /* bottom-right right half */
    grid-row: 2 / 3;
    /* bottom row */
}

.hm-abt-inn {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    background-color: var(--bg-black);
    border-radius: 20px;
}

.hm-abt-inn .abt-card-img {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: all .3s ease-in-out;
}

.hm-abt-btn-wrap {
    position: absolute;
    bottom: 0px;
    left: 0px;
    padding: 20px 15px;
    width: 100%;
}

.hm-abt-btn-wrap .cmn-btn {
    width: 100%;
    padding: 22px 25px;
    display: flex;
    justify-content: space-between;
    transition: all .3s ease-in-out;
}

.hm-abt-btn-wrap .cmn-btn img {
    width: 10px;
    margin-left: 15px;
}

.hm-abt-inn:hover .abt-card-img {
    opacity: 1;
}

.cmn-card-image {
    margin: 0px;
}

.cmn-card-image img {
    width: 100%;
    border-radius: 20px;
}

.cmn-card-row {
    align-items: center;
}

.cmn-card-right-col {
    padding-left: 60px;
}

.cmn-btn-wrap {
    margin-top: 50px;
}

.cmn-card-right-col .cmn-btn-wrap a {
    width: 100%;
}

.cmn-card-right-col .cmn-btn-wrap a+a {
    margin-top: 25px;
}

.what-we-do-left-col {
    width: 38%;
}

.what-we-do-right-col {
    width: 62%;
}

.what-we-do-cards {
    list-style: none;
    padding: 0px;
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
    margin-bottom: 0px;
    display: flex;
    flex-wrap: wrap;
    height: calc(100% - 30px);
}

.what-we-do-row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
}

.what-we-do-card-inner {
    padding: 40px;
    border: 2px solid var(--bg-color2);
    border-radius: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all .3s ease-in-out;
    color: #373737;
}

p.what-we-do-num {
    font-size: 50px;
    font-weight: 800;
    font-family: var(--heading-font);
    margin-bottom: 20px;
    line-height: 1.2;
    color: #2d2d2d;
}

.what-we-do-card-inner:hover {
    background: var(--bg-color2);
}

.what-we-do-right-innr {
    display: flex;
    flex-wrap: wrap;
    padding: 12px 12px 12px 50px;
    background: #F7EBCE;
    border-radius: 20px;
    align-items: center;
    height: 100%;
}

.what-we-do-right-innr-left {
    width: 53%;
    padding-right: 30px;
}

.what-we-do-right-innr-right {
    width: 47%;
    height: 100%;
}

.what-we-do-right-innr-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.what-we-do-card-col {
    height: 50%;
}

.service-area-wrap {
    background: #F7EBCE;
    border-radius: 40px;
}

.cmn-card-row.rev {
    flex-direction: row-reverse;
}

.cmn-card-row.rev .cmn-card-right-col {
    padding-left: 12px;
    padding-right: 60px;
}



/* 21.10.25 */
.wrapper-all-footer {
    max-width: 1624px;
    margin: 0 auto;
}

.up-ftr {

    border-bottom: 1px solid #DDCCA1;
    padding-bottom: 50px;
    margin-bottom: 50px;
}

.wrapper-footer {
    margin: 0 auto;
    border-radius: 40px;
    background-color: #F7EBCE;
    padding: 70px 110px;
    padding-bottom: 0;
}

.footer {
    padding-bottom: 50px;
}

.ftr-tle {
    font-size: 26px;
    font-weight: 800;
    color: #474542;
    letter-spacing: 0.04em;
}

.ftr-arw {
    height: 107px;
    width: 107px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: #F5A720;
}

.ftr-arw:hover {
    background-color: var(--bg-black);
}

.ftr-arw img {
    max-width: 26px;
}

.row-ftr-upper {
    display: flex;
    flex-wrap: wrap;

}

.row-down-footer {
    margin: 0px -12px;
    display: flex;
    flex-wrap: wrap;
}

.col-footer {
    padding: 0px 12px;
}

.ftr-logo-wrap {
    display: inline-block;
    margin-bottom: 30px;
    max-width: 496px;
}

.ftr-logo-wrap img {
    width: 100%;
}

.lft-ftr-upper {
    width: 50%;
    padding-right: 20px;
}

.rgt-ftr-upper {
    width: 50%;
    padding-top: 10px;
    display: flex;
    justify-content: flex-end;
}

.column {
    column-count: 2;
}

.list-ftr-items {
    padding: 0;
    margin: 0;
    list-style: none;
}

.list-ftr-items li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.list-ftr-items li a {
    color: var(--body-color);
}

.list-ftr-items li a:hover {
    color: var(--bg-color);
}

.list-social {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.list-social li {
    margin-right: 20px;
}

.list-social li:last-child {
    margin-right: 0;
}

.list-social li a {
    border: 1px solid var(--bg-color);
    height: 45px;
    width: 45px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-social li a:hover {
    background-color: var(--bg-color);
    border-color: var(--bg-color);
}

.ftr-arw:hover img,
.list-social li a:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(8%) saturate(0%) hue-rotate(82deg) brightness(107%) contrast(107%);
}

.down-ftr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 39px 0;
    flex-wrap: wrap;
}

.location-wrap {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    justify-content: center;
    background-color: var(--bg-color);
    border-radius: 100%;
    margin-right: 10px;
}

.lft-ftr-upper .title-h2 {
    letter-spacing: 0.04em;
}

.ftr-one {
    width: 37%;
}

.ftr-two {
    width: 36%;
}

.ftr-three {
    width: 27%;
}

.instagram-wrapper {
    width: 100%;
}

.instagram-wrapper img {
    width: 100%;
}

.list-profile {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.list-profile li {
    margin-right: 14px;
    display: flex;
    align-items: center;
}

.list-profile li img {
    max-width: 19px;
    margin-right: 8px;
}

.list-profile li:last-child {
    margin-right: 0;
}

.slider-blog .slick-slide {
    padding: 0px 15px;
}

.slider-blog .slick-list {
    margin: 0px -15px;
}

.wrap-btns-slider {
    display: flex;
    align-items: center;
}

.slider-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--body-color);
    height: 61px;
    width: 61px;
    border-radius: 100%;
}

.slider-btn:hover {
    background-color: var(--bg-color2);
    border-color: var(--bg-color2);
}

.slider-btn.prev {
    margin-right: 13px;
}

.inr-footer {
    max-width: 496px;
}

.read-link {
    display: inline-flex;
    align-items: center;
    /* text-decoration: underline !important; */
    color: var(--body-color);
    position: relative;
}

.read-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    transition: 0.3s ease-in-out;
    left: 0;
    height: 1px;
    background-color: var(--body-color);
    width: 100%;
}

.read-link img {
    max-width: 18px;
    margin-left: 8px;
}

.inrblog {
    padding: 20px;
    border-radius: 20px;
    border: 2px solid #F5A720;
    display: flex;
    transition: 0.3s ease-in-out;
    flex-direction: column;
}

.inrblog:hover {
    background-color: var(--bg-white);
    border: 2px solid var(--bg-white);
    box-shadow: 7px 8px 29px rgba(0, 0, 0, 0.08);
}

.inrblog:hover .read-link {
    color: var(--bg-color);
}

.inrblog:hover .read-link img {
    filter: brightness(0) saturate(100%) invert(39%) sepia(62%) saturate(1093%) hue-rotate(339deg) brightness(95%) contrast(86%);
}

.inrblog:hover .read-link:before {
    background-color: var(--bg-color);
}

.blog-img {
    padding-top: 51.47%;
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
}

.blog-img img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.blog-down {
    display: flex;
    flex-direction: column;
    padding: 20px 22px;
}

.blog-down h3 {
    margin-bottom: 15px;
}

.blog-bg {
    background-color: #F7EBCE;
    padding: 100px;
    border-radius: 40px;
    overflow: hidden;
}

.wrap-content-client {
    max-width: 1005px;
    margin: 0 auto;
    text-align: center;
}

.wrap-content-client p {
    margin-bottom: 30px;
}

.wrap-content-client h3 {
    font-size: 34px;
    font-weight: 800;
    color: var(--heading-color);
}

.test-slider-wrapper {
    /* max-width: 1005px; */
    margin: 0 auto;
}

.test-images-wrap {
    position: relative;
}

.quote-nav {
    max-width: 710px;
    margin: 0 auto;
}

.quote-nav .slick-center .test-images-wrap {
    transform: scale(1);
    opacity: 1;
    filter: grayscale(0%);
    transition: all 0.4s ease-in-out;
    box-shadow: 0px 4px 54px rgba(0, 0, 0, 0.2);
    padding: 9px;
}

.quote-nav .sl_next .test-images-wrap {
    transform: translateX(19px) scale(0.7);
}

.quote-nav .sl_next .test-images-wrap,
.quote-nav .sl_prev .test-images-wrap {
    transform: translateX(0px) scale(0.6);
    opacity: 1;
    transition: all 0.4s ease-in-out;
    padding: 0;
    box-shadow: none;
}

.test-profile {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100%;
}

.test-images-wrap {
    width: 150px;
    height: 150px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: var(--bg-white);

    filter: grayscale(100%);
    margin: 0 auto;
    opacity: 0.4;
    transform: scale(0.4);
    transition: all 0.4s ease-in-out;
    opacity: 0.42;

    padding: 0;

}

.quote-nav .slick-center .coma-img {
    opacity: 1;
}

.coma-img {
    position: absolute;
    top: 10px;
    right: 10px;
    max-width: 30px;
    opacity: 0;
    transition: 0.3s ease-in-out;
    z-index: 1;
}

.quote-nav .slick-list {
    padding: 40px 0 !important;
}

.clients-sec {
    position: relative;
}

.map-image {
    position: absolute;
    top: 0;
    pointer-events: none;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1260px;
    opacity: .2;
}

body.dark-mode .map-image {
    opacity: 1;
}

.clients-sec .wrap-btns-slider {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    visibility: hidden;
    justify-content: space-between;
}

.wrap-clients {
    position: relative;
}

.clients-sec .wrap-btns-slider .slider-btn {
    visibility: visible;
}

.slider-btn img {
    max-width: 22px;
}

.list-social li a img {
    max-width: 19px;
}

/* 21.10.25 */

/*css update 21/10/2025*/
.external-resource-card {
    border: 2px solid var(--bg-color2);
    background-color: var(--bg-white);
    padding: 25px 20px 21px 20px;
    border-radius: 20px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.external-resource-logobox {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    overflow: hidden;
    margin-bottom: 22px;
}

.external-resource-logobox img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.external-resource-card h3 {
    font-size: 34px;
    margin-bottom: 10px;
}

.external-resource-card h3+p {
    margin: 0;
}

.external-resource-sec ul {
    padding-left: 0;
    margin-bottom: 0;
}

.external-resource-sec ul li {

    list-style: none;
}

.external-resource-card .morebutn {
    margin-top: 15px;
}

.cmn-btn.morebutn {
    color: var(--body-color);
    padding: 0;
    background-color: transparent;
    border: none;
    text-align: left;
    border-bottom: 1px solid var(--body-color);
    width: auto;
    min-width: auto;
    border-radius: 0;
    line-height: 0.8;
}

.morebutn>img {
    margin-left: 8px;
    max-width: 18px;
}

.cmn-btn.morebutn:hover {
    color: var(--orange-color);
    background-color: transparent;
    border-color: var(--orange-color);
}

.morebutn:hover img {
    -webkit-filter: brightness(0) saturate(100%) invert(52%) sepia(67%) saturate(2181%) hue-rotate(335deg) brightness(85%) contrast(100%);
    filter: brightness(0) saturate(100%) invert(52%) sepia(67%) saturate(2181%) hue-rotate(335deg) brightness(85%) contrast(100%);
}

.external-resource-smallimg {
    position: relative;
    padding-top: 61.95%;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 0;
    margin-top: auto;
}

.external-resource-smallimg>img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.external-resource-article {
    margin-bottom: 30px;
}

.external-resource-row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
    justify-content: center;
}

.external-resource-card:hover {
    background-color: var(--yelow-hover-color);
    border-color: var(--yelow-hover-color);
}

.upcoming-eventimgbox {
    border-radius: 20px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 0;
}

.upcoming-eventimgbox img {
    width: 100%;
}

.upcomingevent-wrapar {
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 10px;
}

.upcomingevent-wrapar li {
    list-style: none;
    padding: 30px 0;
    border-bottom: 1px solid #808080;
}

.upcoming-evntdate:last-child {
    margin-bottom: 0;
}

.upcomingevent-wrapar li:first-child {
    padding-top: 0;
}

.up-evnt-acord-toppnl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    color: var(--body-color);
}

.upcomingevnt-lftpnl {
    width: calc(100% - 135px);
    padding-right: 15px;
}

.upcomingevnt-readmorepnl {
    max-width: 135px;
    width: 100%;
}

.upcoming-evntdate {
    color: var(--body-color);
}

.calnedericon {
    display: inline-block;
    width: 27px;
    margin-right: 8px;
}

.upcoming-event-contbox {
    padding-left: 66px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.up-evnt-acord-btmpnl {
    padding-top: 20px;
    color: var(--body-color);
}

.up-evnt-acord-btmpnl article {
    max-width: 619px;
    width: 100%;
}

.upcomingevnt-card.is-open .morebutn {
    color: var(--orange-color);
    border-color: var(--orange-color);
}

.upcomingevnt-card.is-open .morebutn>img {
    -webkit-filter: brightness(0) saturate(100%) invert(52%) sepia(67%) saturate(2181%) hue-rotate(335deg) brightness(85%) contrast(100%);
    filter: brightness(0) saturate(100%) invert(52%) sepia(67%) saturate(2181%) hue-rotate(335deg) brightness(85%) contrast(100%);
}

/*css update 21/10/2025*/
.upcomingevnt-subhd {
    color: var(--heading-color);
    margin-bottom: 18px;
}

.what-we-do-right-innr-btn-wrap {
    margin-top: 30px;
}

.cmn-btn.morebutn {
    min-width: auto;
    padding: 0px;
}



/* Base reset for accessibility */
:focus {
    outline: 2px solid var(--bg-color2);
    /* visible blue outline */
    outline-offset: 3px;
    /* gives breathing room around the element */
}

/* Make it look nice for buttons, links, inputs */
button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--bg-color2);
    outline-offset: 3px;
    box-shadow: 0 0 0 3px rgba(245, 167, 32, 0.8);
}

/* Optional: Add custom style for accessibility focus only via keyboard */
:focus-visible {
    outline: 2px solid var(--bg-color2);
    outline-offset: 3px;
    box-shadow: 0 0 0 3px rgba(245, 167, 32, 0.8);
}

/* Remove default browser outline only when using mouse (not keyboard) */
:focus:not(:focus-visible) {
    outline: none;
    box-shadow: none;
}

/* Example for dark mode (optional) */
/* body.dark-mode :focus-visible {
  outline-color: #ffd700; 
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.4);
} */

/* 22.10.25 */
.inner-banner-sec h1 {
    color: var(--bg-white);
}

.wrap-inner-banner {
    padding: 124px 0;
    position: relative;
    z-index: 1;
    border-radius: 40px;
    overflow: hidden;
    min-height: 456px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrap-inner-banner:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    background: rgba(0, 0, 0, 0.5);
}

.inr-content-bnr {
    position: relative;
    text-align: center;
}

.wrap-inner-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.cmn-card-right-col .cmn-btn-wrap.small a {
    width: auto;
}

.cmn-card-right-col .cmn-btn-wrap.small {
    margin-bottom: 30px;
    margin-top: 25px;
}

.board-img-wrap {
    overflow: hidden;
    border-radius: 20px;
    padding-top: 89.42%;
    position: relative;
    margin: 0px;
}

.board-img-wrap img {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}

.board-down {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    padding: 20px 12px 12px;
}

.name-commisioners {
    font-size: 24px;
    font-weight: 500;
    color: #373737;
}

.time-board:hover {
    color: var(--bg-color);
}

.board-down .feild-name {
    font-size: 24px;
    color: #373737;
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
}

body.dark-mode .board-down .feild-name,
body.dark-mode .board-down .time-board {
    color: #fafafa !important;
}

.board-down h3 {
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 500;
    color: #373737;
}

.position-text {
    font-size: 24px;
    font-weight: 500;
    color: #373737;
}

.board-down .time-board {
    font-size: 24px;
    color: #373737;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.inr-board {
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s ease-in-out;
    height: 100%;
    border: 2px solid var(--bg-color2);
}

.inr-board:hover {
    background-color: #F7EBCE;
    border-color: #F7EBCE;
}

.col-board {
    padding: 0px 15px;
    margin-bottom: 30px;
}

.row-board {
    margin: 0px -15px -30px;
    padding: 0px;
    list-style: none;
}

.part-housing {
    padding: 32px 30px;
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: #F7EBCE;
}

.inrhouse {
    overflow: hidden;
    border-radius: 20px;
}

.inrhouse img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.right-house-content {
    padding-left: 48px;
    display: flex;
    flex-direction: column;
}

.pdf-arrow {
    display: inline-flex;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    position: relative;
    color: var(--body-color);
}

.pdf-arrow:hover {
    color: #D85B32;
}

.pdf-arrow:hover img {
    filter: brightness(0) saturate(100%) invert(46%) sepia(28%) saturate(1775%) hue-rotate(333deg) brightness(90%) contrast(91%);
}

.pdf-arrow:hover:before {
    background-color: #D85B32;
}

.pdf-arrow::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 1px;
    width: 100%;
    background-color: var(--body-color);
}

.document-part table {
    width: 100%;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    border: 0;
    border-collapse: inherit;
    border-spacing: 0;
    /* display: block; */
}

.document-part table thead {
    background-color: #FAEED1;
    border: 2px solid #FAEED1;
    /* border-bottom: 2px solid #F5A720; */
}

.document-part table tbody {
    border: 2px solid #F5A720;
    padding: 28px 70px;
    position: relative;
    z-index: 999;
    border-top: 0px;
}

.document-part table tbody tr td {
    border-bottom: 2px solid #F5A720;
}

.document-part table tbody tr td:first-child {
    border-left: 2px solid #F5A720;
}

.document-part table tbody tr td:last-child {
    border-right: 2px solid #F5A720;
}

/* .document-part table tbody tr:last-child {
    border: none;
} */

.document-part table tbody td {
    padding: 22px 70px;
    font-size: 18px;
    font-weight: 500;
    color: var(--body-color) !important;
}

.document-part table thead th {
    padding: 24px 70px;
    font-size: 24px;
    font-weight: 800;
    color: #2d2d2d;
    letter-spacing: 0.04em;
    border-bottom: 2px solid #F5A720;
}

.document-part table tbody td:first-child,
.document-part table thead th:first-child {
    width: 72%;
}

.document-part table thead th:last-child,
.document-part table tbody td:last-child {
    width: 28%;
}

.pdf-arrow img {
    max-width: 18px;
    margin-left: 8px;
}

.black-link {
    font-size: 24px;
    font-weight: 500;
    color: #373737;
}

.black-link:hover {
    color: var(--bg-color);
}

.left-housing {
    width: 49%;
}

.right-housing {
    width: 51%;
}

/* 22.10.25 */

.heading-visibility-hidden {
    display: none;
}

.job-desc-sec .sec-head {
    max-width: 1100px;
    margin: 0 auto 60px;
}

.job-desc-frame {
    box-shadow: 7px 8px 29px 0px rgba(0, 0, 0, 0.08);
    border-radius: 25px;
    overflow: hidden;
}

.job-desc-frame img {
    width: 100%;
}

.reqst-prop-sec-top {
    text-align: center;
}

.reqst-prop-sec-top .cmn-btn-wrap {
    margin: 25px -15px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reqst-prop-sec-top {
    margin-bottom: 60px;
}

.reqst-prop-sec-top .cmn-btn-wrap a {
    margin: 15px;
    min-width: 430px;
}

.reqst-prop-frm-inner {
    background: rgba(211, 151, 36, 0.2);
    padding: 80px 0px;
    border-radius: 40px;
}

.reqst-prop-frm form {
    display: flex;
    margin: -8px -8px 40px;
}

.reqst-prop-frm .frm-item.frm-search {
    min-width: 460px;
}

.reqst-prop-frm .frm-item.frm-item {
    padding: 8px;
}

.reqst-prop-frm form input,
.reqst-prop-frm form select {
    background-color: var(--bg-white);
}

.reqst-prop-frm form select {
    min-width: 300px;
}

.frm-search input {
    background-image: url(images/icon-search-black.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 25px) center;
    background-size: 18px;
}

.frm-search input[type="text"] {
    padding-right: 40px;
}

.req-prop-table table {
    width: 100%;
}

.req-prop-table {
    border: 2px solid var(--bg-color2);
    border-radius: 20px;
}

.req-prop-table table td {
    padding: 30px;
    font-weight: 500;
}

.req-prop-table table td strong {
    font-family: var(--heading-font);
    font-size: 20px;
}

.req-prop-table table td span {
    display: flex;
    align-items: center;
}

.req-prop-table table td span img {
    width: 16px;
    margin-right: 10px;
    flex-shrink: 0;
}

.req-prop-table table tr {
    border-bottom: 2px solid var(--bg-color2);
}

.req-prop-table table tr:last-child {
    border-bottom: 0px;
}

.req-prop-table table td:first-child {
    width: 40%;
}

.rai-top-row {
    display: flex;
    flex-wrap: wrap;
}

.rai-top-left {
    width: 49%;
    padding-right: 34px;
}

.rai-top-right {
    width: 51%;
}

.rai-top-right figure {
    margin: 0;
    height: 100%;
}

.rai-top-right figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.rai-top-left-cont {
    border: 2px solid var(--bg-color2);
    padding: 50px 35px;
    border-radius: 20px;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    word-break: break-word;
}

.rai-top-left-cont strong {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

.rai-top-left-cont a {
    color: var(--body-color);
}

.rai-top-left-cont a:hover {
    color: var(--bg-color2);
}

.rai-frm-innr {
    background: #F7EBCE;
    border-radius: 40px;
}

.rai-frm-innr .sec-head {
    margin-bottom: 50px;
}

.rai-frm-innr .frm-item {
    margin-bottom: 30px;
}

.rai-frm-innr .frm-item:last-child {
    margin-bottom: 0px;
}

.rai-frm-innr .frm-item.frm-submit {
    margin-top: 50px;
}

label {
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.frm-custom-file-field {
    border: 3px dashed var(--bg-color2);
    padding: 50px;
    min-height: 286px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
    border-radius: 10px;
}

.frm-custom-file-field input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.frm-custom-file-field img {
    width: 85px;
    margin-bottom: 15px;
}

.frm-custom-file-field p {
    font-size: 22px;
    font-weight: 600;
    text-decoration: underline;
    margin-bottom: 5px;
}

.part-ops-frm-inner {
    background: #F7EBCE;
    padding: 50px 35px;
    border-radius: 20px;
}

.part-ops-right figure {
    margin: 0;
    height: 100%;
}

.part-ops-right figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.part-ops-frm-inner .frm-item {
    margin-bottom: 30px;
}

.part-ops-frm-inner .frm-item:last-child {
    margin-bottom: 0px;
}

.part-ops-frm-inner .frm-item.frm-submit {
    margin-top: 40px;
}

.part-ops-sec .sec-head {
    margin-bottom: 50px;
}

.theme-list {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.theme-list li:after {
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 8px;
    background: #D85B32;
    display: block;
    outline: 4px solid rgba(216, 91, 50, 0.2);
}

.theme-list li {
    position: relative;
    padding-left: 25px;
}

.theme-list li+li {
    margin-top: 15px;
}

.theme-list li ul {
    padding: 0;
}

.theme-list li li {
    list-style: none;
    padding-left: 20px;
    margin-top: 15px;
}

.theme-list li li:after {
    content: '';
    background: #3A3A3A;
    outline: none;
    width: 7px;
    height: 7px;
    top: 10px;
}

.housing-cont-col td p {
    font-size: 20px;
    font-weight: 600;
    color: #373737;
}

.housing-cont-col table tbody td {
    vertical-align: top;
}

.housing-cont-col .document-part table tr td {
    padding: 22px 30px;
    width: 50%;
}

.housing-cont-col .document-part table tr th {
    padding: 20px 30px;
    width: 50%;
}

.housing-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.housing-img-col {
    width: 46%;
    padding-right: 40px;
}

.housing-cont-col {
    width: 52%;
}

.housing-img-col figure {
    margin: 0px;
    height: 100%;
}

.housing-img-col figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.housing-sec .sec-head {
    margin-bottom: 50px;
}

.housing-row.rev .housing-img-col {
    padding-right: 0px;
    padding-left: 40px;
}

.housing-bg-wrap {
    background: #F7EBCE;
    border-radius: 40px;
}

.housing-bg-wrap .document-part table thead {
    background: var(--bg-white);
    border-color: var(--bg-white);
    border-bottom: 2px solid var(--bg-color2);
}

.housing-cont-col table {
    height: 100%;
}

.housing-cont-col .document-part {
    height: 100%;
}

.housing-bg-wrap .sec-head {
    margin-bottom: 50px;
}

.tx-cred-row {
    --bs-gutter-x: 60px;
    --bs-gutter-y: 30px;
    align-items: center;
}

.tx-cred-right figure {
    margin: 0px;
}

.tx-cred-right figure img {
    width: 100%;
    border-radius: 20px;
}

.tx-bg-sec .housing-row.rev .housing-img-col {
    padding-left: 0;
    padding-right: 40px;
}

.tx-bg-sec .housing-cont-col .document-part {
    height: auto;
}

.tx-bg-sec .housing-cont-col table {
    height: auto;
}

/* dark mode css */

body.dark-mode .navbar-nav {
    background: #393939;
    box-shadow: 7px 8px 29px rgba(0, 0, 0, 0.08);
}

body.dark-mode .navbar-nav>li>a {
    color: var(--white-color);
}

body.dark-mode .navbar-nav>.menu-item-has-children>a+.clickD {
    filter: brightness(0) invert(1);
}

body.dark-mode .navbar-nav>.menu-item-has-children>a:hover+.clickD {
    filter: brightness(0) saturate(100%) invert(43%) sepia(25%) saturate(3182%) hue-rotate(342deg) brightness(91%) contrast(85%);
}

body.dark-mode .navbar-nav>li.current-menu-item>a,
body.dark-mode .navbar-nav>li>a:hover,
body.dark-mode .navbar-nav>li.menu-item-has-children:hover>a {
    color: var(--bg-color);
}

body.dark-mode .navbar-nav>li.menu-item-has-children:hover>a+.clickD {
    filter: brightness(0) saturate(100%) invert(43%) sepia(25%) saturate(3182%) hue-rotate(342deg) brightness(91%) contrast(85%);
}

body.dark-mode main:before {
    background: linear-gradient(180deg, #5F5F5F 0%, rgba(95, 95, 95, 0) 100%);
}

body.dark-mode .lan-select-dropmenu {
    background: #161616;
}

body.dark-mode .cmn-title {
    color: var(--bg-white);
}

body.dark-mode p.what-we-do-num {
    color: var(--bg-white);
}

body.dark-mode .what-we-do-card-inner {
    color: var(--bg-white);
}

body.dark-mode .what-we-do-card-inner:hover {
    color: #161616;
}

body.dark-mode .what-we-do-card-inner:hover p.what-we-do-num {
    color: #161616;
}

body.dark-mode .what-we-do-right-innr {
    background: #393939;
    box-shadow: 7px 8px 29px rgba(0, 0, 0, 0.08);
}

body.dark-mode .service-area-wrap {
    background: #393939;
}

.map-area-dummy-dark-img {
    display: none;
}

body.dark-mode .map-area-dummy-img {
    display: none;
}

body.dark-mode .map-area-dummy-dark-img {
    display: block;
}

body.dark-mode .vision-mission-sec .cmn-card-right-col .cmn-btn-wrap a {
    width: auto;
}

body.dark-mode .vision-mission-sec .cmn-card-right-col .cmn-btn-wrap {
    display: flex;
}

body.dark-mode .external-resource-card {
    background: #161616;
}

body.dark-mode .external-resource-article p {
    color: #fafafa;
}

body.dark-mode .cmn-btn.morebutn {
    color: #fafafa;
    border-color: #fff;
}

body.dark-mode .cmn-btn.morebutn:hover {
    color: var(--orange-color);
    background-color: transparent;
    border-color: var(--orange-color);
}

body.dark-mode .morebutn:hover img {
    -webkit-filter: brightness(0) saturate(100%) invert(52%) sepia(67%) saturate(2181%) hue-rotate(335deg) brightness(85%) contrast(100%);
    filter: brightness(0) saturate(100%) invert(52%) sepia(67%) saturate(2181%) hue-rotate(335deg) brightness(85%) contrast(100%);
}

body.dark-mode .morebutn>img {
    filter: brightness(0) invert(1);
}

body.dark-mode .external-resource-card:hover {
    background: #393939;
    box-shadow: 6px 8px 29px 4px #000000;
    border-color: transparent;
}

body.dark-mode .upcomingevnt-card.is-open .morebutn>img {
    -webkit-filter: brightness(0) saturate(100%) invert(52%) sepia(67%) saturate(2181%) hue-rotate(335deg) brightness(85%) contrast(100%);
    filter: brightness(0) saturate(100%) invert(52%) sepia(67%) saturate(2181%) hue-rotate(335deg) brightness(85%) contrast(100%);
}

body.dark-mode .upcomingevnt-card.is-open .cmn-btn.morebutn {
    color: var(--orange-color);
    background-color: transparent;
    border-color: var(--orange-color);
}

body.dark-mode .upcoming-evntdate {
    color: #fafafa;
}

body.dark-mode .up-evnt-acord-btmpnl {
    color: #fafafa;
}

body.dark-mode .test-images-wrap {
    background-color: rgba(255, 255, 255, 0.42);
}

body.dark-mode .slider-btn {
    border-color: var(--bg-white);
}

body.dark-mode .slider-btn img {
    filter: brightness(0) invert(1);
}

body.dark-mode .slider-btn:hover img {
    filter: brightness(0);
}

body.dark-mode .slider-btn:hover {
    border-color: transparent;
}

body.dark-mode p {
    color: #fafafa;
}

body.dark-mode .blog-bg {
    background: #393939;
    box-shadow: 7px 8px 29px rgba(0, 0, 0, 0.08);
}

body.dark-mode .inrblog:hover .read-link {
    color: var(--bg-color);
}

body.dark-mode .inrblog:hover .read-link img {
    filter: brightness(0) saturate(100%) invert(39%) sepia(62%) saturate(1093%) hue-rotate(339deg) brightness(95%) contrast(86%);
}

body.dark-mode .inrblog:hover .read-link:before {
    background-color: var(--bg-color);
}

body.dark-mode .read-link {
    color: #fafafa;
}

body.dark-mode .read-link:before {
    background-color: #fafafa;
}

body.dark-mode .read-link img {
    filter: brightness(0) invert(1);
}

body.dark-mode .inrblog:hover {
    background-color: #161616;
    border-color: #161616;
}

body.dark-mode .list-profile li {
    color: #fafafa;
    box-shadow: 7px 8px 29px rgba(0, 0, 0, 0.08);
}

body.dark-mode .list-social li a {
    border-color: var(--bg-white);
}

body.dark-mode .list-social li a:hover {
    border-color: var(--bg-color);
}

body.dark-mode .list-social li a img {
    filter: brightness(0) invert(1);
}

body.dark-mode .list-ftr-items li a {
    color: var(--bg-white);
}

body.dark-mode .up-ftr {
    border-color: rgba(255, 255, 255, 0.2);
}

body.dark-mode .wrapper-footer {
    background: #393939;
    box-shadow: 7px 8px 29px rgba(0, 0, 0, 0.08);
}

body.dark-mode .list-ftr-items li a:hover {
    color: var(--bg-color);
}

.ftr-logo-wrap img+img {
    display: none;
}

body.dark-mode .ftr-logo-wrap img {
    display: none;
}

body.dark-mode .ftr-logo-wrap img+img {
    display: block;
}

body.dark-mode .inr-board:hover {
    background: #393939;
    box-shadow: 7px 8px 29px rgba(0, 0, 0, 0.08);
    border-color: #393939;
}

body.dark-mode .board-down>* {
    color: #fafafa !important;
}

body.dark-mode .part-housing {
    background: #393939;
    box-shadow: 7px 8px 29px rgba(0, 0, 0, 0.08);
}

body.dark-mode .document-part table thead {
    background-color: #393939;
    border: 2px solid #393939;
    border-bottom: 2px solid #F5A720;
}

body.dark-mode .document-part table thead th {
    color: var(--bg-white);
}

body.dark-mode .document-part table tbody td {
    color: #fafafa !important;
}

body.dark-mode .pdf-arrow {
    color: #fafafa;
}

body.dark-mode .pdf-arrow::before {
    background-color: #fafafa;
}

body.dark-mode .pdf-arrow img {
    filter: brightness(0) invert(1);
}

body.dark-mode .pdf-arrow:hover {
    color: #D85B32;
}

body.dark-mode .pdf-arrow:hover img {
    filter: brightness(0) saturate(100%) invert(46%) sepia(28%) saturate(1775%) hue-rotate(333deg) brightness(90%) contrast(91%);
}

body.dark-mode .pdf-arrow:hover:before {
    background-color: #D85B32;
}

body.dark-mode a.time-board:hover {
    color: var(--bg-color) !important;
}

body.dark-mode .part-ops-frm-inner {
    background-color: #393939;
    box-shadow: 7px 8px 29px rgba(0, 0, 0, 0.08);
}

body.dark-mode input[type="text"],
body.dark-mode input[type="tel"],
body.dark-mode input[type="password"],
body.dark-mode input[type="email"],
body.dark-mode select,
body.dark-mode textarea {
    color: var(--bg-white);
}

body.dark-mode form ::placeholder {
    color: #fafafa;
}

body.dark-mode .reqst-prop-frm input[type="text"],
body.dark-mode .reqst-prop-frm input[type="tel"],
body.dark-mode .reqst-prop-frm input[type="password"],
body.dark-mode .reqst-prop-frm input[type="email"],
body.dark-mode .reqst-prop-frm select,
body.dark-mode .reqst-prop-frm textarea {
    color: var(--body-color);
}

body.dark-mode .reqst-prop-frm ::placeholder {
    color: var(--body-color);
}

body.dark-mode .reqst-prop-frm-inner {
    background-color: #393939;
    box-shadow: 7px 8px 29px rgba(0, 0, 0, 0.08);
}

body.dark-mode .housing-bg-wrap {
    background-color: #393939;
    box-shadow: 7px 8px 29px rgba(0, 0, 0, 0.08);
}

body.dark-mode .housing-bg-wrap .document-part table thead {
    background-color: #161616;
    border: 2px solid #161616;
    border-bottom: 2px solid #F5A720;
}

body.dark-mode .rai-frm-innr {
    background-color: #393939;
    box-shadow: 7px 8px 29px rgba(0, 0, 0, 0.08);
}

body.dark-mode .rai-top-left-cont strong {
    font-size: 22px;
    color: #fafafa;
}

body.dark-mode .rai-top-left-cont a {
    color: #fafafa;
}

body.dark-mode .rai-top-left-cont a:hover {
    color: var(--bg-color2);
}

body.dark-mode .theme-list li li:after {
    background: #fafafa;
}

.sub-menu>li>a {
    padding: 20px;
    padding-right: 30px;
}

.sub-menu>li {
    border-top: 1px solid #eee;
}

.navbar-nav .sub-menu .clickD {
    top: 50%;
    right: 13px;
    transform: translateY(-50%) rotate(-90deg);
}

.navbar-nav>li>.sub-menu .sub-menu {
    border: 0px;
    overflow: hidden;
}

.navbar-nav>li>.sub-menu .sub-menu li:first-child {
    border: 0px;
}

[data-move] {
    opacity: 0;
}

body.dark-mode .navbar-nav li.menu-item-has-children>.sub-menu li:first-child {
    border-top: 0px;
}

.job-desc-dark-img {
    display: none;
}

body.dark-mode .job-desc-light-img {
    display: none;
}

body.dark-mode .job-desc-dark-img {
    display: block;
}

/*support css update 13/11/2025*/
.lan-select select {
    background-color: var(--bg-color2);
    padding: 22px 50px 22px 30px;
    min-width: 175px;
    border-radius: 100px;
    font-size: 20px;
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    cursor: pointer;
    color: #161616;
    width: auto;
    max-width: 175px;
    border: none;
    height: auto;
    background-image: url(images/icon-language-select.svg);
    background-position: calc(100% - 22px) center;
    background-size: 13px;
}

.lan-select select:focus-visible {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

body.dark-mode .lan-select select {
    color: #161616;
}

.list-profile li {
    margin-bottom: 5px;
}

.form_container_gf .gform-theme--framework.gform_wrapper form label {
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 20px;
    color: var(--body-color);
    display: inline-block;
}

.form_container_gf .gform-theme--framework.gform_wrapper form input[type="text"],
.form_container_gf .gform-theme--framework.gform_wrapper form input[type="tel"],
.form_container_gf .gform-theme--framework.gform_wrapper form input[type="email"],
.form_container_gf .gform-theme--framework.gform_wrapper form input[type="password"] {
    background-color: transparent;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 10px;
    color: #3A3A3A;
    border: 2px solid var(--bg-color2);
    height: 66px;
    padding: 0 25px;
    outline: none !important;
    font-weight: 500;
    font-size: 18px;
    font-size: 16px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form_container_gf .gform-theme--framework.gform_wrapper form textarea {
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 10px;
    border: 2px solid var(--bg-color2);
    padding: 12px 25px;
    font-size: 18px;
    width: 100%;
    color: #3A3A3A;
    height: 200px;
    resize: none;
    outline: none !important;
    font-weight: 500;
    min-block-size: auto;
}

.form_container_gf .gform-theme--framework.gform_wrapper form input:focus {
    outline: 2px solid var(--bg-color2);
    outline-offset: 3px;
    -webkit-box-shadow: 0 0 0 3px rgba(245, 167, 32, 0.8);
    box-shadow: 0 0 0 3px rgba(245, 167, 32, 0.8);
}

.form_container_gf .gform-theme--foundation .gform_fields {
    row-gap: 30px
}

.form_container_gf .gform-theme--framework.gform_wrapper form .gfield_required {
    font-size: 24px;
    color: var(--body-color);

}

body.dark-mode .form_container_gf .gform-theme--framework.gform_wrapper form .gfield_required {
    color: var(--bg-white);
}

body.dark-mode .form_container_gf .gform-theme--framework.gform_wrapper form input[type="text"],
body.dark-mode .form_container_gf .gform-theme--framework.gform_wrapper form input[type="tel"],
body.dark-mode .form_container_gf .gform-theme--framework.gform_wrapper form input[type="email"],
body.dark-mode .form_container_gf .gform-theme--framework.gform_wrapper form input[type="password"],
body.dark-mode .form_container_gf .gform-theme--framework.gform_wrapper form textarea {
    color: var(--bg-white);
}

body.dark-mode .form_container_gf .gform-theme--framework.gform_wrapper form label {
    color: var(--bg-white);
}

body.dark-mode .form_container_gf .gform-theme--framework.gform_wrapper form label {
    color: var(--bg-white);
}

.form_container_gf .gform-theme--framework.gform_wrapper form .gform_footer input[type="submit"].button {
    background: var(--bg-color2);
    color: #161616;
    height: 72px;
    min-width: 220px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    padding-left: 25px;
    padding-right: 25px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    outline: none !important;
    border: 2px solid var(--bg-color2);
    border-radius: 60px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form_container_gf .gform-theme--framework.gform_wrapper form .gform_footer input[type="submit"].button:hover {
    background: var(--bg-white);
    color: #161616;
}

.form_container_gf .gform-theme--framework.gform_wrapper form .gform_footer {
    margin-top: 0;
}

/* .rai-frm-innr .form_container_gf .report_form_wrapper form .gform_footer {
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
} */



.sdm_download.green,
.sdm_download.green:hover {
    background: var(--bg-color);
    color: #fff !important;
    border: 0;
    text-shadow: unset;
    box-shadow: unset;
    font-size: 18px;
    padding: 12px 15px;
}



.form_container_gf .gform-theme--framework.gform_wrapper form .ginput_container_fileupload .gform-theme-field-control {
    border: 3px dashed var(--bg-color2);
    padding: 50px;
    min-height: 286px;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    z-index: 1;
    border-radius: 10px;
    background-color: transparent;
}

.form_container_gf .gform-theme--framework.gform_wrapper form .ginput_container_fileupload .button.gform_button_select_files {
    background-color: transparent;
    color: var(--body-color);
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: auto;
    font-size: 22px;
    font-weight: 600;
    text-decoration: underline;
    margin-bottom: 5px;
    text-transform: capitalize;
    margin-bottom: 0;
}

.form_container_gf .gform-theme--framework.gform_wrapper form .ginput_container_fileupload .button.gform_button_select_files:focus,
.form_container_gf .gform-theme--framework.gform_wrapper form .ginput_container_fileupload .button.gform_button_select_files:focus-visible {
    outline: 2px solid var(--bg-color2);
    outline-offset: 3px;
    box-shadow: 0 0 0 3px rgba(245, 167, 32, 0.8);
}

.form_container_gf .gform-theme--framework.gform_wrapper form .ginput_container_fileupload .gform-theme-field-control::before {
    width: 85px;
    margin-bottom: 15px;
    background-image: url(images/file-upload-icon.svg);
    background-position: center;
    background-size: 85px;
    background-repeat: no-repeat;
    height: 56px;
    font-size: 0;
}

.form_container_gf .gform-theme--framework.gform_wrapper form .gform_fileupload_rules {
    font-size: 18px;
    color: var(--body-color);
}

body.dark-mode .form_container_gf .gform-theme--framework.gform_wrapper form .gform_fileupload_rules,
body.dark-mode .form_container_gf .gform-theme--framework.gform_wrapper form .gform_drop_instructions {
    color: var(--bg-white);
}

body.dark-mode .form_container_gf .gform-theme--framework.gform_wrapper form .ginput_container_fileupload .button.gform_button_select_files {
    color: var(--bg-white);
}

.form_container_gf .gform-theme--framework.gform_wrapper form .gform_drop_instructions {
    font-size: 18px;
    color: var(--body-color);
    margin-bottom: 5px;
}

.form_container_gf form .gfield_validation_message {
    background-color: #8a0202;
    padding: 8px 10px;
    font-size: 16px;
    color: #fff;
    border-radius: 5px;
}

.form_container_gf .gform-theme--framework.gform_wrapper .gform_validation_errors .gform_submission_error {
    font-size: 16px;
}

body.dark-mode .form_container_gf .gform-theme--framework.gform_wrapper .gform_validation_errors {
    background-color: #8a0202;
    color: #fff;
}

body.dark-mode .form_container_gf .gform-theme--framework.gform_wrapper .gform_validation_errors .gform_submission_error,
body.dark-mode .form_container_gf .gform-theme--framework.gform_wrapper .gform_validation_errors .gform_submission_error .gform-icon {
    color: #fff;
    border-color: var(--bg-white);
}

footer .menu-quick-links-container ul {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    padding-left: 0;
    margin-bottom: 0;
    break-inside: avoid-column;
}

footer .menu-quick-links-container ul li {
    list-style: none;
    margin-bottom: 15px;
}

footer .menu-quick-links-container ul li a {
    color: var(--body-color);
}

footer .menu-quick-links-container ul li a:hover {
    color: var(--bg-color);
}

body.dark-mode footer .menu-quick-links-container ul li a {
    color: var(--bg-white);
}

body.dark-mode footer .menu-quick-links-container ul li a:hover {
    color: var(--bg-color);
}

/*support css update 13/11/2025*/

.housing-bg-sec:nth-child(even) .housing-row {
    flex-direction: row-reverse;
}

.housing-bg-sec:nth-child(even) .housing-row .housing-img-col {
    padding-left: 0;
    padding-right: 40px;
}

.family-program-desc h3 {
    margin-top: 40px;
}

.family-program-desc ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.family-program-desc ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.family-program-desc ul li::after {
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 8px;
    background: #D85B32;
    display: block;
    outline: 4px solid rgba(216, 91, 50, 0.2);
}

/* --- 20.11.25 support p.p css start ---*/
.map-area-row {
    align-items: stretch;
}

.map-area-sld-outer {
    padding-left: 68px;
    position: relative;
}

.map-slider-progressbaer-outer {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 1px;
    height: 100%;
}

.map-slider-progressbaer {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #808080;
}

.map-progress-bar-in {
    width: 5px;
    background-color: #D85B32;
    top: 0;
    position: absolute;
    left: -2px;
    transition: height 0.4s ease-in-out;
}

.map-area-lt-col {
    width: 56.2%;
}

.map-area-rt-col {
    width: 43.8%;
}

.map-area-item-in {
    position: relative;
    padding: 18px 19px;
    border: 2px solid var(--bg-color2);
    border-radius: 20px;
    display: flex;
    align-items: stretch;
    transition: .5s;
    min-height: 350px;
}

/* .map-area-item-in:hover{
    background-color: var(--bg-white);
    box-shadow: 7px 8px 29px rgba(0, 0, 0, 0.08);
    border-color: transparent;
} */
.map-area-img-part {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    width: 313px;
}

.map-area-img-part img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-area-text-outer {
    width: calc(100% - 313px);
    padding-left: 35px;
    padding-top: 14px;
}

.map-area-text-top-wpr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.star-wpr i {
    max-width: 23px;
    width: 100%;
    display: inline-block;
    line-height: 0;
    margin-right: 7px;
}

.star-wpr i img {
    width: 100%;
}

.rating-num {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--body-font);
    color: #373737;
}

.star-wpr {
    display: flex;
    align-items: center;
}

.map-area-text-top-wpr h3 {
    margin-bottom: 0;
}

.location-text {
    display: flex;
    align-items: center;
    margin-bottom: 11px;
}

.location-text i {
    display: inline-block;
    line-height: 0;
    max-width: 20px;
    width: 100%;
    margin-right: 10px;
    flex-shrink: 0;

}

.location-text i img {
    width: 100%;
}

.location-text p {
    font-size: 18px;
    font-weight: 500;
    color: #373737;
}

.proprty-cat {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    gap: 19px;
    flex-wrap: wrap;
}

.proprty-cat li {
    display: flex;
    align-items: center;
    padding: 0 19px 0 0;
    /* border-right: 1px solid rgb(216, 91, 50,.4); */
}

.proprty-cat li:first-child {
    padding-left: 0;
}

.proprty-cat li:last-child {
    padding-right: 0;
    border: 0;
}

.proprty-cat li i {
    display: inline-block;
    max-width: 20px;
    width: 100%;
    line-height: 0;
    margin-right: 8px;
    flex-shrink: 0;
}

.proprty-cat li i img {
    width: 1005;
    height: 1005;
    object-fit: cover;
}

.proprty-cat li span {
    display: inline-block;
    /* white-space: nowrap; */

}

.view-btn {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #3A3A3A;
    max-width: fit-content;
    line-height: 1.1;
}

.view-btn span {
    color: #373737;
    font-weight: 600;
    font-size: 20px;
}

.view-btn i {
    line-height: 0;
    max-width: 18px;
    width: 100%;
    display: inline-block;
    margin-left: 8px;
}

.view-btn i img {
    width: 100%;
}

/* .map-area-item-in:hover .view-btn{
    border-color: var(--orange-color);
}
.map-area-item-in:hover .view-btn span{
   color: var(--orange-color);
}
.map-area-item-in:hover .view-btn img{
    filter: brightness(0) saturate(100%) invert(40%) sepia(85%) saturate(502%) hue-rotate(329deg) brightness(95%) contrast(94%);
} */
.map-img-outer {
    padding-left: 21px;
    height: 100%;
}

.map-img-wpr {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.map-img-wpr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-area-wrap .sec-head {
    margin-bottom: 70px;
}

.housing-cont-col {
    padding-right: 27px;
}

/* .housing-sec .document-part table td:first-child,.housing-bg-wrap .document-part table td:first-child{
    vertical-align: middle;
} */
.housing-bg-sec:nth-child(even) .housing-row.rev .housing-img-col {
    padding-right: 0;
}

.map-area-sld-item {
    padding: 20px 0;
}

.map-area-sld-wpr .slick-list {
    margin: -20px 0;
}

/* ------ Property Network Slick Slider ------ */

/* .map-area-sld-item.swiper-slide.slick-slide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.map-area-sld-item.swiper-slide.slick-slide.slick-active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(-50px);
} */

/* ------ Property Network Slick Slider ------ */

body.dark-mode .ti-widget[data-wkey="feed-instagram"][data-style=custom-style] header[data-header-type="3"] .ti-widget-header .ti-profile .ti-name *,
body.dark-mode .ti-widget[data-wkey="feed-instagram"][data-style=custom-style] header[data-header-type="3"] .ti-widget-header .ti-profile .ti-header-numbers .ti-number .ti-value {
    color: var(--bg-white);
}

body.dark-mode .view-btn span {
    color: var(--bg-white);
}

body.dark-mode .view-btn img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7488%) hue-rotate(227deg) brightness(107%) contrast(94%);
}

body.dark-mode .view-btn {
    border-color: var(--bg-white);
}

/*
body.dark-mode .map-area-item-in:hover {
    background-color: #161616;
} */
body.dark-mode .map-area-item-in .rating-num {
    color: #fff;
}

.housing-row.rev .housing-cont-col .document-part table tr th,
.housing-sec .housing-row .housing-cont-col .document-part table tr th {
    padding: 20px 28px;
}

/* --- 20.11.25 support p.p css end ---*/
/*  */
.map-area-sld-item.slick-current .map-area-item-in {
    background-color: var(--bg-white);
    box-shadow: 7px 8px 29px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.map-area-sld-item.slick-current .map-area-item-in .view-btn {
    border-color: var(--orange-color);
}

.map-area-sld-item.slick-current .map-area-item-in .view-btn span {
    color: var(--orange-color);
}

.map-area-sld-item.slick-current .map-area-item-in .view-btn img {
    filter: brightness(0) saturate(100%) invert(40%) sepia(85%) saturate(502%) hue-rotate(329deg) brightness(95%) contrast(94%);
}

body.dark-mode .map-area-sld-item.slick-current .map-area-item-in {
    background-color: #161616;
}

/*  */


.map-area-sld-item.swiper-slide.slick-slide {
    height: auto;
}

/* 
.map-area-sld-wpr .slick-list {
    display: flex;
} */

.file-table tr th,
.file-table tr td {
    border: 1px solid rgba(58, 58, 58, 0.4);
    padding: 10px 20px;
}

.file-table {
    width: 100%;
    max-width: 1146px;
    margin: 0 auto;
}

.file-table tr th {
    background-color: rgba(58, 58, 58, 0.3);
    color: var(--bg-white);
}

h1.entry-title.awsm-jobs-single-title {
    font-size: 60px;
}

.awsm-job-specification-item {
    background-color: rgba(58, 58, 58, 0.3);
    padding: 10px 20px;
    margin-bottom: 10px;
    width: 100%;

}

.awsm-job-listing-item .awsm-job-specification-item {
    background-color: transparent;
}

.awsm-job-item h2.awsm-job-post-title a {
    font-family: var(--heading-font);
    font-size: 20px;
    color: var(--body-color);
}

body.dark-mode .awsm-job-item h2.awsm-job-post-title a {
    color: var(--bg-white);
}

body.dark-mode input[type="text"].awsm-job-search, body.dark-mode input[type="text"].awsm-job-search::placeholder {
    color: var(--body-color);
}

.awsm-load-more-classic a.page-numbers,
.awsm-load-more-main a.awsm-load-more {
    background-color: var(--bg-color);
    color: var(--bg-white);
    text-transform: capitalize;
}

.awsm-job-form-plugin-style .awsm-job-specification-item a {
    color: var(--bg-black);
}

body.dark-mode .awsm-job-form-plugin-style .awsm-job-specification-item a {
    color: var(--bg-white);
}

.awsm-job-form-group.awsm-job-inline-group label {
    font-size: 16px;
}

body.dark-mode .file-table tr th {
    background-color: rgb(80 75 75 / 70%);
}

body.dark-mode .awsm-job-form-inner {
    background: rgba(58, 58, 58, 0.3);
}

body.dark-mode .iti__selected-dial-code {
    color: #fff;
}

body.dark-mode .iti__arrow {
    border-top: 4px solid #ffffff;
}

body.dark-mode .awsm-form-drag-and-drop-file-control {
    border: 2px dashed rgb(255 255 255 / 64%);
    background: var(--bg-color);
}

body.dark-mode .awsm-form-drag-and-drop-file-control .dz-message .awsm-form-drag-and-drop-file-title {
    color: var(--bg-white);
}

body.dark-mode .awsm-form-drag-and-drop-file-description {
    color: var(--bg-white);
    opacity: 0.6;
}

.awsm-job-container {
    padding: 50px 12px;
}

.awsm-filter-wrap input[type="text"] {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    color: #3A3A3A;
    border: 2px solid var(--bg-color2);
    height: 66px;
    padding: 0 25px;
    outline: none !important;
    font-weight: 500;
    background-color: var(--bg-white);
    background-image: url(images/icon-search-black.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 25px) center;
    background-size: 18px;
    font-size: 18px;
}

.awsm-job-search-btn.awsm-job-search-icon-wrapper .awsm-job-icon-search::before {
    display: none;
}

.awsm-filter-wrap.awsm-full-width-search-filter-wrap .awsm-filter-item-search {
    min-width: 25%;
    max-width: 25%;
    width: 25%;
}

.awsm-filter-wrap input[type="text"]:focus-visible {
    outline: 2px solid var(--bg-color2);
    outline-offset: 3px;
    box-shadow: 0 0 0 3px rgba(245, 167, 32, 0.8);
    border-color: var(--bg-color2);
}

.awsm-filter-item {
    flex: 1;
}

.awsm-filter-wrap .awsm-selectric {
    border: 2px solid var(--bg-color2);
    width: 100%;
    background: url(images/sort-down.svg) no-repeat calc(100% - 25px) center transparent;
    background-size: 12px;
    padding-right: 40px;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    background-color: var(--bg-white);
    font-size: 18px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    height: 100%;
}

.awsm-selectric .awsm-selectric-arrow-drop:after {
    display: none;
}

.awsm-filter-items {
    width: 75% !important;
}

.awsm-selectric .label {
    font-size: 18px;
    color: var(--body-color);
}

.awsm-selectric-wrapper {
    height: 100%;
}

.awsm-job-listing-item.awsm-list-item {
    border: 2px solid var(--bg-color2);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 5px;
}

.awsm-job-listing-item.awsm-list-item:last-child {
    margin-bottom: 0;
}

.awsm-job-wrap.awsm-job-form-plugin-style .awsm-job-item {
    background: transparent;
    display: flex;
    /* align-items: center; */
    border-bottom: 2px solid var(--bg-color2);
    flex-wrap: wrap;
}

.awsm-job-wrap.awsm-job-form-plugin-style .awsm-job-item:last-child {
    border: none;
}

.awsm-job-item {
    background-color: unset;
    padding: 30px 20px;
}

.awsm-job-wrap.awsm-job-form-plugin-style .awsm-job-specification-item {
    background-color: transparent;
    font-size: 18px;
    color: var(--body-color);
    padding: 13px 40px;
    margin: 0;
}

.awsm-job-specification-item.awsm-job-specification-start-date .awsm-job-icon-calendar-check-o {
    color: #1da960;
}

.awsm-job-specification-item.awsm-job-specification-closing-date .awsm-job-icon-calendar-minus-o {
    color: #d31b00;
}

.awsm-job-wrap.awsm-job-form-plugin-style .awsm-job-post-title a {
    color: var(--body-color);
    font-size: 20px;
    font-weight: 700;
}

body.dark-mode .awsm-job-wrap.awsm-job-form-plugin-style .awsm-job-post-title a,
body.dark-mode .awsm-job-wrap.awsm-job-form-plugin-style .awsm-job-specification-item,
body.dark-mode .awsm-job-more {
    color: #fafafa;
}

.awsm-lists {
    border: unset;
}

.awsm-list-left-col {
    width: 38%;
}

.awsm-list-right-col {
    width: 62%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.awsm-job-more {
    color: var(--body-color);
    padding: 0;
    background-color: transparent;
    border: none;
    text-align: left;
    border-bottom: 1px solid var(--body-color);
    width: auto;
    min-width: auto;
    border-radius: 0;
    line-height: 0.8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}

.awsm-list-item .awsm-job-more-container {
    padding: 0 40px 0 20px;
    margin-left: auto;
}

.awsm-selectric-items li.highlighted {
    background-color: rgba(245, 167, 32, 0.4);
    color: var(--body-color);
}

.awsm-selectric-items li:hover {
    background-color: var(--bg-color2);
    color: var(--bg-white);
}

.awsm-job-specification-wrapper {
    display: flex !important;
    align-items: center;
    flex-wrap: wrap;
}

.contractor-register-sec form {
    display: flex;
    flex-wrap: wrap;
    margin: -12px;
}

.form-field {
    width: 50%;
    padding: 12px;
}

section.contractor-register-sec,
.contractor-login-sec {
    padding: 60px 0 100px;
}

.contractor-register-sec form button,
.contractor-login-sec form button {
    width: 100%;
    max-width: 230px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
    padding: 22px 30px;
    color: #161616;
    background-color: var(--bg-color2);
    border: 2px solid var(--bg-color2);
    border-radius: 60px;
    text-transform: capitalize;
    margin-top: 30px;
    transition: all 0.3s ease-in-out;
}

.contractor-register-sec form button:hover,
.contractor-login-sec form button :hover {
    background-color: var(--bg-white);
    color: #161616;
}

.form-field.last {
    width: 100%;
}

.contractor-login-sec form {
    display: flex;
    flex-wrap: wrap;
    margin: -12px;
}

/* .map-area-item-in {
	height: 280px;
	min-height: inherit;
	overflow: auto;
}
.map-area-sld-item.slick-current .map-area-item-in {
    height: auto;
} */


/* S.Mv Css Start 04-12-25 */
.awsm-job-listing-item.awsm-list-item .awsm-list-right-col .awsm-job-specification-wrapper {
    width: 75%;
    font-size: 18px;
    text-align: left;
}

.awsm-job-listing-item.awsm-list-item .awsm-list-right-col .awsm-job-specification-wrapper>* {
    padding: 0 10px;
}

.awsm-job-listing-item.awsm-list-item .awsm-list-right-col .awsm-job-specification-wrapper>*:nth-child(1),
.awsm-job-listing-item.awsm-list-item .awsm-list-right-col .awsm-job-specification-wrapper>*:nth-child(2) {
    width: 40%;
}

.awsm-job-listing-item.awsm-list-item .awsm-list-right-col .awsm-job-specification-wrapper>*:nth-child(3) {
    width: 10%;
}

.awsm-job-listing-item.awsm-list-item .awsm-list-right-col .awsm-job-specification-wrapper>*:nth-child(4) {
    width: 20%;
}

.awsm-job-listing-item.awsm-list-item .awsm-list-right-col .awsm-job-more-container {
    width: 25%;
}

.awsm-job-listing-item.awsm-list-item .awsm-list-right-col .awsm-job-specification-wrapper .awsm-job-icon-check {
    color: #0fad67;
}

.awsm-job-listing-item.awsm-list-item .awsm-list-right-col .awsm-job-specification-wrapper .awsm-job-icon-close {
    color: #d30000;
}

.awsm-job-more:hover {
    border-color: var(--orange-color);
}

.form_wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    border: 2px solid #f5a721;
    border-radius: 10px;
    padding: 20px 30px 50px;
}

/* .form_wrapper h2{
    font-size:50px;
} */
.form_wrapper .form-field {
    width: 100%;
}

.form_wrapper form {
    flex-direction: column;
}

.form_wrapper form p {
    font-size: 15px;
    margin-top: 20px;
    margin-left: 12px;
}

.form_wrapper form button {
    margin-left: 12px;
}

.error-text {
    color: var(--bg-color);
    font-size: 14px;
}

.awsm_job_spec_above_content .awsm-job-specification-item {
    background-color: rgba(0, 0, 0, 0.1);
}

.awsm_job_spec_above_content .awsm-job-specification-item a {
    color: var(--bg-color);
}

.awsm_job_spec_above_content .awsm-job-specification-item a:hover {
    color: var(--bg-color2);
}


/* S.Mv Css End 04-12-25 */

.table_sec {
    padding-bottom: 32px;
}

#gform_confirmation_wrapper_1 .gform_confirmation_message_1,
#gform_confirmation_wrapper_2 .gform_confirmation_message_2 {
    text-align: center;
}

/* 18/12/25 work start */
.blog-meta {
    font-size: 14px;
    margin-bottom: 30px;
}

.blog-meta span {
    margin-right: 15px;
}

.blog-cover {
    margin-bottom: 30px;
}

.blog-cover img {
    width: 100%;
    border-radius: 40px;
}

/* 18/12/25 work end */


/* Support start 23-12-25 */

.cmn-gap {
    padding: 90px 0px;
}

.part-ops-row .form_container_gf .gform-theme--framework.gform_wrapper form .gform_footer {
    margin-top: 20px;
}

.upcoming-evntdate {
    display: flex;
    align-items: center;
}

.error-404-wrp {
    text-align: center;
}

.error-404-text p span {
    font-size: 200px;
    color: var(--bg-color);
    line-height: 1;
    font-weight: 700;
}

.error-404-text p {
    font-size: 50px;
    line-height: 1;
    font-weight: 600;
}

.no-rel {
    font-size: 30px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 16px 0;
}

.gform_confirmation_message a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.3;
    font-weight: 600;
    padding: 18px 20px;
    min-width: 216px;
    color: #161616;
    background-color: var(--bg-color2);
    border: 2px solid var(--bg-color2);
    border-radius: 60px;
    text-transform: capitalize;
    margin: 5px;
}

.gform_confirmation_message a+br {
    display: none;
}

.gform_confirmation_message a:hover {
    background-color: transparent;
}

.part-ops-frm-inner {
    height: 100%;
}

.gform_confirmation_message a:last-child {
    background-color: transparent;
}

.gform_confirmation_message a:last-child:hover {
    background-color: var(--bg-color2);
}

/* .gform_confirmation_message br:nth-child(5) {
    display: none;
} */
.bcm-mem-sec {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 -12px;
}

.bcm-mem-sec h1 {
    font-size: 50px;
    padding: 0 12px;
    width: 62%;
}

.bcm-mem-sec #content {
    width: 38%;
    padding: 0 12px;
}

.bcm-mem-sec #content a {
    display: block;
    border-radius: 12px;
    overflow: hidden;
}

.bcm-mem-sec #content a:hover img {
    transform: scale(1.1);
}

.bcm-mem-sec #content a img {
    width: 100%;
    transition: all 0.5s ease-in-out;
}

.bcm-mem-sec-wrp {
    max-width: 1230px;
    margin: 0 auto;
}


/* Support end 23-12-25 */
/* 26.12.25 */
.board-down-bottom {
    margin-top: auto;
}

button.back-to-top {
    margin: 0 !important;
    padding: 0 !important;
    background: #fff;
    height: 0px;
    width: 0px;
    overflow: hidden;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    color: transparent;
    clear: both;
    visibility: hidden;
    position: fixed;
    cursor: pointer;
    display: block;
    border: none;
    right: 50px;
    bottom: 75px;
    font-size: 0px;
    outline: 0 !important;
    z-index: 99;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

button.back-to-top:hover,
button.back-to-top:active,
button.back-to-top:focus {
    outline: 0 !important;
}

button.back-to-top::before,
button.back-to-top::after {
    content: "";
    display: block;
    border-bottom: solid 10px #EA5D5F;
    border-left: solid 10px transparent;
    line-height: 0;
    border-right: solid 10px transparent;
    height: 0;
    margin: 18px auto 0;
    width: 0;
    border-radius: 20px;
    visibility: hidden;
}

button.back-to-top.show::after,
button.back-to-top.show::before {
    visibility: visible;
}

button.back-to-top::after {
    border-bottom-color: #fff;
    position: relative;
    top: -24px;
}

button.back-to-top.show {
    display: block;
    background: #fff;
    color: #00ab6c;
    font-size: 25px;
    right: 25px;
    bottom: 50px;
    height: 50px;
    width: 50px;
    visibility: visible;
    box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
}

button.back-to-top.show:active {
    box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
}


/* 26.12.25 */
/* .navbar-nav li.menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    pointer-events: all;
}
.sub-menu {
    opacity: 0;
    pointer-events: none;
    visibility: inherit;
} */
/* .sub-menu::before {
    content: "";
    position: absolute;
    height: 50px;
    width: 100%;
    bottom: -50px;
    left: 0;
    background-color: transparent;
    z-index: 9999;
} */





/* 06-01-25 Css Start */
.hm-abt-btn-wrap .cmn-btn {
    font-size: 18px;
}

/* 06-01-25 Css End */
/* ========== responsive css =========== */

@media (min-width: 768px) {
    .awsm-filter-item-search {
        width: 25%;
    }
}

@media (min-width: 992px) {
    .map-img-wpr #leaflet-map {
        height: 100% !important;
    }
}
@media (min-width: 1901px) {
    html {
        zoom: 76%;
    }
}

@media (max-width:1900px) {

    /* ------ Property Network Slick Slider ------ */
    /* .map-area-sld-item.swiper-slide.slick-slide.slick-active {
        transform: translateY(-85px) !important;
    } */

    /* ------ Property Network Slick Slider ------ */

    .container-lrg {
        max-width: 1400px;
    }

    .container {
        max-width: 1200px;
    }

    .home-banner .container-lrg {
        max-width: 100%;
    }

    .lan-selected {
        padding: 15px 25px;
        font-size: 16px;
        min-width: 135px;
    }

    body {
        font-size: 16px;
    }

    h1,
    .title-h1 {
        font-size: 50px;
    }

    h2,
    .title-h2 {
        font-size: 35px;
    }

    h3,
    .title-h3 {
        font-size: 28px;
    }

    h4,
    .title-h4 {
        font-size: 25px;
    }

    h5,
    .title-h5 {
        font-size: 20px;
    }

    h6,
    .title-h6 {
        font-size: 18px;
    }

    .lan-select-dropmenu li {
        font-size: 16px;
        padding: 7px 20px;
    }

    .lan-select-dropmenu {
        width: 180px;
    }

    .hdr-rgt-area .toggle-switch {
        width: 100px;
        height: 54px;
    }

    .hdr-rgt-area .toggle-circle {
        width: 42px;
        height: 42px;
        top: 6px;
    }

    .hdr-rgt-area .icon {
        width: 42px;
        height: 42px;
    }

    .hdr-rgt-area .icon img {
        width: 22px;
    }

    .hdr-rgt-area .toggle-switch.active .toggle-circle {
        left: calc(100% - 50px);
    }

    .lan-select {
        margin-left: 10px;
    }

    .hdr-rgt-area {
        padding-left: 20px;
    }

    .navbar-brand {
        margin-right: 20px;
    }

    .navbar-nav>li>a {
        font-size: 15px;
    }

    .sub-menu>li>a {
        font-size: 15px;
    }

    .navbar-nav {
        padding: 0px 30px;
    }

    .navbar-nav>li {
        margin: 0px 8px;
        padding: 20px 0px;
    }

    .navbar-nav .clickD {
        top: 26px;
    }

    .navbar-brand {
        width: 65px;
    }

    .hdr-top-rgt li {
        font-size: 16px;
    }

    .hdr-top-rgt li img {
        width: 20px;
    }


    /* nasfdj */
    .home-banner .container-lrg {
        max-width: 1450px;
    }

    .home-banner-wrapper .container {
        max-width: 780px;
    }

    .cmn-btn {
        font-size: 16px;
        padding: 14px 25px;
        min-width: 220px;
    }

    .scrl-btn {
        font-size: 14px;
    }

    .home-banner-wrapper {
        min-height: auto;
    }

    .cmn-gap {
        padding: 100px 0px;
    }

    .hm-abt-btn-wrap .cmn-btn {
        padding: 13px 15px;
        font-size: 13px;
    }

    .hm-abt-btn-wrap .cmn-btn img {
        width: 8px;
    }

    /* 22.10.25 */
    .document-part table tbody td:first-child,
    .document-part table thead th:first-child {
        width: 50%;
    }

    .document-part table thead th:last-child,
    .document-part table tbody td:last-child {
        width: 50%;
    }

    /* 22.10.25 */

    .reqst-prop-frm .frm-item.frm-search {
        min-width: auto;
    }

    .reqst-prop-frm form select {
        min-width: auto;
    }

    input[type="text"],
    input[type="tel"],
    input[type="password"],
    input[type="email"],
    select {
        padding: 0px 16px;
    }

    select {
        padding-right: 40px;
        background-position: calc(100% - 16px) center;
    }

    .frm-search input {
        background-position: calc(100% - 16px) center;
    }

    .reqst-prop-frm .frm-item {
        flex-grow: 1;
    }

    .req-prop-table table td strong {
        font-size: 16px;
    }

    .req-prop-table table td {
        padding: 20px;
    }

    .home-banner-wrapper .container {
        font-size: inherit;
    }

    input[type="submit"] {
        font-size: 16px;
        height: 60px;
    }

    .housing-cont-col .document-part table tr th {
        font-size: 16px;
    }

    .housing-cont-col td p {
        font-size: 16px;
    }

    .housing-cont-col .document-part table tr td {
        font-size: 14px;
    }

    .theme-list li:after {
        top: 5px;
    }

    /*support css update 13/11/2025*/
    .lan-select select {
        padding: 15px 40px 15px 25px;
        font-size: 16px;
        min-width: 135px;
        max-width: 135px;
        background-position: calc(100% - 20px) center;
    }

    .form_container_gf .gform-theme--framework.gform_wrapper form input[type="text"],
    .form_container_gf .gform-theme--framework.gform_wrapper form input[type="tel"],
    .form_container_gf .gform-theme--framework.gform_wrapper form input[type="email"],
    .form_container_gf .gform-theme--framework.gform_wrapper form input[type="password"] {
        padding: 0 16px;
        font-size: 16px;
    }

    .form_container_gf .gform-theme--framework.gform_wrapper form textarea {
        padding: 12px 16px;
    }

    .form_container_gf .gform-theme--framework.gform_wrapper form .gform_footer input[type="submit"].button {
        font-size: 16px;
        height: 60px;
    }

    .form_container_gf .gform-theme--framework.gform_wrapper form textarea {
        padding: 12px 16px;
        font-size: 16px;
    }

    .form_container_gf .gform-theme--framework.gform_wrapper form .gform_fileupload_rules {
        font-size: 16px;
    }

    .form_container_gf .gform-theme--framework.gform_wrapper form .gform_drop_instructions {
        font-size: 16px;
    }

    /*support css update 13/11/2025*/
    /* support css start 20.11.25 */
    .ftr-three {
        width: 25.8%;
    }

    .ftr-two {
        width: 37.2%;
    }

    footer .menu-quick-links-container ul li a {
        font-size: 15px;
    }

    .map-area-img-part {
        width: 200px;
    }

    .map-area-text-outer {
        width: calc(100% - 200px);
        padding-left: 15px;
    }

    .map-area-sld-outer {
        padding-left: 45px;
    }

    .proprty-cat li span {
        font-size: 13px;
    }

    .map-area-text-top-wpr h3 {
        font-size: 20px;
    }

    .map-area-text-top-wpr {
        margin-bottom: 10px;
    }

    .location-text p {
        font-size: 16px;
    }

    .location-text {
        margin-bottom: 17px;
    }

    /* --- 20.11.25 support p.p css end ---*/
    .awsm-job-wrap.awsm-job-form-plugin-style .awsm-job-post-title a {
        font-size: 16px;
    }

    .awsm-job-wrap.awsm-job-form-plugin-style .awsm-job-specification-item {
        font-size: 16px;
        padding: 13px 13px;
        width: 100%;
    }

    .awsm-job-more {
        font-size: 15px;
    }

    .awsm-list-item .awsm-job-more-container {
        padding: 0 30px 0 10px;
    }

    .awsm-list-right-col {
        width: 70%;
    }

    .awsm-list-left-col {
        width: 30%;
    }

    .awsm-filter-wrap.awsm-full-width-search-filter-wrap .awsm-filter-item-search {
        width: 26%;
    }

    .awsm-filter-items {
        width: 72% !important;
    }

    .external-resource-card h3 {
        font-size: 20px;
    }

    .cmn-gap {
        padding: 80px 0px;
    }

    .lan-select {
        min-width: 135px;
    }
}

@media(max-width:1680px) {

    /* 21.10.25 */
    .lft-ftr-upper {
        width: 70%;
    }

    .rgt-ftr-upper {
        width: 30%;
    }

    .wrapper-footer {
        padding: 70px 60px;
        padding-bottom: 0;
    }

    .blog-bg {
        padding: 70px;
    }

    /* 21.10.25 */

    /*css update 21/10/2025*/
    .upcoming-event-contbox {
        padding-left: 30px;
    }

    .external-resource-card h3 {
        font-size: 18px;
    }

    /*css update 21/10/2025*/

    .cmn-card-right-col {
        padding-left: 40px;
    }

    .cmn-card-row.rev .cmn-card-right-col {
        padding-right: 40px;
    }

    .theme-list li li:after {
        top: 8px;
    }

    .theme-list li:after {
        top: 7px;
    }

    body.dark-mode .rai-top-left-cont strong {
        font-size: 18px;
    }

    .sub-menu {
        width: 270px;
    }

}

@media(max-width:1599px) {

    .container-lrg {
        max-width: 1280px;
    }

    .container {
        max-width: 1140px;
    }

    .navbar-nav>li {
        margin: 0px 8px;
    }

    .navbar-nav>li>a {
        font-size: 13px;
    }

    .sub-menu>li>a {
        font-size: 13px;
    }

    .hm-abt-btn-wrap .cmn-btn {
        padding: 12px 15px;
        font-size: 12px;
    }

    .sec-head-wrapper {
        margin-bottom: 40px;
    }

    .upcoming-event-contbox {
        padding-left: 20px;
    }

    label {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .cmn-btn {
        font-size: 15px;
    }

    /*support css update 13/11/2025*/
    .form_container_gf .gform-theme--framework.gform_wrapper form label {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .form_container_gf .gform-theme--framework.gform_wrapper form .gfield_required {
        font-size: 18px;
    }

    /*support css update 13/11/2025*/
}

@media(max-width:1399px) {

    /* ------ Property Network Slick Slider ------ */
    /* .map-area-sld-item.swiper-slide.slick-slide.slick-active {
        transform: translateY(-120px) !important;
    } */

    /* ------ Property Network Slick Slider ------ */

    /* --- Accounts Payable & Receivable Analyst P/T – Job Description --- */
    .job-desc-frame embed {
        width: 100%;
        height: 650px;
    }

    /* --- Accounts Payable & Receivable Analyst P/T – Job Description --- */

    /* 21.10.25 */
    .map-image {
        max-width: 100%;
    }

    .ftr-logo-wrap {
        max-width: 376px;
    }

    .blog-down {
        padding: 20px 13px;
    }

    .list-profile li img {
        max-width: 18px;
    }

    .up-ftr {
        padding-bottom: 40px;
        margin-bottom: 40px;
    }

    .ftr-arw {
        height: 77px;
        width: 77px;
    }

    .ftr-arw img {
        max-width: 21px;
    }

    .down-ftr {
        padding: 25px 0;
    }

    /*css update 21/10/2025*/
    .external-resource-row {
        --bs-gutter-x: 24px;
        --bs-gutter-y: 24px;
    }

    .external-resource-card {
        padding: 18px;
    }

    .upcoming-event-contbox {
        padding-left: 20px;
    }

    .container-lrg {
        padding: 0px 20px;
    }

    .container {
        padding: 0px 20px;
    }

    .cmn-card-right-col {
        padding-left: 40px;
    }

    .cmn-card-row.rev .cmn-card-right-col {
        padding-right: 40px;
    }

    /*css update 21/10/2025*/

    /* 21.10.25 */
    /* 22.10.25 */
    .inr-board {
        padding: 10px;
    }

    .board-down .feild-name {
        font-size: 18px;
    }

    .board-down .time-board {
        font-size: 18px;
    }

    .position-text {
        font-size: 18px;
    }

    .document-part table thead th {
        padding: 20px 40px;
        font-size: 18px;
    }

    .document-part table tbody td {
        padding: 15px 40px;
        font-size: 16px;
    }

    .pdf-arrow {
        font-size: 16px;
    }

    /* 22.10.25 */
    .sub-menu {
        width: 250px;
    }

    .sub-menu>li>a {
        padding: 15px;
    }

    .error-404-text p span {
        font-size: 170px;
    }

    .error-404-text p {
        font-size: 44px;
    }

    .no-rel {
        font-size: 26px;
    }

    .bcm-mem-sec h1 {
        font-size: 45px;
    }
}

@media(max-width:1279px) {
    .navbar-nav>li>a {
        font-size: 13px;
        display: block;
    }

    .sub-menu>li>a {
        font-size: 13px;
    }

    .lan-selected {
        padding: 10px 15px;
        min-width: 100px;
        font-size: 14px;
    }

    .navbar-nav {
        padding: 0px 20px;
        margin-right: 0;
    }

    .hdr-rgt-area .toggle-switch {
        height: 41px;
        width: 75px;
    }

    .hdr-rgt-area .toggle-circle {
        top: 4px;
        width: 32px;
        height: 32px;
        left: 8px;
    }

    .hdr-rgt-area .icon {
        width: 32px;
        height: 32px;
    }

    .hdr-rgt-area .icon img {
        width: 15px;
    }

    .hdr-rgt-area .toggle-switch.active .toggle-circle {
        left: calc(100% - 39px);
    }

    .navbar-brand {
        margin-right: 15px;
    }

    .lan-select {
        margin-left: 5px;
    }

    .hdr-rgt-area {
        padding-left: 15px;
        position: absolute;
        top: 0px;
        right: 0px;
    }

    .navbar-nav>li {
        margin: 0px 7px;
        line-height: 1.2;
        padding: 14px 0px;
    }

    .navbar-nav .clickD {
        top: 15px;
    }

    .navbar-expand-lg .navbar-collapse {
        margin-top: 50px;
    }

    /* 21.10.25 */
    .blog-bg {
        padding: 60px 40px;
    }

    .inrblog {
        padding: 10px;
    }

    .ftr-logo-wrap {
        max-width: 296px;
    }

    .wrapper-footer {
        padding: 50px 40px;
        padding-bottom: 0;
    }

    /* 21.10.25 */

    .rai-top-left-cont {
        padding: 30px 20px;
    }

    .rai-top-left {
        width: 50%;
        padding-right: 20px;
    }

    .rai-top-right {
        width: 50%;
    }

    .frm-custom-file-field {
        min-height: 200px;
    }

    .frm-custom-file-field img {
        width: 60px;
    }

    .frm-custom-file-field p {
        font-size: 18px;
    }

    input[type="submit"] {
        min-width: 180px;
        height: 58px;
        font-size: 18px;
    }

    textarea {
        height: 150px;
    }

    .sub-menu {
        width: 200px;
    }

    .navbar-nav li:nth-child(6) .sub-menu .sub-menu {
        left: auto;
        right: 100%;
    }

    /*support css update 13/11/2025*/
    .lan-select select {
        padding: 10px 30px 10px 15px;
        font-size: 14px;
        min-width: 100px;
        max-width: 100px;
        background-position: calc(100% - 15px) center;
    }

    .form_container_gf .gform-theme--framework.gform_wrapper form .gform_footer input[type="submit"].button {
        min-width: 180px;
        height: 58px;
        font-size: 18px;
    }

    .form_container_gf .gform-theme--framework.gform_wrapper form textarea {
        height: 150px;
    }

    .form_container_gf .gform-theme--framework.gform_wrapper form .ginput_container_fileupload .gform-theme-field-control {
        min-height: 200px;
    }

    .form_container_gf .gform-theme--framework.gform_wrapper form .ginput_container_fileupload .button.gform_button_select_files {
        font-size: 18px;
    }

    .form_container_gf .gform-theme--framework.gform_wrapper form .ginput_container_fileupload .gform-theme-field-control::before {
        width: 60px;
        height: 49px;
        background-size: 60px;
    }

    /*support css update 13/11/2025*/

    .lan-select {
        min-width: 100px;
    }
}

@media(max-width:1199px) {

    h1,
    .title-h1 {
        font-size: 35px;
    }

    h2,
    .title-h2 {
        font-size: 30px;
    }

    h3,
    .title-h3 {
        font-size: 28px;
    }

    .sdm_download_item_count {
        padding: 5px 10px;
    }

    .external-resource-card h3,
    .external-resource-card h3+p {
        min-height: unset;
    }

    /* 21.10.25 */
    .test-slider-wrapper {
        max-width: 800px;
    }

    .footer {
        padding-bottom: 20px;
    }

    .inr-footer {
        max-width: 100%;
    }

    .col-footer {
        margin-bottom: 20px;
    }

    .ftr-logo-wrap {
        margin-bottom: 20px;
    }

    .row-down-footer {
        margin-bottom: -20px;
    }

    .up-ftr {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .ftr-tle {
        font-size: 22px;
    }

    .ftr-one {
        width: 100%;
    }

    .ftr-two {
        width: 50%;
    }

    .ftr-three {
        width: 50%;
    }

    /* ------ Property Network Slick Slider ------ */
    /* .map-area-sld-item.swiper-slide.slick-slide.slick-active {
        transform: translateY(-30px) !important;
    } */

    /* ------ Property Network Slick Slider ------ */

    /* 21.10.25 */

    /*css update 21/10/2025*/
    .upcoming-event-contbox {
        padding-left: 0;
    }

    .upcomingevent-wrapar li {
        padding: 20px 0;
    }

    .external-resource-sec ul li {
        width: 50%;
    }

    /*css update 21/10/2025*/
    /* 22.10.25 */
    .part-housing {
        padding: 20px 20px;
    }

    .name-commisioners {
        font-size: 18px;
    }

    .black-link {
        font-size: 18px;
    }

    .right-house-content {
        padding-left: 28px;
    }

    /* 22.10.25 */

    .req-prop-table table td strong {
        font-size: 14px;
    }

    .req-prop-table table td {
        font-size: 14px;
    }

    .req-prop-table .cmn-btn.morebutn {
        font-size: 14px;
    }

    .req-prop-table .cmn-btn.morebutn img {
        width: 15px;
    }

    .req-prop-table table td:first-child {
        width: 30%;
    }

    .reqst-prop-frm-inner {
        padding: 40px 0px;
    }

    .reqst-prop-sec-top .cmn-btn-wrap a {
        min-width: auto;
    }

    .reqst-prop-frm form {
        margin-bottom: 30px;
    }

    input[type="text"],
    input[type="tel"],
    input[type="password"],
    input[type="email"],
    select {
        height: 55px;
    }

    .cmn-card-right-col {
        padding-left: 12px;
    }

    p.what-we-do-num {
        font-size: 40px;
    }

    .what-we-do-card-inner {
        padding: 25px;
    }

    .quote-for {
        padding-top: 40px;
    }

    /*support css update 13/11/2025*/
    .form_container_gf .gform-theme--framework.gform_wrapper form input[type="text"],
    .form_container_gf .gform-theme--framework.gform_wrapper form input[type="tel"],
    .form_container_gf .gform-theme--framework.gform_wrapper form input[type="email"],
    .form_container_gf .gform-theme--framework.gform_wrapper form input[type="password"] {
        height: 55px;
    }

    /*support css update 13/11/2025*/

    /*support css update 20/11/2025 strat*/
    footer .menu-quick-links-container ul li a {
        font-size: inherit;
    }

    .map-area-text-outer {
        width: calc(100% - 160px);
    }

    .map-area-img-part {
        width: 160px;
    }

    .view-btn span {
        font-size: 17px;
    }

    .proprty-cat {
        gap: 13px;
    }

    .proprty-cat li {
        padding: 0 13px 0 0;
    }

    .proprty-cat li i,
    .location-text i {
        max-width: 17px;
        margin-right: 8px;
    }

    .map-area-item-in {
        padding: 11px 12px;
    }

    /*support css update 20/11/2025 end*/
    h1.entry-title.awsm-jobs-single-title {
        font-size: 50px;
    }

    /* .awsm-job-listing-item.awsm-list-item {
        min-width: 1110px;
        overflow: auto;
    }

    .awsm-lists {
        overflow: auto;
    } */
    .awsm-job-wrap.awsm-job-form-plugin-style .awsm-job-post-title a {
        font-size: 14px;
    }

    .awsm-job-wrap.awsm-job-form-plugin-style .awsm-job-specification-item {
        font-size: 14px;
        padding: 13px 13px;
    }

    .awsm-job-more {
        font-size: 14px;
    }

    .awsm-job-item {
        padding: 15px 20px;
    }

    .awsm-list-left-col {
        width: 30%;
    }

    .awsm-list-right-col {
        width: 70%;
    }

    .awsm-filter-wrap input[type="text"] {
        font-size: 16px;
    }

    .awsm-selectric .label {
        font-size: 16px;
    }

    .awsm-filter-items {
        width: 75% !important;
    }

    .awsm-filter-item-search {
        width: 23% !important;
    }

    .error-404-text p span {
        font-size: 150px;
    }

    .error-404-text p {
        font-size: 40px;
    }

    .no-rel {
        font-size: 24px;
    }

    .bcm-mem-sec h1 {
        font-size: 39px;
    }
}

@media(min-width:1025px) {

    /* navbar*/
    /* .navbar-nav .clickD {
    display: none;
} */
    /* 26.12.25 */
    /* .navbar-nav li.menu-item-has-children:hover>.sub-menu {
        display: block;
        opacity: 1;
        visibility: visible;
    } */

    /*support css update 31/12/2025*/
    #primary-menu li.menu-item-has-children>.sub-menu {
        display: none;
    }

    #primary-menu li.menu-item-has-children.actives>.sub-menu {
        display: block;
    }

    .sub-menu {
        visibility: hidden;
        opacity: 0;
    }

    .navbar-nav li.menu-item-has-children.actives>.sub-menu {
        opacity: 1;
        visibility: visible;
    }

    /*support css update 31/12/2025*/
}

@media(max-width:1024px) {

    /* ------ Property Network Slick Slider ------ */
    /* .map-area-sld-item.swiper-slide.slick-slide.slick-active {
        transform: translateY(-45px) !important;
    } */

    /* ------ Property Network Slick Slider ------ */

    /* navbar*/
    .navbar-nav .clickD {
        position: absolute;
        right: 0;
        top: 17px;
        width: 20px;
        height: 20px;
        background: url(images/sort-down.svg) center center no-repeat;
        display: block;
        background-size: 15px;
        cursor: pointer;
    }

    .navbar-nav .clickD.toggled {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .sub-menu>li.menu-item-has-children .clickD {
        top: 8px;
        right: 5px;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }

    .navbar-nav>li.menu-item-has-children {
        padding-right: 20px;
    }

    .sub-menu>li.menu-item-has-children>a {
        padding-right: 20px;
    }

    .sub-menu.show {
        display: block;
        visibility: visible;
        opacity: 1;
    }

    .navbar-nav>li {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .navbar-nav>li.current-menu-item>a:after,
    .navbar-nav>li>a:after,
    .navbar-nav>li.menu-item-has-children>a:after {
        width: 100%;
        opacity: 0;
    }

    .navbar-nav>li.current-menu-item>a:after,
    .navbar-nav>li>a:hover:after,
    .navbar-nav>li.menu-item-has-children:hover>a:after {
        width: 100%;
        opacity: 1;
    }

    /* navbar end*/

    .menu-item-has-children a {
        padding-right: 0px;
    }

    .navbar-nav .clickD {
        top: 13px;
    }

    /*support css update 31/12/2025*/
    .sub-menu {
        display: none;
    }

    /*support css update 31/12/2025*/
}


@media (max-width: 991px) {

    /* ------ Property Network Slick Slider ------ */
    /* .map-area-sld-item.swiper-slide.slick-slide.slick-active {
        transform: translateY(0) !important;
    } */

    /* ------ Property Network Slick Slider ------ */

    .sub-menu>li.menu-item-has-children .clickD.toggled {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .navbar-nav li:nth-child(6) .sub-menu .sub-menu {
        left: inherit;
        right: inherit;
    }

    /* navbar*/
    .navbar-toggler {
        position: relative;
        width: 33px;
        margin-left: auto;
        height: 28px;
        padding: 0;
        outline: none !important;
        border: none !important;
        box-shadow: none !important;
    }

    .stick,
    .stick:after,
    .stick:before {
        width: 30px;
        height: 2px;
        background: #000;
        position: absolute;
        left: 0;
        top: auto;
        transition: all 0.6s;
        border-radius: 5px;
    }

    body.dark-mode .navbar>.navbar-toggler .stick,
    body.dark-mode .navbar>.navbar-toggler .stick:after,
    body.dark-mode .navbar>.navbar-toggler .stick:before {
        background: var(--bg-white);
    }

    .stick:before {
        content: '';
        top: -10px;
        left: 0;
    }

    .stick:after {
        content: '';
        top: 10px;
        left: 0;
    }

    .stick.open {
        transform: translateX(-50px);
        background: transparent;
    }

    .stick.open:before {
        transform: rotate(45deg) translate(42px, -28px);
        left: 2px;
    }

    .stick.open:after {
        transform: rotate(-45deg) translate(42px, 28px);
        left: 2px;
    }

    .navbar-nav .clickD {
        top: 8px;
        right: 10px !important;
        -webkit-transform: rotate(0) !important;
        transform: rotate(0) !important;
    }

    .navbar-nav .clickD.toggled {
        -webkit-transform: rotate(180deg) !important;
        transform: rotate(180deg) !important;
    }

    .sub-menu,
    .navbar-nav>li>.sub-menu .sub-menu {
        position: relative;
        width: 100%;
        left: inherit;
        top: inherit;
        border: none;
        right: inherit;
    }

    .navbar-nav>li.menu-item-has-children {
        padding-right: 0;
    }

    .navbar-nav>li {
        margin: 0;
        padding: 0;
    }

    .navbar-nav li.menu-item-has-children>a {
        padding-right: 30px !important;
    }

    .navbar-nav>li>a {
        padding: 8px 20px;
        display: inline-block;
        width: 100%;
    }

    .sub-menu>li>a {
        padding-left: 40px;
    }

    .sub-menu .sub-menu>li>a {
        padding-left: 60px;
    }

    .sub-menu .sub-menu .sub-menu>li>a {
        padding-left: 80px;
    }

    .navbar-nav>li>a:after {
        bottom: 0;
        display: none;
    }

    /* navbar end*/

    /* push nav */

    .navbar-collapse {
        background: #fff;
        position: fixed;
        top: 0;
        height: 100% !important;
        width: 290px;
        overflow-y: auto;
        transition: inherit !important;
        right: 0;
        margin: 0;
        display: block !important;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: transform 0.2s ease-in-out !important;
        transition: transform 0.2s ease-in-out !important;
        z-index: 100;
    }

    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        display: block !important;
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-transition: transform 0.2s ease-in-out !important;
        transition: transform 0.2s ease-in-out !important;
    }

    .navbar-collapse .navbar-nav {
        margin: 80px 0 0 !important;
        padding: 0 0 40px 0;
    }

    .navbar-collapse .navbar-toggler {
        display: block;
        right: 20px;
        top: 20px;
        position: absolute;
    }

    #navoverlay.open {

        background-color: rgba(0, 0, 0, 0.4);
        pointer-events: all;
        -webkit-transition: background-color 0.5s linear;
        transition: background-color 0.5s linear;
    }

    body.open-nav,
    html.open-nav {
        height: 100%;
        overflow: hidden !important;
    }

    /* push nav end */

    .hdr-rgt-area {
        position: static;
        margin-left: auto;
        margin-right: 0;
        padding-left: 0;
    }

    .navbar-toggler {
        margin-left: 10px;
    }

    .header-nav {
        padding: 10px 0px;
    }

    .navbar-brand {
        width: 45px;
    }

    .hdr-scl-area ul li {
        margin-right: 15px;
    }

    .hdr-top-rgt li img {
        margin-right: 8px;
    }

    .navbar-expand-lg .navbar-collapse {
        margin-top: 0;
    }

    /* 21.10.25 */
    .slider-btn {
        height: 45px;
        width: 45px;
    }

    .test-images-wrap {
        width: 110px;
        height: 110px;
    }

    .coma-img {
        max-width: 23px;
    }

    .clients-sec .wrap-btns-slider {
        position: static;
        transform: none;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }

    .wrapper-footer {
        padding: 40px 20px;
        padding-bottom: 0;
    }

    .ftr-arw {
        height: 57px;
        width: 57px;
    }

    .list-social li a {
        height: 35px;
        width: 35px;
    }

    .list-social li {
        margin-right: 10px;
    }

    .down-ftr {
        padding: 17px 0;
    }

    .list-social li a img {
        max-width: 15px;
    }

    .ftr-tle {
        font-size: 18px;
    }

    .ftr-two {
        width: 55%;
    }

    .ftr-three {
        width: 45%;
    }

    .blog-bg {
        padding: 50px 20px;
        border-radius: 20px;
    }

    .list-profile li {
        margin-right: 14px;
    }

    .wrapper-footer {
        border-radius: 20px;
    }

    .slider-btn img {
        max-width: 15px;
    }

    .scrl-btn span {
        writing-mode: unset;
    }

    /* 21.10.25 */

    /*css update 21/10/2025*/
    .external-resource-sec ul li {
        width: 50%;
    }

    .upcoming-eventleftcol {
        margin-bottom: 30px;
    }

    .upcoming-eventleftcol,
    .upcoming-eventrgtcol {
        width: 100%;
    }

    .external-resource-card {
        padding: 16px 16px;
    }

    /*css update 21/10/2025*/

    .what-we-do-right-innr-btn-wrap {
        margin-top: 15px;
    }

    /* 22.10.25 */
    .col-board {
        width: 50%;
    }

    .cmn-card-right-col {
        margin-bottom: 20px;
        padding-left: 12px;
        order: 1;
    }

    .cmn-card-left-col {
        order: 2;
    }

    .cmn-card-right-col .cmn-btn-wrap.small {
        margin-bottom: 20px;
        margin-top: 15px;
    }

    /* 22.10.25 */

    .cmn-init-title {
        letter-spacing: 4px;
    }

    .scrl-btn {
        position: static;
    }

    .home-banner-wrapper {
        flex-direction: column;
    }


    .cmn-gap {
        padding: 70px 0px;
    }

    .hm-ban-btn-wrap {
        margin-top: 30px;
    }

    .home-banner-wrapper .container {
        max-width: 620px;
    }

    .cmn-btn {
        padding: 12px 25px;
        font-size: 14px;
        min-width: auto;
    }

    .sec-head-wrapper {
        flex-direction: column;
        flex-wrap: wrap;
    }

    .about-sec .sec-head-wrapper .sec-head {
        max-width: 100%;
        width: 100%;
    }

    .sec-head-wrapper article {
        width: 100%;
    }

    .about-sec .sec-head-wrapper .sec-head {
        margin-bottom: 20px;
    }

    .sec-head-wrapper .sec-head {
        width: 100%;
        margin-bottom: 20px;
    }

    .what-we-do-left-col {
        width: 100%;
    }

    .what-we-do-card-col {
        width: 50%;
    }

    .what-we-do-right-innr {
        padding: 15px;
    }

    .what-we-do-right-col {
        width: 100%;
    }

    .cmn-card-right-col {
        margin-bottom: 40px;
    }

    .cmn-btn-wrap {
        margin-top: 30px;
    }

    h1,
    .title-h1 {
        font-size: 30px;
    }

    h2,
    .title-h2 {
        font-size: 28px;
    }

    h3,
    .title-h3 {
        font-size: 24px;
    }

    h4,
    .title-h4 {
        font-size: 20px;
    }

    h5,
    .title-h5 {
        font-size: 18px;
    }

    h6,
    .title-h6 {
        font-size: 16px;
    }

    .hm-abt-row {
        display: flex;
        flex-wrap: wrap;
    }

    .hm-abt-col {
        width: 50%;
    }

    .cmn-card-right-col .cmn-btn-wrap a+a {
        margin-top: 15px;
    }

    .cmn-title {
        letter-spacing: 4px;
    }

    .job-desc-sec .sec-head {
        margin: 0 auto 40px;
    }

    .wrap-inner-banner {
        border-radius: 20px;
    }

    .job-desc-frame {
        border-radius: 20px;
    }

    .reqst-prop-sec-top .cmn-btn-wrap a {
        margin: 8px;
    }

    .reqst-prop-sec-top {
        margin-bottom: 40px;
    }

    .reqst-prop-frm .frm-item.frm-item {
        width: 50%;
    }

    .reqst-prop-frm form {
        flex-wrap: wrap;
    }

    .req-prop-table table {
        width: 1000px;
    }

    .reqst-prop-frm-inner {
        border-radius: 20px;
    }

    input[type="submit"] {
        height: 55px;
        font-size: 16px;
    }

    .rai-top-left {
        width: 100%;
        padding: 0px;
        margin-bottom: 30px;
    }

    .rai-top-right {
        width: 100%;
    }

    textarea {
        height: 100px;
    }

    .frm-custom-file-field {
        min-height: 180px;
        padding: 15px;
    }

    .rai-frm-innr {
        border-radius: 20px;
    }

    .sec-head-wrapper .sec-head {
        padding-right: 0px;
    }

    .part-ops-frm-inner {
        padding: 30px 20px;
    }

    .part-ops-frm-inner .frm-item.frm-submit {
        margin-top: 30px;
    }

    .part-ops-row {
        --bs-gutter-y: 30px;
    }

    .part-ops-sec .sec-head {
        margin-bottom: 30px;
    }

    .blog-sec .sec-head-wrapper {
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
    }

    .blog-sec .wrap-btns-slider {
        margin-top: 0px;
        justify-content: flex-end;
    }

    .blog-sec .sec-head-wrapper .sec-head {
        margin-bottom: 0px;
    }

    .housing-img-col {
        width: 100%;
        margin-bottom: 30px;
        padding: 0px;
    }

    .housing-cont-col {
        width: 100%;
        padding-right: 0;
    }

    .housing-sec .sec-head,
    .housing-bg-wrap .sec-head {
        margin-bottom: 30px;
    }

    .housing-bg-wrap {
        border-radius: 20px;
    }

    .housing-row.rev {
        flex-direction: column-reverse;
    }

    .housing-row.rev .housing-img-col {
        padding: 0;
    }

    .tx-cred-row {
        flex-direction: column-reverse;
    }

    .tx-bg-sec .housing-row.rev .housing-img-col {
        padding: 0;
    }

    .tx-bg-sec .housing-row.rev {
        flex-direction: column;
    }

    body.dark-mode .navbar-nav {
        background: inherit;
        box-shadow: inherit;
    }

    body.dark-mode .navbar-nav>li>a {
        color: var(--body-color);
    }

    body.dark-mode .navbar-nav .clickD {
        filter: inherit;
    }

    body.dark-mode .navbar-nav>.menu-item-has-children>a+.clickD {
        filter: none;
    }

    body.dark-mode .navbar-nav>li.current-menu-item>a,
    body.dark-mode .navbar-nav>li>a:hover,
    body.dark-mode .navbar-nav>li.menu-item-has-children:hover>a {
        color: var(--bg-color);
    }

    .req-prop-table table {
        width: auto;
    }

    .req-prop-table table td {
        display: inline-block;
        width: 49% !important;
        padding: 10px 20px;
    }

    .req-prop-table table tr {
        padding: 10px 0px;
        display: block;
    }

    .quote-for {
        padding-top: 0px;
    }

    .sub-menu>li:first-child>a {
        border-radius: 0px;
    }

    .sub-menu>li:last-child>a {
        border-radius: 0px;
    }

    .sub-menu {
        border-radius: 0px;
    }

    .sub-menu>li>a {
        padding: 12px;
        padding-left: 32px;
    }

    /*support css update 13/11/2025*/
    .form_container_gf .gform-theme--framework.gform_wrapper form .gform_footer input[type="submit"].button {
        height: 55px;
        font-size: 16px;
    }

    .form_container_gf .gform-theme--framework.gform_wrapper form textarea {
        height: 100px;
    }

    .form_container_gf .gform-theme--framework.gform_wrapper form .ginput_container_fileupload .gform-theme-field-control {
        min-height: 180px;
        padding: 15px;
    }

    /*support css update 13/11/2025*/

    /*support css update 20/11/2025 start*/
    .housing-bg-sec:nth-child(even) .housing-row .housing-img-col {
        padding-right: 0;
    }

    .map-area-lt-col,
    .map-area-rt-col {
        width: 100%;
    }

    .map-area-row {
        flex-direction: column-reverse;
        --bs-gutter-y: 30px;
    }

    .map-img-wpr {
        max-height: 300px;
    }

    .map-area-sld-item {
        padding: 0px 12px;
    }

    .map-area-sld-wpr .slick-list {
        margin: 0px -12px;
    }

    .map-area-sld-outer {
        padding-left: 25px;
    }

    .service-area-wrap .sec-head {
        margin-bottom: 30px;
    }

    .map-img-outer {
        padding-left: 0;
    }


    /*support css update 20/11/2025 end*/
    .awsm-list-left-col {
        width: 100%;
    }

    .awsm-list-right-col {
        width: 100%;
        padding-top: 20px;
    }

    .awsm-job-wrap.awsm-job-form-plugin-style .awsm-job-specification-item:first-child {
        padding-left: 0;
    }

    .awsm-filter-wrap.awsm-full-width-search-filter-wrap .awsm-filter-item-search {
        min-width: 100%;
    }

    .awsm-filter-items {
        width: 100% !important;
    }

    .awsm-filter-item-search {
        width: 100% !important;
    }

    /* S.Mv Css Start 04-12-25 */
    .form_wrapper form p {
        margin-top: 20px;
        text-align: left;
    }

    /* S.Mv Css End 04-12-25 */

    /* 18/12/25 work start */
    .blog-cover {
        margin-bottom: 20px;
    }

    .blog-cover img {
        border-radius: 20px;
    }

    .blog-dtls-wrapper h1 {
        margin-bottom: 15px;
    }

    .blog-meta {
        margin-bottom: 25px;
    }

    .blog-content h2 {
        font-size: 25px;
    }

    .blog-content h3 {
        font-size: 22px;
    }

    /* 18/12/25 work end */
    .error-404-text p span {
        font-size: 130px;
    }

    .error-404-text p {
        font-size: 38px;
    }

    .bcm-mem-sec #content {
        width: 58%;
    }

    .bcm-mem-sec h1 {
        font-size: 34px;
        width: 80%;
    }

    .bcm-mem-sec {
        justify-content: center;
        text-align: center;
    }



    /* 06-01-25 Css Start */
    .part-ops-right figure {
        padding-top: 70%;
        position: relative;
        overflow: hidden;
    }

    .part-ops-right figure img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .scrl-btn {
        position: absolute;
        display: flex;
        right: auto;
    }

    .scrl-mp {
        margin-top: 0;
    }

    .home-banner-wrapper.cmn-gap {
        padding-bottom: 120px;
    }

    /* 06-01-25 Css End */

}


@media (max-width: 767px) {
	
	.housing-bg-sec:nth-child(2n) .housing-row .housing-img-col{
		padding-right: 0;
		padding-top: 40px;
		margin-bottom: 0;
	}

    /* --- Accounts Payable & Receivable Analyst P/T – Job Description --- */
    .job-desc-frame embed {
        width: 100%;
        height: 550px;
    }

    .awsm-job-item h2.awsm-job-post-title a {
        font-size: 15px;
    }

    .sdm_download_title {
        line-height: 1;
    }

    /* --- Accounts Payable & Receivable Analyst P/T – Job Description --- */

    /* images alignment for wordpress content pages */
    .alignright,
    .alignleft,
    .aligncenter {
        float: none;
        clear: both;
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        clear: both;
        margin-bottom: 24px;
    }

    /* 21.10.25 */
    .lft-ftr-upper {
        width: 100%;
        padding-right: 0;
    }

    .rgt-ftr-upper {
        width: 100%;
        justify-content: flex-start;
    }

    /* 21.10.25 */
    /* 22.10.25 */
    .col-board {
        padding: 0px 10px;
        margin-bottom: 20px;
    }

    .row-board {
        margin: 0px -10px -20px;
    }

    .position-text {
        font-size: 15px;
    }

    .board-down h3 {
        margin-bottom: 4px;
        font-size: 18px;
    }

    .board-down .feild-name {
        font-size: 15px;
    }

    .board-down .time-board {
        font-size: 15px;
    }

    /* 22.10.25 */

    .hm-abt-row .hm-abt-col {
        padding: 10px;
    }

    .hm-abt-btn-wrap .cmn-btn img {
        width: 6px;
    }

    .hm-abt-row {
        margin: -10px;
    }

    .hm-abt-btn-wrap {
        padding: 10px;
    }

    .what-we-do-cards {
        --bs-gutter-x: 15px;
        --bs-gutter-y: 15px;
    }

    p.what-we-do-num {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .what-we-do-card-inner {
        padding: 30px;
    }

    .cmn-card-row.rev .cmn-card-right-col {
        padding-right: 12px;
    }

    .home-banner-wrapper .cmn-init-title {
        font-size: 14px;
    }

    .cmn-title {
        font-size: 14px;
    }

    .cmn-gap {
        padding: 50px 0px;
    }

    .home-banner-wrapper {
        border-radius: 20px;
    }

    .service-area-wrap {
        border-radius: 20px;
    }

    .upcomingevnt-subhd {
        font-size: 20px;
    }

    .wrap-inner-banner {
        padding: 60px 0px;
        min-height: 350px;
    }

    label {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .rai-frm-innr .frm-item.frm-submit {
        margin-top: 30px;
    }

    .theme-list li:after {
        top: 6px;
    }

    /*support css update 13/11/2025*/
    .form_container_gf .gform-theme--framework.gform_wrapper form label {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .form_container_gf .gform-theme--framework.gform_wrapper form .gfield_required {
        font-size: 16px;
    }

    /*support css update 13/11/2025*/
    /* --- 20.11.25 support p.p css start ---*/
    .view-btn span {
        font-size: 15px;
    }

    .proprty-cat {
        margin-bottom: 20px;
    }

    /* --- 20.11.25 support p.p css end ---*/

    /* S.Mv Css Start 04-12-25 */
    .awsm-job-listing-item.awsm-list-item .awsm-list-right-col .awsm-job-specification-wrapper {
        width: 100%;
        margin: -10px;
    }

    .awsm-job-listing-item.awsm-list-item .awsm-list-right-col .awsm-job-specification-wrapper>* {
        width: 50% !important;
        padding: 8px 10px;
        margin: 0;
    }

    .awsm-job-listing-item.awsm-list-item .awsm-list-right-col .awsm-job-more-container {
        width: 100%;
        padding-top: 10px;
        padding-left: 0;
    }

    .awsm-job-listing-item.awsm-list-item .awsm-list-right-col .awsm-job-specification-wrapper {
        font-size: 14px;
    }

    .awsm-list-right-col {
        padding-top: 0;
    }


    /* S.Mv Css End 04-12-25 */

    /* 06-01-25 Css Start */
    .menu-quick-links-container .menu {
        display: flex;
        flex-wrap: wrap;
        column-count: initial !important;
        margin: -10px;
    }

    .menu-quick-links-container .menu li {
        width: 50%;
        padding: 10px;
        margin: 0;
    }

    /* 06-01-25 Css End */
}

@media (max-width: 600px) {

    /* 21.10.25 */
    .ftr-two {
        width: 100%;
    }

    .ftr-three {
        width: 100%;
    }

    .list-ftr-items li {
        margin-bottom: 10px;
    }

    .location-wrap {
        height: 35px;
        width: 35px;
    }


    /* 21.10.25 */

    /*css update 21/10/2025*/
    .up-evnt-acord-toppnl .morebutn span {
        display: none;
    }

    .up-evnt-acord-toppnl .morebutn {
        width: 40px;
        height: 40px;
        border-radius: 100%;
        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;
        line-height: 1;
        border: 1px solid var(--body-color);
    }

    .up-evnt-acord-toppnl .morebutn img {
        margin-left: 0;
    }

    .upcomingevnt-readmorepnl {
        width: auto;
        max-width: -webkit-max-content;
        max-width: -moz-max-content;
        max-width: max-content;

    }

    .upcomingevnt-lftpnl {
        width: calc(100% - 40px);
        padding-right: 15px;
    }

    .external-resource-logobox {
        margin-bottom: 20px;
    }

    .external-resource-card h3 {
        margin-bottom: 20px;
    }

    .external-resource-card .morebutn {
        margin-top: 20px;
    }

    .external-resource-article {
        margin-bottom: 25px;
    }

    .calnedericon {
        max-width: 20px;
    }

    /*css update 21/10/2025*/
    /* 22.10.25 */
    .left-housing {
        width: 100%;
    }

    .right-housing {
        width: 100%;
    }

    .right-house-content {
        padding-left: 0;
        padding-top: 20px;
    }

    .name-commisioners {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .black-link {
        font-size: 16px;
    }

    .document-part table thead th {
        padding: 18px 20px;
        font-size: 15px;
    }

    .document-part table tbody td {
        padding: 13px 20px;
        font-size: 14px;
    }

    .pdf-arrow {
        font-size: 14px;
    }

    /* 22.10.25 */
    /*support css update 13/11/2025*/
    footer .menu-quick-links-container ul li {
        margin-bottom: 10px;
    }

    /*support css update 13/11/2025*/
    h1.entry-title.awsm-jobs-single-title {
        font-size: 40px;
    }

    .table_sec .container {
        overflow: auto;
    }

    .file-table {
        min-width: 676px;
        overflow: auto;
    }

    .awsm-list-item .awsm-job-specification-wrapper {
        width: 100%;
    }

    .awsm-list-item .awsm-job-more-container {
        padding: 0;
        margin-left: 0;
    }

    .awsm-filter-toggle {
        margin-left: auto;
        background-color: var(--bg-color);
        color: var(--bg-white);
    }

    .awsm-filter-toggle svg {
        filter: brightness(0) invert(1);
    }

    .bcm-mem-sec h1 {
        font-size: 28px;
    }
}

@media (max-width: 575px) {

    .sdm_download_title {
        font-size: 18px;
    }

    .sdm_download.green, .sdm_download.green:hover, .sdm_download_item_count {
        font-size: 15px;
    }

    /* 21.10.25 */
    .ftr-arw img {
        max-width: 16px;
    }

    .wrap-btns-slider {
        width: 100%;
        margin-top: 20px;
    }

    /* 21.10.25 */

    /*css update 21/10/2025*/
    .external-resource-sec ul li {
        width: 100%;
    }

    /*css update 21/10/2025*/
    /* 22.10.25 */

    .col-board {
        width: 100%;
    }

    .document-part {
        overflow: auto;
    }

    .document-part table {
        width: 700px;
    }

    /* 22.10.25 */

    .hm-abt-row .hm-abt-col {
        width: 100%;
    }

    .hm-abt-inn .abt-card-img {
        position: absolute;
        top: 0;
        left: 0;
    }

    .hm-abt-inn {
        padding-top: 80%;
    }

    .what-we-do-card-col {
        width: 100%;
        height: auto;
    }

    .what-we-do-right-innr {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .what-we-do-right-innr-left {
        width: 100%;
        padding: 15px 0px 0px 0px;
    }

    .what-we-do-right-innr-right {
        height: auto;
        width: 100%;
    }

    .hm-abt-row .hm-abt-col {
        width: 100%;
    }

    .hm-abt-inn .abt-card-img {
        position: absolute;
        top: 0;
        left: 0;
    }

    .hm-abt-inn {
        padding-top: 80%;
    }

    .what-we-do-card-col {
        width: 100%;
        height: auto;
    }

    .what-we-do-right-innr {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .what-we-do-right-innr-left {
        width: 100%;
        padding: 15px 0px 0px 0px;
    }

    .what-we-do-right-innr-right {
        height: auto;
        width: 100%;
    }

    .reqst-prop-sec-top .cmn-btn-wrap {
        flex-direction: column;
    }

    .reqst-prop-sec-top .cmn-btn-wrap a {
        width: 80%;
    }

    .reqst-prop-frm .frm-item.frm-item {
        width: 100%;
    }

    .req-prop-table table td:first-child {
        width: 25%;
    }

    .req-prop-table table td {
        width: 100% !important;
    }

    /* --- 20.11.25 support p.p css start ---*/
    .map-area-item-in {
        padding: 16px 12px;
        flex-wrap: wrap;
    }

    .map-area-img-part {
        width: 100%;
        max-height: 250px;
    }

    .map-area-text-outer {
        width: 100%;
        padding-left: 0;
        padding-top: 15px;
    }

    .map-area-sld-outer {
        padding-left: 10px;
    }

    .location-text p {
        font-size: 14px;
    }

    .star-wpr i {
        max-width: 17px;
    }

    /* --- 20.11.25 support p.p css end ---*/
    .awsm-job-wrap.awsm-job-form-plugin-style .awsm-job-specification-item:first-child {
        padding-left: 10px;
    }

    .awsm-list-item .awsm-job-specification-wrapper {
        margin: -10px;
    }

    .awsm-job-wrap.awsm-job-form-plugin-style .awsm-job-specification-item {
        padding: 10px;
    }

    .awsm-list-left-col {
        padding-bottom: 20px;
    }

    .awsm-job-listing-item.awsm-list-item .awsm-list-right-col .awsm-job-more-container {
        margin-top: 20px;
        padding: 0;
    }

    .form-field {
        width: 100%;
    }

    .contractor-register-sec form button,
    .contractor-login-sec form button {
        max-width: 180px;
        font-size: 18px;
        padding: 12px 20px;
        margin-top: 10px;
    }

    section.contractor-register-sec,
    .contractor-login-sec {
        padding: 40px 0 60px;
    }

    .error-404-text p span {
        font-size: 100px;
    }

    .error-404-text p {
        font-size: 34px;
    }

    .no-rel {
        font-size: 22px;
    }

    .bcm-mem-sec h1 {
        width: 100%;
    }
}

@media (max-width: 479px) {

    /* 21.10.25 */
    .list-social {
        width: 100%;
        margin-bottom: 10px;
        justify-content: center;
    }

    .down-ftr {
        justify-content: center;
        text-align: center;
    }

    .ftr-arw {
        height: 47px;
        width: 47px;
    }

    .test-images-wrap {
        width: 90px;
        height: 90px;
    }

    .coma-img {
        max-width: 17px;
    }

    .list-profile li {
        margin-right: 0;
        margin-bottom: 10px;
        width: 100%;
    }

    .column {
        column-count: 1;
    }

    .navbar-brand {
        margin-right: 6px;
    }

    /* 21.10.25 */

    .blog-sec .sec-head-wrapper {
        flex-wrap: wrap;
    }

    .blog-sec .sec-head-wrapper .sec-head {
        margin-bottom: 20px;
    }

    /*support css update 13/11/2025*/

    footer .menu-quick-links-container ul {
        column-count: 1;
    }

    /*support css update 13/11/2025*/
    .awsm-job-form-inner {
        padding: 25px 20px;
    }

    .file-table tr th,
    .file-table tr td {
        padding: 10px 14px;
        font-size: 15px;
    }

    .awsm-job-specification-item {
        font-size: 15px;
    }

    .awsm-job-wrap.awsm-job-form-plugin-style .awsm-job-specification-item {
        padding: 5px;
        width: 100%;
    }

    .awsm-list-item .awsm-job-specification-wrapper {
        margin: -5px;
    }

    .awsm-job-wrap.awsm-job-form-plugin-style .awsm-job-specification-item:first-child {
        padding-left: 5px;
    }

    .awsm-job-item {
        padding: 20px;
    }


    /* S.Mv Css Start 04-12-25 */
    .awsm-job-listing-item.awsm-list-item .awsm-list-right-col .awsm-job-specification-wrapper>* {
        width: 100% !important;
    }

    .form_wrapper {
        padding: 20px 15px 29px;
    }


    /* S.Mv Css End 04-12-25 */
    .error-404-text p span {
        font-size: 80px;
    }

    .error-404-text p {
        font-size: 30px;
    }

    .no-rel {
        font-size: 18px;
    }

    .gform_confirmation_message a {
        font-size: 15px;
        padding: 14px 16px;
        min-width: 166px;
    }

    .bcm-mem-sec h1 {
        margin-bottom: 15px;
        font-size: 24px;
    }

    .bcm-mem-sec #content {
        width: 100%;
    }

    /* 06-01-25 Css Start */
    .scrl-btn {
        bottom: 22px;
    }

    .blog-sec .wrap-btns-slider {
        justify-content: center;
    }

    .blog-sec .sec-head {
        text-align: center;
    }

    /* 06-01-25 Css End */
}