@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap"); @import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap"); :root {
    --green-clr: rgba(4, 124, 91, 1);
    --orange-clr: rgba(241, 103, 68, 1);
    --black-clr: rgba(0, 0, 0, 1);
    --red-clr: rgba(167, 62, 65, 1);
    --main-heading: clamp(28px, 3.889vw, 56px);
    --mini-heading: clamp(16px, 2.222vw, 32px);
    --para-font: clamp(14px, 1.111vw, 16px);
    --heading-line-height: 140%;
    --para-line-height: 180%;
}

body {
    position: relative;
    background-color: rgb(252, 251, 241);
}

body, html {
    width: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Oswald, sans-serif;
}

p, a, li, button, span, label {
    font-family: Inter, sans-serif;
}

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

.main-heading {
    font-size: var(--main-heading);
    font-weight: 700;
    line-height: var(--heading-line-height);
}

.main-paragraph {
    font-size: var(--para-font);
    font-weight: 400;
    line-height: var(--para-line-height);
}

.main-button {
    color: rgb(255, 255, 255);
    font-size: var(--para-font);
    font-weight: 400;
    padding: 15px 40px;
    background-color: var(--orange-clr);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: 0.3s ease-in-out;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
}

.main-button::before, .main-button::after {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.main-button {
    overflow: hidden;
    color: rgb(255, 255, 255);
}

.main-button span {
    display: flex;
    flex-direction: row-reverse;
    position: relative;
    z-index: 10;
}

/* .main-button:hover span {
    animation: 0.3s ease 0s 1 normal forwards running MoveScaleUpInitial, 0.3s ease 0.3s 1 normal forwards running MoveScaleUpEnd;
} */

@keyframes MoveScaleUpInitial {
    100% {
        transform: translate3d(0px, -105%, 0px) scale3d(1, 2, 1);
        opacity: 0;
    }
}

@keyframes MoveScaleUpEnd {
    0% {
        transform: translate3d(0px, 100%, 0px) scale3d(1, 2, 1);
        opacity: 0;
    }

    100% {
        transform: translate3d(0px, 0px, 0px);
        opacity: 1;
    }
}

.main-button::before {
    content: "";
    background: rgb(4, 124, 91);
    width: 120%;
    height: 0px;
    padding-bottom: 120%;
    top: -110%;
    left: -10%;
    border-radius: 50%;
    transform: translate3d(0px, 68%, 0px) scale3d(0, 0, 0);
}

.main-button:hover::before {
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.main-button::after {
    content: "";
    background: rgb(4, 124, 91);
    transform: translate3d(0px, -100%, 0px);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.main-button:hover::after {
    transform: translate3d(0px, 0px, 0px);
    transition-duration: 0.05s;
    transition-delay: 0.4s;
    transition-timing-function: linear;
}

.clr-white {
    color: rgb(255, 255, 255);
}

.clr-black {
    color: rgb(0, 0, 0);
}

.d-flex {
    display: flex;
}

.d-block {
    display: block;
}

.d-inline-block {
    display: inline-block;
}

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

.d-flex-align-start {
    align-items: start;
}

.d-flex-align-end {
    align-items: end;
}

.d-flex-jst-center {
    justify-content: center;
}

.d-flex-jst-space {
    justify-content: space-between;
}

.d-flex-colm {
    flex-direction: column;
}

.d-flex-row {
    flex-direction: row;
}

.section-padding {
    padding: 100px 0px;
}

.p-relative {
    position: relative;
}

.white-text {
    color: rgb(255, 255, 255);
}

button#navTrigger {
    display: none;
}

button#navTrigger {
    outline: none;
    border: none;
}

header#header {
    width: 100%;
    transition: 0.3s ease-in-out;
    padding-bottom: 10px;
}

.header-wrapper-top {
    /* display: none; */
    padding: 15px 0px;
    background-color: rgb(10, 10, 10);
}

.top-search-bar-header-top input {
    padding: 7px 7px 7px 35px;
    border-radius: 25px;
    width: 100%;
    display: block;
    border: none;
    outline: none;
    transition: 0.3s ease-in-out;
    box-shadow: none;
    position: relative;
    z-index: 1;
}

.top-search-bar-header-top input::placeholder {
    color: #000;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transform-origin: left center;
	font-family: Inter, sans-serif;
}

.top-search-bar-header-top input:focus::placeholder {
    transform: translateX(20px) scale(0.8);
    opacity: 0;
}

.top-search-bar-header-top input:focus {
    padding-left: 35px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px;
    border: 1px solid rgb(243, 159, 95);
}

.top-search-bar-header-top input:focus + img {
    left: 15px;
}

.top-search-bar-header-top {
    width: 150px;
    position: relative;
}

.top-search-bar-header-top img {
    position: absolute;
    left: 7px;
    top: 4px;
    width: 22px;
    height: 22px;
    display: inline-block;
    z-index: 11;
}
.filter-wrapper {
    display: none;
}
.swiper-wrapper{flex-wrap:wrap;}
.swiper-button-next, .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
    background: #000;
    border-radius: 100%;
    color: #fff !important;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 21px !important;
    color: #fff !important;
}


@media(min-width:768px){
	.swiper-button-next, .swiper-button-prev {
		display: none !important;
	}
}
@media(min-width:769px){

li#menu-item-7747 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    column-gap: 4px;
    position: relative;
    cursor: pointer;
    padding-bottom: 30px;
    margin-bottom: -30px;
}
    span.down-arrow {
        display: inline-block;
        margin-top: -3px;
		        transition: all 0.3s ease-in-out;
    }
	li#menu-item-7747:hover span.down-arrow {
    transform: rotate(180deg);
}
ul.sub-menu {
    position: absolute;
    left: 0px;
    top: 45px;
    background: rgb(255, 255, 255);
    width: 230px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: 0.4s ease-in-out;
    display: block !important;
    z-index: 9999;
}

span.down-arrow img {
    height: 10px;
    width: 10px;
/* 	filter: invert(1) brightness(5); */
}

#menu-header-menu li:hover ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
}

#menu-header-menu li:hover ul.sub-menu li a {
    color: rgb(10, 10, 10);
    margin: 0px;
    padding: 0px;
}
 ul.sub-menu li a::before {
    display: none;
}
#menu-header-menu li:hover ul.sub-menu li a::before {
    display: none;
}

ul.sub-menu li {
    display: block;
    width: 100%;
    border-bottom: 1px solid rgb(0, 0, 0);
    padding: 16px 26px;
}
    .sub-menu li:hover {
        background-position: left bottom;
    }
#menu-header-menu li:hover ul.sub-menu li:last-child {
    border-bottom: none;
}

.sub-menu li {
    display: block;
    background-size: 200% 100% !important;
    background: linear-gradient(to right, var(--orange-clr) 50%, white 50%);
    background-position: right bottom !important;
    transition: 0.3s ease-out;
}

.sub-menu li:hover {
    background-position: left bottom !important;
}

.sub-menu li:hover a {
    color: rgb(255, 255, 255) !important;
}

.icon-bar-header-top ul {
    column-gap: 30px;
}

.icon-bar-header-top ul li a {
    display: block;
}

.header-wrapper-bottom-navbar ul {
    column-gap: 30px;
}

.header-wrapper-bottom-navbar ul li a {
    position: relative;
    display: block;
    color: #000;
    font-size: clamp(16px, 1.25vw, 18px);
    transition: color 0.3s ease-in-out;
    line-height: 110%;
    font-weight: 400;
    padding-bottom: 5px;
}

.header-wrapper-bottom-navbar ul li a::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 2px;
    background-color: rgb(243, 159, 95);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease-in-out;
}

.header-wrapper-bottom-navbar ul li a:hover::before {
    transform: scaleX(1);
    transform-origin: right center;
}

.header-wrapper-bottom-navbar ul li.current-menu-item a::before {
    transform: scaleX(1);
    transform-origin: left center;
}

.header-wrapper-bottom-navbar ul li.current-menu-item a {
    color: rgb(243, 159, 95);
    font-weight: 700;
}

.header-wrapper-bottom-navbar ul li a:hover {
    color: rgb(243, 159, 95);
}

.newClass .header-wrapper-bottom-navbar ul li a {
    color: rgb(255, 255, 255);
}

.newClass .header-wrapper-bottom-navbar ul li a:hover {
    color: rgb(243, 159, 95);
}

.newClass .header-wrapper-bottom-navbar ul li.current-menu-item a {
    color: rgb(243, 159, 95);
}

.header-wrapper-bottom-logo a img {
    display: block;
    height: 110px;
    width: 100px;
}

.header-wrapper-bottom {
    padding: 30px 0px 0px;
}

.newClass .header-wrapper-bottom-logo a img {
    height: 75px !important;
    width: 75px !important;
	    filter: invert(1) brightness(5);
}

.newClass .header-wrapper-bottom-button a {
    padding: 12px 30px;
}

.icon-bar-header-top ul li a img {
    display: block;
    width: 22px;
    height: 22px;
}

.header-wrapper-bottom-button a img {
    height: 20px;
    width: 20px;
    display: inline-block;
    margin-left: 10px;
}

.header-wrapper-bottom-navbar ul li.current-menu-item a {
    color: rgb(243, 159, 95);
    font-weight: 700;
}

.header-wrapper-bottom-navbar ul li a:hover {
    /* color: rgb(255, 255, 255); */
}


}


.newClass .header-wrapper-bottom-navbar ul li a {
    color: rgb(255, 255, 255);
}

.newClass .header-wrapper-bottom-navbar ul li a:hover {
    color: rgb(243, 159, 95);
}

.newClass .header-wrapper-bottom-navbar ul li.current-menu-item a {
    color: rgb(243, 159, 95);
}
.newClass span.down-arrow img{
		filter: none !important;
	}
.header-wrapper-bottom-logo a img {
    display: block;
    height: 110px;
    width: 100px;
    transform: none;
    animation: none;
    object-fit: contain;
}

.header-wrapper-bottom {
    padding: 30px 0px 0px;
    /* background-color: rgb(10, 10, 10); */
}

.newClass .header-wrapper-bottom-logo a img {
    height: 90px;
    width: 90px;
}

.newClass .header-wrapper-bottom-button a {
    padding: 12px 30px;
}
.header-wrapper-bottom.newClass {
    padding: 16px 0 !important; 
}
/* ==new-css=== */


