﻿* {
    margin: 0;
    padding: 0;
}

body {
    width: 100%;
    height: 100vh;
    background-color: #212121;
}

.contact-header {
    width: 100%;
    height: 100px;
    background-color: black;
    display: flex;
    justify-content: center;
}

.header-logo {
    background-image: url(../Images/logo.png);
    background-repeat: no-repeat;
    background-position: center center;
    width: 200px;
    height: 100px;
}

.spinner-icon {
    background-image: url(../Images/spinner.gif);
    width: 40px;
    height: 40px;
    position: relative;
    background-size: 100% 100%;
    border: unset;
    outline: none;
    font-family: "UniBold";
    color: white;
    text-transform: uppercase;
    font-size: 18px;
    cursor: pointer;
    margin-top: 15px;
}

.go-main-page span {
    width: 60px;
    height: 60px;
    background-image: url(../Images/back-previous.png);
    position: absolute;
    left: 0;
    background-size: 100% 100%;
    background-position: center center;
}

.go-main-page {
    display: flex;
    align-items: center;
}

.main-container {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 90%;
    margin-top: 20px;
}

#Map {
    width: 100%;
    height: 400px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.contact-info {
    width: 30%;
    height: 450px;
    background-color: black;
    min-width: 300px;
}

.send-email-container {
    width: 68%;
    height: 450px;
    background-color: black;
    min-width: 300px;
    margin-left: 20px;
    position: relative;
}

.contact-item:before {
    font-size: 33px;
    color: white;
    margin-left: 15px;
}

.contact-items {
    width: 100%;
    height: 144px;
    display: flex;
    align-items: center;
    background-color: black;
    margin-left: 10px;
    margin-bottom: 10px;
    color: white;
}

.contact-us-header { background-color: #e90530; }

.contact-items a {
    color: white;
    font-family: "UniBold";
    margin-left: 10px;
    font-size: 18px;
    text-decoration: none;
}

.send-email-header {
    width: 100%;
    display: flex;
    justify-content: center;
    font-family: "UniBold";
    color: #e90530;
    text-transform: uppercase;
    font-size: 25px;
    margin-top: 10px;
}

.left-side-email {
    display: flex;
    flex-direction: column;
    max-width: 350px;
    width: 100%;
    margin-left: 20px;
}

.email-wrapper { display: flex; }

.right-side-email {
    width: 100%;
    margin-top: 29px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-right: 30px;
}

textarea {
    width: 100%;
    margin-left: 10px;
    resize: none;
}

input.email-input {
    background-color: rgb(243 243 243);
    width: 94%;
    height: 50px;
    font-size: 16px;
    font-family: "UniBold";
    color: black;
    border: unset;
    border-radius: unset;
    margin-right: 22px;
    margin-top: 29px;
    outline: none;
    padding: 10px;
}


button#SendEmail {
    right: 20px;
    bottom: 15px;
    min-width: 200px;
    height: 40px;
    border: unset;
    background-color: #e90530;
    outline: none;
    font-family: "UniBold";
    color: white;
    text-transform: uppercase;
    font-size: 18px;
    cursor: pointer;
    margin-top: 15px;
    padding-left: 5px;
    padding-right: 5px;
}


button#SendEmail:hover {
    background-color: #a5001f;
    transition: background-color .9s;
}

.text-input {
    background-color: rgb(243 243 243);
    font-size: 16px;
    font-family: "UniBold";
    color: black;
    border: unset;
    border-radius: unset;
    outline: none;
    padding: 10px;
    width: 100%;
    height: 286px;
}

.border-div { border: 2px solid #e90530 !important; }
.submit-div {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    position: relative;
}

@media only screen and (max-width: 1128px) {
    .contact-info { width: 100%; }

    .send-email-container {
        width: 100%;
        margin-top: 20px;
        height: unset;
        margin-left: unset;
    }

    .email-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .right-side-email {
        margin-left: -1px;
        /* margin-right: 20px; */
        align-items: center;
        margin-right: unset;
    }

    #SendEmail { margin-bottom: 15px; }

    textarea {
        margin-left: unset;
        width: 100% !important;
    }

    .email-wrapper {
        position: relative;
        overflow: hidden;
    }

    .contact-items { margin-left: 0; }

    /*.left-side-email { margin-left: 0; }*/

    .text-input { max-width: 330px; }


    .submit-div { justify-content: center; }
    .spinner-icon {
        margin-top: 0;
    }
}


#SendEmail.hidden-success-email-div:after { content: "Success"; }

#SendEmail.hidden-error-email-div:after { content: "Error occured!"; }

#SendEmail.hidden-empty-email-div:after { content: "Please fill in all Fields!"; }
#SendEmail.hidden-incorrect-email-div:after { content: "Incorrect Email!"; }

.green-color { background-color: green !important; }

