@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: "Poppins", sans-serif; */
/* font-family: "Inter Tight", sans-serif; */

/* body,
html {
    overflow-x: hidden;
} */
/* body,html{
    width: 100%;
} */
body {
    margin: 0;
    padding: 0;
    font-family: var(--poppins-font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    font-weight: normal;
    font-style: normal;
    color: var(--body-color);
    font-size: 16px;
    line-height: 1.5;
    background-color: var(--white-color);
    overflow-x: hidden;
}

:root {
    scroll-behavior: inherit;
    --white-color: #fff;
    --black-color: #000;
    --green-color: #55882D;
    --body-color: #333333;
    --deep-green-color: #162C05;
    --olive-green-color: #204107;
    --poppins-font: "Poppins", sans-serif;
    --inter-tigth-font: "Inter Tight", sans-serif;
}

b,
strong {
    font-weight: 700;
}

p {
    margin: 0 0 22px 0;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 18px 0;
    padding: 0;
    color: var(--deep-green-color);
    font-weight: 700;
    font-family: var(--inter-tigth-font);
}

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



h1,
.h1-title {
    font-weight: 700;
    font-size: 72px;
    line-height: 1;
    letter-spacing: -0.02em;
}

h2,
.h2-title {
    font-weight: 700;
    font-size: 40px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

h3,
.h3-title {
    font-weight: 700;
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h4,
.h4-title {
    font-size: 22px;
    line-height: 1.18;
    letter-spacing: -0.02em;
}

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

}



a {
    margin: 0;
    padding: 0;
    text-decoration: none !important;
    outline: none !important;
    color: var(--body-color);
    -webkit-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(--green-color);
}

img {
    max-width: 100%;
}


input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
select {
    background-color: var(--white-color);
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 5px;
    color: var(--body-color);
    border: 1px solid #DBDBDB;
    height: 55px;
    padding: 0 20px;
    outline: none !important;
    font-size: 16px;
}

textarea {
    background-color: var(--white-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 5px;
    border: 1px solid #DBDBDB;
    padding: 14px 20px;
    width: 100%;
    color: var(--body-color);
    height: 150px;
    outline: none !important;
    width: 100%;
    resize: none;
    font-size: 16px;
}

select {
    border: 1px solid rgba(255, 255, 255, 0.7);
    width: 100%;
    padding: 0 11px;
    background: url(images/sort-down.svg) no-repeat calc(100% - 16px) center transparent;
    background-size: 18px;
    padding-right: 40px;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    font-size: 16px;
    appearance: none;
}

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

input[type="submit"] {
    background: var(--green-color);
    color: var(--white-color);
    height: 62px;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 6px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 19px;
    font-weight: 400;
    outline: none !important;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: 100%;
    line-height: 1;
}

input[type="submit"]:hover {
    background: var(--olive-green-color);
    color: var(--white-color);
}

::-webkit-input-placeholder {
    opacity: 0.7;
    color: #000;
}

:-ms-input-placeholder {
    opacity: 0.7;
    color: #000;
}

::-moz-placeholder {
    opacity: 0.7;
    color: #000;
}

:-moz-placeholder {
    opacity: 0.7;
    color: #000;
}







/* 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;
    -o-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);
    -ms-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);
    -ms-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;
    -o-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);
    -ms-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);
    -ms-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;
    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);
    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;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

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




/* navbar*/

.navbar-brand {
    padding: 0;
    margin: 0;
    width: 100%;
    display: inline-block;
    max-width: 178px;
}

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

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

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

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

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

.navbar-nav>li>a {
    color: #000;
    font-size: 16px;
    line-height: 1.2;
    position: relative;
    font-weight: normal;
}

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

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

.sub-menu {
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0;
    width: 140px;
    padding: 0;
}

.sub-menu>li>a {
    color: #000;
    display: block;
    width: 100%;
    padding: 6px 10px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
}

.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: #eab71e;
    color: #fff;
}



.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;
    z-index: 99;
    -webkit-transition: background-color 0.5s linear;
    -o-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
}

/* for push-menu end*/






.navbar-brand img {
    width: 100%;
}

.main-head {
    padding: 32px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}


.bnr-sec-main {
    position: relative;
    min-height: 900px;
    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: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 130px 0 150px;
}

.bnr-sec-main img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.bnr-sec-main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(images/bnr-overlay.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
    pointer-events: none;
}

.bnr-main-cont {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white-color);
    max-width: 974px;
    width: 100%;
    margin: 0 auto;
}