.banner-wrapper-left-btn-1 a:hover img{
    background-color: var(--orange-clr);
	transform: rotate(-30deg) !important;
}
.black-themselves-link a:hover img{
    background-color: rgba(167, 62, 65, 1);
	transform: rotate(-30deg) !important;
}
.explore-wrapper-left a:hover img{
    background-color: var(--green-clr);
	transform: rotate(-30deg) !important;
}
.avenur-buttom a:hover img{
    background-color: var(--green-clr);
	transform: rotate(-30deg) !important;
}
.banner-wrapper-left-btn-1 a img,
.black-themselves-link a img,
.explore-wrapper-left a img{
    transition: all 0.2s ease-in-out;
}

.banner-wrapper-left-btn-1 a:hover,
.black-themselves-link a:hover,
.explore-wrapper-left a:hover{
    color: #000;
}





/* ===new-css-end=== */

footer#footer {
    background-color: var(--black-clr);
    position: relative;
}

footer#footer::before {
    background-image: url("../images/footer-top.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0px;
    top: -170px;
    width: 100%;
    height: 190px;
}

.footer-wrapper {
    column-gap: 145px;
    align-items: flex-start;
    padding: 30px 0px 70px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-wrapper-left a {
    display: inline-block;
}

.footer-wrapper-right-images ul li {
    flex: 0 0 20%;
    width: 100%;
    max-width: 20%;
}

.footer-wrapper-right-images ul li a {
    display: block;
    width: 100%;
}

.footer-wrapper-right-images ul li a img {
    width: 100%;
    border-radius: 8px;
    height: 65px;
    display: block;
    object-fit: cover;
}

.footer-wrapper-right-images ul {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: start;
}

.footer-wrapper-left {
    width: 100%;
    max-width: 25%;
}

.footer-wrapper-center {
    width: 100%;
    max-width: 300px;
}

.footer-wrapper-center ul {
    flex-wrap: wrap;
}

.footer-wrapper-center ul li {
    width: 100%;
    max-width: 100px;
    display: inline-block;
}

.footer-wrapper-center ul li a {
    display: inline-block;
    color: rgb(255, 255, 255);
    font-size: var(--para-font);
    font-weight: 400;
    line-height: 160%;
}

.footer-wrapper-center ul {
    gap: 30px 100px;
}

.footer-wrapper-right {
    width: 100%;
    max-width: 50%;
}

.footer-wrapper-right-images {
    width: 100%;
}

.footer-wrapper-left a img {
    width: 100px;
    height: 90px;
    display: block;
    object-fit: contain;
    animation: none;
    transform: none;
}

.footer-wrapper-left p {
    margin-top: 40px;
}

.footer-wrapper-center h4 {
    color: rgb(255, 255, 255);
    font-size: clamp(18px, 2.292vw, 32px);
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 150%;
}

.footer-wrapper-right h4 {
    color: rgb(255, 255, 255);
    font-size: clamp(18px, 2.292vw, 32px);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 150%;
}

.footer-copyright {
    padding: 20px 0px 30px;
}

.footer-copyright p {
    text-align: center;
}

.footer-copyright p a {
    color: rgb(243, 159, 95);
    display: inline-block;
}

.banner {
    padding: 40px 0px 80px;
}

.banner-wrapper-right-img {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: -1;
}

.banner-wrapper-right-math {
    display: none;
}

.banner-wrapper-right-img img {
    width: 100%;
    display: block;
    height: 400px;
}

.banner-wrapper-left {
    width: 100%;
    max-width: 30%;
    position: relative;
}

.banner-wrapper-left h1 {
    position: relative;
}

.banner-wrapper-right {
    width: 100%;
    max-width: 70%;
    position: relative;
}

.banner-wrapper.d-flex.d-flex-align-center.d-flex-jst-space {
    column-gap: 240px;
}

.banner-wrapper-left h1 {
    color: rgb(0, 0, 0);
    width: 100%;
    max-width: 370px;
}

.banner-wrapper-right {
}

.banner-wrapper-left p {
    color: #000;
    font-size: clamp(16px, 1.111vw, 18px);
    line-height: 160%;
    margin: 24px 0px 65px;
}

.banner-wrapper-right-math img {
    width: 100%;
    display: block;
    height: 70px;
}

.banner-wrapper-right-img img {
    width: 100%;
    display: block;
    height: 440px;
    object-fit: contain;
}

.banner-wrapper-left-btn-1 a img {
    display: inline-block;
    background-color: rgb(4 124 91);
    border-radius: 50%;
    height: 35px;
    width: 35px;
    margin-right: 10px;
    padding: 5px;
}

.banner-wrapper-left-btn-1 a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.banner-wrapper-left-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 20px;
}

.banner-wrapper-left-btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.banner-wrapper-left-btn a img {
    margin-left: 10px;
}

.banner-revanu {
    margin-top: 120px;
    background-image: url("../images/bg-green-t.svg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 100px 0px 60px;
    border-radius: 0px 0px 20px;
    position: relative;
}

.banner-ravenu-center {
    width: 100%;
    border-right: 1px dashed rgba(244, 238, 229, 0.5);
    border-left: 1px dashed rgba(244, 238, 229, 0.5);
    padding: 0px 150px;
    max-width: 33.33%;
}

.banner-ravenu-center img {
    width: 100%;
    height: 150px;
    display: block;
    object-fit: contain;
}

.banner-ravenu-left {
    position: relative;
    width: 100%;
    max-width: 33.33%;
}

.banner-ravenu-right {
    width: 100%;
    max-width: 33.33%;
}

.newClass {
    width: 100%;
    top: 0px;
    z-index: 999;
    position: fixed;
    box-shadow: 0px 8px 30px -9px;
    background-color: rgb(0, 0, 0) !important;
}

.black-themselves-heading h2 {
    width: 100%;
}

.black-themselves-heading img {
    display: none;
}

.black-themselves-heading h2 img {
    display: none;
}

.black-themselves-link {
    margin-top: 50px;
    margin-bottom: 25px;
}

.black-themselves-link a img {
    padding: 6px;
    display: block;
    height: 35px;
    width: 35px;
    background-color: var(--green-clr);
    border-radius: 50%;
    margin-right: 10px;
}

.black-themselves-link a {
    display: inline-flex;
    align-items: center;
}

.black-themselves-img-cards {
    column-gap: 12px;
}

.black-themselves-img-cards-50 {
    width: 100%;
    max-width: 50%;
    position: relative;
}

.black-themselves-img-cards-50 img {
    width: 100%;
    display: block;
    height: 480px;
    object-fit: cover;
    border-radius: 20px;
}

.second-img {
    position: relative;
}

.black-themselves-img-cards-25 {
    width: 100%;
    max-width: 25%;
    row-gap: 20px;
    position: relative;
}

.black-themselves-img-cards-25 img {
    display: block;
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 20px;
}

.second-img img {
    height: 480px;
    border-radius: 20px;
}

.black-themselves-img-cards-25-second {
    display: block;
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
}

.black-themselves {
    position: relative;
    padding: 120px 0px 160px;
}

.black-themselves::before {
    content: "";
    background-image: url("../images/section-before-svg-orange.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 75px;
    position: absolute;
    top: -2px;
    left: 0px;
}

.black-themselves::after {
    content: "";
    background-image: url("../images/section-after-svg-orange.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100px;
    position: absolute;
    bottom: -2px;
    left: 0px;
    z-index: 1;
}

.explore {
    padding: 80px 0px 60px;
    position: relative;
}
.explore-wrapper-right-img:hover a {
    color: #f16744;
}

.explore-wrapper-right-img:hover img {
    background-color: #a73e41;
}

.explore-wrapper-right-img img {
    transition: all 0.3s ease-in-out;
}
.explore-wrapper {
    column-gap: 30px;
}

.explore-wrapper-left {
    width: 100%;
    max-width: 30%;
}

.explore-wrapper-right {
    width: 100%;
    max-width: 70%;
    column-gap: 20px;
}

.explore-wrapper-right-img img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 40px;
}

.explore-wrapper-right-img {
    width: 100%;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--green-clr);
    padding: 0px 0px 30px;
    border-radius: 230px 60px 20px 20px;
    transform: skewY(-5deg);
    transition: alll 0.3s ease-in-out;
}

.explore-wrapper-left a img {
    display: inline-block;
    background-color: var(--orange-clr);
    padding: 5px;
    border-radius: 50%;
    margin-right: 10px;
    height: 35px;
    width: 35px;
}

.explore-wrapper-right-img a {
    color: rgb(255, 255, 255);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    margin-top: 30px;
    transform: skewY(5deg);
    transition: all 0.3s ease-in-out;
}

.explore-wrapper-right-img a img {
    display: inline-block;
    background-color: var(--orange-clr);
    padding: 5px;
    border-radius: 50%;
    margin-right: 10px;
    height: 35px;
    width: 35px;
}

.explore-wrapper-left a {
    color: #000;
    display: inline-flex;
    align-items: center;
}

.explore-wrapper-left a img {
    display: inline-block;
    background-color: var(--orange-clr);
    padding: 5px;
    border-radius: 50%;
    margin-right: 10px;
    height: 35px;
    width: 35px;
}

.explore-wrapper-right-img-right a {
    color: rgb(255, 255, 255);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
}

.explore-wrapper-right-img-right a img {
    display: inline-block;
    background-color: var(--orange-clr);
    padding: 5px;
    border-radius: 50%;
    margin-right: 10px;
    height: 35px;
    width: 35px;
}

.explore-wrapper-left h2 {
    color: #000;
}

.explore-wrapper-left p {
    color: #000;
    margin-top: 30px;
}

.avenue {
    position: relative;
}

.avenue::before {
    content: "";
    background-image: url("../images/avenue-before-orange.svg");
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0px;
    top: -2px;
    height: 80px;
    width: 100%;
}

.avenue::after {
    content: "";
    background-image: url("../images/avenue-after-orange.svg");
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0px;
    bottom: -2px;
    height: 90px;
    width: 100%;
}
.write-heading.d-flex.d-flex-align-center.d-flex-colm h2 {
    color: rgba(252, 251, 241, 1);
}

.write-heading.d-flex.d-flex-align-center.d-flex-colm p {
    color: rgba(252, 251, 241, 1);
}

.avenue-wrapper {
    column-gap: 100px;
}

.avenue-wrapper-left {
    width: 100%;
    max-width: 50%;
    padding: 120px;
    position: relative;
}

.avenue-wrapper-right {
    width: 100%;
    max-width: 50%;
    position: relative;
}

.avenue-wrapper-left img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transform: skewY(-5deg);
    border-radius: 20px;
}

