﻿.contact-send {
    min-height: 215px;
    border: 1px dashed rgba(255,255,255,.8);
    border-radius: 0;
    box-sizing: border-box;
    padding: 48px 20px 35px 20px;
    text-align: center;
    color: #ffffff;
}
.contact-send.container{ width: 50%;}
.contact-send h2 {
    margin: 0 0 6px 0;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 400;
    letter-spacing: 1px;
}

.contact-send p {
    margin: 0 0 18px 0;
    color: rgba(255,255,255,.95);
    font-size: 22px;
    line-height: 1.28;
    font-weight: 400;
    letter-spacing: 2px;
}

.contact-send-btn {
    display: inline-block;
    min-width: 162px;
    height: 46px;
    line-height: 46px;
    padding: 0 28px;
    box-sizing: border-box;
    background: #ffffff;
    border-radius: 30px;
    color: #1c4e88;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    transition: all .25s ease;
}

.contact-send-btn:hover {
    transform: translateY(-2px);
    color: #1c4e88;
    box-shadow: 0 8px 18px rgba(0,0,0,.15);
}



.contact-info {
    display: flex;
    align-items: flex-end;
    gap: 55px;
    color: #ffffff;
}

.contact-info-left {
    width: 44%;
    box-sizing: border-box;
}

.contact-info-right {
    width: 56%;
}

.contact-info-title {
    margin-bottom: 48px;
}

.contact-info-title span {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: .5px;
}

.contact-info-title h2 {
    margin: 0;
    color: #ffffff;
    font-size: 2rem;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: .5px;
}

.contact-info-editor h3 {
    margin: 0 0 24px 0;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 1px;
}

.contact-info-editor h3:not(:first-child) {
    margin-top: 44px;
}

.contact-info-editor p {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 0 22px 0;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: .8px;
}

.contact-info-editor p i {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    margin-right: 12px;
    border-radius: 50%;
    background: #00a8f4;
    color: #ffffff;
    font-size: 17px;
    line-height: 38px;
    text-align: center;
}

.contact-info-right img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}


.contact-map {
    color: #ffffff;
}

.contact-map-title {
    margin-bottom: 42px;
}

.contact-map-title span {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: .5px;
}

.contact-map-title h2 {
    margin: 0;
    color: #ffffff;
    font-size: 2rem;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: .5px;
}

.contact-map-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.contact-map-item {
    width: 100%;
}

.contact-map-box {
    width: 100%;
    height: 468px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.contact-map-box iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-map-item p {
    margin: 0;
    color: rgba(255,255,255,.95);
    font-size: 15px;
    line-height: 1.45;
    letter-spacing: .3px;
}


/* mobile */
@media screen and (max-width: 768px) {
    .contact-send {
        width: calc(100% - 30px);
        min-height: auto;
        padding: 36px 18px 32px 18px;
    }
.contact-send.container{ width: 94%;}
    .contact-send h2 {
        font-size: 21px;
        line-height: 1.4;
    }

    .contact-send p {
        font-size: 16px;
        line-height: 1.55;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .contact-send p br {
        display: none;
    }

    .contact-send-btn {
        min-width: 145px;
        height: 42px;
        line-height: 42px;
        font-size: 15px;
    }
	
 .contact-info {
        display: block;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .contact-info-left,
    .contact-info-right {
        width: 100%;
    }

    .contact-info-title {
        margin-bottom: 30px;
    }

    .contact-info-title h2 {
        font-size: 1.7rem;
    }

    .contact-info-editor h3 {
        margin-bottom: 18px;
        font-size: 20px;
    }

    .contact-info-editor h3:not(:first-child) {
        margin-top: 34px;
    }

    .contact-info-editor p {
        align-items: flex-start;
        margin-bottom: 18px;
        font-size: 15px;
        line-height: 1.55;
        letter-spacing: .2px;
        word-break: break-word;
    }

    .contact-info-editor p i {
        flex: 0 0 34px;
        width: 34px;
        height: 34px;
        margin-right: 10px;
        font-size: 15px;
        line-height: 34px;
    }

    .contact-info-right {
        margin-top: 28px;
    }

    .contact-info-right img {
        border-radius: 8px;
    }	


.contact-map {
        padding: 0 15px;
        box-sizing: border-box;
    }

    .contact-map-title {
        margin-bottom: 28px;
    }

    .contact-map-title h2 {
        font-size: 1.7rem;
    }

    .contact-map-list {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-map-box {
        height: 300px;
        margin-bottom: 14px;
    }

    .contact-map-item p {
        font-size: 14px;
        line-height: 1.6;
    }

    .contact-map-item p br {
        display: none;
    }
	
}