@charset "UTF-8";

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

:root {
    --thm-font: 'Poppins', sans-serif;
    /* Headings */
    --thm-b-font:  'Poppins', sans-serif;
    /* Body font */
    --thm-icon-font: "FontAwesome";
    /* --thm-icon-font: "Font Awesome 5 Pro"; */
    /*Icon Font*/
    --thm-color-one: #FBB03B;
    --thm-color-two: #000;
    --thm-color-three: #fff;
    --thm-color-four: #000000;
    /*Light Color*/
    --thm-color-light: #f7f7f7;
    /*RGB Colors*/
    --thm-color-one-rgb: 14, 223, 126;
    --thm-color-two-rgb: 0, 0, 0;
    --thm-color-three-rgb: 237, 241, 245;
    --thm-color-four-rgb: 0, 0, 0;
    /*Light Color*/
    --thm-color-light-rgb: 247, 247, 247;
    /*Theme Colors*/
    --thm-body-color: #636060;
    /*Body Colors*/
    --thm-white: #ffffff;
    /*White Color*/
    --thm-border: #d1d1d1;
    /*Border Color*/
}

/*Animations*/

@keyframes fadeHeaderInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

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

/*General*/
::selection {
    background-color: var(--thm-color-two);
    color: var(--thm-white);
}

i[class^="flaticon-"],
i[class*=" flaticon-"] {
    display: flex;
    align-items: center;
    justify-content: center;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--thm-body-color);
    font-size: 16px;
    line-height: 1.8;
    background-color: white;
    color: black;
    font-weight: 400;
    overflow-x: hidden;
    counter-reset: sectionCounter;
}

.relative {
    position: relative;
}

.thm-font {
    font-family: var(--thm-font);
}


.section-padding {
    position: relative;
    padding: 80px 0;
}

.section-padding.section {
    padding-bottom: 50px;
}

.image-fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-fit-contain {
    width: 70%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.transform-center {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translate(0%, -50%);
    z-index: 1;
}

[class^="flaticon-"]:before,
[class*=" flaticon-"]:before {
    font-size: inherit;
    margin: 0;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

ul li {
    margin-bottom: 0;
    position: relative;
}
li a {
    text-decoration: none;
}

button:focus,
*:focus {
    outline: none;
}

button {
    background: transparent;
    border: none;
    padding: 0;
}

label {
    margin-bottom: 10px;
    font-weight: 500;
    line-height: normal;
}

label>a {
    font-size: 14px;
}

img {
    max-width: 100%;
    width: auto;
    height: auto;
    transition: 0.5s;
}

select {
    appearance: auto;
    border: none;
    color: #b7b7b7;
}

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

.container-wide .row {
    flex-wrap: unset;
}

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

.z-2 {
    position: relative;
    z-index: 2;
}
.section-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    z-index: 1;
}

.section-parallax {
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    z-index: 1;
}

/*section-title*/

/*
.header.can-sticky {
    border-bottom: 2px solid #2656DB;
}*/
.section-header {
    max-width: 550px;
    padding-bottom: 30px;
    margin: 0 auto 0 0;
    text-align: left;
    position: relative;
}

.section-header .section_count {
    margin-bottom: 0;
    font-size: 50px;
    font-weight: 600;
    color: var(--thm-color-one);
    line-height: 1.5;
}

.section-header .section_count:before {
    counter-increment: sectionCounter;
    content: "0"counter(sectionCounter);
}

.section-header .title {
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    font-size: 36px;
    margin-bottom: 0px;
}

.section-header .text {
    margin-bottom: 0;
}

.section-header.text-center {
    margin: 0 auto;
}

.section-header.text-center .title {
    justify-content: center;
}

.lh-normal {
    line-height: normal;
}

hr {
    margin: 30px 0;
    border-color: var(--thm-border);
}

blockquote {
    background-color: #fff;
    position: relative;
    padding: 30px;
    padding-top: 0;
    border-left: 4px solid var(--thm-color-one);
    border-radius: 10px;
    border-bottom: 2px solid #e2dcdc;
}

blockquote .quote_icon {
    width: 50px;
    height: 50px;
    background: var(--thm-color-one);
    color: var(--thm-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    font-size: 16px;
    margin-right: 0;
    position: absolute;
    left: 0;
    top: 0;
}

blockquote .quote_title {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--thm-color-two);
    font-style: italic;
}

blockquote .quote_author {
    font-size: 18px;
    color: var(--thm-color-one);
    display: flex;
    align-items: center;
}

blockquote .quote_author:before {
    content: '';
    width: 40px;
    height: 3px;
    background-color: var(--thm-color-two);
    margin-right: 20px;
    display: inline-flex;
}

/*Slick Arrows*/

.slick-arrow:hover {
    color: var(--thm-white) !important;
    background-color: var(--thm-color-one);
    border-color: inherit !important;
}

.slick-arrow:before {
    content: "\f053";
    font-family: var(--thm-icon-font);
    font-weight: 500;
    font-size: 20px;
}

.slick-arrow.slick-next:before {
    content: "\f054";
}
.slick-arrow.slick-prev:before {
    content: "\f053";
}

.slick-prev.slick-arrow {
    position: absolute;
    top: 48%;
    left: 7%;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 50px;
    height: 50px;
    color: #fff;
    font-size: 0;
    transition: 0.5s all;
    border: 2px solid;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slick-next.slick-arrow {
    position: absolute;
    top: 48%;
    right: 7%;
/*    left: 0;*/
    bottom: 0;
    z-index: 1;
    width: 50px;
    height: 50px;
    color: #fff;
    font-size: 0;
    transition: 0.5s all;
    border: 2px solid;
    display: flex;
    justify-content: center;
    align-items: center;
}



.slick-arrow.slick-prev:hover {
    border: 2px solid var(--thm-color-one);
    background-color:transparent;
    color: var(--thm-color-one) !important;
}
.slick-arrow.slick-prev:hover:before {
    color: var(--thm-color-one);
}
.slick-arrow.slick-prev:focus {
    border: 2px solid var(--thm-color-one);
    background-color: #fff;
    color: var(--thm-color-one);
}
.slick-arrow.slick-prev:focus:before {
    color: var(--thm-color-one);
}

.slick-arrow.slick-next:hover {
    border: 2px solid var(--thm-color-one);
    background-color: transparent;
    color: var(--thm-color-one) !important;
}
.slick-arrow.slick-next:hover:before {
    color: var(--thm-color-one);
}
.slick-arrow.slick-next:focus {
    border: 2px solid var(--thm-color-one);
    background-color: #fff;
    color: var(--thm-color-one);
}
.slick-arrow.slick-next:focus:before {
    color: var(--thm-color-one);
}

.testimonial-sliderc .slick-prev.slick-arrow {
    border: none;
    font-size: 0;
    display: none;
}
.testimonial-sliderc .slick-next.slick-arrow {
    border: none;
    font-size: 0;
    display: none;
}

/*Slick Dots*/

.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.slick-dots li {
    padding: 0;
    line-height: 0;
}

.slick-dots li button {
    font-size: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #C7C7C7;
    margin: 0 3px;
    transition: 0.6s all;
    border: 0px solid #C7C7C7;
}

.slick-dots li.slick-active button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--thm-color-one);
    border: 0px solid var(--thm-color-one);
    position: relative;
}

