@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --prmy-clr: #899b75;
    --secndy-clr: #f4931e;
    --prmy-light: rgba(24, 113, 57, .05);
    --secndy-light: rgba(244,147,30,.05);
    --poppins-font: "Poppins", system-ui;
    --jost-font: "Jost", sans-serif;
}
body {
    font-family: var(--poppins-font);
}

/* COMMON */
.prmy-clr {
    color: var(--prmy-clr) !important;
}
.secndy-clr {
    color: var(--secndy-clr) !important;
}
.bg-prmy {
    background-color: var(--prmy-clr);
}
.bg-secndy {
    background-color: var(--secndy-clr) !important;
}
.prmy-light {
    background: var(--prmy-light);
}
.secndy-light {
    background: var(--secndy-light);
}
.bg-secndy {
    background-color: var(--secndy-clr);
}
.prmy-bdr {
    border-color: var(--prmy-clr) !important;
}
.secndy-bdr {
    border-color: var(--secndy-clr) !important;
}
.prmy-bdr-btm {
    border-bottom: dashed 1px var(--prmy-clr);
}
.secndy-bdr-btm {
    border-bottom: dashed 1px var(--secndy-clr);
}
.jost-font {
    font-family: var(--jost-font);
}
.fs-12 {
    font-size: 12px;
}
.fs-14 {
    font-size: 14px;
}
.object-position-top {
    object-position: top;
}
.invert1 {
    filter: invert(1);
}
.heading-bdr,.heading-bdr-left {
    font-family: var(--jost-font);
    font-weight: 600;
    color: var(--secndy-clr);
    position: relative;
}
.heading-bdr::after,.heading-bdr-left::after {
    content: "";
    width: 30%;
    height: 3px;
    background-color: var(--prmy-clr);
    border-radius: 5px;
    position: absolute;
    bottom: -6px;    
}
.heading-bdr::after {
    margin: auto;
    right: 0;
    left: 0;
}
.heading-bdr-left::after {
    left: 0;
    right: auto;
}
.heading-bdr-secndy::after {
    content: "";
    width: 80%;
    height: 2px;
    margin: auto;
    background-color: var(--secndy-clr);
    border-radius: 5px;
    position: absolute;
    bottom: -6px;
    right: 0;
    left: 0;
}
.heading-bdr-secndy-left::after {
    content: "";
    width: 50%;
    height: 2px;
    margin: auto;
    background-color: var(--secndy-clr);
    border-radius: 5px;
    position: absolute;
    bottom: -6px;
    right: auto;
    left: 0;
}
.one-line-text {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.two-line-text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
            line-clamp: 2;
    -webkit-box-orient: vertical;
}
.transparent-btn {
    font-weight: 500;
    color: var(--prmy-clr);
    text-decoration: none;
    padding: 6px 20px;
    background-color: var(--bs-white);
    border: 1px solid var(--secndy-clr);
    border-radius: 30px;
}
/* .transparent-btn:hover {
    color: var(--bs-white);
    background-color: var(--prmy-clr);
    border-color: var(--prmy-clr);
} */
.prmy-btn {
    font-weight: 500;
    color: var(--bs-white);
    text-decoration: none;
    padding: 6px 20px;
    background-color: var(--prmy-clr);
    border: 1px solid var(--prmy-clr);
    border-radius: 20px;
}

.bread-crums {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-top: 15px;
    list-style-type: none;
}
.bread-crums li {
    font-size: 14px;
    font-weight: 500;
    color: var(--prmy-clr);
    margin: 4px 10px;
    padding: 0 10px;
    cursor: pointer;
    border: 1px solid var(--secndy-clr);
    border-radius: 10px;
    position: relative;
}
.bread-crums li::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 14px;    
    content: "\f0da";
    margin: 0 6px;
    color: var(--prmy-clr);
    position: absolute;
    left: -21px;
}
.bread-crums li:first-child::before {
    display: none;
}
.bread-crums li a {
    font-size: 14px;
    font-weight: 500;
    color: var(--prmy-clr);
    /* display: inline-block; */
    text-decoration: none;
}
/* COMMON */

