@keyframes shine {
    from {
        opacity: 0;
        left: 0%;
    }
    50% {
        opacity: 1;
    }
    to {
        opacity: 0;
        left: 100%;
    }
}

@keyframes shine {
    from {
        opacity: 0;
        left: 0%;
    }
    50% {
        opacity: 1;
    }
    to {
        opacity: 0;
        left: 100%;
    }
}

.form {
    --inputsize: 42px;
    --labelbefore: var(--text);
    --labelafter: var(--text);
    --borderbefore: var(--text);
    --borderafter: var(--black);
    --labelfontbefore: 16px;
    --labelfontafter: 12px;
    --font: 500;
    --color: var(--black);
    --borderwidth: 1px;
    --labelbackground: none;
    --font: normal;
    --textareaheight: 86px;
    --paddingleftright: 0px;
}

.form .form-group {
    position: relative;
    width: 100%;
    --selectheight: var(--inputsize);
    line-height: 0;
}

.form .form-group.hasCalender {
    background-image: url('data:image/svg+xml,%3Csvg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M17.5 2H14.5V0.5C14.5 0.367392 14.4473 0.240215 14.3536 0.146447C14.2598 0.0526785 14.1326 0 14 0C13.8674 0 13.7402 0.0526785 13.6464 0.146447C13.5527 0.240215 13.5 0.367392 13.5 0.5V2H6.5V0.5C6.5 0.367392 6.44732 0.240215 6.35355 0.146447C6.25979 0.0526785 6.13261 0 6 0C5.86739 0 5.74021 0.0526785 5.64645 0.146447C5.55268 0.240215 5.5 0.367392 5.5 0.5V2H2.5C1.8372 2.00079 1.20178 2.26444 0.73311 2.73311C0.264441 3.20178 0.000793929 3.8372 0 4.5V17.5C0.000793929 18.1628 0.264441 18.7982 0.73311 19.2669C1.20178 19.7356 1.8372 19.9992 2.5 20H17.5C18.163 20 18.7989 19.7366 19.2678 19.2678C19.7366 18.7989 20 18.163 20 17.5V4.5C20 3.83696 19.7366 3.20107 19.2678 2.73223C18.7989 2.26339 18.163 2 17.5 2ZM19 17.5C19 17.8978 18.842 18.2794 18.5607 18.5607C18.2794 18.842 17.8978 19 17.5 19H2.5C2.10218 19 1.72064 18.842 1.43934 18.5607C1.15804 18.2794 1 17.8978 1 17.5V9H19V17.5ZM19 8H1V4.5C1 3.672 1.67 3 2.5 3H5.5V4.5C5.5 4.63261 5.55268 4.75979 5.64645 4.85355C5.74021 4.94732 5.86739 5 6 5C6.13261 5 6.25979 4.94732 6.35355 4.85355C6.44732 4.75979 6.5 4.63261 6.5 4.5V3H13.5V4.5C13.5 4.63261 13.5527 4.75979 13.6464 4.85355C13.7402 4.94732 13.8674 5 14 5C14.1326 5 14.2598 4.94732 14.3536 4.85355C14.4473 4.75979 14.5 4.63261 14.5 4.5V3H17.5C17.8978 3 18.2794 3.15804 18.5607 3.43934C18.842 3.72064 19 4.10218 19 4.5V8Z" fill="%23666666" fill-opacity="0.7"/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: 100% 50%;
}

.form .form-group.hasCalender.hasCalender-white {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 24 24'><path fill='%23ffffff' d='M19 4h-2V3a1 1 0 0 0-2 0v1H9V3a1 1 0 0 0-2 0v1H5a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3m1 15a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-7h16Zm0-9H4V7a1 1 0 0 1 1-1h2v1a1 1 0 0 0 2 0V6h6v1a1 1 0 0 0 2 0V6h2a1 1 0 0 1 1 1Z'/></svg>");
}

.form .form-group.active::after {
    width: 100%;
}

.form .form-group::before,
.form .form-group::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--borderwidth);
    transition: 0.5s ease;
}

.form .form-group::before {
    background: var(--borderbefore);
}

.form .form-group::after {
    width: 0;
    background: var(--borderafter);
}

.form .form-group label {
    font-weight: var(--font);
    position: absolute;
    top: calc(var(--inputsize) / 2 - var(--labelfontbefore) / 2);
    left: var(--paddingleftright);
    color: var(--labelbefore);
    line-height: 1;
    font-size: var(--labelfontbefore);
    background: var(--labelbackground);
    transition: 0.3s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    pointer-events: none;
}

.form .form-group input,
.form .form-group textarea {
    height: calc(var(--inputsize) - var(--borderwidth));
    border: none;
    resize: none;
    border-radius: 0px !important;
    width: 100%;
    background: none;
    color: var(--color);
    font-size: inherit;
    font-family: inherit;
    padding: 0 var(--paddingleftright);
}

.form .form-group input:focus,
.form .form-group textarea:focus {
    outline: none;
}

.form .form-group input.valid,
.form .form-group textarea.valid {
    outline: none;
}

.form .form-group input.valid~label,
.form .form-group textarea.valid~label {
    font-size: var(--labelfontafter);
    color: var(--labelafter);
    top: calc(var(--labelfontafter) / -2);
}

.form .form-group input:not(.no-focus):focus,
.form .form-group textarea:not(.no-focus):focus {
    outline: none;
}

.form .form-group input:not(.no-focus):focus~label,
.form .form-group textarea:not(.no-focus):focus~label {
    font-size: var(--labelfontafter);
    color: var(--labelafter);
    top: calc(var(--labelfontafter) / -2);
}

.form .form-group input[readonly],
.form .form-group textarea[readonly] {
    caret-color: transparent;
}

.form .form-group textarea {
    height: var(--textareaheight);
    border: none;
    resize: none;
    border-radius: 0px !important;
    width: 100%;
    background: none;
    color: var(--color);
    font-size: inherit;
    font-family: inherit;
    line-height: 1.2;
    cursor: initial;
    padding: 0 var(--paddingleftright);
    padding-right: 15px;
}

.form .form-group textarea::-webkit-scrollbar {
    width: 2px;
    background: none;
    height: 2px;
}

.form .form-group textarea::-webkit-scrollbar-track {
    box-shadow: none;
}

.form .form-group textarea::-webkit-scrollbar-thumb {
    background-color: var(--black);
    border-radius: 15px;
}

.form .form-group textarea:focus,
.form .form-group textarea.valid {
    outline: none;
    margin-top: 13px;
    height: calc(var(--textareaheight) - 13px);
}

.form .form-group select:focus {
    outline: none;
}

.form .form-group select~label {
    position: absolute;
    top: calc(var(--labelfontafter) / -2);
    left: var(--paddingleftright);
    color: var(--labelafter);
    translate: 0 0;
    font-size: var(--labelfontafter);
    opacity: 0;
    transition: 0.6s ease;
}

.form .form-group select.valid {
    color: var(--color);
}

.form .form-group select.valid~label {
    opacity: 1;
}

.form .form-group .error {
    position: absolute;
    top: calc(100% + 3px);
    left: 0;
    right: 0;
    color: red;
    line-height: normal;
    font-size: 12px;
}

.form .form-group.file-input input[type=file] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 4;
    cursor: pointer;
}

.form .form-group.file-input .file-name {
    pointer-events: none;
    height: calc(var(--inputsize) - var(--borderwidth));
    position: relative;
    --filename: "Choose File";
    --filenameinitial: var(--filename);
    --color: var(--text);
    --background: none;
    --image: url(../../icon/clip-gray.svg) no-repeat;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    line-height: calc(var(--inputsize) - var(--borderwidth));
}

.form .form-group.file-input .file-name::before,
.form .form-group.file-input .file-name::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.form .form-group.file-input .file-name::before {
    content: var(--filenameinitial);
    z-index: 2;
    font-family: inherit;
    font-size: inherit;
    line-height: calc(var(--inputsize) - var(--borderwidth));
    padding-left: var(--paddingleftright);
    color: var(--color);
    width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    background: none;
}

.form .form-group.file-input .file-name::after {
    content: "";
    right: 0;
    background: var(--image);
    background-repeat: no-repeat;
    z-index: 1;
    background-position: calc(100% - var(--paddingleftright, 0)) 50%;
    background-size: auto 50%;
}

.form .submit-grp:not(.text-left) {
    text-align: center;
    margin-top: 23px;
}

.custom-select {
    max-width: 100%;
    cursor: pointer;
    display: block;
    font-family: inherit;
    height: var(--selectheight);
    position: relative;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    white-space: nowrap;
    padding: 0 var(--paddingleftright);
    --arrow: 15px;
    --arrowspace: 8px;
    --iconpath: url(../../icon/location-gray.svg);
}

.custom-select.has-icon {
    --iconsize: 12px;
    --iconurl: var(--iconpath);
    --iconspace: 8px;
}

.custom-select.has-icon::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background: none;
}

.custom-select.has-icon::after {
    left: var(--paddingleftright, 0px);
    width: var(--iconsize);
    background-image: var(--iconurl);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: 0 50%;
}

.custom-select.has-icon .current {
    padding-left: calc(var(--iconsize) + var(--iconspace));
    padding-right: calc(var(--arrow) + var(--iconsize) + var(--arrowspace) + var(--iconspace));
}

.custom-select::before {
    content: "";
    position: absolute;
    top: 0;
    right: var(--paddingleftright, 0);
    bottom: 0;
    width: var(--arrow);
    background-image: url(../../icon/arrow-down-gray.svg);
    background-position: 0 50%;
    background-repeat: no-repeat;
    background-size: 100% auto;
}

.custom-select .current {
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: var(--inputsize);
    color: var(--labelbefore);
    font-size: var(--labelfontbefore);
    font-weight: var(--font);
    padding-right: calc(var(--arrow) + var(--arrowspace));
}

.custom-select .current.selected {
    color: var(--color);
}