.bnr-main-cont h1 {
    color: var(--white-color);
    margin-bottom: 16px;
}

.bnr-desc strong {
    display: block;
    font-size: 35px;
    letter-spacing: -0.02em;
    font-family: var(--inter-tigth-font);
    line-height: 1.3;
    margin-bottom: 8px;
}

.bnr-desc p {
    margin-bottom: 16px;
}

.cmn-btn {
    font-size: 19px;
    color: var(--white-color);
    line-height: 1;
    padding: 21px 24px;
    border-radius: 6px;
    background-color: var(--green-color);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 340px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: capitalize;
    border: 1px solid var(--green-color);
}

.cmn-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--white-color);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: -1;
}

.cmn-btn:hover:before {
    width: 100%;
}

.cmn-btn:hover {
    color: var(--green-color);
    /* border-color: transparent; */
}

.cmn-btn.trans {
    background: transparent;
    border: 1px solid var(--white-color);
}

.bnr-btn-wrp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -4px;
}

.bnr-each-btn {
    padding: 4px;
}

.bnr-btn-wrp-outr {
    margin-top: 26px;
}

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

.comp-status-ico {
    background-color: #EBEBEB;
    border-radius: 50%;
    width: 72px;
    height: 72px;
    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;
    padding: 18px;
    margin-bottom: 30px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.comp-status-ico img {
    /* width: 100%; */
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    /* height: 100%; */
    -o-object-fit: contain;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 35px;
    max-height: 38px;
}

.comp-status-card {
    padding: 24px 28px;
    border-radius: 30px;
    border: 1px solid #F0EDED;
    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: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.comp-status-cont h3 {
    line-height: 1.36;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.comp-status-row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
}

.comp-status-card:hover {
    background: var(--white-color);
    -webkit-box-shadow: 0px 19px 64px rgba(85, 136, 45, 0.15);
    box-shadow: 0px 19px 64px rgba(85, 136, 45, 0.15);
    border-color: transparent;
}

.comp-status-card:hover .comp-status-ico {
    background-color: #EEF3EA;
}

.comp-status-ico-hide {
    opacity: 0;
}

.comp-status-card:hover .comp-status-ico-hide {
    opacity: 1;
}

.business-sec-main {
    position: relative;
    padding: 150px 0;
    background-color: #4E6B37;
}

.business-sec-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    max-width: 60%;
}

.business-main-cont {
    max-width: 565px;
    width: 100%;
    margin-left: auto;
    color: var(--white-color);
    position: relative;
    z-index: 1;
}

.business-main-cont h2 {
    color: var(--white-color);
}

.business-sec-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 260px;
    pointer-events: none;
}

.cmn-sec-head {
    margin: 0 auto 36px;
    width: 100%;
}

.system-main-wrp .cmn-sec-head {
    max-width: 1168px;
}

.system-main-wrp .cmn-sec-head h2 {
    max-width: 740px;
    margin: 0 auto 18px;
}

.system-accor-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 25px 20px 25px 0;
    cursor: pointer;
}

.system-accor-head img {
    max-width: 28px;
    max-height: 28px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-right: 14px;
}

.system-accor-head-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 15px;
}

.system-accor-btn {
    width: 16px;
    height: 16px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    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;
    position: relative;
}

.system-accor-btn .accor-stick:first-child {
    height: 2px;
    background-color: var(--green-color);
    border-radius: 20px;
    width: 100%;
}

.system-accor-btn .accor-stick:last-child {
    height: 100%;
    width: 2px;
    background-color: var(--green-color);
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.accor-stick {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}


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


.cmn-list li {
    position: relative;
    padding-left: 20px;
}

.cmn-list li:not(:last-child) {
    margin-bottom: 14px;
}

.cmn-list li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 14px;
    height: 14px;
    background: url(images/tick-mark.svg) no-repeat 100%;
    background-position: center top;
}

.system-accor-body {
    display: none;
    padding-bottom: 20px;
}