section.avenue {
    padding: 100px 0px 50px;
    background-color: var(--red-clr);
}

.avenue-wrapper-left-img {
    position: relative;
}

.avenue-wrapper-left-img::before {
    content: "";
    background-image: url("../images/star-wrap.svg");
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: -170px;
    top: -135px;
    height: 740px;
    width: 740px;
}

.avenur-buttom a {
    color: rgb(255, 255, 255);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
}

.avenur-buttom a img {
    display: inline-block;
    background-color: var(--orange-clr);
    padding: 5px;
    border-radius: 50%;
    margin-right: 10px;
    height: 35px;
    width: 35px;
}

.avenue-wrapper-right p {
    margin: 25px 0px 32px;
}

.write-us {
    padding: 60px 0px 150px;
}

.write-faq-wrap {
    position: relative;
}

.rocket-icon {
    display: none;
    top: 60%;
    z-index: 1;
}

.rocket-icon img {
    height: 60px;
    width: 60px;
    display: block;
}




.write-heading {
    position: relative;
}






.write-heading p {
    width: 100%;
    max-width: 530px;
    text-align: center;
    margin-top: 20px;
}

.write-faq-wrap {
    background-color: var(--orange-clr);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 90px 100px;
    border-radius: 20px;
    position: relative;
}

.accordion {
    border-bottom: 1px solid rgba(244, 238, 229, 0.2);
}

.accordion-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s;
    color: rgb(255, 255, 255);
    height: 32px;
    width: 32px;
    font-size: 32px;
}

.accordion-content {
    max-height: 0px;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    position: relative;
}

.accordion-content::before {
    content: "";
    background-image: url("../images/faq-before.svg");
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 1px;
    top: 0px;
    height: 66px;
    width: 100%;
}

.accordion-content::after {
    content: "";
    background-image: url("../images/faq-before.svg");
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0px;
    bottom: 0px;
    height: 66px;
    width: 100%;
    transform: rotateX(180deg);
}

.accordion.active .accordion-content {
    padding: 50px 90px;
    max-height: 200px;
    opacity: 1;
    background-color: var(--green-clr);
    width: calc(100% + 180px);
    margin-left: -90px;
    box-sizing: border-box;
    border-radius: 20px;
}

.accordion-heading {
    position: relative;
    z-index: 1;
}

.accordion-heading sapn {
    color: rgb(244, 238, 229);
}

.accordion-heading span {
    color: rgb(244, 238, 229);
    font-size: clamp(18px, 1.667vw, 24px);
    font-weight: 700;
    font-family: Oswald, sans-serif;
}

.accordion.active {
    padding: 20px 0px;
}

.accordion.active .accordion-heading {
    padding: 0px 0px 20px;
}

.contact-box {
    padding: 20px 0 90px !important;
    position: relative;
}

.contact-box-wrap {
    background-color: var(--green-clr);
    padding: 100px 160px;
    justify-content: center;
    border-radius: 60px;
    position: relative;
}
.contact-box-wrap {
border-top-left-radius: 80px;
padding-top: 0 !important;
}
section.contact-box.about-contact-box {
    padding-top: 100px;
}
.contact-box-wrap::before {
    content: "";
    background-image: url("https://staging-e8ab-blkavenuecom.wpcomstaging.com/wp-content/uploads/2024/08/imgpsh_fullsize_anim-21.png");
/* 	background-image: url("../images/mail-box-before-2.png"); */
    background-repeat: no-repeat;
    position: absolute;
	left: 0;
    top: -100px;
    height: 165px;
    width: 100%;
background-size: 100% 100%;

}

.contact-box-wrap h4 {
    font-weight: 700;
}

.contact-box-wrap h2 {
    text-align: center;
    margin: 10px 0px 30px;
    position: relative;
}

.contact-box-form input[type="email"] {
    padding: 20px 25px;
    border-radius: 40px;
    border: none;
    outline: none;
    width: 100%;
    display: block;
}

