
.contact_type li {
    width: auto!important;
    border: 1px solid #d8d8d8;
    border-right: none;
    border-bottom: none;
    flex-grow: 1;
}
.contact_type {
    align-self: stretch;
     width: 100%;
 }


#backG{
    width: 100%;
    height: 450px;
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    z-index: 9000;

}

.pulse {
    position: relative;
    text-align: center;

    border-radius: 50%;
    background: #CF142B;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    caret-color: transparent;
    z-index: 99999;
}



.pulse-container img {
    max-width: 100%;
}
/*
img {
    max-width: 100%;
    height: auto;
}*/
.pulse::before {
    content: '';
    position: absolute;
    border: 2px solid #CF142B;
    left: -20px;
    opacity: 0;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    animation: pulse 2.5s linear infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.pulse::after,
.pulse::before {
    content: '';
    position: absolute;
    border: 2px solid #CF142B;
    left: -20px;
    opacity: 0;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    animation: pulse 2.5s linear infinite;
}

.pulse::after {
    animation-delay: 1.25s;
}

@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}


@media screen and (max-width: 767px) {
    #backG{

        height: 400px;


    }

    button.clear {

        width: 44%;
        padding-right: 0;
        padding: 0;
        justify-content: center;
        border:0;
        padding: 10px 15px!important;

        top: -50px;
        font-size:14px;
    }

}