.system-accor-items {
    border-top: 1px solid #E5FCD3;
    /* border-bottom: 1px solid #E5FCD3; */
}

.system-accor-items:first-child {
    border-top: none;
}

.system-accor-head.active .system-accor-btn .accor-stick:last-child {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.system-col-rgt-wrp img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.system-col-rgt-wrp {
    border-radius: 20px;
    overflow: hidden;
    /* height: 100%; */
}

/* .system-row {
    align-items: center;
} */
.system-col-left-wrp {
    padding-right: 4px;
}

.system-row-wrp:not(:last-child) {
    margin-bottom: 100px;
}

.system-row-wrp-main .system-row-wrp:nth-child(even) .system-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.system-row-wrp-main .system-row-wrp:nth-child(even) .system-row .system-col-left .system-col-left-wrp {
    padding-right: 0;
    padding-left: 46px;
    max-width: 510px;
}

.system-col-left {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

.cmn-list-btm-line li {
    position: relative;
    padding-left: 20px;
}

.cmn-list-btm-line li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 14px;
    height: 14px;
    background: url(images/tick-mark.svg) no-repeat 100%;
    background-position: center top;
}

.cmn-list-btm-line li:not(:last-child) {
    margin-bottom: 14px;
    padding-bottom: 18px;
}

.cmn-list-btm-line li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: url(images/list-line.png) no-repeat;
    background-position: center;
    background-size: contain;
}

.cmn-list-btm-line li:last-child:after {
    display: none;
}

.system-col-left-wrp h2 {
    max-width: 454px;
}

.system-sec-main {
    position: relative;

}

.system-shape-top {
    position: absolute;
    top: 0;
    left: 0;
    background: -o-radial-gradient(13.54% 31.18%, 40% 43.32%, rgba(85, 136, 45, 0.94) 0%, rgba(85, 136, 45, 0) 100%);
    background: radial-gradient(40% 43.32% at 13.54% 31.18%, rgba(85, 136, 45, 0.94) 0%, rgba(85, 136, 45, 0) 100%);
    opacity: 0.27;
    width: 30%;
    height: 35%;
    pointer-events: none;
}

.system-shape-btm {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 440px;
    pointer-events: none;
}

