.page-content {
	min-height: calc(100vh - 160px);
}

.contact-page-row {
	display: flex;
	margin-top: 20px;
	margin-left: -10px;
	margin-right: -10px;
	flex-wrap: wrap;
}

.contact-top-text {
	font-weight: 500;
	font-size: 16px;
}

.contact-form {
	display: block;
	padding: 0 10px;
	flex: 1 1 50%;
	min-width: 250px;
}

.contact-form .home-section-text {
	text-align: left;
}

.form-group {
	margin-top: 15px;
}

.form-label {
	display: block;
	margin-bottom: 3px;
	font-weight: 500;
}

.label-required::after {
	content: "*";
	color: red;
}

.form-control {
	display: block;
	width: 100%;
	padding: 8px 15px;
	border: 1px solid #ddd;
	border-radius: 4px;
	outline: none;
	transition: ease 0.25s box-shadow;
	resize: vertical;
}

.error {
	color: red;
	font-size: 13px;
	font-weight: 500;
}

.form-control:focus {
	box-shadow: 0 0 0 3px rgba(0, 133, 207, 0.3);
}

.form-actions {
	text-align: center;
	margin-top: 20px;
}

.form-action-btn {
	display: inline-block;
	padding: 10px 25px;
	border-radius: 5px;
	border: 0;
	background-color: var(--theme-primary);
	font-weight: 500;
	text-transform: uppercase;
	color: #fff;
}

.contact-address-data {
	padding: 0 10px;
	flex: 1 1 50%;
	min-width: 250px;
}

.address-head {
	color: var(--theme-primary);
	font-weight: 600;
	font-size: 20px;
	margin-bottom: 0.2em;
}

.address-name {
	font-weight: 600;
	font-size: 18px;
	margin-bottom: 0.3em;
}

.address-text {
	font-weight: 500;
}

.page-client-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
	margin-top: 30px;
}

.client-list-item {
	position: relative;
	border: 1px solid #dadada;
	border-radius: 6px;
}

.client-top-content {
	padding: 15px;
	display: flex;
	align-items: center;
	background-color: #fff;
	border-radius: 6px;
}

.client-list-img {
	flex: 0 0 60px;
	height: 60px;
}

.client-list-img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.client-list-name {
	font-size: 20px;
	font-weight: 300;
	margin-left: 10px;
	flex: auto;
}

.client-collapse-toggle {
	border: 0;
	padding: 10px;
	line-height: 1;
	color: #000;
	font-weight: 600;
	font-size: 18px;
	cursor: pointer;
}

.client-collapse-toggle i {
	display: inline-block;
	transition: ease 0.25s transform;
}

.client-list-item.active .client-collapse-toggle i {
	transform: rotate(-180deg);
}

.client-list-item.active {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.client-collapse-body {
	position: absolute;
	top: 100%;
	left: -1px;
	right: -1px;
	overflow: hidden;
	z-index: 1;
}

.client-content-text {
	padding: 15px;
	padding-top: 5px;
	border-radius: 6px;
	border: 1px solid #dadada;
	border-top: 0;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	background-color: #fff;
}

.about-cols {
	display: flex;
	flex-wrap: wrap;
	margin-left: -10px;
	margin-right: -10px;
}

.about-text-col,
.about-img-col {
	padding: 0 10px;
	flex: 1 1 50%;
	min-width: 300px;
	max-width: 100%;
}

.about-text {
	font-weight: 500;
	line-height: 1.6;
	margin-bottom: 20px;
}

.about-img-col img {
	width: 100%;
}