:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #860006;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #f1f1f1;
    --gray-dark: #303f57;
    --primary: #c7cb36;
    --secondary: #95aac9;
    --success: #0c9;
    --info: #19b5fe;
    --warning: #f7bc06;
    --danger: #f2545b;
    --light: #f9fbfd;
    --dark: #001330;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: "Hind Vadodara", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*,
::after,
::before {
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    font-size: 16px;
    position: relative;
    overflow-x: hidden;
}

* {
    padding: 0;
    margin: 0;
}

img {
    border: none;
    outline: none;
    height: auto;
    max-width: 100%;
}

a,
a:active,
a:focus,
a:hover {
    outline: none !important;
    text-decoration: none;
    color: var(--red);
}

a {
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    color: #333;
}

a:hover {
    color: var(--red);
}

input:focus,
textarea:focus,
select:focus,
button:focus {
    outline: none !important;
    box-shadow: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #333;
    font-family: 'Poppins', sans-serif;
}

h1 {
    font-weight: 700;
    font-size: 36px;
    line-height: 46px;
    margin: 0 0 14px;
}

h2 {
    font-weight: 700;
    font-size: 30px;
    margin: 0 0 20px;
    line-height: 40px;
    text-transform: capitalize;
}

h3 {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0 15px;
}

h4 {
    font-size: 14px;
    color: #888;
    font-weight: 400;
    margin: 0 0 20px;
}

h5 {
    font-weight: 300;
    margin: 0 0 10px;
}

h6 {
    font-size: 14px;
    line-height: 18px;
    color: #999;
    font-weight: 400;
    margin: 0 0 10px;
}

p {
    font-size: 16px;
    line-height: 28px;
    margin: 0px;
}

.w-0 {
    width: 0px !important;
}

.btn-danger {
    color: #fff;
    background-color: var(--red);
    border-color: var(--red);
}

.bg-danger {
    background-color: var(--red) !important;
}

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

.text-danger {
    color: var(--red) !important;
}

.border-danger {
    border-color: var(--red) !important;
}

.rounded-right-pill {
    border-top-right-radius: 50rem !important;
    border-bottom-right-radius: 50rem !important;
}

.post-thumb {
    width: auto;
    height: auto;
    cursor: pointer;
    overflow: hidden;
}

.post-thumb img {
    transition: 2s linear;
}

.post-thumb:hover img {
    transform: scale(1.1);
}

.heading-title h2 {
    font-weight: 500;
}

/* Bounce To Right */
.btn-bounce-to-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    overflow: hidden;
}

.btn-bounce-to-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--red);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.btn-bounce-to-right:hover:before,
.btn-bounce-to-right:focus:before,
.btn-bounce-to-right:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* -- Header -- */

.top-head {
    border-bottom: 1px solid #001330;
}

.top-navbar {
    border-top: 1px solid #860006
}


#custom-search-input {
    margin: 0;
    padding: 0;
}

#custom-search-input .search-query {
    background: #f1f1f1;
}

#custom-search-input button {
    border: 0;
    background: none;
    /** belows styles are working good */
    padding: 2px 5px;
    position: relative;
    left: -28px;
    /* IE7-8 doesn't have border-radius, so don't indent the padding */
    color: #20304a;
}

.search-query:focus+button {
    z-index: 3;
}

.mainmenu ul li a.dropdown-toggle::after {
    display: none;
}

.navbar-light .navbar-nav .nav-link {
    color: #001330;
}

ul.navbar-nav {
    width: 75%
}

.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show>.nav-link {
    color: rgba(0, 0, 0, .9);
}

/*-- Trending -- */

.trending {
    background-color: var(--gray);
    padding: 20px;
}

.trending h3 {
    font-size: 16px;
    color: var(--red);
}

section {
    padding: 30px 0px;
}

.heading-title h2 {
    font-size: 22px;
    color: var(--red);
    font-weight: 500;
}

.section-title h3 {
    font-size: 22px;
    color: var(--dark);
    font-weight: 500;
}

.post-content .post-head {
    font-size: 17px;
    margin-bottom: 10px;
}

.post-content .post-title {
    line-height: 24px;
}

.post-date-info {
    color: var(--red);
}

.list-post-block .post-block-style {
    margin-bottom: 40px;
}

