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

body,
html {
    font-family: Poppins, sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: normal;
    color: var(--SelecteText, #666);
}

.container-fluid {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

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

a[href] {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.custom-scrol::-webkit-scrollbar {
    width: 3px;
}

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

.custom-scrol::-webkit-scrollbar-thumb {
    background-color: var(--Selectedpurpule, #8fb729);
    outline: 0;
}

input,
select,
textarea,
button {
    font-family: Poppins, sans-serif;
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: normal;
    /* line-height: normal; */
    font-weight: 400;
}

h1 {
    font-size: 48px;
    line-height: 52px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 35px;
}

h4 {
    font-size: 30px;
}

h5 {
    font-size: 25px;
}

h6 {
    font-size: 20px;
}

.heading .logo img {
    display: block;
    margin: 0 auto;
}

.heading h2 {
    font-size: 48px;
}

@media (max-width: 991px) {
    .heading h2 {
        font-size: 40px;
    }
}

@media (max-width: 675px) {
    .heading h2 {
        font-size: 30px;
    }
}

.heading .Calton {
    font-size: 30px;
    font-family: calton-elegance-script, sans-serif;
}

@media (max-width: 675px) {
    .heading .Calton {
        font-size: 55px;
    }
    .bg-danger-nav{
        padding: 0;
    }
}

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

.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--SelecteBlack, #000);
    opacity: 0;
    pointer-events: none;
    transition: 0.5s ease;
    z-index: 3;
}

div#back-to-top {
    position: fixed;
    left: auto;
    right: -100px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 55px;
    z-index: 1;
    bottom: 35px;
    background: var(--Selectedpurpule, #8fb729);
    padding: 10px;
    cursor: pointer;
    transition: 700ms ease;
}

@media (max-width: 675px) {
    div#back-to-top {
        width: 45px;
        height: 45px;
        bottom: 50px;
    }
}

div#back-to-top.show {
    right: 10px;
}

div#back-to-top svg {
    color: var(--SelecteWhite, #fff);
    max-width: 18px;
}

.video_icon {
    width: 55px;
    height: 55px;
    border: 1px solid var(--SelecteWhite, #fff);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    cursor: pointer;
}

@media (max-width: 767px) {
    .video_icon {
        width: 47px;
        height: 47px;
    }
}

.video_icon:before {
    width: 55px;
    height: 55px;
    top: 50%;
    right: 0;
    bottom: 0;
    left: 50%;
    position: absolute;
    content: "";
    transform: translateX(-50%) translateY(-50%);
    background: var(--SelecteWhite, #fff);
    border-radius: 50%;
    display: block;
    animation: pulse-border 1500ms ease-out infinite;
}

@media (max-width: 767px) {
    .video_icon:before {
        width: 47px;
        height: 47px;
    }
}

.video_icon img {
    width: auto;
    position: relative;
}

@-webkit-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;
    }
}

@-moz-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;
    }
}

@-ms-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;
    }
}

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

@-webkit-keyframes bganim {
    0% {
        background-position: 50% 36%;
    }
    100% {
        background-position: 350% 36%;
    }
}

@-moz-keyframes bganim {
    0% {
        background-position: 50% 36%;
    }
    100% {
        background-position: 350% 36%;
    }
}

@-ms-keyframes bganim {
    0% {
        background-position: 50% 36%;
    }
    100% {
        background-position: 350% 36%;
    }
}

@keyframes bganim {
    0% {
        background-position: 50% 36%;
    }
    100% {
        background-position: 350% 36%;
    }
}

.SlideNavWrap {
    width: 145px;
}