.custom-select .list {
    text-align: left;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    overflow: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    opacity: 0;
    transform-origin: 50% 0;
    z-index: 7;
    max-height: 180px;
    overflow-y: auto;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    pointer-events: none;
}

.custom-select .list::-webkit-scrollbar {
    width: 4px;
    background: none;
    height: 4px;
}

.custom-select .list::-webkit-scrollbar-track {
    box-shadow: none;
}

.custom-select .list::-webkit-scrollbar-thumb {
    background-color: var(--text);
    border-radius: 5px;
}

.custom-select .list li {
    display: block;
    line-height: 1.2;
    padding: 8px 16px;
    font-size: 14px;
}

.custom-select .list li.selected {
    background: var(--primary);
    color: var(--white);
}

.custom-select .list li.selected:hover {
    background: var(--primary);
    color: var(--white);
}

.custom-select .list li:hover {
    background: #e2e2e2;
}

.custom-select.open .list {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateY(0);
}

.daterangepicker {
    font-family: "Poppins" !important;
}

.daterangepicker select {
    display: block;
    border-radius: 5px;
    color: var(--text);
    cursor: pointer !important;
    background: #fff6f6;
    border-color: #ccc;
}

.daterangepicker select:focus {
    outline: none;
}

.daterangepicker thead {
    position: relative;
}

.daterangepicker tr:has(.yearselect,
.monthselect) {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    display: flex;
}

.daterangepicker tr:has(.yearselect,
.monthselect) th:has(.yearselect,
.monthselect) {
    display: flex;
    flex: 1;
}

.daterangepicker tr:has(.yearselect,
.monthselect) th .yearselect,
.daterangepicker tr:has(.yearselect,
.monthselect) th .monthselect {
    flex: 1;
}

.daterangepicker tr~tr th {
    padding-top: 35px;
}

.daterangepicker option.disabled,
.daterangepicker td.disabled {
    text-decoration: none !important;
}

.daterangepicker td.active {
    background-color: var(--black) !important;
}

.daterangepicker .drp-buttons .btn {
    --height: 30px;
    padding: 0 15px !important;
    font-weight: 400 !important;
    font-size: 12px !important;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    border-radius: 50%;
    background: var(--black);
    border-color: var(--black);
    height: 17px;
    width: 17px;
    border: none !important;
    top: 50%;
    translate: 0 -50%;
}

.ui-state-default:focus,
.ui-widget-content .ui-state-default:focus,
.ui-widget-header .ui-state-default:focus,
.ui-button:focus,
html .ui-button.ui-state-disabled:hover:focus,
html .ui-button.ui-state-disabled:active:focus {
    outline: none;
}

.ui-slider-horizontal {
    height: 2px;
    border: none !important;
}

.ui-widget-content {
    background: #CECECE;
    border: none !important;
}

.ui-widget-header {
    background: var(--black);
}

.checkbox-full {
    position: relative;
    --size: 20px;
    display: flex;
    line-height: normal;
    align-items: center;
}

.checkbox-full:has(input:checked) .check-span {
    background: var(--black);
}

.checkbox-full:has(input:checked) .check-span::before {
    opacity: 1;
}

.checkbox-full input {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    z-index: 2;
}

.checkbox-full .check-span {
    flex: 0 1 auto;
    display: block;
    --size: 20px;
    height: var(--size);
    width: var(--size);
    position: relative;
    padding: 0;
    border-radius: 5px;
    background: #D9D9D9;
    pointer-events: none;
}

.checkbox-full .check-span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: url(../../icon/tick-white.svg) no-repeat;
    background-position: 50% 50%;
    background-size: 10px auto;
    opacity: 0;
}

.checkbox-full p {
    padding-left: 14px;
}

.radio-full {
    position: relative;
    --size: 20px;
    display: flex;
    line-height: normal;
    align-items: center;
}

.radio-full:has(input:checked) .check-span {
    background: var(--black);
    outline-offset: -4px;
    outline: 2px solid var(--white);
    background: var(--black);
}

.radio-full input {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    z-index: 2;
}

.radio-full .check-span {
    flex: 0 1 auto;
    display: block;
    --size: 17px;
    display: inline-block;
    height: var(--size);
    width: var(--size);
    border: 1px solid var(--black);
    border-radius: 50%;
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    background: transparent;
}

.radio-full p {
    padding-left: 14px;
    font-weight: 500;
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
}

