@charset "utf-8";
/* CSS Document */

* {
	margin: 0px;
	pading: 0px;
	box-sizing: border-box;
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
}

.about-thomas{
	min-height: 100vh;
	padding: 80px 0px;
	background-color: #030526;
}

.container{
	max-width: 1200px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 30px;
	border-radius: 10px;
	margin: 0px auto;
}

.about-image{
	width: 50%;
	margin-right: 10%;
	overflow: hidden;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.about-image img{
	display: block;
	width: 100%;
	height: auto;
	transition: transform 0.3s ease;
}

.about-image:hover img{
	transform: scale(1.1);
}


.about-content{
	width: 50%;
	margin-left: 40px;
}

.about-content h2{
	color: #fff;
	font-size: 32px;
	margin-bottom: 20px;
}

.about-content p{
	color: #fff;
	font-size: 18px;
	line-height: 1.6;
	margin-bottom: 20px;
}

.about-content-one{
	width: 50%;
	margin-left: 40px;
	margin-right: 2%;
}

.about-content-one h2{
	color: #fff;
	font-size: 32px;
	margin-bottom: 20px;
	margin-right: 2%;
}

.about-content-one p{
	color: #fff;
	font-size: 18px;
	line-height: 1.6;
	margin-bottom: 20px;
	margin-right: 2%;
}

.links{
	margin-bottom: 20px;
}

.links a{
	display: inline-block;
	margin-right: 10px;
	color: #c7d5e0;
	font-size: 18px;
	transition: color 0.3s ease;
}

.links a hover{
	color: #fff;
}

.btn{
	font-size: 18px;
	display: inline-block;
	padding: 12px 16px;
	background-color: #4caf50;
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
	transition: background-color 0.3a ease;
}

.btn i{
	margin-right: 5px;
}

.btn:hover {
	background-color: #45a049;
}

@media screen and (max-width: 768px){
	.container{
		flex-direction: column;
		text-align: center;
	}
	.about-image, .about-content{
		width: 100%;
	}
	.about-content{
		padding: 0px;
		margin-top: 50px;
		margin-left: 0px;
	}
}