/* HEADER */
header {
    background-color: var(--bs-white);
}
.inverted {
    background-color: rgba(255, 255, 255, .8) !important;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 4px #ccc;
}
.nav-lnk {
    font-size: 14px;
    margin: 5px;
    color: var(--prmy-clr);
    padding: 4px 16px !important;
    border: 1px solid var(--secndy-clr);
    border-radius: 30px;
}
.nav-lnk:hover {
    color: var(--bs-white) !important;
    background-color: var(--prmy-clr);
}
.drop-menu {
    padding: 8px;
    border-radius: 20px;
    box-shadow: 0 0 10px var(--bs-white);
}
.dropdown-item {
    border-radius: 20px;
    transition: all .3s ease-in-out;
}
.dropdown-item:hover {
    color: var(--bs-white);
    background: var(--prmy-clr);
}
.navbar-toggler {
    padding: 0 6px;
    border-color: var(--prmy-clr);
}
.navbar-toggler-icon {
    background-size: 20px;
    filter: saturate(150) invert(1);
}
/* HEADER */

/* BANNER */
.b-live-rate {
    height: 330px;
    padding: 10px;
    background-color: var(--bs-white);
    overflow: hidden;
    border-radius: 20px;
}
.b-live-rate li {
    margin-bottom: 15px;
}
.b-live-rate-heading h4 {
    font-size: 20px;
    color: var(--bs-white);
    padding: 5px;
    text-align: center;
    background: var(--secndy-clr);
    border-radius: 20px;
}
.b-live-rate p {
    font-size: 14px;
    color: var(--secndy-clr);
    margin-bottom: 0;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.b-live-rate h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--prmy-clr);
}
/* BANNER */

/* LIVE RATES TABLE */
.tbl-prnt-bdr {
    height: 100%;
    border-width: 12px;
    border-style: solid;
    border-image: linear-gradient(180deg, rgba(244,147,30,.3) 0%, var(--secndy-clr) 100%) 1;
}
.tbl-rate-prnt {
    height: 250px;
    overflow-y: auto;
    border: 1px solid var(--prmy-clr);
}
.tbl-rate-prnt::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
.tbl-rate-prnt::-webkit-scrollbar-thumb {
    background-color: var(--prmy-clr);
    border-radius: 5px;
}
.tbl-rate {
    width: 100%;
}
.tbl-rate thead tr {
    position: sticky;
    top: 0;
}
.tbl-rate thead tr th {
    font: 500 18px var(--poppins-font);
    /* background-color: var(--prmy-clr); */
    color: var(--prmy-clr);
    /* text-align: center; */
}
.tbl-rate th,.tbl-rate td {
    padding: 10px;
    white-space: nowrap;
    vertical-align: middle;
}
.tbl-rate td:first-child {
    font-size: 14px;
    font-weight: 600;
}
.tbl-rate td:first-child a {
    color: var(--bs-dark);
}
/* .tbl-rate td:nth-child(2), */
.tbl-rate td:nth-child(3) {
    text-align: end;
}
.tbl-rate td a {
    text-decoration: none;
}
.tbl-icon {
    width: 24px;
    height: 24px;
    font-size: 13px;
    color: var(--bs-white);
    margin: auto;
    background-color: var(--secndy-clr);
    display: flex !important;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.tbl-tr-bdr tbody tr {
    border-bottom: 1px solid #ccc;
}
/* LIVE RATES TABLE */

/* TABS */
.tab1 {
    font-weight: 500;
    color: var(--bs-white);
    margin-right: 10px;
    padding: 4px 16px;
    border: 1px solid var(--bs-light) !important;
    border-radius: 30px !important;
}
.tab1:hover {
    color: var(--bs-white);
}
.tab1.active {
    color: var(--secndy-clr) !important;
    background-color: var(--bs-white) !important;
    box-shadow: 0 0 3px var(--bs-white);
}
/* TABS */

/* ITEM OWL CAROUSEL */
.owl-stage-outer {
    border-radius: 15px;
}
.owl-item-carousel .owl-nav span,
.owl-blockquote-carousel .owl-nav span {
    width: 34px;
    height: 34px;
    color: #fff;
    font-family: auto;
    font-size: 28px;
    font-weight: 400;
    padding: 0px 5px;
    line-height: 28px;
    display: inline-block;
    background: rgba(244,147,30,.8);
    border-radius: 50%;
}
.owl-item-carousel .owl-nav span:hover,
.owl-blockquote-carousel .owl-nav span:hover {
    background: rgba(244,147,30,1);
}
.owl-item-carousel .owl-nav .owl-prev,
.owl-item-carousel .owl-nav .owl-next {
    position: absolute;
    top: 45%;
    transform: translateY(-45%);
}
.owl-item-carousel .owl-nav .owl-prev:hover,
.owl-item-carousel .owl-nav .owl-next:hover {
    background-color: transparent !important;
}
/* .owl-blockquote-carousel .owl-nav .owl-prev,
.owl-blockquote-carousel .owl-nav .owl-next {
    position: absolute;
    top: 37%;
    transform: translateY(-37%);
} */
.owl-item-carousel .owl-nav .owl-prev,
.owl-blockquote-carousel .owl-nav .owl-prev {
    left: -22px;
}
.owl-item-carousel .owl-nav .owl-next,
.owl-blockquote-carousel .owl-nav .owl-next {
    right: -22px;
}
.owl-dot.active span {
    background: var(--secndy-clr) !important;
}
/* .owl-blockquote-carousel .owl-stage-outer {
    padding-left: 20px;
} */
/* .owl-blockquote-carousel .owl-stage {
    display: flex;
    align-items: center;
} */
/* .owl-blockquote-carousel .owl-dot.active span {
    display: none;
} */
/* ITEM OWL CAROUSEL */

/* ANIMATION CAROUSEL */
.members .slider {
    white-space: nowrap;
    animation: slidein 30s linear infinite;
}
.members .slider ul {
    width: 100%;
    display: inline-block;
    margin: 0px 0;
}
.members .slider ul li {
    /* width: calc(100% / 5); */
    /* width: 180px; */
    display: inline-block;
    margin-left: 15px;
    margin-right: 15px;
    border: 1px solid var(--prmy-clr);
    padding: 15px;
    animation: fade-in 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) forwards;
}
.members .slider ul li a {
    display: block;
    overflow: hidden;
}
.members .slider ul li img {
    height: 100px;
    /* -webkit-filter: grayscale(100%);
    filter: grayscale(100%); */
}
@keyframes slidein {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-100%, 0, 0);
    }
}
@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
/* ANIMATION CAROUSEL */