.slick-dots li.slick-active button:before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid var(--thm-color-one);
    position: absolute;
    top: -5px;
    left: -5px;
    opacity: 0;
}

/*pagination*/
.pagination {
    justify-content: center;
    margin-top: 20px;
    /* margin-bottom: 15px; */
    border-radius: 0;
    flex-wrap: wrap;
}

.pagination .page-item {
    margin: 0px 7px 15px;
}

.post_details .post_navigation .nav_item, .pagination .page-item .page-link {
    border: 1px solid ;
    color: #333;
    border-radius: 5px;
    width: auto;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
}

.post_details .post_navigation .nav_item:hover,
.pagination .page-item .page-link.active,
.pagination .page-item.active .page-link,
.pagination .page-item:focus .page-link,
.pagination .page-item:hover .page-link {
    background-color: var(--thm-color-one);
    border: 1px solid var(--thm-color-one);
}

/* Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--thm-font);
    color: var(--thm-color-two);
    font-weight: 700;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: var(--thm-color-two);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 25px;
}
h1 {
    font-size: 40px;
}
h2 {
    font-size: 32px;
}
h3 {
    font-size: 28px;
    line-height: 1.2;
}
h4 {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 700;
}
h5 {
    font-size: 20px;
    line-height: 1.3;
}
h6 {
    font-size: 16px;
    line-height: 1.7;
}
p {
    margin-bottom: 25px;
    color: #838383;
    line-height: 1.6;
}
a {
    /* color: var(--thm-color-three); */
    transition: .3s all;
    display: inline-block;
    text-decoration: none;
}

a:hover,
a:focus {
    outline: none;
    box-shadow: none;
    text-decoration: none;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
a:hover,
a:focus {
    color: var(--thm-color-one);
    text-decoration: none;
}

/*Tables*/
table {
    margin-bottom: 30px;
}

table th {
    padding: 10px 10px;
    vertical-align: middle;
    background-color: #fefaea !important;
}

table th {
    color: #333;
    font-size: 16px;
    border: 1px solid var(--thm-border);
}

table {
    width: 100%;
    margin-bottom: 0px;
    /*text-align: center;*/
}

table td {
    border: 1px solid var(--thm-border);
}

table img {
    width: 40px;
    border-radius: 0;
}

.mb-xl-20 {
    margin-bottom: 20px;
}

.mb-xl-30 {
    margin-bottom: 30px;
}

.mb-xl-60 {
    margin-bottom: 60px;
}
.whislist-table {
    overflow: auto;
}
.order-title {
    color: #000;
}

/*Forms*/
.form-control:focus {
    box-shadow: none;
}

/*----subheader star----*/
.subheader {
    position: relative;
    background-image: url(../images/subheader.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
    height: 330px;
    display: flex;
    align-items: center;
}
.subheader:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #000;
    opacity: 0.5;
}
.subheader-title {
    text-align: center;
}
.subheader-title h1 {
    color: #fff;
    margin-bottom: 5px;
}
.breadcrumb {
    display: flex;
    list-style: none;
    justify-content: center;
}

.form-group input {
    width: 100%;
    padding: 10px 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: sans-serif;
    font-size: 16px;
}
.form-group select {
    width: 100%;
    padding: 10px 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: sans-serif;
    font-size: 16px;
    appearance: auto;
}
 input:focus {
    border-color: var(--thm-color-one);
}
.form-control:focus {
    border-color: var(--thm-color-one);
}
.form-group textarea {
    width: 100%;
    height: 181px;
    padding: 10px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: sans-serif;
    font-size: 16px;
}
 textarea:focus {
    border-color: var(--thm-color-one);
}

/*----------cart start----------*/
/*tbody tr td:hover {*/
/*    background-color: #f7f7f7;*/
/*}*/
tbody tr td {
    border: 0;
    transition: 0.5s all;
    padding: 10px 10px;
    color: #686868;
    font-size: 14px;
    white-space: nowrap;
    background: #f9f9f9;
}
tbody tr {
    border-bottom: 2px solid #eee;
    margin-bottom: 20px;
}
.table-responsive {
    border-radius: 20px;
    border: 2px solid #eee;
}
thead th {
    border: 0;
    white-space: nowrap;
}
tbody tr:last-child {
    border: none !important;
}
.dataTables_wrapper {
    position: relative;
    padding: 10px 10px;
}
.form_style label {
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--thm-white);
}

