/* ================= Global Style ================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", serif !important;
    background: #FFF !important;
}

:root {
    --primary-color: #0A3D91;
    --secondary-color: #2B8E4D;
    --title-color: #333;
    --desc-color: #333333;
    --section-space: 60px;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0px;
}

button:focus,
a:focus,
a:active,
input,
input:hover,
input:focus,
input:active,
textarea,
textarea:hover,
textarea:focus,
textarea:active {
    outline: none
}

input:focus {
    outline: none;
    box-shadow: none
}

img {
    max-width: 100%;
    height: auto
}

a,
a:active,
a:focus,
a:hover,
a:visited {
    text-decoration: none;
    outline: 0
}

.container-fluid {
    padding: 0px 60px;
}

.default-btn,
.default-btn-two {
    border-radius: 2px;
    background: var(--secondary-color);
    box-shadow: 0px 1px 2px 0px rgba(255, 255, 255, 0.25);
    padding: 13px 23px;
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
    display: inline-block;
    box-shadow: 0px 1px 8px 2px rgba(0, 0, 0, 0.25);
}

.default-btn-two {
    background: var(--primary-color);
}

.common_content h2 {
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.5px;
    background: linear-gradient(90deg, #0A3D91 47%, #2B8E4D 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Oswald", sans-serif;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    margin-left: 20px;
}

.common_content h2::after {
    content: "";
    position: absolute;
    border-radius: 2px;
    background: var(--secondary-color);
    width: 3px;
    height: 100%;
    top: 0;
    right: -20px;
}

.common_content h2::before {
    content: "";
    position: absolute;
    border-radius: 2px;
    background: var(--secondary-color);
    width: 3px;
    height: 100%;
    top: 0;
    left: -20px;
}

.common_content h4 {
    color: #333;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    text-transform: capitalize;
    padding-bottom: 30px;
}

.common_content p {
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.secGap {
    padding: 60px 0px;
}

.pt-60 {
    padding-top: 60px;
}

/* -----=====:- Header Top Section -:======----- */
.header-layout {
    position: sticky;
    top: -51px;
    z-index: 1020;
}

.header-top {
    background: var(--primary-color);
    padding: 12.5px 0px;
}

.top-item a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.top-item a img {
    width: 13px;
}

.top-navbar {
    display: flex;
    align-items: center;
    gap: 22px;
    justify-content: end;
}

.top-item {
    position: relative;
}

.top-item::after {
    content: "";
    position: absolute;
    top: 0;
    right: -11px;
    height: 21.013px;
    width: 1px;
    background: rgba(255, 255, 255, 0.35);
}

.top-item .form-select {
    background: transparent;
    border: 0;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    background-image: url(../img/chevron-down.svg);
    background-repeat: no-repeat;
    background-position: right;
    padding: 0px 24px 0px 10px;
}

.top-item .form-select:focus {
    border-color: transparent;
    outline: 0;
    box-shadow: none !important;
}

.top-item option {
    color: #000;
}

.top-social {
    display: flex;
    align-items: center;
    gap: 17px;
}

.top-social a img {
    width: 20px;
    height: 20px;
}

/* -----=====:- Header Navbar Section -:======----- */
.navbar-nav .dropdown-menu {
    border: 1px solid #eee;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
    border-radius: 0;
    margin-top: 0;
    padding: 0;
}

.navbar-nav .dropdown-menu .dropdown-item {
    border-bottom: 0.5px solid rgba(51, 51, 51, 0.30);
}

.navbar-nav .dropdown-menu .dropdown-item:hover {
    background: #0A3D91;
    color: #fff;
}

.navbar-toggler-icon {
    background-image: url("../img/menu.png");
}

.navbar-toggler-icon.close {
    background-image: url("../img/close.png");
    width: 1.5em;
    height: 1.5em;
}

.navbar-toggler {
    outline: none !important;
    background-color: transparent !important;
    transition: all 0.3s ease;
    border: none !important;
    padding: 0;
    font-size: 1.5rem;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar-toggler[aria-expanded*="false"] {
    transform: rotate(0deg);
}

.navbar-toggler[aria-expanded*="true"] {
    transform: rotate(-180deg);
}

.navbar-brand img {
    width: 280px;
}

.menu-area .navbar-nav {
    align-items: center;
    gap: 24px;
}

.menu-icon img {
    width: 20px;
}

.menu-area {
    box-shadow: rgba(0, 0, 0, 0.45) 0px 15px 15px -20px;
}

.tab-menu {
    display: none;
}

.menu-area .nav-item .nav-link {
    color: #333;
    font-size: 16.5px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    position: relative;
}

.menu-area .nav-item .nav-link.active {
    color: var(--primary-color);
}

.menu-area .nav-item .nav-link::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 20px;
    background: rgba(51, 51, 51, 0.25);
    top: 9px;
    right: -12px;
}

.menu-area .nav-item .nav-link.last-child::before {
    display: none;
}

/* -----=====:- Banner Section -:======----- */
.banner-slider .swiper {
    width: 100%;
    height: 100%;
}

.banner-slider .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--secondary-color) !important;
}