.post-listing li {
    position: relative;
    flex: 0 0 25%;
    max-width: 25%;
    padding-right: 15px;
    padding-left: 15px;

}

.post-listing li:before {
    content: "";
    height: 100%;
    width: 1px;
    background-color: var(--red);
    position: absolute;
    top: 0;
    right: 4%;
}

.post-listing li:last-child::before {
    width: 0;
}

.populer-topic {
    background-color: var(--gray);
}

.populer-topic h3 {
    color: var(--red);
}

.topic-buttons {
    display: flex;
    justify-content: space-evenly
}

.topic-buttons .btn-light {
    background-color: #fff;
    border: 1px solid #929292;
}

.topic-buttons .btn-light:hover {
    background-color: var(--red);
    color: #fff;
    border-color: var(--red);
}

.testimonial-sec {
    background-color: var(--gray);
}

.testimonial-box {
    display: flex;
    gap: 20px;
}

.testimonial-box p span {
    color: var(--red);
    font-size: 20px;
}

.testimonial-box .post-thumb {
    width: 40%;
}

.testimonial-box .post-content {
    width: 60%;
}

.testimonial-box .post-content p {
    font-size: 14px;
    line-height: 24px;
}

.testimonial-box .post-content .author-name {
    margin-top: 14px;
}

.testimonial-box .post-content .author-name h5 {
    color: var(--red);
    font-weight: 400;
    margin-bottom: 1px;
    font-size: 18px;
}

.testimonial-box .post-content .author-name span {
    font-size: 14px;
}

.trending-news-item {
    margin-bottom: 30px;
}

.become-contributer .text {
    max-width: 78%;
}

.popular-videos .video-box .post-thumb::before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: rgb(0 0 0 / 35%);
}

.popular-videos .video-box .text-sec {
    position: absolute;
    text-align: center;
    bottom: 5px;
    width: 100%;
    color: #fff;
    z-index: 99;
}

.popular-videos .video-box .text-sec span {}

.popular-videos .video-box .text-sec h4 {
    color: #fff;
    line-height: 26px;
    font-size: 20px;
    padding: 20px;
    font-weight: 400;
}

.event .event-box2 {
    position: relative;
}

.event .event-box2 img {
    width: 100%;
}

.event .event-box2 a {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 24px;
}

.event-box {
    background-image: url(../images/banner-add.png);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 250px;
    background-repeat: no-repeat;
}

.event-box .btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.modal.fade.modal-slide-right .modal-dialog {
    position: absolute;
    right: 0;
    max-width: 400px;
    height: 100%;
    margin: 0;
    -ms-transform: translate(100%, 0);
    transform: translate3d(100%, 0, 0);
}

.modal.fade.modal-slide-right.show .modal-dialog {
    transform: translate3d(0, 0, 0);
}

.modal.fade.modal-slide-right .modal-dialog .modal-content {
    height: 100%;
    width: 100%;
}

.modal.fade.modal-slide-right .modal-content {
    border-radius: 0;
}

.account-details {
    margin: 10px 0px;
}

.account-details li {}

.account-details li a {
    padding: .6rem .1rem;
    display: block;
    border-bottom: 1px solid var(--red);
    position: relative;
}

.account-details li a:before {
    content: "\f105";
    font-family: FontAwesome;
    position: absolute;
    right: 4px;

}

.account-details li:last-child a {
    border-bottom: 0;
}

.account-details li:last-child a:before {
    content: "";
}

.description h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 8px;
    ;
}

.description p {
    font-size: 14px;
    line-height: 24px;
}

.back-page i {
    font-size: 24px;
}

.post-details .post-content .post-head {
    font-size: 22px;
    line-height: 34px;
}

.post-details .desc p {
    font-size: 15px;
    margin-bottom: 12px;
}

.post-details .post-tags {
    padding-bottom: 50px;
    margin-top: 30px;
}

.post-details .post-tags ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.post-details .post-tags ul li {
    display: inline-block;
}

.post-details .post-tags ul li a {
    border: 1px solid #C2C5C7;
    display: inline-block;
    font-weight: 500;
    margin-right: 12px;
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem;
}

.post-details .post-tags ul li:hover a,
.post-details .post-tags ul li a.btn-outline-dark:hover {
    background-color: #e82a2d;
    border-color: #e82a2d;
    color: #fff;
}

