#testimonial {
	background: #fff;

	.wrap {
		background: #1A1A1A;
		padding: 128px;
		border-radius: 40px;

		@media only screen and (max-width: 980px) {
			padding: 44px;
		}		
	}

	.header {
		margin-bottom: 0;
	}

	.row {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 128px;

		@media only screen and (max-width: 980px) {
			grid-template-columns: 1fr;
			gap: 44px;
		}
	}

	.author {
		display: flex;
        align-items: center;
        gap: 15px;
        align-self: end;

        .name {
        	color: #fff;
        }

        img {
        	width: 60px;
        	height: 60px;
        	border-radius: 50%;
        	object-fit: cover;
        }
	}

	svg {
		width: 40px;
		height: 40px;
		color: #fff;

		* {
			fill: #fff;
		}
	}

	.image {
		img {
			border-radius: 40px;
	       	object-fit: cover;		
			height: 100%;
		}
	}

}