/* BLOCKQUOTE CAROUSEL */
.review {
    position: relative;  
    /* width: 450px; */
  }
.review-img {
    width: 75px;
    height: 75px;
    padding: 4px;
    background-color: var(--secndy-clr);
    transform: translateY(-50%);
    border-radius: 50%;
    position: absolute;
    left: -35px;
    top: 50%;
    z-index: 1;
}
.review-text {
    text-align: center;
    background: var(--prmy-clr);
    padding: 25px 35px 25px 80px;
    quotes: "\201C""\201D""\2018""\2019";
    border:none;
    border-radius: 20px;
}
.review-text p {
    font-size: 14px;
    color: var(--bs-white);
    margin-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 8; /* number of lines to show */
            line-clamp: 8; 
    -webkit-box-orient: vertical;
}
.review-text p:before { 
    content: open-quote;
    font-weight: bold;
    font-size:70px;
    color:var(--bs-white);
    position: absolute; 
    top: -0.2em;
    left: 0.55em;
    font-family: 'Courier New', Courier, monospace;
    font-family: Georgia, 'Times New Roman', Times, serif; 
} 
.review-text p:after { 
    content: close-quote;
    font-weight: bold;
    font-size:70px;
    color:var(--bs-white);
    position: absolute; 
    bottom: -0.66em;
    right: 0.2em;
    font-family: Georgia, 'Times New Roman', Times, serif; 
}
/* BLOCKQUOTE CAROUSEL */