.author-post {
    margin-top: 30px;
    border-top: 1px solid var(--red);
    border-bottom: 1px solid var(--dark);
    padding: 20px 0px;
}

.author-post .author-text h3 {
    margin-bottom: 8px;
}

.author-post .author-text p,
.author-post .author-text span {
    font-size: 15px;
}

.profile-details-form .btn {
    min-width: 150px;
}

/*--  Subscription --*/
.price-head {
    position: relative;
    z-index: 99;
    text-align: center;
    top: -32px;
}

.price-head h4 {
    display: inline;
    background: #860006;
    color: #fff;
    padding: 4px 12px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-size: 18px;
}

.subscription-plan {
    margin-top: 80px;
}

.pricingTable {
    background: #fff none repeat scroll 0 0;
    color: #232434;
    margin-top: 30px;
    padding: 40px 25px;
    -webkit-box-shadow: 0px 19px 43px 0px rgba(17, 17, 17, 0.05);
    perspective: 700px;
    position: relative;
    transition: all 0.3s ease-in-out 0s;
    z-index: 1;
    border: 1px solid #c9c8c8;
    border-radius: 20px;
}

.pricingTabletop {
    margin-top: -30px;
}

.pricingTable .pricingTable-header {}

.pricingTable .title {
    display: block;
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out 0s;
}

.pricingTable .price-month {
    font-size: 18px;
    font-weight: 500;
    margin-top: 5px;
    margin-bottom: 2px;
}


.pricingTable .price-value .value-bg {
    display: inline-block;
    color: #404040;
    font-weight: 500;
    font-size: 24px;
}

.pricingTable .pricing-content {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.pricing-content-border {}

.pricing-content-border>li {
    border: 1px solid #eee;
    margin-bottom: 10px;
}

.pricingTable .pricing-content li {
    line-height: 28px;
}

.btn-price-bg {
    background: #929292;
    border: 2px solid #929292;
    border-radius: 5000px;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    overflow: hidden;
    padding: 6px 40px;
    text-transform: capitalize;
    transition: all 0.3s ease 0s;
}

.pricingTable:hover .btn-price-bg {
    background: #232434;
    color: #fff;
    border: 2px solid #232434;
}

.subscrip-des .p-head {
    margin-bottom: 30px;
}

.subscrip-des p {
    margin-bottom: 12px;
}

.section-title {
    margin-bottom: 60px;
}

h1.section-title-white {
    color: #fff;
}

.section-title h1 {
    font-size: 44px;
    font-weight: 500;
    margin-top: 0;
    position: relative;
    text-transform: capitalize;
    margin-bottom: 15px;
}

p.section-title-white {
    color: #fff;
}

.section-title p {
    padding: 0 10px;
    width: 70%;
    margin: auto;
    letter-spacing: 1px;
}

.contribution-des p {
    margin-bottom: 12px;
}

.contribution-des p strong {
    font-weight: 600;
    text-decoration: underline;
    font-size: 12px;
}

.box-tab-head .nav {
    justify-content: center;
}

.box-tab-head .nav-pills .nav-item {
    background-color: #f1f1f1;
    padding: 4px;
}

.box-tab-head .nav-pills .nav-link {
    background: #fff;
}

.box-tab-head .nav-pills .nav-link.active {
    background-color: var(--dark);
}

.rounded-right-pill {
    border-top-right-radius: 50 rem !important;
    border-bottom-right-radius: 50rem !important;
}

.rounded-left-pill {
    border-top-left-radius: 50rem !important;
    border-bottom-left-radius: 50rem !important;
}

/*-- Drag and drop file upload --*/
.new-contribution-upload .files input {
    min-height: 240px;
}



.new-contribution-upload .files {
    position: relative;
    border: 2px dashed #fff;
}

.new-contribution-upload .color input {
    background-color: #f8f9fa;
    position: relative;
    z-index: 2;
}


.custom-file-upload {
    position: absolute;
    top: 36%;
    text-align: center;
    color: var(--red);
    width: 100%;
    font-size: 12px;
    font-weight: 600;
    height: 28px;
}

.contribution .files span {
    position: absolute;
    top: 50%;
    text-align: center;
    width: 100%;
    font-size: 17px;
    font-weight: 500;
    line-height: 24px;
}

.recent-tab-box {}

.recent-tab-box ul li {
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.recent-tab-box .icon {
    font-size: 18px;
}

.recent-tab-box li .text p {
    line-height: 20px;
    font-weight: 500;
}

.recent-tab-box {}

/*-- PAgination -- */
.page-link {
    color: #e82a2d;
}

.page-item.active .page-link {
    background-color: #e82a2d;
    border-color: #e82a2d;
}

.page-link:hover {
    color: #ffffff;
    background-color: #001330;
    border-color: #001330;
}

/* -- Carousel -- */
.pagi .swiper-pagination,
.pagi .swiper-pagination1 {
    position: relative;
    z-index: 2;
    margin-top: 26px;
    text-align: center;
}

.pagi .swiper-pagination-bullet {
    background: #FFF5E0;
    width: 20px;
    height: 4px;
    margin: 0 8px !important;
    border-radius: 0;
    opacity: 1;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.pagi .swiper-pagination-bullet.swiper-pagination-bullet-active {
    position: relative;
    margin: 0 4px !important;
    background: var(--red);
}

.pagi.style .swiper-pagination-bullet {
    background: rgba(254, 89, 85, 0.2);
}

.pagi.style .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--red);
    width: 26px;
}

.award-sec .pagi.style .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4);
}

