div.testimonials-info
{
	width: 600px;
    margin: 0px auto;
    padding: 50px 0px;
	text-align: center;
}

	span.testimonials-title
	{
		display: block;
		margin-bottom: 10px;
		font-size: 36px;
		font-weight: 800;
		color: #101828;
	}
	
	span.testimonials-description
	{
		display: block;
		font-size: 18px;
		color: #45556c;
	}

div.block-testimonials
{
	position: relative;
    float: left;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
}

	div.testimonial-card
	{
		position: relative;
		height: 500px;
		margin: 20px 0px;
		box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
		border-radius: 15px;
		overflow: hidden;
	}

		div.testimonial-img
		{
			width: 100%;
			height: 200px;
			background-size: cover;
			background-position: center;
		}
		
		div.testimonial-card-info
		{
			display: flex;
			flex-direction: column;
			justify-content: space-between;
			width: 100%;
			height: 300px;
			padding: 30px;
			box-sizing: border-box;
		}
		
			span.testimonial-card-address
			{
				display: block;
				margin-bottom: 20px;
				font-size: 20px;
				font-weight: 600;
				color: #1d293d;
			}
			
			span.testimonial-card-comment
			{
				font-size: 14px;
				line-height: 20px;
				color: #45556c;
			}
			
			i.testimonial-card-comment-quote
			{
				display: inline-block;
				font-size: 16px;
				color: #45556c;
			}
			
		div.testimonial-card-star-wrap
		{
			display: flex;
			align-items: center;
			gap: 10px;
			margin-bottom: 10px;
		}
			
			div.testimonial-card-star-line
			{
				display: flex;
			}
			
				div.testimonial-card-star-line i
				{
					font-size: 20px;
					color: #fdc700;
				}
				
			span.testimonial-card-star-mark
			{
				font-size: 14px;
				font-weight: 500;
				color: #6a7282;
			}

		div.testimonial-card-name-wrap
		{
			display: flex;
			align-items: center;
			gap: 10px;
		}
		
			span.testimonial-card-name-letters
			{
				display: block;
				width: 40px;
				height: 40px;
				font-size: 14px;
				font-weight: 700;
				line-height: 40px;
				text-align: center;
				text-transform: uppercase;
				color: #fff;
				border-radius: 40px;
			}
			
			span.testimonial-card-name
			{
				display: block;
				font-size: 14px;
				font-weight: 600;
				color: #1d293d;
			}
			
			span.testimonial-card-name-verified
			{
				font-size: 12px;
				color: #62748e;
			}

		div.testimonial-card:hover div.settings_menu
		{
			display: block;
		}