/* -----=====:- Our Mission & Vision Section -:======----- */
.mission-tab .icon {
    width: 64px;
    height: 64px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.mission-tab .icon img {
    width: 45px;
}

.mission-tab .nav-link {
    background-color: #BFDDCA;
    text-align: center;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    padding: 20px 7rem 40px 7rem;
    color: #333;
    text-align: center;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    text-transform: capitalize;
}

.mission-tab .nav {
    justify-content: space-between;
}

.mission-tab .nav-link.active {
    background: var(--secondary-color);
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 32px), 50% 100%, 0% calc(100% - 32px));
}

.mission-tab {
    margin-top: 60px;
}

.mission-content {
    margin-left: 55px;
}

.mission-content h2 {
    font-size: 40px;
    margin-left: 20px;
}

.mission-content h2::after {
    display: none;
}

.mission-content h2::before {
    height: 41px;
    top: 7px;
}

.mission-content p {
    font-weight: 400;
    padding-bottom: 12px;
}

.custom-list {
    margin-bottom: 55px;
}

.custom-list li {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-transform: capitalize;
    padding-top: 12px;
    position: relative;
    margin-left: 32px;
}

.custom-list li::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 21px;
    background-image: url("../img/trick.svg");
    background-repeat: no-repeat;
    left: -32px;
}

.content-img img {
    border-radius: 5px;
    box-shadow: 0px 1px 8px 2px rgba(0, 0, 0, 0.25);
    width: 626px;
}

.content-img {
    position: relative;
}

.content-img::before {
    content: "";
    position: absolute;
    width: 176.909px;
    height: 176.909px;
    background-image: url(../img/mission-vector.svg);
    top: -68px;
    left: -5px;
    z-index: -9;
}

.content-info {
    margin-top: 6.5rem;
}

/* -----=====:- Our Speaks Section -:======----- */