.form_style .form-control {
    background-color: transparent;
    border: none;
    padding: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--thm-color-one);
    border-radius: 0;
}

.form_style .form-control:focus {
    box-shadow: none;
    border: none;
    border-bottom: 2px solid var(--thm-color-one);
}

.form_style .form-control,
.form_style .form-control::placeholder {
    color: var(--thm-white);
    text-transform: uppercase;
    font-size: 22px;
    line-height: 1;
    height: auto;
    font-weight: 500;
}

.form_style.style_two .form-control,
.form_style.style_two .form-control::placeholder {
    color: var(--thm-body-color);
    text-transform: none;
    font-size: 16px;
    font-weight: 500;
}
.text-custom-black {
    color: #000;
}
/*Buttons*/
.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-color: transparent;
    border:  transparent;
    padding: 0;
    font-size: 1rem;
    line-height: 1.5;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn:focus {
    background: transparent;
    border: none;
    box-shadow: none;
    color: var(--thm-body-color);
}
.btn:hover {
    background-color: transparent;
}
.thm-btn:hover, .thm-btn:focus {
    color: #fff;
    background: #000;
    border-color: #000;
}
.thm-btn {
    color: #fff;
    background-color: var(--thm-color-one);
    border: 2px solid var(--thm-color-one);
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    padding: 5px 20px;
    transition: 0.5s all;
    /* font-weight: 600; */
    border-radius: 10px;
    text-align: center;
    justify-content: center;
    white-space: nowrap;
}
a.thm-btn.btn-light {
    background: #fff;
    color: #000;
    border-color: #fff;
}
.menu-item a.thm-btn {
    padding: 5px 25px;
}
.thm-btn .button_title {
    display: inline-block;
    overflow: hidden;
}

.thm-btn .btn_letters {
    display: inline-block;
    line-height: 1em;
}

.thm-btn.btn-border {
    background-color: var(--thm-white);
}
.thm-btn i {
    font-size: 14px;
    line-height: normal;
    margin-left: 0px;
}

.thm-btn.btn-rounded {
    border-radius: 50px;
}

.thm-btn.btn-rectangle {
    border-radius: 8px;
}

.thm-btn.btn-small {
    padding: 6px 42px;
}

/*Colors*/
.thm-color-one {
    color: var(--thm-color-one);
}

.thm-color-two {
    color: var(--thm-color-two);
}

.thm-color-three {
    color: var(--thm-color-three);
}

.thm-color-four {
    color: var(--thm-color-four);
}

.thm-bg-color-one {
    background-color: var(--thm-color-one);
}

.thm-bg-color-two {
    background-color: var(--thm-color-two);
}

.thm-bg-color-three {
    background-color: var(--thm-color-three);
}

.thm-bg-light {
    background-color: var(--thm-color-light);
}

