.contact {
    position: relative;
}

.contact .info-wrapper {
    width: 50%;
    padding: 150px 250px 50px 0;
    box-sizing: border-box;
}

.contact .contact-wrapper .container .top-info {
    margin-bottom: 210px;
}

.contact .contact-wrapper .container .top-info h3 {
    font-family: 'Orbitron';
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 65px;
    font-size: 24px;
    color: var(--color-dark);
}

.contact .contact-wrapper .container .top-info .phone-number {
    margin-bottom: 50px;
}

.contact .contact-wrapper .container .top-info .phone-number span {
    font-family: 'Kanit';
    font-weight: 300;
    font-size: 16px;
    line-height: normal;
}

.contact .contact-wrapper .container .top-info .phone-number .number {
    font-family: 'Orbitron';
    font-size: 20px;
    margin: 0;
    line-height: normal;
}

.contact .contact-wrapper .container .top-info .email {
    margin-bottom: 50px;
}

.contact .contact-wrapper .container .top-info .email .title {
    font-family: 'Orbitron';
    font-size: 24px;
    line-height: normal;
}

.contact .contact-wrapper .container .top-info .email a {
    font-family: 'Kanit';
    font-size: 16px;
    font-weight: 300;
    line-height: normal;
}

.contact .contact-wrapper .container .top-info .address {
    font-family: 'Kanit';
    font-weight: 300;
    font-size: 16px;
    line-height: normal;
}

.contact .contact-wrapper .container .info-wrapper .bottom-info {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    font-family: 'Kanit';
    font-weight: 300;
    font-size: 12px;
}

.contact .contact-bg {
    background-color: var(--color-bg);
    width: 50%;
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}


.contact .map iframe {
    position: absolute;
    width: 50%;
    height: 100%;
    right: 0;
    top: 0;
    z-index: 1;
}

@media only screen and (max-width: 1024px) {
    .contact .contact-wrapper .container .info-wrapper {
        width: auto;
        padding: 50px 30px;
        background-color: var(--color-bg);
        border-radius: 20px 20px 0 0;
    }

    .contact .contact-wrapper .container .top-info {
        margin-bottom: 50px;
    }

    .contact .contact-bg {
        display: none;
    }

    .contact .map iframe {
        position: relative;
        width: 100%;
        height: 400px;
    }
}