.contact-box-form {
    width: 100%;
    max-width: 450px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-box-wrap form {
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
}

.contact-box-form button {
    position: absolute;
    right: 25px;
    top: 10px;
    border: none;
    background-color: var(--orange-clr);
    border-radius: 50%;
    padding: 2px;
    cursor: pointer;
}

.contact-box-form button img {
    width: 100%;
    display: block;
    height: 31px;
}

.contact-box-form input[type="email"]::placeholder {
    color: #000;
    font-size: var(--para-font);
    line-height: 160%;
    font-family: Inter, sans-serif;
}

.follow-links {
    margin-top: 40px;
    column-gap: 25px;
}

.follow-links-list ul {
    column-gap: 30px;
}

.follow-links p {
    color: rgb(255, 255, 255);
    font-weight: 700;
}

.follow-links-list ul li a {
    display: block;
}

.follow-links-list ul li a img {
    display: block;
    height: 22px;
    width: 22px;
}

.main-banner {
    padding: 120px 0px;
    position: relative;
    margin-top: 20px;
    z-index: -1;
}

.main-banner::before {
    content: "";
    background-image: url("../images/banner-top-new.svg");
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0px;
    top: -1px;
    height: 50px;
    width: 100%;
}

.main-banner::after {
    content: "";
    background-image: url("../images/banner-bottom-new.svg");
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0px;
    bottom: -2px;
    height: 57px;
    width: 100%;
}

.accordion-content p:empty {
    display: none;
}

.main-banner-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.main-banner-wrapper h1 {
    color: rgb(244, 238, 229);
    margin-bottom: 15px;
    width: 100%;
    max-width: 850px;
    text-align: center;
}

.main-banner-wrapper-bread {
    column-gap: 20px;
}

.main-banner-wrapper-bread a {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    color: rgb(243, 159, 95);
    column-gap: 10px;
}

.main-banner-wrapper-bread a img {
    display: inline-block;
    height: 15px;
    width: 15px;
}

.main-banner-wrapper-bread p {
    color: rgb(244, 238, 229);
}

.at-blk {
    padding: 40px 0px 80px;
}

.at-blk-wrapper-left h2 {
    color: #000;
    position: relative;
    width: 100%;
    max-width: 335px;
}

.at-blk-wrapper-left h2::after {
    content: "";
    background-image: url("../images/rocket.svg");
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    right: -80px;
    top: 20px;
    height: 50px;
    width: 50px;
}

.at-blk-wrapper-left p.main-paragraph.at-blk-first-para {
    color: #000;
    font-weight: 700;
    margin: 20px 0px;
}

.at-blk-wrapper-left p {
    color: #000;
}

.at-blk-wrapper {
    column-gap: 60px;
}

.at-blk-wrapper-left {
    width: 100%;
    max-width: 45%;
}

.at-blk-wrapper-right {
    width: 100%;
    max-width: 55%;
    align-items: flex-end;
}

.at-blk-wrapper-right-1 img {
    width: 100%;
    max-width: 250px;
    display: block;
    border-radius: 20px;
    height: 240px;
    object-fit: cover;
    object-position: right center;
    margin-bottom: -70px;
}

.at-blk-wrapper-right-1 {
    width: 100%;
    max-width: 50%;
}

.at-blk-wrapper-right-2 {
    width: 100%;
    max-width: 90%;
    margin-left: -160px;
    position: relative;
    z-index: -1;
}

.at-blk-wrapper-right-2 img {
    display: block;
    width: 100%;
    border-radius: 20px;
    height: 470px;
    object-fit: cover;
}

section.contact-box.about-contact-box {
    padding: 100px 0px 100px;
}

.offerd-resources .accordion-content::before {
    display: none;
}

.offerd-resources .accordion-content::after {
    display: none;
}

.offerd-resources .accordion.active .accordion-content {
    width: 100%;
    margin-left: 0px;
    padding: 0px;
    background-color: transparent;
    border-radius: 0px;
}

.offerd-resources .accordion.active .accordion-content p {
    color: #000;
}

.accordion.active .accordion-content ul li {
    line-height: 160%;
    font-size: var(--para-font);
    font-weight: 400;
    list-style: disc;
    color: rgb(244, 238, 229);
}

.accordion.active .accordion-content ul li a {
    color: var(--orange-clr);
}

/* .accordion.active .accordion-content p a {
    color: var(--orange-clr) !important;
} */

.commited {
    padding: 180px 0px 250px 0;
    position: relative;
}

.commited::before {
    content: "";
    background-image: url("../images/section-before-svg-orange.svg");
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0px;
    top: -1px;
    height: 70px;
    width: 100%;
}

.commited::after {
    content: "";
    background-image: url("../images/section-after-svg-orange.svg");
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0px;
    bottom: -3px;
    height: 100px;
    width: 100%;
}

.commited-wrapper {
    column-gap: 120px;
    position: relative;
}
/*
.commited-wrapper::before {
    content: "";
    background-image: url("../images/Protactor.svg");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: -160px;
    top: -170px;
    height: 170px;
    width: 170px;
}

.commited-wrapper::after {
    content: "";
    background-image: url("../images/0range-white-jet.svg");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: -120px;
    bottom: -220px;
    height: 140px;
    width: 140px;
    z-index: 1;
}
*/
.commited-wrapper-right {
    position: relative;
    width: 100%;
    max-width: 40%;
}

.commited-wrapper-right::before {
    content: "";
    background-image: url("../images/commited-bg.svg");
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: -130px;
    top: -155px;
    height: 740px;
    width: 740px;
}
/*
.commited-wrapper-right::after {
    content: "";
    background-image: url("../images/x2-white.svg");
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    right: -70px;
    top: -90px;
    height: 60px;
    width: 60px;
}
*/
.commited-wrapper-left {
    width: 100%;
    max-width: 60%;
    row-gap: 20px;
}

.commited-wrapper-right img {
    width: 100%;
    display: block;
    max-width: 480px;
    height: 440px;
    border-radius: 20px;
    object-fit: cover;
    transform: skewY(-3deg);
}

.offerd-resources {
    padding: 80px 0px 40px;
}

.offerd-resources-heading h2 {
    width: 100%;
    color: #000;
    max-width: 630px;
}

.offerd-resources-heading {
    margin-bottom: 50px;
}

.offerd-resources-wrap {
    margin: -10px;
    flex-wrap: wrap;
}

.offerd-resources-inner-wrap {
    flex: 0 0 33.33%;
    width: 100%;
    max-width: 33.33%;
    padding: 10px;
}

.offerd-resources-inner-wrap-holder {
    background-color: var(--green-clr);
    padding: 30px 25px;
    border-radius: 20px;
    transition: 0.3s ease-in-out;
}

.offerd-resources-inner-wrap-holder:hover {
    background-color: rgb(241, 103, 68);
}

.offerd-resources-inner-wrap-holder h4 {
    margin-top: 20px;
    color: rgb(255, 255, 255);
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: clamp(18px, 1.667vw, 24px);
    line-height: 150%;
}

.offerd-resources-inner-wrap-holder img {
    display: block;
    height: 40px;
    width: 40px;
}

.core-values-left {
    width: 100%;
    max-width: 50%;
}

.core-values-right {
    width: 100%;
    max-width: 50%;
}

.core-values-right img {
    display: block;
    width: 100%;
}

.core-values-heading {
    margin-top: 70px;
}

.core-values-heading h2 {
    color: #000;
}

.core-values {
    column-gap: 30px;
}

.core-values-left .accordion-heading span {
    color: #000;
}

.core-values-left .accordion {
    border-bottom: 1px solid rgba(76, 82, 93, 0.2);
}

.core-values-left .accordion-heading button {
    color: #000;
    font-weight: 700;
}

.core-values-left .accordion-content p {
    color: #000;
}

.strategies {
    padding: 120px 0 120px 0;
    position: relative;
	margin-bottom: 150px;
}

.strategies::before {
    content: "";
    background-image: url("../images/avenue-before-orange.svg");
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0px;
    top: -2px;
    height: 80px;
    width: 100%;
}

.strategies::after {
    content: "";
    background-image: url("../images/avenue-after-orange.svg");
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0px;
    bottom: -2px;
    height: 80px;
    width: 100%;
}

.strategies-wrap {
    padding-bottom: 40px;
    padding-top: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.strategies-wrap-left {
    width: 100%;
    max-width: 30%;
}

.strategies-wrap-right {
    width: 100%;
    max-width: 70%;
}

.strategies-wrap-left img {
    width: 100%;
    display: block;
    height: 300px;
    border-radius: 20px;
    object-fit: cover;
    object-position: center top;
}

.strategies-wrap {
    column-gap: 60px;
    position: relative;
}
/*
.strategies-wrap:nth-child(1)::after {
    content: "";
    background-image: url("../images/rocket-white.svg");
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    right: -90px;
    top: -70px;
    height: 90px;
    width: 90px;
}
*/
.strategies-wrap-right h4 {
    font-size: clamp(18px, 2.222vw, 32px);
    width: 100%;
    max-width: 370px;
    color: rgb(244, 238, 229);
}

.strategies-wrap-right h6 {
    margin: 15px 0px 35px;
    font-weight: 700;
    font-family: Inter, sans-serif;
}

.strategies-wrap-right p {
    width: 100%;
    max-width: 700px;
}

.strategies-wrap:last-child {
    border-bottom: none;
}

.wrie-us-page {
    padding: 100px 0px;
}

.wrie-us-page .write-heading::after {
    display: none;
}

.contact-box.wrie-us--page-contact {
    padding: 0px 0px 100px;
}

section.contact-box.wrie-us--page-contact .container {
    padding: 0px 30px;
}

section.contact-box.wrie-us--page-contact .contact-box-wrap h2::after {
    background-image: url("../images/star-faq.svg");
    top: 50%;
}

.accordion.active .accordion-content p {
    color: rgb(244, 238, 229);
    font-size: var(--para-font);
    font-weight: 400;
    line-height: var(--para-line-height);
}

.accordion.active .accordion-content p a {
    color: rgb(255, 255, 255);
    font-size: var(--para-font);
    font-weight: 600;
    line-height: var(--para-line-height);
    text-decoration: underline;
}

section.contact-box.wrie-us--page-contact::after {
    display: none;
}

section.contact-box.wrie-us--page-contact .container {
    position: relative;
}
/*
section.contact-box.wrie-us--page-contact .container::before {
    content: "";
    background-image: url("../images/virus.svg");
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    right: 40px;
    bottom: -30px;
    height: 120px;
    width: 120px;
    z-index: 1;
}
*/
.contact-section {
    padding: 60px 0px 150px;
}

.contact-section-wrapper {
    column-gap: 20px;
    align-items: flex-end;
}

.contact-section-left {
    width: 100%;
    max-width: 40%;
    position: relative;
}

.contact-section-left::before {
    content: "";
    background-image: url("../images/Vector (19).svg");
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0px;
    top: 0px;
    height: 52px;
    width: 100%;
    z-index: 11;
}

.contact-section-left img {
    width: 100%;
    display: block;
    height: 400px;
    border-radius: 20px;
}

.contact-section-right {
    width: 100%;
    max-width: 60%;
}

.contact-section-right-form-50 input {
    padding: 18px 20px;
    width: 100%;
    border-radius: 20px;
    border: none;
    outline: none;
    background-color: rgb(236, 224, 207);
    display: inline-block;
}

.contact-section-right-form {
    flex-wrap: wrap;
    gap: 20px;
}

.contact-section-right-form-50 {
    width: 100%;
    max-width: 48%;
}

.contact-section-right-form-50 input::placeholder {
    color: #000;
    font-weight: 400;
    font-size: var(--para-font);
    line-height: 180%;
	font-family: Inter, sans-serif;
}

.contact-section-right-form-100 textarea {
    padding: 18px 20px;
    width: 100%;
    border-radius: 20px;
    border: none;
    outline: none;
    resize: none;
    background-color: rgb(236, 224, 207);
    display: inline-block;
	font-family: Inter, sans-serif;
}

.contact-section-right-form-100 {
    width: 100%;
}

.contact-section-right-form-100 textarea::placeholder {
    color: #000;
    font-weight: 400;
    font-size: var(--para-font);
    line-height: 180%;
	font-family: Inter, sans-serif;
}

.form-accordoin-wrap .contact-section-right-form-100 textarea::placeholder {
    color: #000;
    font-weight: 400;
    font-size: 12px;
    line-height: 180%;
	font-family: Inter, sans-serif;
}
.form-accordoin-wrap .contact-section-right-form-50 input::placeholder {
    color: #000;
    font-weight: 400;
    font-size: 12px;
    line-height: 180%;
	font-family: Inter, sans-serif;
}
.form-accordoin-wrap .main-button::before {
    background: var(--red-clr); 
}
.form-accordoin-wrap .main-button::after {
    background: var(--red-clr);
}
.contact-section-right-form button {
/*     margin-top: 50px; */
}

.contact-section-right-form button img {
    display: inline-block;
    height: 20px;
    width: 20px;
    margin-left: 10px;
}

.contact-section-content p {
    width: 100%;
    max-width: 440px;
    color: #000;
}

.contact-section-content h1 {
    color: #000;
}

.contact-section-content {
    margin-bottom: 30px;
}

.contact-section {
    position: relative;
}

/* .contact-section::after {
    content: "";
    background-image: url("../images/contact-head.svg");
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    right: 130px;
    top: 40px;
    height: 170px;
    width: 170px;
} */

.contact-page-box .container::before {
    display: none;
}

.articles-section {
    padding: 80px 0 150px 0;
}

.articles-wrapper {
	flex-wrap: wrap;
    margin: -10px;
}

.articles-inner-wrapper {
    flex: 0 0 33.33%;
    width: 100%;
    max-width: 33.33%;
    padding: 10px;
    transform: skewY(-5deg);
}
.articles-inner-wrapper-holder >a {
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
}

.articles-inner-wrapper-holder a >img {
     width: 100% !important;
     display: block !important;
     height: 300px !important;
     margin: 0 !important;
     border-radius: 40px !important;
     object-fit: cover !important;
     object-position: center center !important;
     background-color: transparent !important;
     padding: 0 !important;
}
.articles-inner-wrapper-holder:hover .articles-inner-wrapper-holder-text h2{
	color: #fff;
}
.articles-inner-wrapper-holder-text h2 {
    display: inline-block;
    color: #000;
    margin: 10px 0px 20px;
    font-size: clamp(18px, 1.806vw, 26px);
	transition: all 0.2s ease-in-out;
}

.articles-inner-wrapper-holder-text .main-paragraph {
    display: inline-flex;
    align-items: center;
	transition: all 0.3s ease-in-out;
}
.articles-inner-wrapper-holder:hover .articles-inner-wrapper-holder-text .main-paragraph {
    color: #fff;
	
}
.articles-inner-wrapper-holder {
    background-color: rgb(244, 238, 229);
    border-radius: 40px;
    padding: 0px 0px 30px;
    transition: 0.3s ease-in-out;
}

.articles-inner-wrapper-holder:hover {
    background-color: var(--green-clr);
}

.articles-inner-wrapper-holder img {
    width: 100%;
    display: block;
    height: 300px;
    border-radius: 40px;
    object-fit: cover;
    object-position: center center;
}

.articles-inner-wrapper-holder-text {
    padding: 15px 25px;
    transform: skewY(5deg);
    margin: 15px 0px 0px;
}

.articles-inner-wrapper-holder-text h6 {
    color: #000;
    font-weight: 400;
	transition: all 0.2s ease-in-out;
}

.articles-inner-wrapper-holder-text a.articles-heading {
    display: inline-block;
    color: #000;
    margin: 10px 0px 20px;
    font-size: clamp(18px, 1.806vw, 26px);
}

.articles-inner-wrapper-holder a {
    display: inline-flex;
    align-items: center;
    color: #000;
    font-weight: 700;
}

.articles-inner-wrapper-holder a img {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: var(--orange-clr);
    padding: 5px;
    border-radius: 50%;
    margin-right: 10px;
}

.articles-inner-wrapper-holder:hover .articles-inner-wrapper-holder:hover {
    background-color: var(--green-clr);
}

.articles-inner-wrapper-holder:hover .articles-inner-wrapper-holder-text h6 {
    color: rgb(255, 255, 255);
}

.articles-inner-wrapper-holder:hover .articles-inner-wrapper-holder-text a.articles-heading {
    color: rgb(255, 255, 255);
}

.articles-inner-wrapper-holder:hover .articles-inner-wrapper-holder a {
    color: rgb(255, 255, 255);
}

.articles-inner-wrapper-holder:hover a.main-paragraph {
    color: rgb(255, 255, 255) !important;
}

.detail-main {
    padding: 100px 0px 80px;
}

.detail-main-wrap {
    padding: 0px 220px;
}

.detail-main-wrap_inner img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.articles-parent-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.detail-wrapper-img-parent {
    margin-bottom: 50px;
}

.detail-wrapper-img-parent img {
    width: 100%;
    max-width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 12px;
}

.detail-main-wrap_inner p img {
    width: 100%;
    max-width: 100%;
	height:auto;
    object-fit: cover;
    border-radius: 12px;
}

.detail-main-wrap_inner p {
    color: #000;
    line-height: 160%;
    font-size: var(--para-font);
    font-weight: 400;
}

.detail-main-wrap_inner p a {
    line-height: 160%;
    font-size: var(--para-font);
    font-weight: 400;
    color: rgb(4, 124, 91);
}

.detail-main-wrap_inner h1, h2, h3 {
    font-size: clamp(18px, 2.222vw, 32px);
    color: #000;
    line-height: 150%;
    font-weight: 700;
}

.detail-main-wrap_inner h4, h5, h6 {
    font-size: clamp(16px, 1.389vw, 20px);
    color: #000;
    line-height: 150%;
    font-weight: 700;
}

.detail-main-wrap_inner ul {
    padding-left: 25px;
}

.detail-main-wrap_inner ul li {
    color: #000;
    line-height: 160%;
    font-size: var(--para-font);
    font-weight: 400;
    list-style: disc;
}

.detail-main-wrap_inner ul li a {
    line-height: 160%;
    font-size: var(--para-font);
    font-weight: 400;
    color: rgb(4, 124, 91);
}

.detail-wrapper-img-parent {
    position: relative;
}

.detail-wrapper-img-parent::before {
    content: "";
    background-image: url("../images/detail-before-new.svg");
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0px;
    top: 0px;
    height: 70px;
    width: 100%;
    z-index: 1;
}

section.commited.detail-similar {
    padding: 110px 0px 130px;
	margin-bottom: 120px;
}

.articles-detail-contact-box {
    /* padding: 140px 0px 80px !important; */
}

.detail-similar h4 {
    margin-bottom: 30px;
    color: rgb(244, 238, 229);
}

.tip-box-blog {
    background-color: rgb(224, 224, 224);
    padding: 40px;
}

.articles-wrapper.d-flex.d-flex-align-center.d-flex-jst-space {
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 60px;
    flex-wrap: wrap;
}

.search-results-container {
    padding: 100px 0px 280px;
}

ul.search-results-list {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    margin-top: 20px;
}

ul.search-results-list li a {
    color: var(--orange-clr);
    display: inline-block;
    margin-bottom: 10px;
}

.wpcf7-submit {
    display: none;
}

.contact-section-right-form button br {
    display: none;
}

p.animate {
    animation: 0.9s linear 0s 1 normal forwards running revealText;
    transform: translateY(20%);
}

a.animate {
    animation: 0.9s linear 0s 1 normal forwards running revealText;
    transform: translateY(20%);
}

video.animate {
    animation: 0.9s linear 0s 1 normal forwards running revealText;
    transform: translateY(20%);
}

h1.animate {
    animation: 0.9s linear 0s 1 normal forwards running revealText;
    transform: translateY(20%);
}

h2.animate {
    animation: 0.9s linear 0s 1 normal forwards running revealText;
    transform: translateY(20%);
}

h3.animate {
    animation: 0.9s linear 0s 1 normal forwards running revealText;
    transform: translateY(20%);
}

h4.animate {
    animation: 0.9s linear 0s 1 normal forwards running revealText;
    transform: translateY(20%);
}

h5.animate {
    animation: 0.9s linear 0s 1 normal forwards running revealText;
    transform: translateY(20%);
}

h6.animate {
    animation: 0.9s linear 0s 1 normal forwards running revealText;
    transform: translateY(20%);
}

ul.animate {
    animation: 0.9s linear 0s 1 normal forwards running revealText;
    transform: translateY(20%);
}

header#main-header ul.animate {
    animation: auto ease 0s 1 normal none running none;
    transform: unset;
}

header#main-header img.scale-animation {
    transform: none;
    animation: auto ease 0s 1 normal none running none;
}