:root {
    --headerpadding: 20px;
    --headerheight: 85px;
    --headerfixed: 70px;
    --footerstrip: 38px;
    --projectdetailstrip: 40px;
    --primary: #00257a;
    --gradient-a: linear-gradient(180deg, #FEFCFC 0%, #F4F4F4 100%);
    --text: #666666;
    --green: green;
    --white: #FFFFFF;
    --black: #000000;
    --black-light: #00257a;
    --gray: #F4F4F4;
    --green: #36c991;
    --container: 1280px;
    --containerfluid: 2rem;
}

@media only screen and (max-width: 1152px) {
    :root {
        --containerfluid: 1rem;
    }
}

@media only screen and (max-width: 991px) {
    :root {
        --containerfluid: 15px;
        --headerheight: 75px;
    }
}

@media only screen and (max-width: 767px) {
    :root {
        --headerheight: 60px;
        --headerfixed: 60px;
        --headerpadding: 14px;
    }
}

@media only screen and (max-width: 320px) {
    :root {
        --containerfluid: 10px;
    }
}

body::-webkit-scrollbar {
    width: 10px;
    background: var(--black);
}

body::-webkit-scrollbar-track {
    box-shadow: none;
}

body::-webkit-scrollbar-thumb {
    background-color: #ccc;
}

body.overflow-hidden {
    overflow: hidden;
    margin-right: 10px;
}

@media only screen and (max-width: 991px) {
    body.overflow-hidden {
        margin-right: 0;
    }
}

body.overflow-hidden header {
    width: calc(100% - 10px);
}

@media only screen and (max-width: 991px) {
    body.overflow-hidden header {
        width: 100%;
    }
}

body,
html {
    font-size: 16px;
    line-height: 1.5;
    font-optical-sizing: auto;
    font-style: normal;
    font-family: "Poppins";
    font-weight: normal;
}

b {
    font-weight: 500;
}

small {
    font-size: 14px;
    line-height: 22px;
    display: block;
}

.content-color-text p {
    color: var(--text);
}

.content-w-medium p {
    font-weight: 500;
}

.gray-bg {
    background: var(--gray);
}

.fw-medium {
    font-weight: 500;
}

.fw-semibold {
    font-weight: 600;
}

.c-primary {
    color: var(--primary);
}

.c-text {
    color: var(--text);
}

.c-red {
    color: red;
}

.c-green {
    color: #13bb75 !important;
}

.fs-14 {
    font-size: 14px;
}

select {
    display: none;
}

a[href] {
    text-decoration: none;
    cursor: pointer;
    transition: 0.5s ease;
}

a[href].logo {
    display: block;
    line-height: 0;
}

svg path {
    transition: 0.5s ease;
}

.position-relative {
    position: relative;
}

.lh-normal {
    line-height: normal;
}

.cursor-pointer {
    cursor: pointer !important;
}

.container {
    max-width: var(--container);
    width: 100%;
    margin: 0 auto;
}

@media only screen and (max-width: 1300px) {
    .container {
        padding: 0 25px;
    }
}

@media only screen and (max-width: 767px) {
    .container {
        padding: 0 15px;
    }
}

@media only screen and (max-width: 345px) {
    .container {
        padding: 0 13px;
    }
}

@media only screen and (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
}

@media only screen and (max-width: 675px) {
    .container.container2 {
        padding-right: 0;
    }
}

@media only screen and (max-width: 675px) {
    .container.container2 .heading {
        padding-right: 15px;
    }
}

@media only screen and (max-width: 345px) {
    .container.container2 .heading {
        padding-right: 13px;
    }
}

@media only screen and (max-width: 320px) {
    .container.container2 .heading {
        padding-right: 10px;
    }
}

.container-fluid {
    padding: 0 var(--containerfluid);
    display: block;
    margin: 0 auto;
}

.social-icons {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

h1 {
    font-size: 64px;
    line-height: 1.05;
}

@media only screen and (max-width: 1024px) {
    h1 {
        font-size: 58px;
    }
}

@media only screen and (max-width: 991px) {
    h1 {
        font-size: 54px;
    }
}

@media only screen and (max-width: 767px) {
    h1 {
        font-size: 48px;
    }
}

h2 {
    font-size: 54px;
    line-height: 1.2;
}

h3 {
    font-size: 48px;
    line-height: 1.2;
}

.heading:has(h2~h6) h3,
.heading:has(h2~h6) h2,
.heading:has(h3~h6) h3,
.heading:has(h3~h6) h2,
.heading:has(h2~h5) h3,
.heading:has(h2~h5) h2,
.heading:has(h3~h5) h3,
.heading:has(h3~h5) h2,
.heading:has(h2~p) h3,
.heading:has(h2~p) h2,
.heading:has(h3~p) h3,
.heading:has(h3~p) h2 {
    margin-bottom: 8px;
}

.heading h3,
.heading h2 {
    font-size: 48px;
    line-height: 1.25;
    color: var(--black);
    font-family: "Poppins";
}

.heading h3 span,
.heading h2 span {
    color: var(--primary);
}

.heading h3 em,
.heading h2 em {
    font-style: normal;
    font-family: "Silver South Script";
}

.heading h6 {
    font-size: 18px;
    line-height: 1.34;
    font-weight: 500;
}

.heading h5 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.29;
}

.heading:not(.c-white) h6,
.heading:not(.c-white) p {
    color: var(--text);
}

.heading.lh-1 h3,
.heading.lh-1 h2 {
    line-height: 1;
}

.heading.h-medium h2,
.heading.h-medium h3 {
    font-size: 36px;
}

@media only screen and (max-width: 991px) {
    .heading.h-medium h2,
    .heading.h-medium h3 {
        font-size: 30px;
    }
}

@media only screen and (max-width: 675px) {
    .heading.h-medium h2,
    .heading.h-medium h3 {
        font-size: 22px;
    }
}

.heading.h-small h2,
.heading.h-small h3 {
    font-size: 28px;
}

@media only screen and (max-width: 675px) {
    .heading.h-small h2,
    .heading.h-small h3 {
        font-size: 22px;
        text-align: center;
    }
}

.heading.f-medium h2,
.heading.f-medium h3 {
    font-weight: 500;
}

.heading.f-semibold h2,
.heading.f-semibold h3 {
    font-weight: 600;
}

.heading.c-white>*:not(.btn) {
    color: var(--white);
}

.heading.c-black-light h2,
.heading.c-black-light h3 {
    color: var(--black-light);
}

h4 {
    font-size: 36px;
    line-height: 1.28;
}

h5 {
    font-size: 24px;
    line-height: 1.167;
}

@media only screen and (max-width: 1152px) {
    h5 {
        font-size: 22px;
    }
}

@media only screen and (max-width: 675px) {
    h5 {
        font-size: 20px;
    }
}

h6 {
    font-size: 20px;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-uppercase {
    text-transform: uppercase;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

.justify-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.inline-flex {
    --gap: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0 var(--gap);
}

img {
    max-width: 100%;
}

button,
select {
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
}

input {
    font-family: inherit;
    font-size: inherit;
    border-radius: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

video {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

button {
    border: none;
    background: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

.tab-nav {
    cursor: default;
}

.tab-nav [data-tab] {
    cursor: pointer;
    caret-color: transparent;
}

.tab-nav-content {
    position: relative;
}

.tab-nav-content .tabs:not(.active) {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.item-md {
    position: relative;
    display: block;
    position: relative;
}

.item-md::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background: none;
}

.item-md::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background: none;
}

.item-md::before,
.item-md::after {
    z-index: 1;
}

.item-md::after {
    content: none;
}

.item-md figure,
.item-md .figure {
    display: block;
    overflow: hidden;
    line-height: 0;
    height: 100%;
}

.item-md figure img,
.item-md figure video,
.item-md figure iframe,
.item-md .figure img,
.item-md .figure video,
.item-md .figure iframe {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: 0.5s ease;
}

.item-md figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
}

.item-md .link-md {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}

.item-md.center-item figcaption {
    bottom: auto;
    top: 50%;
    translate: 0 -50%;
}

.overlay {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 5;
    opacity: 0;
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(100%);
    transition: 0s ease 0.5s, opacity 0.5s ease;
    cursor: pointer;
}

@media only screen and (max-width: 991px) {
    .overlay {
        z-index: 2;
    }
}

@media only screen and (max-width: 675px) {
    .overlay {
        display: none;
    }
}

.overlay.is-open {
    transition: opacity 1s ease;
    opacity: 1;
    transform: translateY(0%);
}

.btn {
    --height: 40px;
    --padding: 27px;
    display: inline-flex;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: var(--height);
    line-height: var(--height);
    padding: 0 var(--padding);
    overflow: hidden;
    background: var(--primary);
    color: var(--white);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: 0.5s ease;
    caret-color: transparent;
    border: 1px solid var(--primary);
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border-radius: 5px;
    font-weight: 500;
    z-index: 1;
}

@media only screen and (min-width: 675px) {
    .btn:hover:not(.disabled-btn,
    .btn-no-hover) {
        background: none;
        color: var(--primary);
    }
}

.btn.btn-border-primary {
    background: none;
    border-color: var(--primary);
    color: var(--primary);
}

@media only screen and (min-width: 675px) {
    .btn.btn-border-primary:not(.disabled-btn,
    .btn-no-hover):hover {
        border-color: var(--primary);
        background: var(--primary);
        color: var(--white);
    }
}

@media only screen and (min-width: 675px) {
    .btn.btn-border-primary:not(.disabled-btn,
    .btn-no-hover):hover path {
        fill: var(--white);
    }
}

.btn.btn-border-white {
    background: none;
    border-color: var(--white);
    color: var(--white);
}

@media only screen and (min-width: 675px) {
    .btn.btn-border-white:not(.disabled-btn,
    .btn-no-hover):hover {
        border-color: var(--white);
        background: var(--white);
        color: var(--black);
    }
}

@media only screen and (min-width: 675px) {
    .btn.btn-border-white:not(.disabled-btn,
    .btn-no-hover):hover path {
        fill: var(--black);
    }
}

.btn.btn-border-gray {
    background: none;
    border-color: var(--text);
    color: var(--text);
}

@media only screen and (min-width: 675px) {
    .btn.btn-border-gray:not(.disabled-btn,
    .btn-no-hover):hover {
        border-color: var(--primary);
        background: var(--primary);
        color: var(--white);
    }
}

@media only screen and (min-width: 675px) {
    .btn.btn-border-gray:not(.disabled-btn,
    .btn-no-hover):hover path[stroke] {
        stroke: var(--white);
    }
}

@media only screen and (min-width: 675px) {
    .btn.btn-border-gray:not(.disabled-btn,
    .btn-no-hover):hover path[fill] {
        fill: var(--white);
    }
}

.btn.btn-green {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

@media only screen and (min-width: 675px) {
    .btn.btn-green:not(.disabled-btn,
    .btn-no-hover):hover {
        background: none;
        color: var(--green);
    }
}

.btn.btn-border-black {
    background: none;
    border-color: var(--black);
    color: var(--black);
}

@media only screen and (min-width: 675px) {
    .btn.btn-border-black:not(.disabled-btn,
    .btn-no-hover):hover {
        border-color: var(--black);
        background: var(--black);
        color: var(--white);
    }
}

@media only screen and (min-width: 675px) {
    .btn.btn-border-black:not(.disabled-btn,
    .btn-no-hover):hover path[stroke] {
        stroke: var(--white);
    }
}

@media only screen and (min-width: 675px) {
    .btn.btn-border-black:not(.disabled-btn,
    .btn-no-hover):hover path[fill] {
        fill: var(--white);
    }
}

.btn.btn-white {
    background: var(--white);
    border-color: var(--white);
    color: var(--black);
}

@media only screen and (min-width: 675px) {
    .btn.btn-white:not(.disabled-btn,
    .btn-no-hover):hover {
        background: var(--primary);
        border-color: var(--primary);
        color: var(--white);
    }
}

@media only screen and (min-width: 675px) {
    .btn.btn-white:not(.disabled-btn,
    .btn-no-hover).hover-border:hover {
        border-color: var(--white);
        color: var(--white);
        background: none;
    }
}

.btn.btn-shadow {
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
}

.btn.btn-wide {
    --padding: 40px;
}

.btn.btn-medium {
    --height: 36px;
    --padding: 16px;
    font-size: 14px;
}

.btn.btn-small {
    --height: 31px;
    font-size: 14px;
}

.btn.w-100 {
    width: 100%;
}

.btn.box {
    --padding: 0px !important;
    width: var(--height);
}

.btn.btn-btn {
    border-radius: 5px;
}

.model {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 7;
    background: var(--white);
    background-position: 0% 80%;
    background-size: 75%;
    max-width: 435px;
    width: 100%;
}

.model .close {
    cursor: pointer;
}

.model .close:not(.btn,
.close-video,
.not-ab) {
    position: absolute;
    top: 0;
    right: 0;
    top: 25px;
    right: 25px;
    line-height: 0;
}

@media only screen and (max-width: 520px) {
    .model .close:not(.btn,
    .close-video,
    .not-ab) {
        top: 20px;
        right: 20px;
    }
}

.model .close:not(.btn,
.close-video,
.not-ab) path {
    stroke: var(--black);
}

.form-grid {
    --item: 1;
    --gaplr: 30px;
    --gaptb: 32px;
    display: grid;
    grid-template-columns: repeat(var(--item), calc((100% - var(--gaplr) * (var(--item) - 1)) / var(--item)));
    gap: var(--gaptb) var(--gaplr);
}

.form-grid .full {
    grid-column: span var(--item);
}

.swiper-nav {
    line-height: 0;
}

.swiper-nav:has(.swiper-button-lock) {
    display: none !important;
}

.swiper-nav.hide-btn-no-loop .swiper-prev.swiper-button-disabled,
.swiper-nav.hide-btn-no-loop .swiper-next.swiper-button-disabled {
    opacity: 0;
    pointer-events: none;
}

.swiper-nav.swiper-group {
    display: flex;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
    gap: 11px;
}

.swiper-nav.center-full {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.swiper-nav.center-full .swiper-prev,
.swiper-nav.center-full .swiper-next {
    pointer-events: all;
    -webkit-user-select: auto;
    -moz-user-select: auto;
    user-select: auto;
}

.swiper-nav.icon-width-auto .swiper-next svg,
.swiper-nav.icon-width-auto .swiper-prev svg {
    width: auto;
    height: auto;
}

.swiper-prev svg,
.swiper-prev img {
    transform: scaleX(-1);
}

.swiper-prev,
.swiper-next {
    --size: 45px;
    height: var(--size);
    width: var(--size);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border: 1px solid var(--primary);
    transition: 0.5s ease;
}

.swiper-prev.swiper-btn-medium,
.swiper-next.swiper-btn-medium {
    --size: 35px;
}

.swiper-prev:not(.no-background) path,
.swiper-next:not(.no-background) path {
    fill: var(--white);
}

@media only screen and (min-width: 675px) {
    .swiper-prev:hover:not(.swiper-button-disabled,
    .no-background),
    .swiper-next:hover:not(.swiper-button-disabled,
    .no-background) {
        background: var(--white);
        border-color: var(--white);
    }
}

@media only screen and (min-width: 675px) {
    .swiper-prev:hover:not(.swiper-button-disabled,
    .no-background) path,
    .swiper-next:hover:not(.swiper-button-disabled,
    .no-background) path {
        fill: var(--black);
    }
}

.swiper-prev.no-background,
.swiper-next.no-background {
    height: auto;
    width: auto;
    display: initial;
    background: none;
    border: none;
    line-height: 0;
}

.swiper-prev.no-background:hover,
.swiper-next.no-background:hover {
    background: none;
}

.swiper-prev.has-shadow,
.swiper-next.has-shadow {
    box-shadow: 0px 1px 3px 1px rgba(60, 64, 67, 0.1490196078), 0px 1px 2px 0px rgba(60, 64, 67, 0.3019607843);
}

.swiper-prev.white,
.swiper-next.white {
    background: var(--white);
    border-color: var(--white);
}

.swiper-prev.white path,
.swiper-next.white path {
    fill: var(--black);
}

@media only screen and (min-width: 675px) {
    .swiper-prev.white:hover:not(.swiper-button-disabled),
    .swiper-next.white:hover:not(.swiper-button-disabled) {
        background: var(--black);
        border-color: var(--black);
    }
}

@media only screen and (min-width: 675px) {
    .swiper-prev.white:hover:not(.swiper-button-disabled) path,
    .swiper-next.white:hover:not(.swiper-button-disabled) path {
        fill: var(--white);
    }
}

.swiper-prev.primary-border,
.swiper-next.primary-border {
    border-color: var(--primary);
    background: none;
}

.swiper-prev.primary-border path,
.swiper-next.primary-border path {
    fill: var(--primary);
}

@media only screen and (min-width: 675px) {
    .swiper-prev.primary-border:hover:not(.swiper-button-disabled),
    .swiper-next.primary-border:hover:not(.swiper-button-disabled) {
        background: var(--primary);
    }
}

@media only screen and (min-width: 675px) {
    .swiper-prev.primary-border:hover:not(.swiper-button-disabled) path,
    .swiper-next.primary-border:hover:not(.swiper-button-disabled) path {
        fill: var(--white);
    }
}

.swiper-prev.white-border,
.swiper-next.white-border {
    border-color: var(--white);
    background: none;
}

.swiper-prev.white-border path,
.swiper-next.white-border path {
    fill: var(--white);
}

@media only screen and (min-width: 675px) {
    .swiper-prev.white-border:hover:not(.swiper-button-disabled),
    .swiper-next.white-border:hover:not(.swiper-button-disabled) {
        background: var(--white);
    }
}

@media only screen and (min-width: 675px) {
    .swiper-prev.white-border:hover:not(.swiper-button-disabled) path,
    .swiper-next.white-border:hover:not(.swiper-button-disabled) path {
        fill: var(--black);
    }
}

.swiper-prev.gray-border,
.swiper-next.gray-border {
    border-color: #828282;
    background: none;
}

.swiper-prev.gray-border path,
.swiper-next.gray-border path {
    fill: #828282;
}

@media only screen and (min-width: 675px) {
    .swiper-prev.gray-border:hover:not(.swiper-button-disabled),
    .swiper-next.gray-border:hover:not(.swiper-button-disabled) {
        background: var(--primary);
        border-color: var(--primary);
    }
}

@media only screen and (min-width: 675px) {
    .swiper-prev.gray-border:hover:not(.swiper-button-disabled) path,
    .swiper-next.gray-border:hover:not(.swiper-button-disabled) path {
        fill: var(--white);
    }
}

.swiper-prev.black-border,
.swiper-next.black-border {
    border-color: var(--black);
    background: none;
}

.swiper-prev.black-border path,
.swiper-next.black-border path {
    fill: var(--black);
}

@media only screen and (min-width: 675px) {
    .swiper-prev.black-border:hover:not(.swiper-button-disabled),
    .swiper-next.black-border:hover:not(.swiper-button-disabled) {
        background: var(--black);
        border-color: var(--black);
    }
}

@media only screen and (min-width: 675px) {
    .swiper-prev.black-border:hover:not(.swiper-button-disabled) path,
    .swiper-next.black-border:hover:not(.swiper-button-disabled) path {
        fill: var(--white);
    }
}

.swiper-prev.swiper-btn-large,
.swiper-next.swiper-btn-large {
    --size: 59px;
}

@media only screen and (max-width: 991px) {
    .swiper-prev.swiper-btn-large,
    .swiper-next.swiper-btn-large {
        --size: 48px;
    }
}

.swiper-prev.swiper-button-disabled,
.swiper-next.swiper-button-disabled {
    cursor: no-drop;
    opacity: 0.4;
}

.swiper-prev.swiper-button-lock,
.swiper-next.swiper-button-lock {
    display: none !important;
}

.play-btn {
    --btnsize: 51px;
    --border: 1px;
    --bordercolor: var(--white);
    --playbtncolor: var(--white);
    height: var(--btnsize);
    width: var(--btnsize);
    border-radius: 50%;
    border: var(--border) solid var(--bordercolor);
    position: relative;
    background: none;
}

@media only screen and (max-width: 1024px) {
    .play-btn {
        --btnsize: 50px;
    }
}

@media only screen and (max-width: 675px) {
    .play-btn {
        --btnsize: 45px;
        --border: 1px;
    }
}

.play-btn::before {
    width: 100%;
    height: 100%;
    top: 50%;
    right: 0;
    bottom: 0;
    left: 50%;
    position: absolute;
    content: "";
    transform: translateX(-50%) translateY(-50%);
    background: var(--bordercolor);
    border-radius: 50%;
    display: block;
    animation: pulse-border 1500ms ease-out infinite;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 0.5;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.play-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 0;
    height: 0;
    border-top: calc(var(--btnsize) / 8) solid transparent;
    border-bottom: calc(var(--btnsize) / 8) solid transparent;
    border-left: calc(var(--btnsize) / 5.6) solid var(--playbtncolor);
}

.career-gallery-slider .swiper-wrapper {
    height: auto !important;
}

.career-gallery-slider .swiper-nav.center-full {
    max-width: 54% !important;
}

.website-content p {
    margin-bottom: 14px !important;
    text-align: left !important;
}

.website-content> :first-child {
    margin-top: 0 !important;
}

.website-content> :last-child {
    margin-bottom: 0 !important;
}

.website-content h1 {
    font-size: 36px;
    margin-bottom: 45px;
    text-align: center;
    font-family: "Poppins";
    font-weight: 600;
}

@media only screen and (max-width: 675px) {
    .website-content h1 {
        font-size: 34px;
    }
}

@media only screen and (max-width: 520px) {
    .website-content h1 {
        font-size: 30px;
        font-weight: bold;
    }
}

.website-content h2 {
    font-size: 30px;
    font-weight: 600;
}

@media only screen and (max-width: 675px) {
    .website-content h2 {
        font-size: 24px;
    }
}

.website-content h3 {
    font-size: 28px;
    line-height: 1.21;
    font-weight: 500;
}

@media only screen and (max-width: 675px) {
    .website-content h3 {
        font-size: 22px;
    }
}

.website-content h4 {
    font-size: 24px;
    font-weight: 500;
}

@media only screen and (max-width: 675px) {
    .website-content h4 {
        font-size: 20px;
    }
}

.website-content h5 {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 500;
}

@media only screen and (max-width: 675px) {
    .website-content h5 {
        font-size: 18px;
    }
}

.website-content h6 {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 500;
}

.website-content h2,
.website-content h3,
.website-content h4 {
    margin: 40px 0 18px;
}

.website-content h5,
.website-content h6 {
    margin: 22px 0 18px;
}

.website-content p,
.website-content li {
    color: var(--text);
    text-align: justify;
    -webkit-hyphens: auto;
    hyphens: auto;
}

@media only screen and (max-width: 520px) {
    .website-content p,
    .website-content li {
        font-size: 15px;
    }
}

.website-content p b,
.website-content li b {
    font-weight: 600;
    color: var(--black);
}

.website-content a {
    color: var(--black);
}

.website-content a:hover {
    text-decoration: underline;
}

.website-content p,
.website-content ul {
    margin-bottom: 30px;
}

.website-content ul {
    padding-left: 18px;
}

@media only screen and (max-width: 675px) {
    .website-content ul {
        padding-left: 10px;
    }
}

.website-content ul li {
    position: relative;
    padding-left: 28px;
}

@media only screen and (max-width: 675px) {
    .website-content ul li {
        padding-left: 20px;
    }
}

.website-content ul li:not(:last-child) {
    margin-bottom: 6px;
}

.website-content ul li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 10px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--primary);
}

.website-content.website-content-medium h2,
.website-content.website-content-medium h3,
.website-content.website-content-medium h4 {
    margin: 20px 0 18px;
    font-size: 20px;
    font-weight: 500;
}

.website-content.website-content-medium h5,
.website-content.website-content-medium h6 {
    font-size: 18px;
    font-weight: 500;
}

.website-content.website-content-medium p,
.website-content.website-content-medium ul {
    margin-bottom: 20px;
}

[data-video],
[data-model],
[data-scrollTo] {
    cursor: pointer;
}

.read-more {
    --arrowsize: 16px;
    --space: 11px;
    font-weight: 500;
    color: var(--primary);
    background-image: url(../../icon/arrow-down-primary.svg);
    background-repeat: no-repeat;
    background-position-y: 50%;
    background-position-x: 100%;
    background-position: 100% 50%;
    background-size: var(--arrowsize) auto;
    padding-right: calc(var(--arrowsize) + var(--space));
    transition: color 0.5s ease;
    margin: 10px 0 0;
}

.read-more.active {
    background-image: url(../../icon/arrow-up-primary.png);
}

.vec-car-bg {
    background-color: var(--gray);
    padding-bottom: 155px;
    background-image: url(../../images/vector-6.svg);
    background-repeat: repeat-x;
    background-position: bottom left;
    position: relative;
    --carsize: 71px;
    --carspeed: 10s;
}

.vec-car-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background: url(../../icon/car-1.svg);
}

.vec-car-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background: url(../../icon/car-2.svg);
}

@media only screen and (max-width: 767px) {
    .vec-car-bg {
        --carsize: 50px;
    }
}

@media only screen and (max-width: 675px) {
    .vec-car-bg {
        --carsize: 40px;
        background-repeat: no-repeat;
        background-size: 200% auto;
        padding-bottom: 125px;
    }
}

@media only screen and (max-width: 520px) {
    .vec-car-bg {
        background-size: 315% auto;
    }
}

.vec-car-bg.background2 {
    background: url(../../images/vector-6.svg), var(--gradient-a);
    background-repeat: repeat-x;
    background-position: bottom left;
}

@media only screen and (max-width: 675px) {
    .vec-car-bg.background2 {
        background-repeat: no-repeat;
        background-size: 200% auto;
    }
}

@media only screen and (max-width: 520px) {
    .vec-car-bg.background2 {
        background-size: 315% auto;
    }
}

.vec-car-bg::before,
.vec-car-bg::after {
    z-index: 0;
    background-repeat: no-repeat;
    background-size: var(--carsize);
}

.vec-car-bg::before {
    background-position-x: calc(var(--carsize) * -1);
    background-position-y: calc(100% - 28px);
    animation: animatedBackground1 var(--carspeed) linear infinite;
}

@media only screen and (max-width: 991px) {
    .vec-car-bg::before {
        background-position-y: calc(100% - 20px);
    }
}

@media only screen and (max-width: 520px) {
    .vec-car-bg::before {
        background-position-y: calc(100% - 25px);
    }
}

@keyframes animatedBackground1 {
    from {
        background-position-x: calc(var(--carsize) * -1);
    }
    to {
        background-position-x: calc(100% + var(--carsize));
    }
}

.vec-car-bg::after {
    background-position-x: calc(100% + var(--carsize));
    background-position-y: calc(100% - 8px);
    animation: animatedBackground2 var(--carspeed) linear infinite;
}

@keyframes animatedBackground2 {
    from {
        background-position-x: calc(100% + var(--carsize));
    }
    to {
        background-position-x: calc(var(--carsize) * -1);
    }
}

.ico-sys {
    -webkit-mask-size: 100%;
    mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    aspect-ratio: 1;
    line-height: 0;
}

.ico-sys.ico-sys2 {
    position: relative;
    -webkit-mask-image: none;
    mask-image: none;
}

.ico-sys.ico-sys2::after {
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 100%;
    width: 100%;
}

.ico-sys.ico-sys2 video {
    -webkit-mask-size: 100%;
    mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.ico-sys video {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.search-filter-wrap h1 {
    /* max-width: 320px; */
    margin-bottom: 24px;
}

.search-filter-wrap .search-filter {
    box-shadow: 0px 1px 3px 4px rgba(0, 0, 0, 0.0196078431);
    max-width: 850px;
    border-radius: 10px;
    background: var(--white);
    margin: 0 auto;
}

@media only screen and (max-width: 1152px) {
    .search-filter-wrap .search-filter {
        max-width: 620px;
    }
}

@media only screen and (max-width: 991px) {
    .search-filter-wrap .search-filter {
        max-width: 80%;
    }
}

@media only screen and (max-width: 768px) {
    .search-filter-wrap .search-filter {
        max-width: 95%;
    }
}

@media only screen and (max-width: 675px) {
    .search-filter-wrap .search-filter {
        min-height: 237px;
        border-radius: 0;
    }
}

.search-filter-wrap .search-filter .form {
    display: flex;
    flex-wrap: wrap;
    --inputsize: 62px;
    --paddingleftright: 20px;
    --labelfontbefore: 14px;
}

.search-filter-wrap .search-filter .form .form-group {
    flex: 0 1 auto;
}

@media only screen and (max-width: 675px) {
    .search-filter-wrap .search-filter .form .form-group {
        flex: 0 1 100%;
    }
}

.search-filter-wrap .search-filter .form .form-group::before,
.search-filter-wrap .search-filter .form .form-group::after {
    display: none;
}

.search-filter-wrap .search-filter .form .form-group.location_select {
    --iconsize: 12px;
    --iconurl: var(--iconpath);
    --iconspace: 8px;
}

.search-filter-wrap .search-filter .form .form-group.location_select .custom-select .list {
    right: auto;
    width: 360px;
}

.search-filter-wrap .search-filter .form .form-group:not(:has(select)) {
    flex: 1;
}

.search-filter-wrap .search-filter .form .form-group:has(select) {
    max-width: 180px;
    border-right: 1px solid #F4F3F3;
}

@media only screen and (max-width: 675px) {
    .search-filter-wrap .search-filter .form .form-group:has(select) {
        max-width: 100%;
        border-bottom: 1px solid #f1f1f1;
    }
}

.search-filter-wrap .search-filter .form .form-group:has(input) {
    flex: 1;
}

.search-filter-wrap .search-filter .form .form-group:has(.btn) {
    flex: 0;
    display: flex;
    align-items: center;
    padding-right: 9px;
}

@media only screen and (max-width: 675px) {
    .search-filter-wrap .search-filter .form .form-group:has(.btn) {
        flex: 0 1 100%;
        padding: 12px;
        padding-top: 0;
    }
}

.search-filter-wrap .search-filter .form .form-group input {
    font-size: 14px;
}

.search-filter-wrap .search-filter .form .form-group input:placeholder {
    color: #A6A5A5;
}

.search-filter-wrap .search-filter .form .btn {
    --padding: 16px;
}

@media only screen and (max-width: 675px) {
    .search-filter-wrap .search-filter .form .btn {
        width: 100%;
    }
}

.mt-hdr {
    margin-top: var(--headerheight);
}

.banner {
    position: relative;
}

.banner:not(.banner-banner) {
    position: relative;
}

.banner:not(.banner-banner)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background: none;
}

.banner:not(.banner-banner)::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgb(0, 0, 0) 100%);
}

.banner.center-banner .banner-wrapper {
    bottom: 50%;
    translate: 0 50%;
}

.banner .bg {
    line-height: 0;
    height: calc(100vh - var(--headerheight));
}

@media only screen and (max-width: 1152px) {
    .banner .bg {
        height: 500px;
    }
}

@media only screen and (max-width: 675px) {
    .banner .bg {
        height: 345px;
    }
}

.banner .bg video,
.banner .bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.banner .banner-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 15%;
    z-index: 3;
}