.built-sec-main {
    position: relative;
    background: -o-linear-gradient(top, #F5FFED 0%, rgba(245, 255, 237, 0) 50.09%);
    background: -webkit-gradient(linear, left top, left bottom, from(#F5FFED), color-stop(50.09%, rgba(245, 255, 237, 0)));
    background: linear-gradient(180deg, #F5FFED 0%, rgba(245, 255, 237, 0) 50.09%);
}

.built-ico {
    background-color: rgba(85, 136, 45, 0.1);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    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;
    padding: 20px;
    margin-bottom: 32px;
}

.built-ico img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.built-col {
    position: relative;
}

.built-col::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    height: 130px;
    width: 1px;
    background-color: #CBE4B7;
}

.built-col:last-child:before {
    display: none;
}


.built-col:nth-child(4n+4):before {
    display: none;
}

.built-card {
    max-width: 220px;
    margin: 0 auto;
}

.built-btm-txt {
    margin-top: 80px;
    text-align: center;
}



.advertise-sec-main {
    background-color: var(--green-color);
    position: relative;
}

.ad-top-shp {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 200px;
    pointer-events: none;
}

.ad-btm-shp {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 200px;
    pointer-events: none;
}

.ad-col-rgt-wrp img {
    width: 100%;
}

.ad-col-rgt-wrp {
    border-radius: 20px;
    overflow: hidden;
}

.ad-col-left-wrp {
    max-width: 580px;
    width: 100%;
    color: var(--white-color);
}

.ad-col-left-wrp h2 {
    color: var(--white-color);
}

.cmn-btn-wh {
    background-color: var(--white-color);
    color: #228B22;
}

.cmn-btn-wh::before {
    background-color: var(--deep-green-color);
}

.cmn-btn-wh:hover {
    color: var(--white-color);
}

.ad-btn .cmn-btn {
    min-width: 270px;
}

.ad-btn {
    margin-top: 20px;
}

.start-col-left-wrp img {
    width: 100%;
}

.start-col-left-wrp {
    border-radius: 20px;
    overflow: hidden;
}

.start-row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.start-col-rgt-wrp {
    padding-left: 30px;
}

.start-col-rgt-wrp .cmn-sec-head {
    margin-bottom: 24px;
}


.start-btn {
    margin-top: 20px;
}

.form-field {
    position: relative;
}

.form-field .placeholder-txt {
    position: absolute;
    left: 0;
    color: rgba(51, 51, 51, 0.5);
    padding: 0 4px;
    background-color: var(--white-color);
    left: 20px;
    top: 18px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    line-height: 1;
    font-weight: 300;
    pointer-events: none;
}

.form-field input:focus+.placeholder-txt,
.form-field textarea:focus+.placeholder-txt,
.form-field.filled .placeholder-txt {
    top: -10px;
    color: var(--body-color);
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    border-color: var(--green-color);
}

.form-field-row {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
}

.submit-btn {
    margin-top: 30px;
}

.screen-col-left-wrp .cmn-sec-head {
    max-width: 570px;
    margin-left: 0;
}

.screen-col-rgt-wrp {
    height: 100%;
    margin-right: calc(((100vw - 1440px) / 2) * -1);
    margin-left: -90px;
    max-width: 1040px;
}

.screen-col-rgt-wrp img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.screen-work-sec-main {
    overflow-x: hidden;
}

.ftr-main {
    background-color: var(--olive-green-color);
    padding-top: 48px;
}

.ftr-logo {
    display: inline-block;
    width: 100%;
    max-width: 190px;
    margin: 0 auto 40px;
}

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

.ftr-top-main {
    text-align: center;
    padding-bottom: 40px;
    border-bottom: 1px solid #35680F;
}

.ftr-menu-list {
    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;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.ftr-menu-list li a {
    color: var(--white-color);
}

.ftr-menu-list li a:hover,
.ftr-btm-main p a:hover {
    color: rgba(255, 255, 255, 0.6);
}

.ftr-menu-sub-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.ftr-menu-list>li {
    margin: 0 25px;
    color: var(--white-color);
}

.ftr-menu-list>li:first-child {
    margin-left: 0;
}

.ftr-menu-list>li:last-child {
    margin-right: 0;
}

.ftr-menu-sub-list li {
    border-right: 1px solid var(--white-color);
    line-height: 1;
    padding: 0 6px;
}

.ftr-menu-sub-list li:first-child {
    padding-left: 0;
}

.ftr-menu-sub-list li:last-child {
    padding-right: 0;
    border: none;
}

.ftr-btm-main {
    text-align: center;
    padding: 18px 0;
}

.ftr-btm-main p,
.ftr-btm-main p a {
    color: var(--white-color);
}

.screen-col-left-wrp {
    position: relative;
    z-index: 1;
    padding-bottom: 60px;
}

.built-row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
}

.bnr-img-mb,
.business-sec-img-mb,
.system-col-img-mb,
.ad-col-img-mb,
.start-col-img-mb,
.screen-col-img-mb {
    display: none;
}


.inr-bnr-sec-main {
    min-height: 440px;
    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;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    background: -o-linear-gradient(181deg, rgb(85 136 45 / 62%) 50.01%, rgb(85 136 45) 89.52%);
    background: linear-gradient(269deg, rgb(85 136 45 / 62%) 50.01%, rgb(85 136 45) 89.52%);
    padding: 130px 0 80px;
}

.inr-bnr-main-wrp h1 {
    color: var(--white-color);
}

.privacy-col-left-wrp {
    padding: 40px 20px;
    background: -o-linear-gradient(341.57deg, rgba(85, 136, 45, 0.2) 50.01%, rgba(85, 136, 45, 0.2) 89.52%);
    background: linear-gradient(108.43deg, rgba(85, 136, 45, 0.2) 50.01%, rgba(85, 136, 45, 0.2) 89.52%);
    border-radius: 20px;
    -webkit-box-shadow: 0px 24px 54px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 24px 54px rgba(0, 0, 0, 0.12);
    position: sticky;
    top: 50px;
}

.privacy-toc-items a {
    font-size: 16px;
}

.privacy-toc-items {
    line-height: 1.3;
    padding-left: 24px;
    position: relative;
}

.privacy-toc-items:not(:last-child) {
    margin-bottom: 10px;
    padding-bottom: 8px;
}

/* .privacy-toc-items::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #CBE4B7;
    transition: all 0.3s ease-in-out;
} */

.privacy-toc-items::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    width: 14px;
    height: 14px;
    background: url(images/tick-mark.svg) no-repeat 100%;
    background-position: center top;
}

.privacy-col-rgt-wrp {
    padding-left: 30px;
}

.privacy-each-items h3 {
    margin: 40px 0 20px;
}

.privacy-each-items ul li {
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
}

.privacy-each-items ul li::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 20px;
    height: 20px;
    background: url(images/blt-tick-mark.svg) no-repeat;
    background-position: center top;
    background-size: contain;
}

.privacy-each-items:not(:last-child) {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #CBE4B7;
}

.privacy-each-items a {
    color: var(--green-color);
}

.privacy-each-items a:hover {
    color: var(--deep-green-color);
}

/* .privacy-toc-items.active::after, .privacy-toc-items:hover:after {
    width: 100%;
} */

.privacy-toc-items.active a {
    color: var(--green-color);
}

.privacy-head-wrp {
    margin-bottom: 80px;
}
.loader {
    margin: 0 auto;
    text-align: center;
    margin-top: 10px;
}
 #form-message{
    margin-bottom:15px;
    font-weight:600;
    padding-top: 20px;
    text-align: center;
    color:green;
}
.error-msg{
    color:red;
}
.error{
    color:red;
    font-size:13px;
    display:block;
    margin-top:4px;
}
/* ========== responsive css =========== */



