﻿.contact_wrap li {
    list-style: none;
}

.contact_wrap li {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    margin-bottom: 25px;
    -ms-flex-align: center;
    align-items: center;
}

.contact_icon {
    margin-right: 20px;
}

    .contact_icon i {
        font-size: 34px;
        color: #2f4497;
    }

.contact_text span {
    color: #333;
    font-weight: 600;
    display: block;
    margin-bottom: 3px;
}

.contact_text p:last-child {
    margin-bottom: 0;
}

.contact_text a {
    color: #687188;
    line-height: 28px;
}

    .contact_text a:hover {
        color: #2f4497;
    }

.contact_style1 {
    text-align: center;
    padding: 20px;
    border: 2px solid #eee;
    margin-bottom: 30px;
}

    .contact_style1 .contact_text span {
        margin-bottom: 5px;
    }

    .contact_style1 .contact_icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

.contact_style2 {
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding: 40px 20px;
    border-radius: 10px;
}

    .contact_style2 .contact_icon {
        background-color: #DFFFED;
        margin: 0 0 5px;
        height: 90px;
        width: 90px;
        text-align: center;
        display: inline-block;
        overflow: hidden;
        border-radius: 100%;
        position: relative;
        z-index: 1;
    }

        .contact_style2 .contact_icon i {
            line-height: 90px;
        }

.contact_style3 {
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding: 30px 20px;
    height: 220px;
    border-radius: 10px;
}

    .contact_style3 .contact_icon {
        border: 1px solid #2f4497;
        margin: 0 0 5px;
        height: 80px;
        width: 80px;
        cursor: pointer;
        text-align: center;
        /*		align-items: center;
		justify-content: center;*/
        display: inline-block;
        overflow: hidden;
        border-radius: 100%;
        position: relative;
        z-index: 1;
        line-height: 82px;
    }

        .contact_style3 .contact_icon i {
            line-height: 78px;
            transition: all 0.5s ease-in-out;
        }

        .contact_style3 .contact_icon::before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            background-color: #2f4497;
            z-index:;
            transition: all 0.5s ease-in-out;
            -moz-transform: scale(0);
            -webkit-transform: scale(0);
            transform: scale(0);
            border-radius: 100%;
            z-index: -1;
        }

    .contact_style3:hover .contact_icon::before {
        -moz-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    .contact_style3:hover .contact_icon i {
        color: #fff;
    }

    .contact_style3 .contact_icon img {
        width: 50px;
        height: 50px;
        vertical-align: middle;
        object-fit: contain;
        transition: all 0.5s ease-in-out;
        position: relative;
        z-index: 2;
    }

    .contact_style3 .contact_icon img {
        filter: invert(22%) sepia(68%) saturate(1250%) hue-rotate(212deg) brightness(86%) contrast(95%);
    }

    .contact_style3:hover .contact_icon img {
        filter: brightness(0) invert(1);
    }

.contact_box {
    position: relative;
    padding: 50px 0px;
    display: table;
    width: 100%;
}

.contact_form {
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    border-radius: 10px;
    max-width: 500px;
    background-color: #fff;
    padding: 30px;
    float: right;
    margin-right: 30px;
    position: relative;
    z-index: 9;
}

.contact_box .map {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
}

    .contact_box .map iframe {
        height: 100%;
    }
.col-5-custom {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 10px;
}

.FooterContactEmail {
    font-size: 14px;
}

@media (max-width: 992px) {
    .col-5-custom {
        flex: 0 0 50%;
        max-width: 50%;
    }
}


@media (max-width: 576px) {
    .col-5-custom {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .FooterContactEmail {
        font-size: 17px;
    }
}