@media only screen and (max-width: 768px) {
    .banner .content {
        text-align: center !important;
    }
}

.banner .content.content-white>*:not(.btn) {
    color: var(--white);
}

.banner .content.ttl-m h1 {
    font-size: 36px;
}

.banner .content.f-semibold h1 {
    font-weight: 600;
}

.banner h1 {
    font-size: 36px;
    line-height: 1.12;
    margin-bottom: 15px;
    font-family: "Poppins";
    font-weight: 600;
}

@media only screen and (max-width: 675px) {
    .banner h1 {
        font-size: 26px;
    }
}

@media only screen and (max-width: 345px) {
    .banner h1 {
        font-size: 24px;
    }
}

.banner h6 {
    font-size: 18px;
    line-height: 1.34;
    color: var(--text);
    margin-top: 12px;
    font-weight: 500;
}

@media only screen and (max-width: 675px) {
    .banner h6 {
        font-size: 16px;
    }
}

@media only screen and (max-width: 345px) {
    .banner h6 {
        font-size: 14px;
    }
}

.banner h5 {
    font-size: 20px;
    line-height: 1.5;
    color: var(--text);
    margin-bottom: 10px;
}

@media only screen and (max-width: 675px) {
    .banner h5 {
        font-size: 16px;
    }
}

