@charset "utf-8";

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.2/font/bootstrap-icons.css");

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600;700;800;900&display=swap');


* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a:focus,
p:focus,
div:focus,
input:focus,
textarea:focus,
submit:focus,
button:focus {
    outline: none;
}

/* ------Scrollbar CSS Start----- */
/* Firefox */

* {
    scrollbar-width: auto;
    scrollbar-color: var() var();
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 5px;
}

*::-webkit-scrollbar-track {
    background: var();
}

*::-webkit-scrollbar-thumb {
    background-color: var();
    border-radius: 0px;
    border: 0px solid var();
}

/* ------Scrollbar CSS End----- */

/*--- Common Style Start---*/

:root {
    --black: #000;
    --white: #fff;
    --dark: #010101;
    --pdark: #191519;
    --off-dark: #6E6E6E;
    --off-white: #E9E9E9;
    --dark-blue: #143956;
    --lime-green: #B1DD02;
    --dark-green: #478903;
    --red: #852324;
    --light-blue: #64818F;
}

/*
    font-family: 'Outfit', sans-serif;
*/
html {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 20px;
    color: var(--black);
    font-family: 'Outfit', sans-serif;
}

p {
    padding: 0;
}

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

a {
    display: inline-block;
    text-decoration: none !important;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

a:hover,
a:focus {
    color: var(--color-black);
}

figure {
    margin: 0;
    padding: 0;
    display: block;
}

img {
    max-width: 100%;
}

h1,
h2,
.heading {
    font-family: var(--title-head);
    line-height: normal;
    font-weight: 600;
    margin-bottom: 5px;
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

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

/*--- Common Style End---*/
/*.scroll-down {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}*/


/*
.scroll-prompt {
     position: fixed;
     z-index: 998;
     bottom: -90px;
     left: 50%;
     margin-left: -75px;
     width: 150px;
     height: 165px;
}*/
.scroll-prompt .scroll-prompt-arrow-container {
    position: absolute;
    top: 0;
    left: 40%;
    /*margin-left: -18px;*/
    animation-name: bounce;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
}

.scroll-prompt .scroll-prompt-arrow {
    animation-name: opacity;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
}

.scroll-prompt .scroll-prompt-arrow:last-child {
    animation-direction: reverse;
    margin-top: -6px;
}

.scroll-prompt .scroll-prompt-arrow > div {
    width: 12px;
    height: 12px;
    border-right: 2px solid #000000;
    border-bottom: 2px solid #000000;
    transform: rotate(45deg) translateZ(1px);
}

@keyframes opacity {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 0.1;
    }

    20% {
        opacity: 0.2;
    }

    30% {
        opacity: 0.3;
    }

    40% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.5;
    }

    60% {
        opacity: 0.6;
    }

    70% {
        opacity: 0.7;
    }

    80% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.9;
    }

    100% {
        opacity: 1;
    }
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    10% {
        transform: translateY(3px);
    }

    20% {
        transform: translateY(6px);
    }

    30% {
        transform: translateY(9px);
    }

    40% {
        transform: translateY(12px);
    }

    50% {
        transform: translateY(15px);
    }

    60% {
        transform: translateY(18px);
    }

    70% {
        transform: translateY(21px);
    }

    80% {
        transform: translateY(24px);
    }

    90% {
        transform: translateY(27px);
    }

    100% {
        transform: translateY(30px);
    }
}


/* animation */


@-webkit-keyframes animationFade {

    from {

        opacity: 0;

        -webkit-transform: translate3d(0, -100%, 0);

        transform: translate3d(0, -100%, 0);

    }

    to {

        opacity: 1;

        -webkit-transform: none;

        transform: none;

    }

}

@-o-keyframes animationFade {

    from {

        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);

    }

    to {

        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
        transform: none;

    }

}

@keyframes animationFade {

    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);

    }

    to {

        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
        transform: none;

    }

}