@media(min-width:1025px) {

    /* navbar*/
    .navbar-nav .clickD {
        display: none;
    }

    .navbar-nav li.menu-item-has-children:hover>.sub-menu {
        display: block;
    }
}


@media(min-width:1799px) {
    body {
        font-size: 18px;
    }
}

@media(min-width:1499px) {
    .container {
        max-width: 1464px;
    }
}



@media(max-width:1599px) {
    .bnr-sec-main {
        min-height: 760px;
        padding: 100px 0 90px;
    }

    .navbar-brand {
        max-width: 140px;
    }

    .main-head {
        padding: 20px 0;
    }

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

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

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

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

    .bnr-desc strong {
        font-size: 28px;
    }

    .cmn-btn {
        font-size: 17px;
        padding: 18px 20px;
        min-width: 290px;
    }

    .comp-status-row {
        --bs-gutter-x: 20px;
        --bs-gutter-y: 20px;
    }

    .comp-status-card {
        padding: 20px;
    }

    .business-sec-img {
        max-width: 80%;
    }

    .system-main-wrp .cmn-sec-head h2 {
        max-width: 580px;
    }

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

    .system-row-wrp:not(:last-child) {
        margin-bottom: 80px;
    }

    .screen-col-rgt-wrp {
        margin-right: calc(((100vw - 1110px) / 2) * -1);
        margin-left: -300px;
        max-width: 1040px;
    }

    .ftr-logo {
        max-width: 160px;
    }

    input[type="submit"] {
        font-size: 17px;
    }

    .privacy-col-rgt-wrp {
        padding-left: 10px;
    }

    .privacy-head-wrp {
        margin-bottom: 60px;
    }

    .privacy-each-items:not(:last-child) {
        margin-bottom: 24px;
        padding-bottom: 18px;
    }

    .privacy-col-left {
        width: 30%;
    }

    .privacy-col-rgt {
        width: 70%;
    }
}




@media(max-width:1199px) {

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

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

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

    .bnr-sec-main {
        min-height: 680px;
        padding: 100px 0 70px;
    }

    .comp-status-ico {
        width: 65px;
        height: 65px;
    }

    .comp-status-ico img {
        max-width: 30px;
        max-height: 32px;
    }

    .system-accor-head img {
        max-width: 22px;
        max-height: 22px;
    }

    .system-row-wrp-main .system-row-wrp:nth-child(even) .system-row .system-col-left .system-col-left-wrp {
        padding-left: 26px;
    }

    .start-col-rgt-wrp {
        padding-left: 10px;
    }

    .screen-col-rgt-wrp {
        margin-right: calc(((100vw - 930px) / 2) * -1);
        margin-left: -290px;
    }

    .ftr-menu-list>li {
        margin: 0 12px;
    }

    .ftr-menu-list li a {
        font-size: 15px;
    }

    .bnr-desc strong {
        font-size: 24px;
    }

    .cmn-list-btm-line li::before {
        top: 7px;
    }

    .form-field .placeholder-txt {
        top: 20px;
    }

    .privacy-col-left {
        width: 40%;
    }

    .privacy-col-rgt {
        width: 60%;
    }

    .inr-bnr-sec-main {
        min-height: 420px;
        padding: 80px 0;
    }

    .privacy-each-items ul li::before {
        top: 3px;
    }
}