.swiper-pagination-bullets {
    --swiper-pagination-bullet-size: 13px;
    --swiper-pagination-color: var(--primary);
}

.btn-div-wrap>*:not(:last-child) {
    margin-right: 20px;
}

@media only screen and (max-width: 675px) {
    .btn-div-wrap>*:not(:last-child) {
        margin-right: 5px;
    }
}

@media only screen and (max-width: 675px) {
    .btn-div-wrap .btn {
        --padding: 10px;
    }
}

.btn.disabled-btn {
    opacity: 0.4;
    cursor: no-drop;
}

.common-grid-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 44px 25px;
}

@media only screen and (max-width: 991px) {
    .common-grid-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 675px) {
    .common-grid-wrap {
        grid-template-columns: 100%;
        grid-gap: 15px;
    }
}

.swiper-pagination-fraction {
    font-family: "Poppins";
    font-size: 18px;
    color: var(--primary);
    font-weight: 600;
    line-height: 1.263;
    width: 50px;
    text-align: center;
}

.swiper-pagination-fraction span {
    text-align: center;
}

.slider-section .upper-sec {
    position: relative;
    margin-bottom: 50px;
    margin-top: 40px;
}

@media only screen and (max-width: 540px) {
    .slider-section .upper-sec {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}

.slider-section .upper-sec .vew-all-btn {
    margin-right: 14px;
}

.slider-section .upper-sec .vew-all-btn:hover {
    color: var(--black);
}

.slider-section .upper-sec .slider-nav {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
}

@media only screen and (max-width: 540px) {
    .slider-section .upper-sec .slider-nav {
        display: none;
    }
}

.slider-section .upper-sec .slider-nav .swiper-prev,
.slider-section .upper-sec .slider-nav .swiper-next {
    --size: 40px;
}

.property-col {
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.0392156863);
    border: 1px solid #C9C9C9;
    border-radius: 5px;
    overflow: hidden;
    min-height: 358px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.property-col:has(.figure:is(a):hover,
.figcaption .ttl:is(a):hover,
.figcaption .dtl-btn:is(a):hover) .figure::before {
    animation: shine 0.4s linear;
}

.property-col:has(.figure:is(a):hover,
.figcaption .ttl:is(a):hover,
.figcaption .dtl-btn:is(a):hover) .figure img {
    transform: scale(1.04);
}

.property-col:has(.figure:is(a):hover,
.figcaption .ttl:is(a):hover,
.figcaption .dtl-btn:is(a):hover) .figcaption .ttl {
    color: var(--primary);
}

.property-col:has(.figure:is(a):hover,
.figcaption .ttl:is(a):hover,
.figcaption .dtl-btn:is(a):hover) .figcaption .dtl-btn {
    background: none;
    color: var(--primary);
}

.property-col .figure {
    line-height: 0;
    display: block;
    overflow: hidden;
    position: relative;
    flex: 0 1 auto;
    height: 190px;
}

.property-col .figure::before {
    content: "";
    display: block;
    width: 0px;
    height: 86%;
    position: absolute;
    top: 7%;
    left: 0%;
    opacity: 0;
    background: white;
    box-shadow: 0 0 55px 12px white;
    transform: skewX(-20deg);
    z-index: 1;
}

.property-col .figure:hover::before {
    animation: shine 0.4s linear;
    animation-fill-mode: none;
}

.property-col .figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: 0.5s ease;
    transform-origin: top;
}

