.marquee {
    height: 50px;
    overflow: hidden;
    position: relative;
    /* background: #fefefe; */
    color: #333;
    /* border: 1px solid #4a4a4a; */
}

.marquee p {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    line-height: 50px;
    text-align: center;
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -moz-animation: scroll-left 2s linear infinite;
    -webkit-animation: scroll-left 2s linear infinite;
    animation: scroll-left 40s linear infinite;
    white-space:nowrap;

}

@-moz-keyframes scroll-left {
    0% {
        -moz-transform: translateX(100%);
    }
    100% {
        -moz-transform: translateX(-100%);
    }
}

@-webkit-keyframes scroll-left {
    0% {
        -webkit-transform: translateX(100%);
    }
    100% {
        -webkit-transform: translateX(-100%);
    }
}

@keyframes scroll-left {
    0% {
        -moz-transform: translateX(100%);
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    100% {
        -moz-transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

.btn-outline-thm {
	display: inline-block;
	vertical-align: middle;
	border: none;
	outline: none;
	color: #000000;
	font-size: 17px;
	font-weight: 600;
	background-color: #f8f9fa;
	padding: 13.5px 36.5px;
	text-align: center;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.btn-thm{
    background: #EB1757;
    color: #FFFFFF;
    outline: none;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;

}

.list-of-state > .btn-outline-thm:hover{
    background-color: #EB1757;
	color: #FFFFFF;
}

.list-of-state > .thm-btn:hover{
    background-color: #f8f9fa;
	color: var(--thm-black);
}


/* not active */
.nav-pills .pill-items .nav-link:not(.active) {
    background-color: #f8f9fa;
	color: var(--thm-black);
    border-radius: 10px;
    border: 0;
    font-size: 17px;
}

/* active */
.nav-pills .pill-items .nav-link {
    background-color: #EB1757;
    color: white;
    border-radius: 10px;
    border: 0;
    font-size: 17px;
}

/* focus */
.nav-pills .pill-items .nav-link:focus {
    outline: none !important;
}

.nav-pills .pill-nav-items.nav-link:not(.active) {
    background-color: #F9F9F9;
	color: var(--thm-black);
    /* border-radius: 10px; */
    border: 0;
    font-size: 17px;
}

.nav-pills .pill-nav-items.nav-link {
    background-color: #FDE8EE;
    color: #EB1757;
    font-weight: bold;
    /* border-radius: 10px; */
    border: 1px solid #EB1757;
    font-size: 17px;
}

/* focus */
.nav-pills .pill-nav-items.nav-link:focus {
    outline-color: #EB1757 !important;
    outline-style: solid;
    outline-width: 1px;
}


.category-title{
    font-size: 20px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 10px;
}


.contact-container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 0 16px;
}

.contact-card {
    background: #F9FAFB;
    border-radius: 10px;
    padding: 1rem;
    width: 100%; /* Set initial width for all screen sizes */
}

/* Media query for screens smaller than or equal to 576px (typically mobile devices) */
@media (max-width: 576px) {
    .contact-container {
        flex-direction: column;
    }
}

.table-striped tbody tr:nth-of-type(odd) {
    background: #EAECF0; /* Change this color to your desired striped color */
}


.butn:link,
.butn:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    background-color: #EB1757;
    background-image: linear-gradient(90deg, #EB1757, #EB1757);
    padding: 1rem 2.5rem;
    /* height: 1rem;
    width: 5rem; */

    margin-right: 13px;
    border-radius: 4px;
    border: none;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
}

.butn::before {
    background: #fff;
    content: "";
    height: 155px;
    opacity: 0;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    width: 50px;
    transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
}

.butn::after {
    background: #fff;
    content: "";
    height: 20rem;
    opacity: 0;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 8rem;
}

.butn__new::before {
    left: -50%;
}

.butn__new::after {
    left: -100%;
}

.butn:hover,
.butn:active {
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.3);
}

.butn__new:hover::before {
    left: 120%;
    opacity: 0.5s;
}

.butn__new:hover::after {
    left: 200%;
    opacity: 0.6;
}
.butn span {
    z-index: 20;
}

/* Social Media Button */
.social-media-container{
    margin-top: 40px!important;
}

.fb a, .fb:before, .fb { background: #3b5999; color: #3b5999; }
.wa a, .wa:before, .wa { background: #25d366; color: #25d366; }
.in a, .in:before, .in { background: #e4405f; color: #e4405f; }
.tw a, .tw:before, .tw { background: #55acee; color: #55acee; }
.gh a, .gh:before, .gh { background: #333333; color: #333333; }


ul#buttons {
	padding: 0;
	margin: 0;
	/* position: absolute; */
	top: 50%;
	/* left: 50%; */
	/* transform: translate(-50%,-50%); */
	list-style: none;
	display: grid;
	grid-template-columns: repeat(4,1fr);
	grid-gap: 0px;
}


ul#buttons li {
	width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	box-sizing: border-box;
	background: transparent;
	border-radius: 12px;
	position: relative;
	overflow: hidden;
	transition: .5s;
	/* box-shadow: 0px 8px 16px -6px,effect */
				/* 0px 0px 16px -6px; */
}

ul#buttons li a {
	display: block;
	widows: 100%;
	height: 100%;
	font-size: 1.25em;
	background: transparent;
	transition: .5s;
	animation: icon-out .5s forwards;
	animation-timing-function: cubic-bezier(0.5, -0.6, 1, 1);
}

ul#buttons li:before {
	content: "";
	width: 90px;
	height: 90px;
	display: block;
	position: absolute;
	transform: rotate(-45deg) translate(-110%, -23px);
	z-index: -2;
	animation: back-out .5s forwards;
	animation-timing-function: cubic-bezier(0.5, -0.6, 1, 1);
}

ul#buttons li:hover a {
	animation: icon-in .5s forwards;
	animation-timing-function: cubic-bezier(0, 0, 0.4, 1.6);
}

ul#buttons li:hover:before {
	animation: back-in .5s forwards;
	animation-timing-function: cubic-bezier(0, 0, 0.4, 1.6);
}

@keyframes back-in {
    0% { transform: rotate(-45deg) translate(-110%, -23px); }
	80% { transform: rotate(-45deg) translate(5%, -23px); }
	100% { transform: rotate(-45deg) translate(0%, -23px); }
}

@keyframes back-out {
    0% { transform: rotate(-45deg) translate(0%, -23px); }
	20% { transform: rotate(-45deg) translate(5%, -23px); }
	100% { transform: rotate(-45deg) translate(-110%, -23px); }
}

@keyframes icon-in {
    0% { font-size: 1.25em; }
	80% { color: #fff; font-size: 1.5em; }
	100% { color: #fff; font-size: 1.35em; }
}

@keyframes icon-out {
	0% { color: #fff; font-size: 1.35em; }
	20% { color: #fff; font-size: 1.5em; }
	100% { font-size: 1.25em; }
}

@media (max-width: 768px) {
   .mobile-footer-col{
        max-width: 50%;
   }
}
