:root{
	--iatools-primary: #42b9bb;
	--iatools-primary-active: #0bcf99;
	--iatools-primary-alt: #547cbb;
	--iatools-text: #01103a;
}
.iatools-cats { 
    display: grid;   
	gap: 16px;
    margin-bottom: 40px;
    grid-template-columns: repeat(auto-fill, minmax(calc(180px - 1em), 1fr));
}

.iatools-cats > a {
	text-align: center;
    padding: 5px 20px 8px;
    color: #505978;
    font-weight: 700;
    border: 2px solid var(--iatools-primary-alt);
    border-radius: 10px;
    font-size: 15px;
    line-height: 1;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.iatools-cats > a.current, .iatools-cats > a:hover{
	border-color: var(--iatools-primary-active) !important;
    color: var(--iatools-text) !important;
}

.iatools-post-container {
    grid-template-columns: repeat(auto-fill, minmax(calc(300px - 1em), 1fr));
    display: grid;
    gap: 1em;
    padding: 0;
    border: unset;
    list-style: unset;
    margin: 0;
    padding-bottom: 1em;
}

.iatools-post-container .iatools-post-item {
    font-size: 14px;
    box-shadow: 0 3px 9px 0 rgba(0, 0, 0, .25);
    padding: 12px;
    border-radius: 6px;
    color: var(--iatools-text);
}

.iatools-image-card img {
    transition: 0.3s all ease-out;
    border-radius: 10px;
    width: 100%;
    height: auto;
    position: absolute;
}
.iatools-post-container .iatools-post-item:hover .iatools-image-card img {
    transform: scale(1.2);
}
.iatools-image-card {
    border-radius: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
    display: flex;
    position: relative;
    overflow: hidden;
    max-height: 180px;
    min-height: 180px;
}

.iatools-post-content-wrapper {
    color: var(--iatools-text);
}
.title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.title-wrapper h3 {
    margin: 0;
    color: var(--iatools-text);
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
}
.iatools-post-wrapper svg {
	max-height: 100%;
	
	&:not(:root) {
		overflow: hidden;
	}
}

.iatools-post-wrapper svg:not(:root){
	overflow: hidden;
}

.rating-icons {
	display: block;
    height: 20px;
    margin: 0;
    width: 80px;
}
.cat-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.cat-wrapper > div {
    background: #f6f7fb;
    font-size: 12px;
	color: var(--iatools-primary);
    padding: 3px 9px;
    line-height: 1.2;
    border-radius: 3px;
}

.iatools-post-content p {
    padding: 0;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
    color: var(--iatools-text);
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cta-wrapper {
    display: flex;
    justify-content: space-between;
}

.cta-wrapper .iatools-post-cta {
	background: var(--iatools-primary);
    border: 2px solid var(--iatools-primary);
    color: #fff;
    padding: 5px 20px;
    font-weight: 700;
    border-radius: 50px !important;
}
.cta-wrapper .iatools-post-cta.outline{
	background: transparent;
    color: var(--iatools-text);
    border: 2px solid var(--iatools-primary-alt);
}
.single-ia-tool .rank-math-breadcrumb {
    font-size: 14px;
}

.single-ia-tool .rank-math-breadcrumb p {
    padding: 0;
}
.single-ia-tool .nectar-global-section.before-footer{
    padding-top: 0px !important;
}
.iatools-description {
    gap: 50px;
    column-count: 2;
}

.iatools-description h2 {
    color: #41b9bb;
    font-style: italic;
    line-height: 1.3;
    font-size: 22px;
}

.iatools-description-wrap h1 {
    color: #001039;
    font-size: 35px;
}

.iatools-description p {
    color:#000000
}
.iatools-description-wrap{
    margin-bottom: 50px;
}
.iatools-post-item {
    display: flex;
}
.iatools-post-content-wrapper {
    display: flex;
    flex: 1;
    flex-direction: column;
}
.iatools-post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
@media screen and (width <= 999px){
    .iatools-description {
        column-count: 1;
    }
}
@media only screen and (max-width: 661px) {
.iatools-cats{
    display: flex;
    flex-direction: row;
    overflow-y: hidden;
    overflow-x: auto;
    max-height: 100%;
    height: auto;
    padding-bottom: 20px;
    --sb-track-color: #F2F2F2;
    --sb-thumb-color: #42B9BB;
    --sb-size: 4px;
}
    
.iatools-cats > a {
    flex: 1;
    white-space: nowrap;
}

.iatools-cats::-webkit-scrollbar {
    height: var(--sb-size);
}

.iatools-cats::-webkit-scrollbar-track {
    background: var(--sb-track-color);
    border-radius: 0px;
}

.iatools-cats::-webkit-scrollbar-thumb {
    background: var(--sb-thumb-color);
    border-radius: 0px;
}

@supports not selector(::-webkit-scrollbar) {
    .iatools-cats {
        scrollbar-color: var(--sb-thumb-color)
                        var(--sb-track-color);
    }
}

}