/* ============= ---- Transitions ---- ================ */
ul.contact-manual li, ul.social-links li a, ul.contact-manual li a {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/* ============= ---- Generic Styles ---- ================ */


/* ============= ---- Main ---- ================ */
.section-contact .container-core {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.contact-left {
    width: calc(50% - 50px);
}

.contact-right {
    width: calc(100% - 50% - 100px);
}

ul.contact-manual {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
}

ul.contact-manual li {
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 20px;
}

ul.contact-manual li:hover {
    box-shadow: 6px 6px #d6d5d4;
}

ul.contact-manual li a {
    display: flex;
    padding: 20px 20px 22px;
    font-size: 16px;
    text-decoration: none;
    font-weight: 400;
    line-height: 20px;
}

ul.contact-manual li:hover a {
    color: #05618f;
}

ul.contact-manual li a i {
    font-size: 18px;
    position: relative;
    top: 3px;
    margin-right: 10px;
}

li.contact-full {
    width: 100%;
}

li.contact-half {
    width: calc(50% - 10px);
}

form#contact-form {
    margin-top: 50px;
}

ul.social-links {
    margin-top: 50px;
}

ul.social-links li {
    display: inline-block;
    font-size: 30px;
    margin-right: 30px;
}

ul.social-links li:last-child {
    margin-right: 0;
}

ul.social-links li:hover a {
    color: #05618f;
}

.opening-hours {
    margin-top: 50px;
}

.opening-hours h3 {
    margin-bottom: 20px;
}

.oh-table {
    display: table;
    width: 100%;
}

.oh-table-row {
    display: table-row;
}
.oh-table-row div {
    display: table-cell;
    padding: 15px 0;
    width: 50%;
}
.oh-table-row div:last-child {
    border-right: 0;
}
.oh-table-row:last-child div {
    border-bottom: 0;
}

.oh-table-time {
    text-align: right;
}

/* ======================= -------- 7.0  Media Queries -------- ========================== */
@media (max-width: 1110px) {
    li.contact-half { width: 100%; }
}

@media (max-width: 950px) {
    .contact-left, .contact-right { width: 100%; }
    .contact-left { margin-bottom: 50px; }
    li.contact-half { width: calc(50% - 10px); }
}

@media (max-width: 460px) {
    li.contact-half { width: 100%; }
    ul.social-links li { font-size: 22px; }
}

@media (max-width: 380px) {
    ul.contact-manual li a { font-size: 14px; }
}