.speak-sec {
    background-image: url("../img/speak.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.speak-sec h2::after {
    display: none;
}

.speak-sec h2 {
    -webkit-text-fill-color: #fff;
}

.speaker-img img {
    position: absolute;
    bottom: 0;
    left: 26px;
}

.box-content h3 {
    color: #FFF;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    text-transform: uppercase;
    padding-top: 20px;
}

.box-content p {
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16.5px;
    margin: 10px 0px;
    margin-right: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.box-content span {
    color: rgba(255, 255, 255, 0.90);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.box-img img {
    cursor: pointer;
    width: 100%;
}

.play-btn img {
    width: 36px;
}

.box-img {
    overflow: hidden;
}

.box-img:hover .play-btn img {
    transform: scale(.9);
}

.box-img:hover img {
    transform: scale(1.03);
}

.box-img img {
    display: block;
    transform: scale(1.01);
    transition: all .3s ease;
}

.speak-detail .default-btn {
    margin-top: 50px;
}

.speak-detail {
    margin-top: 50px;
}

.speak-sec .container-fluid {
    padding-right: 1rem;
}

/* -----=====:- Key Issue Section -:======----- */

.key-issue {
    background: rgba(10, 61, 145, 0.04);
}

.key-box {
    border-radius: 10px;
    border: 1px solid rgba(33, 33, 33, 0.30);
    background: #FFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 19px 16px 30px 16px;
}

.key-img img {
    width: 100%;
}

.key-content h3 {
    color: var(--primary-color);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    text-transform: uppercase;
    margin-top: 30px;
}

.key-btn a {
    color: var(--secondary-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.key-content p {
    margin: 24px 0px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.swiper-button-next,
.swiper-button-prev {
    width: 47px !important;
    height: 46px !important;

}

.key-slider .swiper-button-next,
.inspiration-wraper .swiper-button-next {
    right: -70px !important;
}

.key-slider .swiper-button-prev,
.inspiration-wraper .swiper-button-prev {
    left: -70px !important;
}

.key-slider .swiper,
.inspiration-wraper .swiper {
    padding: 5px !important;
    padding-bottom: 80px !important;
}

.swiper-pagination-bullet-active {
    background: var(--secondary-color) !important;
}

.swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
}

/* .key-img::before,
.morcha-img::before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    border-radius: 5px;
    border: 2px solid #0F2D7A;
    background: rgba(10, 61, 145, 0.30);
} */

.key-img {
    position: relative;
}

/* -----=====:- Our Achievement Section -:======----- */
.achievement-box {
    border-radius: 3px;
    border: 0.5px solid rgba(0, 0, 0, 0.10);
    background: rgba(43, 142, 77, 0.05);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 17px 17px 22px 17px;
    margin-bottom: 24px;
    transition: background 0.5s ease-in-out;
}

.achievement-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.achievement-btm p {
    margin-top: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.achievement-top .content h3 {
    color: #333;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 25.2px;
    text-transform: uppercase;
}

.achievement-box:hover {
    background: #2B8E4D;
}

.achievement-box:hover .achievement-top .content h3 {
    color: #fff;
}

.achievement-box:hover .achievement-btm p {
    color: #fff;
}

.achievement-box:hover .achievement-top img {
    filter: brightness(0) invert(1);
}

/* -----=====:- Our Journey Section -:======----- */
.journey-inner {
    position: relative;
}

.slider-wraper {
    position: relative;
}

.journey-inner .slider-wraper::before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    background: linear-gradient(90deg, rgba(10, 61, 145, 0.99) 41.64%, rgba(24, 74, 41, 0.39) 99.78%);
}

.journey-inner .slide-inner {
    position: absolute;
    z-index: 9;
    top: 85px;
    left: 55px;
}

.journey-inner .slide-inner h2 {
    color: #fff;
    -webkit-text-fill-color: unset;
    margin-left: 1.3rem;
}

.journey-inner .slide-inner h2::after {
    display: none;
}

.journey-inner .slide-inner span {
    color: #FFF;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    text-transform: capitalize;
    display: block;
}

.journey-inner .slide-inner h5 {
    color: #3FD071;
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: 30px;
    letter-spacing: 1px;
    text-transform: capitalize;
    padding: 30px 0px;
}

.journey-inner .slide-inner p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    text-transform: capitalize;
}

.slider-thumb {
    display: flex;
    align-items: center;
    gap: 23px;
    justify-content: center;
}

.swiper-thumbs {
    position: absolute;
    width: 85%;
    bottom: 5.5rem;
    left: 0;
    right: 0;
}

.slider-thumb h3 {
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    text-transform: capitalize;
}

.swiper-slide-thumb-active .slider-thumb h3 {
    color: #3FD071;
    font-size: 22px;
    font-style: normal;
    font-weight: 800;
    line-height: 30px;
    text-transform: capitalize;
}

.swiper-slide-thumb-active .slider-thumb hr {
    color: #3FD071;
}

.slider-thumb hr {
    color: #fff;
    border: 0;
    border-top: 3px solid;
    opacity: 1;
    width: 84.046px;
}

.journey-inner .swiper-button-next {
    right: 48px !important;
    top: auto !important;
    bottom: 5rem;
}

.journey-inner .swiper-button-prev {
    left: 48px !important;
    top: auto !important;
    bottom: 5rem;
}

.our-journey .container-fluid {
    padding-right: 1rem;
    padding-left: 1rem;
}

.our-journey .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* -----=====:- Our Inspiration Section -:======----- */

.inspiration-content h3 {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    text-transform: uppercase;
    padding-bottom: 0px;
}

.inspiration-content p {
    color: #FFF;
    text-align: center;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 20.5px;
}

.inspiration-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inspiration-img {
    height: 300px;
}

.inspiration-box {
    border-radius: 5px 5px 0px 0px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    height: 360px;
    transition: height 0.5s ease-in-out;
}

.inspiration-content {
    text-align: center;
    padding: 18px 8px;
    position: absolute;
    background: var(--primary-color);
    height: 60px;
    width: 100%;
    bottom: 0;
    box-shadow: 0px -4px 8px 0px rgba(0, 0, 0, 0.25);
    transition: bottom 0.5s ease-in-out, height 0.5s ease-in-out;
    border-radius: 0px 0px 5px 5px;
}

.inspiration-box:hover .inspiration-content {
    bottom: 0px;
    height: 133px;
    background-color: var(--secondary-color);
}

.inspiration-box:hover .inspiration-content p {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-in-out 0.2s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.inspiration-content p {
    opacity: 0;
    visibility: hidden;
}

.inspiration-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-left: 60px solid #2B8E4D;
    border-top: 0px solid transparent;
    border-bottom: 60px solid transparent;
    filter: drop-shadow(0px 2px 10px rgba(0, 0, 0, 0.25));
    transition: opacity 0.5s ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
}

.inspiration-box:hover::before {
    opacity: 1;
    visibility: visible;
}

/* -----=====:- Join The RLM Journey Section -:======----- */

.Join-rlm {
    background: linear-gradient(90deg, #333 0.09%, rgba(51, 51, 51, 0.90) 99.39%);
    position: relative;
}

.Join-rlm::after {
    content: "";
    position: absolute;
    top: -24px;
    left: 0;
    background-image: url("../img/line-vector.svg");
    width: 534.893px;
    height: 190.001px;
    background-repeat: no-repeat;
}

.Join-rlm h2 {
    color: #fff;
    -webkit-text-fill-color: unset;
    margin-left: 1.3rem;
}

.Join-rlm h2::after {
    display: none;
}

.Join-rlm h2 span {
    background: linear-gradient(90deg, #5495FF 41.61%, #3FD071 59.64%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.Join-rlm h4 {
    font-size: 25px;
}

.Join-btn {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-top: 50px;
}

.Join-btn a {
    border: 0.5px solid var(--White, #FFF);
}

.Join_from_whatsapp img {
    border-radius: 0px 0px 20px 20px;
    border-right: 1.5px solid #FFF;
    border-bottom: 1.5px solid #FFF;
    border-left: 1.5px solid #FFF;
}

.Join_from_whatsapp {
    margin-top: -3.7rem;
    text-align: end;
}

/* -----=====:- News & Media Section -:======----- */

.mediaTab {
    margin: 60px 0px;
}

.mediaTab .nav-pills {
    border-radius: 20px;
    background: #D5E8DB;
    display: inline-flex;
}

.mediaTab .nav-pills .nav-item:first-child .nav-link {
    border-radius: 19px 0px 0px 20px;
}

.mediaTab .nav-pills .nav-item .nav-link {
    color: #374151;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    padding: 16px 40px;
    border-radius: 0px;
    position: relative;
}

.mediaTab .nav-pills .nav-item .nav-link::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 26px;
    background: #374151;
    opacity: 0.3;
    right: 0;
}

.mediaTab .nav-pills .nav-item .nav-link.active {
    background: #2B8E4D;
    color: #fff;
}

.mediaTab .nav-pills .nav-item:last-child .nav-link::after {
    display: none;
}

.mediaTab .nav-pills .nav-item:last-child .nav-link {
    border-radius: 0px 20px 20px 0px;
}

.media-social {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 15px;
}

.media-social img {
    filter: grayscale(100%) brightness(0) invert(24%) sepia(90%) saturate(1700%) hue-rotate(200deg);
    width: 20px;
}

.media-content h3 {
    color: #333;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    text-transform: uppercase;
    margin-bottom: 15px;
    margin-top: 21px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.media-content {
    padding-left: 15px;
    padding-right: 45px;
}

.media-content p {
    margin-right: 51px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.eventDate {
    margin-right: 15px;
    color: #212529;
    font-size: 14px;
    font-weight: 400;
}

.mediaBox:hover .eventDate {
    color: #fff;
}

.media-img {
    width: 100%;
    height: 240px;
    position: relative;
}

.media-img img {
    border-radius: 10px 10px 0px 0px;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mediaBox {
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
    transition: all 0.5s ease-in-out;
    margin-bottom: 24px;
    overflow: hidden;
}

.mediaBtn {
    margin-top: 60px;
}

/* -----=====:- Footer  Section -:======----- */

.footer-top {
    background-image: url("../img/footer-bg.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #E7ECF3;
    position: relative;
    padding-top: 30px;
    padding-bottom: 40px;
}

.footer-top .container-fluid {
    position: relative;
    z-index: 9;
}

.footer-top::before {
    content: "";
    position: absolute;
    background-image: url(../img/footer-vector.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 178px;
    top: 0;
}


.menu-navbar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 40px;
}

.menu-navbar h4 {
    color: var(--primary-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
}

.menu-navbar ul {
    display: flex;
    gap: 15px;
    flex-direction: column;
}


.menu-navbar ul li a {
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.footer-menu {
    padding-top: 55px;
}

.menu-wrapper {
    position: relative;
}

.menu-wrapper::after {
    content: "";
    position: absolute;
    background: rgba(51, 51, 51, 0.20);
    width: 1px;
    height: 100%;
    right: 0;
    top: 0;
}

.footer-btn {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-left: 1rem;
    margin-top: 50px;
}
.footer-btm{
    margin-bottom:71px;
}
.footer-menu .menu-wrapper.last-child::after {
    display: none;
}

.btm-top {
    background: linear-gradient(90deg, #0A3D91 0%, #0A3D91 88.5%);
    padding: 14px 0px;
}

.btm-top p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-social a img {
    width: 20px;
    filter: grayscale(100%) brightness(50%) sepia(20%);
}

.btm-join {
    background-image: url("../img/footer-join-bg.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 5px;
    background-color: #e9f3ed;
}

#btm-join {

    position: fixed;

    bottom: 0px;

    right: 0px;

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transform: translateY(20px);

    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, visibility 0.3s;

    z-index: 99;

    width: 100%;

}

#btm-join.show {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}

.footer-join h4 {
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.footer-join a {
    background: var(--secondary-color);
    padding: 0px 12px;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
}

.footer-join {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 75px;
}

/* -----=====:- backToTop  Section -:======----- */

#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, visibility 0.3s;
    z-index: 99;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* -----=====:- About Page Section -:======----- */

.page-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 74px 0px;
    position: relative;
}

.page-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(10, 61, 145, 0.70);
    width: 100%;
    height: 100%;
}

.page-banner h1 {
    color: #FFF;
    text-align: center;
    font-family: "Oswald", sans-serif;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
    letter-spacing: 1.5px;
    z-index: 9;
    position: relative;
}

.about-content.common_content h2 {
    margin-left: 20px;
}

.about-content.common_content h2::after {
    display: none;
}

.main-content p {
    padding-bottom: 20px;
    text-align: justify;
}


.main-content {
    border-bottom: 1px solid rgba(51, 51, 51, 0.20);
    padding-bottom: 30px;
    margin-bottom: 50px;
}

.party-history {
    margin-top: 45px;
}

.party-history .history-item {
    border-radius: 2px;
    background: rgba(10, 61, 145, 0.05);
    box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.25);
    position: relative;
    padding: 26px 58px 35px 15px;
    margin-bottom: 43px;
}

.party-history .history-item::before {
    content: "";
    position: absolute;
    border: 2px dashed var(--secondary-color);
    top: 65px;
    left: 15px;
    height: 102%;
}

.party-history .history-item:last-child::before {
    display: none;
}

.history-item p {
    text-align: start;
    margin-left: 20px;
    padding-bottom: 0;
    position: relative;
}

.history-item p::after {
    content: "";
    position: absolute;
    top: 26px;
    width: 51px;
    height: 4.723px;
    transform: rotate(-90deg);
    background-color: rgba(51, 51, 51, 0.25);
    right: -60px;
}


.party-history .history-item span {
    border-radius: 0px 20px 20px 0px;
    background: var(--secondary-color);
    color: #FFF;
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 1px;
    text-transform: capitalize;
    padding: 6px 22px;
    margin-bottom: 12px;
    display: inline-block;
}

.history-item h3 {
    color: var(--primary-color);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    text-transform: capitalize;
    margin-bottom: 20px;
    margin-left: 20px;
}

.development-rlm h2::before {
    height: 100px;
}

.rulesOfrml-wrapper {
    display: flex;
    align-items: center;
    gap: 92px;
    margin-left: 4.5rem;
    padding-top: var(--section-space);
}

.rulesOfrml-item {
    background: var(--primary-color);
    box-shadow: 2px 1px 4px 3px rgba(0, 0, 0, 0.25);
    padding: 22px 15px 20px 15px;
    text-align: center;
}

.rulesOfrml-item h3 {
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    text-transform: capitalize;
}

.rulesOfrml-img {
    border-radius: 63px;
    border: 2px solid #FFF;
    width: 112px;
    height: 112px;
    display: inline-block;
    margin: 24px 46px 40px 46px;
}

.rulesOfrml-img img {
    width: 112px;
}

.rulesOfrml-btm {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.20);
    padding-top: 20px;
}

.rulesOfrml-btm img {
    filter: brightness(0) invert(1) !important;
}

.about-siderBar {
    background: rgba(43, 142, 77, 0.08);
    margin-left: 50px;
    padding: 30px 23px 1px 23px;
    border-radius: 5px;
    margin-top: 85px;
}

.siderBar-nav {
    border-radius: 5px;
    background: #FFF;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.10);
    margin-bottom: 30px;
}

.siderBar-nav ul li a {
    color: rgba(33, 33, 33, 0.60);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0.24px;
    text-transform: uppercase;
    padding: 10px 20px;
    display: block;
    border-bottom: 1px solid rgba(51, 51, 51, 0.20);
}

.siderBar-nav ul li a.active {
    color: #fff;
    background: var(--primary-color);
    border: 1px solid #2B8E4D;
}

.siderBar-nav ul li:first-child a.active {
    border-radius: 5px 5px 0px 0px;
}

.siderBar-nav ul li:last-child a.active {
    border-radius: 0px 0px 5px 5px;
}

.siderBar-nav ul li:last-child a {
    border-bottom: 0;
}

.siderBar-social h3 {
    border-radius: 5px 5px 0px 0px;
    background: var(--primary-color);
    box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.10);
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 9px 20px;
    text-transform: uppercase;
}

.social-icon {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.Join-whatapps img {
    margin-top: 30px;
    width: 355px;
    border-radius: 10px;
}

.siderBar-media {
    margin-top: 30px;
}

.siderBar-media .mediaBox {
    padding-bottom: 25px;
    margin-bottom: 30px;
}

.siderBar-media .media-content p {
    margin-right: 0px;
}

/* -----=====:- Contact Page  -:======----- */

.contact-content-btn a {
    color: #0A3D91;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    text-transform: capitalize;
    padding: 10px 35px;
    display: inline-block;
    border-radius: 2px;
    background: rgba(10, 61, 145, 0.20);
    box-shadow: 0px 1px 2px 0px rgba(255, 255, 255, 0.25);
}

.contact-content-title h2 {
    margin-left: 20px;
}

.contact-content-title h2::after {
    display: none;
}

.contact-wrapper {
    display: grid;
    align-items: center;
    gap: 60px;
    grid-template-columns: repeat(3, 1fr);
    padding-top: var(--section-space);
}

.contact-box {
    border-radius: 9.455px;
    background: #FFF;
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.25);
    text-align: center;
    padding: 16px 50px;
    height: 100%;
}

.contact-box h4 {
    color: #333;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 37.818px;
    letter-spacing: 0.44px;
    padding-bottom: 14px;
    padding-top: 22px;
}

.contact-box a {
    /*color: var(--primary-color);*/
    color: #333;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 37.818px;
    letter-spacing: 0.4px;
    text-decoration-line: none;
    display: block;
}

.map .map-wrapper {
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.25);
    position: relative;
    margin-bottom: 20px;
}

/*.map .map-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(10, 61, 145, 0.30);
    width: 100%;
    height: 100%;
}*/

/* -----=====:- Key Issue Details Page  -:======----- */

.key-issue.page-banner::before {
    display: none;
}

.keyIssue-wrapper .key-box {
    margin-bottom: 40px;
    margin-right: 10px;
}


.details-wrapper p {
    text-align: justify;
    padding-bottom: 20px;
    margin-right: 37px;
}

.details-image img {
    width: 100%;
    max-width: 583px;
    height: auto;
    float: right;
    margin-left: 40px;
    display: block;
}

.content-list li {
    color: #333;
    text-align: justify;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.keyIssue-content h4 {
    color: #000;
    text-align: justify;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-transform: capitalize;
    padding-bottom: 20px;
}

.keyIssue-content h5 {
    color: var(--primary-color);
    text-align: justify;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-transform: capitalize;
    padding-bottom: 20px;
}

.keyIssue-content p {
    font-size: 15px;
    padding-bottom: 24px;
}

.media-inner {
    margin-top: 40px;
}

/* -----=====:- Morcha Details Page  -:======----- */

.morcha-box,
.morcha-img {
    position: relative;
}

.morcha-box {
    margin-bottom: 30px;
}

.morcha-img {
    width: 100%;
    height: 460px;
}

.morcha-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.morcha-btn {
    position: absolute;
    bottom: 0;
    border-radius: 0px 0px 5px 5px;
    background: var(--primary-color);
    box-shadow: 0px -7px 6px 0px rgba(0, 0, 0, 0.25);
    width: 100%;
    padding: 16px 0px;
    text-align: center;
    transition: background 0.3s ease;
}

.morcha-btn a {
    color: #FFF;
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.morcha-btn a i {
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.morcha-box:hover .morcha-btn {
    background: var(--secondary-color);
}

.morcha-box:hover .morcha-btn a i {
    opacity: 1;
    transform: translateY(0);
}


.morcha-image img {
    max-width: 488px;
    width: 100%;
    border-radius: 0px 35px 0px 0px;
    border: 6px solid #2B8E4D;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.25);
    float: right;
    margin-left: 40px;
}

.morcha-detail p {
    color: #333;
    text-align: justify;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-transform: capitalize;
    margin-bottom: 18px;
}

.morcha-detail h5 {
    color: #000;
    text-align: justify;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-transform: capitalize;
    padding-bottom: 18px;
}

.morcha-list li {
    color: #000;
    text-align: justify;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-transform: capitalize;
}

.morcha-list p {
    padding-top: 15px;
}

.morcha-list li ul {
    padding-top: 14px;
}

.morcha-list li ul li {
    position: relative;
    color: #333;
    text-align: justify;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.morcha-list li ul li::after {
    content: "";
    position: absolute;
    background-image: url(../img/green-arrow.svg);
    top: 3px;
    left: -21px;
    width: 15px;
    height: 16px;
}

.media-inner .media-img {
    position: relative;
}

.media-inner .media-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 61, 145, 0.20);
    width: 100%;
    height: 100%;
    border-radius: 10px;
}


/* -----=====:- Our Achivement Page  -:======----- */
.achievement-details {
    position: relative;
}

.achievement-details::after {
    content: "";
    background-image: url(../img/trophy.svg);
    background-size: cover;
    width: 1160px;
    height: 1210px;
    position: absolute;
    right: 0;
    bottom: 0px;
}

.achievement-details-content h5 {
    color: #000;
    text-align: justify;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-transform: capitalize;
    padding-bottom: 18px;
}

.achievement-details-content p {
    color: #000;
    text-align: justify;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-transform: capitalize;
    padding-bottom: 20px;
}

.achievement-list ul {
    padding-left: 1rem;
    list-style: none;
    margin-bottom: 40px;
}

.achievement-list li {
    position: relative;
    margin-bottom: 15px;
}

.achievement-list li::after {
    content: "";
    position: absolute;
    background-image: url(../img/green-arrow.svg);
    top: 3px;
    left: -21px;
    width: 15px;
    height: 16px;
}

.inspiration-list .inspiration-box {
    margin-bottom: 30px;
    margin-left: 20px;
    margin-right: 20px;
    height: 470px;
}

.inspiration-content a {
    color: #FFF;
    text-align: center;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 20.5px;
    text-decoration-line: underline;
    margin-top: 4px;
    display: block;
}

.inspiration-list .inspiration-box:hover .inspiration-content {
    height: 165px
}

.inspiration-details-img {
    height: 343px;
    width: 100%;
    margin: 30px 0px;
}

.inspiration-details-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
    border: 5px solid #2B8E4D;
}

.inspiration-details-content p {
    padding-bottom: 20px;
    color: #333;
    text-align: justify;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-transform: capitalize;
}

.inspiration-details-content h5 {
    color: #0A3D91;
    text-align: justify;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.inspiration-details-list .morcha-list p {
    padding-top: 10px;
}

.contact-content-title {
    margin-bottom: 10px;
}

.inspiration-details-list ol {
    padding-left: 1rem;
}

.mediaBox:hover {
    background: #0A3D91;
}

.mediaBox:hover .media-content h3 {
    color: #fff;
}

.mediaBox:hover .media-content p {
    color: #fff;
}

.mediaBox:hover .media-social img {
    filter: brightness(0) invert(1);
}

.speecheBox {
    display: flex;
    gap: 20px;
}

.speecheBox .speeche-img img {
    min-width: 266px;
    height: 100%;
}

.speeche-content h3 {
    color: #0A3D91;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    text-transform: capitalize;
    padding: 20px 0px 15px 0px;
}

.speeche-content span {
    color: rgba(51, 51, 51, 0.80);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-transform: capitalize;
}

.speecheBox {
    background: rgba(10, 61, 145, 0.05);
    box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.25);
    margin-bottom: 28px;
}

.speeche-content p {
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    text-transform: capitalize;
}

.speeche-content {
    padding: 12px 50px 12px 24px;
}

.interviews .speecheBox {
    padding: 44px 28px;
}

.interviews .speeche-content {
    padding: 0;
}

.photoBox {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 24px;
}

.photoBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid #0F2D7A;
    box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.25);
}

.photoBox .media-social img {
    border: none;
    box-shadow: none;
    filter: brightness(0) invert(1);
}

.photoContent span {
    color: rgba(255, 255, 255, 0.70);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}

.photoContent {
    background: #0A3D91;
    padding: 10px 20px 0px 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    border-radius: 0px 0px 5px 5px;
}

.photoBox:hover .photoContent {
    transform: translateY(58%);
}

.photoContent h3 {
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    padding: 15px 0px;
}

.photoContent p {
    color: rgba(255, 255, 255, 0.80);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.photoBox .media-social {
    padding: 20px 0px 20px 0px;
}

.media-img a .playBtn {
    background: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 21px 24px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.media-img a .playBtn i {
    color: #0A3D91;
}

.team-img img {
    border: 5px solid #2B8E4D;
}

.team-content h3 {
    color: #0A3D91;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 19.2px;
}

.team-content span {
    color: #6B6B6B;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.5px;
    padding: 25px 0px;
    display: block;
}

.team-content p {
    color: #6B6B6B;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    padding-right: 18px;
}

.team-content .social-icon {
    margin-top: 50px;
}

.team-info {
    background: #0A3D91;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
    text-align: center;
    padding: 20px 0px;
    height: 150px;
}

.team-info h3 {
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.team-info p {
    color: rgba(255, 255, 255, 0.70);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 19.2px;
    padding: 8px 0px;
}

.team-info .media-social {
    justify-content: center;
    filter: brightness(0) invert(1);
    padding: 0;
}

.teamBox-img {
    width: 100%;
    height: 300px;
}

.teamBox-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-box {
    margin-bottom: 24px;
}

.team-list {
    position: relative;
}

.team-list::after {
    position: absolute;
    content: "";
    background-image: url(../img/team-vector.png);
    width: 1154px;
    height: 1071px;
    bottom: -13rem;
    right: 0;
}

.search-filter .form-control {
    border-radius: 0;
    padding: 15px 15px;
}

.search-filter .form-control:focus,
.search-filter .form-select:focus {
    box-shadow: none;
    border-color: #2B8E4D;
}

.searchbydate {
    display: flex;
    align-items: center;
}

.searchbytitle .form-control {
    border: 0;
    border-bottom: 1px solid #2B8E4D;
}

.searchbystate .form-select {
    border-radius: 0;
    padding: 15px 15px;
    cursor: pointer;
}

.searchbydate #from {
    border-right: 0;
    cursor: pointer;
}

.searchbydate #to {
    border-left: 0;
    cursor: pointer;
}

.date-wrapper {
    position: relative;
}

.date-wrapper img {
    position: absolute;
    top: 16px;
    right: 16px;

}

.searchBtn .default-btn {
    border: 0;
    padding: 17px 24px;
    width: 100%;
}


.ui-state-hover {
    background-color: transparent !important;
}

.ui-widget.ui-widget-content {
    border-radius: 15px !important;
    border: 1.2px solid rgba(227, 227, 227, 0.4) !important;
    background: #fff !important;
    width: 322px !important;
    padding: 15px;
    z-index: 9 !important;
}

.ui-state-default,
.ui-widget-content .ui-state-default {
    border: none !important;
    background: #fff !important;
    color: #1e3767 !important;
    text-align: center !important;
    font-size: 13px !important;
    font-weight: 600 !important;
}

.ui-state-active,
.ui-widget-content .ui-state-active {
    border: none !important;
    background: #0A3D91 !important;
    color: #ffffff !important;
    border-radius: 54px !important;
    text-align: center !important;
    padding: 4px 6px;
}

.ui-datepicker th {
    color: #1e3767 !important;
    text-align: center !important;
    font-size: 13px !important;
    font-weight: 600 !important;
}

.ui-datepicker td {
    border: 0;
    padding: 7px 10px !important;
}

.ui-widget-header {
    border: none !important;
    background: #fff !important;
}

.ui-datepicker .ui-datepicker-title {
    color: #1e3767;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.14px;
    padding-bottom: 10px;
}

.booking-form ::placeholder {
    margin: 24px 0;
    padding: 5px 8px;
    font-family: Roboto, sans-serif;
    color: #91909c;
    align-items: center;
    font-size: 17px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: -0.17px;
}

.input-block img {
    position: absolute;
    right: 8px;
    padding: 12px 12px;
    pointer-events: none;
    top: 9px;
}

a.ui-datepicker-prev.ui-corner-all {
    background-image: url("../img/next-icon.svg") !important;
    background-repeat: no-repeat;
    cursor: pointer;
    height: 1.8em;
    width: 1.8em;
    top: -7px;
    left: 0px;
    border: none;
    transform: rotate(180deg);
}

a.ui-datepicker-next.ui-corner-all {
    /* background: #ff6e30; */
    background-image: url("../img/next-icon.svg") !important;
    cursor: pointer;
    height: 1.8em;
    width: 1.8em;
    top: 9px;
    right: -5px;
    border: none;
    background-repeat: no-repeat;
}

a.ui-datepicker-prev.ui-corner-all:hover span,
a.ui-datepicker-next.ui-corner-all:hover span {
    background-image: url(../img/next-icon.svg) !important;
    background-position: -80px -192px;
}

.ui-state-default,
.ui-widget-content .ui-state-default {
    border: none !important;
}

.ui-widget-header .ui-icon {
    background-image: url("../img/next-icon.svg") !important;
}

.ui-datepicker-today .ui-state-highlight {
    border: none !important;
    background: #0A3D91 !important;
    color: #ffffff !important;
    border-radius: 54px !important;
    text-align: center !important;
    padding: 4px 6px;
}

.feedback-form .form-label {
    color: #333;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.feedback-form .form-control,
.feedback-form .form-select {
    border: 0.8px solid #0A3D91;
    background-color: rgba(10, 61, 145, 0.10);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
    padding: 15px 12px;
    border-radius: 0;
}

.form-select {
    background-image: url("../img/down-arrow.png");
    background-size: 13px;
}

.feedback-form .form-control::placeholder {
    color: rgba(51, 51, 51, 0.60);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: capitalize;
}

.feedback-form .default-btn {
    border: 0;
    padding: 12px 44px;
}

.feedback-form {
    margin-top: 30px;
}

.feedback-content h2::after {
    display: none;
}

.policy-content h3 {
    color: #0A3D91;
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0.375px;
    padding-bottom: 24px;
}

.policy-content h5 {
    color: #0A3D91;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0.27px;
    padding-bottom: 24px;
}

.policy-list ul li {
    position: relative;
    margin-left: 30px;
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.24px;
    padding-bottom: 20px;
}

.policy-list ul li::before {
    content: "";
    position: absolute;
    background-image: url("../img/green-trick.png");
    top: 6px;
    left: -30px;
    width: 14px;
    height: 12.059px;
}

.policy-content p {
    padding-bottom: 20px;
}

.faq-content h2::after {
    display: none;
}

.faq-content-info h2::after {
    display: none;
}

.faq-content-info h2::before {
    display: none;
}

.faq-content-info h2 {
    display: block;
}

.faq-content-info .accordion-item {
    margin-bottom: 15px;
    border: 0;
}

.faq-content-info .accordion-button {
    border: 2px solid #F0F4FF;
    background: #E7ECF4;
    color: #333;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 15px 30px;
}

.faq-content-info .accordion-button:not(.collapsed) {
    background: #fff;
    box-shadow: none;
    border: 1px solid rgba(10, 61, 145, 0.50);

}

.accordion-body {
    border-radius: 0px 0px 10px 10px;
    border-right: 1px solid rgba(10, 61, 145, 0.50);
    border-bottom: 1px solid rgba(10, 61, 145, 0.50);
    border-left: 1px solid rgba(10, 61, 145, 0.50);
    background: #FFF;
    color: rgba(51, 51, 51, 0.70);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    padding: 15px 30px;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.accordion-item:first-of-type > .accordion-header .accordion-button {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.accordion-button::after {
    background-image: url("../img/faq-icon.svg");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("../img/faq-icon.svg");
    transform: rotate(-90deg);
}

.common-banner {
    padding: 80px 0px;
    background-size: cover;
    background-position: center;
}

.common-banner h1 {
    text-align: center;
    font-size: 100px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 2px;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
    background: linear-gradient(90deg, #0A3D91 3%, #2B8E4D 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.common-banner-content {
    border: 1px solid rgba(43, 142, 77, 0.50);
    background: #FFF;
    box-shadow: 0px 0px 20px -1px rgba(0, 0, 0, 0.25);
    padding: 30px 44px;
    text-align: center;
    margin-top: 50px;
}

.common-banner-content h3 {
    color: #333;
    text-align: center;
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 0.525px;
}

.common-banner-content p {
    color: #333;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 27px;
    letter-spacing: 0.3px;
    padding-top: 30px;
    padding-bottom: 50px;
    opacity: 0.5;
}

.common-banner-content .default-btn {
    padding: 10px 40px;
    box-shadow: none;
    border-radius: 5px;
}

.common-banner-content h3 i {
    color: #2B8E4D;
}

.check-animate {
    opacity: 0;
    transform: scale(0);
    animation: popCheck 0.5s ease-out forwards;
}

@keyframes popCheck {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    50% {
        opacity: 1;
        transform: scale(1.3);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.common-banner h1 span {
    font-family: Montserrat;
    font-size: 150px;
    font-style: normal;
    font-weight: 800;
    line-height: 180px;
    background: linear-gradient(180deg, #0A3D91 15.5%, #2B8E4D 87%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.common-banner-content.error h3 {
    color: var(--primary-color);
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
}

.common-banner-content.error {
    box-shadow: none;
    border: 0;
    background: transparent;
    margin-top: 0;
    padding: 0;
}

.common-banner-content.error p {
    color: #333;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    padding-top: 20px;
    opacity: 1;
}

.offcanvas-menu .offcanvas.offcanvas-top {
    height: 100vh;
}

.offcanvas-menu .offcanvas-body {
    padding: 0;
}

.offcanvas-menu .offcanvas-header {
    position: absolute;
    top: 0px;
    right: 21px;
    z-index: 9;
}

.offcanvas-menu .offcanvas-header button {
    opacity: 1;
}

.offcanvas-menu .footer-top::before {
    display: none;
}

/* after live css */
.profile-link {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s ease;
}

.profile-link:hover {
    background: #f4f4f4;
}

.feedback-wrapper {
    background-image: url("../img/feedback-bg.png");
    background-size: cover;
    background-position: center;
}