header#main-header .animate {
    animation: auto ease 0s 1 normal none running none;
    transform: unset;
}

footer#main-footer ul.animate {
    animation: auto ease 0s 1 normal none running none;
    transform: none;
}

footer .animate {
    animation: auto ease 0s 1 normal none running none;
    transform: none;
}

footer#main-footer img.scale-animation {
    transform: none;
    animation: auto ease 0s 1 normal none running none;
}

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

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

.highlight {
    animation: 1s linear 0s 1 normal forwards running heading;
}

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

    100% {
        transform: translateY(20%);
    }
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

img.scale-animation {
    opacity: 1;
    transform: scale(1);
    animation: 2s ease 0s 1 normal forwards running scaleAnimation;
}

@keyframes scaleAnimation {
    0% {
        opacity: 0.7;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}








/* Preloader Styles */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: skyblue;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999; /* Ensure it sits on top of other content */
}

.word {
  font-family: 'Anton', sans-serif;
  perspective: 1000px;
}

.word span {
  cursor: pointer;
  display: inline-block;
  font-size: 100px;
  user-select: none;
  line-height: .8;
}

.word span:nth-child(1).active {
  animation: balance 1.5s ease-out;
  transform-origin: bottom left;
}

@keyframes balance {
  0%, 100% {
    transform: rotate(0deg);
  }
  
  30%, 60% {
    transform: rotate(-45deg);
  }
}

.word span:nth-child(2).active {
  animation: shrinkjump 1s ease-in-out;
  transform-origin: bottom center;
}

@keyframes shrinkjump {
  10%, 35% {
    transform: scale(2, .2) translate(0, 0);
  }
  
  45%, 50% {
    transform: scale(1) translate(0, -150px);
  }
  
  80% {
    transform: scale(1) translate(0, 0);
  }
}

.word span:nth-child(3).active {
  animation: falling 2s ease-out;
  transform-origin: bottom center;
}

@keyframes falling {
  12% {
    transform: rotateX(240deg);
  }
  
  24% {
    transform: rotateX(150deg);
  }
  
  36% {
    transform: rotateX(200deg);
  }
  
  48% {
    transform: rotateX(175deg);
  }
  
  60%, 85% {
    transform: rotateX(180deg);
  }
  
  100% {
    transform: rotateX(0deg);
  }
}

.word span:nth-child(4).active {
  animation: rotate 1s ease-out;
}

@keyframes rotate {
  20%, 80% {
    transform: rotateY(180deg);
  }
  
  100% {
    transform: rotateY(360deg);
  }
}

.word span:nth-child(5).active {
  animation: toplong 1.5s linear;
}

@keyframes toplong {
  10%, 40% {
    transform: translateY(-48vh) scaleY(1);
  }
  
  90% {
    transform: translateY(-48vh) scaleY(4);
  }
}







.privacy-policies-wrap p{
	  line-height: 160%;
    font-size: var(--para-font);
    font-weight: 400;
    list-style: disc;
}
.privacy-policies-wrap ul li {
    line-height: 160%;
    font-size: var(--para-font);
    font-weight: 400;
    list-style: disc;
}
.privacy-policies-wrap ul{
	padding-left: 15px;
}
.privacy-policies-wrap ul li a {
    color: var(--orange-clr);
}

.privacy-policies-wrap p a {
    color: var(--orange-clr) !important;
}
.privacy-policies-wrap h1, h2, h3 {
    font-size: clamp(18px, 2.222vw, 32px);
    line-height: 150%;
    font-weight: 700;
}

.privacy-policies-wrap h4, h5, h6 {
    font-size: clamp(16px, 1.389vw, 20px);
    line-height: 150%;
    font-weight: 700;
}
.privacy-policies-wrap .container{
	margin-top: 40px;
	margin-bottom: 40px;
}
.form-accordoin-wrap .contact-section-right-form button{
	margin-top: 0;
}











.page-template-Articles h1.animate, .page-template-Articles a.animate, .page-template-Articles img.scale-animation, .page-template-Articles h2.animate, .page-template-Articles h6.animate, .page-template-Articles h4.animate {
    animation: unset !important;
    transform: translateY(0%) !important;
}
.page-template-action-guide h1.animate, .page-template-action-guide a.animate, .page-template-action-guide img.scale-animation, .page-template-action-guide h2.animate, .page-template-action-guide h6.animate, .page-template-action-guide h4.animate {
    animation: unset !important;
    transform: translateY(0%) !important;
}
.single-post h1.animate, .single-post a.animate, .single-post img.scale-animation, .single-post h2.animate, .single-post h6.animate, .single-post h4.animate, .single-post p.animate {
    animation: unset !important;
    transform: translateY(0%) !important;
}
.single-action-guide h1.animate, .single-action-guide a.animate, .single-action-guide img.scale-animation, .single-action-guide h2.animate, .single-action-guide h6.animate, .single-action-guide h4.animate, .single-action-guide p.animate, .single-action-guide h3.animate {
    animation: unset !important;
    transform: translateY(0%) !important;
}
.black-themselves-heading .main-heading {
    font-size: clamp(28px, 3.889vw, 45px);
}
.black-themselves-link .main-paragraph {
    font-size: clamp(14px, 1.111vw, 18px);;
}
.main-banner.articles-banner {
    padding: 200px 0px;
}


/* *************Resources page************** */


.rc-se-cards {
    position: relative;
    background: rgba(244, 238, 229, 1);
    width: 31%;
/*     height: 100%; */
    clip-path: polygon(0 3%, 100% 0%, 100% 97%, 0% 100%);
    overflow: hidden;
    border-radius: 26% 15% 26% 15% / 12% 10% 12% 10%;
}

.rc-se-cards .rc-se-card-img img{
    width: 100%;
    height: 290px;
    clip-path: polygon(0 3%, 100% 0%, 100% 95%, 0% 100%);
    border-radius: 23% 15% 28% 15% / 10% 10% 23% 16%;
    object-fit: cover;
}
.rc-se-cards .rc-se-card-text p{
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
    text-align: left;
    margin: 0px 0 11px;
}
.rc-se-cards .rc-se-card-text h3{
    text-align: left;
	color: #4C525D;
    width: 80%;
}
.rc-se-card-text .main-button {
	margin-top: 22px;
}
.rc-se-card-text .main-button img{
    height: 21px;
    width: 19px;
    object-fit: contain;
    margin-left: 10px;

}
.rc-se-card-text{
    padding: 33px 34px 54px;
}
.iner-BLK-rc-sec {
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px;
    column-gap: 30px;
    justify-content: space-between;
/* 	padding-inline: 170px; */
	align-items: stretch;
}

