.contacts-subtitle {
    color: #94368d;
    margin-top: -22px;
    margin-bottom: 30px;
}

.contacts-tab-list {
    margin-bottom: 50px;
}

.contact-tabs {
    display: flex;
    flex-wrap: wrap;
}

.contact-tab {
    line-height: 2;
    position: relative;
    margin-right: 10px;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 0 3px 2px #dadada;
    padding: 10px 20px;
    color: #94368d;
    font-weight: 600;
    font-size: 17px;
}

.contact-tab.selected,
.contact-tab:hover {
    background-color: #94368d;
    color: #ffffff;
}

.tab-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-contents {
    margin-top: 25px;
}

.contact-content {
    display: none;
}

.contact-content.selected {
    display: block;
}

.contact-content h2 {
    font-size: 28px;
    font-weight: 700;
}

.contacts-data h2 {
    text-align: center;
}

.contacts-form {
    width: 66%;
    margin-right: 1%;
    background-image: url("/images/contacts/background-form.png");
    background-position: right;
    background-color: #fff;
}

.contacts-data {
    width: 33%;
    background-image: url("/images/contacts/background-data.png");
    background-position: center;
    background-color: #f5f5f5;
}

.contacts-form,
.contacts-data {
    background-repeat: no-repeat;
    background-size: contain;
    box-shadow: 0 0 3px 2px #dadada;
    padding: 25px;
}

.contacts-data-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-wrap: wrap;
}

.contacts-data-flex > div {
    display: flex;
    width: 100%;
}

.contacts-data .icon img {
    max-width: 30px;
}

.contacts-data ul {
    margin-left: 15px;
    margin-bottom: 30px;
}

.contacts-data ul li {
    margin-bottom: 5px;
}

.contacts-data ul li a {
    font-size: 20px;
}

.contact-contents .web-form {
    width: 100%;
}

.contact-contents input[type="password"],
.contact-contents input[type="text"],
.contact-contents textarea,
.contact-contents select {
    background-color: transparent;
    border: 1px solid #d0d0d0;
    width: 100%;
    margin-bottom: 10px;
}

.contact-contents textarea {
    width: 100% !important;
}

@media all and (max-width: 1040px) {
    .contacts-form {
        width: 50%;
    }

    .contacts-data {
        width: 49%;
    }
}

@media all and (max-width: 998px) {
    .contact-tab {
        width: 100%;
        margin-bottom: 15px;
    }
}

@media all and (max-width: 768px) {
    .contacts-form {
        width: 100%;
        margin-right: 0;
    }

    .contacts-data {
        width: 100%;
    }

    .contacts-tab-list {
        padding: 0 15px;
    }

    .contacts-data h2{
        text-align: left;
    }

    .contacts-data-wrap {
        justify-content: start;
    }
}