#staticShare .close {
    position: absolute;
    top: -14px;
    right: -14px;
    background: #fff;
    width: 30px;
    height: 30px;
    opacity: 1;
    border-radius: 100%;
}

.social-icons {
    /* box-shadow: 0 2px 5px rgba(8,21,66,.06); */
}

.social-icons ul {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: space-around;
}

.social-icons li {
    text-align: center;
}

.social-icons li span {
    display: block;
    font-size: 11px;
}

.social-icons li i.fa {
    font-size: 18px;
    background: #000;
    color: #fff;
    width: 26px;
    height: 26px;
    line-height: 26px;
    border-radius: 100%;
}
.social-icons li i.fa.fa-whatsapp{background-color: #01a725;}
.social-icons li i.fa.fa-facebook{background-color: #3b5998;}
.social-icons li i.fa.fa-twitter{background-color: #35465c;}
.social-icons li i.fa.fa-envelope-o{background-color: #000;}
.social-icons li i.fa.fa-linkedin{background-color: #0077b5;}

.social-icons li a {}
#custom-search-input.share-url button{padding: .3788rem .75rem;
    left: -16px;
    background: #de1e30;    z-index: 99;
    border-top-left-radius: 0!important;
    border-bottom-left-radius: 0 !important;
    border: 1px solid #de1e30; color: #fff;}
/* -- Footer -- */

.footer {
    border-top: 1px solid var(--gray-dark);
    position: relative;
    padding: 50px 0px;
}

.footer::before {
    content: "";
    width: 100%;
    height: 1px;
    background: var(--red);
    position: absolute;
    top: 4px;
}

.footer .footer-widget ul.nav {}

.footer .footer-widget ul.nav li {
    line-height: 38px;
    width: 100%;
}

.footer .footer-widget ul.nav li a {
    color: var(--dark);
    font-weight: 500;
}

.footer .footer-widget ul.nav li:hover a {
    color: var(--red);
}

.footer .footer-widget ul.footer-social {
    display: flex;
    flex-wrap: wrap;
}

.footer .footer-widget ul.footer-social li {
    width: 50%;
    flex: 50%;
    font-size: 30px;
    line-height: 60px;
}

.footer .footer-widget ul.footer-social li a {
    color: var(--dark);
}

/* -- Custom Dynemic Css -- */
.tags ul li{position: relative;}
div#Foo {
    position: absolute;
    max-width: 100%;
    min-width: 270px;
    top: 32px;
    left: 50%; 
    transform: translateX(-50%);
    text-align: center;
    background: #fff;z-index: 9;
}
div#Foo::before{
    content: "";
position: absolute;
top: -7px;
left: 50%;
transform: translateX(-50%);
border-bottom: 8px solid #860006;
border-left: 8px solid transparent;
border-right: 8px solid transparent;
}
#Foo.collapse:not(.show) {
    display: none;
}
.post-details .desc .align-left {
  margin-right: 10px;
}