.property-col .figcaption {
    padding: 15px;
    background: var(--white);
    flex: 1;
}

@media only screen and (max-width: 1230px) {
    .property-col .figcaption {
        padding: 12px 10px;
    }
}

.property-col .figcaption .ttl {
    display: block;
    color: var(--black);
    font-size: 18px;
    line-height: 1.3;
    font-weight: 500;
    margin-bottom: 5px;
}

@media only screen and (max-width: 520px) {
    .property-col .figcaption .ttl {
        font-size: 16px;
    }
}

.property-col .figcaption .lctn {
    font-size: 14px;
    color: var(--text);
}

@media only screen and (max-width: 520px) {
    .property-col .figcaption .lctn {
        font-size: 12px;
    }
}

.property-col .figcaption .btm-wrp {
    margin-top: 16px;
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.property-col .figcaption .btm-wrp .fer {
    flex: 1;
}

.property-col .figcaption .btm-wrp .fer .prc {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
}

@media only screen and (max-width: 520px) {
    .property-col .figcaption .btm-wrp .fer .prc {
        font-size: 13px;
    }
}

.property-col .figcaption .btm-wrp .fer .apr {
    color: #A0A0A0;
    font-size: 12px;
    line-height: 18px;
    margin-top: 4px;
}

@media only screen and (max-width: 520px) {
    .property-col .figcaption .btm-wrp .fer .apr {
        font-size: 10px;
        margin-top: 2px;
    }
}

.property-col .figcaption .btm-wrp .btn-wvg {
    display: flex;
    gap: 4px;
}

.property-col .figcaption .btm-wrp .btn-wvg .btn {
    --padding: 10px;
    --height: 35px;
    font-size: 13px;
}

@media only screen and (max-width: 520px) {
    .property-col .figcaption .btm-wrp .btn-wvg .btn {
        font-size: 12px;
    }
}

.property-col .figcaption .btm-wrp .btn-wvg .wtsp-btn {
    width: 45px;
    background: #F4F4F4;
    border-color: #F4F4F4;
}

.property-col .figcaption .btm-wrp .btn-wvg .wtsp-btn svg {
    width: 18px;
    height: auto;
}

.property-col .figcaption .btm-wrp .btn-wvg .wtsp-btn:hover {
    background: var(--green);
    border-color: var(--green);
}

.property-col .figcaption .btm-wrp .btn-wvg .wtsp-btn:hover path {
    fill: var(--white);
}

.team-col {
    border-radius: 10px;
    overflow: hidden;
}

.team-col::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 65.28%, rgba(0, 0, 0, 0.53) 86.73%);
}

.team-col:hover figure img {
    transform: scale(1.05);
}

.team-col figcaption {
    padding: 0 32px 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}

@media only screen and (max-width: 991px) {
    .team-col figcaption {
        padding: 0 25px 25px;
    }
}

@media only screen and (max-width: 767px) {
    .team-col figcaption {
        padding: 0 15px 25px;
    }
}

.team-col figcaption .inf {
    flex: 1;
    padding-right: 1rem;
    color: var(--white);
}

.team-col figcaption .inf h6 {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 4px;
}

@media only screen and (max-width: 675px) {
    .team-col figcaption .inf h6 {
        font-size: 18px;
    }
}

.team-col figcaption .inf p {
    font-size: 14px;
    line-height: 1.3;
}

.team-col figcaption .play-btn {
    flex: 0 1 auto;
}

@media only screen and (max-width: 767px) {
    .team-col figcaption .play-btn {
        --btnsize: 38px;
    }
}

.product-not-found {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1;
}

.product-not-found.not-found2 {
    position: unset;
}

.product-not-found .nt-fnd-wrp {
    text-align: center;
}

.product-not-found .nt-fnd-wrp .ico {
    width: 120px;
    margin-left: auto;
    margin-right: auto;
    filter: hue-rotate(469deg);
}

.product-not-found .nt-fnd-wrp p {
    font-size: 24px;
    margin: 10px 0;
}

.brochure-link {
    position: fixed;
    right: 5%;
    bottom: 8%;
    translate: 5% 8%;
    z-index: 4;
    display: none;
}

@media only screen and (max-width: 768px) {
    .brochure-link {
        display: block;
    }
}

.brochure-link a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid var(--white);
    background: #00d16b;
    border-radius: 50%;
    box-shadow: 4px 2px 10px 2px rgba(0, 0, 0, 0.288235294);
}

.brochure-link a svg {
    width: 40px;
    height: 35px;
}

body:not(:has(.nav-strip)) header {
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.0588235294);
}

body:has(.nav-strip) header {
    box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.0588235294);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
    transition: 0.5s ease;
    height: var(--headerheight);
    background: var(--white);
}

header .header-wrapper {
    display: flex;
    height: 100%;
    padding: 0 var(--containerfluid);
}

header .header-wrapper .colA,
header .header-wrapper .colB {
    height: 100%;
}

header .header-wrapper .colA a.logo {
    padding: 5px;
    height: 100%;
}

header .header-wrapper .colA a.logo img {
    height: 100%;
    /* filter: brightness(0) saturate(100%) invert(7%) sepia(34%) saturate(2379%) hue-rotate(197deg) brightness(95%) contrast(103%); */
}

header .header-wrapper .colB {
    padding-left: 50px;
}

@media only screen and (max-width: 1152px) {
    header .header-wrapper .colB {
        padding-left: 30px;
    }
}

@media only screen and (max-width: 991px) {
    header .header-wrapper .colB {
        display: none;
    }
}

header .header-wrapper .colB>ul {
    height: 100%;
    display: flex;
}

header .header-wrapper .colB>ul>li {
    display: inline-flex;
    align-items: center;
    height: 100%;
    --arrowsize: 16px;
    --space: 11px;
}

header .header-wrapper .colB>ul>li:not(:last-child) {
    margin-right: 36px;
}

@media only screen and (max-width: 1152px) {
    header .header-wrapper .colB>ul>li:not(:last-child) {
        margin-right: 25px;
    }
}

header .header-wrapper .colB>ul>li>a {
    color: var(--text);
    transition: 0.5s ease;
    font-weight: 500;
}

header .header-wrapper .colB>ul>li.hasdropdown {
    position: relative;
}

header .header-wrapper .colB>ul>li.hasdropdown::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background: var(--primary);
}

header .header-wrapper .colB>ul>li.hasdropdown::after {
    top: auto;
    height: 2px;
    width: 0;
    transition: 0.5s ease;
}

header .header-wrapper .colB>ul>li.hasdropdown>a {
    text-align: center;
}

header .header-wrapper .colB>ul>li.hasdropdown>a .ico {
    line-height: 0;
    margin-bottom: 6px;
}

header .header-wrapper .colB>ul>li.hasdropdown:hover::after {
    width: 100%;
}

header .header-wrapper .colB>ul>li.hasdropdown:hover>a {
    color: var(--primary);
}

header .header-wrapper .colB>ul>li.hasdropdown:hover>a img {
    filter: brightness(0) saturate(100%) invert(7%) sepia(22%) saturate(2331%) hue-rotate(184deg) brightness(95%) contrast(98%);
}

header .header-wrapper .colB>ul>li.hasdropdown:hover>a svg path[stroke] {
    stroke: var(--primary);
}

header .header-wrapper .colB>ul>li.hasdropdown:hover>a svg path[fill] {
    fill: var(--primary);
}

header .header-wrapper .colB>ul>li.hasdropdown:hover>.drop-downmenu {
    transform: translateY(0px);
    opacity: 1;
    pointer-events: all;
    transition: 0.5s ease;
}

header .header-wrapper .colB>ul>li .drop-downmenu {
    position: absolute;
    top: 100%;
    left: -34px;
    background: var(--white);
    border-top: 1px solid #f5f5f5;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: 0s ease;
    z-index: 3;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

header .header-wrapper .colB>ul>li .drop-downmenu .col-md-wrap {
    width: 900px;
    padding: 20px 30px 20px;
}

@media only screen and (max-width: 1280px) {
    header .header-wrapper .colB>ul>li .drop-downmenu .col-md-wrap {
        width: 720px;
        padding: 20px 30px;
    }
}

@media only screen and (max-width: 1152px) {
    header .header-wrapper .colB>ul>li .drop-downmenu .col-md-wrap {
        width: 620px;
    }
}

header .header-wrapper .colB>ul>li .drop-downmenu .col-md-wrap::before {
    z-index: -1;
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 15%;
    opacity: 0.3;
}

header .header-wrapper .colB>ul>li .drop-downmenu .col-md-wrap .col-md-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 28px 20px;
}

@media only screen and (max-width: 1280px) {
    header .header-wrapper .colB>ul>li .drop-downmenu .col-md-wrap .col-md-grid {
        grid-gap: 18px 10px;
        grid-template-columns: repeat(2, 1fr);
    }
}

header .header-wrapper .colB>ul>li .drop-downmenu .col-md-wrap .btn-div {
    margin-top: 2rem;
}

