
/*banner*/
.banner__contact{
    background-image: url('../img/banner-services.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 305px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
.banner__contact::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #6564604d;
    z-index: -1;
}
.banner__contact h1{
    font-size: 45px;
    line-height: 1.3;
    color: #fff;
    letter-spacing: 1px;
    font-weight: 400;
    text-transform: uppercase;
}
/*end banner*/

/*main contact*/
.contact{
    padding: 50px 0;
}
.main__contact{
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
}
.contact__content, .contact__location{
    width: 49%;
}

.contact__content h2{
    font-size: 25px;
    color: #666666;
    letter-spacing: 1px;
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: 20px;
}
.contact__content p{
    font-size: 14px;
    color: #7e7e7e;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.group__form__contact{
    width: 100%;
    margin-bottom: 20px;
}
.group__form__contact label{
    font-size: 14px;
    color: #7e7e7e;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
}
.group__form__contact input{
    width: 100%;
    padding: 10px 20px;
    font-size: 15px;
    color: #7e7e7e;
    background-color: #f9f9f9;
    border: 1px solid #f1f1f1;
    outline: none;
}
.group__form__contact textarea{
    resize: vertical;
    width: 100%;
    padding: 10px 20px;
    font-size: 15px;
    color: #7e7e7e;
    background-color: #f9f9f9;
    border: 1px solid #f1f1f1;
    outline: none;
}
.group__form__contact button{
    background-color: #2C3E50;
    padding: 15px 30px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    outline: none;
    border: none;
    cursor: pointer;
}
.map iframe{
    width: 100%;
    height: 260px;
}
.location{
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.location li{
    width: 48%;
    display: flex;
    justify-content: space-between;
    align-items: center;
	flex-wrap: wrap;
	gap: 10px;
    font-size: 14px;
    color: #666666;
    letter-spacing: 1px;
    padding: 10px 0;
}
.location li:not(:last-child){
    border-bottom: 1px solid #f1f1f1;
}
.location li p{
    color: #7e7e7e;
}
.time .title{
    position: relative;
    font-size: 12px;
    color: #666666;
    font-weight: normal;
    letter-spacing: 2px;
    margin-bottom: 30px;
}
.time .title::before{
    content: "";
    position: absolute;
    width: 30px;
    height: 1px;
    left: 0;
    bottom: -15px;
    background-color: #878787;
}
.time .time-value{
    font-size: 45px;
    color: #878787;
    font-weight: 400;
    letter-spacing: 1px;
}
/*end main contact*/

@media only screen and (max-width: 991px){
    .contact__content, .contact__location,
    .location li{
        width: 100%;
    }
	.time .time-value{
		font-size: 30px;
	}
}

@media only screen and (max-width: 767.98px){
    .banner__contact h1{
        font-size: 40px;
    }
}