.SlideNavWrap div {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.SlideNavWrap div button {
    width: 37px;
    height: 37px;
    background: transparent;
    border: 1px solid var(--SelecteWhite, #fff);
    border-radius: 100px;
    display: inline-block;
    opacity: 1;
    transition: 0.5s ease;
}

.SlideNavWrap div button img {
    display: block;
    margin: 0 auto;
}

.SlideNavWrap div button.disabled {
    opacity: 0.5;
}

.SlideNavWrap .slideCount {
    display: flex;
    width: 35px;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 10px;
    pointer-events: none;
}

.SlideNavWrap .slideCount .li {
    flex: 1;
    color: var(--SelecteWhite, #fff);
}

.model.Model_Video {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--SelecteBlack, #000);
    z-index: 1111;
    transition: transform 0.6s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transform-origin: top left;
    transform: translateY(-100%);
    pointer-events: none;
    user-select: none;
}

.model.Model_Video .modelBody {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}

.model.Model_Video iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
}

.model.Model_Video.is-open {
    pointer-events: all;
    transform: translateY(0%);
    transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition-delay: 0s;
    transition-duration: 500ms;
}

.model .close {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.model .close svg {
    width: 26px;
    height: 26px;
}

.model .close svg path {
    fill: var(--SelecteWhite, #fff);
}

.form .form-group {
    margin-bottom: 15px;
    position: relative;
}

.form .form-group .icon {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.form .form-group input,
.form .form-group select {
    height: 55px;
}

.form .form-group label {
    color: var(--SelecteBlack, #000);
    transition: 0.5s ease;
    position: absolute;
    left: 0;
    top: 0;
}

.form .form-group .form-control {
    width: 100%;
    padding: 20px 0 0px;
    color: #87928e;
    border: 0;
    border-bottom: 1px solid #b9b9b9;
    outline: none;
    font-size: 14px;
}

.form .form-group .form-control::placeholder {
    color: #87928e;
    font-size: 14px;
}

.form .form-group .form-control:focus {
    border-color: var(--Selectedpurpule, #8fb729);
}

.form .form-group textarea.form-control {
    padding-top: 28px;
}

.form .form-group.valid .form-control {
    border-color: var(--Selectedpurpule, #8fb729);
}

.checkBoxGroup label {
    position: relative;
    padding-left: 31px;
    font-size: 13px;
}

.checkBoxGroup label input[type=checkbox],
.checkBoxGroup label input[type=radio] {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    cursor: pointer;
}

.checkBoxGroup label input[type=checkbox]:checked~.fakeBox,
.checkBoxGroup label input[type=radio]:checked~.fakeBox {
    background: var(--Selectedpurpule, #8fb729);
    border-color: var(--Selectedpurpule, #8fb729);
}

.checkBoxGroup label .fakeBox {
    width: 24px;
    height: 23px;
    border: 1px solid #8d8d8d;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    border-radius: 2px;
    z-index: 1;
    pointer-events: none;
}

.checkBoxGroup label .fakeBox img {
    width: 13px;
    filter: invert(1);
}

.ui-widget-content {
    z-index: 5 !important;
}

.ui-datepicker .ui-widget-header {
    background: var(--SelecteWhite, #fff);
    border-color: var(--SelecteWhite, #fff);
}

.ui-datepicker .ui-datepicker-title {
    color: var(--SelecteBlack, #000);
    font-family: Poppins, sans-serif;
    font-weight: normal;
}

.ui-datepicker-calendar .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-content .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-header .ui-state-highlight {
    text-align: center !important;
}

.ui-datepicker-calendar .ui-state-active,
.ui-datepicker-calendar .ui-widget-content .ui-state-active {
    border: 1px solid var(--Selectedpurpule, #8fb729) !important;
    background: var(--Selectedpurpule, #8fb729) !important;
    color: #ffffff !important;
    text-align: center !important;
}

.ui-datepicker-calendar * {
    font-family: Poppins, sans-serif;
    text-align: center !important;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    background: var(--SelecteWhite, #fff) !important;
    border: 0 !important;
    top: 2px !important;
    cursor: pointer;
}

.ui-datepicker .ui-datepicker-prev {
    left: 1px !important;
}

.ui-datepicker .ui-datepicker-next {
    right: 1px !important;
}

.ui-datepicker .ui-datepicker-prev span {
    background: url("../icons/prewW.png");
    background-repeat: no-repeat;
    background-position: center;
    filter: invert(1);
}

.ui-datepicker .ui-datepicker-next span {
    background: url("../icons/nextW.png");
    background-repeat: no-repeat;
    background-position: center;
    filter: invert(1);
}

.ui-state-default,
.ui-widget-content .ui-state-default {
    background: #fff !important;
    border: 0px solid #f2f2f2 !important;
}

.ui-state-default,
.ui-widget-content .ui-state-default.ui-state-highlight {
    background: #efefef !important;
    border: 1px solid #efefef !important;
}

.ui-state-default,
.ui-widget-content .ui-state-default.ui-state-active {
    background: #efefef !important;
}

.ui-state-default,
.ui-widget-content .ui-state-default:hover:not(.ui-state-highlight,
.ui-state-active) {
    background: #efefef !important;
}

.ui-state-default,
.ui-widget-content .ui-state-default.ui-state-active,
.ui-state-default,
.ui-widget-content .ui-state-default.ui-state-active:after {
    color: #464646 !important;
}

.owl-carousel.nav-center .owl-nav button {
    position: absolute;
    top: 50%;
}

.owl-carousel.nav-center .owl-nav button.owl-prev {
    left: -44px;
}

.owl-carousel.nav-center .owl-nav button.owl-next {
    right: -44px;
}

.owl-carousel.nav-center .owl-nav button.disabled {
    opacity: 0.3;
    pointer-events: none;
}

.owl-carousel.nav-center .owl-dots {
    text-align: center;
    margin-top: 25px;
}

.owl-carousel.nav-center .owl-dots button {
    width: 11px;
    height: 11px;
    display: inline-block;
    margin: 0 6px;
    background: var(--Selectedgreen, #6b9403);
    border-radius: 15px;
    opacity: 0.2;
    transition: 0.5s ease;
}

.owl-carousel.nav-center .owl-dots button.active {
    opacity: 1;
}

.ui-datepicker td a:after {
    font-size: 10px;
    color: var(--SelecteText, #666);
    line-height: 1;
    font-family: Poppins, sans-serif;
}

.ui-state-default,
.ui-widget-content .ui-state-default {
    position: relative;
    padding: 0;
    padding-bottom: 6px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 40px;
}

.ui-state-default,
.ui-widget-content .ui-state-default.ui-state-active:after {
    color: #fff;
}

.ui-datepicker-calendar .tooltip_model {
    position: absolute;
    width: 170px;
    right: -50px;
    text-align: left !important;
    bottom: 100%;
    background: var(--Selectedpurpule, #8fb729);
    border: 1px solid var(--Selectedpurpule, #8fb729);
    border-radius: 5px;
    padding: 5px 12px;
}

.ui-datepicker-calendar .tooltip_model:after {
    content: "";
    position: absolute;
    border: 12px solid transparent;
    border-top-color: var(--Selectedpurpule, #8fb729);
    bottom: -21px;
    left: 49.5%;
}

.ui-datepicker-calendar .tooltip_model p {
    font-size: 13px;
    text-align: left !important;
}

.ui-datepicker-calendar .tooltip_model p strong,
.ui-datepicker-calendar .tooltip_model p span {
    display: inline-block;
    line-height: 0.6;
    padding: 0;
    color: var(--SelecteWhite, #fff);
}

.ui-datepicker-calendar .tooltip_model p span {
    padding-left: 8px;
}

.ui-datepicker-calendar .tooltip_model p strong {
    font-weight: 500;
}

.ui-datepicker-calendar .tooltip_model p {
    font-weight: normal;
}

.ui-datepicker {
    max-width: 22.5em;
    width: 100% !important;
}

@media (max-width: 675px) {
    .ui-datepicker {
        max-width: 19.5em;
    }
}

.model.is-open~.overlay {
    opacity: 0.3;
    pointer-events: all;
    transition-delay: 0s;
}

.mob-strip {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--Selectedpurpule, #8fb729);
    z-index: 2;
    display: none;
}

@media (max-width: 675px) {
    .mob-strip {
        display: block;
    }
}

.mob-strip .wrapper {
    display: flex;
    flex-wrap: wrap;
}

.mob-strip .wrapper a {
    flex: 1;
    padding: 0 0;
    color: var(--SelecteWhite, #fff);
    text-align: center;
    display: block;
    font-size: 14px;
    padding: 6px 0;
}

.mob-strip .wrapper a:nth-child(2) {
    border-left: 1px solid rgba(255, 255, 255, 0.1607843137);
    border-right: 1px solid rgba(255, 255, 255, 0.1607843137);
}

header {
    background: var(--Selectedgreen, #597445);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
}

header .header-wrapper {
    position: relative;
    padding-left: 75px;
}

@media (max-width: 1140px) {
    header .header-wrapper {
        padding: 0 15px;
    }
}

@media (max-width: 991px) {
    header .header-wrapper {
        padding: 0px;
    }
    .w-75{
        width: 25px;
    }
    .contact-logo{
        margin-top: -27px;
    }
}

header .flex {
    align-items: center;
}

header .flex .col1,
header .flex .col2 {
    width: 100%;
}

header .flex .col1 {
    flex: 1;
}

@media (max-width: 991px) {
    header .flex .col1 {
        flex: 0 1 181px;
        max-width: 181px;
    }
}

header .flex .col2 {
    flex: 0 1 315px;
    max-width: 315px;
}

@media (max-width: 1140px) {
    header .flex .col2 {
        flex: 0 1 200px;
        max-width: 200px;
        position: relative;
    }
}

@media (max-width: 991px) {
    header .flex .col2 {
        max-width: 100%;
        flex: 1;
    }
}

.header-navigation .custom-logo,
.header-navigation .nav {
    display: inline-block;
    vertical-align: middle;
}

.header-navigation .custom-logo a {
    display: block;
    padding-right: 18px;
    border-right: 1px solid #6d7d79;
}

@media (max-width: 675px) {
    .header-navigation .custom-logo a {
        border: 0;
    }
}

.header-navigation .custom-logo a img {
    display: block;
    max-width: 100%;
}

@media (max-width: 991px) {
    .header-navigation .nav {
        display: none;
    }
}

.header-navigation .nav ul li {
    display: inline-block;
}

.header-navigation .nav ul li a {
    display: inline-block;
    color: var(--SelecteWhite, #fff);
    font-size: 14px;
    padding: 12px 22px;
    line-height: 1.3;
    transition: 0.5s ease;
}

@media (max-width: 1140px) {
    .header-navigation .nav ul li a {
        padding: 12px 15px;
    }
}

.header-navigation .nav ul li a p {
    color: #6d7d79;
}

.header-navigation .nav ul li a span {
    display: block;
}

.header-navigation .nav ul .has-dropdown {
    position: relative;
}

.header-navigation .nav ul .has-dropdown>a {
    position: relative;
    padding-right: 37px;
}

.header-navigation .nav ul .has-dropdown>a::after {
    content: "";
    position: absolute;
    width: 14px;
    top: 0;
    right: 8px;
    bottom: 0;
    background: url("../icons/dobw.png");
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.5s ease;
}

.header-navigation .nav ul .has-dropdown:hover>a {
    background: var(--SelecteWhite, #fff);
    color: var(--Selectedgreen, #112a24);
}

.header-navigation .nav ul .has-dropdown:hover>a::after {
    filter: invert(1);
    right: 12px;
}

.header-navigation .nav ul .has-dropdown:hover .navDropdown {
    opacity: 1;
    pointer-events: all;
}

.header-navigation .nav ul .has-dropdown:hover .navDropdown ul li {
    transform: translateY(0);
    opacity: 1;
}

.header-navigation .nav ul .has-dropdown:hover .navDropdown ul li:first-child {
    transition-delay: 0s;
}

.header-navigation .nav ul .has-dropdown:hover .navDropdown ul li:nth-child(2) {
    transition-delay: 0.3s;
}

.header-navigation .nav ul .has-dropdown:hover .navDropdown ul li:nth-child(3) {
    transition-delay: 0.5s;
}

.header-navigation .nav ul .has-dropdown:hover .navDropdown ul li:nth-child(4) {
    transition-delay: 0.6s;
}

.header-navigation .nav ul .has-dropdown .navDropdown {
    position: absolute;
    top: 100%;
    opacity: 0;
    pointer-events: none;
    transition: 0.5s ease;
}

.header-navigation .nav ul .has-dropdown .navDropdown ul {
    width: 190px;
    padding: 8px 0;
    background: var(--SelecteWhite, #fff);
}

.header-navigation .nav ul .has-dropdown .navDropdown ul li {
    display: block;
    transform: translateY(5px);
    opacity: 0;
    transition: 0.5s ease;
}

.header-navigation .nav ul .has-dropdown .navDropdown ul li a {
    display: block;
    color: var(--Selectedgreen, #112a24);
    padding: 10px 15px;
    transition: 0.5s ease;
}

.header-navigation .nav ul .has-dropdown .navDropdown ul li a:hover {
    background: var(--Selectedgreen, #112a24);
    color: rgb(208, 217, 192);
}

.header-quick-Link ul {
    display: flex;
    align-items: center;
}

@media (max-width: 1140px) {
    .header-quick-Link ul {
        padding-right: 60px;
    }
}

@media (max-width: 991px) {
    .header-quick-Link ul {
        display: block;
        text-align: right;
    }
}

@media (max-width: 675px) {
    .header-quick-Link ul {
        display: none;
    }
}

.header-quick-Link ul li {
    flex-grow: 1;
    display: inline-block;
}

.header-quick-Link ul li a {
    color: var(--SelecteWhite, #fff);
    font-size: 14px;
    padding: 20px 10px;
}

.header-quick-Link ul li .qukInq {
    background: transparent;
    border: 0;
    outline: none;
    color: var(--SelecteWhite, #fff);
    font-size: 14px;
    width: 100%;
    text-transform: uppercase;
    padding: 20px 10px;
    background: var(--Selectedpurpule, #658147);
}

@media (max-width: 1140px) {
    .header-quick-Link ul li .qukInq {
        padding: 11px 10px;
    }
}

@media (max-width: 1140px) {
    .header-quick-Link ul li:first-child {
        display: none;
    }
}

@media (max-width: 991px) {
    .header-quick-Link ul li:first-child {
        display: inline-block;
    }
}

.Menu-Trigger {
    display: inline-block;
    width: 40px;
    height: 40px;
    position: relative;
    padding: 22px 0;
    vertical-align: middle;
    cursor: pointer;
    position: absolute;
    left: 15px;
    top: 8px;
}

@media (max-width: 1140px) {
    .Menu-Trigger {
        right: 0;
        left: auto;
        top: 0;
    }
}

@media (max-width: 675px) {
    .Menu-Trigger {
        margin: 0;
        width: 35px;
        height: 26px;
        padding: 0;
        display: flex;
        align-items: center;
        position: static;
        margin-left: auto;
        margin-right: 0;
    }
}

.Menu-Trigger span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--SelecteWhite, #fff);
    position: relative;
}

.Menu-Trigger span:before,
.Menu-Trigger span:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: var(--SelecteWhite, #fff);
}

.Menu-Trigger span:before {
    top: -8px;
}

.Menu-Trigger span:after {
    bottom: -8px;
}

.banner {
    position: relative;
}

.banner .bg {
    position: relative;
}

.banner .bg img {
    width: 100%;
    height: 10%;
}

.banner .bg .video {
    line-height: 0;
}

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

@media (max-width: 1140px) {
    .banner .bg .video video {
        height: auto;
    }
}

@media (max-width: 991px) {
    .banner .bg .video video {
        height: 450px;
    }
}

@media (max-width: 675px) {
    .banner .bg .video video {
        height: 400px;
    }

    
}

.banner .banner-wrapper {
    position: absolute;
}

.banner.home-banner .container-fluid {
    width: 90%;
}

@media (max-width: 991px) {
    .banner.home-banner .container-fluid {
        width: 100%;
        padding: 0 15px;
    }
    .banner .home-banner{
        margin-top: -29%;
    }  
}

.banner.home-banner .bg::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background: var(--SelecteBlack, #000);
    opacity: 0.2;
}

.banner.home-banner .banner-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
}

.banner.home-banner .banner-content {
    position: relative;
}

@media (max-width: 675px) {
    .banner.home-banner .banner-content .logo {
        display: none;
    }
}

@media (max-width: 675px) {
    .banner.home-banner .banner-content .logo img {
        display: block;
        margin: 0 auto;
        max-width: 110px;
    }
}

.banner.home-banner .banner-content .content {
    position: absolute;
    top: 40px;
    right: 0;
}

@media (max-width: 675px) {
    .banner.home-banner .banner-content .content {
        position: static;
        margin-top: 18px;
        text-align: center;
    }
}

.banner.home-banner .banner-content .content h1 {
    color: var(--SelecteWhite, #fff);
}

@media (max-width: 991px) {
    .banner.home-banner .banner-content .content h1 {
        font-size: 30px;
    }
}

@media (max-width: 675px) {
    .banner.home-banner .banner-content .content h1 {
        font-size: 38px;
    }
}

.banner.home-banner .banner-content .content h1 span {
    font-family: calton-elegance-script, sans-serif;
    font-size: 100px;
}

@media (max-width: 991px) {
    .banner.home-banner .banner-content .content h1 span {
        font-size: 70px;
    }
}

@media (max-width: 675px) {
    .banner.home-banner .banner-content .content h1 span {
        font-size: 70px;
        display: block;
        line-height: 70px;
    }
}

.banner.home-banner .banner-content .content p {
    letter-spacing: 6.5px;
    color: var(--SelecteWhite, #fff);
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .banner.home-banner .banner-content .content p {
        letter-spacing: 1.5px;
    }
}

.Rang_Home_Service {
    padding: 40px 0;
    background: var(--Selectedgreen, #112a24);
}

.Rang_Home_Service .container-fluid {
    position: relative;
}

.Rang_Home_Service .SlideNavWrap {
    position: absolute;
    right: 25px;
    top: -6px;
}

@media (max-width: 675px) {
    .Rang_Home_Service .SlideNavWrap {
        position: relative;
        right: 0px;
        top: 0px;
        margin: 0 auto;
    }
}

.Rang_Home_Service .secTitle {
    text-align: center;
    color: var(--SelecteWhite, #fff);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 40px;
}

@media (max-width: 675px) {
    .Rang_Home_Service .secTitle {
        font-size: 20px;
    }
}

.Rang_Home_Service .Slide-H-A .owl-item {
    padding: 0 0 45px;
    overflow: hidden;
}

@media (max-width: 991px) {
    .Rang_Home_Service .Slide-H-A .owl-item {
        padding: 0 5px 45px;
    }
}

.serviceCard .item a {
    display: block;
}

.serviceCard .item .card {
    display: block;
}

.serviceCard .item .card>a {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.serviceCard .item .card-img {
    position: relative;
    overflow: hidden;
}

.serviceCard .item .card-img figure {
    position: relative;
}

.serviceCard .item .card-img figure::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 250px;
    background: linear-gradient(to top, var(--SelecteBlack, #000), transparent);
    opacity: 0.6;
    transition: 0.6s ease;
}

.serviceCard .item .card-img .card-title {
    color: var(--SelecteWhite, #fff);
    font-weight: 600;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 35px;
    transform: translateY(0);
    opacity: 1;
    transition: 0.8s ease;
}

@media (max-width: 991px) {
    .serviceCard .item .card-img .card-title {
        display: none;
    }
}

.serviceCard .item .card-body {
    position: absolute;
    top: 0;
    bottom: 7px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: 1s ease;
}

@media (max-width: 991px) {
    .serviceCard .item .card-body {
        left: 5px;
        right: 5px;
    }
}

.serviceCard .item .card-body .card_content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.serviceCard .item .card-body .card_content .icon {
    transform: translateY(10px);
    opacity: 0;
    transition: 0.5s ease;
}

@media (max-width: 991px) {
    .serviceCard .item .card-body .card_content .icon {
        transform: translateY(0px);
        opacity: 1;
    }
}

.serviceCard .item .card-body .card_content .icon img {
    display: block;
    margin: 0 auto;
    width: auto;
}

.serviceCard .item .card-body .card_content .text {
    padding: 0 30px 25px;
}

@media (max-width: 991px) {
    .serviceCard .item .card-body .card_content .text {
        padding: 0 15px 15px;
    }
}

.serviceCard .item .card-body .card_content h5 {
    color: var(--SelecteWhite, #fff);
    font-family: calton-elegance-script, sans-serif;
    margin: 10px 0;
    transform: translateY(10px);
    opacity: 0;
    transition: 0.5s ease;
}

@media (max-width: 991px) {
    .serviceCard .item .card-body .card_content h5 {
        transform: translateY(0px);
        opacity: 1;
    }
}

.serviceCard .item .card-body .card_content p {
    color: var(--SelecteWhite, #fff);
    transform: translateY(10px);
    opacity: 0;
    transition: 0.5s ease;
}

@media (max-width: 991px) {
    .serviceCard .item .card-body .card_content p {
        display: none;
    }
}

.serviceCard .item .card-body .link-button {
    transform: translateY(10px);
    opacity: 0;
    transition: 0.5s ease;
}

@media (max-width: 991px) {
    .serviceCard .item .card-body .link-button {
        transform: translateY(0px);
        opacity: 1;
    }
}

.serviceCard .item .card-body .link-button a,
.serviceCard .item .card-body .link-button .btn {
    display: block;
    background: var(--Selectedpurpule, #8fb729);
    color: var(--SelecteWhite, #fff);
    font-size: 16px;
    padding: 7px 0;
    width: 100%;
    border: 0;
    outline: none;
}

.serviceCard .item:hover .card-img .card-title {
    transform: translateY(120px);
    opacity: 0;
}

.serviceCard .item:hover .card-img figure::after {
    height: 70%;
    opacity: 0.9;
}

.serviceCard .item:hover .card-body {
    opacity: 1;
}

.serviceCard .item:hover .card-body .card_content .icon {
    transform: translateY(0px);
    opacity: 1;
    transition-delay: 0.3s;
}

.serviceCard .item:hover .card-body .card_content h5 {
    transform: translateY(0px);
    opacity: 1;
    transition-delay: 0.5s;
}

.serviceCard .item:hover .card-body .card_content p {
    transform: translateY(0px);
    opacity: 1;
    transition-delay: 0.7s;
}

.serviceCard .item:hover .card-body .card_content .link-button {
    transform: translateY(0px);
    opacity: 1;
    transition-delay: 0.9s;
}

.Rang_Home_Farm .container-fluid {
    padding: 40px;
    background: linear-gradient(to right, #048768 0%, #04281f 50%);
    position: relative;
}

@media (max-width: 1024px) {
    .Rang_Home_Farm .container-fluid {
        padding: 15px;
    }
}

@media (max-width: 675px) {
    .Rang_Home_Farm .container-fluid {
        padding: 0;
    }
}

.Rang_Home_Farm .container-fluid .shade {
    position: absolute;
    bottom: 0;
    right: 0;
}

.Rang_Home_Farm .flex .cola {
    flex: 0 1 56%;
    max-width: 56%;
    width: 100%;
}

@media (max-width: 991px) {
    .Rang_Home_Farm .flex .cola {
        flex: 0 1 100%;
        max-width: 100%;
    }
}

@media (max-width: 675px) {
    .Rang_Home_Farm .flex .cola {
        order: 2;
        padding: 0 0;
    }
}

.Rang_Home_Farm .flex .colb {
    flex: 0 1 44%;
    max-width: 44%;
    width: 100%;
}

@media (max-width: 991px) {
    .Rang_Home_Farm .flex .colb {
        flex: 0 1 100%;
        max-width: 100%;
    }
}

@media (max-width: 675px) {
    .Rang_Home_Farm .flex .colb {
        order: 1;
    }
}

.Rang_Home_Farm .Slide-HAside {
    position: relative;
}

.Rang_Home_Farm .Slide-HAside .SlideWrap {
    position: relative;
}

.Rang_Home_Farm .Slide-HAside .SlideWrap .video_icon {
    position: absolute;
    bottom: 45px;
    z-index: 1;
    right: 45px;
    width: 55px;
    height: 55px;
}

@media (max-width: 675px) {
    .Rang_Home_Farm .Slide-HAside .SlideWrap .video_icon {
        top: 16px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

.Rang_Home_Farm .Slide-HAside .SlideWrap .video_icon::before {
    width: 55px;
    height: 55px;
}

@media (max-width: 675px) {
    .Rang_Home_Farm .Slide-HAside .SlideWrap .video_icon::before {
        width: 45px;
        height: 45px;
    }
}

.Rang_Home_Farm .Slide-HAside .owl-item {
    position: relative;
}

.Rang_Home_Farm .Slide-HAside .owl-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8784313725), transparent);
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 675px) {
    .Rang_Home_Farm .Slide-HAside .owl-item::after {
        height: 100%;
        background: linear-gradient(to top, rgb(0, 0, 0), rgba(0, 0, 0, 0.431372549));
    }
}

.Rang_Home_Farm .Slide-HAside .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6%;
    text-align: center;
}

.Rang_Home_Farm .Slide-HAside .owl-dots button.owl-dot {
    display: inline-block;
    margin: 0 4px;
    width: 9px;
    height: 9px;
    background: var(--SelecteWhite, #fff);
    opacity: 0.6;
    margin: 0 5px;
    border-radius: 20px;
}

.Rang_Home_Farm .Slide-HAside .owl-dots button.owl-dot.active {
    opacity: 1;
}

.Rang_Home_Farm .Slide-HAside .slidConte {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18%;
    z-index: 2;
    pointer-events: none;
}

.Rang_Home_Farm .Slide-HAside .slidConte .content {
    max-width: 330px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

@media (max-width: 675px) {
    .Rang_Home_Farm .Slide-HAside .slidConte .content {
        max-width: 100%;
        padding: 0 15px;
    }
}

.Rang_Home_Farm .Slide-HAside .slidConte .content .title {
    font-family: calton-elegance-script, sans-serif;
    color: var(--SelecteWhite, #fff);
    line-height: normal;
    font-size: 30px;
    margin-bottom: 45px;
}

@media (max-width: 675px) {
    .Rang_Home_Farm .Slide-HAside .slidConte .content .title {
        font-size: 40px;
        margin-bottom: 10px;
    }
}

.Rang_Home_Farm .Slide-HAside .slidConte .content p {
    font-size: 18px;
    color: var(--SelecteWhite, #fff);
    font-weight: 500;
}

@media (max-width: 675px) {
    .Rang_Home_Farm .Slide-HAside .slidConte .content p {
        font-size: 14px;
    }
}

.Rang_Home_Farm .Slide-HACont {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .Rang_Home_Farm .Slide-HACont {
        padding: 0 15px;
    }
}

@media (max-width: 991px) {
    .Rang_Home_Farm .Slide-HACont {
        padding: 35px 15px 15px;
    }
}

@media (max-width: 675px) {
    .Rang_Home_Farm .Slide-HACont {
        padding: 35px 15px;
    }
}

.Rang_Home_Farm .Slide-HACont h1 {
    font-size: 36px;
    padding: 20px 50px 0;
    line-height: 36px;
    color: #fff;
}

.Rang_Home_Farm .Slide-HACont .card {
    max-width: 520px;
    text-align: center;
}

.Rang_Home_Farm .Slide-HACont .card .logo img {
    display: block;
    margin: 0 auto;
}

.Rang_Home_Farm .Slide-HACont .card p {
    color: var(--SelecteWhite, #fff);
    opacity: 0.5;
    margin: 10px 0 10px;
}

@media (max-width: 1024px) {
    .Rang_Home_Farm .Slide-HACont .card p {
        font-size: 14px;
        margin: 15px 0 10px;
    }
}

.Rang_Home_Farm .Slide-HACont .card p:first-child {
    color: #fff;
    opacity: 0.8;
}

.Rang_Home_Farm .Slide-HACont .card .link a {
    display: inline-block;
    padding: 6px 35px;
    color: var(--Selectedpurpule, #8fb729);
    background: transparent;
    transition: 0.5s ease;
}

.Rang_Home_Farm .Slide-HACont .card .link a:hover {
    color: var(--SelecteWhite, #fff);
    background: var(--Selectedpurpule, #8fb729);
}

.Rang_Home_LuRoom {
    position: relative;
}

.Rang_Home_LuRoom .bg {
    position: relative;
}

.Rang_Home_LuRoom .bg::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 70%;
    right: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8705882353), rgba(0, 0, 0, 0.8117647059), transparent);
    opacity: 0.8;
}

@media (max-width: 675px) {
    .Rang_Home_LuRoom .bg::before {
        width: 100%;
        background: var(--SelecteBlack, #000);
        opacity: 0.6;
    }
}

.Rang_Home_LuRoom .bg img,
.Rang_Home_LuRoom .bg video {
    width: 100%;
}

@media (max-width: 675px) {
    .Rang_Home_LuRoom .bg img,
    .Rang_Home_LuRoom .bg video {
        height: 300px;
        object-fit: cover;
    }
}

.Rang_Home_LuRoom .RangContent {
    position: absolute;
    width: 400px;
    top: 0;
    left: 5%;
    z-index: 1;
    bottom: 0;
    display: flex;
    align-items: center;
}

@media (max-width: 675px) {
    .Rang_Home_LuRoom .RangContent {
        width: 100%;
        left: 0;
        right: 0;
        padding: 0 15px;
        text-align: center;
    }
}

.Rang_Home_LuRoom .RangContent p {
    font-size: 18px;
    letter-spacing: 4px;
    color: var(--SelecteWhite, #fff);
    margin-bottom: 56px;
}

@media (max-width: 991px) {
    .Rang_Home_LuRoom .RangContent p {
        margin-bottom: 15px;
    }
}

@media (max-width: 675px) {
    .Rang_Home_LuRoom .RangContent p {
        font-size: 14px;
    }
}

.Rang_Home_LuRoom .RangContent h2 {
    font-size: 60px;
    color: var(--SelecteWhite, #fff);
    margin-bottom: 15px;
}

@media (max-width: 675px) {
    .Rang_Home_LuRoom .RangContent h2 {
        font-size: 40px;
        line-height: 40px;
    }
}

.Rang_Home_LuRoom .RangContent .btn_in {
    margin-top: 56px;
}

@media (max-width: 991px) {
    .Rang_Home_LuRoom .RangContent .btn_in {
        margin-top: 15px;
    }
}

.Rang_Home_LuRoom .RangContent .btn_in .btn {
    display: inline-block;
    background: transparent;
    border: 0;
    outline: none;
    color: #fff;
    border: 1px solid var(--SelecteWhite, #fff);
    padding: 6px 0;
    min-width: 250px;
    text-align: center;
    font-size: 16px;
    transition: 0.5s ease;
}

.Rang_Home_LuRoom .RangContent .btn_in .btn:hover {
    background: var(--Selectedpurpule, #8fb729);
    border-color: var(--Selectedpurpule, #8fb729);
}

.Rang_Home_ExPSec {
    background: var(--SelecteWhite, #fff);
    padding: 65px 0;
}

@media (max-width: 675px) {
    .Rang_Home_ExPSec {
        padding: 35px 0;
    }
}

.Rang_Home_ExPSec .container-fluid {
    padding: 0 120px;
}

.Rang_Home_ExPSec .heading {
    max-width: 746px;
    width: 100%;
    margin: 0 auto 45px;
}

.Rang_Home_ExPSec .heading h2 {
    color: var(--SelecteBlack, #000);
}

.Rang_Home_ExPSec .heading p {
    color: var(--SelecteBlack, #000);
    line-height: 65px;
}

.Rang_Home_ExPSec .heading .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    width: 63px;
    height: 63px;
    border: 1px solid var(--Selectedgreen, #112a24);
    border-radius: 60px;
}

.Rang_Home_ExPSec .heading .logo img {
    display: block;
}

.Rang_Home_ExPSec .item {
    position: relative;
}

.Rang_Home_ExPSec .item .img {
    position: relative;
}

.Rang_Home_ExPSec .item .img .video_icon {
    position: absolute;
    bottom: 30px;
    right: 30px;
    border-width: 2px;
    z-index: 2;
}

@media (max-width: 1024px) {
    .Rang_Home_ExPSec .item .img .video_icon {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 991px) {
    .Rang_Home_ExPSec .item .img .video_icon {
        top: 50%;
        left: 50%;
        right: auto;
        bottom: auto;
        transform: translate(-50%, -50%);
    }
}

@media only screen and (max-width: 365px) {
    .Rang_Home_ExPSec .item .img .video_icon {
        top: 40%;
    }
}

@media (max-width: 1024px) {
    .Rang_Home_ExPSec .item .img .video_icon::before {
        width: 45px;
        height: 45px;
    }
}

.Rang_Home_ExPSec .item .img .video_icon img {
    display: block;
    width: auto;
}

.Rang_Home_ExPSec .item .img figure {
    display: block;
    position: relative;
}

.Rang_Home_ExPSec .item .img figure::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50%;
    background: linear-gradient(to top, var(--SelecteBlack, #000), transparent 100%);
    opacity: 0.6;
    pointer-events: none;
}

@media (max-width: 991px) {
    .Rang_Home_ExPSec .item .img figure::after {
        opacity: 0.9;
    }
}

.Rang_Home_ExPSec .item .content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 30px;
    padding-right: 120px;
    z-index: 1;
    max-width: 470px;
    min-height: 130px;
}

@media (max-width: 1024px) {
    .Rang_Home_ExPSec .item .content {
        min-height: 110px;
        padding: 14px 20px;
        padding-right: 95px;
    }
}

@media (max-width: 991px) {
    .Rang_Home_ExPSec .item .content {
        padding: 15px;
        padding-bottom: 20px;
        min-height: auto;
        max-width: 100%;
        text-align: center;
    }
}

@media only screen and (max-width: 365px) {
    .Rang_Home_ExPSec .item .content {
        padding: 8px;
        padding-bottom: 16px;
    }
}

.Rang_Home_ExPSec .item .content .name,
.Rang_Home_ExPSec .item .content .loc {
    font-weight: 500;
    color: var(--SelecteWhite, #fff);
}

.Rang_Home_ExPSec .item .content .name {
    font-size: 18px;
}

@media (max-width: 1024px) {
    .Rang_Home_ExPSec .item .content .name {
        font-size: 16px;
        line-height: 21px;
    }
}

@media only screen and (max-width: 365px) {
    .Rang_Home_ExPSec .item .content .name {
        font-size: 16px;
        line-height: 19px;
    }
}

.Rang_Home_ExPSec .item .content .loc {
    font-size: 14px;
}

.Rang_Home_ExPSec .link {
    text-align: center;
    margin-top: 55px;
}

@media (max-width: 1024px) {
    .Rang_Home_ExPSec .link {
        margin-top: 40px;
    }
}

.Rang_Home_ExPSec .link a {
    display: inline-block;
    padding: 6px 35px;
    border: 1px solid var(--Selectedgreen, #112a24);
    color: var(--Selectedgreen, #112a24);
    min-width: 230px;
    transition: 0.5s ease;
}

.Rang_Home_ExPSec .link a:hover {
    background: var(--Selectedgreen, #112a24);
    color: var(--SelecteWhite, #fff);
}

.Rang_Home_ExPSec .SlideNavWrap {
    position: relative;
    margin: 15px auto 0;
}

@media (max-width: 1024px) {
    .Rang_Home_ExPSec .SlideNavWrap {
        margin-top: 40px;
    }
}

.Rang_Home_ExPSec .SlideNavWrap div button {
    border-color: var(--SelecteBlack, #000);
}

.Rang_Home_ExPSec .SlideNavWrap div button img {
    display: block;
    filter: invert(1);
}

.Rang_Home_ExPSec .SlideNavWrap .slideCount {
    top: 7px;
}

.Rang_Home_ExPSec .SlideNavWrap .slideCount .li {
    color: var(--SelecteBlack, #000);
}

.Rang_Home_advSec {
    position: relative;
}

.Rang_Home_advSec .Slide-H-D {
    position: relative;
}

.Rang_Home_advSec .Slide-H-D::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50%;
    background: linear-gradient(to top, var(--SelecteBlack, #000), var(--SelecteBlack, #000), transparent);
    opacity: 0.7;
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 1140px) {
    .Rang_Home_advSec .Slide-H-D::after {
        height: 100%;
        background: linear-gradient(to top, var(--SelecteBlack, #000), var(--SelecteBlack, #000), transparent 70%);
    }
}

.Rang_Home_advSec .Slide-H-D img {
    width: 100%;
    height: 90vh;
    object-fit: cover;
}

@media (max-width: 1140px) {
    .Rang_Home_advSec .Slide-H-D img {
        height: auto;
    }
}

@media (max-width: 675px) {
    .Rang_Home_advSec .Slide-H-D img {
        height: 300px;
    }
}

.Rang_Home_advSec .slidCOnt {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5%;
    max-width: 370px;
    width: 100%;
    margin: 0 auto;
    z-index: 2;
    text-align: center;
}

.Rang_Home_advSec .slidCOnt .Calton,
.Rang_Home_advSec .slidCOnt p {
    color: var(--SelecteWhite, #fff);
}

.Rang_Home_advSec .slidCOnt .Calton {
    font-size: 80px;
    font-family: calton-elegance-script, sans-serif;
    line-height: normal;
}

@media (max-width: 675px) {
    .Rang_Home_advSec .slidCOnt .Calton {
        font-size: 45px;
        line-height: 45px;
    }
}

.Rang_Home_advSec .slidCOnt .SlideDDot {
    margin: 10px 0 15px;
}

.Rang_Home_advSec .slidCOnt .SlideDDot button.owl-dot {
    display: inline-block;
    width: 11px;
    height: 11px;
    background: var(--SelecteWhite, #fff);
    border-radius: 15px;
    margin: 0 5px;
    opacity: 0.6;
    border: 0;
    outline: none;
}

.Rang_Home_advSec .slidCOnt .SlideDDot button.owl-dot.active {
    opacity: 1;
}

@media (max-width: 675px) {
    .Rang_Home_advSec .slidCOnt .link {
        display: none;
    }
}

.Rang_Home_advSec .slidCOnt .link a {
    display: inline-block;
    padding: 6px 35px;
    color: var(--Selectedpurpule, #8fb729);
    background: transparent;
    transition: 0.5s ease;
}

.Rang_Home_advSec .slidCOnt .link a:hover {
    color: var(--SelecteWhite, #fff);
    background: var(--Selectedpurpule, #8fb729);
}

.ServicePage-SecA {
    padding-top: 61px;
}

.ServicePage-SecA .container-fluid,
.ServicePage-SecA .container {
    padding: 30px 15px;
}

.ServicePage-SecA .flex .colA {
    flex: calc(100% - 405px);
    max-width: calc(100% - 405px);
    width: 100%;
}

@media (max-width: 991px) {
    .ServicePage-SecA .flex .colA {
        flex: 0 1 60%;
        max-width: 60%;
        padding-right: 15px;
    }
}

@media (max-width: 767px) {
    .ServicePage-SecA .flex .colA {
        flex: 0 1 100%;
        max-width: 100%;
        padding-right: 0;
    }
}

.ServicePage-SecA .flex .colB {
    flex: 0 1 405px;
    max-width: 405px;
    width: 100%;
    padding-left: 25px;
}

@media (max-width: 991px) {
    .ServicePage-SecA .flex .colB {
        padding-left: 0px;
        flex: 0 1 40%;
        max-width: 40%;
    }
}

@media (max-width: 767px) {
    .ServicePage-SecA .flex .colB {
        flex: 0 1 100%;
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .ServicePage-SecA .ServiceSlide {
        position: sticky;
        top: 80px;
    }
}

@media (max-width: 767px) {
    .ServicePage-SecA .ServiceSlide {
        position: static;
    }
}

.ServicePage-SecA .ServiceSlide .content {
    margin-bottom: 28px;
}

.ServicePage-SecA .ServiceSlide .content .namePack {
    font-size: 36px;
    font-weight: 500;
    color: var(--SelecteBlack, #000);
    line-height: normal;
}

@media (max-width: 767px) {
    .ServicePage-SecA .ServiceSlide .content .namePack {
        font-size: 30px;
    }
}

.ServicePage-SecA .ServiceSlide .content .timing {
    line-height: 1;
}

@media (max-width: 767px) {
    .ServicePage-SecA .ServiceSlide .content .timing {
        font-size: 12px;
    }
}

.ServicePage-SecA .ServiceSlide .slide {
    position: relative;
}

@media (max-width: 767px) {
    .ServicePage-SecA .ServiceSlide .slide {
        padding-bottom: 15px;
    }
}

.ServicePage-SecA .ServiceSlide .slide .video_icon {
    position: absolute;
    bottom: 35px;
    right: 35px;
    z-index: 1;
}

@media (max-width: 767px) {
    .ServicePage-SecA .ServiceSlide .slide .video_icon {
        bottom: 30px;
        right: 12px;
    }
}

.ServicePage-SecA .ServiceSlide .SerSlidA .owl-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    opacity: 0.6;
    background: linear-gradient(to top, var(--SelecteBlack, #000), transparent);
}

.ServicePage-SecA .ServiceSlide .SerSlidA .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 45px;
    text-align: center;
}

.ServicePage-SecA .ServiceSlide .SerSlidA .owl-dots button.owl-dot {
    display: inline-block;
    margin: 0 4px;
    width: 9px;
    height: 9px;
    background: var(--SelecteWhite, #fff);
    opacity: 0.6;
    margin: 0 5px;
    border-radius: 20px;
}

.ServicePage-SecA .ServiceSlide .SerSlidA .owl-dots button.owl-dot.active {
    opacity: 1;
}

.SerVBookingCart {
    padding-top: 15px;
    position: sticky;
    top: 61px;
}

.SerVBookingCart .SerVBookingWrap {
    border: 1px solid #c2c2c2;
    border-radius: 10px;
    overflow: hidden;
}

.SerVBookingCart .dateSect {
    position: relative;
    padding: 18px 22px;
    background: #f6f6f6;
    cursor: pointer;
}

.SerVBookingCart .dateSect label {
    font-size: 12px;
    font-weight: 500;
    color: var(--SelecteBlack, #000);
    display: block;
    line-height: normal;
    margin-bottom: 3px;
}

.SerVBookingCart .dateSect .date {
    font-size: 14px;
    display: block;
    line-height: normal;
    background: transparent;
    border: 0;
    outline: none;
}

.SerVBookingCart .dateSect .ui-datepicker-trigger {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    bottom: 0;
    opacity: 0;
    height: 100%;
}

.SerVBookingCart .dateSect .icon {
    position: absolute;
    right: 8px;
    top: 0;
    bottom: 0;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.SerVBookingCart .dateSect .icon img {
    width: 22px;
    filter: invert(0.4);
}

.SerVBookingCart .ServiceBookiForm .form {
    padding: 23px;
    padding-bottom: 0;
}

.SerVBookingCart .ServiceBookiForm~.SerVBookingTot {
    border: 0;
    padding: 0 22px;
}

.counterList .list {
    border-top: 1px solid #e7e7e7;
    padding: 12px 22px;
    position: relative;
}

.counterList .couType {
    color: #131926;
}

.counterList .CouPrice .li {
    display: inline-block;
    font-size: 18px;
    color: var(--SelecteBlack, #000);
    font-weight: 500;
}

.counterList .CouPrice .Ptic {
    font-size: 12px;
    color: var(--SelecteText, #666);
    font-weight: normal;
}

.counterList .couterBox {
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}

.counterList .couterBox .BoxWrap {
    display: flex;
}

.counterList .couterBox button {
    width: 32px;
    height: 32px;
    border: 1px solid var(--SelecteBlack, #000);
    border-radius: 50px;
    background: var(--SelecteWhite, #fff);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.counterList .couterBox .inputDet {
    width: 37px;
    height: 32px;
    text-align: center;
    border: 0;
    pointer-events: none;
    user-select: none;
    font-size: 18px;
}

.SerVBookingTot {
    border-top: 1px solid #e7e7e7;
    padding: 18px 22px;
}

.SerVBookingTot .item .wrap .wrap_itm {
    position: relative;
}

.SerVBookingTot .item .labelTot {
    font-size: 16px;
    color: var(--SelecteBlack, #000);
    font-weight: 500;
    position: absolute;
    left: 0;
}

.SerVBookingTot .item .acTPricet {
    font-size: 18px;
    color: var(--SelecteBlack, #000);
    font-weight: 600;
    text-align: right;
}

.SerVBookingTot .item p {
    text-align: right;
    font-size: 14px;
    display: block;
    line-height: normal;
}

.SerVBookingTot .item .decou .labelTot {
    color: var(--Selectedpurpule, #8fb729);
    font-weight: normal;
    font-size: 14px;
}

.SerVBookingTot .item .decou .acTPricet {
    color: var(--Selectedpurpule, #8fb729);
    font-weight: normal;
    font-size: 14px;
}

.SerVBookingTot .SerVBooking {
    margin: 15px 0 25px;
}

.SerVBookingTot .SerVBooking .btn {
    font-size: 18px;
    color: var(--SelecteWhite, #fff);
    font-weight: 600;
    border: 0;
    background: var(--Selectedpurpule, #8fb729);
    padding: 9px 0;
    text-align: center;
    display: block;
    width: 100%;
}

.coupApply .wrap {
    position: relative;
    border-top: 1px solid #e7e7e7;
    margin-top: 16px;
    padding: 15px 0;
    margin-bottom: 16px;
}

.coupApply .wrap .cuText {
    font-size: 16px;
    color: var(--Selectedpurpule, #8fb729);
    font-weight: 500;
    text-align: left;
}

.coupApply .wrap .decPrice {
    font-size: 16px;
    color: var(--SelecteBlack, #000);
    font-weight: 500;
    position: absolute;
    right: 0;
    top: 16px;
}

.coupAppliDeBox .wrap {
    border-top: 1px solid #e7e7e7;
    margin-top: 20px;
    margin-left: -22px;
    margin-right: -22px;
    padding: 13px 22px 0;
}

.Aplly_promoCode .promoCodeFOrm {
    position: relative;
}

.Aplly_promoCode .promoCodeFOrm .inputCode {
    width: 100%;
    height: 39px;
    border: 1px solid #949596;
    padding: 10px;
    outline: none;
    transition: 0.5s ease;
}

.Aplly_promoCode .promoCodeFOrm .inputCode:hover {
    border-color: var(--Selectedpurpule, #8fb729);
}

.Aplly_promoCode .promoCodeFOrm .btn {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 0 12px;
    color: var(--Selectedpurpule, #8fb729);
    font-weight: normal;
    background: transparent;
    font-size: 12px;
    border: 0;
    outline: none;
}

.Aplly_promoCode .btnViewAllPromo {
    font-size: 12px;
    color: var(--Selectedpurpule, #8fb729);
    text-align: right;
    cursor: pointer;
    padding: 3px 0;
}

.ServicePageOvervi {
    background: linear-gradient(to right, #048768 30%, #04281f 90%);
    padding: 30px 0;
    position: relative;
}

.ServicePageOvervi .shade {
    position: absolute;
    bottom: 0;
    right: 0;
    pointer-events: none;
}

.ServicePageOvervi .container {
    position: relative;
    z-index: 1;
}

.ServicePageOvervi .heading {
    margin-bottom: 48px;
}

@media (max-width: 767px) {
    .ServicePageOvervi .heading {
        margin-bottom: 20px;
    }
}

.ServicePageOvervi .heading img {
    display: block;
    margin: 0 auto 10px;
}

.ServicePageOvervi .heading .title {
    display: block;
    color: var(--SelecteWhite, #fff);
    font-size: 18px;
    letter-spacing: 4px;
    font-weight: 500;
    text-transform: uppercase;
}

.ServicePageOvervi .flex .colA {
    flex: 0 1 40%;
    max-width: 40%;
    width: 100%;
}

@media (max-width: 767px) {
    .ServicePageOvervi .flex .colA {
        flex: 0 1 100%;
        max-width: 100%;
        position: relative;
    }
}

.ServicePageOvervi .flex .colB {
    flex: 0 1 60%;
    max-width: 60%;
    width: 100%;
}

@media (max-width: 991px) {
    .ServicePageOvervi .flex .colB {
        padding-left: 20px;
    }
}

@media (max-width: 767px) {
    .ServicePageOvervi .flex .colB {
        flex: 0 1 100%;
        max-width: 100%;
        padding: 0;
    }
}

.ServicePageOvervi .img {
    position: relative;
    display: inline-block;
}

@media (max-width: 991px) {
    .ServicePageOvervi .img {
        position: sticky;
        top: 80px;
    }
}

@media (max-width: 767px) {
    .ServicePageOvervi .img {
        position: static;
        display: block;
    }
}

@media (max-width: 767px) {
    .ServicePageOvervi .img figure img {
        display: block;
        width: 100%;
    }
}

.ServicePageOvervi .img .video_icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 767px) {
    .ServicePageOvervi .OverContent {
        padding: 25px 0 10px;
    }
}

.ServicePageOvervi .OverContent .content h5 {
    font-size: 18px;
    color: var(--SelecteWhite, #fff);
    font-family: Poppins, sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
}

.ServicePageOvervi .OverContent .content p {
    color: #9ec2ba;
    margin-bottom: 20px;
}

.ServicePageOvervi .OverContent .content ul {
    padding-left: 35px;
}

.ServicePageOvervi .OverContent .content ul li {
    position: relative;
    color: #9ec2ba;
    padding: 3px 0;
}

.ServicePageOvervi .OverContent .content ul li::before {
    content: "";
    position: absolute;
    left: -30px;
    top: 11px;
    width: 9px;
    height: 9px;
    background: var(--Selectedpurpule, #8fb729);
    border-radius: 20px;
}

.ServicePageOvervi .OverContent .btn_in {
    margin-top: 35px;
}

.ServicePageOvervi .OverContent .btn_in .btn {
    display: inline-block;
    background: transparent;
    border: 0;
    outline: none;
    color: var(--SelecteWhite, #fff);
    border: 1px solid var(--SelecteWhite, #fff);
    padding: 8px 0;
    min-width: 250px;
    text-align: center;
    font-size: 16px;
    transition: 0.5s ease;
}

@media (max-width: 520px) {
    .ServicePageOvervi .OverContent .btn_in .btn {
        display: block;
    }
}

.ServicePageOvervi .OverContent .btn_in .btn:hover {
    background: var(--Selectedpurpule, #8fb729);
    border-color: var(--Selectedpurpule, #8fb729);
}

.serviTab {
    margin-bottom: 40px;
}

.serviTab ul {
    display: flex;
    position: relative;
}

.serviTab ul li {
    flex-grow: 1;
    font-weight: 500;
    color: var(--SelecteBlack, #000);
    position: relative;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    padding: 0 15px 25px;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .serviTab ul li {
        line-height: 1.3;
    }
}

@media only screen and (max-width: 365px) {
    .serviTab ul li {
        font-size: 14px;
        min-height: 62px;
    }
}

.serviTab ul li::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--Selectedpurpule, #8fb729);
}

.serviTab ul li::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    width: 17px;
    height: 17px;
    border-radius: 30px;
    background: var(--Selectedpurpule, #8fb729);
    margin: 0 auto;
    z-index: 1;
    background: var(--SelecteWhite, #fff);
    border: 2px solid var(--Selectedpurpule, #8fb729);
    z-index: 1;
}

.serviTab ul li.current {
    color: var(--Selectedpurpule, #8fb729);
}

.serviTab ul li.current::after {
    border-width: 10px;
}

.serviTab .owl-carousel .owl-nav button {
    position: absolute;
    bottom: 5px;
    width: 35px;
    height: 35px;
    background: var(--SelecteWhite, #fff);
    border: 0;
    outline: none;
    display: flex;
    align-items: center;
}

.serviTab .owl-carousel .owl-nav button img {
    width: 10px;
}

.serviTab .owl-carousel .owl-nav button.owl-prev {
    left: 0;
    justify-content: flex-start;
}

.serviTab .owl-carousel .owl-nav button.owl-next {
    right: 0;
    justify-content: flex-end;
}

.serviTab .owl-carousel .owl-nav button.disabled {
    pointer-events: none;
}

.ServicePage-SecB {
    padding: 35px 0;
    background: var(--SelecteWhite, #fff);
}

.ServicePage-SecB .heading {
    margin-bottom: 25px;
}

.ServicePage-SecB .heading .label {
    font-size: 18px;
    font-weight: 500;
    color: var(--SelecteText, #666);
}

@media (max-width: 767px) {
    .ServicePage-SecB .heading .label {
        font-size: 16px;
    }
}

.ServicePage-SecB .heading h2 {
    font-family: Poppins, sans-serif;
    font-size: 36px;
    color: var(--SelecteBlack, #000);
    font-weight: 600;
}

@media (max-width: 767px) {
    .ServicePage-SecB .heading h2 {
        font-size: 30px;
        line-height: 35px;
    }
}

.ServicePage-SecB .bg {
    background: var(--SelecteWhite, #fff);
}

.ServicePage-SecB .flex .col {
    flex: 0 1 50%;
    max-width: 50%;
    background: #ededed;
}

@media (max-width: 767px) {
    .ServicePage-SecB .flex .col {
        flex: 0 1 100%;
        max-width: 100%;
        padding: 0;
    }
}

.ServicePage-SecB figure {
    height: 100%;
}

.ServicePage-SecB figure img {
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1300px) {
    .ServicePage-SecB .owl-carousel.nav-center {
        padding: 0 35px;
    }
}

@media (max-width: 991px) {
    .ServicePage-SecB .owl-carousel.nav-center {
        padding: 0;
    }
}

@media (max-width: 1300px) {
    .ServicePage-SecB .owl-carousel.nav-center .owl-nav button.owl-prev {
        left: 0;
    }
}

@media (max-width: 1300px) {
    .ServicePage-SecB .owl-carousel.nav-center .owl-nav button.owl-next {
        right: 0;
    }
}

.ServicePage-SecB .slideContent {
    padding: 30px 45px;
    padding-left: 65px;
}

@media (max-width: 991px) {
    .ServicePage-SecB .slideContent {
        padding: 25px;
    }
}

.ServicePage-SecB .slideContent h4 {
    font-family: Poppins, sans-serif;
    font-weight: 600;
    color: var(--SelecteBlack, #000);
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .ServicePage-SecB .slideContent h4 {
        font-size: 24px;
        line-height: 28px;
    }
}

@media only screen and (max-width: 365px) {
    .ServicePage-SecB .slideContent h4 {
        font-size: 20px;
        line-height: 25px;
    }
}

.ServicePage-SecB .slideContent ul {
    padding-left: 35px;
}

.ServicePage-SecB .slideContent ul li {
    position: relative;
    font-size: 18px;
    font-weight: 500;
    color: var(--SelecteText, #666);
    padding: 3px 0;
}

@media (max-width: 767px) {
    .ServicePage-SecB .slideContent ul li {
        font-size: 16px;
    }
}

.ServicePage-SecB .slideContent ul li::before {
    content: "";
    position: absolute;
    left: -30px;
    top: 11px;
    width: 11px;
    height: 11px;
    background: var(--Selectedpurpule, #8fb729);
    border-radius: 20px;
}

@media (max-width: 767px) {
    .ServicePage-SecB .slideContent ul li::before {
        top: 8px;
    }
}

.ServicePage-SecB .notes {
    margin: 60px 0;
}

@media (max-width: 1300px) {
    .ServicePage-SecB .notes {
        padding-left: 35px;
    }
}

@media (max-width: 767px) {
    .ServicePage-SecB .notes {
        padding-left: 0;
        margin: 25px 0;
    }
}

.ServicePage-SecB .notes .notTitle {
    font-family: Poppins, sans-serif;
    font-weight: 600;
    color: var(--SelecteBlack, #000);
    font-size: 18px;
    margin-bottom: 10px;
}

.ServicePage-SecB .notes ul {
    padding-left: 35px;
}

@media (max-width: 767px) {
    .ServicePage-SecB .notes ul {
        padding-left: 25px;
    }
}

.ServicePage-SecB .notes ul li {
    position: relative;
    font-size: 14px;
    font-weight: normal;
    color: var(--SelecteText, #666);
    padding: 1px 0;
}

.ServicePage-SecB .notes ul li::before {
    content: "";
    position: absolute;
    left: -30px;
    top: 7px;
    width: 9px;
    height: 9px;
    background: #c7c7c7;
    border-radius: 20px;
}

@media (max-width: 767px) {
    .ServicePage-SecB .notes ul li::before {
        left: -20px;
    }
}

@media (max-width: 767px) {
    .ServicePage-SecB .action_ntn {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
}

.ServicePage-SecB .action_ntn a {
    display: inline-block;
    margin: 0 20px;
    padding: 8px 25px;
    max-width: 300px;
    font-size: 18px;
    width: 100%;
    border: 1px solid;
    transition: 0.5s ease;
}

@media (max-width: 767px) {
    .ServicePage-SecB .action_ntn a {
        margin: 0;
        padding: 8px 20px;
        width: 48%;
    }
}

@media only screen and (max-width: 365px) {
    .ServicePage-SecB .action_ntn a {
        padding: 8px 16px;
        font-size: 14px;
        width: 49%;
    }
}

.ServicePage-SecB .action_ntn a:first-child {
    background: var(--Selectedpurpule, #8fb729);
    color: var(--SelecteWhite, #fff);
    border-color: var(--Selectedpurpule, #8fb729);
}

.ServicePage-SecB .action_ntn a:first-child:hover {
    background: var(--SelecteWhite, #fff);
    color: var(--Selectedgreen, #112a24);
    border-color: var(--Selectedgreen, #112a24);
}

.ServicePage-SecB .action_ntn a:last-child {
    background: var(--SelecteWhite, #fff);
    color: var(--Selectedgreen, #112a24);
    border-color: var(--Selectedgreen, #112a24);
}

.ServicePage-SecB .action_ntn a:last-child:hover {
    background: var(--Selectedpurpule, #8fb729);
    color: var(--SelecteWhite, #fff);
    border-color: var(--Selectedpurpule, #8fb729);
}

.Serviceacti {
    padding-top: 55px;
}

.Rang_Home_Service.moreService {
    background: #f2f2f2;
}

.Rang_Home_Service.moreService .secTitle {
    color: var(--SelecteBlack, #000);
}

.Rang_Home_Service.moreService .SlideNavWrap {
    position: relative;
    margin: 0 auto;
}

.Rang_Home_Service.moreService .SlideNavWrap div button {
    border-color: var(--SelecteBlack, #000);
}

.Rang_Home_Service.moreService .SlideNavWrap div button img {
    filter: invert(1);
}

.Rang_Home_Service.moreService .SlideNavWrap .slideCount .li {
    color: var(--SelecteBlack, #000);
}

.model.couponModelPop {
    position: fixed;
    top: 0;
    left: auto;
    right: 0;
    bottom: 0;
    z-index: 4;
    transform: translateX(100%);
    transition: 0.5s ease;
    max-width: 520px;
    width: 100%;
}

.model.couponModelPop .close {
    right: 20px;
    top: 5px;
    z-index: 2;
}

.model.couponModelPop .close svg path {
    fill: #7d7c7e;
}

.model.couponModelPop.is-open {
    transform: translateX(0%);
}

.model.couponModelPop.is-open .model-Wrap {
    transform: translateX(0%);
    padding-top: 30px;
}

.model.couponModelPop .model-Wrap {
    background: var(--SelecteWhite, #fff);
    padding: 47px 0 20px;
    position: relative;
    z-index: 1;
    margin-left: auto;
    margin-right: 0;
    height: 100%;
    padding-top: 0;
    transform: translateX(100%);
    transition: 0.5s ease;
    transition-delay: 0s;
}

.model.couponModelPop .model-Wrap .heig {
    height: 100%;
}

.model.couponModelPop .CouponsPopWrap {
    height: 100%;
    position: relative;
    overflow: scroll;
}

.model.couponModelPop .CouponsPopWrap::-webkit-scrollbar {
    width: 3px;
}

.model.couponModelPop .CouponsPopWrap::-webkit-scrollbar-track {
    box-shadow: none;
}

.model.couponModelPop .CouponsPopWrap::-webkit-scrollbar-thumb {
    background-color: var(--Selectedpurpule, #8fb729);
    outline: 0;
}

.model.couponModelPop .CouponsPopWrap .modelTitle {
    font-size: 24px;
    font-weight: 500;
    color: var(--Selectedgreen, #112a24);
    padding-left: 45px;
    margin-bottom: 30px;
    padding-top: 10px;
    line-height: 1.3;
    z-index: 1;
}

.model.couponModelPop .CouponsPopWrap .wrap {
    display: block;
}

.model.couponModelPop .CouponsPopWrap .coupItem:nth-child(odd) {
    background: #f3f3f3;
}

.model.couponModelPop .CouponsPopWrap .coupItem label {
    padding: 25px 45px;
    display: block;
    padding-left: 95px;
}

.model.couponModelPop .CouponsPopWrap .coupItem label .fakeBox {
    left: 45px;
    width: 27px;
    height: 26px;
    border-color: var(--Selectedgreen, #6b9403);
    border-radius: 5px;
}

.model.couponModelPop .CouponsPopWrap .coupItem label .fakeBox img {
    filter: invert(0) brightness(11);
    opacity: 0;
}

.model.couponModelPop .CouponsPopWrap .coupItem label .couCode {
    padding: 6px 25px;
    border: 2px dashed var(--Selectedpurpule, #8fb729);
    color: var(--Selectedgreen, #6b9403);
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    border-radius: 3px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.model.couponModelPop .CouponsPopWrap .coupItem label .savrate {
    color: var(--SelecteBlack, #000);
    font-weight: 600;
    font-size: 14px;
}

.model.couponModelPop .CouponsPopWrap .coupItem label .exDate {
    font-size: 12px;
    line-height: normal;
}

.model.couponModelPop .CouponsPopWrap .coupItem label input:checked~.fakeBox {
    background: var(--Selectedgreen, #6b9403);
    border-color: var(--Selectedgreen, #6b9403);
}

.model.couponModelPop .CouponsPopWrap .coupItem label input:checked~.fakeBox img {
    opacity: 1;
}

.model.couponModelPop .CouponsPopFot {
    padding: 0 30px;
    margin-top: 25px;
}

.model.couponModelPop .CouponsPopFot .TextMin .textLael {
    color: var(--SelecteBlack, #000);
    font-weight: 600;
    font-size: 14px;
    position: relative;
}

.model.couponModelPop .CouponsPopFot .TextMin .textLael span {
    position: absolute;
    right: 0;
}

.model.couponModelPop .CouponsPopFot .btn_form {
    margin: 30px 0 25px;
}

.model.couponModelPop .CouponsPopFot .btn_form .btn {
    font-size: 18px;
    color: var(--SelecteWhite, #fff);
    font-weight: 600;
    border: 0;
    background: var(--Selectedgreen, #6b9403);
    padding: 9px 0;
    text-align: center;
    display: block;
    width: 100%;
}

.model.couponModelPop .CouponsPopFot .btn_form .btn:not(:last-child) {
    margin-bottom: 15px;
}

.model.couponModelPop .CouponsPopFot .btn_form .btn:last-child {
    background: var(--Selectedgreen, #112a24);
}

.model.couponModelPop .tNote {
    font-size: 13px;
}

.model.modelConfirmBooking .CouponsPopWrap {
    padding: 15px 48px 0;
}

.model.modelConfirmBooking .CouponsPopWrap .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    width: 63px;
    height: 63px;
    border: 1px solid var(--Selectedgreen, var(--Selectedgreen, #112a24));
    border-radius: 60px;
}

.model.modelConfirmBooking .CouponsPopWrap .title {
    font-size: 26px;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    padding: 0;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--Selectedgreen, #112a24);
}

.model.modelConfirmBooking .modelConfirmForm .form .flex .col1 {
    flex: 0 1 100%;
    max-width: 100%;
    padding: 0 5px;
}

.model.modelConfirmBooking .modelConfirmForm .form .flex .col2 {
    flex: 0 1 50%;
    max-width: 50%;
    padding: 0 5px;
}

@media (max-width: 675px) {
    .model.modelConfirmBooking .modelConfirmForm .form .flex .col2 {
        flex: 0 1 100%;
        max-width: 100%;
    }
}

.model.modelConfirmBooking .modelConfirmForm .form .form-control {
    font-size: 16px;
    font-weight: var(--SelecteText, #666);
}

.model.modelConfirmBooking .modelConfirmForm .form .form-control::placeholder {
    font-size: 16px;
    font-weight: var(--SelecteText, #666);
    opacity: 0;
    transition: 0.5s ease;
}

.model.modelConfirmBooking .modelConfirmForm .form .form-control:focus~label {
    top: 0;
}

.model.modelConfirmBooking .modelConfirmForm .form .form-control:focus::placeholder {
    opacity: 1;
}

.model.modelConfirmBooking .modelConfirmForm .form .form-group {
    margin-bottom: 10px;
}

.model.modelConfirmBooking .modelConfirmForm .form .form-group.valid label {
    top: 0;
}

.model.modelConfirmBooking .modelConfirmForm .form label {
    top: 20px;
    pointer-events: none;
}

.model.modelConfirmBooking .modelConfirmForm .form .totAmout {
    position: relative;
    padding: 20px 0 18px;
    border-bottom: 1px solid #b9b9b9;
    margin-bottom: 18px;
}

.model.modelConfirmBooking .modelConfirmForm .form .totAmout .label_p {
    color: var(--Selectedgreen, #112a24);
}

.model.modelConfirmBooking .modelConfirmForm .form .totAmout .pri {
    color: var(--SelecteBlack, #000);
    font-size: 18px;
    font-weight: 600;
    position: absolute;
    right: 0;
    bottom: 18px;
}

.model.modelConfirmBooking .boxTwerCond .checkBoxGroup label {
    height: 24px;
}

.model.modelConfirmBooking .boxTwerCond .checkBoxGroup label,
.model.modelConfirmBooking .boxTwerCond .checkBoxGroup p {
    display: inline-block;
    vertical-align: middle;
}

.model.modelConfirmBooking .boxTwerCond .checkBoxGroup p {
    font-size: 14px;
}

.model.modelConfirmBooking .boxTwerCond .checkBoxGroup p a {
    color: var(--Selectedpurpule, #8fb729);
}

.model.modelConfirmBooking .CouponsPopFot {
    padding: 0;
}

.model.modelConfirmBooking .notes p {
    font-size: 12px;
    line-height: 1.4;
}

.model.modelConfirmBooking.is-open .model-Wrap {
    padding-top: 0;
}

.btn.book_now.notallowed {
    opacity: 0.5;
    pointer-events: none;
}

.banner.roomListing_banner .video {
    line-height: 0;
}

.banner.roomListing_banner .video video {
    width: 100%;
    height: calc(100vh - 61px);
    object-fit: cover;
}

@media (max-width: 991px) {
    .banner.roomListing_banner .video video {
        height: 480px;
    }
}

@media (max-width: 675px) {
    .banner.roomListing_banner .video video {
        height: 400px;
    }
}

@media only screen and (max-width: 420px) {
    .banner.roomListing_banner .video video {
        height: 370px;
    }
}

.banner.roomListing_banner .video::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80%;
    opacity: 0.6;
    background: linear-gradient(to top, var(--SelecteBlack, #000), var(--SelecteBlack, #000), transparent);
    pointer-events: none;
}

.banner.roomListing_banner .banner-wrapper {
    bottom: 70px;
    left: 0;
    right: 0;
}

@media (max-width: 675px) {
    .banner.roomListing_banner .banner-wrapper {
        bottom: 35px;
    }
}

.banner.roomListing_banner .banner-wrapper .content {
    text-align: center;
}

.banner.roomListing_banner .banner-wrapper .content .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--SelecteWhite, #fff);
    width: 63px;
    height: 63px;
    margin: 0 auto 20px;
    border-radius: 65px;
}

@media (max-width: 675px) {
    .banner.roomListing_banner .banner-wrapper .content .logo {
        display: none;
    }
}

.banner.roomListing_banner .banner-wrapper .content .logo img {
    display: block;
    margin: 0 auto;
    filter: grayscale(1) invert(1) brightness(11);
}

.banner.roomListing_banner .banner-wrapper .content p {
    letter-spacing: 6.5px;
    color: var(--SelecteWhite, #fff);
    text-transform: uppercase;
    margin: 10px 0 25px;
}

@media (max-width: 675px) {
    .banner.roomListing_banner .banner-wrapper .content p {
        margin: 10px 0 15px;
        font-size: 14px;
        letter-spacing: 1.5px;
    }
}

.banner.roomListing_banner .banner-wrapper .content .Calton {
    font-size: 60px;
    font-family: calton-elegance-script, sans-serif;
    color: var(--SelecteWhite, #fff);
    line-height: 0.8;
}

.banner.roomListing_banner .banner-wrapper .content h1 {
    color: var(--SelecteWhite, #fff);
    font-size: 60px;
    line-height: normal;
}

@media (max-width: 675px) {
    .banner.roomListing_banner .banner-wrapper .content h1 {
        font-size: 40px;
    }
}

.roomListing_SecA {
    padding: 40px;
    background: #f3f3f3;
}

@media (max-width: 991px) {
    .roomListing_SecA {
        padding: 0px;
    }
}

.roomListing_SecA .action_ntn {
    margin-top: 28px;
}

@media (max-width: 1230px) {
    .roomListing_SecA .action_ntn {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
}

@media (max-width: 991px) {
    .roomListing_SecA .action_ntn {
        margin-top: 15px;
    }
}

.roomListing_SecA .action_ntn .btn {
    display: inline-block;
    margin-right: 20px;
    max-width: 300px;
    padding: 8px 25px;
    font-size: 18px;
    width: 100%;
    border: 1px solid;
    text-align: center;
    transition: 0.5s ease;
}

@media (max-width: 1230px) {
    .roomListing_SecA .action_ntn .btn {
        flex: 0 1 48%;
        max-width: 48%;
        width: 100%;
        margin: 0;
    }
}

@media (max-width: 767px) {
    .roomListing_SecA .action_ntn .btn {
        flex: 0 1 49%;
        max-width: 49%;
        padding: 8px 18px;
        font-size: 16px;
    }
}

.roomListing_SecA .action_ntn .btn:first-child {
    background: var(--Selectedpurpule, #8fb729);
    color: var(--SelecteWhite, #fff);
    border-color: var(--Selectedpurpule, #8fb729);
}

.roomListing_SecA .action_ntn .btn:first-child:hover {
    background: var(--SelecteWhite, #fff);
    color: var(--Selectedgreen, #112a24);
    border-color: var(--Selectedgreen, #112a24);
}

.roomListing_SecA .action_ntn .btn:last-child {
    background: var(--SelecteWhite, #fff);
    color: var(--Selectedgreen, #112a24);
    border-color: var(--Selectedgreen, #112a24);
}

.roomListing_SecA .action_ntn .btn:last-child:hover {
    background: var(--Selectedpurpule, #8fb729);
    color: var(--SelecteWhite, #fff);
    border-color: var(--Selectedpurpule, #8fb729);
}

.roomListingWrap .roomListing {
    background: var(--SelecteWhite, #fff);
    padding: 25px;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .roomListingWrap .roomListing {
        padding: 20px 12px;
    }
}

.roomListingWrap .roomListing .flex .colA {
    flex: 0 1 40%;
    max-width: 40%;
    width: 100%;
    padding-right: 30px;
}

@media (max-width: 767px) {
    .roomListingWrap .roomListing .flex .colA {
        flex: 0 1 100%;
        max-width: 100%;
        padding: 0;
    }
}

.roomListingWrap .roomListing .flex .colB {
    flex: 0 1 60%;
    max-width: 60%;
    width: 100%;
}

@media (max-width: 767px) {
    .roomListingWrap .roomListing .flex .colB {
        flex: 0 1 100%;
        max-width: 100%;
        padding: 0;
    }
}

.roomListingWrap .roomListing figure {
    display: block;
}

@media (max-width: 991px) {
    .roomListingWrap .roomListing figure {
        position: sticky;
        top: 83px;
    }
}

@media (max-width: 767px) {
    .roomListingWrap .roomListing figure {
        position: static;
    }
}

.roomListingWrap .roomListing figure img {
    display: block;
    width: 100%;
}

@media (max-width: 767px) {
    .roomListingWrap .roomListing .listWrap {
        padding: 25px 0;
    }
}

.roomListingWrap .roomListing .listWrap .roomType {
    position: relative;
}

.roomListingWrap .roomListing .listWrap .roomType .roomName {
    font-size: 15px;
    color: var(--SelecteBlack, #000);
    font-weight: 500;
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .roomListingWrap .roomListing .listWrap .roomType .roomName {
        margin-bottom: 10px;
        padding-top: 10px;
    }
}

@media (max-width: 767px) {
    .roomListingWrap .roomListing .listWrap .roomType .roomName {
        font-size: 18px;
    }
}

.roomListingWrap .roomListing .listWrap .roomType .roSdes {
    color: var(--SelecteBlack, #000);
    max-width: 440px;
}

.roomListingWrap .roomListing .listWrap .roomType .roPrice {
    position: absolute;
    top: 10px;
    right: 0;
}

@media (max-width: 991px) {
    .roomListingWrap .roomListing .listWrap .roomType .roPrice {
        top: 0;
    }
}

@media (max-width: 767px) {
    .roomListingWrap .roomListing .listWrap .roomType .roPrice {
        position: static;
        margin-top: 20px;
    }
}

.roomListingWrap .roomListing .listWrap .roomType .roPrice .price {
    font-size: 30px;
    color: var(--SelecteBlack, #000);
    font-weight: 500;
    display: block;
}

.roomListingWrap .roomListing .listWrap .roomType .roPrice .rday {
    font-weight: 500;
    font-size: 12px;
    text-align: right;
}

@media (max-width: 767px) {
    .roomListingWrap .roomListing .listWrap .roomType .roPrice .rday {
        text-align: left;
    }
}

.roomListingWrap .roomListing .listWrap .romSpec {
    display: flex;
    flex-wrap: wrap;
}

.roomListingWrap .roomListing .listWrap .romSpec .RSCard {
    flex: 0 1 20%;
    max-width: 20%;
    width: 100%;
    padding-right: 15px;
    margin: 18px 0 25px;
}

@media (max-width: 1230px) {
    .roomListingWrap .roomListing .listWrap .romSpec .RSCard {
        flex: 0 1 25%;
        max-width: 25%;
    }
}

@media (max-width: 767px) {
    .roomListingWrap .roomListing .listWrap .romSpec .RSCard {
        padding-right: 6px;
    }
}

.roomListingWrap .roomListing .listWrap .romSpec .RSCard .card {
    border: 1px solid #c3c3c3;
    text-align: center;
    padding: 15px 0;
    border-radius: 5px;
    height: 100%;
}

@media (max-width: 991px) {
    .roomListingWrap .roomListing .listWrap .romSpec .RSCard .card {
        padding: 15px 5px;
    }
}

.roomListingWrap .roomListing .listWrap .romSpec .RSCard .card .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 28px;
    margin-bottom: 12px;
}

.roomListingWrap .roomListing .listWrap .romSpec .RSCard .card .icon img {
    display: block;
    margin: 0 auto;
}

.roomListingWrap .roomListing .listWrap .romSpec .RSCard .card p {
    font-weight: 500;
}

@media (max-width: 1230px) {
    .roomListingWrap .roomListing .listWrap .romSpec .RSCard .card p {
        font-size: 14px;
        line-height: 1.2;
    }
}

.roomListingWrap .roomListing .listWrap .romAenies .AmTitle {
    font-size: 18px;
    color: var(--SelecteBlack, #000);
    font-weight: 500;
    margin-bottom: 12px;
}

.roomListingWrap .roomListing .listWrap .romAenies ul li {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding-left: 35px;
    margin-right: 35px;
    margin-bottom: 15px;
}

@media (max-width: 1230px) {
    .roomListingWrap .roomListing .listWrap .romAenies ul li {
        margin-right: 12px;
    }
}

.roomListingWrap .roomListing .listWrap .romAenies ul li .icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.roomListingWrap .roomListing .listWrap .romAenies ul li p {
    font-size: 14px;
    color: var(--SelecteText, #666);
}

.InquiryPopModule {
    position: fixed;
    top: 0;
    left: auto;
    right: 0;
    bottom: 0;
    max-width: 520px;
    width: 100%;
    z-index: 4;
    transform: translateX(100%);
    transition: 0.5s ease;
}

.InquiryPopModule .overlay {
    opacity: 0;
    transition: 0.5s ease;
    transition-delay: 0.5s;
}

.InquiryPopModule .close {
    z-index: 2;
}

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

.InquiryPopModule .wrap {
    height: 100%;
}

.InquiryPopModule .modelBody {
    overflow-y: scroll;
    height: 100%;
    margin-right: -40px;
    padding-right: 40px;
    position: relative;
    z-index: 1;
}

.InquiryPopModule .modelBody.custom-scrol::-webkit-scrollbar-thumb {
    background-color: #f8f8f8;
}

.InquiryPopModule .model-Wrap {
    background: var(--SelecteWhite, #fff);
    padding: 45px;
    position: relative;
    z-index: 1;
    margin-left: auto;
    margin-right: 0;
    height: 100%;
    padding-top: 25px;
    transition: 0.5s ease;
}

@media (max-width: 767px) {
    .InquiryPopModule .model-Wrap {
        padding: 20px;
        padding-top: 25px;
    }
}

.InquiryPopModule .model-Wrap .shade {
    position: absolute;
    bottom: 0;
    right: 0;
    pointer-events: none;
}

.InquiryPopModule .model-Wrap .shade img {
    filter: grayscale(1) brightness(0);
}

.InquiryPopModule .model-Wrap .close {
    top: 20px;
}

.InquiryPopModule .model-Wrap .close svg path {
    fill: var(--SelecteText, #666);
}

.InquiryPopModule .model-Wrap .InquiryForm .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    width: 63px;
    height: 63px;
    border: 1px solid var(--Selectedgreen, var(--Selectedgreen, #112a24));
    border-radius: 60px;
}

.InquiryPopModule .model-Wrap .InquiryForm .title {
    font-size: 26px;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    line-height: 1.5;
    padding: 0;
    margin-bottom: 25px;
    color: var(--Selectedgreen, #112a24);
}

.InquiryPopModule .model-Wrap .InquiryForm p {
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    text-align: center;
}

.InquiryPopModule .model-Wrap .InquiryForm .form-group textarea.form-control {
    padding-top: 10px;
}

.InquiryPopModule .model-Wrap .InquiryForm .form-group .calen img {
    width: 25px;
}

.InquiryPopModule .model-Wrap .intDropdown {
    margin: 20px 0 15px 0;
}

.InquiryPopModule .model-Wrap .intDropdown .subTitile {
    display: block;
    font-weight: 500;
    margin-bottom: 10px;
}

.InquiryPopModule .model-Wrap .intDropdown .group {
    flex-grow: 1;
    margin: 8px 0;
}

@media (max-width: 767px) {
    .InquiryPopModule .model-Wrap .intDropdown .group {
        flex: 0 1 50%;
        max-width: 50%;
    }
}

.InquiryPopModule .model-Wrap .bookig_formrom {
    margin: 0px 0 15px 0;
    position: relative;
}

.InquiryPopModule .model-Wrap .bookig_formrom .subTitile {
    display: block;
    font-weight: 500;
    margin-bottom: 12px;
}

.InquiryPopModule .model-Wrap .bookig_formrom .room_name {
    font-size: 22px;
    color: var(--SelecteBlack, var(--SelecteBlack, #000));
    font-weight: 500;
    margin-bottom: 0;
}

.InquiryPopModule .model-Wrap .bookig_formrom .price {
    color: var(--SelecteBlack, #000);
    position: absolute;
    right: 0;
    top: 35px;
    font-size: 22px;
    font-weight: 500;
}

.InquiryPopModule .model-Wrap .bookig_formrom .pn {
    font-weight: 500;
    font-size: 12px;
    text-align: right;
}

.InquiryPopModule .form-btn {
    text-align: center;
}

.InquiryPopModule .form-btn .btn {
    padding: 5px 35px;
    font-size: 16px;
    border: 1px solid var(--Selectedpurpule, #8fb729);
    width: 100%;
    background: var(--Selectedpurpule, #8fb729);
    color: var(--SelecteWhite, #fff);
}

.model.humbuger_navigation {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    transform: translateX(-100%);
    z-index: 4;
    max-width: 420px;
    width: 100%;
    transition: 0.5s ease;
}

.model.humbuger_navigation .close {
    right: 20px;
    top: 5px;
    z-index: 2;
}

@media (max-width: 675px) {
    .model.humbuger_navigation .close {
        right: 8px;
    }
}

.model.humbuger_navigation .close::before {
    content: "Close";
    margin-left: -51px;
    margin-right: 6px;
    font-size: 14px;
}

.model.humbuger_navigation .close svg path {
    fill: var(--SelecteBlack, #000);
}

.model.humbuger_navigation.is-open {
    transform: translateX(0%);
}

.model.humbuger_navigation .model-body {
    background-color: var(--SelecteWhite, #fff);
    padding: 45px 0px;
    padding-bottom: 20px;
    padding-right: 0;
    margin-left: 0;
    height: 100%;
    position: relative;
    z-index: 11;
}

@media (max-width: 767px) {
    .model.humbuger_navigation .model-body {
        padding: 25px 0;
    }
}

.model.humbuger_navigation .close_model img {
    width: 12px;
}

.model.humbuger_navigation .nav_link li {
    display: block;
}

.model.humbuger_navigation .nav_link li a {
    display: block;
    color: var(--SelecteText, #666);
    padding: 11px 0px;
    font-size: 25px;
    font-weight: 600;
    transition: 0.5s ease;
}

.model.humbuger_navigation .nav_link li:hover>a {
    color: var(--Selectedpurpule, #8fb729);
    padding-left: 5px;
}

.model.humbuger_navigation .contacLinks {
    margin-top: 25px;
}

.model.humbuger_navigation .contactLin .link p {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
}

.model.humbuger_navigation .contactLin .link p img {
    display: inline-block;
    margin-right: 15px;
    filter: invert(0.7) grayscale(1);
}

.model.humbuger_navigation .contactLin .link p a {
    display: inline-block;
    vertical-align: middle;
    color: var(--SelecteText, #666);
    font-size: 14px;
}

.model.humbuger_navigation .contactLin .link p a:hover {
    color: var(--Selectedpurpule, #8fb729);
}

.model.humbuger_navigation .contactLin .link p.tel img {
    margin-top: 7px;
}

.model.humbuger_navigation .Whts {
    display: inline-block;
    margin-right: 6px;
}

.model.humbuger_navigation .Whts a {
    padding: 3px 10px;
    border: 1px solid var(--SelecteText, #666);
    display: inline-block;
    color: var(--SelecteText, #666);
    font-size: 14px;
    transition: 0.5s ease;
    border-radius: 3px;
}

.model.humbuger_navigation .Whts a:hover {
    color: var(--SelecteWhite, #fff);
    border-color: var(--Selectedpurpule, #8fb729);
    background: var(--Selectedpurpule, #8fb729);
}

.model.humbuger_navigation .Whts a:hover img {
    filter: invert(0);
}

.model.humbuger_navigation .Whts a img,
.model.humbuger_navigation .Whts a span {
    display: inline-block;
    vertical-align: middle;
}

.model.humbuger_navigation .Whts a img {
    margin-right: 3px;
    filter: invert(0.7) grayscale(1);
    width: 20px;
    transition: 0.5s ease;
}

.model.humbuger_navigation .social_links {
    display: inline-block;
}

.model.humbuger_navigation .social_links ul li {
    display: inline-block;
}

.model.humbuger_navigation .social_links ul li:not(:last-child) {
    margin-right: 4px;
}

.model.humbuger_navigation .social_links ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33px;
    height: 33px;
    border: 1px solid var(--SelecteText, #666);
    border-radius: 3px;
    padding: 0;
    margin: 0;
    transition: 0.5s ease;
}

.model.humbuger_navigation .social_links ul li a svg {
    width: 16px;
    height: 16px;
}

.model.humbuger_navigation .social_links ul li a svg path {
    fill: var(--SelecteText, #666);
}

.model.humbuger_navigation .social_links ul li:hover a {
    padding: 0;
    border-color: var(--Selectedpurpule, #8fb729);
    background: var(--Selectedpurpule, #8fb729);
}

.model.humbuger_navigation .social_links ul li:hover a svg path {
    fill: var(--SelecteWhite, #fff);
}

.model.humbuger_navigation .social_links,
.model.humbuger_navigation .Whts {
    display: inline-block;
    vertical-align: middle;
    margin-top: 15px;
}

.model.humbuger_navigation .oter_pages {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e5e5e5;
}

.model.humbuger_navigation .oter_pages ul.nav_link li a {
    font-size: 18px;
    color: var(--SelecteText, #666);
    padding: 5px 0;
    transition: 0.5s ease;
    font-weight: normal;
}

.model.humbuger_navigation .oter_pages ul.nav_link li a:hover {
    color: var(--Selectedpurpule, #8fb729);
}

.model.humbuger_navigation .nav_link li.dropdown {
    position: relative;
}

.model.humbuger_navigation .nav_link li.dropdown a {
    display: block;
}

.model.humbuger_navigation .nav_link li.dropdown .sub-nav-trigger {
    position: absolute;
    right: -20px;
    top: 7px;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: var(--SelecteWhite, #fff);
    transition: 0.5s ease;
}

@media (max-width: 767px) {
    .model.humbuger_navigation .nav_link li.dropdown .sub-nav-trigger {
        right: -2px;
    }
}

.model.humbuger_navigation .nav_link li.dropdown .sub-nav-trigger::before,
.model.humbuger_navigation .nav_link li.dropdown .sub-nav-trigger::after {
    content: "";
    position: absolute;
    background: var(--SelecteText, #666);
    opacity: 1;
    transition: 0.5s ease;
}

.model.humbuger_navigation .nav_link li.dropdown .sub-nav-trigger::before {
    width: 2px;
    height: 12px;
}

.model.humbuger_navigation .nav_link li.dropdown .sub-nav-trigger::after {
    width: 12px;
    height: 2px;
}

.model.humbuger_navigation .nav_link li.dropdown .sub-nav-trigger:hover {
    background: #f1f1f1;
}

.model.humbuger_navigation .nav_link li.dropdown .sub-nav {
    display: none;
    background: #f1f1f1;
    padding: 10px 0;
    margin: 0 -50px 0 -50px;
    padding-left: 60px;
}

.model.humbuger_navigation .nav_link li.dropdown .sub-nav li a {
    font-size: 16px;
    line-height: normal;
    padding: 6px 0;
    color: var(--SelecteText, #666);
    font-weight: normal;
    transition: 0.5s ease;
}

.model.humbuger_navigation .nav_link li.dropdown .sub-nav li a:hover {
    color: var(--Selectedpurpule, #8fb729);
}

.model.humbuger_navigation .nav_link li.dropdown.active>a {
    color: var(--Selectedpurpule, #8fb729);
}

.model.humbuger_navigation .nav_link li.dropdown.active .sub-nav-trigger::before {
    opacity: 0;
}

.model.humbuger_navigation .model_scroll {
    height: 100%;
    overflow: hidden;
    overflow-y: scroll;
    padding: 10px 40px 15px;
    position: relative;
    padding-right: 51px;
    z-index: 1;
}

@media (max-width: 767px) {
    .model.humbuger_navigation .model_scroll {
        padding: 10px 20px 15px;
    }
}

.model.humbuger_navigation .model_scroll::-webkit-scrollbar {
    width: 3px;
}

.model.humbuger_navigation .model_scroll::-webkit-scrollbar-track {
    box-shadow: unset;
    background: transparent;
}

.model.humbuger_navigation .model_scroll::-webkit-scrollbar-thumb {
    background-color: var(--Selectedpurpule, #8fb729);
}

.model.humbuger_navigation .shade {
    position: absolute;
    bottom: 0;
    right: 0;
    pointer-events: none;
}

.model.humbuger_navigation .shade img {
    filter: invert(1);
}

.banner.thank-you_banner .bg img {
    height: calc(100vh - 365px) !important;
}

@media (max-width: 1024px) {
    .banner.thank-you_banner .bg img {
        height: 235px !important;
    }
}

@media (max-width: 991px) {
    .banner.contact_banner {
        margin-top: 60px;
    }
}

.banner.contact_banner .bg img {
    height: calc(100vh - 61px);
    object-fit: cover;
}

@media (max-width: 1024px) {
    .banner.contact_banner .bg img {
        height: 100%;
    }
}

.banner.contact_banner .bg::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80%;
    opacity: 0.6;
    background: linear-gradient(to top, var(--SelecteBlack, #000), var(--SelecteBlack, #000), transparent);
    pointer-events: none;
}

.banner.contact_banner .banner-wrapper {
    bottom: 100px;
    left: 0;
    right: 0;
}

@media (max-width: 675px) {
    .banner.contact_banner .banner-wrapper {
        bottom: 30px;
    }
}

.banner.contact_banner .banner-wrapper .content {
    text-align: center;
}

.banner.contact_banner .banner-wrapper .content .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--SelecteWhite, #fff);
    width: 63px;
    height: 63px;
    margin: 0 auto 20px;
    border-radius: 65px;
}

@media (max-width: 675px) {
    .banner.contact_banner .banner-wrapper .content .logo {
        display: none;
    }
}

.banner.contact_banner .banner-wrapper .content .logo img {
    display: block;
    margin: 0 auto;
    filter: grayscale(1) invert(1) brightness(11);
}

.banner.contact_banner .banner-wrapper .content p {
    letter-spacing: 6.5px;
    color: var(--SelecteWhite, #fff);
    text-transform: uppercase;
    margin: 10px 0;
}

@media (max-width: 675px) {
    .banner.contact_banner .banner-wrapper .content p {
        letter-spacing: 1.5px;
        font-size: 14px;
    }
}

.banner.contact_banner .banner-wrapper .content h1 {
    color: var(--SelecteWhite, #fff);
    font-size: 60px;
    line-height: normal;
}

@media (max-width: 675px) {
    .banner.contact_banner .banner-wrapper .content h1 {
        font-size: 40px;
        line-height: 45px;
    }
}

.Contact-Page-SecA {
    background: #222422d4;
    padding: 100px 0;
}

@media (max-width: 991px) {
    .Contact-Page-SecA {
        padding: 40px 0;
    }
}

.Contact-Page-SecA .flex .colA {
    flex: 0 1 40%;
    max-width: 40%;
    width: 100%;
}

@media (max-width: 991px) {
    .Contact-Page-SecA .flex .colA {
        flex: 0 1 30%;
        max-width: 30%;
    }
}

@media (max-width: 767px) {
    .Contact-Page-SecA .flex .colA {
        flex: 0 1 100%;
        max-width: 100%;
    }
}

.Contact-Page-SecA .flex .colB {
    flex: 0 1 60%;
    max-width: 60%;
    width: 100%;
    padding-left: 35px;
}

@media (max-width: 991px) {
    .Contact-Page-SecA .flex .colB {
        flex: 0 1 70%;
        max-width: 70%;
    }
}

@media (max-width: 767px) {
    .Contact-Page-SecA .flex .colB {
        flex: 0 1 100%;
        max-width: 100%;
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .Contact-Page-SecA .logo img {
        max-width: 120px;
        display: block;
        margin: 0 auto 25px;
    }
}

.Contact-Page-SecA .contactInfor .info ul li {
    position: relative;
    padding: 12px 0;
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .Contact-Page-SecA .contactInfor .info ul li {
        display: block;
        border: 1px solid rgba(102, 102, 102, 0.1215686275);
        margin-bottom: 17px;
        border-radius: 5px;
        margin-right: 40px;
    }
}

.Contact-Page-SecA .contactInfor .info ul li .icon {
    width: 49px;
    height: 49px;
    border: 1px solid var(--Selectedpurpule, #8fb729);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
}

@media (max-width: 767px) {
    .Contact-Page-SecA .contactInfor .info ul li .icon {
        margin: 0 auto 15px;
    }
}

.Contact-Page-SecA .contactInfor .info ul li .icon img {
    display: block;
}

.Contact-Page-SecA .contactInfor .info .text {
    flex: 1;
}

@media (max-width: 767px) {
    .Contact-Page-SecA .contactInfor .info .text {
        text-align: center;
    }
}

.Contact-Page-SecA .contactInfor .info .text p {
    color: var(--SelecteText, #666);
}

@media (max-width: 767px) {
    .Contact-Page-SecA .contactInfor .info .text p {
        font-size: 14px;
    }
}

.Contact-Page-SecA .contactInfor .info .text p span {
    display: block;
}

.Contact-Page-SecA .contactInfor .info .text p a {
    display: inline-block;
    color: inherit;
    position: relative;
    color: var(--SelecteText, #666);
    transition: 0.5s ease;
}

.Contact-Page-SecA .contactInfor .info .text p a:hover {
    color: var(--Selectedpurpule, #8fb729);
}

.Contact-Page-SecA .contactInfor .info .tel .text p a {
    padding-right: 8px;
}

.Contact-Page-SecA .contactInfor .info .tel .text p a:not(:last-child)::after {
    content: "/";
    color: var(--SelecteText, #666);
    padding-left: 8px;
}

.Contact-Page-SecA .contactInfor .contact-btn {
    margin-top: 40px;
}

.Contact-Page-SecA .contactInfor .contact-btn a {
    display: inline-block;
    padding: 7px 25px;
    border: 1px solid var(--Selectedgreen, #112a24);
    transition: 0.5s ease;
}

@media (max-width: 675px) {
    .Contact-Page-SecA .contactInfor .contact-btn a {
        width: 100%;
        text-align: center;
    }
}

.Contact-Page-SecA .contactInfor .contact-btn a:not(:last-child) {
    margin-right: 10px;
}

@media (max-width: 675px) {
    .Contact-Page-SecA .contactInfor .contact-btn a:not(:last-child) {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

.Contact-Page-SecA .contactInfor .contact-btn a img,
.Contact-Page-SecA .contactInfor .contact-btn a span {
    display: inline-block;
    vertical-align: middle;
}

.Contact-Page-SecA .contactInfor .contact-btn a img {
    margin-right: 10px;
    transition: 0.5s ease;
}

.Contact-Page-SecA .contactInfor .contact-btn a.gitouch {
    background: var(--Selectedpurpule, #8fb729);
    color: var(--SelecteWhite, #fff);
    border-color: var(--Selectedpurpule, #8fb729);
}

.Contact-Page-SecA .contactInfor .contact-btn a.gitouch img {
    filter: grayscale(11) invert(11) brightness(0) invert(1);
}

.Contact-Page-SecA .contactInfor .contact-btn a.gitouch:hover {
    border-color: var(--Selectedgreen, #112a24);
    background: var(--Selectedgreen, #112a24);
}

.Contact-Page-SecA .contactInfor .contact-btn a.tallink {
    color: #8fb729;
    border: 2px solid #8fb729;
}

.Contact-Page-SecA .contactInfor .contact-btn a.tallink:hover {
    background: var(--Selectedpurpule, #8fb729);
    color: var(--SelecteWhite, #fff);
    border-color: var(--Selectedpurpule, #8fb729);
}

.Contact-Page-SecA .contactInfor .contact-btn a.tallink:hover img {
    filter: grayscale(11) invert(11) brightness(0) invert(1);
}

.Contact-Page-SecB {
    background: #d5e1d5a8;
    padding: 70px 0;
    overflow: hidden;
    justify-content: center;
}

.Contact-Page-SecB .flex .colA {
    flex: 0 1 40%;
    max-width: 40%;
    width: 100%;
    padding-right: 35px;
}

@media (max-width: 991px) {
    .Contact-Page-SecB .flex .colA {
        flex: 0 1 50%;
        max-width: 50%;
        padding-right: 15px;
    }
}

@media (max-width: 767px) {
    .Contact-Page-SecB .flex .colA {
        flex: 0 1 100%;
        max-width: 100%;
        padding-right: 0;
    }
}

.Contact-Page-SecB .flex .colB {
    flex: 0 1 60%;
    max-width: 60%;
    width: 100%;
    padding-left: 45px;
}

@media (max-width: 991px) {
    .Contact-Page-SecB .flex .colB {
        flex: 0 1 50%;
        max-width: 50%;
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .Contact-Page-SecB .flex .colB {
        flex: 0 1 100%;
        max-width: 100%;
        padding-right: 0;
    }
}

.Contact-Page-SecB .slideContact {
    max-width: 400px;
    width: 100%;
    display: block;
    margin: 0 auto;
}

.Contact-Page-SecB .slideContact .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
    text-align: center;
}

.Contact-Page-SecB .slideContact .owl-dots button.owl-dot {
    display: inline-block;
    margin: 0 4px;
    width: 9px;
    height: 9px;
    background: var(--SelecteWhite, #fff);
    opacity: 0.6;
    margin: 0 5px;
    border-radius: 20px;
}

.Contact-Page-SecB .slideContact .owl-dots button.owl-dot.active {
    opacity: 1;
}

@media (max-width: 767px) {
    .Contact-Page-SecB .ContactPageForm {
        padding-top: 20px;
    }
}

.Contact-Page-SecB .ContactPageForm h2 {
    margin-bottom: 5px;
    color: var(--SelecteBlack, #000);
    font-size: 48px;
    padding-left: 10px;
}

@media (max-width: 767px) {
    .Contact-Page-SecB .ContactPageForm h2 {
        font-size: 40px;
        line-height: 42px;
    }
}

@media (max-width: 675px) {
    .Contact-Page-SecB .ContactPageForm h2 {
        font-size: 30px;
        line-height: 35px;
    }
}

@media (max-width: 520px) {
    .Contact-Page-SecB .ContactPageForm h2 {
        padding-left: 0px;
    }
}

.Contact-Page-SecB .ContactPageForm .col {
    flex: 0 1 50%;
    max-width: 50%;
    width: 100%;
    padding: 0 10px;
}

@media (max-width: 767px) {
    .Contact-Page-SecB .ContactPageForm .col {
        padding: 0;
        flex: 0 1 100%;
        max-width: 100%;
    }
}

.Contact-Page-SecB .ContactPageForm .colfull {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
    padding: 0 10px;
}

@media (max-width: 767px) {
    .Contact-Page-SecB .ContactPageForm .colfull {
        padding: 0;
        flex: 0 1 100%;
        max-width: 100%;
    }
}

.Contact-Page-SecB .ContactPageForm .form .form-control {
    font-size: 16px;
    font-weight: var(--SelecteText, #666);
    border-color: var(--SelecteBlack, #000);
    background: #f2f2f2;
}

.Contact-Page-SecB .ContactPageForm .form .form-control::placeholder {
    font-size: 16px;
    font-weight: var(--SelecteText, #666);
    opacity: 0;
    transition: 0.5s ease;
}

.Contact-Page-SecB .ContactPageForm .form .form-control:focus {
    border-color: var(--Selectedpurpule, #8fb729);
}

.Contact-Page-SecB .ContactPageForm .form .form-control:focus~label {
    top: 0;
}

.Contact-Page-SecB .ContactPageForm .form .form-control:focus::placeholder {
    opacity: 1;
}

.Contact-Page-SecB .ContactPageForm .form .form-group .icon img {
    width: 20px;
}

.Contact-Page-SecB .ContactPageForm .form .form-group.valid .form-control {
    border-color: var(--Selectedpurpule, #8fb729);
}

.Contact-Page-SecB .ContactPageForm .form .form-group.valid label {
    top: 0;
}

.Contact-Page-SecB .ContactPageForm .form label {
    top: 20px;
    pointer-events: none;
}

.Contact-Page-SecB .ContactPageForm .form .inqFor .subTitile {
    color: var(--SelecteBlack, #000);
    font-weight: 600;
    margin-bottom: 15px;
}

@media (max-width: 520px) {
    .Contact-Page-SecB .ContactPageForm .form .groupCheckBox ul {
        display: flex;
        flex-wrap: wrap;
    }
}

.Contact-Page-SecB .ContactPageForm .form .groupCheckBox ul li {
    display: inline-block;
    margin-bottom: 8px;
}

@media (max-width: 520px) {
    .Contact-Page-SecB .ContactPageForm .form .groupCheckBox ul li {
        flex: 0 1 50%;
        max-width: 50%;
        line-height: 1.4;
    }
}

.Contact-Page-SecB .ContactPageForm .form .groupCheckBox ul li:not(:last-child) {
    padding-right: 18px;
}

@media only screen and (max-width: 365px) {
    .Contact-Page-SecB .ContactPageForm .form .groupCheckBox ul li:not(:last-child) {
        padding-right: 0;
    }
}

.Contact-Page-SecB .ContactPageForm .form .groupCheckBox ul li label {
    position: relative;
    top: 0;
    display: block;
    padding-left: 25px;
    pointer-events: all;
    font-size: 14px;
}

@media only screen and (max-width: 365px) {
    .Contact-Page-SecB .ContactPageForm .form .groupCheckBox ul li label {
        font-size: 13px;
        padding-right: 0px;
    }
}

.Contact-Page-SecB .ContactPageForm .form .groupCheckBox ul li label .fakebox {
    width: 17px;
    height: 17px;
    border: 1px solid var(--SelecteBlack, #000);
    border-radius: 20px;
    position: absolute;
    left: 0;
    top: 5px;
    transition: 0.5s ease;
}

@media only screen and (max-width: 365px) {
    .Contact-Page-SecB .ContactPageForm .form .groupCheckBox ul li label .fakebox {
        top: 0px;
        width: 15px;
        height: 15px;
    }
}

.Contact-Page-SecB .ContactPageForm .form .groupCheckBox ul li label span {
    display: block;
}

.Contact-Page-SecB .ContactPageForm .form .groupCheckBox ul li label input {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0;
}

.Contact-Page-SecB .ContactPageForm .form .groupCheckBox ul li label input:checked~.fakebox {
    border-width: 5px;
    border-color: var(--Selectedpurpule, #8fb729);
}

.Contact-Page-SecB .ContactPageForm .form .btn-from {
    margin-top: 30px;
}

.Contact-Page-SecB .ContactPageForm .form .btn-from .btn {
    display: inline-block;
    border: 1px solid var(--Selectedpurpule, #8fb729);
    background: var(--Selectedpurpule, #8fb729);
    color: var(--SelecteWhite, #fff);
    font-weight: 600;
    text-transform: uppercase;
    padding: 6px 28px;
    min-width: 170px;
    font-size: 16px;
    transition: 0.5s ease;
}

.Contact-Page-SecB .ContactPageForm .form .btn-from .btn:hover {
    background: var(--SelecteWhite, #fff);
    color: var(--Selectedpurpule, #8fb729);
}

.Thank-You_Sec {
    padding: 50px 0;
}

.Thank-You_Sec .content {
    text-align: -webkit-center;
}

.Thank-You_Sec .content p {
    max-width: 450px;
    margin: 0 auto;
}

.Thank-You_Sec .content .btn_home {
    margin-top: 30px;
}

.Thank-You_Sec .content .btn_home a {
    border: 1px solid var(--Selectedgreen, #112a24);
    color: var(--Selectedgreen, #112a24);
    padding: 8px 40px;
    display: inline-block;
    transition: 0.5s ease;
    border-radius: 30px;
}

.Thank-You_Sec .content .btn_home a:hover {
    background: var(--Selectedgreen, #112a24);
    color: var(--SelecteWhite, #fff);
}

footer {
    background: linear-gradient(to left, #658147 0%, #597445 50%);
    padding: 35px 0;
}

@media (max-width: 675px) {
    footer {
        padding: 20px 0;
        background: linear-gradient(to left, #658147, #597445);
        margin-bottom: 36px;
    }
}

footer .col1 {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
}

@media (max-width: 675px) {
    footer .col1 {
        order: 3;
    }
}

footer .col2 {
    flex: 0 1 50%;
    max-width: 50%;
    width: 100%;
}

@media (max-width: 991px) {
    footer .col2 {
        flex: 0 1 100%;
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    footer .col2:first-child {
        order: 2;
    }
}

@media (max-width: 991px) {
    footer .col2:last-child {
        order: 1;
    }
}

footer .col3 {
    flex: 0 1 33.33%;
    max-width: 33.33%;
    width: 100%;
}

@media (max-width: 675px) {
    footer .col3 {
        flex: 0 1 100%;
        max-width: 100%;
    }
}

@media (max-width: 675px) {
    footer .col3:first-child {
        order: 2;
    }
}

@media (max-width: 675px) {
    footer .col3:nth-child(2) {
        order: 1;
    }
}

@media (max-width: 675px) {
    footer .col3:nth-child(3) {
        order: 4;
    }
}

footer .title {
    display: none;
    text-align: left;
    color: var(--SelecteWhite, #fff);
    font-size: 16px;
    margin-bottom: 11px;
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
}

@media (max-width: 675px) {
    footer .title {
        display: block;
    }
}

footer p,
footer li,
footer a {
    color: var(--SelecteWhite, #fff);
    font-size: 14px;
    transition: 0.5s ease;
}

footer .contactLin {
    max-width: 285px;
    width: 100%;
    margin-left: auto;
    margin-right: 0;
}

@media (max-width: 675px) {
    footer .contactLin {
        max-width: 100%;
        margin: 25px 0 0;
    }
}

@media (max-width: 675px) {
    footer .logo {
        padding-bottom: 20px;
        margin-bottom: 20px;
        border-bottom: 1px solid rgba(253, 253, 253, 0.1098039216);
    }
}

footer .logo img {
    display: block;
    margin: 0 auto;
}

@media (max-width: 675px) {
    footer .logo img {
        max-width: 122px;
    }
}

@media (max-width: 675px) {
    footer .navLink ul {
        display: flex;
        flex-wrap: wrap;
    }
}

footer .navLink ul li {
    display: block;
}

@media (max-width: 675px) {
    footer .navLink ul li {
        flex: 0 1 50%;
        max-width: 50%;
    }
}

footer .navLink ul li a {
    display: inline-block;
    padding: 3px 0;
}

@media (max-width: 675px) {
    footer .navLink ul li a {
        padding: 3px 0px;
        color: #d5d5d5;
    }
}

footer .navLink ul li a:hover {
    color: var(--Selectedpurpule, #8fb729);
}

footer .contactLin .link p {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
}

footer .contactLin .link p img {
    display: inline-block;
    margin-right: 18px;
}

footer .contactLin .link p a {
    display: inline-block;
    vertical-align: middle;
}

footer .contactLin .link p a:hover {
    color: var(--Selectedpurpule, #8fb729);
}

footer .contactLin .link p.tel img {
    margin-top: 10px;
}

footer .contactLin .Whts {
    margin-top: 25px;
}

footer .contactLin .Whts a {
    padding: 6px 25px 9px;
    border: 1px solid var(--SelecteWhite, #fff);
    display: inline-block;
    background: transparent;
    transition: 0.5s ease;
}

footer .contactLin .Whts a:hover {
    background: var(--Selectedpurpule, #8fb729);
    border-color: var(--Selectedpurpule, #8fb729);
}

footer .contactLin .Whts a img,
footer .contactLin .Whts a span {
    display: inline-block;
    vertical-align: middle;
}

footer .contactLin .Whts a img {
    margin-right: 12px;
}

footer .nav {
    text-align: center;
    margin-top: 70px;
}

@media (max-width: 675px) {
    footer .nav {
        margin-top: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2509803922);
        border-top: 1px solid rgba(255, 255, 255, 0.2509803922);
        padding-top: 20px;
        display: flex;
        flex-wrap: wrap;
    }
}

footer .nav a {
    display: inline-block;
    color: #879d97;
    padding: 5px;
    margin: 0 20px;
}

@media (max-width: 675px) {
    footer .nav a {
        padding: 3px 0px;
        margin: 0;
        text-align: left;
        color: #d5d5d5;
        flex: 0 1 50%;
        max-width: 50%;
        width: 100%;
    }
}

footer .nav a:hover {
    color: var(--Selectedpurpule, #8fb729);
}

@media (max-width: 991px) {
    footer .copy_right {
        text-align: center;
        color:#fff
    }
}

footer .copy_right p {
    color: #879d97;
    color:#fff
}

@media (max-width: 675px) {
    footer .copy_right p {
        color: #d5d5d5;
        color:#fff
    }
}

footer .copy_right p span,
footer .copy_right p a {
    display: inline-block;
    vertical-align: middle;
    color:#fff
}

footer .copy_right p span {
    margin-right: 6px;
    color:#fff
}

footer .footer_bottom {
    margin-top: 60px;
    padding-top: 40px;
    position: relative;
}

@media (max-width: 675px) {
    footer .footer_bottom {
        margin-top: 0px;
    }
}

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

footer .footer_bottom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--SelecteWhite, #fff);
    opacity: 0.1;
}

@media (max-width: 675px) {
    footer .footer_bottom::before {
        display: none;
    }
}

footer .footer_bottom .footer_aside {
    text-align: right;
}

@media (max-width: 991px) {
    footer .footer_bottom .footer_aside {
        text-align: center;
    }
}

footer .footer_bottom .nav {
    margin-top: 0;
}

footer .footer_bottom .privacy,
footer .footer_bottom .so-links {
    display: inline-block;
    vertical-align: middle;
}

footer .footer_bottom .privacy .nav a {
    display: inline-block;
    margin: 0 5px;
    color: #fff;
}

@media (max-width: 675px) {
    footer .footer_bottom .privacy .nav a {
        padding: 3px 0;
        margin: 0;
        flex: 0 1 50%;
        max-width: 50%;
        width: 100%;
        color: #fff;
    }
}

footer .footer_bottom .so-links {
    margin: 20px 0;
}

footer .footer_bottom .so-links ul li {
    display: inline-block;
    margin-left: 12px;
}

footer .footer_bottom .so-links ul li a {
    color: #879d97;
    width: 41px;
    height: 41px;
    border: 1px solid var(--SelecteWhite, #fff);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: 0.5s ease;
}

footer .footer_bottom .so-links ul li a:hover {
    background: var(--Selectedpurpule, #8fb729);
    border-color: var(--Selectedpurpule, #8fb729);
}

footer .footer_bottom .so-links ul li a svg {
    display: block;
    width: 18px;
    height: 18px;
}

footer .footer_bottom .so-links ul li a svg path {
    fill: var(--SelecteWhite, #fff);
}

@media (max-width: 1140px) {
    footer .footer_bottom .col2:first-child {
        flex: 0 1 45%;
        max-width: 45%;
    }
}

@media (max-width: 991px) {
    footer .footer_bottom .col2:first-child {
        flex: 0 1 50%;
        max-width: 50%;
    }
}

@media (max-width: 675px) {
    footer .footer_bottom .col2:first-child {
        flex: 0 1 100%;
        max-width: 100%;
    }
}

@media (max-width: 1140px) {
    footer .footer_bottom .col2:last-child {
        flex: 0 1 55%;
        max-width: 55%;
    }
}

@media (max-width: 991px) {
    footer .footer_bottom .col2:last-child {
        flex: 0 1 50%;
        max-width: 50%;
    }
}

@media (max-width: 675px) {
    footer .footer_bottom .col2:last-child {
        flex: 0 1 100%;
        max-width: 100%;
    }
}

footer .footer-wrapper>.container {
    position: relative;
}

footer .footer-wrapper>.container::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: -60px;
    left: 70px;
    background: url(../images/ws_lo.png);
    width: 20%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    pointer-events: none;
}

.Blog_SecA {
    padding: 45px 0 70px;
}

@media (max-width: 991px) {
    .Blog_SecA {
        padding: 100px 0 70px;
    }
}

@media (max-width: 675px) {
    .Blog_SecA {
        padding: 100px 0 40px;
    }
}

.Blog_SecA .heading {
    text-align: -webkit-center;
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .Blog_SecA .heading {
        margin-bottom: 20px;
    }
}

.Blog_SecA .heading h2 {
    color: var(--Selectedgreen, #112a24);
    margin-top: 10px;
    font-family: Poppins, sans-serif;
}

.Blog_SecA .blog-content {
    padding: 0 25px;
}

@media (max-width: 767px) {
    .Blog_SecA .blog-content {
        padding: 0 10px;
    }
}

.Blog_SecA .blog-content .flex {
    justify-content: space-between;
    gap: 10px 0;
}

@media (max-width: 991px) {
    .Blog_SecA .blog-content .flex {
        gap: 0;
        justify-content: unset;
    }
}

.Blog_SecA .blog-content .flex .col {
    position: relative;
}

@media (min-width: 992px) {
    .Blog_SecA .blog-content .flex .col {
        flex: 0 1 33.33%;
        max-width: 33.33%;
        padding: 5px;
    }
}

@media (max-width: 991px) {
    .Blog_SecA .blog-content .flex .col {
        flex: 0 1 33.33%;
        max-width: 33.33%;
        padding: 5px;
    }
}

@media (max-width: 767px) {
    .Blog_SecA .blog-content .flex .col {
        flex: 0 1 50%;
        max-width: 50%;
    }
}

@media (max-width: 520px) {
    .Blog_SecA .blog-content .flex .col {
        flex: 0 1 100%;
        max-width: 100%;
        padding: 5px 5px;
    }
}

.Blog_SecA .blog-content .flex .col .card {
    position: relative;
    height: 100%;
}

.Blog_SecA .blog-content .flex .col .card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    user-select: none;
    pointer-events: none;
    z-index: 1;
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 65%, rgba(0, 0, 0, 0.75) 100%);
}

.Blog_SecA .blog-content .flex .col figure {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.Blog_SecA .blog-content .flex .col figure img {
    width: inherit;
    height: inherit;
    transition: 0.5s ease;
}

.Blog_SecA .blog-content .flex .col .blog_inf {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8%;
    z-index: 1;
    width: 100%;
    padding: 0px 15px;
}

@media (max-width: 991px) {
    .Blog_SecA .blog-content .flex .col .blog_inf {
        left: 0;
        bottom: 0;
        padding: 20px 15px;
    }
}

.Blog_SecA .blog-content .flex .col .blog_inf p {
    font-size: 20px;
    color: var(--SelecteWhite, #fff);
}

@media (max-width: 991px) {
    .Blog_SecA .blog-content .flex .col .blog_inf p {
        font-size: 15px;
        line-height: 1.3;
    }
}

.Blog_SecA .blog-content .flex .col .blog_inf span {
    font-size: 12px;
    color: var(--SelecteWhite, #fff);
}

.Blog_SecA .blog-content .flex .col .blog_link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.Blog_SecA .blog-content .flex .col:hover img {
    transform: scale(1.1);
}

.Blog_SecA .load_btn {
    margin-top: 50px;
}

.Blog_SecA .load_btn a {
    border: 1px solid var(--Selectedgreen, #112a24);
    color: var(--Selectedgreen, #112a24);
    padding: 8px 40px;
    display: inline-block;
    transition: 0.5s ease;
}

.Blog_SecA .load_btn a:hover {
    background: var(--Selectedgreen, #112a24);
    color: var(--SelecteWhite, #fff);
}

.Blog-detail_banner {
    position: relative;
}

@media (max-width: 991px) {
    .Blog-detail_banner {
        margin-top: 60px;
    }
}

@media (max-width: 767px) {
    .Blog-detail_banner .bg img {
        height: 300px;
        object-fit: cover;
    }
}

.Blog-detail_banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    user-select: none;
    pointer-events: none;
    z-index: 1;
    background: rgb(255, 255, 255);
    background: linear-gradient(265deg, rgba(255, 255, 255, 0) 32%, rgba(0, 0, 0, 0.75) 95%);
}

.Blog-detail_banner .banner-wrapper {
    position: absolute;
    top: 50%;
    left: 7%;
    z-index: 1;
    transform: translate(0%, -50%);
    left: 0;
    padding: 15px;
}

.Blog-detail_banner .banner-wrapper .content {
    max-width: 500px;
    margin-right: auto;
}

.Blog-detail_banner .banner-wrapper .content p {
    font-weight: 500;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .Blog-detail_banner .banner-wrapper .content p {
        margin-bottom: 6px;
        font-size: 14px;
    }
}

.Blog-detail_banner .banner-wrapper .content p,
.Blog-detail_banner .banner-wrapper .content h1 {
    color: var(--SelecteWhite, #fff);
}

.Blog-detail_banner .banner-wrapper .content h1 {
    font-size: 30px;
    line-height: 36px;
    font-family: Poppins, sans-serif;
    font-weight: 500;
}

@media (max-width: 767px) {
    .Blog-detail_banner .banner-wrapper .content h1 {
        font-size: 22px;
        line-height: 28px;
    }
}

.Blog-detail_SecA {
    padding: 75px 0 0;
}

@media (max-width: 991px) {
    .Blog-detail_SecA {
        padding: 40px 0 0;
    }
}

.Blog-detail_SecA h2,
.Blog-detail_SecA h3,
.Blog-detail_SecA h4 {
    font-family: Poppins, sans-serif;
    font-weight: 500;
}

.Blog-detail_SecA .flex {
    justify-content: space-between;
}

.Blog-detail_SecA .flex .colA {
    flex: 0 1 67%;
    max-width: 67%;
    width: 100%;
}

@media (max-width: 767px) {
    .Blog-detail_SecA .flex .colA {
        flex: 0 1 100%;
        max-width: 100%;
    }
}

.Blog-detail_SecA .flex .colA .blog_content p {
    text-align: justify;
    margin-bottom: 10px;
    font-weight: 500;
}

.Blog-detail_SecA .flex .colA .blog_content h3 {
    color: var(--SelecteBlack, #000);
    font-size: 24px;
    line-height: normal;
    margin-bottom: 15px;
    font-weight: 600;
    margin-top: 35px;
}

.Blog-detail_SecA .flex .colA .blog_content .img_box {
    margin: 30px 0;
}

@media (max-width: 520px) {
    .Blog-detail_SecA .flex .colA .blog_content .img_box img {
        display: block;
        width: 100% !important;
    }
}

.Blog-detail_SecA .flex .colA .blog_content ul {
    padding-left: 35px;
}

.Blog-detail_SecA .flex .colA .blog_content ul li {
    position: relative;
    padding: 3px 0;
    font-weight: 500;
}

.Blog-detail_SecA .flex .colA .blog_content ul li::before {
    content: "";
    position: absolute;
    left: -30px;
    top: 11px;
    width: 11px;
    height: 11px;
    background: var(--Selectedpurpule, #8fb729);
    border-radius: 20px;
}

.Blog-detail_SecA .flex .colB {
    flex: 0 1 25%;
    max-width: 25%;
    width: 100%;
}

@media (max-width: 767px) {
    .Blog-detail_SecA .flex .colB {
        flex: 0 1 100%;
        max-width: 100%;
    }
}

.Blog-detail_SecA .flex .colB .head_ing {
    color: var(--Selectedgreen, #112a24);
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-size: 24px;
    line-height: normal;
    border-bottom: 2px solid var(--SelecteText, #666);
}

.Blog-detail_SecA .flex .colB .services_sec {
    margin-bottom: 30px;
}

.Blog-detail_SecA .flex .colB .services_sec ul li {
    margin-bottom: 5px;
}

.Blog-detail_SecA .flex .colB .services_sec ul li a {
    color: var(--SelecteText, #666);
    font-weight: 500;
}

.Blog-detail_SecA .flex .colB .services_sec ul li a:hover {
    color: var(--Selectedgreen, #112a24);
}

.Blog-detail_SecA .flex .colB .social_links ul li {
    display: inline-block;
    margin-left: 10px;
}

.Blog-detail_SecA .flex .colB .social_links ul li:first-child {
    margin-left: 0;
}

.Blog-detail_SecA .flex .colB .social_links ul li a {
    height: 35px;
    width: 35px;
    border: 1px solid var(--SelecteBlack, #000);
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s ease;
}

.Blog-detail_SecA .flex .colB .social_links ul li a svg {
    height: 18px;
    width: 18px;
    transition: 0.5s ease;
}

.Blog-detail_SecA .flex .colB .social_links ul li a:hover {
    background: var(--Selectedgreen, #112a24);
    border-color: var(--Selectedgreen, #112a24);
}

.Blog-detail_SecA .flex .colB .social_links ul li a:hover svg {
    fill: var(--SelecteWhite, #fff);
}

.Blog-detail_SecB {
    padding: 20px 0 50px;
}

.Blog-detail_SecB .heading {
    margin-bottom: 50px;
}

.Blog-detail_SecB .heading h4 {
    text-transform: uppercase;
    letter-spacing: 5px;
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--Selectedgreen, #112a24);
}

.Blog-detail_SecB .blogs_demo .blog-slider .item {
    position: relative;
}

.Blog-detail_SecB .blogs_demo .blog-slider .item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    user-select: none;
    pointer-events: none;
    z-index: 1;
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 65%, rgba(0, 0, 0, 0.75) 100%);
}

.Blog-detail_SecB .blogs_demo .blog-slider .item figure {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.Blog-detail_SecB .blogs_demo .blog-slider .item figure img {
    width: inherit;
    height: inherit;
    transition: 0.5s ease;
}

.Blog-detail_SecB .blogs_demo .blog-slider .item .blog_inf {
    position: absolute;
    left: 8%;
    right: 0;
    bottom: 8%;
    z-index: 1;
}

.Blog-detail_SecB .blogs_demo .blog-slider .item .blog_inf p {
    font-size: 18px;
    color: var(--SelecteWhite, #fff);
}

.Blog-detail_SecB .blogs_demo .blog-slider .item .blog_inf span {
    font-size: 12px;
    color: var(--SelecteWhite, #fff);
}

.Blog-detail_SecB .blogs_demo .blog-slider .item .blog_link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.Blog-detail_SecB .blogs_demo .blog-slider .item:hover img {
    transform: scale(1.1);
}

.Blog-detail_SecB .blogs_demo .blog-slider .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
}

.Blog-detail_SecB .blogs_demo .blog-slider .owl-nav button.owl-prev,
.Blog-detail_SecB .blogs_demo .blog-slider .owl-nav .owl-next {
    position: absolute;
    transform: translate(0%, -50%);
}

.Blog-detail_SecB .blogs_demo .blog-slider .owl-nav .owl-prev {
    left: -40px;
}

@media (max-width: 675px) {
    .Blog-detail_SecB .blogs_demo .blog-slider .owl-nav .owl-prev {
        left: 0;
    }
}

.Blog-detail_SecB .blogs_demo .blog-slider .owl-nav .owl-next {
    right: -40px;
}

@media (max-width: 675px) {
    .Blog-detail_SecB .blogs_demo .blog-slider .owl-nav .owl-next {
        right: 0;
    }
}

.Blog_SecA.gallery_secA .gallery_tab {
    margin-bottom: 55px;
}

@media (max-width: 675px) {
    .Blog_SecA.gallery_secA .gallery_tab {
        margin-bottom: 45px;
    }
}

.Blog_SecA.gallery_secA .gallery_tab ul {
    text-align: -webkit-center;
}

.Blog_SecA.gallery_secA .gallery_tab ul li {
    display: inline-block;
    margin-inline: 30px;
    position: relative;
    padding-bottom: 5px;
}

@media (max-width: 520px) {
    .Blog_SecA.gallery_secA .gallery_tab ul li {
        margin-inline: 10px;
    }
}

.Blog_SecA.gallery_secA .gallery_tab ul li::after {
    content: "";
    position: absolute;
    height: 2px;
    background: var(--Selectedgreen, #6b9403);
    width: 0;
    left: 0;
    bottom: 0;
}

.Blog_SecA.gallery_secA .gallery_tab ul li a {
    font-size: 18px;
    color: var(--SelecteBlack, #000);
    font-weight: 500;
    cursor: pointer;
}

.Blog_SecA.gallery_secA .gallery_tab ul li.active a {
    color: var(--Selectedgreen, #6b9403);
}

.Blog_SecA.gallery_secA .gallery_tab ul li.active::after {
    width: 100%;
}

.Blog_SecA.gallery_secA .blog-content {
    padding: 0 50px;
    min-height: 180px;
}

@media (max-width: 991px) {
    .Blog_SecA.gallery_secA .blog-content {
        padding: 0 15px;
        min-height: auto;
    }
}

.Blog_SecA.gallery_secA .blog-content .flex .col {
    flex: 0 1 33.33%;
    max-width: 33.33%;
    width: 100%;
    overflow: hidden;
    padding: 0 10px;
}

@media (max-width: 767px) {
    .Blog_SecA.gallery_secA .blog-content .flex .col {
        flex: 0 1 50%;
        max-width: 50%;
    }
}

@media (max-width: 520px) {
    .Blog_SecA.gallery_secA .blog-content .flex .col {
        flex: 0 1 100%;
        max-width: 100%;
        padding: 8px 0;
    }
}

.Blog_SecA.gallery_secA .blog-content .flex .col .card {
    position: relative;
}

.Blog_SecA.gallery_secA .blog-content .flex .col .card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--Selectedgreen, #112a24);
    transition: 0.5s ease;
    opacity: 0;
}

.Blog_SecA.gallery_secA .blog-content .flex .col .blog_inf {
    left: 0;
    right: 0;
    transition: 0.5s ease;
}

.Blog_SecA.gallery_secA .blog-content .flex .col .blog_inf p {
    text-align: center;
    font-size: 18px;
}

@media (max-width: 675px) {
    .Blog_SecA.gallery_secA .blog-content .flex .col .blog_inf p {
        line-height: 1.5;
        font-size: 14px;
    }
}

.Blog_SecA.gallery_secA .blog-content .flex .col .gallery_link,
.Blog_SecA.gallery_secA .blog-content .flex .col .play_btn {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Blog_SecA.gallery_secA .blog-content .flex .col .gallery_link p,
.Blog_SecA.gallery_secA .blog-content .flex .col .play_btn p {
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    font-family: auto;
    align-items: center;
    border-radius: 50%;
    font-size: 36px;
    line-height: normal;
    background: var(--Selectedpurpule, #8fb729);
    color: var(--SelecteWhite, #fff);
    transform: translateY(100vh);
    transition: 0.5s ease;
}

.Blog_SecA.gallery_secA .blog-content .flex .col .gallery_link .video_icon,
.Blog_SecA.gallery_secA .blog-content .flex .col .play_btn .video_icon {
    transform: translateY(100vh);
    transition: 0.5s ease;
}

.Blog_SecA.gallery_secA .blog-content .flex .col:hover::after {
    opacity: 0.8;
}

.Blog_SecA.gallery_secA .blog-content .flex .col:hover .play_btn .video_icon {
    transform: translateY(0vh);
}

.Blog_SecA.gallery_secA .blog-content .flex .col:hover .gallery_link p {
    transform: translateY(0vh);
}

.Blog_SecA.gallery_secA .blog-content .flex .col:hover .blog_inf {
    transform: translateY(100px);
}

.Blog_SecA.gallery_secA .video_tab .blog-content {
    display: block;
}

.Blog_SecA.gallery_secA .video_tab .blog-content .flex .col figure {
    position: relative;
}

.Blog_SecA.gallery_secA .video_tab .blog-content .flex .col figure:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--SelecteBlack, #000);
    transition: 0.5s ease;
    opacity: 0.5;
}

.Blog_SecA.gallery_secA .video_tab .blog-content .flex .col .blog_inf {
    min-height: 70px;
    bottom: 0;
    padding: 30px;
    padding-top: 0;
}

@media (max-width: 675px) {
    .Blog_SecA.gallery_secA .video_tab .blog-content .flex .col .blog_inf {
        padding: 20px;
    }
}

.Blog_SecA.gallery_secA .video_tab .blog-content .flex .col .play_btn .video_icon {
    transform: translateY(0px);
}

.fancybox-button img {
    filter: invert(1);
}

@media (max-width: 991px) {
    .banner.about_banner {
        margin-top: 61px;
    }
}

.banner.about_banner .bg img {
    object-fit: cover;
}

.banner.about_banner .bg::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80%;
    opacity: 0.6;
    background: linear-gradient(to top, var(--SelecteBlack, #000), var(--SelecteBlack, #000), transparent);
    pointer-events: none;
}

.banner.about_banner .banner-wrapper {
    bottom: 100px;
    left: 0;
    right: 0;
}

@media (max-width: 991px) {
    .banner.about_banner .banner-wrapper {
        bottom: 40px;
    }
}

.banner.about_banner .banner-wrapper .content {
    text-align: center;
}

.banner.about_banner .banner-wrapper .content .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--SelecteWhite, #fff);
    width: 63px;
    height: 63px;
    margin: 0 auto 20px;
    border-radius: 65px;
}

@media (max-width: 675px) {
    .banner.about_banner .banner-wrapper .content .logo {
        display: none;
    }
}

.banner.about_banner .banner-wrapper .content .logo img {
    display: block;
    margin: 0 auto;
    filter: grayscale(1) invert(1) brightness(11);
}

.banner.about_banner .banner-wrapper .content p {
    letter-spacing: 6.5px;
    color: var(--SelecteWhite, #fff);
    text-transform: uppercase;
    margin: 10px 0;
}

@media (max-width: 991px) {
    .banner.about_banner .banner-wrapper .content p {
        margin: 5px 0;
        font-size: 14px;
    }
}

@media (max-width: 675px) {
    .banner.about_banner .banner-wrapper .content p {
        letter-spacing: 1.5px;
    }
}

.banner.about_banner .banner-wrapper .content h1 {
    color: var(--SelecteWhite, #fff);
    font-size: 60px;
    line-height: 60px;
    font-family: Poppins, sans-serif;
}

@media (max-width: 991px) {
    .banner.about_banner .banner-wrapper .content h1 {
        font-size: 35px;
        line-height: 35px;
    }
}

@media (max-width: 675px) {
    .banner.about_banner .banner-wrapper .content h1 {
        font-size: 28px;
        line-height: 32px;
    }
}

.About_SecA {
    background-image: url("../images/About/bg_ico_white.png");
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 13%;
    padding: 100px 0;
}

@media (max-width: 1024px) {
    .About_SecA {
        padding: 40px 0;
    }
}

@media (max-width: 991px) {
    .About_SecA {
        padding: 50px 0;
    }
}

@media (max-width: 675px) {
    .About_SecA {
        padding: 20px 0;
    }
}

.About_SecA h1,
.About_SecA h2,
.About_SecA h3,
.About_SecA h4,
.About_SecA p {
    font-family: Poppins, sans-serif;
}

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

.About_SecA .flex .colA {
    flex: 0 1 48%;
    max-width: 48%;
    width: 100%;
}

@media (max-width: 767px) {
    .About_SecA .flex .colA {
        flex: 0 1 100%;
        max-width: 100%;
    }
}

.About_SecA .flex .colA .secA_demo .secA_slider .item {
    position: relative;
}

.About_SecA .flex .colA .secA_demo .secA_slider .item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    user-select: none;
    pointer-events: none;
    z-index: 1;
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 65%, rgba(0, 0, 0, 0.75) 100%);
}

.About_SecA .flex .colA .secA_demo .secA_slider .item .play_btn {
    position: absolute;
    bottom: 8%;
    right: 8%;
    z-index: 1;
}

.About_SecA .flex .colA .secA_demo .secA_slider .item .play_btn img {
    width: auto;
}

.About_SecA .flex .colA .secA_demo .secA_slider .owl-dots {
    position: absolute;
    bottom: 8%;
    left: 0;
    right: 0;
    text-align: -webkit-center;
}

.About_SecA .flex .colA .secA_demo .secA_slider .owl-dots button.owl-dot {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: var(--SelecteWhite, #fff);
    opacity: 0.4;
    margin-inline: 5px;
}

.About_SecA .flex .colA .secA_demo .secA_slider .owl-dots button.owl-dot.active {
    opacity: 1;
}

.About_SecA .flex .colB {
    flex: 0 1 50%;
    max-width: 50%;
    width: 100%;
    padding-left: 40px;
}

@media (max-width: 1024px) {
    .About_SecA .flex .colB {
        padding-left: 0px;
    }
}

@media (max-width: 767px) {
    .About_SecA .flex .colB {
        flex: 0 1 100%;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .About_SecA .contactInfor {
        padding: 20px 0;
    }
}

.About_SecA .contactInfor h3 {
    color: var(--SelecteBlack, #000);
    font-weight: 400;
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 20px;
}

@media (max-width: 1024px) {
    .About_SecA .contactInfor h3 {
        font-size: 30px;
        line-height: 35px;
        margin-bottom: 10px;
    }
}

@media (max-width: 991px) {
    .About_SecA .contactInfor h3 {
        font-size: 25px;
        line-height: 30px;
    }
}

@media (max-width: 675px) {
    .About_SecA .contactInfor h3 {
        font-size: 20px;
        line-height: 27px;
    }
}

.About_SecA .contactInfor p {
    color: var(--SelecteBlack, #000);
    margin-bottom: 35px;
}

@media (max-width: 1024px) {
    .About_SecA .contactInfor p {
        margin-bottom: 15px;
    }
}

@media (max-width: 991px) {
    .About_SecA .contactInfor p {
        margin-bottom: 10px;
        font-size: 14px;
        line-height: 21px;
        text-align: justify;
    }
}

.About_SecB .subsec2 {
    padding: 10px 0px;
}

@media (max-width: 991px) {
    .About_SecB .subsec2 {
        padding: 0px 15px;
    }
}

@media (max-width: 675px) {
    .About_SecB .subsec2 {
        padding: 5px;
    }
}

.About_SecB .subsec2 .flex {
    justify-content: space-between;
}

.About_SecB .subsec2 .flex .col {
    position: relative;
    flex: 0 1 32.9%;
    max-width: 32.9%;
    width: 100%;
    overflow: hidden;
}

@media (max-width: 991px) {
    .About_SecB .subsec2 .flex .col {
        flex: 0 1 33.33%;
        max-width: 33.33%;
        padding: 10px 5px;
    }
}

@media (max-width: 675px) {
    .About_SecB .subsec2 .flex .col {
        flex: 0 1 100%;
        max-width: 100%;
        padding: 5px 5px;
    }
}

.About_SecB .subsec2 .flex .card {
    position: relative;
}

.About_SecB .subsec2 .flex .card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    user-select: none;
    pointer-events: none;
    z-index: 1;
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.75) 65%);
    background: linear-gradient(to top, black, transparent);
}

.About_SecB .subsec2 .flex .card figure {
    overflow: hidden;
}

.About_SecB .subsec2 .flex .card figure img {
    width: 100%;
    transition: 0.5s ease;
}

.About_SecB .subsec2 .flex .card .col_title {
    position: absolute;
    bottom: 10%;
    left: 0;
    right: 0;
    z-index: 1;
    max-width: 325px;
    text-align: center;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .About_SecB .subsec2 .flex .card .col_title {
        padding: 0 15px;
        max-width: 100%;
    }
}

.About_SecB .subsec2 .flex .card .col_title h4 {
    font-size: 26px;
    color: var(--SelecteWhite, #fff);
    font-family: Poppins, sans-serif;
    margin-bottom: 5px;
    font-weight: normal;
}

@media (max-width: 991px) {
    .About_SecB .subsec2 .flex .card .col_title h4 {
        font-size: 20px;
    }
}

.About_SecB .subsec2 .flex .card .col_title p {
    color: var(--SelecteWhite, #fff);
}

@media (max-width: 991px) {
    .About_SecB .subsec2 .flex .card .col_title p {
        font-size: 14px;
        line-height: 1.4;
    }
}

.About_SecB .subsec2 .flex .card:hover img {
    transform: scale(1.1);
}

@media (max-width: 675px) {
    .Rang_Home_advSec.aboutpRHSLi {
        padding: 0 10px;
    }
}

.About_SecC {
    padding: 100px 0;
    background-image: url("../images/About/bg_ico.png"), linear-gradient(90deg, rgb(4, 134, 102) 0%, rgb(4, 44, 34) 66%);
    background-repeat: no-repeat;
    background-position: bottom right;
}

@media (max-width: 991px) {
    .About_SecC {
        padding: 60px 0;
    }
}

@media (max-width: 675px) {
    .About_SecC {
        padding: 15px 0;
    }
}

.About_SecC .flex {
    justify-content: center;
    align-items: center;
    gap: 130px;
}

@media (max-width: 991px) {
    .About_SecC .flex {
        gap: 0;
    }
}

.About_SecC .flex .colA {
    flex: 0 1 43%;
    max-width: 43%;
    width: 100%;
}

@media (max-width: 991px) {
    .About_SecC .flex .colA {
        flex: 0 1 50%;
        max-width: 50%;
    }
}

@media (max-width: 675px) {
    .About_SecC .flex .colA {
        flex: 0 1 100%;
        max-width: 100%;
    }
}

.About_SecC .flex .colA .item {
    position: relative;
    max-width: 484px;
}

.About_SecC .flex .colA .item img {
    border-radius: 2px;
}

.About_SecC .flex .colA .item .play_btn {
    position: absolute;
    bottom: 8%;
    right: 8%;
}

.About_SecC .flex .colA .item figure img {
    width: 100%;
}

.About_SecC .flex .colB {
    flex: 0 1 32%;
    max-width: 32%;
    width: 100%;
}

@media (max-width: 991px) {
    .About_SecC .flex .colB {
        flex: 0 1 50%;
        max-width: 50%;
        padding: 0 15px;
    }
}

@media (max-width: 675px) {
    .About_SecC .flex .colB {
        flex: 0 1 100%;
        max-width: 100%;
        padding: 25px 0;
    }
}

.About_SecC .flex .colB .director_msg .message_content {
    text-align: -webkit-center;
    display: flex;
    flex-direction: column;
    gap: 20px 0;
}

@media (max-width: 991px) {
    .About_SecC .flex .colB .director_msg .message_content {
        gap: 6px 0;
    }
}

.About_SecC .flex .colB .director_msg .message_content .head_con img {
    margin-bottom: 10px;
}

.About_SecC .flex .colB .director_msg .message_content .head_con h4 {
    color: var(--SelecteWhite, #fff);
    font-family: Poppins, sans-serif;
    font-size: 36px;
    font-weight: normal;
}

@media (max-width: 991px) {
    .About_SecC .flex .colB .director_msg .message_content .head_con h4 {
        font-size: 30px;
    }
}

@media (max-width: 675px) {
    .About_SecC .flex .colB .director_msg .message_content .head_con h4 {
        font-size: 25px;
    }
}

.About_SecC .flex .colB .director_msg .message_content .content p {
    color: var(--SelecteWhite, #fff);
    opacity: 0.6;
    font-weight: 300;
}

@media (max-width: 675px) {
    .About_SecC .flex .colB .director_msg .message_content .content p {
        font-size: 14px;
        line-height: 22px;
    }
}

.About_SecC .flex .colB .director_msg .message_content .btm_con .name {
    color: var(--SelecteWhite, #fff);
    font-size: 20px;
}

.About_SecC .flex .colB .director_msg .message_content .btm_con .sign {
    margin-top: 20px;
}

.About_SecD {
    padding: 75px 0;
}

@media (max-width: 991px) {
    .About_SecD {
        padding: 35px 0;
    }
}

.About_SecD .container .heading {
    text-align: -webkit-center;
    max-width: 700px;
    margin: 0 auto;
}

.About_SecD .container .heading figure {
    margin-bottom: 25px;
}

.About_SecD .container .heading h2 {
    font-size: 36px;
    line-height: 40px;
    font-family: Poppins, sans-serif;
    font-weight: normal;
    color: var(--SelecteBlack, #000);
}

@media (max-width: 991px) {
    .About_SecD .container .heading h2 {
        font-size: 30px;
        line-height: 35px;
    }
}

@media (max-width: 675px) {
    .About_SecD .container .heading h2 {
        font-size: 22px;
        line-height: 25px;
    }
}

.About_SecD .SecD_wrap {
    margin-top: 75px;
}

@media (max-width: 991px) {
    .About_SecD .SecD_wrap {
        margin-top: 35px;
    }
}

@media (max-width: 675px) {
    .About_SecD .SecD_wrap {
        margin-top: 20px;
    }
}

.About_SecD .SecD_wrap .flex {
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 1140px) {
    .About_SecD .SecD_wrap .flex {
        padding: 0 15px;
    }
}

.About_SecD .SecD_wrap .flex .colA {
    flex: 0 1 45%;
    max-width: 45%;
    width: 100%;
}

@media (max-width: 1140px) {
    .About_SecD .SecD_wrap .flex .colA {
        padding-right: 20px;
    }
}

@media (max-width: 991px) {
    .About_SecD .SecD_wrap .flex .colA {
        padding-right: 0;
        flex: 0 1 100%;
        max-width: 100%;
    }
}

.About_SecD .SecD_wrap .flex .colB {
    flex: 0 1 55%;
    max-width: 55%;
    width: 100%;
}

@media (max-width: 991px) {
    .About_SecD .SecD_wrap .flex .colB {
        flex: 0 1 100%;
        max-width: 100%;
    }
}

.About_SecD .content {
    max-width: 470px;
    margin-left: auto;
    margin-right: 82px;
}

@media (max-width: 1140px) {
    .About_SecD .content {
        max-width: 100%;
        margin: 0;
    }
}

@media (max-width: 991px) {
    .About_SecD .content {
        max-width: 100%;
        margin: 0 0 35px;
        text-align: center;
    }
}

.About_SecD .content h4 {
    color: var(--Selectedpurpule, #8fb729);
    font-family: Poppins, sans-serif;
    font-size: 24px;
    font-weight: normal;
    line-height: 26px;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .About_SecD .content h4 {
        margin-bottom: 10px;
    }
}

@media (max-width: 675px) {
    .About_SecD .content h4 {
        font-size: 15px;
        line-height: normal;
    }
}

.About_SecD .content p {
    color: var(--SelecteBlack, #000);
}

@media (max-width: 1140px) {
    .About_SecD .content p {
        text-align: justify;
    }
}

@media (max-width: 991px) {
    .About_SecD .content p {
        text-align: center;
        font-size: 14px;
    }
}

.About_SecD .SecD_demo .secD-slider .item {
    position: relative;
}

.About_SecD .SecD_demo .secD-slider .item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    user-select: none;
    pointer-events: none;
    z-index: 1;
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 37%, rgba(0, 0, 0, 0.75) 82%);
}

.About_SecD .SecD_demo .secD-slider .item .slid_title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 13%;
    z-index: 1;
    text-align: center;
}

.About_SecD .SecD_demo .secD-slider .item .slid_title h4 {
    color: var(--SelecteWhite, #fff);
    font-family: Poppins, sans-serif;
    font-weight: normal;
    margin-bottom: 20px;
    max-width: 375px;
    margin: 0 auto;
    font-size: 24px;
    line-height: 32px;
}

@media (max-width: 675px) {
    .About_SecD .SecD_demo .secD-slider .item .slid_title h4 {
        font-size: 16px;
        line-height: 21px;
    }
}

.About_SecD .SecD_demo .secD-slider .owl-nav {
    position: absolute;
    right: 17%;
    top: 50%;
    display: flex;
    flex-direction: column;
    transform: translate(-10%, -50%);
    gap: 12px;
}

@media (max-width: 675px) {
    .About_SecD .SecD_demo .secD-slider .owl-nav {
        display: none;
    }
}

.About_SecD .SecD_demo .secD-slider .owl-nav button.owl-prev,
.About_SecD .SecD_demo .secD-slider .owl-nav .owl-next {
    top: 50%;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background: var(--Selectedpurpule, #8fb729);
    display: flex;
    justify-content: center;
    align-items: center;
}

.About_SecD .SecD_demo .secD-slider .owl-nav button.owl-prev img,
.About_SecD .SecD_demo .secD-slider .owl-nav .owl-next img {
    filter: invert(1) contrast(6.5);
    width: 10px;
}

.career_banner {
    position: relative;
}

@media (max-width: 991px) {
    .career_banner {
        margin-top: 60px;
    }
}

.career_banner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80%;
    opacity: 0.6;
    background: linear-gradient(to top, var(--SelecteBlack, #000), var(--SelecteBlack, #000), transparent);
    pointer-events: none;
}

.career_banner .bg img {
    height: calc(100vh - 60px);
    object-fit: cover;
}

@media (max-width: 991px) {
    .career_banner .bg img {
        height: 100%;
    }
}

.career_banner .banner-wrapper {
    position: absolute;
    z-index: 1;
    bottom: 10%;
    left: 50%;
    transform: translate(-50%, 0%);
}

@media (max-width: 675px) {
    .career_banner .banner-wrapper {
        left: 0;
        transform: none;
    }
}

.career_banner .banner-wrapper .content {
    text-align: -webkit-center;
}

.career_banner .banner-wrapper .content .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--SelecteWhite, #fff);
    width: 63px;
    height: 63px;
    margin: 0 auto 20px;
    border-radius: 65px;
}

@media (max-width: 675px) {
    .career_banner .banner-wrapper .content .logo {
        display: none;
    }
}

.career_banner .banner-wrapper .content .logo img {
    display: block;
    margin: 0 auto;
    filter: grayscale(1) invert(1) brightness(11);
}

.career_banner .banner-wrapper .content h1 {
    font-size: 48px;
    line-height: 48px;
    font-weight: 400;
    color: var(--SelecteWhite, #fff);
    font-family: Poppins, sans-serif;
}

@media (max-width: 991px) {
    .career_banner .banner-wrapper .content h1 {
        font-size: 30px;
        line-height: 35px;
    }
}

@media (max-width: 675px) {
    .career_banner .banner-wrapper .content h1 {
        font-size: 25px;
        line-height: 30px;
    }
}

.career_banner .banner-wrapper .content p {
    max-width: 600px;
    margin-right: auto;
    margin-left: auto;
    color: var(--SelecteWhite, #fff);
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
    margin-top: 20px;
}

@media (max-width: 991px) {
    .career_banner .banner-wrapper .content p {
        margin-top: 8px;
        font-size: 16px;
    }
}

@media (max-width: 675px) {
    .career_banner .banner-wrapper .content p {
        line-height: 1.3;
    }
}

.career_banner .banner-wrapper .content .ComnBtn {
    text-align: -webkit-center;
    margin-top: 50px;
    cursor: pointer;
}

@media (max-width: 991px) {
    .career_banner .banner-wrapper .content .ComnBtn {
        margin-top: 12px;
    }
}

@media only screen and (max-width: 365px) {
    .career_banner .banner-wrapper .content .ComnBtn {
        display: none;
    }
}

.career_banner .banner-wrapper .content .ComnBtn .ComnBtn-Txt {
    color: var(--SelecteWhite, #fff);
    padding: 8px 0px;
    transition: 0.5s ease;
    letter-spacing: 5px;
}

.career_banner .banner-wrapper .content .ComnBtn:hover .ComnBtn-Txt {
    color: var(--Selectedpurpule, #8fb729);
}

.career_banner .banner-wrapper .content .ComnBtn img {
    width: 10px;
    margin-top: 10px;
    transform: rotate(90deg);
    transform: rotate(270deg);
    filter: invert(1) brightness(7.5);
}

.CrerBnnr_wppr {
    padding: 80px 0;
    background-image: url("../images/About/bg_ico_white.png");
    background-repeat: no-repeat;
    background-position: bottom right;
}

.CrerBnnr_wppr .CrerTxtWppr .title h1 {
    font-size: 48px;
    line-height: 48px;
    font-weight: 400;
    font-family: Poppins, sans-serif;
    color: var(--SelecteBlack, #000);
}

.CrerBnnr_wppr .CrerTxtWppr .title p {
    width: 80%;
    font-size: 36px;
    line-height: 36px;
    font-weight: 400;
    margin-top: 30px;
}

.CrerBnnr_wppr .CrerTxtWppr .title .ComnBtn {
    margin-top: 50px;
}

.CrerBnnr_wppr .CrerTxtWppr .title .ComnBtn .ComnBtn-Txt {
    background: var(--Selectedgreen, #112a24);
    border: 1px solid var(--Selectedgreen, #112a24);
    color: var(--SelecteWhite, #fff);
    padding: 8px 40px;
    border-radius: 30px;
    transition: 0.5s ease;
}

.CrerBnnr_wppr .CrerTxtWppr .title .ComnBtn .ComnBtn-Txt:hover {
    background: var(--SelecteWhite, #fff);
    color: var(--Selectedgreen, #112a24);
    border: 1px solid var(--Selectedgreen, #112a24);
}

.we_are_hiring {
    padding: 100px 0;
}

@media (max-width: 675px) {
    .we_are_hiring {
        padding: 40px 0;
    }
}

.we_are_hiring .heading {
    margin-bottom: 50px;
}

@media (max-width: 675px) {
    .we_are_hiring .heading {
        margin-bottom: 30px;
    }
}

.we_are_hiring .heading small {
    font-size: 20px;
}

@media (max-width: 991px) {
    .we_are_hiring .heading small {
        font-size: 16px;
    }
}

.we_are_hiring .heading h4 {
    font-size: 48px;
    line-height: 48px;
    font-family: Poppins, sans-serif;
    color: var(--SelecteBlack, #000);
    font-weight: 400;
}

@media (max-width: 991px) {
    .we_are_hiring .heading h4 {
        font-size: 30px;
        line-height: 34px;
    }
}

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

.we_are_hiring .flex h1,
.we_are_hiring .flex h2,
.we_are_hiring .flex h3,
.we_are_hiring .flex h4,
.we_are_hiring .flex h5 {
    font-family: Poppins, sans-serif;
    color: var(--SelecteBlack, #000);
    font-weight: 400;
}

.we_are_hiring .flex .colA {
    flex: 0 1 55%;
    max-width: 55%;
    width: 100%;
}

@media (max-width: 675px) {
    .we_are_hiring .flex .colA {
        flex: 0 1 100%;
        max-width: 100%;
    }
}

.we_are_hiring .flex .colA .tab_content .tabs .title {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(102, 102, 102, 0.3098039216);
}

.we_are_hiring .flex .colA .tab_content .tabs .title h3 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}

.we_are_hiring .flex .colA .tab_content .tabs .title .arr_down {
    transform: rotate(90deg);
    width: 8px;
    transition: 0.5s ease;
}

.we_are_hiring .flex .colA .tab_content .tabs .title .arr_down.active {
    transform: rotate(0deg);
}

.we_are_hiring .flex .colA .tab_content .tabs .content {
    margin: 35px 0 45px;
}

@media (max-width: 991px) {
    .we_are_hiring .flex .colA .tab_content .tabs .content {
        margin: 25px 0;
    }
}

.we_are_hiring .flex .colA .tab_content .tabs .content h5 {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .we_are_hiring .flex .colA .tab_content .tabs .content h5 {
        font-size: 18px;
        font-weight: 500;
    }
}

@media (max-width: 991px) {
    .we_are_hiring .flex .colA .tab_content .tabs .content p {
        font-size: 14px;
    }
}

.we_are_hiring .flex .colA .tab_content .tabs .content ul {
    padding: 20px 0 30px;
    padding-left: 25px;
}

.we_are_hiring .flex .colA .tab_content .tabs .content ul li {
    list-style: disc;
}

@media (max-width: 991px) {
    .we_are_hiring .flex .colA .tab_content .tabs .content ul li {
        font-size: 14px;
    }
}

.we_are_hiring .flex .colA .tab_content .tabs .content ul li::marker {
    color: var(--Selectedgreen, #112a24);
}

.we_are_hiring .flex .colA .tab_content .tabs .content .app_btn a {
    display: inline-block;
    color: var(--SelecteWhite, #fff);
    border: 1px solid var(--Selectedpurpule, #8fb729);
    background: var(--Selectedpurpule, #8fb729);
    padding: 8px 20px;
    transition: 0.5s ease;
}

.we_are_hiring .flex .colA .tab_content .tabs .content .app_btn a:hover {
    color: var(--Selectedpurpule, #8fb729);
    background: none;
}

.we_are_hiring .flex .colB {
    flex: 0 1 33%;
    max-width: 33%;
    width: 100%;
}

@media (max-width: 991px) {
    .we_are_hiring .flex .colB {
        flex: 0 1 45%;
        max-width: 45%;
        padding-left: 15px;
    }
}

@media (max-width: 675px) {
    .we_are_hiring .flex .colB {
        flex: 0 1 100%;
        max-width: 100%;
        padding-left: 0;
        margin-top: 20px;
    }
}

.we_are_hiring .flex .colB .form_card {
    background: var(--Selectedpurpule, #8fb729);
    padding: 30px;
}

@media (max-width: 675px) {
    .we_are_hiring .flex .colB .form_card {
        padding: 20px;
    }
}

.we_are_hiring .flex .colB .form_card .Navigation-list .get_help {
    text-align: center;
    font-size: 20px;
    line-height: 1;
}

@media (max-width: 675px) {
    .we_are_hiring .flex .colB .form_card .Navigation-list .get_help {
        font-size: 16px;
    }
}

.we_are_hiring .flex .colB .form_card .Navigation-list .get_help h4 {
    padding: 10px 0;
    font-size: 26px;
    line-height: 26px;
    font-weight: 500;
    color: var(--SelecteWhite, #fff);
}

@media (max-width: 675px) {
    .we_are_hiring .flex .colB .form_card .Navigation-list .get_help h4 {
        font-size: 30px;
        line-height: 40px;
    }
}

.we_are_hiring .flex .colB .form_card .Navigation-list .get_help p {
    color: var(--SelecteWhite, #fff);
}

.we_are_hiring .flex .colB .form_card .Navigation-list .nav-model .enqury_form_model {
    padding-top: 25px;
}

@media (max-width: 675px) {
    .we_are_hiring .flex .colB .form_card .Navigation-list .nav-model .enqury_form_model {
        padding-top: 20px;
    }
}

.we_are_hiring .flex .colB .form_card .Navigation-list .nav-model .enqury_form_model .col {
    flex: 1 0 100%;
    max-width: 100%;
    width: 100%;
}

.we_are_hiring .flex .colB .form_card .Navigation-list .nav-model .enqury_form_model .col .form-group {
    position: relative;
    margin-bottom: 25px;
}

.we_are_hiring .flex .colB .form_card .Navigation-list .nav-model .enqury_form_model .col .form-group input {
    width: 100%;
    background: none;
    height: initial;
    outline: none;
    border: none;
    padding: 5px;
    border-bottom: 1px solid var(--SelecteWhite, #fff);
    color: var(--SelecteWhite, #fff);
}

.we_are_hiring .flex .colB .form_card .Navigation-list .nav-model .enqury_form_model .col .form-group label {
    position: absolute;
    top: 0px;
    left: 0;
    color: var(--SelecteWhite, #fff);
    pointer-events: none;
    transition: 0.3s ease;
    font-size: 14px;
    line-height: 22px;
}

.we_are_hiring .flex .colB .form_card .Navigation-list .nav-model .enqury_form_model .col .form-group label span {
    color: red;
}

.we_are_hiring .flex .colB .form_card .Navigation-list .nav-model .enqury_form_model .col .form-group label.valid {
    top: -20px;
}

.we_are_hiring .flex .colB .form_card .Navigation-list .nav-model .enqury_form_model .col .form-group select {
    width: 100%;
    padding: 0 0 12px 0;
    height: initial;
    border: none;
    border-bottom: 1px solid var(--SelecteWhite, #fff);
    outline: none;
    background: none;
    border-color: var(--SelecteWhite, #fff);
    color: var(--SelecteWhite, #fff);
    font-size: 14px;
    line-height: 22px;
}

.we_are_hiring .flex .colB .form_card .Navigation-list .nav-model .enqury_form_model .col .form-group select option:not(:first-of-type) {
    margin: 0 -10px;
}

.we_are_hiring .flex .colB .form_card .Navigation-list .nav-model .enqury_form_model .col .form-group select option {
    background: var(--Selectedgreen, #112a24);
}

.we_are_hiring .flex .colB .form_card .Navigation-list .nav-model .enqury_form_model .col .form-group.message_box textarea {
    width: 100% !important;
    resize: none;
    background: none;
    outline: none;
    border: none;
    color: var(--SelecteWhite, #fff);
    border-bottom: 1px solid var(--SelecteWhite, #fff);
    height: 55px;
    max-height: 55px !important;
    min-height: 55px;
    font-size: 14px;
    line-height: 22px;
    padding: 5px;
    font-family: inherit;
}

.we_are_hiring .flex .colB .form_card .Navigation-list .nav-model .enqury_form_model .col .form-group.message_box textarea::-webkit-scrollbar {
    width: 3px;
    background: var(--SelecteWhite, #fff);
}

.we_are_hiring .flex .colB .form_card .Navigation-list .nav-model .enqury_form_model .col .form-group.message_box textarea::-webkit-scrollbar-track {
    box-shadow: none;
}

.we_are_hiring .flex .colB .form_card .Navigation-list .nav-model .enqury_form_model .col .form-group.message_box textarea::-webkit-scrollbar-thumb {
    background-color: var(--Selectedgreen, #112a24);
    outline: 0;
    height: 5px;
}

.we_are_hiring .flex .colB .form_card .Navigation-list .nav-model .enqury_form_model .col .form-group.message_box textarea::placeholder {
    color: var(--SelecteWhite, #fff);
    font-family: inherit;
}

.we_are_hiring .flex .colB .form_card .Navigation-list .nav-model .enqury_form_model .col .form-group.attach_file {
    position: relative;
}

.we_are_hiring .flex .colB .form_card .Navigation-list .nav-model .enqury_form_model .col .form-group.attach_file input {
    width: 100%;
    border-bottom: none;
    color: transparent;
    opacity: 0;
    position: relative;
    z-index: 1;
}

.we_are_hiring .flex .colB .form_card .Navigation-list .nav-model .enqury_form_model .col .form-group.attach_file .pdf {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid white;
}

.we_are_hiring .flex .colB .form_card .Navigation-list .nav-model .enqury_form_model .col .form-group.attach_file .pdf em {
    font-style: inherit;
    color: var(--SelecteWhite, #fff);
    font-size: 14px;
    line-height: 22px;
}

.we_are_hiring .flex .colB .form_card .Navigation-list .nav-model .enqury_form_model .col .form-group.attach_file .pdf img {
    width: 10px;
    width: 20px;
    height: fit-content;
    filter: invert(1) contrast(3.5) brightness(11.5);
}

.we_are_hiring .flex .colB .form_card .Navigation-list .nav-model .enqury_form_model .submit_btn {
    text-align: center;
    width: 100%;
    margin: 15px 0;
}

.we_are_hiring .flex .colB .form_card .Navigation-list .nav-model .enqury_form_model .submit_btn .btn,
.we_are_hiring .flex .colB .form_card .Navigation-list .nav-model .enqury_form_model .submit_btn button {
    border: 1px solid var(--SelecteWhite, #fff);
    background: var(--SelecteWhite, #fff);
    color: #000000;
    width: inherit;
    margin: 0 auto;
    padding: 8px 0;
    cursor: pointer;
    transition: 0.5s ease;
    display: block;
}

.we_are_hiring .flex .colB .form_card .Navigation-list .nav-model .enqury_form_model .submit_btn .btn:hover,
.we_are_hiring .flex .colB .form_card .Navigation-list .nav-model .enqury_form_model .submit_btn button:hover {
    border: 1px solid var(--SelecteWhite, #fff);
    background: var(--Selectedpurpule, #8fb729);
    color: var(--SelecteWhite, #fff);
}

.career_secD .flex {
    background: #f7f7f7;
}

@media (max-width: 991px) {
    .career_secD .flex {
        padding: 0 15px;
    }
}

.career_secD .flex .col {
    flex: 0 1 50%;
    max-width: 50%;
    width: 100%;
    height: inherit;
    position: relative;
}

@media (max-width: 675px) {
    .career_secD .flex .col {
        flex: 0 1 100%;
        max-width: 100%;
    }
}

.career_secD .flex .col:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 675px) {
    .career_secD .flex .col:first-child {
        order: 2;
    }
}

.career_secD .flex .col:first-child img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 210px;
    object-fit: contain;
    object-position: bottom;
    transform: scaleX(-1);
}

@media (max-width: 991px) {
    .career_secD .flex .col:first-child img {
        left: -15px;
    }
}

@media (max-width: 675px) {
    .career_secD .flex .col:last-child {
        order: 1;
        padding: 0;
    }
}

@media (max-width: 991px) {
    .career_secD .flex .col figure {
        height: 100%;
        padding-left: 15px;
    }
}

@media (max-width: 675px) {
    .career_secD .flex .col figure {
        padding-left: 0px;
    }
}

.career_secD .flex .col img {
    width: 100%;
    object-fit: cover;
    height: 70vh;
    object-position: top;
}

@media (max-width: 991px) {
    .career_secD .flex .col img {
        height: 100%;
    }
}

.career_secD .flex .col .content {
    position: relative;
}

@media (max-width: 991px) {
    .career_secD .flex .col .content {
        padding: 30px 0;
    }
}

.career_secD .flex .col .content .title h3 {
    color: var(--SelecteBlack, #000);
    font-weight: 500;
    font-family: Poppins, sans-serif;
    font-size: 36px;
    line-height: 36px;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .career_secD .flex .col .content .title h3 {
        font-size: 25px;
        line-height: 30px;
        margin-bottom: 9px;
    }
}

.career_secD .flex .col .content .title p {
    color: var(--SelecteBlack, #000);
}

@media (max-width: 991px) {
    .career_secD .flex .col .content .title p {
        font-size: 14px;
    }
}

.career_secD .flex .col .content ul {
    padding-top: 30px;
    padding-left: 25px;
}

@media (max-width: 991px) {
    .career_secD .flex .col .content ul {
        padding-top: 15px;
        padding-left: 15px;
    }
}

.career_secD .flex .col .content ul li {
    list-style: disc;
    color: var(--SelecteText, #666);
}

@media (max-width: 991px) {
    .career_secD .flex .col .content ul li {
        font-size: 14px;
    }
}

.career_secD .flex .col .content ul li::marker {
    color: var(--Selectedpurpule, #8fb729);
}

.About_SecB.ServOutingSecA .subsec2 {
    display: block;
}

@media (max-width: 991px) {
    .About_SecB.ServOutingSecA .subsec2 .flex {
        justify-content: center;
    }
}

@media (max-width: 991px) {
    .About_SecB.ServOutingSecA .subsec2 .flex .col {
        flex: 0 1 50%;
        max-width: 50%;
        margin-bottom: 20px;
    }
}

@media (max-width: 675px) {
    .About_SecB.ServOutingSecA .subsec2 .flex .col {
        flex: 0 1 100%;
        max-width: 100%;
        margin-bottom: 0;
    }
}

.About_SecB.ServOutingSecA .subsec2 .heading {
    margin-bottom: 35px;
}

.About_SecB.ServOutingSecA .subsec2 .heading img {
    display: block;
    margin: 0 auto;
}

.About_SecB.ServOutingSecA .subsec2 .heading h2 {
    color: var(--Selectedgreen, #112a24);
    margin-top: 10px;
    font-family: Poppins, sans-serif;
}

.About_SecB.ServOutingSecA .subsec2 .card .col_title {
    max-width: 360px;
    bottom: 6%;
}

.About_SecB.ServOutingSecA .subsec2 .card ul {
    text-align: center;
    margin-top: 25px;
}

.About_SecB.ServOutingSecA .subsec2 .card ul li {
    display: inline-block;
    margin: 0 5px;
}

.About_SecB.ServOutingSecA .subsec2 .card ul li a {
    display: inline-block;
    padding: 6px 18px;
    font-size: 14px;
    border: 1px solid transparent;
    line-height: 1.4;
    color: var(--SelecteWhite, #fff);
}

.About_SecB.ServOutingSecA .subsec2 .card ul li a.redmo {
    background: var(--Selectedgreen, #112a24);
}

.About_SecB.ServOutingSecA .subsec2 .card ul li a.book {
    background: var(--Selectedpurpule, #8fb729);
}

.About_SecB.SummaryofPackages {
    padding-top: 120px;
    padding-bottom: 30px;
}

.ServiceListingOuting_B {
    padding: 50px 0;
}

@media (max-width: 991px) {
    .ServiceListingOuting_B {
        padding: 30px 0;
    }
}

.ServiceListingOuting_B .section {
    padding: 50px 0;
    background: var(--SelecteWhite, #fff);
}

@media (max-width: 991px) {
    .ServiceListingOuting_B .section {
        padding: 30px 0;
    }
}

@media (min-width: 992px) {
    .ServiceListingOuting_B .section:nth-child(even) {
        background: #f6f6f6;
    }
    .ServiceListingOuting_B .section:nth-child(even) .flex {
        flex-direction: row-reverse;
    }
    .ServiceListingOuting_B .section:nth-child(even) .flex .list {
        padding-left: 0;
        margin-right: 30px;
    }
}

.ServiceListingOuting_B .section .col {
    flex: 0 1 50%;
    max-width: 50%;
}

@media (max-width: 991px) {
    .ServiceListingOuting_B .section .col {
        flex: 0 1 100%;
        max-width: 100%;
    }
}

.ServiceListingOuting_B .section figure {
    position: sticky;
    top: 90px;
}

.ServiceListingOuting_B .section figure img {
    width: 100%;
}

@media (min-width: 992px) {
    .ServiceListingOuting_B .section .list {
        padding-left: 30px;
    }
}

@media (max-width: 991px) {
    .ServiceListingOuting_B .section .list {
        padding-top: 30px;
    }
}

.ServiceListingOuting_B .section .content h4,
.ServiceListingOuting_B .section .content h6 {
    font-family: Poppins, sans-serif;
    color: var(--SelecteBlack, #000);
}

.ServiceListingOuting_B .section .content h4 {
    font-weight: 400;
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 18px;
}

@media (max-width: 1024px) {
    .ServiceListingOuting_B .section .content h4 {
        font-size: 30px;
        line-height: 35px;
        margin-bottom: 10px;
    }
}

@media (max-width: 991px) {
    .ServiceListingOuting_B .section .content h4 {
        font-size: 25px;
        line-height: 30px;
    }
}

@media (max-width: 675px) {
    .ServiceListingOuting_B .section .content h4 {
        font-size: 20px;
        line-height: 27px;
    }
}

.ServiceListingOuting_B .section .content h6 {
    margin-bottom: 12px;
}

.ServiceListingOuting_B .section .content p {
    color: var(--SelecteBlack, #000);
    margin-bottom: 18px;
    text-align: justify;
}

@media (max-width: 1024px) {
    .ServiceListingOuting_B .section .content p {
        margin-bottom: 15px;
    }
}

@media (max-width: 991px) {
    .ServiceListingOuting_B .section .content p {
        margin-bottom: 10px;
        font-size: 14px;
        line-height: 21px;
        text-align: justify;
    }
}

.ServiceListingOuting_B .section .content ul {
    padding-left: 25px;
    margin-bottom: 20px;
}

.ServiceListingOuting_B .section .content ul li {
    position: relative;
    padding: 3px 0;
    color: var(--SelecteBlack, #000);
}

.ServiceListingOuting_B .section .content ul li::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 11px;
    width: 9px;
    height: 9px;
    background: var(--Selectedpurpule, #8fb729);
    border-radius: 20px;
}

.privacy_policy {
    padding: 85px 0;
}

@media (max-width: 675px) {
    .privacy_policy {
        padding-bottom: 30px;
    }
}

.privacy_policy h2,
.privacy_policy p,
.privacy_policy h3 {
    font-family: Poppins, sans-serif;
    margin-bottom: 10px;
    line-height: 1.3;
}

.privacy_policy h2 {
    font-weight: 500;
    margin-top: 25px;
    color: var(--SelecteBlack, #000);
    font-size: 30px;
}

@media (max-width: 675px) {
    .privacy_policy h2 {
        font-size: 26px;
    }
}

.privacy_policy h3 {
    font-weight: 500;
    margin-top: 25px;
    color: var(--SelecteBlack, #000);
    font-size: 20px;
}

@media (max-width: 675px) {
    .privacy_policy h3 {
        font-size: 18px;
    }
}

.privacy_policy p {
    color: var(--SelecteText, #666);
    text-align: justify;
    line-height: 1.4;
}

.privacy_policy p a {
    color: var(--Selectedgreen, #6b9403);
}

.privacy_policy p b {
    font-weight: 600;
}

.privacy_policy ul {
    padding-left: 35px;
}

.privacy_policy ul li {
    position: relative;
    color: var(--SelecteText, #666);
    padding: 3px 0;
}

.privacy_policy ul li::before {
    content: "";
    position: absolute;
    left: -30px;
    top: 11px;
    width: 9px;
    height: 9px;
    background: var(--Selectedpurpule, #8fb729);
    border-radius: 20px;
}
.d-none{display: none;}

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