/*--css--*/

/* ==
　聯絡我們
=============================================================================== */
.contact_banner{
	background: url("../images/top-banner.jpg")no-repeat center top;
	background-size: cover;
	background-position: center;	
}
@media(max-width:768px) {
.contact_banner{
	background: url("../images/top-banner_768.jpg")no-repeat center top;
	background-size: cover;
	background-position: center;	
}    
    
}
.page-contact-us {
    padding: 100px 0 50px;
    font-size:15px;
}
@media all and (max-width: 820px) {
.page-contact-us {
  padding: 70px 0 50px;
  font-size: 15px;
}
}

.contact-us-image {
    height: 100%;
}

.contact-us-image figure {
    height: 100%;
    display: block;
}

.contact-us-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 0.962;
}

.contact-us-form {
    /*margin-left: 30px;*/
}

.contact-content span {
    font-size: 50px;
    line-height: 60px;
    color: #4faa84;
    font-family: 'Jost', sans-serif;
    font-weight: bold;
    transition: 0.3s;
}

.contact-content a:hover {
    color: #5dbe96;
}

.form-control {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2em;
    background-color: var(--white-color);
    color: var(--text-color);
    border: 1px solid var(--divider-color);
    border-radius: 0;
    outline: none;
    box-shadow: none;
    padding: 14px 15px;
}

.form-control::placeholder {
    font-weight: 400;
}

.google-map {
    padding: 50px 0;
}

.google-map .section-title {
    width: 100%;
    max-width: 560px;
    margin: 0 auto 30px;
    text-align: center;
}

.google-map-iframe,
.google-map-iframe iframe {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    border: 1px solid #F6F6F6 ;
}

.contact-info-box {
    /*margin-top: 60px;*/
}

.contact-info-item {
    width: 100%;
    margin-bottom: .8rem;
    display: flex;
    border: 1px solid #cccccc;
    border-radius: 20px;
    padding: 23px 30px 26px 30px;
}

.contact-info-item .icon-box {
    position: relative;
    height: 60px;
    width: 60px;
    background-color: var(--divider-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.contact-info-item .icon-box:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.contact-info-item:hover .icon-box:before {
    transform: scale(1);
}

.contact-info-item .icon-box i {
    position: relative;
    font-size: 30px;
    color: var(--accent-color);
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.contact-info-item:hover .icon-box i {
    color: #fff;
}

.contact-info-content {
    width: calc(100% - 80px);
}

.contact-info-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-info-content p {
    font-size: 16px;
    margin-bottom: 0;
}


.footer-newsletter-form .form-group {
    display: flex;
    background: var(--white-color);
    overflow: hidden;
}
.sendBox {
    text-align: right;
    padding-top: 1rem;
}
@media all and (max-width: 600px) {
.sendBox {
  text-align: left;
}
}