/*
Theme Name: Hire SDR 1
Author: Hire SDR 1
Description: A custom WordPress theme
Version: 1.00
*/

/*talent sliders*/
.profileCardCol.textMedium {
    height: 100%;
	background:#fff;
}
.profileCard {
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
}


div#ez-toc-container {
    border: none;
    box-shadow: none;
}
.ez-toc-counter nav ul li a::before {
    background: rgb(212, 222, 212);
    color: #171717;
    display: block;
    height: 32px;
    width: 32px;
    border-radius: 50%;
    text-align: center;
    margin: 0px 10px 10px 0;
    font-size: 1rem;
    padding: 5px;
}
.ez-toc-heading-level-3 a:before{
		display:none !important;
}
.ez-toc-heading-level-3 a{
	margin-left:20px;
	font-weight:normal !important;
}
.ez-toc-list-level-3{
	margin-bottom:20px !important;
}

/*pagination posts page */
.pagination-cont {
    text-align: center;
    margin-top: 40px;
}
.prev.page-numbers , .next.page-numbers {
    padding: 5px 10px;
    margin: 0 5px;
    border-radius: 5px;
    background-color: var(--color-primary-400);
    color: var(--color-primary);
}
span.page-numbers.current {
    color: var(--color-primary-400);
}
.page-numbers:not(.prev):not(.next) {
    margin: 0 3px;
}
a.page-numbers:not(.prev):not(.next):hover{
	color: var(--color-primary-400);
}

/*talents slider title animation*/
@media (max-width: 750px) {
	.c-width {
		max-width: 100%;
	}
	.c-width h2 {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 15px;
	}
	.text-rotator {
		min-width: 100%;
		text-align: center;
	}

}
@media (min-width: 750px) {
	.c-width {
		max-width: 580px;
	}
}
@media (min-width: 1024px) {
	.c-width {
		max-width: 700px;
	}
}
@media (min-width: 1535px) {
	.c-width {
		max-width: 960px;
	}
}


.text-rotator{
	position: relative;
	display: inline-block;
	min-width: 220px; 
}

.text-rotator > span{
	display: none;
	align-items: center;
	gap: 8px;
	opacity: 0;
	transform: scale(0.7);
	transition: all 0.4s ease;
}

.text-rotator > span.active{
	display:inline-flex;
	opacity: 1;
	transform: scale(1);
	visibility: visible;

	animation: popText 0.5s ease;
}

@keyframes popText {
	0% {
		opacity: 0;
		transform: scale(0.5);
	}
	70% {
		transform: scale(1.15);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}