header .header-wrapper .colB>ul>li .drop-downmenu .col-md-wrap .col-md {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

header .header-wrapper .colB>ul>li .drop-downmenu .col-md-wrap .col-md:nth-child(n+7) {
    display: none;
}

header .header-wrapper .colB>ul>li .drop-downmenu .col-md-wrap .col-md:has(.figure:is(a):hover,
.pt-ttl:is(a):hover) .figure img {
    opacity: 0.7;
}

header .header-wrapper .colB>ul>li .drop-downmenu .col-md-wrap .col-md:has(.figure:is(a):hover,
.pt-ttl:is(a):hover) figcaption p {
    color: var(--black);
}

header .header-wrapper .colB>ul>li .drop-downmenu .col-md-wrap .col-md:has(.figure:is(a):hover,
.pt-ttl:is(a):hover) figcaption .pt-ttl {
    color: var(--primary);
}

header .header-wrapper .colB>ul>li .drop-downmenu .col-md-wrap .col-md .figure {
    flex: 0 1 20%;
    display: block;
    line-height: 0;
    overflow: hidden;
}

header .header-wrapper .colB>ul>li .drop-downmenu .col-md-wrap .col-md .figure img {
    border-radius: 5px;
    width: 100%;
    aspect-ratio: 1;
    -o-object-fit: cover;
    object-fit: cover;
    transition: 0.5s ease;
}

header .header-wrapper .colB>ul>li .drop-downmenu .col-md-wrap .col-md figcaption {
    flex: 1;
}

header .header-wrapper .colB>ul>li .drop-downmenu .col-md-wrap .col-md figcaption p {
    color: var(--text);
    transition: 0.5s ease;
}

header .header-wrapper .colB>ul>li .drop-downmenu .col-md-wrap .col-md figcaption .lctn {
    font-size: 12px;
}

header .header-wrapper .colB>ul>li .drop-downmenu .col-md-wrap .col-md figcaption .pt-ttl {
    font-size: 14px;
    color: var(--black);
    font-weight: 500;
}

header .header-wrapper .colB>ul>li .drop-downmenu .col-md-wrap .col-md figcaption .apr {
    font-size: 10px;
}

header .header-wrapper .colC {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

header .header-wrapper .colC ul {
    height: 100%;
    display: flex;
}

header .header-wrapper .colC ul li {
    display: inline-flex;
    align-items: center;
    height: 100%;
}

header .header-wrapper .colC ul li:not(:last-child) {
    margin-right: 17px;
}

header .header-wrapper .colC ul li:has(.apex-luxe) {
    background: var(--primary);
}

@media only screen and (max-width: 767px) {
    header .header-wrapper .colC ul li:has(.cal-btn,
    .btn[data-model=".enquire-pop"]) {
        display: none;
    }
}

header .header-wrapper .colC ul li .cal-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
}

header .header-wrapper .colC ul li .cal-btn span {
    display: block;
    font-size: 12px;
    line-height: 18px;
}

header .header-wrapper .colC ul li .cal-btn p {
    font-weight: 500;
}

header .header-wrapper .colC ul li .cal-btn:hover {
    color: var(--primary);
}

header .header-wrapper .colC ul li .cal-btn:hover path {
    fill: var(--primary);
}

header .header-wrapper .colC ul li .apex-luxe {
    display: block;
    line-height: 0;
    padding: 0 13px;
}

@media only screen and (max-width: 767px) {
    header .header-wrapper .colC ul li .apex-luxe img {
        width: 53px;
    }
}

header .header-wrapper .colC ul li .btn {
    --padding: 18px;
}

header .header-wrapper .colC ul li .ham-btn {
    width: 40px;
    height: 16px;
    --color: var(--black);
    --border: 2px;
    border-top: var(--border) solid var(--color);
    border-bottom: var(--border) solid var(--color);
    transition: 0.5s ease;
    position: relative;
}

header .header-wrapper .colC ul li .ham-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background: var(--color);
}

header .header-wrapper .colC ul li .ham-btn:hover {
    --color: var(--primary);
}

header .header-wrapper .colC ul li .ham-btn::before {
    transition: 0.5s ease;
    bottom: auto;
    top: 50%;
    translate: 0 -50%;
    height: var(--border);
}

header.header-fixed,
header.header-fit {
    height: var(--headerfixed);
    transition: 0.5s ease;
    --headerpadding: 13px;
}

@media only screen and (max-width: 991px) {
    header.header-fixed,
    header.header-fit {
        --headerpadding: 18px;
    }
}

@media only screen and (max-width: 767px) {
    header.header-fixed,
    header.header-fit {
        --headerpadding: 14px;
    }
}

footer .upper-footer {
    background: var(--primary);
    padding: 14px 0;
}

@media only screen and (max-width: 991px) {
    footer .upper-footer {
        display: none;
    }
}

footer .upper-footer .flex {
    align-items: center;
}

footer .upper-footer .flex .colA {
    flex: 1;
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 675px) {
    footer .upper-footer .flex .colA {
        flex: 0 1 100%;
        max-width: 100%;
        width: 100%;
    }
}

footer .upper-footer .flex .colA .logo {
    border-right: 1px solid var(--white);
    padding: 7px 0;
    padding-right: 40px;
    margin-right: 32px;
}

footer .upper-footer .flex .colA .logo img {
    width: 115px;
}

@media only screen and (max-width: 1152px) {
    footer .upper-footer .flex .colA .logo img {
        width: 80px;
    }
}

footer .upper-footer .flex .colA ul {
    flex: 1;
}

footer .upper-footer .flex .colA ul li {
    display: inline-flex;
    vertical-align: middle;
    gap: 15px;
    transition: 0.5s ease;
}

@media only screen and (max-width: 675px) {
    footer .upper-footer .flex .colA ul li {
        display: flex;
        width: 100%;
    }
}

footer .upper-footer .flex .colA ul li:has(.inf a:hover) {
    opacity: 0.8;
}

footer .upper-footer .flex .colA ul li .ico {
    line-height: 0;
    padding-top: 5px;
}

footer .upper-footer .flex .colA ul li .inf {
    flex: 1;
    color: var(--white);
}

footer .upper-footer .flex .colA ul li .inf span {
    display: block;
    font-size: 12px;
    line-height: 1;
    margin-bottom: 4px;
}

footer .upper-footer .flex .colA ul li .inf a {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

footer .upper-footer .flex .colA ul li:not(:last-child) {
    padding-right: 1rem;
    margin-right: 1rem;
}

@media only screen and (max-width: 1152px) {
    footer .upper-footer .flex .colA ul li:not(:last-child) {
        padding-right: 0.5rem;
        margin-right: 0.5rem;
    }
}

@media only screen and (max-width: 991px) {
    footer .upper-footer .flex .colA ul li:not(:last-child) {
        padding-right: 0;
        margin-right: 0;
        border: none;
        margin-bottom: 1rem;
    }
}

@media only screen and (max-width: 675px) {
    footer .upper-footer .flex .colA ul li:not(:last-child) {
        padding-right: 0;
        margin-right: 0;
    }
}

footer .upper-footer .flex .colA ul li:last-child {
    margin-left: 8px;
}

footer .upper-footer .flex .btn-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}

footer .upper-footer .flex .social-icons {
    flex: 0 1 auto;
    text-align: right;
}

@media only screen and (max-width: 675px) {
    footer .upper-footer .flex .social-icons {
        flex: 0 1 100%;
        max-width: 100%;
        width: 100%;
        text-align: center;
        margin-top: 2rem;
    }
}

footer .upper-footer .flex .social-icons a:not(:last-child) {
    margin-right: 18px;
}