/* FOOTER */
.foot-nav li {
    margin: 10px 0;
}
.foot-nav a {
    color: #555;
    text-decoration: none;
    transition: all .3s ease-in-out;
}
.foot-nav a:hover {
    color: var(--secndy-clr);
}
.social-icon {
    width: 30px;
    height: 30px;
    font-size: 16px;
    color: #fff;
    margin: 5px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 50%;
}
.fb-bg {
    background: #4267B2;
}
.linkedin-bg {
    background: #0072b1;
}
.insta-bg {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.youtube-bg {
    background: #FF0000;
}
.whatsapp-bg {
    background: #4FCE5D;
}
/* FOOTER */

/* SCROLL TOP CSS */
.pulse-prnt {
    position: fixed;
    right: 20px;
    z-index: 89;
}
@media (max-width: 767px) {
    .pulse-prnt {
        bottom: 80px;
    }
}
@media (min-width: 768px) {
    .pulse-prnt {
        bottom: 20px;
    }
}
.app-download-prnt {
    
    position: fixed;
    bottom: 20px;
    left: 20px;
}
.app-download {
    width: 60px;
    height: 60px;
    background: var(--bs-black);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 4px solid var(--secndy-clr);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--secndy-clr);
}
#scrolltop {
    width: 60px;
    height: 60px;
    background-color: var(--prmy-clr);
    display: none;
    border: 4px solid var(--secndy-clr);
    border-radius: 50%;
    box-shadow: 0 0 15px 3px var(--secndy-clr);
}
#scrolltop img {
    margin-bottom: 2px;
}
#scrolltop::after, #scrolltop::before,
.app-download::after, .app-download::before {
    content: "";
    display: block;
    position: absolute;
    top: 7px;
    left: 7px;
    width: 45px;
    height: 45px;
    background: var(--secndy-clr);
    border-radius: 50%;
    z-index: -1;
    animation: grow 1s ease-in-out infinite;
}
#scrolltop::before,.app-download::before {
    background: var(--secndy-clr);
    animation-delay: -0.5s;
}
@keyframes grow {
    0% {
        transform: scale(1, 1);
        opacity: 1;
    }
    100% {
        transform: scale(2, 2);
        opacity: 0;
    }
}
/* SCROLL TOP CSS */

.btn-close {
    transition: all 0.3s;
}
.btn-close:hover {
    transform: rotate(180deg);
}

/* FORM */
.frm-lbl {
    font-weight: 500;
    margin-bottom: 4px;
}
.int-text {
    width: 100%;
    padding: 6px 12px;
    border-radius: 12px !important;
    border: 1px solid var(--prmy-clr);
}
.int-text:focus {
    border-color: var(--prmy-clr);
}
.int-text:focus-visible {
    outline: 0;
}
/* FORM */

/* PAGINATION CSS */
.pagination {
    border-radius: 20px;
    overflow: hidden;
}
.pagination .page-item .page-link {
    color: var(--prmy-clr);
}
.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    color: var(--bs-white);
    background: var(--prmy-clr);
    border-color: var(--prmy-clr);
}
.pagination .page-item.disabled .page-link {
    color: var(--bs-dark);
    background-color: var(--bs-pagination-disabled-bg);
    border-color: var(--bs-pagination-disabled-border-color);
}
.pagination .page-item.active .page-link {
    color: var(--bs-white);
    background: var(--secndy-clr);
    border-color: var(--secndy-clr);
}
/* PAGINATION CSS */

/* NEWS DETAILS */
.details-page a {
    color: var(--secndy-clr);
}
/* NEWS DETAILS */