/* pop-up */
.rc-email-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(4, 124, 91, 1);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    display: none;
    width: 60%;
    text-align: center;
    border-radius: 5px;
    z-index: 99999;
}
.rc-email-popup h2{
    font-size: clamp(24px,3.056vw,44px);
    font-weight: 700;
    line-height: 120%;
    text-align: center;
    color: rgba(244, 238, 229, 1);

}
.rc-email-popup input{
    padding: 12px 24px 12px 24px;
    width: 100%;
    border-radius: 40px;
    color: rgba(76, 82, 93, 1);
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
    text-align: left;
	font-family: Inter, sans-serif;
    border: 0;
}
.rc-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    z-index: 8888;
}
.inner-email-popup{
    padding: 80px;
    position: relative;
}
.rc-close-btn {
/*     display: none; */
    border: none;
    cursor: pointer;
    background: transparent;
    position: absolute;
    top: 20px;
    right: 20px;
}
.rc-close-btn img{
    width: 40px;
    height: 40px;
    object-fit: contain;
	    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(324deg) brightness(170%) contrast(237%);
}
body.noscroll {
    overflow: hidden;
}
#submit2{
    border: none;
    cursor: pointer;
    background: transparent;
    position: absolute;
    top: 5px;
    right: 25px;
}
#submit2 img{
    width: 35px;
    height: 35px;
}
.follow-us-2 {
    margin-top: 37px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap:23px;
}
.follow-us-2 p{
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
    text-align: left;
    color: rgba(255, 255, 255, 1);
}
.follow-us-2-icons{
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 32px;
}
.follow-us-2-icons img{
    height: 22px;
    width: 22px;
    object-fit: contain;
}
.email-input{
    width: 75%;
    margin: 27px auto 0;
    position: relative;
}
section.BLK-rc-section {
    padding: 100px 0 150px;
}



/* @media (max-width: 1440px) {
    .contact-box-wrap::before {
        height: 150px;
    }
} */

@media (max-width: 1300px) {
    .banner-wrapper-left h1::after {
        right: -50px;
    }

    .banner-wrapper-left h1 {
        max-width: 320px;
    }

    .banner-wrapper.d-flex.d-flex-align-center.d-flex-jst-space {
        column-gap: 210px;
    }

    .banner-wrapper-right {
        column-gap: 20px;
    }

    .banner-wrapper-left::after {
        right: -100px;
    }

    .contact-box-wrap::after {
        top: -20px;
        z-index: 0;
        height: 100px;
        width: 100px;
        left: 10px;
    }

    .accordion-content::before {
        height: 60px;
    }

    .accordion-content::after {
        height: 60px;
    }
}

@media (max-width: 1200px) {
    .banner-wrapper-left {
        max-width: 35%;
    }

/*     .contact-box-wrap::before {
        height: 150px;
        top: -30px;
    } */

    .contact-box {
        padding: 20px 160px 200px;
    }

    .accordion-content::after {
        height: 53px;
    }

    .accordion-content::before {
        height: 53px;
    }
	.rc-se-cards .rc-se-card-text h3 {
    width: 90%;
}
}

@media (max-width: 1100px) {
    .banner-wrapper-left h1 {
        max-width: 280px;
    }

    .banner-wrapper-left::after {
        right: -100px;
    }

    .contact-box::after {
        left: 30px;
        bottom: 180px;
    }

    .contact-box-wrap {
        padding: 70px 100px 40px;
    }

    .contact-box-wrap h2::after {
        right: -160px;
    }

    .banner-ravenu-center img {
        height: 120px;
    }

    .avenue::before {
        top: -2px;
        height: 60px;
    }
	.main-banner{
/* 		    margin-top: 60px; */
		    padding: 140px 0px;
	}
	.main-banner::before{
		    height: 40px;
	}
	.main-banner::after{
		 height: 40px;
	}
    .avenue-wrapper-left-img::before {
        height: 640px;
        width: 640px;
    }

    .avenue-wrapper-left img {
        height: 370px;
    }

    .black-themselves::before {
        top: -2px;
        height: 50px;
    }

    .black-themselves::after {
        height: 70px;
        bottom: -2px;
    }

    .explore {
        padding: 110px 0px 100px;
    }
.detail-main-wrap {
    padding: 0px 120px;
}
    .avenue::after {
        bottom: -2px;
        height: 70px;
    }

    .avenue-wrapper-right::after {
        bottom: -160px;
        height: 150px;
        width: 150px;
    }

    .avenue-wrapper-left-img::after {
        left: -90px;
    }

    .avenue-wrapper-left::before {
        top: 40px;
    }

    .banner-wrapper-right::before {
        right: 173px;
        top: -13px;
    }

    .write-us {
        padding: 50px 0px 150px;
    }

    .write-heading::after {
        top: 20px;
        height: 130px;
        width: 130px;
    }

    .contact-box {
        padding: 20px 130px 100px;
    }

    footer#footer::before {
        top: -150px;
        height: 160px;
    }

    .footer-wrapper-center {
        max-width: 180px;
    }

    .footer-wrapper {
        column-gap: 130px;
    }

    .avenue-wrapper-left {
        padding: 90px;
    }

    .write-faq-wrap::before {
        height: 120px;
    }

    .write-faq-wrap::after {
        height: 120px;
    }

    .accordion-content::after {
        height: 49px;
    }

    .accordion-content::before {
        height: 48px;
    }
	.commited-wrapper {
    column-gap: 100px; 
	}
	.commited-wrapper-right img{
		    max-width: 400px;
    height: 400px;
	}
	.commited-wrapper-right::before{
		    left: -110px;
    top: -100px;
    height: 600px;
    width: 600px;
	}
	.contact-section {
    padding: 70px 0px 70px;
}
}

@media (max-width: 992px) {
    .banner-wrapper.d-flex.d-flex-align-center.d-flex-jst-space {
        flex-direction: column;
        row-gap: 50px;
        align-items: flex-start;
    }

    .banner-wrapper-left {
        max-width: 100%;
    }
.articles-section {
    padding: 20px 0 150px 0;
}
    .banner-wrapper-right {
        max-width: 80%;
    }

    .banner-wrapper-left::before {
        right: 250px;
        top: 110px;
    }

    .banner-wrapper-left::after {
        right: 120px;
    }
	.detail-wrapper-img-parent::before{
		height: 60px;
	}

    .banner-wrapper-left h1::after {
        right: -80px;
    }

    .banner-wrapper-left h1 {
        max-width: 100%;
        display: inline;
    }

    .banner-wrapper-left p {
        margin-bottom: 40px;
    }

    .banner-revanu {
        margin-top: 70px;
    }

    .banner-ravenu-center {
        padding: 0px 100px;
    }

    .footer-wrapper {
        column-gap: 40px;
    }

    .footer-wrapper-right-images ul li {
        flex: 0 0 40%;
        width: 100%;
        max-width: 40%;
    }

    .footer-wrapper-right-images ul li a img {
        height: 85px;
    }

    .banner-ravenu-left::before {
        left: 20px;
    }

    .banner-ravenu-center img {
        height: 90px;
    }

    .banner {
        padding: 40px 0px 50px;
    }

    .black-themselves::before {
        top: -2px;
        height: 50px;
    }

    .black-themselves-link {
        margin-top: 30px;
    }

    .black-themselves-heading img {
        height: 130px;
        width: 130px;
    }

    .second-img img {
        height: 300px;
    }

    .black-themselves-img-cards-25::before {
        height: 31px;
    }

    .black-themselves-img-cards-50 img {
        height: 300px;
    }

    .black-themselves-img-cards-50::before {
        height: 33px;
    }

    .black-themselves-img-cards-25 img {
        height: 150px;
    }
	    .main-banner::after {
        height: 40px;
        bottom: -1px;
    }
	    .main-banner::before {
        height: 30px;
    }

    .black-themselves-img-cards-25 {
        row-gap: 0px;
    }

    .black-themselves-img-cards {
        align-items: flex-start;
    }

    .black-themselves {
        padding: 120px 0px 90px;
    }

    .black-themselves::after {
        height: 80px;
        bottom: -2px;
    }
/* 
    .contact-box-wrap::before {
        height: 130px;
        top: -30px;
    } */

    .explore {
        padding: 100px 0px 120px;
    }

    .explore::before {
        width: 70px;
        height: 110px;
        top: -10px;
    }

    .explore-wrapper-right-img img {
        height: 340px;
    }

    .avenue::before {
        top: -2px;
        height: 60px;
    }

    .avenue::after {
        bottom: -2px;
        height: 60px;
    }

    .avenue-wrapper-left-img::before {
        height: 540px;
        width: 540px;
        left: -130px;
        top: -110px;
    }

    .avenue-wrapper-left img {
        height: 320px;
    }

    .avenue-wrapper {
        column-gap: 60px;
    }
	.contact-section-left::before{
		height: 96px;
	}

    .avenue-wrapper-right::after {
        bottom: -90px;
        height: 120px;
        width: 130px;
        right: 10px;
    }

    .write-us {
        padding: 70px 0px 150px;
    }

    .write-faq-wrap::before {
        height: 90px;
    }

    .write-faq-wrap::after {
        height: 90px;
    }

    .second-img img {
        height: 300px;
    }

    .accordion.active .accordion-content {
        width: 100%;
        margin-left: 0px;
    }

    .accordion-content::before {
        display: none;
    }

    .accordion-content::after {
        display: none;
    }

    .write-faq-wrap {
        padding: 110px 60px 170px;
    }
	.contact-section {
    padding: 60px 0px 50px;
}
	.contact-section-content p {
    max-width: 100%; 
	}
	.contact-section-content {
    margin-bottom: 30px;
}
	.contact-section-wrapper{
		flex-direction: column;
		row-gap: 30px;
	}
	.contact-section-left{
		max-width: 100%;
	}
	.contact-section-right {
    max-width: 100%;

}
	
	.commited::after{
		height: 65px;
	}
	.commited {
    padding: 160px 0px 180px 0;
	}
	.strategies::before{
		height: 50px;
	}
	.strategies::after{
		height: 50px;
	}
	.strategies {
    padding: 100px 0 100px 0;
 
	}
	.commited-wrapper-left {
    max-width: 50%; 		
	}
	.commited-wrapper-right{
		max-width: 50%; 	
	}
	    .commited-wrapper-right img {
        max-width: 360px;
        height: 360px;
    }
    .commited-wrapper-right::before {
        left: -100px;
        top: -90px;
        height: 540px;
        width: 540px;
    }
	.at-blk-wrapper-left h2::after{
		top: -10px;
	}
	.articles-inner-wrapper{
		flex: 0 0 50%;
		max-width: 50%;
	}
}

