/* start form  */
.contact {
    position: relative;
}

.contact::after {
    position: absolute;
    content: '';
    background-image: url('../../images/contact-bg.webp');
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: scale(1);
    animation: bg-moveing 10s infinite ease-in-out;
    z-index: -2;
}

@keyframes bg-moveing {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.contact .container {
    position: relative;
    /* z-index: 1; */
}

.contact ul li i,
.contact ul li a {
    color: var(--text);
}

.contact ul li a {
    font-weight: 100;
}

.contact .icon-socail .icon {
    color: var(--main);
    border: 1px solid var(--sec);
    box-shadow: -1px 1px var(--sec);
    transition: 0.46s;
}

.contact .icon-socail .icon:hover {
    border: 1px solid var(--main);
    box-shadow: -1px 1px var(--main);
    transform: translateY(5px);
}

.form-control[placeholder] {
    font-size: 15px;
    font-weight: 300;
}



button {
    font-family: inherit;
    float: left;
    font-size: 20px;
    background: var(--main);
    color: white;
    padding: 0.7em 1em;
    padding-left: 0.9em;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.2s;
    cursor: pointer;
}

button span {
    display: block;
    margin-left: 0.3em;
    transition: all 0.3s ease-in-out;
}

button svg {
    display: block;
    transform-origin: center center;
    transition: transform 0.3s ease-in-out;
}

button:hover .svg-wrapper {
    animation: fly-1 0.6s ease-in-out infinite alternate;
}

button:hover svg {
    transform: translateX(1.2em) rotate(45deg) scale(1.1);
}

button:hover span {
    transform: translateX(5em);
}

button:active {
    transform: scale(0.95);
}

@keyframes fly-1 {
    from {
        transform: translateY(0.1em);
    }

    to {
        transform: translateY(-0.1em);
    }
}
.contact-icon {
    color: var(--main) !important;
}
/* end form  */