.thm-bg-color-four {
    background-color: var(--thm-color-four);
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

/*Preloader*/
.preloader {
    background-color: var(--thm-color-one);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}
/*---------------------------------------*/
/*------header start------*/
.active {
    color: var(--thm-color-one) !important;
}
.header-logo {
    padding: 10px 0;
}

.menu-top-bar {
    display: flex;
    align-items: center;
    justify-content: end;
}
.menu-icon {
    display: flex;
    justify-content: end;
    align-items: center;
}
.btn.btn-primary {
    width: 50px;
    height: 35px;
    /* margin-right: 20px; */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s all;
}

.btn.btn-primary i {
    transition: 0.5s all;
}

.btn.btn-primary i:hover {
    color: var(--thm-color-one);
}

/*------header end------*/

.main-menu {
    display: flex;
    align-items: center;
    gap: 10px;
}
.menu-item a.thm-btn {
    padding: 5px 25px;
    color: #fff;
}
.menu-item a.thm-btn:hover:before {
    width: 0;
}
.menu-item a.thm-btn:hover {
   background: #9661DB1A;
    border-color: #9661DB1A;
    color: #000 !important;
}
.menu-item a {
    color: #000;
    padding: 17px 10px;
    font-size: 17px;
    font-weight: 600;
    position: relative;
}
.menu-item a:before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    width: 0%;
    background: var(--thm-color-one);
    height: 2px;
    transition:0.5s all;
}
.menu-item a:hover:before {
    width: 100%;
   
}
.logo img {
    width: 100px;
}
a.ft-logo img {
    width: 135px;
}
.header.sticky {
    animation-name: fadeHeaderInDown;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0;
    z-index: 22 !important;
    background: #fff;
    animation-duration: 1s;
    box-shadow: 0 0 8px rgb(0 0 0 / 10%);
    animation-fill-mode: both;
}
.navigaation-warpper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .menu-item a:hover {
    color: #facc15 !important;
}
/*-----navigation start-----*/
.header .navigation .menu-item-has-children {
    position: relative;
}
.header .navigation .menu-item-has-children>a:after {
    content: "\f078";
    font-family: var(--thm-icon-font);
    margin-left: 10px;
}
.header .navigation .menu-item-has-children .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    transition: 0.5s all;
    width: 215px;
    visibility: hidden;
    opacity: 0;
    background-color: var(--thm-color-one);
}
.header .navigation .menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    z-index: 11;
}
.header .navigation .menu-item-has-children .sub-menu .menu-item a {
    padding: 0;
    width: 100%;
    padding: 10px 10px;
    border-bottom: 1px solid;
    transition: 0.5s all;
    background-color: var(--thm-color-one);
}
.header .navigation .menu-item-has-children .sub-menu .menu-item:hover a {
    background-color: #000;
}
.header .navigation .menu-item-has-children .sub-menu .menu-item>a {
    color: var(--thm-white);
    display: flex;
}
.header .navigation .menu-item-has-children .sub-menu .menu-item:hover {
    background-color: var(--thm-color-two);
    color: var(--thm-white);
}
.header .navigation .menu-item-has-children .sub-menu .menu-item-has-children>a:after {
    position: absolute;
    right: 15px;
    transform: rotate(-90deg);
}
.header .navigation .menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu {
    left: 100%;
    top: 52px;
}
.header .header_action {
    margin-left: 15px;
}
.header.sticky .navigation .menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu {
    left: -100%;
    top: 52px;
}
/*-----hamburger start------*/
.hamburger {
  display: none;
}
.hamburger-btn span{
    background: #fff;
    margin-bottom: 5px;
    display: flex;
    position: relative;
    width: 25px;
    height: 2px;
    transition: 0.5s all;
}
.hamburger-btn span:last-child {
    margin-bottom: 0;
}
.hamburger-btn.active span:first-child {
    transform: rotate(45deg);
    top: 4px;
}
.hamburger-btn.active span:nth-child(2) {
    display: none;
}
.hamburger-btn.active span:last-child {
    transform: rotate(-45deg);
    top: -3px;
}
/*-----hamburger end------*/
/*--------banner start------*/
.header {
    background: #fff;
    position: relative;
    z-index: 99;
    /* box-shadow: 0 4px 16px -22px #61616114; */
    padding: 10px 0;
    border-bottom: 1px solid #f2f2f2;
}
@keyframes marquee {
    0%   { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
  }

.animate-marquee {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
}
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    background-color: #facc15;
    padding: 16px 0;
    border-top: 1px solid #fff;
}

.marquee-text {
  color: var(--thm-color-one); 
  font-size: 30px; 
  font-weight: 500; 
  margin: 0 2.5rem; 
}
.banner-title h1 {
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: 600;
}
.banner-title {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-right: 75px;
}
.banner-title .thm-btn {
    width: fit-content;
}


.banner-slider .slick-dots {
    position: absolute;
    right: 9%;
    bottom: 0;
}
.banner-slider .slick-dots li button {
    background-color: #fff;
    width: 15px;
    height: 15px;
}
.banner-slider .slick-dots li.slick-active button {
    background-color: var(--thm-color-one);
    width: 15px;
    height: 15px;
}
.banner-slider .slick-dots li.slick-active button:before {
    width: 25px;
    height: 25px;
    opacity: 0;
}
.btn-sm {
    padding: 4px 16px;
    font-size: 14px;
}
/*--------banner end------*/
.sectiontext-color {
    color: #344C36;
}
.banner-text {
    padding: 20px;
}
/*--------footer start-----*/
.footer {
    /* padding-bottom: 30px; */
    background-image: url(../images/footer-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding-top: 60px;
    /* min-height: 608px; */
}
.ft-bottom img {
    width: 100%;
}
.follow-icon i {
    color: #fff;
    transition: 0.5s all;
    cursor: pointer;
    z-index: 1;
    font-size: 16px;
}
.follow-icon i:hover {
    color: var(--thm-color-one);
}
.ft-left h3 {
    font-size: 24px;
    color: #404040;
    margin-bottom: 10px;
}
.ft-left p {
    color: #1C1C1C;
    text-align: justify;
    margin-bottom: 10px;
}
.ft-list li {
    line-height: 1.3;
    padding-bottom: 15px;
    font-size: 16px;
    color: #000;
}
ul.ft-list p {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}
.ft-title p {
    color: #000;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
    /* border-bottom: 1px solid; */
    /* display: inline-block; */
}
.ft-item li:hover {
    color: var(--thm-color-one);
}
.ft-item li {
    transition: 0.5s all;
    cursor: pointer;
    font-weight: 500;
    color: #b7b7b7;
}
.custom-flex {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}
.ft-title {
    margin-bottom: 20px;
    padding-top: 75px;
}
.ft-title.pl {
    padding-left: 50px;
}
.ft-gallery img {
    width: 100%;
}
.ft-gallery img:hover {
    transform: scale(1.2);
}
.ft-gallery {
     margin-bottom: 15px;
    overflow: hidden;
    transition: 0.5s all;
    position: relative;
}

/*--------footer end-----*/

/*back to top*/
#back-top {
    text-align: center;
    display: none;
}
#back-top a {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    text-align: center;
    line-height: 40px;
    border: var(--thm-color-one) solid 1px;
    color: #ffffff;
     background: var(--thm-color-one);
    transition-duration: 0.3s;
    font-size: 22px;
    box-shadow: rgba(0, 0, 0, 0.05) 0 0 10px;
    position: fixed;
    z-index: 100;
    bottom: 20px;
    right: 20px;
    transition: 0.5s all;
}