@media (max-width: 768px) {
	.swiper-wrapper{flex-wrap:nowrap;}
	.header-wrapper-bottom-logo a img{
		height: 65px;
		width: 65px;
	}
	.sub-menu li a {
    color: #fff !important;
}
	.articles-section {
		padding-bottom: 90px;
	}
	section.commited.detail-similar {
		margin-bottom: 0;
	}
	.strategies {
		margin-bottom: 0;
	}
	.active .header-wrapper-top {
    z-index: 9999999;
    position: fixed;
    width: 100%;
}
	.detail-main-wrap {
    padding: 0px 60px;
}
    .banner-wrapper-left::before {
        right: 80px;
    }

    .avenue-wrapper-left {
        padding: 40px;
    }
.detail-wrapper-img-parent img {
    height: 360px; 
	}
	.detail-main {
    padding: 60px 0px 50px;
}
    .avenue-wrapper-left::before {
        top: 10px;
        right: -10px;
    }

    #navTrigger {
        display: block;
        z-index: 999999;
    }
ul.d-flex.d-flex-align-center.d-flex-jst-space.animate {
    column-gap: 16px;
	justify-content: start;
}
	.banner-wrapper-right {
        max-width: 100%;
    }
    .header-wrapper-bottom {
        width: 100%;
        z-index: 9999;
    }

    .header-wrapper-bottom {
        z-index: 9999;
    }

	.contact-section-left::before{
		display: none;
	}
	
    #nabvar.active {
        left: 0px;
        z-index: 99999;
        width: 100%;
    }
.active .header-wrapper-bottom-logo {
    position: fixed;
    z-index: 999999;
    top: 80px;
    left: 20px;
}
    .header-wrapper-bottom-button.active {
        z-index: 99999;
    }

    #nabvar {
        position: fixed;
        left: -140%;
        top: 0px;
        background-color: rgb(252, 251, 241);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 27px;
        height: 100%;
        justify-content: center;
        align-items: center;
        display: flex;
    }

    .header-wrapper-bottom-button {
        position: fixed;
        left: -140%;
        top: 620px;
        width: 100%;
        text-align: center;
        justify-content: center;
        align-items: center;
        display: flex;
    }

    #nabvar ul {
        flex-direction: column;
        column-gap: 0px;
        width: 100%;
        padding: 0px 30px;
        text-align: center;
        align-items: center;
    }

    #nabvar ul li a {
        color: rgb(0, 0, 0);
        text-align: center;
    }

    #nabvar ul li {
        margin: 0px;
        border-bottom: 1px solid #000;
        padding: 20px 0px;
        width: 100%;
    }

    .nav-menu-wrapper.active {
        left: 0px;
        z-index: 9999;
    }

    .hamburger.active {
        position: fixed;
        right: 40px;
        top: 30px;
    }

    .header-site-logo {
        position: relative;
        z-index: 99999;
    }

    .subm-menu li {
        display: block;
        background: none;
        transition: none;
    }

    #nabvar ul > li {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        position: relative;
        justify-content: space-between;
    }

    #nabvar.active {
        overflow: auto;
    }

    .navTrigger:focus {
        outline: none;
    }

    .navTrigger svg {
        width: 64px;
        height: 48px;
        stroke: rgb(10 10 10);
        stroke-width: 4px;
        stroke-linecap: round;
        stroke-linejoin: round;
        fill: none;
        display: block;
        position: absolute;
    }

    .navTrigger svg path {
        transition: stroke-dasharray var(--duration, 0.85s) var(--easing, ease) var(--delay, 0s), stroke-dashoffset var(--duration, 0.85s) var(--easing, ease) var(--delay, 0s);
        stroke-dasharray: var(--array-1, 26px) var(--array-2, 100px);
        stroke-dashoffset: var(--offset, 126px);
        transform: translateZ(0px);
    }

    .navTrigger svg path:nth-child(2) {
        --duration: 0.7s;
        --easing: ease-in;
        --offset: 100px;
        --array-2: 74px;
    }

    .navTrigger svg path:nth-child(3) {
        --offset: 133px;
        --array-2: 107px;
    }

    .navTrigger.active svg {
        stroke: rgb(0, 0, 0);
    }

    .navTrigger.active svg path {
        --offset: 57px;
    }

    .navTrigger.active svg path:nth-child(1), .navTrigger.active svg path:nth-child(3) {
        --delay: 0.15s;
        --easing: cubic-bezier(0.2, 0.4, 0.2, 1.1);
    }

    .navTrigger.active svg path:nth-child(2) {
        --duration: 0.4s;
        --offset: 2px;
        --array-1: 1px;
    }

    .navTrigger.active svg path:nth-child(3) {
        --offset: 58px;
    }

    #nabvar ul li a:hover {
        left: 10px;
    }
	.sub-menu li{
		transition: none !important;
		border-bottom: 1px solid #fff !important;
	}
	.sub-menu li:last-child{
		border-bottom: none !important;
	}
	.sub-menu{
		transition: 275ms 275ms;
		margin-top: 12px;
	}
    #nabvar ul li:nth-child(1) {
        transition: 275ms 275ms;
    }

    #nabvar ul li:nth-child(2) {
        transition: 275ms 325ms;
    }

    #nabvar ul li:nth-child(3) {
        transition: 275ms 375ms;
    }

    #nabvar ul li:nth-child(4) {
        transition: 275ms 425ms;
    }

    #nabvar ul li:nth-child(5) {
        transition: 275ms 475ms;
    }

    button#navTrigger {
        display: block;
        position: absolute;
        top: 100px;
        right: 60px;
        z-index: 999999;
    }
 .active button#navTrigger {
        display: block;
        position: fixed;
        top: 80px;
        /* right: 60px; */
        /* z-index: 999999; */
    }
	   .active span.down-arrow img {
        filter: none; 
	}
    header.active .nav-logo a img {
        filter: invert(1) brightness(6);
    }

    nav.active ul li a {
        color: rgb(255, 255, 255) !important;
    }

    .banner-wrapper-left h1::after {
        right: -110px;
    }

    .banner-wrapper-left::after {
        right: 80px;
    }

    .black-themselves-img-cards-50 img {
        height: 200px;
    }

    .second-img img {
        height: 200px !important;
    }

    .black-themselves-img-cards-25 img {
        height: 100px;
    }

    .black-themselves-img-cards {
        height: 280px;
    }

    .explore-wrapper.d-flex.d-flex-align-center.d-flex-jst-space {
        flex-direction: column;
    }

    .explore-wrapper-left {
        max-width: 100%;
        margin: 80px 0px 40px;
    }

    .explore-wrapper-right.d-flex.d-flex-align-center.d-flex-jst-space {
        max-width: 100%;
    }

    .explore-wrapper-right-img img {
        height: 280px;
    }

    .avenue-wrapper.d-flex.d-flex-align-center.d-flex-jst-space {
        flex-direction: column;
        row-gap: 40px;
        padding: 80px 0px 20px;
    }

    .avenue-wrapper-left {
        max-width: 100%;
    }

    .avenue-wrapper-right {
        max-width: 100%;
    }

    .avenue-wrapper-left-img::before {
        left: -120px;
        top: -110px;
        height: 420px;
        width: 420px;
    }

    .avenue::after {
        bottom: -2px;
        height: 45px;
    }

    section.avenue {
        padding: 40px 0px 50px;
    }

    .avenue-wrapper-right::after {
        bottom: -80px;
        height: 120px;
        width: 120px;
    }

    .write-us {
        padding: 40px 0px 50px;
    }

    .write-faq-wrap {
        padding: 80px 60px;
    }

    .write-heading::after {
        top: 50px;
        height: 80px;
        width: 80px;
    }

    .accordion.active .accordion-content {
        padding: 40px 60px;
    }

    .accordion-content::before {
        display: none;
    }

    .header-wrapper-top {
        background-size: cover !important;
    }

    .accordion-content::after {
        display: none;
    }

    .accordion.active .accordion-content {
        width: calc(100% + 120px);
        margin-left: -60px;
    }

    .contact-box {
        padding: 20px 40px 60px;
    }

    .contact-box-wrap::after {
        top: -30px;
        height: 80px;
        width: 80px;
    }

    .contact-box::after {
        left: 0px;
        bottom: -2px;
        height: 100px;
        width: 110px;
        z-index: -1;
    }

    .contact-box-wrap::before {
        display: none;
    }

    .contact-box-wrap {
        padding: 70px 50px 40px !important;
    }

    .contact-box-wrap h2::after {
        right: -100px;
    }

    .banner-revanu::after {
        display: none;
    }

    .banner-ravenu-left::before {
        left: 60px;
        top: -120px;
    }

    .black-themselves {
        padding: 80px 0px 20px;
    }

    .black-themselves::after {
        height: 60px;
        bottom: -2px;
    }

    .black-themselves-img-cards-25::before {
        height: 22px;
    }

    .black-themselves-img-cards-25-second::after {
        height: 22px;
    }

    .explore {
        padding: 10px 0px 50px;
    }

    .avenue-wrapper-left-img::after {
        left: 150px;
        bottom: -100px;
    }

    .banner-ravenu-center {
        padding: 0px 40px;
    }

    .banner-ravenu-center img {
    }

    .banner-revanu {
        margin-top: 0px;
		padding: 70px 0px 40px;
    }

    li#menu-item-6684 {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
    }

    span.down-arrow img {
        filter: invert(1) brightness(9);
        display: inline-block;
    }

    span.down-arrow {
        display: inline-block;
    }
	    .avenue::before {
        bottom: -2px;
        height: 45px;
    }
	
	    li#menu-item-6684 {
        flex-direction: column !important;
    }
	    span.down-arrow {
        position: absolute;
        right: 20px;
        top: 22px;
    }
	span.down-arrow {
    display: inline-block;
    margin-top: -3px;
}
	
	
ul.sub-menu {
    /*     position: absolute; */
    /*     left: 0px;
    top: 45px; */
    background: #000;
    width: 230px;
    opacity: 0;
    visibility: hidden;
    /*     transform: translateY(-20px);
    transition: 0.4s ease-in-out; */
    /*     display: block !important; */
    height: 0;
    /* transition: max-height 0.3s ease-in-out 0.2s, margin-top 0.3s ease-in-out 0.2s !important; */
    }