.header-appear {
    /*height: 70px;*/
    position: fixed;
    top: 0;
    padding: 5px 0px;
    z-index: 999;
    width: 100%;
    background-color: #fff;
    -webkit-animation-name: animationFade;
    -o-animation-name: animationFade;
    animation-name: animationFade;
    -webkit-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
}



header {
    width: 100%;
    z-index: 99;
}

.header-appear .logo img {
    width: 95px;
}

/* =================scroll top css start here================ */
.go-top {
    top: 98%;
    transform: translateY(-98%);
    opacity: 1;
    visibility: visible;
    right: 10px;
    border-radius: 100%;
    z-index: 1;
    background: #ca120e;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    position: fixed;
    cursor: pointer;
}

.go-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: -moz-linear-gradient(0deg, #12978B 0%, #c1282a 100%);
    background-image: linear-gradient(to right, #00132b 0%, #00132b 100%);
    background-image: -ms-linear-gradient(0deg, #12978B 0%, #c1282a 100%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    border-radius: 100%;
}

.go-top::after {
    z-index: -1;
    content: "";
    position: absolute;
    left: 3px;
    top: 3px;
    width: 35px;
    height: 35px;
    -webkit-animation: ripple 1.6s ease-out infinite;
    -moz-animation: ripple 1.6s ease-out infinite;
    -o-animation: ripple 1.6s ease-out infinite;
    animation: ripple 1.6s ease-out infinite;
    opacity: 0;
    background-image: -webkit-linear-gradient(0deg, #ca120e 0%, #ca120e 100%);
    border-radius: 100%;
}

.go-top i {
    font-size: 16px;
    font-weight: 700;
    padding-left: 4px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: -4px;
    right: 0;
    margin: 0 auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

.go-top i:last-child {
    opacity: 0;
    visibility: hidden;
    top: 60%;
}

.go-top:focus i:last-child,
.go-top:hover i:last-child {
    opacity: 1;
    visibility: visible;
    top: 50%;
}

.go-top:focus i:first-child,
.go-top:hover i:first-child {
    opacity: 0;
    top: 0;
    visibility: hidden;
}

@keyframes ripple {

    0%,
    35% {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }

    50% {
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0.8;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(2);
        -moz-transform: scale(2);
        -ms-transform: scale(2);
        -o-transform: scale(2);
        transform: scale(2);
    }
}

/* =================scroll top css start here================ */

/*--- Bootstrap Form Start ---*/

.form-control {
    height: 40px;
    border: 1px solid var(--white);
    padding: 10px 15px;
    background-color: var(--white);
    font-size: 14px;
    color: var(--black);
    letter-spacing: 0;
    border-radius: 0;
    box-shadow: none !important;
}

.form-control:focus {
    outline: none !important;
    border: 1px solid #b1dd02;
    box-shadow: none !important;
}

select.form-control:not([size]):not([multiple]) {
    height: 50px;
}

textarea.form-control {
    height: 100px;
    resize: none;
}

.form-control::placeholder {
    color: var(--color-gray);
    font-family: var(--para-font);
}

.sec-space {
    padding: 80px 0;
}

.sec-space-bottom {
    padding: 0 0 80px;
}

.sec-space-top {
    padding: 80px 0 0;
}

.wpcf7-submit {
    background: var(--dark-blue) !important;
    color: var(--white) !important;
}

.wpcf7-submit:hover {
    background: var(--lime-green);
    color: #fff;
}

.wpcf7-spinner {
    margin: 0;
    width: 0;
}

.captcha-image {
    border: 1px solid #ECECEC !important;
    padding: 10px;
    display: block !important;

}

/*--- Bootstrap Form End ---*/




/*--- TITLE Start---*/

.section-title {
    margin-bottom: 25px;
    font-size: 25px;
    line-height: 36px;
    font-weight: 500;
}

.set-in-touch .section-title {
    padding-right: 30%;
}

.sec-para {
    padding-bottom: 40px;
}

.sec-para p {
    color: var(--light-blue);
}

/*--- TITLE End---*/


/*----   HEADER  START  ----*/

.main-header {
    /*position: relative;*/
    padding: 5px 5%;
}

/*--BOTTOM Start--*/

.menu-wrap {
    flex: 0 0 85%;
    width: 100%;
    padding-right: 40px;
}

.header-account {
    flex: 0 0 15%;
    width: 100%;
}

.header-menu {
    background: var(--white);
    position: relative;
}

.header-menu .center-logo {
    padding: 0 80px;
}

.logo img {
    height: auto;
    width: 100px;
}

.menu-left ul,
.menu-right ul {
    display: flex;
    align-items: center;
}

.menu-left ul li,
.menu-right ul li {
    margin-right: 40px;
}

.menu-left ul li:last-child,
.menu-right ul li:last-child {
    margin-right: 0px;
}

.menu-left ul li a,
.menu-right ul li a {
    color: var(--dark-blue);
    font-weight: 500;
    font-size: 14px;
    position: relative;
}

.menu-left ul li.active a,
.menu-right ul li.active a {
    color: var(--lime-green);
}

.menu-left ul li.active a:before,
.menu-right ul li.active a:before {
    background: var(--lime-green);
    height: 2px;
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 100%;
    content: '';

}

.menu-left ul li a:before,
.menu-right ul li a:before {
    background: var(--lime-green);
    height: 2px;
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 0%;
    content: '';
    transform: translateX(-50%);
    transition: all .5s;
    -webkit-transition: all .5s;
}


.menu-left ul li:hover a:before,
.menu-right ul li:hover a:before {
    width: 100%;
    transition: all .5s;
    -webkit-transition: all .5s;
}


.header-account {}

.header-account ul {
    display: flex;
    justify-content: flex-end;
}

.header-account ul li {
    position: relative;
    margin-right: 15px;
}

.header-account ul li:last-child {
    margin-right: 0px;
}

.header-account ul li a {
    position: relative;
}

.header-account ul li a span {
    position: absolute;
    top: 0px;
    right: -8px;
    display: block;
    height: 16px;
    width: 16px;
    line-height: 16px;
    text-align: center;
    font-size: 10px;
    border-radius: 50%;
    background: var(--white-gray);
    font-weight: 500;
}


/*--BOTTOM End--*/

.sign-btn {
    color: var(--dark-blue);
    border: 1px solid var(--dark-blue);
}

.sign-btn:hover {
    color: var(--white);
    background: var(--dark-blue);
}

.login-btn {
    color: var(--dark-blue);
    border: 1px solid var(--lime-green);
    background: var(--lime-green);
    color: var(--white) !important;
}

.header-account .btn {
    text-align: center;
    padding: 0 15px;
    height: 32px;
    line-height: 32px;
    font-size: 12px;
    font-weight: 500;
}

/*---   HEADER END   ---*/



/*---   BANNER START   ---*/

.banner-home {
    height: 85vh;
    position: relative;
}

.slider-banner .item img {
    height: 85vh;
    width: 100%;
    object-fit: cover;
}

.scroll-down {
    position: absolute;
    left: 50%;
    bottom: -35px;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--dark-blue);
    z-index: 99;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
}

.scroll-down ul li:nth-child(1) {
    position: absolute;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
}

.scroll-down ul li:nth-child(2) {
    position: absolute;
    left: 50%;
    top: 17px;
    transform: translateX(-50%);
    animation: scroll-arrow-1 60s linear infinite;
    -webkit-animation: scroll-arrow-1 60s linear infinite;
}

.scroll-icon li:first-child {}

@keyframes scroll-arrow-1 {
    0% {
        transform: translate(-50%, -10%);
    }
}



/*---   BANNER END   ---*/


/*---   Feature START   ---*/

.bb-1 {
    border-bottom: 1px solid var(--off-white);
}

.ttp-left {}

.ttp-left h3 {
    font-size: 25px;
    line-height: 35px;
    font-weight: 600;
}

.ttp-cc {
    padding-bottom: 30px;
}

.ttp-cc p {
    color: var(--off-dark);
    line-height: 26px;
}

.ttp-feature {
    box-shadow: 0px 6px 20px #0000000D;
}

.ttp-counter {}

.ttpc-box {
    margin-right: 40px;
}

.ttpc-box h3 {
    color: var(--dark-green);
    font-weight: 600;
    font-size: 34px;
    line-height: 36px;
}

.ttpc-box p {
    color: var(--off-dark);
}

.ttp-feature {
    padding: 15px;
    min-height: 150px;
    align-items: center;
}

.ttp-cc,
.ttp-counter {
    padding-left: 20px;
}

.ttpf-image {
    background: var(--lime-green);
    height: 48px;
    width: 48px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
    /*margin-top: 7px;*/
}

.ttpf-image img {
    width: 24px;
    height: auto;
}

.media .icon {
    font-size: 20px;
    color: var(--lime-green);
    margin-right: 30px;
}

.media-body h5 {
    font-size: 14px;
}

.mail-book .media-body h5 {
    margin-bottom: 25px;
}

.set-in-touch .media .media-body {
    margin-left: 25px;
}

.chld {
    position: relative;
}

.chld .media:nth-child(4) {
    right: -234px;
    position: absolute;
    top: 0;
}

.inner-ab .ttp-cc {
    padding-left: 0;
}

.ab-img {
    height: 400px;
}

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

/*---   Feature END   ---*/


/*-- Get In Touch START --*/


.in-touch {
    padding: 30px;
    box-shadow: 0px 0px 20px #0000000D;
}

.form-control {
    border: 1px solid #ECECEC;
    background: var(--white);
}

.in-touch input.form-control {
    margin-bottom: 0;
}

.in-touch .form-control::placeholder {
    color: var(--light-blue);
    font-weight: 400;
    font-size: 13px;
}





/*-- Get In Touch END --*/





.single-banner a {
    display: inline-block;
}

/*--  Explore Property Start  --*/

.explore-property {
    background: url(../images/explore.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.property-content {
    max-width: 500px;
    margin: 0 auto;
}

.property-content h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: normal;
    color: var(--dark-blue);
    margin-bottom: 35px;
}

.property-content .btn-red {

    background: var(--red);
    color: var(--white);
    height: 42px;
    line-height: 42px;
}

.property-content .btn-red:hover {
    background: var(--lime-green);
    color: #fff;
}

.property-content .pr-logo {
    margin-bottom: 35px;
}

/*--  Explore Property End  --*/




/*--  Footer Start  --*/
/*.ftr-menu ul {
    column-count: 2;
    -ms-column-count: 2;
    -webkit-column-count: 2;
}*/

.footer-main {
    background: var(--white);
    padding: 0 5%;
}

.subscribe-wrapper {
    padding: 40px 0;
    border-bottom: 1px solid rgb(112 112 112 / 20%);
}

.footer-link-wrapper {
    padding: 40px 0;
    border-bottom: 1px solid rgb(112 112 112 / 20%);
}

.quick-link-box h5 {
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--dark-blue);
}

.quick-link-box ul {
    list-style: none;
    padding-left: 0px;
}

.quick-link-box ul li {
    margin-bottom: 10px;
    display: inline-block;
    padding: 0 30px 0 0;
}

.quick-link-box ul li a {
    text-decoration: none;
    color: var(--dark-blue);
    font-size: 13px;
    line-height: 16px;
    font-weight: 600;
}
.quick-link-box.ftr-menu {
    text-align: center;
}
.quick-link-box ul li a:hover {
    color: var(--lime-green);
}

.quick-link-box p {
    color: var(--off-white);
    font-size: 12px;
}

.copy-right {
    padding: 20px 0;
    text-align: center;
}

.copy-right p {
    line-height: 12px;
    font-size: 12px;
    color: var(--light-blue);
}

.copy-right p a {
    color: var(--white);
}

/*.ft-logo {
    padding-right: 100px;
}*/

.ft-logo a {
    padding-bottom: 10px;
}


.ft-logo a img {
    width: 80px;
    height: auto;
}

.ft-logo p {
    color: var(--light-blue);
}

.ft-subscribe {
    position: relative;
}

.ft-subscribe .ig_es_form_field_email {
    border: 0px;
    border-bottom: 1px solid var(--light-blue);
    padding-left: 0px;
    padding-right: 40px;
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
}

.ig_es_form_field_email {
    height: 40px;
    /* border: 1px solid var(--white); */
    padding: 10px 15px;
    background-color: var(--white);
    font-size: 14px;
    color: var(--black);
    letter-spacing: 0;
    border-radius: 0;
    box-shadow: none !important;
}

.ft-subscribe .btn-subscribe {
    font-size: 0px;
    z-index: 9;
    position: relative;
}

.emaillist form {
    display: flex;
}

.ft-subscribe .es_textbox_button {
    /*  position: absolute;
    left: 0;
    bottom: 10px;
    content: '';*/
    background: url(../images/arrow-send.svg);
    background-repeat: no-repeat;
    background-size: 80%;
    height: 30px;
    width: 30px;
    transition: all .5s;
    -webkit-transition: all .5s;
    border: transparent;
    font-size: 0;
    margin: 7px 0 0 -25px;
}

.ft-subscribe .es_textbox_button:hover {
    transform: rotate(45deg);
    transition: all .5s;
    -webkit-transition: all .5s;
}

.send-senbscribe {
    position: relative;
    width: 24px;
    border-bottom: 1px solid var(--light-blue);
}

.ft-subscribe .form-control::placeholder {
    font-size: 13px;
    color: var(--light-blue);
}

/*--  Footer End  --*/


/*--- Owl Nav Start ---*/

.slider-testi .owl-nav {
    margin-left: 10px;
}

.slider-testi .owl-prev {
    margin-right: 10px;
}

.slider-testi .owl-prev:hover {
    transform: scale(1.4);
    transition: all .3s;
    -webkit-transition: all .3s;
}

.slider-testi .owl-next:hover {
    transform: scale(1.4);
    transition: all .3s;
    -webkit-transition: all .3s;
}


/*--- Owl Nav End ---*/







/*--  FAQ Start  --*/

.faq {
    background: transparent linear-gradient(180deg, #E2FAFF 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
    position: relative;
    overflow: hidden;
}

.faq-image {
    padding-right: 15px;
    position: absolute;
    bottom: 0;
    left: 0;
    top: 0;
}

.faq-image img {
    filter: grayscale(100%);
    width: 95%;
    object-fit: cover;
}

.faq-wrap {}


.faq-wrap .card {
    background: transparent;
    border-left: 0px;
    border-right: 0px;
    border-radius: 0;
    border-top: 0;
}

.faq-wrap .card-header {
    background: transparent;
    padding: 10px 0;
    border-bottom: 0px;
}

.card-header .btn {
    height: auto;
    line-height: 24px;
    text-transform: none;
}


.faq-wrap .card-body {
    padding: 12px 0 15px 0;
}

.faq-wrap .btn-link {
    /* padding: 0px !important;*/
    padding-right: 30px !important;
    text-decoration: none;
    color: var(--dark-blue);
    position: relative;
    transition: all .3s;
    font-weight: 600;
    font-size: 15px;
    -webkit-transition: all .3s;
}

.faq-wrap .btn-link.collapsed:before {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    content: '';
    font-size: 18px;
    width: 16px;
    height: 16px;
    background: url(../images/plus.svg);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: all .3s;
    -webkit-transition: all .3s;
}

.faq-wrap .btn-link.uparow:before {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    content: '';
    font-size: 18px;
    width: 16px;
    height: 16px;
    background: url(../images/minus.svg);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: all .3s;
    -webkit-transition: all .3s;
}


/*--  FAQ End  --*/

/* ------------- inner banner ---------------------- */

.inner_banner img {

    width: 100%;

    max-width: 100%;

    max-height: 350px;

    object-fit: cover;

}



ul.breadcrumbs li {
    display: inline-block;
    padding: 0px 5px;
}



.innerBanner {
    position: relative;
}

.innerBanner:after {

    content: "";
    position: absolute;
    left: 0;

    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;

    background: rgb(10, 10, 10);

    background: linear-gradient(90deg, rgba(10, 10, 10, 1) 0%, rgba(0, 0, 0, 0) 100%);

}





.innerBanner img {
    width: 100%;
    max-width: 100%;
    max-height: 400px;
    object-fit: cover;
}



.title_breadcrumb-inner {
    position: absolute;
    width: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 70%;
    z-index: 5;
}



.title_breadcrumb-inner span {
    display: inline-block;
    padding: 15px;
    width: auto;
    min-width: 250px;
    text-align: center;
    color: #fff;
}



.title_breadcrumb-inner span h1 {
    position: relative;
    text-align: left;
    font-size: 40px;
    padding-bottom: 10px;
    margin-bottom: 0px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
}



.title_breadcrumb-inner span h1:after {

    content: '';

    width: 60px;

    height: 3px;

    left: 8px;

    display: block;

    position: absolute;

    margin-top: 5px;

    background: var(--lime-green);
    ;

}

.breadcrumb_bottom {
    padding: 10px 0;
    text-align: left;
}



.breadcrumb_bottom ul {
    margin-bottom: 0px;
    text-align: left;
}



.breadcrumb_bottom ul li {
    color: #fff;
    font-weight: 500;
    font-size: 15px;
}



.breadcrumb_bottom ul li strong {
    color: var(--lime-green);
    font-weight: 500;
}

.bread-current {
    color: var(--lime-green);
}

.breadcrumb_bottom ul li a {
    color: #fff;
}



.breadcrumb_bottom ul li a:hover {
    color: #fff;
}


/*==========new nav menu=====*/

.main-header {
    /* position: relative; */
    padding: 20px 5%;
}

.my-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    position: absolute;
    left: 50%;
    top: 6px;
    transform: translateX(-50%);
    z-index: 5;
}

.nav-sub ul {
    justify-content: center;
    align-items: center;
    width: 100%;
}

.nav-sub ul li:nth-child(3) {
    padding-right: 390px !important;
}

.nav-sub ul li {
    padding-left: 35px;

}

.nav-sub ul li a {
    color: var(--dark-blue);
    font-weight: 500;
    font-size: 14px;
    position: relative;
}

.nav-sub ul li a:hover {
    color: #b1dd02;
}

.nav-sub ul li a:after {
    left: auto;
    right: 0;
    bottom: 0;
    height: 2px;
    content: "";
    width: 0%;
    position: absolute;
    border-radius: 50px;
    background-color: #b1dd02;
    transition: 0.3s all ease-in-out;
}

.nav-sub ul li a.active {
    color: #b1dd02;
}

.nav-sub ul li a:hover:after {
    width: 100%;
    right: auto;
    left: 0;

}

.nav-sub ul li a.active:after {
    width: 100%;
    right: auto;
    left: 0;
    /*padding: 7px 5px;*/
}

/*.nav-sub ul li {
    position: relative;
    display: block;
    padding-bottom: 2px;
}*/

.nav-sub ul li.active a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #ff9e1d;
    visibility: visible;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.wpcf7-not-valid-tip:not(:nth-child(1)):not(:nth-child(2)) {
    display: none;
}

.wpcf7 form.invalid .wpcf7-response-output {
    display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
    text-align: center;
}

.media-body p a {
    color: var(--black);
}


/*-------------*/

.logoftr a img{width:60px;}
figure.logoftr {
    text-align: right;
}