
section.header,
footer {
    background-color: white;
}

section.contact,
section.extentions {
    padding: 50px calc((100% - 1200px)/ 2);
    padding-bottom: 150px;
    background-color: white;
}

section.contact {
    padding-bottom: 50px;
}

section.contact h2,
section.extentions h2 {
    text-align: center;
    font-size: 45px;
    color: rgba(0, 0, 0, 0.7);
}

section.contact h2 strong,
section.extentions h2 strong {
    font-weight: 700;
}

div.wrapper,
div.wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-top: 50px;
}

div.wrapper {
    background-color: #202238;
    padding: 2em;
    color: white;
    position: relative;
}

div.wrapper:before {
    content: '';
    position: absolute;
    top: -110px;
    left: -34px;
    background-image: url(/wp-content/themes/filizer2020/images/women.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
    width: 127px;
    height: 173px;
}

.flip-card {
    background-color: transparent;
    width: 547px;
    height: 474px;
    perspective: 1000px; /* Remove this if you don't want the 3D effect */
    cursor: pointer;
}

/* This container is needed to position the front and back side */
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
    background-color: #bbb;
    color: black;
}

.flip-card-front h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: white;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    width: 55%;
}

/* Style the back side */
.flip-card-back {
    background-color: #1e2138;
    color: white;
    transform: rotateY(180deg);
}

.flip-card-back div {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-ransform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 80%;
    font-size: 22px;
    font-weight: 700;
    text-transform: lowercase;
}

.flip-card-back div a {
    color: rgb(60, 149, 220);
}

form {
    width: 43%;
    position: relative;
}

form #loader {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

form #loader.show {
    opacity: 1;
    visibility: visible;
}

form #loader img {
    display: block;
    width: 100%;
    height: auto;
}

form #response {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #202238;
    opacity: 0;
    visibility: hidden;
    text-align: center;
}

form #response h4 {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 26px;
    width: 100%;
}

form #response.show {
    opacity: 1;
    visibility: visible;
}

section.contact div.address {
    width: 45%;
}

section.contact div.address {
    background-image: url("/wp-content/themes/filizer2020/images/map.svg");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% auto;
}

form label {
    display: block;
    width: 100%;
    margin-bottom: 0.5em;
}

form label textarea,
form label input {
    width: 100%;
    padding: 0.7em 0.5em;
    font-size: 18px;
}

form label textarea {
    height: 150px;
    resize: none;
}

form input[type="submit"] {
    -webkit-appearance: none;
    display: block;
    margin-right: auto;
    width: 30%;
    border: none;
    padding: 0.5em 0.5em;
    font-size: 22px;
    background: linear-gradient(to right, #45aaef 0%,#2e73bc 100%);
    color: white;
    font-weight: 700;
    cursor: pointer;
}

body.en form input[type="submit"] {
    margin-right: 0;
    margin-left: auto;
}

section.contact div.address h4 {
    font-size: 18px;
    font-weight: 700;
}

section.contact div.address p {
    margin: 0.5em 0em;
}

section.contact div.address a {
    display: block;
    margin: 0.5em 0em;
    text-decoration: none;
    color: white;
}
