html, body{
	background-color: black;
	color: white;
	-webkit-font-smoothing: antialiased;
}

h1{
	color: white;
    font-size: 2.488rem !important;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

a{
	text-decoration: none;
}

ul{
	list-style: none;
	padding-left: 0;

	li{
		padding: 1rem;
    	margin-bottom: 0.5rem;
    	background-color: #ffffff17;
    	color: inherit !important;
    	border-radius: 1rem;
    	line-height: 1.2;

    	span {
    		font-weight: 400;
		}
	}
}

header{
	display: flex;
	align-items: center;
	justify-content: space-between;

	.logo{
		margin-top: 1rem;
		width: 50%;

		svg{
			width: 100%;
		}
	}

	i{
		font-size: 1.44rem;
	    border-radius: 10rem;
	    background-color: #ffffff00;
	    height: 2.5rem;
	    width: 2.5rem;
	    display: flex;
	    justify-content: center;
	    align-items: center;
	    transition: all 0.5s ease;
	}

	i:hover{
		background-color: #e5e5e53d;
	}

}

a{
	color: inherit;
}


.practitioner-cities{
	display: flex;
	flex-wrap: wrap;
    gap: 0.5rem;
}

.practitioner-wrapper{
	margin-top: 10vh;
	display: flex;
	gap: 2rem;
	padding-bottom: 10rem;

	.left{
		width: 40%;
		position: sticky;
		top: 4rem;
		height: fit-content;
	}

	.right{
		width: 60%;

		span, p{
			opacity: 0.7;
		}
	}
}

.practitioner-who{

	div{
		border-radius: 2rem;
        background-color: #ffffff17;
        display: inline-block;
        padding: 0.5rem 1rem;
        margin: 0.25rem 0rem;
        margin-right: 0.5rem;
        font-weight: 500;
	}
}

h2{
	margin-top: 0rem;
    font-weight: 400;
    font-size: 1.728rem !important;
    line-height: 1.2;
}

span{
	font-weight: 300;
}

b{
	font-weight: 500;
}

h3{
	margin-top: 3rem;
	border-bottom: 2px solid;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.practitioner-cities{
	span{
	    border: 4px dotted;
    	border-radius: 10rem;
    	padding: 0.25rem 1rem;
	}
}

.hotlink-item{
	font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: flex;
    gap: 0.5rem;

    a{
    	font-weight: 700;
    	text-decoration: underline;
    	transition: all 0.5s ease;
    	letter-spacing: 0rem;


    	&:hover{
    		letter-spacing: 0.025rem;
    	}
    }
}

@media(max-width: 1000px){
	.practitioner-wrapper {
    	flex-wrap: wrap;
    	gap: 1rem;
	}

	.practitioner-wrapper {
	    .left {
	        width: 100%;
	        position: relative;
	        top: 0rem;
	    }
	}

	.practitioner-wrapper {
    	.right {
        	width: 100%;
    	}
	}
}