/* EVENTS */
    .orange-tbl {
        width: 100%;
        border-color: var(--secndy-clr);
    }
    .orange-tbl thead th,
    .orange-tbl tbody td {
        height: 54px;
        vertical-align: middle;
        border-color: var(--secndy-clr);
    }
    .orange-tbl thead th {
        font-size: 14px;
        color: var(--bs-white);
        text-align: center;
        background: var(--secndy-clr);
    }
    .orange-tbl tbody td {
        
    }

    /* CALENDAR CSS */
    .calendar-container {
        height: auto;
        /* width: 400px; */
        background-color: white;
        border-radius: 10px;
        box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.4);
        padding: 16px 16px;
        border: 1px solid #ccc;
        position: sticky;
        top: 110px;
    }
    .calendar-week {
        display: flex;
        list-style: none;
        align-items: center;
        padding-inline-start: 0px;
    }
    .calendar-week-day {
        font-size: 14px;
        font-weight: 600;
        max-width: 57.1px;
        width: 100%;
        text-align: center;
        color: #525659;
    }
    .calendar-days {
        margin-top: 30px;
        list-style: none;
        display: grid;
        justify-items: center;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
        gap: 20px;
        padding-inline-start: 0px;
    }
    @media (max-width: 1199px) and (min-width: 992px) {
        .calendar-days {
            gap: 15px;
        }
    }
    .calendar-day {
        font-size: 14px;
        text-align: center;
        color: #525659;
        width: 30px;
        height: 30px;
        line-height: 30px;
        /* padding: 3px 4px; */
    }
    .calendar-month-arrow-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .calendar-month-year-container {
        padding: 10px 10px 20px 10px;
        color: #525659;
        cursor: pointer;
    }
    .calendar-arrow-container {
        margin-top: -5px;
    }
    .calendar-left-arrow,
    .calendar-right-arrow {
        height: 30px;
        width: 30px;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        color: #525659;
    }
    .calendar-today-button {
        margin-top: -10px;
        border-radius: 10px;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        color: #525659;
        padding: 5px 10px;
    }
    .calendar-today-button {
        height: 27px;
        margin-right: 10px;
        background-color: #ec7625;
        color: white;
    }
    .calendar-months,
    .calendar-years {
        flex: 1;
        border-radius: 10px;
        height: 30px;
        border: none;
        cursor: pointer;
        outline: none;
        color: #525659;
        font-size: 15px;
    }
    .calendar-day-active {
        background-color: #ec7625;
        color: white;
        border-radius: 50%;
    }
    /* CALENDAR CSS */
/* EVENTS */


/* CALCULATOR */
/* ACCORDION 1 */
.accordion-design1 .accordion-item {
    border-width: 2px;
    border-color: var(--prmy-clr);
}
.accordion-design1 .accordion-item:first-of-type {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    overflow: hidden;
}
.accordion-design1 .accordion-item:last-of-type {
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    overflow: hidden;
}
.accordion-design1 .accordion-button {
    font-weight: 500;
    color: var(--secndy-clr);
}
.accordion-design1 .accordion-button::after {
    filter: saturate(340) hue-rotate(545deg);
}
.accordion-design1 .accordion-button:not(.collapsed) {
    color: var(--bs-white);
    background-color: var(--prmy-clr);
    box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 var(--prmy-clr);
}
.accordion-design1 .accordion-button:not(.collapsed)::after {
    filter: brightness(50.5);
}
.accordion-body ul {
    margin-bottom: 0;
    padding-left: 10px;
    list-style-type: none;
}
.accordion-body ul li {
    margin: 5px 0;
}
.accordion-body ul li a {
    color: var(--bs-muted);
}
/* ACCORDION 1 */

/* ACCORDION 2 */
.accordion-design2 .accordion-item {
    border-width: 2px;
    border-color: var(--secndy-clr);
}
.accordion-design2 .accordion-item:first-of-type {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    overflow: hidden;
}
.accordion-design2 .accordion-item:last-of-type {
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    overflow: hidden;
}
.accordion-design2 .accordion-button {
    font-weight: 500;
    color: var(--prmy-clr);
}
.accordion-design2 .accordion-button::after {
    filter: saturate(220) hue-rotate(595deg);
}
.accordion-design2 .accordion-button:not(.collapsed) {
    color: var(--bs-white);
    background-color: var(--secndy-clr);
    box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 var(--secndy-clr);
}
.accordion-design2 .accordion-button:not(.collapsed)::after {
    filter: brightness(50.5);
}
/* ACCORDION 2 */
/* CALCULATOR */


.contact-icon {
    font-size: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px !important;
    color: var(--bs-white);
    text-align: center;
    background: var(--prmy-clr);
    border-radius: 50%;
}
.vision-mission ul,.details-page ol {
    list-style-type: disclosure-closed;
}
.vision-mission ul li,.details-page ol li {
    padding-left: 10px;
}
.vision-mission ul li::marker,.details-page ol li::marker {
    font-size: 30px;
    color: var(--secndy-clr);
}

/* CONTACT US */
.contact-icon {
    width: 80px;
    height: 80px;
    line-height: 80px !important;
    font-size: 40px;
    color: var(--bs-white);
    text-align: center;
    background: var(--prmy-clr);
    border-radius: 50%;
}
/* CONTACT US */