.contact .box1{
    padding: 60px 0 80px;
}
.contact .box3 .title,
.contact .box1 .title{
    color: #181811;
    font-weight: bold;
}
.contact .box1 .box-c{
    margin-top: 49px;
}
.contact .box1 .box-c .list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
}
.contact .box1 .box-c .list li{
    border: 1px solid rgba(209, 209, 209, .5);
    padding: 55px 60px 45px;
}
.contact .box1 .box-c .list li:first-child{
    border-radius: 15px 0px 0px 15px;
}
.contact .box1 .box-c .list li:last-child{
    border-radius: 0px 15px 15px 0px;
}
.contact .box1 .box-c .list li .text-title{
    font-family: SourceSansRoman;
    font-weight: 600;
    font-size: 22px;
    color: #000000;
    line-height: 30px;
}
.contact .box1 .box-c .list li .icon{
    margin-top: 53px;
}
.contact .box1 .box-c .list li .icon img{
    display: block;
    margin: 0 auto;
    transition: all .6s;
}
.contact .box1 .box-c .list li .icon:hover img{
    transform: translateY(-14px);
}
.contact .box1 .box-c .list li .items{
    margin-top: 50px;
}
.contact .box1 .box-c .list li .items .item:not(:last-child){
    margin-bottom: 10px;
}
.contact .box1 .box-c .list li .items .item-title{
    font-weight: 400;
    font-size: 14px;
    color: #777777;
    line-height: 24px;
}
.contact .box1 .box-c .list li .items .item-des{
    font-weight: 600;
    font-size: 22px;
    color: #111112;
    line-height: 30px;
}
.contact .box1 .box-c .list li .text{
    font-weight: 400;
    font-size: 14px;
    color: #686868;
    line-height: 22px;
    margin-top: 15px;
}
.contact .box2{
    position: relative;
    height: 900px;
	background-color: RGBA(233, 245, 239, 1);
}
.contact .box2 .btns {
    position: absolute;
   display: flex;
   top: 104px;
   left: 50%;
   transform: translateX(-50%);
}
.contact .box2 .btns .btnsContainer{
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.contact .box2 .btn{
    width: 142px;
    line-height: 41px;
    background: #FFFFFF;
    box-shadow: 0px 12px 23px 4px rgba(0,84,167,0.19);
    border-radius: 21px;
    font-weight: 400;
    font-size: 15px;
    color: #000000;
    text-align: center;
    transition: all .6s;
    z-index: 3;
}
.contact .box2 .btn.active{
    background-color: rgba(51, 125, 88, 1);
    color: #fff;
}
.contact .box2 #map{
    width: 100%;
    height: 100%;
}
.contact .box2 #map iframe{
    /* display: none; */
    width: 100%;
    height: 100%;
}
.contact .box2 #map iframe.active{
    display: block;
}
.contact .box2 .items{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 170px;
}
.contact .box2 .items .itemsContainer{
    position: absolute;
    width: 437px;
    max-width: 100%;
    right: 0;
    bottom: 0;
}
.contact .box2 .items .item{
    display: none;
    background: #FFFFFF;
    border-radius: 10px;
}
.contact .box2 .items .item.active{
    display: block;
}
.contact .box2 .items .item .item-title{
    font-weight: 600;
    font-size: 26px;
    color: #252324;
    line-height: 30px;
    text-align: left;
    padding: 27px 37px 14px;
    border-bottom: 1px solid rgba(236, 236, 236, 1);
}
.contact .box2 .items .item .list{
    padding: 15px 37px 50px;
}
.contact .box2 .items .item .list li{
    display: flex;
    justify-content: space-between;
}
.contact .box2 .items .item .list li:not(:last-child){
    margin-bottom: 15px;
}
.contact .box2 .items .item .list .li-l{
    font-weight: 600;
    font-size: 16px;
    color: #434343;
    line-height: 30px;
}
.contact .box2 .items .item .list .li-r{
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    width: 185px;
    letter-spacing: -.7px;
}
.contact .box2 .items .item .list .li-r a{
    color: #555555;
    text-decoration-line: underline;
}
.contact .box3{
    padding: 60px 0 80px;
    background-color: RGBA(248, 248, 248, 1);
}
.contact .box3 .des{
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 20px;
    margin-top: 18px;
}
.contact .box3 .box-c{
    margin-top: 66px;
}
.contact .box3 .box-c .inputs{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 36px 61px;
}
.contact .box3 .box-c .inputs .input{
    display: flex;
    padding: 10px 33px;
    background: #FFFFFF;
    border-radius: 25px;
    border: 1px solid #EFF3F7;
}
.contact .box3 .box-c .inputs .input label{
    display: flex;
    font-weight: bold;
    font-size: 15px;
    color: #333333;
    line-height: 30px;
}
.contact .box3 .box-c .inputs .input label span{
    font-weight: 400;
    width: 26px;
    color: rgba(191, 20, 20, 1);
}
.contact .box3 .box-c .inputs .input textarea,
.contact .box3 .box-c .inputs .input input{
    flex: 1;
    font-family: HelveticaNeue;
    font-weight: bold;
    font-size: 15px;
    color: #616161;
    line-height: 30px;
    margin-left: 29px;
    border: none;
    outline: none;
    width: 100%;
}
.contact .box3 .box-c .inputs .input input::placeholder,
.contact .box3 .box-c .inputs .input textarea::placeholder{
    color: rgba(97, 97, 97, .5);
}
.contact .box3 .box-c .inputs .input.textarea{
    grid-column: 1/3;
}
.contact .box3 .box-c .inputs .input.textarea textarea{
    height: 84px;
    resize: none;
}
.contact .box3 .box-c .submit{
    margin-top: 36px;
    width: 182px;
    line-height: 49px;
    background: #337D58;
    border-radius: 24px;
    font-weight: bold;
    font-size: 15px;
    color: #FFFFFF;
    text-align: center;
    cursor: pointer;
}
@media (max-width:1199px) {
	.contact .box3,
	.contact .box1{
		padding: 70px 0;
	}
	.contact .box3 .box-c,
	.contact .box1 .box-c{
		margin-top: 45px;
	}
	.contact .box2{
		/* height: 600px; */
	}
	.contact .box1 .box-c .list li{
		padding: 30px;
	}
	.contact .box1 .box-c .list li .icon{
		margin-top: 30px;
	}
	.contact .box1 .box-c .list li:hover .icon img{
		transform: translateY(0);
	}
	.contact .box1 .box-c .list li .items{
		margin-top: 25px;
	}
	.contact .box1 .box-c .list li .items .item-des{
		font-size: 20px;
	}
	.contact .box2 .btns{
		top: 49px;
	}
	.contact .box2 .items{
		bottom: 49px;
	}
	.contact .box2 .items .item .item-title{
		font-size: 24px;
	}
}
@media (max-width:1024px) {
	.contact .box2 .items .itemsContainer{
		width: 390px;
	}
	.contact .box2 .items .item .item-title{
		font-size: 20px;
		padding: 27px 27px 14px;
	}
	.contact .box2 .items .item .list{
		padding: 17px 27px 30px;
	}
	.contact .box2 .items .item .list .li-r,
	.contact .box2 .items .item .list .li-l{
		font-size: 14px;
		line-height: 24px;
	}
	.contact .box1 .box-c .list li{
		padding: 20px;
	}
	.contact .box1 .box-c .list li .icon img{
		width: 168px;
	}
	.contact .box3,
	.contact .box1{
		padding: 60px 0;
	}
	.contact .box3 .box-c,
	.contact .box1 .box-c{
		margin-top: 40px;
	}
	.contact .box1 .box-c .list li .items .item-des{
		font-size: 18px;
	}
	.contact .box3 .box-c .inputs{
		gap: 24px;
	}
	.contact .box3 .box-c .inputs .input{
		padding: 10px 20px;
	}
	.contact .box3 .box-c .inputs .input textarea, .contact .box3 .box-c .inputs .input input{
		margin-left: 19px;
	}
	.contact .box3 .box-c .submit{
		margin-top: 30px;
	}
	.contact .box3 .des{
		margin-top: 10px;
	}
}
@media (max-width: 768px) {
	.contact .box3 .box-c .inputs{
		grid-template-columns: repeat(1,1fr);
	}
	.contact .box3 .box-c .inputs .input.textarea{
		grid-column: 1/1;
	}
	.contact .box2 .btn{
		width: 103px;
	}
	.contact .box1 .box-c .list li{
		border-radius: 15px !important;
	}
	.contact .box1 .box-c .list{
		grid-template-columns: repeat(1,1fr);
		gap: 20px;
	}
	.contact .box3,
	.contact .box1{
		padding: 50px 0;
	}
	.contact .box3 .box-c,
	.contact .box1 .box-c{
		margin-top: 30px;
	}
	.contact .box1 .box-c .list li .text-title{
		font-size: 20px;
	}
}
@media (max-width: 500px) {
	.contact .box1 .box-c .list li .text-title{
		font-size: 18px;
	}
	.contact .box3 .box-c .inputs .input label{
		font-size: 13px;
	}
	.contact .box3 .box-c .inputs .input textarea, .contact .box3 .box-c .inputs .input input{
		font-size: 13px;
		margin-left: 10px;
	}
	.contact .box3 .box-c .inputs .input label span{
		width: 18px;
	}
	.contact .box1 .box-c .list li .icon img{
		width: 114px;
	}
	.contact .box3,
	.contact .box1{
		padding: 40px 0;
	}
	.contact .box3 .box-c,
	.contact .box1 .box-c{
		margin-top: 25px;
	}
	.contact .box3 .box-c .submit{
		margin-top: 15px;
	}
	.contact .box3 .box-c .inputs{
		gap: 15px;
	}
	.contact .box2 .items .item .item-title{
		font-size: 18px;
	}
}