.wrapper{
    margin-top: 70px; 
    background: -webkit-linear-gradient(left, #1249a1, #1f66df,#78acff,#aacafd);
}

.header {
    width: 100%;
    margin: 0 auto;
    border-bottom: white;

}
.text{
    font-weight: 300;
    opacity: 0.9;
}
.contact-bg .text{
    margin: 1.6rem 0;
}
.contact-body{
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* =======================================
            contact-info
==================================*/
.contact-title{
    text-align: center;
   color: #011214;
    font-weight: 700;
}
.contact-info{
    margin: 2rem 0;
    text-align: center;
    padding: 2rem 0;
    background-color: #fff;
    border-radius: 10px;
}
.contact-info span{
    display: block;
}
.contact-info div{
    padding:10px;
    margin: 0.8rem 0;
}
.contact-info span .fas {
    font-size: 3rem;
    padding-bottom: 0.5rem;
    color: #2555a0;
    animation: zoomInOut 2s infinite alternate;
}

@keyframes zoomInOut {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}
.contact-info div span:nth-child(2){
    font-weight: 600;
    font-size: 1.4rem;
    color: #000;
}
.contact-info .text{
    font-weight: 500;
    font-size: 18px;
    color: #000;
    padding-top: 0.9rem;
}

.contact-info a{
    color: #000;
}
.contact-info a:hover{
    color: #151fd9;
}



.form-control{
    width: 100%;
    border: 1.5px solid #c7c7c7;
    border-radius: 5px;
    padding: 0.7rem;
    margin: 0.6rem 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    outline: 0;
}
.form-control:focus{
    box-shadow: 0 0 6px -3px rgba(48, 48, 48, 1);
}
.contact-form form div{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 0.6rem;
}
.send-btn{
   margin-left: 100px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    background: #1c20f7;
    border: none;
    border-radius: 5px;
    padding: 0.7rem 1.5rem;
    cursor: pointer;
    transition: all 0.4s ease;
}
.send-btn:hover{
    opacity: 0.8;
}
.contact-form > div img{
    width: 85%;
}
.contact-form > div{
    margin: 0 auto;
    text-align: center;
}
.contact-footer{
    padding: 2rem 0;
    background: #000;
}
.contact-footer h3{
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1rem;
    text-align: center;
}
.social-link{
    display: flex;
    justify-content: center;
}
.social-link a{
    text-decoration: none;
    width: 40px;
    height: 40px;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.4rem;
    transition: all 0.4s ease;
}
.social-link a:hover{
    color: #f7327a;
    border-color: #f7327a;
}

.map{
    margin: 15px;
}

.contact_content {
    margin: 15px;
}

@media screen and (min-width: 768px){
    .contact-bg .text{
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-info{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .send-btn{
        margin-left: 150px;
    }
    .map{
        margin: 50px;
        border-radius: 10px;
    }
    .contact_content {
        margin: 60px;
    }
    
}

@media screen and (min-width: 992px){
    .contact-bg .text{
        width: 50%;
    }
    .contact-form{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }

    .send-btn{
        margin-left: 190px;
    }
}


@media screen and (min-width: 1200px){
    .contact-info{
        grid-template-columns: repeat(4, 1fr);
    }

}

/* ==========================================
            popup css
=============================================*/

.popup {
    width: 400px;
    background: #ffff;
    border-radius: 6px;
    position: absolute;
    top: 56%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1) ;
    text-align: center;
    padding: 0 30px 30px;
    color: #333;
    visibility: visible;
    transition: transform 0.4s, top 0.4s;
}

.open-popup {
    visibility: visible;
    top: 50%;
    transform: translate(-50px, -50px) scale(1);
}   

.popup img {
    width: 10%;
    margin-top: -50px;
    border-radius: 50%;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); */
}

.popup h2 {
    font-size: 38px;
    font-weight: 500;
    margin: 30px 0 10px;
}

.popup button {
    width: 100%;
    margin-top: 50px;
    padding: 10px 0;
    background: #6fd649;
    color: #fff;
    border: 0;
    outline: none;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 5px 4px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn {
    border-radius: 5px;
    position: fixed;
    bottom: 32px;
    left: 20px;
    z-index: 1;
    font-size: 46px;
}

@media (min-width: 768px) {
    .whatsapp-btn {
        bottom: 32px;
        left: 32px;
    }
}



@media screen and (min-width: 768px)  {
   
}