span.down-arrow img {
    height: 10px;
    width: 10px;
/* 	filter: invert(1) brightness(5); */
}

/* #menu-header-menu li:hover ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
	height: 100%;
} */
	
 ul.sub-menu.sub-menu-active {
    opacity: 1;
    visibility: visible;
    /*     transform: none; */
    height: 100%;
    max-height: 300px; /* Adjust based on your sub-menu content */
    margin-top: 12px;
}
	    ul.sub-menu {
        position: unset;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out, margin-top 0.3s ease-in-out;
        margin-top: 0;
    }
	
	    .at-blk-wrapper {
        row-gap: 30px;
        flex-direction: column;
    }
.at-blk-wrapper-left {
    max-width: 100%;
}
	.at-blk-wrapper-right {
    max-width: 100%; 
	}
	.at-blk-wrapper-right-2 img{
		height: 320px;
	}
	.at-blk-wrapper-right-1 img{
		height: 200px;
		    margin-bottom: -50px;
}
	.commited-wrapper{
		flex-direction: column-reverse;
		row-gap: 60px;
	}
	    .commited-wrapper-left {
        max-width: 100%;
    }
	       .commited-wrapper-right {
        max-width: 100%;
        margin-left: 120px;
    }
	    .commited-wrapper-right img {
                max-width: 80%;
        height: 340px;
			object-fit: cover;
    }
	    .commited-wrapper-right::before {
        left: -100px;
        top: -90px;
        height: 370px;
        width: 370px;
    }
	    .commited {
        padding: 160px 0px 120px 0;
    }
	.commited::before{
		height: 42px;
	}
	    .commited::after {
        height: 47px;
        bottom: -2px;
    }
	.offerd-resources-inner-wrap {
    flex: 0 0 50%;
    max-width: 50%; 
	}
	.core-values{
		flex-direction: column;
		row-gap: 30px;
	}
	.core-values-left {
    max-width: 100%;
}
	.core-values-right {
    max-width: 100%;
}
	.offerd-resources {
    padding: 40px 0px 0px;
}
	.strategies-wrap {
    column-gap: 40px; 
	}
	.strategies-wrap-left img{
		height: 230px;
	}
	    .strategies {
        padding: 80px 0 60px 0;
    }
	.at-blk-wrapper-left h2::after{
		right: 0;
		top: -20px;
	}
	    .main-banner {
        padding: 100px 0px;
    }
	.articles-inner-wrapper{
/* 		flex: 0 0 100%; */
		max-width: 380px;
		margin: 0 auto;
		width: 100%;
	}
	.articles-inner-wrapper-holder{
		width: 100%;
	}
	.articles-inner-wrapper-holder a{
		display: block;
		width: 100%;
	}
	.articles-inner-wrapper-holder-text {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		row-gap: 12px;
		transform:none;
}
	.menu-header-menu-container {
    width: 100%;
}
}

@media (max-width: 580px) {
    .contact-box-wrap {
        padding: 20px 30px 30px;
    }

    .contact-box-wrap::before {
        display: none;
    }

    .contact-box-form input[type="email"] {
        padding: 16px 20px;
        width: 90%;
    }
    .detail-wrapper-img-parent::before {
        height: 35px;
    }
	.detail-wrapper-img-parent img {
        height: 260px;
    }
	    .detail-main-wrap {
        padding: 0px 20px;
    }
    .contact-box-form button {
        right: 30px;
        top: 6px;
    }

    .contact-box-wrap h2::after {
        right: -65px;
        height: 80px;
        width: 80px;
    }

    .footer-wrapper-right {
        width: 100%;
        max-width: 100%;
        margin-top: 40px;
    }

    .footer-wrapper-center {
        max-width: 100%;
    }

    .footer-wrapper-left {
        width: 100%;
        max-width: 100%;
    }

    .footer-wrapper {
        flex-direction: column;
    }

    .footer-wrapper-right-images ul li {
        flex: 0 0 20%;
        width: 100%;
        max-width: 20%;
    }

    .write-faq-wrap {
        margin-top: 60px;
    }

    .avenue-wrapper-right::after {
        bottom: -80px;
        height: 110px;
        width: 100px;
    }

    .write-us {
        padding: 20px 0px 40px;
    }

    .write-heading::after {
        top: 110px;
    }

    .write-faq-wrap::after {
        height: 70px;
    }

    .write-faq-wrap::before {
        height: 70px;
    }

    .accordion-heading {
        padding: 20px 0px;
    }

    .contact-box-wrap h2 {
        font-size: 24px;
    }

    .contact-box::after {
        left: 0px;
        bottom: 20px;
        height: 70px;
        width: 80px;
    }

    .banner-wrapper-left::after {
        right: 40px;
    }

    .banner-wrapper-right {
        max-width: 100%;
    }

    .banner-revanu::before {
        width: 50px;
        height: 50px;
        bottom: -12px;
    }

    .banner-revanu {
        background-color: var(--green-clr);
        background-image: none;
        padding: 40px 0px;
        border-radius: 20px;
        flex-direction: column;
    }

    .banner-ravenu-left {
        max-width: 100%;
    }

    .banner-ravenu-center {
        padding: 30px 10px;
        margin: 20px 0px;
        max-width: 100%;
        border-top: 1px dashed rgba(244, 238, 229, 0.5);
        border-bottom: 1px dashed rgba(244, 238, 229, 0.5);
    }

    .banner-ravenu-right {
        max-width: 100%;
    }

    .banner-ravenu-left::before {
        left: 190px;
        top: -110px;
    }

    .black-themselves::before {
        top: -1px;
        height: 28px;
    }

    .black-themselves::after {
        height: 36px;
        bottom: -1px;
    }

    .black-themselves-heading img {
        height: 70px;
        width: 70px;
    }

    .black-themselves-img-cards-50::before {
        height: 15px;
    }

    .black-themselves-img-cards-25::before {
        height: 15px;
    }

    .black-themselves-img-cards-25::before {
        height: 16px;
    }

    .black-themselves-img-cards-25-second::after {
        height: 16px;
    }

    .banner-wrapper-left::after {
        display: none;
    }

    .banner-wrapper-right::before {
        display: none;
    }

    .banner-wrapper.d-flex.d-flex-align-center.d-flex-jst-space {
        row-gap: 10px;
    }

    .black-themselves-heading.d-flex.d-flex-align-center.d-flex-jst-space {
        column-gap: 10px;
    }
	.explore-wrapper-left {
        margin: 40px 0px 40px;
    }
	    .avenue::after {
        bottom: -3px;
        height: 30px;
    }
	.write-heading {
    margin-bottom: 20px;
}
	    .accordion.active .accordion-content {
        padding: 20px 60px;
    }
	    .commited-wrapper-right img {
        height: 260px; 
	}
	.offerd-resources-inner-wrap{
		flex: 0 0 100%;
        max-width: 100%;
	}
	.strategies::after {
        height: 30px;
    }
	    .strategies::before {
        height: 30px;
    }
	.contact-section-right-form{
		flex-direction: column;
	}
	.contact-section-right-form-50 {
    width: 100%;
    max-width: 100%;
}
	.contact-section-left img{
		height: 240px;
    object-fit: cover;
    object-position: top;
	}
	    .main-banner::after {
        height: 20px;
        bottom: -1px;
    }
	    .main-banner::before {
        height: 20px;
    }
	    .main-banner {
        padding: 70px 0px;
    }
	.contact-section-right-form button {
    margin-top: 20px;
}
}
@media(max-width:560px){
	.articles-inner-wrapper {
		flex: 100%;
		max-width: 100%;
	}
}
@media (max-width: 480px) {
    .banner-wrapper-right-img img {
        height: 320px;
    }

    .banner-wrapper-left::before {
        right: 0px;
    }

    .banner-ravenu-left::before {
        left: auto;
        top: -90px;
        right: 0px;
    }
	    .black-themselves::after {
        height: 30px;
        bottom: -1px;
    }
	    .avenue::before {
        top: -2px;
        height: 22px;
    }
	.main-button{
		    padding: 12px 18px;
	}
	.avenue-wrapper.d-flex.d-flex-align-center.d-flex-jst-space{
		row-gap: 10px;
	}
	    .write-faq-wrap {
        margin-top: 30px;
    }
	    .write-faq-wrap {
        padding: 60px 40px;
    }
	    .accordion.active .accordion-content {
        width: calc(100% + 80px);
        margin-left: -40px;
    }
	    .contact-box {
        padding: 10px 0px 40px;
    }
	    .contact-box-wrap h2 {
        font-size: 18px;
    }
	.contact-box-wrap h2 {
    margin: 10px 0px 10px; 
	}
	.footer-wrapper-center ul{
		justify-content: normal;
	}
	.explore-wrapper-right.d-flex.d-flex-align-center.d-flex-jst-space{
		flex-direction: column;
		row-gap: 20px;
	}
	    .avenue-wrapper-left img {
        height: 220px;
    }
	    .avenue-wrapper-left-img::before {
        left: -80px;
        top: -90px;
        height: 320px;
        width: 320px;
    }
	.follow-links-list ul {
    column-gap: 12px;
}
	.follow-links {
    margin-top: 15px;
    column-gap: 20px;
}
	.explore-wrapper-right-img{
		max-width: 100%;
	}
	    .strategies-wrap {
			flex-direction: column;
        row-gap: 20px;
    }
	.strategies-wrap-left {
    max-width: 100%;
}
.strategies-wrap-right {
    max-width: 100%;
}
	.strategies-wrap-right p {
    max-width: 100%;
}
	.strategies-wrap-right h6 {
    margin: 10px 0px 20px; 
	}
	    .strategies::after {
        height: 25px;
    }
	    .strategies::before {
        height: 25px;
    }
	.commited::before {
        height: 24px;
    }
	    .commited::after {
        height: 30px; 
	}
	    .commited-wrapper-right img {
        height: 210px;
    }
	.commited-wrapper-right::before{
		        height: 300px;
        width: 300px;
	}
	    .commited {
        padding: 130px 0px 60px 0;
    }
	.contact-box-wrap{
		border-radius: 40px;
	}
}
