/*! الخطوط */
@font-face {
    font-family: "font_main";
    src: url("../assets/fonts/codec-pro-regular/codec-pro-regular.ttf");
}

@font-face {
    font-family: "font_bold";
    src: url("../assets/fonts/codec-pro-extra-bold/codec-pro-extra-bold.ttf");
}


/*! الألوان الرئيسية */
:root {
    --white-color: #fff;
    --black-color: #000;
    --main-color: rgba(3, 52, 0, 1);
    --second-color: rgba(14, 115, 0, 1);
    --light-color: rgba(199, 255, 197, 0.33);
}

body {
    font-family: "font_main";
    direction: rtl;
}

::selection {
    background-color: var(--second-color);
    color: var(--white-color);
}



* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    outline: none;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

*:focus {
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

button:focus,
a {
    outline: none;
}

button {
    border: none;
}

*:focus {
    outline: none;
}


h1,
h2,
h3,
h4,
h5,
h6,
p,
figure {
    margin: 0;
}

img {
    width: 100%;
    height: 100%;
}

/*! Globals */
.main-container {
    width: 90%;
    margin: auto;
}
.section {
    padding: 50px 0;
}
/* section {
    overflow: hidden;
} */

/*! Head Title */
.head-title {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px auto;
}

.head-title .title {
    background-color: var(--light-color);
    border-radius: 20px;
}
.head-title .title-Form {
    background-color: transparent;
}
.head-title .title-Form h2 {
    padding-inline: 0;
    font-size: clamp(17px, 3vw, 20px);
    animation: none;
}

.head-title h2 {
    padding: 10px 20px;
    font-size: clamp(25px, 3vw, 30px);
    font-weight: bold;
    background-image: linear-gradient(to right, var(--main-color), rgb(24, 188, 2));
    background-size: cover;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: animate 4s linear infinite;
}

@keyframes animate {
    to {
        background-position-x: -500px;
    }
}


/*! Main Title */
.main-title {
    padding-top: 20px;
}
.main-title h3,
.main-title p {
    font-size: clamp(17px, 3vw, 20px);
    font-weight: bold;
}
.main-title p {
    background-image: linear-gradient(to right, var(--main-color), var(--second-color));
    background-size: cover;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.btn-form {
    background: linear-gradient(-45deg, var(--main-color), var(--second-color));
    background-size: 200% 100%;
    color: var(--white-color);
    padding: 10px ;
    width: 150px;
    border-radius: 30px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-content: center;
    transition: background-position 0.5s ease;
}
.btn-form:hover {
    background-position: 100% 0;
}