.nav{
	position: fixed;
}
.banner-box{
	background: url(../images/aboutUs/banner.jpg) no-repeat center;
    background-size: cover;
}
.main .fr-content{
	background: #fff url(../images/aboutUs/map.svg) no-repeat;
	background-position: 60px 50px;
}

.main .fr-content .h1-title{
	text-align: center;
}
.main .fr-content .content1 h3{
	font-family: PingFangSC-Medium;
	font-size: 24px;
	color: #000000;
	line-height: 36px;
	font-weight: 500;
	margin-bottom: 40px;
}

.fr-content>div{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	width: 100%;
	padding-bottom: 50px;
}

.card{
	width: 24%;
	background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
	margin-right: 1%;
	margin-bottom: 1%;
	cursor: pointer;
}
.card:hover{
	box-shadow: 0 4px 10px rgba(0, 0, 0, 1);
}
.card h2 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}
.card p {
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}
.card .contact {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px dashed #eee;
}
.card .label {
    font-weight: bold;
    color: rgb(51, 51, 51);
}

.create-btn{
	position: fixed;
	right: 5%;
	top: 50%;
	cursor: pointer;
	padding:15px 30px;
	border-radius: 10px;
	color: #fff;
	font-size: 16px;
	background: #DF2124;
	border: 1px solid transparent;
	z-index: 999;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: all .3s;
}
.create-btn:hover{
	background: #fff;
	color: #DF2124;
	border-color: #DF2124;
}


 .modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.4);
}
 .modal-content {
	background-color: #fefefe;
	margin: 10% auto;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	width: 80%;
	max-width: 500px;
	animation: modalopen 0.4s;
}
@keyframes modalopen {
	from {opacity: 0; transform: translateY(-50px);}
	to {opacity: 1; transform: translateY(0);}
}
#publishModal .close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
}
#publishModal .close:hover {
	color: black;
}
.form-group {
	margin-bottom: 20px;
}
#publishModal label {
	display: block;
	margin-bottom: 8px;
	font-weight: bold;
	color: #555;
}
#publishModal input,#publishModal select,#publishModal textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	box-sizing: border-box;
	font-size: 16px;
}
.submit-btn {
	width: 100%;
	padding: 12px;
	background-color: #4458FA;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
	transition: background-color 0.3s;
}
.submit-btn:hover {
	background-color: #0b7dda;
}
h3 {
	color: #333;
	margin-bottom: 20px;
	text-align: center;
	font-size: 18px;
}