footer .middle-footer {
    padding: 40px 0 40px;
    background: linear-gradient(90deg, #FFFFFF 0%, #F4F4F4 100%);
    background-repeat: no-repeat;
    background-position: 100% 0;
    background-size: auto 100%;
}

@media only screen and (max-width: 767px) {
    footer .middle-footer {
        background-position: 100% 100%;
        background-size: 34%;
        background-position: bottom right;
        background-size: 40%;
    }
}

footer .middle-footer .flex {
    gap: 3rem;
}

@media only screen and (max-width: 1200px) {
    footer .middle-footer .flex {
        gap: 2rem;
    }
}

@media only screen and (max-width: 991px) {
    footer .middle-footer .flex {
        display: grid;
        grid-template-columns: auto auto 1fr;
    }
}

@media only screen and (max-width: 675px) {
    footer .middle-footer .flex {
        grid-template-columns: 1fr 1fr;
    }
}

footer .middle-footer .flex .col-md {
    flex: 1;
}

footer .middle-footer .flex .col-md .social-icons {
    line-height: 0;
    margin-bottom: 30px;
}

footer .middle-footer .flex .col-md .social-icons a {
    display: inline-block;
    vertical-align: middle;
}

footer .middle-footer .flex .col-md .social-icons a:not(:last-child) {
    margin-right: 12px;
}

footer .middle-footer .flex .col-md .social-icons a path {
    fill: var(--primary);
}

footer .middle-footer .flex .col-md .social-icons a:hover path {
    fill: var(--text);
}

footer .middle-footer .flex .col-md .form {
    --labelbefore: #66666699;
    --borderbefore: #66666699;
    --borderafter: var(--black);
    --gaptb: 14px;
}

footer .middle-footer .flex .col-md .form input {
    font-size: 14px;
}

footer .middle-footer .flex .col-md .form .sbmt-grp {
    margin-top: 10px;
}

footer .middle-footer .flex .col-md.quick_links,
footer .middle-footer .flex .col-md.projects_col {
    flex: 0 1 auto;
}

footer .middle-footer .flex .col-md.social-col {
    flex: 0 1 auto;
    text-align: right;
}

@media only screen and (max-width: 520px) {
    footer .middle-footer .flex .col-md.social-col {
        order: 6;
        grid-column: span 2;
        text-align: center;
        display: flex;
        gap: 1rem;
    }
}

@media only screen and (max-width: 520px) {
    footer .middle-footer .flex .col-md.social-col .social-icons {
        flex: 1;
        margin-bottom: 0;
        text-align: left;
        margin-top: 1rem;
    }
}

@media only screen and (max-width: 991px) {
    footer .middle-footer .flex .col-md.form_col {
        grid-column: span 2;
        order: 6;
    }
}

@media only screen and (max-width: 520px) {
    footer .middle-footer .flex .col-md.form_col {
        order: 5;
    }
}

@media only screen and (max-width: 520px) {
    footer .middle-footer .flex .col-md.form_col .sbmt-grp {
        text-align: center;
    }
}

footer .middle-footer .flex .col-md.contact_col {
    flex: 0 1 30%;
    padding-left: 45px;
}

@media only screen and (max-width: 991px) {
    footer .middle-footer .flex .col-md.contact_col {
        padding-left: 0;
    }
}

@media only screen and (max-width: 520px) {
    footer .middle-footer .flex .col-md.contact_col {
        grid-column: span 2;
    }
}

footer .middle-footer .flex .col-md.contact_col ul li:not(:last-child) {
    margin-bottom: 20px;
}

footer .middle-footer .flex .col-md.contact_col ul li a {
    max-width: 280px;
}

@media only screen and (max-width: 991px) {
    footer .middle-footer .flex .col-md.contact_col ul li a {
        max-width: 100%;
    }
}

footer .middle-footer .flex .col-md h6 {
    font-size: 18px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 12px;
}

footer .middle-footer .flex .col-md ul li:not(:last-child) {
    margin-bottom: 3px;
}

footer .middle-footer .flex .col-md ul li a {
    display: block;
    font-size: 14px;
    line-height: 24px;
    color: rgba(102, 102, 102, 0.6980392157);
    padding: 3px 0;
}

footer .middle-footer .flex .col-md ul li a:has(svg) {
    display: flex;
    gap: 12px;
    padding: 0;
}

footer .middle-footer .flex .col-md ul li a:has(svg) svg {
    min-width: 20px;
    margin-top: 5px;
}

footer .middle-footer .flex .col-md ul li a:has(svg) svg path {
    transition: 0.5s ease;
}

footer .middle-footer .flex .col-md ul li a:hover {
    color: var(--primary);
}

footer .middle-footer .flex .col-md ul li a:hover path[stroke] {
    stroke: var(--primary);
}

footer .middle-footer .flex .col-md ul li a:hover path[fill] {
    fill: var(--primary);
}

footer .bottom-footer {
    background: #F2F2F2;
    text-align: center;
    padding: 17px 0;
}

@media only screen and (max-width: 767px) {
    footer .bottom-footer {
        background: #f5f5f5;
        border-top: 1px solid #efefef;
        /* padding: 10px 0; */
    }
}

footer .bottom-footer p {
    color: rgba(102, 102, 102, 0.6980392157);
    font-size: 14px;
    line-height: 24px;
    text-align: center;
}

@media only screen and (max-width: 675px) {
    footer .bottom-footer p {
        font-size: 12px;
    }
}

footer .bottom-footer p span {
    display: inline-block;
    margin-left: 4px;
    border-left: 1px solid rgba(102, 102, 102, 0.6980392157);
    line-height: 1;
    padding-left: 10px;
    margin-left: 10px;
}

@media only screen and (max-width: 767px) {
    footer .bottom-footer p span {
        display: block;
        border: none;
        padding-left: 0;
        margin-left: 0;
        margin-top: 4px;
    }
}

footer .bottom-footer p img {
    display: inline-block;
    vertical-align: middle;
    margin-left: 4px;
    width: 65px;
}

.ham-pop {
    right: 0;
    max-width: 500px;
    transform: translateX(100%);
    transition: 0.5s ease;
    background: linear-gradient(180deg, #FFFFFF 70% 0%, #fff0c0 100%);
    background-size: 40% auto, 100% 100%;
    background-position: 100% 100%, 0 0;
}

.ham-pop.is-open {
    transform: translateX(0%);
}

.ham-pop .close path {
    stroke: var(--text);
    stroke-width: 2;
}

.ham-pop .model-body {
    padding: 50px 40px 30px;
    height: 100%;
    overflow-y: auto;
}

.ham-pop .model-body::-webkit-scrollbar {
    width: 3px;
    background: var(--white);
    height: 3px;
}

.ham-pop .model-body::-webkit-scrollbar-track {
    box-shadow: none;
}

.ham-pop .model-body::-webkit-scrollbar-thumb {
    background-color: #5e5e5e;
    border-radius: 8px;
}

@media only screen and (max-width: 675px) {
    .ham-pop .model-body {
        padding: 40px 25px 20px;
    }
}

@media only screen and (max-width: 520px) {
    .ham-pop .model-body {
        padding: 40px 15px 20px;
    }
}

.ham-pop .model-body .ico {
    max-width: 75px;
    width: 100%;
    margin-bottom: 22px;
    line-height: 0;
}

.ham-pop .model-body .ico img,
.ham-pop .model-body .ico svg {
    width: 100%;
    height: auto;
}

.ham-pop .model-body .nav-list>li:not(:last-child) {
    margin-bottom: 15px;
}

@media only screen and (max-width: 1366px) {
    .ham-pop .model-body .nav-list>li:not(:last-child) {
        margin-bottom: 12px;
    }
}

.ham-pop .model-body .nav-list>li>a {
    font-size: 23px;
    font-family: "Poppins";
    color: var(--primary);
    display: inline-block;
    font-weight: 500;
}

@media only screen and (max-width: 1366px) {
    .ham-pop .model-body .nav-list>li>a {
        font-size: 25px;
    }
}

.ham-pop .model-body .nav-list>li>a:hover {
    color: var(--green);
}

.ham-pop .model-body .bottom-list {
    border-top: 1px solid #ccc;
    margin-top: 2rem;
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ham-pop .model-body .bottom-list .cal-btn-ham {
    color: var(--text);
    font-weight: 600;
}

@media only screen and (max-width: 520px) {
    .ham-pop .model-body .bottom-list .cal-btn-ham {
        font-weight: 500;
    }
}

.ham-pop .model-body .bottom-list .cal-btn-ham:hover {
    color: var(--primary);
}

.ham-pop .model-body .bottom-list .social-icons a {
    display: inline-block;
    vertical-align: middle;
}

.ham-pop .model-body .bottom-list .social-icons a:not(:last-child) {
    margin-right: 15px;
}

@media only screen and (max-width: 520px) {
    .ham-pop .model-body .bottom-list .social-icons a:not(:last-child) {
        margin-right: 10px;
    }
}

.ham-pop .model-body .bottom-list .social-icons a path {
    transition: 0.5s ease;
    fill: var(--primary);
}

.ham-pop .model-body .bottom-list .social-icons a:hover path {
    fill: var(--text);
}

.enquire-pop {
    right: 0;
    transform: translateX(100%);
    transition: 0.5s ease;
    background: linear-gradient(180deg, #FFFFFF 70% 0%, #c0d5ff 100%);
    background-size: 40% auto, 100% 100%;
    background-position: 100% 100%, 0 0;
}

.enquire-pop.is-open {
    transform: translateX(0%);
}

.enquire-pop .model-body {
    padding: 60px 35px 30px;
    height: 100%;
    overflow-y: auto;
}

.enquire-pop .model-body::-webkit-scrollbar {
    width: 3px;
    background: var(--white);
    height: 3px;
}

.enquire-pop .model-body::-webkit-scrollbar-track {
    box-shadow: none;
}

.enquire-pop .model-body::-webkit-scrollbar-thumb {
    background-color: #5e5e5e;
    border-radius: 8px;
}

@media only screen and (max-width: 675px) {
    .enquire-pop .model-body {
        padding: 50px 20px 30px;
    }
}

.enquire-pop .model-body .title {
    text-align: center;
    margin-bottom: 2rem;
}

.enquire-pop .model-body .title h4 {
    font-size: 32px;
    color: var(--black);
    margin-bottom: 10px;
    font-weight: 500;
}

.enquire-pop .model-body .title p {
    color: var(--text);
    margin-top: 10px;
    line-height: 20px;
    max-width: 96%;
    text-align: center !important;
    margin: 0 auto;
}

@media only screen and (max-width: 675px) {
    .enquire-pop .model-body .title p {
        font-size: 14px;
        max-width: 260px;
    }
}

.enquire-pop .model-body .form {
    --gaptb: 15px;
}

.video-pop {
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.4784313725);
    z-index: 9;
    max-width: 100%;
    transform: translateY(100%);
    transition: 0.5s ease;
}

.video-pop.is-open {
    transform: translateY(0%);
}

.video-pop .close-video {
    position: absolute;
    bottom: calc(100% + 20px);
    top: auto;
    right: -40px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 675px) {
    .video-pop .close-video {
        right: 0;
    }
}

.video-pop .close-video:hover {
    background: var(--black);
}

.video-pop .close-video svg {
    height: 35%;
    width: 35%;
}

.video-pop .close-video path {
    stroke-width: 2;
    stroke: var(--white);
}

.video-pop .model-body {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 100%;
    max-width: 50%;
}

@media only screen and (max-width: 675px) {
    .video-pop .model-body {
        max-width: 95%;
    }
}

.video-pop .model-body iframe {
    width: 100%;
    aspect-ratio: 1.9;
    border: 2px solid var(--white);
}

.footer-strip {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    background: var(--primary);
    display: none;
}

@media only screen and (max-width: 675px) {
    .footer-strip {
        display: block;
    }
}

.footer-strip ul {
    display: flex;
    flex-wrap: wrap;
}

.footer-strip ul li {
    flex: 1;
}

.footer-strip ul li:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-strip ul li a {
    padding: 24px 0;
    display: block;
    text-align: center;
    color: var(--white);
    height: var(--footerstrip);
    line-height: var(--footerstrip);
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.footer-strip ul li a svg {
    width: 28px;
    height: 28px;
}

/*# sourceMappingURL=header.css.map */