#back-top a:hover {
    background: #fff;
    color: var(--thm-color-one);
    /* transform: rotate(360deg); */
}

.copyright p {
    margin-bottom: 0;
    text-align: center;
    color: var(--thm-color-one);
    font-size: 15px;
    font-weight: 600;
}
.copyright {
    align-items: end;
    justify-content: end;
    display: flex;
}
.banner-title p {
    margin-bottom: 15px;
    font-size: 20px;
    color: #101010;
}

/* style.css */
.ft-list li a {
    color: #1C1C1C;
    font-size: 16px;
}
.ft-list li a:hover {
    color: var(--thm-color-one);
}

.banner-slider .slick-arrow {
    background: #fff;
    color: var(--thm-color-one);
    border-radius: 0;
    border-color: #fff;
    width: 40px;
    height: 40px;
}
.banner-slider .slick-next.slick-arrow {
    top: 48%;
    right: 25px;
}
.banner-slider .slick-prev.slick-arrow {
    top: 48%;
    left: 25px;
}
.banner-slider .slick-arrow:before {
    font-size: 17px;
}
/* Scrolling animation */
@keyframes scroll {
  0% {
    transform: translateX(100%);
  }

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

.section-heading {
    text-align: center;
    color: #1D3231;
}
.section-heading h2 {
    color: #1D3231;
    margin-bottom: 14px;
}
.section-heading p {
    color: #525B5A;
}
.color-one {
    color: var(--thm-color-one);
}
.ft-social-icon li a {
    transition: 0.5s all;
    font-size: 22px;
    color: var(--thm-color-one);
}
.ft-social-icon {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--thm-color-one);
}
.ft-social-icon li:hover a {
    color: #000;
}
.breadcrumb li {
    margin: 0 5px;
}

.breadcrumb li a {
    text-decoration: none;
    color: #fff;
}

.breadcrumb li a:hover {
    text-decoration: underline;
    color: #07726b;
}

.breadcrumb li::after {
    content: ">";
    margin-left: 5px;
    color: #fff;
}

.breadcrumb li:last-child::after {
    content: "";
}

.breadcrumb li:last-child a {
    color: #fff;
    pointer-events: none;
    cursor: default;
}

/* --------------inner page css------------------------------- */
.section-hedding h2 {
    color: var(--thm-color-one);
    font-weight: 500;
    font-style: italic;
}

.card-service p {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    width: 100%;
    display: -webkit-box;
    overflow: hidden;
}
::selection {
    background: var(--thm-color-one);
    color: #fff;
}
.contact-section {
    background: var(--thm-color-one);
}
.contact-form h2 {
    margin-bottom: 46px;
}


.textarea-btn {
    position: relative;
     transform: 0.5s all;
}
.textarea-btn .btn-submit {
    position: absolute;
    right: 12px;
    bottom: 0;
    background: #FFC317;
    color: #273B7A;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 600;
    outline: 5px solid #273B7A;
    transform: 0.5s all;
}
.textarea-btn .btn-submit:hover {
    background-color: #273B7A;
    color: #fff;
}

/* ------------------css inner page------------------------------------ */
.handle-preloader {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -ms-flexbox;
  height: 100%;
  justify-content: center;
  -webkit-justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}

.preloader-close{
  position: fixed;
  z-index: 99999999;
  font-size: 26px;
  background: #fff;
  width: 40px;
  height: 40px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  right: 30px;
  top: 30px;
}

.handle-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}

.handle-preloader .animation-preloader .spinner{
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  height: 150px;
  margin: 0 auto 45px auto;
  width: 150px;
}