@media(max-width:1024px) {

    /* 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: 10px;
        cursor: pointer;
    }

    .navbar-nav .clickD.toggled {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .sub-menu>li.menu-item-has-children .clickD {
        top: 8px;
        right: 5px;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }

    .sub-menu>li.menu-item-has-children .clickD.toggled {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .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;
    }

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


}


@media (max-width: 991px) {

    /* navbar*/
    .navbar-toggler {
        position: relative;
        width: 33px;
        margin-left: auto;
        height: 28px;
        padding: 0;
        outline: none !important;
        border: none !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
    }

    .stick,
    .stick:after,
    .stick:before {
        width: 30px;
        height: 2px;
        background: #000;
        position: absolute;
        left: 0;
        top: auto;
        -webkit-transition: all 0.6s;
        -o-transition: all 0.6s;
        transition: all 0.6s;
        border-radius: 5px;
    }

    .stick:before {
        content: '';
        top: -10px;
        left: 0;
    }

    .stick:after {
        content: '';
        top: 10px;
        left: 0;
    }

    .stick.open {
        -webkit-transform: translateX(-50px);
        -ms-transform: translateX(-50px);
        transform: translateX(-50px);
        background: transparent;
    }

    .stick.open:before {
        -webkit-transform: rotate(45deg) translate(42px, -28px);
        -ms-transform: rotate(45deg) translate(42px, -28px);
        transform: rotate(45deg) translate(42px, -28px);
        left: 2px;
    }

    .stick.open:after {
        -webkit-transform: rotate(-45deg) translate(42px, 28px);
        -ms-transform: rotate(-45deg) translate(42px, 28px);
        transform: rotate(-45deg) translate(42px, 28px);
        left: 2px;
    }

    .navbar-nav .clickD {
        top: 8px;
        right: 10px;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
    }

    .navbar-nav .clickD.toggled {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .sub-menu>li.menu-item-has-children .clickD {
        top: 8px;
        right: 10px;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0)
    }


    .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>a {
        padding: 8px 20px;
        display: inline-block;
        width: 100%;
    }

    .navbar-nav li.menu-item-has-children>a {
        padding-right: 30px;
    }

    .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;
    }

    /* navbar end*/

    /* push nav */

    .navbar-collapse {
        background: #fff;
        position: fixed;
        top: 0;
        height: 100% !important;
        width: 290px;
        overflow-y: auto;
        -webkit-transition: inherit !important;
        -o-transition: inherit !important;
        transition: inherit !important;
        right: 0;
        margin: 0;
        display: block !important;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: transform 0.2s ease-in-out !important;
        -webkit-transition: -webkit-transform 0.2s ease-in-out !important;
        transition: -webkit-transform 0.2s ease-in-out !important;
        -o-transition: transform 0.2s ease-in-out !important;
        transition: transform 0.2s ease-in-out !important;
        transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out !important;
        z-index: 100;
    }

    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        display: block !important;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        -webkit-transition: transform 0.2s ease-in-out !important;
        -webkit-transition: -webkit-transform 0.2s ease-in-out !important;
        transition: -webkit-transform 0.2s ease-in-out !important;
        -o-transition: transform 0.2s ease-in-out !important;
        transition: transform 0.2s ease-in-out !important;
        transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out !important;
    }

    .navbar-collapse .navbar-nav {
        margin: 80px 0 0;
        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;
        -o-transition: background-color 0.5s linear;
        transition: background-color 0.5s linear;
    }

    body.open-nav,
    html.open-nav {
        height: 100%;
        overflow: hidden;
    }

    /* push nav end */

    .comp-status-col {
        width: 50%;
    }

    .bnr-sec-main {
        min-height: 640px;
        padding: 125px 0 60px;
    }

    .business-sec-img {
        max-width: 100%;
        opacity: 0.3;
    }

    .business-sec-main {
        padding: 90px 0;
    }

    .business-main-cont {
        max-width: 455px;
    }

    .system-accor-head {
        padding: 18px 12px 18px 0;
    }

    .system-row-wrp-main .system-row-wrp:nth-child(even) .system-row .system-col-left .system-col-left-wrp {
        padding-left: 0;
    }

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

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

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

    body {
        font-size: 15px;
    }

    .start-col-rgt-wrp {
        padding-left: 0;
    }

    .screen-col-rgt-wrp {
        margin-right: calc(((100vw - 690px) / 2) * -1);
        margin-left: -340px;
    }


    .screen-col-left {
        width: 65%;
    }

    .screen-col-rgt {
        width: 35%;
    }

    .screen-col-rgt-wrp {
        margin-right: calc(((100vw - 690px) / 2) * -1);
        margin-left: -510px;
    }

    .built-ico {
        width: 65px;
        height: 65px;
        padding: 19px;
        margin-bottom: 30px;
    }

    .ftr-menu-sub-list {
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 15px;
    }

    .ftr-logo {
        max-width: 140px;
        margin: 0 auto 20px;
    }

    .cmn-list li::before {
        top: 5px;
    }

    .privacy-col-left {
        width: 70%;
        margin-bottom: 30px;
    }

    .privacy-col-rgt {
        width: 100%;
    }

    .inr-bnr-sec-main {
        min-height: 310px;
    }
}

