/* navbar */
.navbar {
    z-index: 100;
}

/* start Content Us*/
.header_content_us {
    position: relative;

}
.header_content_us .background-header {
    background-color: var(--surface-color);
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
}
.header_content_us .background-header h2{
    margin: 0;
    font-size: 1rem;
}
.header_content_us .background-header p{
    font-size: 1.7rem;
    font-weight: 900;
}

.header_content_us .banner-curve {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 65px;
    background-image: url(../hetacad/imgs/wave.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% 100%;
    z-index: 2;
    transform: rotateX(0deg) rotateY(180deg);
}

/* end Content Us*/

/* Start contact Us  */
.container-contact-us{
    z-index: 10;
}
/* End contact Us  */


/* ٍStart Ways-contact */
.way-contact{
    position: relative;
}
.way-contact .container{
    position: relative;
}
.way-contact .container .content-cards{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.way-contact .container .content-cards .card{
    width: 280px;
    height: 220px;
    border-radius: 7px;
    margin: 50px 20px;
    box-shadow: 0px 5px 12px #00000024;
    display: flex;
    justify-content: center;
    padding: 50px 20px 20px 20px;
    transition: var(--main-transition);
}
.way-contact .container .content-cards .card:hover{
    transform: scale(1.05);
}
.way-contact .content-cards .card .content-card{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 5px 12px #00000013;
    padding: 10px 20px ;
    width: 100%;
    border-radius: 7px;
}
.way-contact .content-cards .card .content-card img{
    background-color: var(--main-color-alt);
    width:  55px;
    height: 55px;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0px 7px 12px #00000033;
    position: absolute;
    top: -20%;
}
.way-contact .content-cards .card .content-card h3{
    color: #414141;
    font-weight: 600;
    margin-top:30px;
    margin-bottom: 0px;
}
.way-contact .content-cards .card .content-card p{
    display: flex;
    justify-content: center;
    direction: ltr;
    width: 100%;
    color: var(--secondary-color);
    font-weight: 400;
    height: 20px;
    margin-bottom: 20px;
}


/* End Ways-contact */

/* Animation */
.animation-scrolling-form{
    animation: right-left 2s; 
}
@keyframes right-left {
    0%{
        transform: translateX(200px);
        opacity: 0;
    }
    100%{
        transform: translateX(0px);
        opacity: 1;
    }
}
.animation-scrolling-picture{
    animation: left-right 2s; 
}
@keyframes left-right {
    0%{
        transform: translateX(-200px);
        opacity: 0;
    }
    100%{
        transform: translateX(0px);
        opacity: 1;
    }
}