﻿@import url(open-sans-font.css);

.connect_section1 {
    font-family: OpenSans-Regular;
    padding: 10px 50px 50px 50px;
    color: rgb(48, 48, 48);
    /**/
    background-color: rgb(255, 255, 255);
    background-image: url(../imgs/bg-imgs/connect-bg.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 84px;
    min-height: 350px;
}

    .connect_section1 h4 {
        font-family: OpenSans-Light;
    }

.connect_grid_container {
    padding: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

.email_links {
    font-size: 17px;
}

.grid_section {
    width: 100%;
    color: black;
    background-color: white;
    box-shadow: 0 10px 7px 0px rgba(0, 0, 0, 0.25);
    padding: 30px;
    z-index: 2;
}

/* contact
/*======================*/
.contact_section {
    padding: 50px;
}

.contact_inner_section {
    font-family: OpenSans-Regular;
    padding: 30px;
    border: 1px solid lightgray;
}

    .contact_inner_section:hover {
        font-family: OpenSans-Regular;
        padding: 30px;
        box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.2);
    }

.send_email_overlay_show {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9;
    transition: all .5s ease;
}

.send_email_overlay_hide {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9;
    transition: all .5s ease;
    visibility: hidden;
    opacity: 0;
}
/*Ripple CSS*/
.lds-ripple {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}

    .lds-ripple div {
        position: absolute;
        border: 4px solid #FFFFFF;
        opacity: 1;
        border-radius: 50%;
        animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .lds-ripple div:nth-child(2) {
            animation-delay: -0.5s;
        }

@keyframes lds-ripple {
    0% {
        top: 28px;
        left: 28px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: -1px;
        left: -1px;
        width: 58px;
        height: 58px;
        opacity: 0;
    }
}