@media (max-width: 767px) {

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

    .bnr-desc strong {
        font-size: 22px;
    }

    .system-col-left {
        margin-bottom: 30px;
    }

    .built-col {
        width: 50%;
    }

    .ad-col-left {
        margin-bottom: 30px;
    }

    .start-col-left {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .start-col-rg {
        margin-bottom: 30px;
    }

    .ftr-menu-list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .ftr-menu-list>li {
        margin: 0 0 14px;
    }

    .screen-col-left {
        width: 100%;
    }

    .screen-col-rgt {
        width: 100%;
    }

    .screen-col-rgt-wrp {
        margin-right: 0;
        margin-left: -80px;
    }

    .built-col::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: #CBE4B7;
    }

    .built-card {
        padding-bottom: 30px;
    }

    .built-col::before {
        bottom: auto;
        top: 0;
    }

    .built-col::after {
        width: 190px;
    }

    .built-col:nth-child(even):after {
        right: 0;
        left: auto;
    }

    .built-col:nth-last-child(-n+2):after {
        display: none;
    }

    .built-col:nth-child(even):before {
        display: none;
    }

    .built-btm-txt {
        margin-top: 30px;
    }

    .privacy-col-left {
        width: 80%;
    }

    .bnr-desc-para {
        max-width: 430px;
        margin: 0 auto;
    }
}

@media (max-width: 575px) {

    body {
        font-size: 14px;
    }

    .navbar-brand {
        max-width: 130px;
    }

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

    .bnr-desc strong {
        font-size: 20px;
    }

    .built-row {
        --bs-gutter-x: 20px;
    }

    .ftr-logo {
        max-width: 120px;
    }

    .cmn-list-btm-line li::before {
        top: 5px;
    }

    .built-card {
        max-width: 150px;
    }

    .privacy-head-wrp {
        margin-bottom: 40px;
    }

    .privacy-col-left {
        width: 90%;
    }

    .privacy-toc-items a {
        font-size: 15px;
    }

    .privacy-toc-items::before {
        top: 4px;
    }

    .privacy-toc-items {
        padding-left: 20px;
    }
}