.handle-preloader .animation-preloader .txt-loading {
  text-align: center;
  user-select: none;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before{
  animation: letters-loading 4s infinite;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  top:0;
  position: absolute;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading{
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  letter-spacing: 15px;
  display: inline-block;
  position: relative;
  font-size: 70px;
  line-height: 70px;
  text-transform: uppercase;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {animation-delay: 0.2s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {animation-delay: 0.4s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {animation-delay: 0.6s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {animation-delay: 0.8s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before { animation-delay: 1s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before { animation-delay: 1.2s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before { animation-delay: 1.4s;}
.handle-preloader .loader-section {
  background-color: #ffffff;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}

.preloader .loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading{
  color: #ffffff;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before{
  color: #ffffff;
}

.handle-preloader .animation-preloader .spinner{
  border: 3px solid #ffffff;
  border-top-color: rgba(255, 255, 255, 0.5); 
}

/* AnimaciÃ³n del preloader */
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@media screen and (max-width: 767px) {
  .handle-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }
  .profile-right {
    text-align: left !important;
}
.profile-header {
    padding: 9px !important;
}
}
@media screen and (max-width: 500px) {
  .handle-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }
  .handle-preloader .animation-preloader .txt-loading .letters-loading {font-size: 40px; letter-spacing: 10px;}
}

.copyright p a {
    color: var(--thm-color-one);
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.close-btn::after {
  content: "×";
  font-size: 24px;
  color: black;
  position: absolute;
  top: 0;
  right: 0;
}
 /* Popup modal styles */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    width: 500px;
    text-align: center;
    position: relative;
}

.popup-content button.close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
}
.contact-popup .form-group {
    position: relative;
    margin-bottom: 6px;
}

.arrow {
    transition: transform 0.3s ease;
    font-size: 34px;
    line-height: 0;
}

/* Rotate arrow when dropdown is active */
.arrow.rotate {
    transform: rotate(180deg);
   
}

/* The Modal (background) */
   
    #myModal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

    /* Close button */
    .close {
      position: absolute;
      right: 15px;
      top: 10px;
      font-size: 24px;
      font-weight: bold;
      color: #333;
      cursor: pointer;
    }
    
/* ----------------------------new section css start------------------------------------------------------ */

.about-section {
    background-image: url(../images/about-bg.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    z-index: 0;
    width: 100%;
    height: 850px;
    padding-top: 111px;
    /* background: #fefaea; */
}
.about-text p {
    text-align: justify;
    color: #525560;
}
.about-text p {
    text-align: justify;
    color: #525560;
    font-size: 16px;
    margin-bottom: 7px;
}
.about-image {
    position: relative;
    text-align: right;
}
.about-right1 {
    position: absolute;
    right: 44%;
    bottom: -50%;
}
.about-vector {
    position: absolute;
    bottom: -50%;
    /* left: 0; */
    right: 10%;
    z-index: -1;
}
.mission-box {
    display: flex;
    gap: 15px;
    padding-right: 75px;
}
.mission-image {
    width: 25%;
}
.mission-text h3 {
    text-decoration: underline;
}
.color1 {
    color: #B393C4;
}
.color2 {
    color: #F1C673;
}
.color3 {
    color: #51C777;
}
.color4 {
    color: #96CECA;
}
.color5 {
    color: #D979AB;
}
.color6 {
    color: #DAB19B;
}
.bg-section {
    background: #fefaea;
    padding: 45px;
    border-radius: 20px;
}
.bg-color1 {
    background-color: #B393C4;
}
.bg-color2 {
    background-color: #F1C673;
}
.bg-color3 {
    background-color: #51C777;
}
.bg-color4 {
    background-color: #96CECA;
}
.bg-section .form-group .form-control {
    width: 100%;
    padding: 10px 10px;
    margin-bottom: 10px;
    border: 1px solid #B6B6B6;
    border-radius: 5px;
    font-family: sans-serif;
    font-size: 16px;
    background: #F1F4FF00;
}
.bg-section .form-group label {
    color: #000;
    text-align: left;
    display: block;
}

.mission-image img {
    transition: 0.5s all;
}
.mission-box:hover .mission-image img {
    transform: rotate(360deg);
}
.about-image img {
    opacity: 0.7;
}
.rules-text li {
    font-size: 15px;
    padding-bottom: 8px;
    color: #000;
    border: 1px solid #fefaea;
    padding: 10px 14px;
    margin-bottom: 16px;
    border-radius: 10px;
    background: #fefaea;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
    display: flex;
    align-items: baseline;
}
.rules-text li i {
    color: var(--thm-color-one);
    margin-right: 7px;
}
.bg-sec {
     /*background-image: url(..//images/bg-1.jpg);*/
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.login-section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
   
}
.rule-title {
    font-size: 33px;
    color: #000;
}
.about-secound {
    height: 800px;
}
.about-text.pl-5 {
    padding-left: 35px;
}

/*.contact-info {*/
/*  padding: 40px;*/
/*  background: var(--thm-color-one);*/
/*  color: #fff;*/
/*}*/

.contact-info h2 {
  margin-bottom: 20px;
}
.contact-info p {
  margin-bottom: 0px;
}
.info-item i {
  font-size: 18px;
  margin-right: 10px;
  /*color: #fff;*/
}
.info-box i {
    width: 40px;
    height: 40px;
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s all;
    background: var(--thm-color-one);
}
.info-item span {
    color: #000;
    font-size: 20px;
}
.info-box i:hover {
    background: #000;
}
.info-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 22px;
}
.contact-form {
    padding: 40px;
    background: #fefaea;
}

.contact-form h2 {
  margin-bottom: 20px;
}
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.form-row .form-control {
  flex: 1;
  margin-bottom: 0;
}
.contact-map iframe {
    width: 100%;
}
.info-item {
    width: 80%;
}
label.form-category {
    display: flex !important;
    /* justify-content: left; */
    align-items: center;
    width: fit-content;
    gap: 6px;
}
label.form-category input {
    margin-bottom: 0;
}


.tabs {
    display: flex;
    /* border-radius: 999px; */
    /* background-color: #fdf0d6; */
    /* padding: 5px; */
    margin-bottom: 20px;
    gap: 20px;
    justify-content: center;
    /* width: fit-content; */
    /* margin: auto; */
    margin-bottom: 45px;
}
.tab-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 25%;
    text-align: left;
    background: #fefaea;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    min-height: 222px;
    position: relative;
    height: fit-content;
}
.tab {
    padding: 8px 18px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    background: #efe7de;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}
.tab-buttons .tab:hover {
    background: var(--thm-color-one);
}
.tab.active {
    background-color: var(--thm-color-one);
    color: #000 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.tab-content {
    /*box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);*/
    display: none;
    width: 100%;
    /* padding: 30px 15px; */
     border-radius: 20px; 
    /* background: #6060F6; */
    transition: all 0.3s ease;
    /* border: 2px solid #FCC537; */
}
.tab-content.active {
  display: block;
}
.member-table {
    background: #fff;
}
  .profile-view, .edit-form {
      display: none;
    }
.edit-form.active {
    display: block;
}
.profile-view.active {
    display: block;
}
    .profile-item {
    color: #000;
    margin-bottom: 10px;
}
.profile-item {
    display: flex;
    align-items: center;
    gap: 20px;
}
.profile-item .label {
    width: 100px;
    display: flex;
    position: relative;
    columns: 2;
}
.user-image img {
    /*margin-bottom: 20px;*/
    width: 90px;
    border-radius: 50%;
}.user-image i {
    font-size: 90px;
    margin-bottom: 20px;
}
.profile-card {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.thm-btn.edit-btn {
    padding: 2px 8px;
    display: flex;
    gap: 7px;
    align-items: center;
    font-size: 16px;
}
.form-group label {
    color: #000;
}
.tab a {
    color: #000;
}
.tab {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    color: #000;
}
.tab:hover {
    color: #000;
}
.pro-header {
    background: #fff;
    padding: 20px 32px;
    border-radius: 15px;
    margin-bottom: 24px;
}
.user-image {
    position: relative;
}
.user-image i {
    position: absolute;
    font-size: 17px;
    bottom: 0;
    right: 0;
    background: #fff;
    padding: 9px;
    border-radius: 50%;
    margin-bottom: 0;
}
.profile-details h3 {
    margin-bottom: 4px;
    font-size: 18px;
}
.profile-details p {
    margin-bottom: 0;
    font-size: 14px;
}
.informa-list {
    columns: 3;
}
ul.informa-list li label {
    color: #918c8c;
    margin-bottom: 0;
    font-size: 15px;
}
ul.informa-list li h6 {
    font-weight: 500;
    margin-bottom: 10px;
}
.profile-photo img {
    border-radius: 50%;
    margin-bottom: 25px;
    background: #ebebeb;
    padding: 1px;
}
.top-header {
    padding: 15px 0;
    background: #f5f0fc;
    
}
.top-icon-contact {
    display: flex;
    align-items: center;
    gap: 22px;
}
.top-icon-contact a {
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.5s all;
}
.top-icon-contact a:hover {
     color: var(--thm-color-one);
}
.dark-mode {
  background-color: black;
  color: white !important;
}

.counter-box:before {
    position: absolute;
    content: '';
    top: 55%;
    left: 0;
    right: 0;
    background: #f5f0fc;
    width: 100%;
    height: 100%;
    border-radius: 50% 50% 0 0;
    z-index: -1;
    opacity: 0.5;
}
.counter-box h2 {
  font-size: 45px;
  color: #333;
  margin: 0;
}
.count-item h4 {
    font-size: 19px;
}
.count-item {
    border: 1px solid #ccc;
    padding: 42px;
    border-radius: 20px;
    background: #f4f4f485;
}
.counter-box {
    background: #d1b6f7fc;
    padding: 30px 60px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    /* display: flex; */
    justify-content: space-around;
    align-items: center;
    height: 235px;
    position: relative;
    z-index: 0;
    overflow: hidden;
    /* columns: 2; */
}


.card-member {
    padding: 35px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.card-member {
    padding: 35px;
}
.card-image {
    margin-bottom: 10px;
}
.card-image img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
}
.card-right-details {
    text-align: end;
    display: flex;
    justify-content: space-between;
    height: 100%;
    flex-direction: column;
}
.card-qr-image img {
    width: 120px;
    margin-bottom: 23px;
}
.card-qr-image {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
}
.card-text-details {
    text-align: end;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 7px;
    width: 270px;
    margin: 0 auto;
    margin-right: 0;
}
.card-text-details ul {
    /*color: #fff;*/
    width: 300px;
}
.card-text-details ul li {
    display: flex;
    align-items: center;
    gap: 13px;
    padding-bottom: 4px;
    font-size: 18px;
    color: #000;
    white-space: nowrap;
}
span.item-headding-card {
    width: 60px;
    text-align: left;
}
.signature-box {
    padding-top: 16px;
}
.signature-image {
    width: 130px;
}
.ok-btn {
    background-color: #16a34a;
    color: white;
    padding: 6px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 15px;
    font-size: 14px;
    text-decoration: none;
    display: block;
    margin: auto;
    margin-right: 0;
}
.ok-btn:hover {
    background-color: #000;
    color: white;
}
.hero-text p {
    color: #fff;
}
.hero-text h1 {
    color: #fff;
}
.hero.overlay:before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
    z-index: -1;
}
.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    margin-bottom: 0;
    height: 555px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.hero-text .subtitle {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.hero-text h1 {
  font-size: 34px;
  font-weight: bold;
  margin: 0 0 20px;
}

.hero-text .description {
  font-size: 16px;
  max-width: 600px;
  margin-bottom: 30px;
}

.hero .btn {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.hero .btn:hover {
  background: #ddd;
}
.feature-card {
    padding: 34px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    min-height: 255px;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card .subtitle {
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.hero-text .thm-btn:hover {
    background: #000;
    color: #fff;
}
.feature-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.feature-card p {
    color: #000;
    margin-bottom: 0;
}
.feature-grid {
    position: relative;
    top: -75px;
    z-index: 9;
}
.profile-card {
      max-width: 800px;
      margin: 50px auto;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      padding: 30px;
    }
   .profile-section {
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 10px;
    background: #ebebeb;
    padding: 15px 0;
    border-radius: 10px;
}
    .profile-label {
      color: #6c757d;
      font-size: 0.85rem;
    }
.profile-value {
    font-weight: 500;
    font-size: 1rem;
    color: #000;
}
.login-section {
    background-image: url(../images/footer-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}
img.image-fit.login-logo {
    width:150px;
}
.counter-box.member-box .count-item {
    padding: 10px 0;
}
.counter-box.member-box .count-item h2 {
    font-size: 28px;
}
.counter-box.member-box .count-item h4 {
    font-size: 16px;
}
.counter-box.member-box {
    height: auto;
}

.modal-content {
    background-color: #fff;
    margin: 0% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 100%;
    max-width: 750px;
    border-radius: 8px;
    position: relative;
    height: 474px;
}


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

.forget-text:hover {
    color: #000;
}
div#forgetModal {
    display: none;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
}
.forgetModal .modal-content {
    max-height: 305px;
}
.form-group.otp-field {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.otp-option {
  width: 50px !important;
  height: 50px;
  text-align: center;
  font-size: 25px !important;
  border: 1px solid #ccc;
  border-radius: 8px;
}
.sahyog-item tr td {
    color: #222;
    border-top: 1px solid;
    border-right: 1px solid;
}
.sahyog-item tr td:nth-child(1) {
    border-left: 1px solid;
}
.sahyog-item tr th:nth-child(1) {
    border-left: 1px solid;
}
.sahyog-item tr:last-child td {
    border-bottom: 1px solid;
}
.sahyog-item tr th {
    border-top: 1px solid;
    border-right: 1px solid;
}
.sahyog-item tr td a {
    color: #000;
}
.sahyog-item tr td a:hover {
    color: var(--thm-color-one);
}
.rule-hero-image img {
    border-radius: 20px;
    height: 550px;
}
.popup .modal-content {
    height: 555px;
    background: #f1f0f5;
    border: 2px solid #fbb03b;
    /* padding: 25px; */
    z-index: 0;
}
.popup .profile-photo {
    padding: 4px;
}
.profile-box {
    background: #f5f0fc;
    border-radius: 16px;
    width: 100%;
    padding: 10px;
}
.popup .form-group label {
    font-size: 19px;
}
.benefi-image-box {
    position: relative;
}
.modal-header {
    justify-content: left;
    text-transform: uppercase;
}
.beneficiary-top img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    padding: 4px;
}
.beneficiary-top {
    display: flex;
    align-items: center;
    gap: 15px;
    /*background: #fff;*/
    padding: 15px 9px;
    border-radius: 10px;
    flex-wrap: wrap;
}
.contribution-main {
    border: 2px solid #fff;
    padding: 20px;
    outline: 2px solid orange;
    border-radius: 10px;
}
.popup .close {
    position: absolute;
    right: 8px;
    top: 8px;
    font-size: 26px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    background: #000;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.5s all;
}
.popup .close:hover {
     color: #000;
    background: #fff;
}
.popup .modal-content:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/bg2.jpg);
    background-position: center;
    background-size: cover;
    z-index: -1;
    border-radius: 10px;
}

ul.Beneficiary-content {
    font-size: 14px;
    list-style: disc;
    padding-left: 25px;
}

/*.modal-header {*/
/*    background: #c2ede5;*/
/*    padding: 10px 25px;*/
/*    border-radius: 10px;*/
/*}*/
.profile-container {
     background: #fff;
      border-radius: 16px;
      width: 100%;
    }

    /* Header Layout */
.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
     flex-wrap: wrap; 
    gap: 20px;
    padding: 20px;
}

   .profile-left {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #fff;
    padding: 0px;
    border-radius: 15px;
    /* width: 60%; */
    flex-wrap: wrap;
}

  .profile-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #6b7280;
    font-size: 14px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    padding: 4px;
}

    .profile-info p {
      margin: 6px 0;
      font-size: 15px;
    }

    .profile-info strong {
      color: #1f2937;
    }

    .profile-right {
    text-align: right;
    /*width: 100%;*/
}

    .total-contribution {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 12px;
    }
 .profile-info p {
    margin: 4px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 95px;
    padding: 7px 16px;
    background: #f5f0fc;
    border-left: 2px solid #fbb03b;
    border-radius: 30px;
    margin-bottom: 10px;
    color: #000;
}

    .total-contribution {
      font-size: 16px;
      font-weight: bold;
      margin-bottom: 10px;
    }
    .profile-info strong {
    color: #000;
}
  .table-wrapper {
      background: #ffffff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
.product-purches-donat-sec {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}
.nutra-logo {
    width: 200px;
    height: 85px;
    margin-bottom: 20px;
    background: #fff;
    padding: 5px;
    border-radius: 10px;
    backdrop-filter: blur(15px); /* blur background behind it */
}
.vector-one {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

/*------new css payment start-------*/
.success-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    position: relative;
}
  .success-icon {
    font-size: 60px;
    color: #28a745;
    margin-bottom: 15px;
    border: 1px solid;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 20px;
}
    .transaction-id {
      font-size: 14px;
      color: #6c757d;
      margin-bottom: 20px;
    }
    .success-icon {
    font-size: 60px;
    color: #28a745;
    margin-bottom: 15px;
    border: 1px solid;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 20px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: 0.5s all;
}
.success-card:hover  .success-icon {
    transform: scale(1.3);
}
 .failed-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.1);
  }
.thm-btn.btn-danger.btn-home {
    background: #dc3545;
    border-color: #dc3545;
}


   





   