@media (max-width: 479px) {
    body {
        font-size: 13px;
    }

    .container {
        padding: 0 20px;
    }

    .bnr-img,
    .business-sec-img,
    .system-col-img,
    .ad-col-img,
    .start-col-img,
    .screen-col-img {
        display: none;
    }

    .bnr-img-mb,
    .business-sec-img-mb,
    .system-col-img-mb,
    .ad-col-img-mb,
    .start-col-img-mb,
    .screen-col-img-mb {
        display: block;
    }

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

    .main-head {
        padding: 40px 0;
    }

    .bnr-main-cont h1 {
        line-height: 1.2;
    }

    .bnr-desc-para {
        max-width: 313px;
    }

    .bnr-each-btn {
        width: 100%;
        padding: 8px;
    }

    .cmn-btn {
        font-size: 16px;
        /* padding: 15px 20px; */
        /* min-width: 100%; */
    }

    .bnr-each-btn .cmn-btn {
        min-width: 100%;
        padding: 15px 20px;
    }

    .bnr-btn-wrp {
        margin: -8px;
    }

    .bnr-sec-main {
        min-height: inherit;
        padding: 125px 0 40px;
    }

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

    .comp-status-col {
        width: 100%;
    }

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

    .comp-status-cont h3 {
        max-width: 240px;
    }

    .comp-status-cont h3 br {
        display: none;
    }

    .comp-status-cont {
        max-width: 275px;
    }

    .business-sec-shape {
        top: auto;
        right: 0;
        max-width: 130px;
        bottom: 0;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .business-sec-main {
        padding: 0 0 40px;
    }

    .business-sec-img-mb {
        width: 100%;
    }

    .business-main-cont {
        padding-top: 50px;
    }

    .system-main-wrp .cmn-sec-head h2 {
        max-width: 330px;
    }

    .system-main-wrp .cmn-sec-head {
        max-width: 340px;
    }

    .system-accor-head-left h3 {
        line-height: 1.5;
    }

    .system-accor-head {
        padding: 20px 0;
    }

    .system-row-wrp:not(:last-child) {
        margin-bottom: 44px;
    }

    .built-sec-main .cmn-sec-head {
        max-width: 300px;
    }

    .built-col::after {
        width: 140px;
    }

    .built-col:nth-child(even) .built-card {
        padding-left: 20px;
    }

    .built-btm-txt {
        margin-top: 10px;
    }

    .ad-btn .cmn-btn {
        min-width: 240px;
    }

    .ad-btm-shp {
        max-width: 120px;
    }

    .ad-top-shp {
        max-width: 90px;
    }

    .ad-col-left-wrp {
        max-width: 330px;
    }

    .ad-col-left-wrp h2 {
        max-width: 290px;
    }

    .screen-col-left-wrp .cmn-sec-head {
        max-width: 310px;
        margin-left: 0;
    }

    .form-field input:focus+.placeholder-txt,
    .form-field textarea:focus+.placeholder-txt,
    .form-field.filled .placeholder-txt {
        top: -6px;
    }

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

    input[type="submit"] {
        height: 58px;
    }

    .form-field-row {
        --bs-gutter-x: 20px;
        --bs-gutter-y: 20px;
    }

    .screen-col-rgt-wrp {
        margin-left: -20px;
    }

    .ftr-btm-main {
        padding: 10px 0;
    }

    input[type="text"],
    input[type="tel"],
    input[type="password"],
    input[type="email"],
    select {
        height: 50px;
    }

    .form-field .placeholder-txt {
        top: 17px;
    }

    .submit-btn {
        margin-top: 25px;
    }

    .ftr-main {
        padding-top: 26px;
    }

    .ftr-menu-list li a {
        font-size: 13px;
    }

    .privacy-col-left {
        width: 100%;
    }

    .privacy-toc-items a {
        font-size: 14px;
    }

    .privacy-col-left-wrp {
        padding: 30px 12px;
    }

    .privacy-each-items h3 {
        margin: 30px 0 16px;
    }

    .privacy-each-items ul li::before {
        top: 2px;
        width: 18px;
        height: 18px;
    }

    .privacy-each-items ul li {
        margin-bottom: 12px;
        padding-left: 24px;
    }

    .inr-bnr-sec-main {
        padding: 80px 0 40px;
    }
}


@media (max-width: 389px) {
    input[type="submit"] {
        font-size: 12px;
        height: 49px;
    }

    .ftr-menu-sub-list li {
        padding: 0 4px;
    }

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

    .bnr-desc strong {
        font-size: 18px;
    }

    .main-head {
        padding: 20px 0;
    }

    .inr-bnr-sec-main {
        min-height: 310px;
    }

    .container {
        padding: 0 12px;
    }
}