/*! الألوان الرئيسية */
:root {
    --white-color: #fff;
    --black-color: #000;
    --text-gradient: linear-gradient(90deg, #111149 0%, #361C7E 50%);
    --text-color: #111149;
    --main-color: rgba(54, 28, 126, 1);
    --second-color: rgba(17, 17, 73, 1);
}

body {
    font-family: Arial, Helvetica, sans-serif;
    overflow-y: scroll;
    overflow-x: hidden;
}

* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    outline: none;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

::selection {
    background-color: #714fc6d5;
    color: var(--white-color);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
    border-radius: 10px;
}

*:focus {
    outline: none;
}

a {
    text-decoration: none;
    color: var(--color-white);
    font-size: 13px;
    font-weight: 600;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
button:focus,
a {
    outline: none;
}

button {
    border: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

img {
    width: 100%;
    height: 100%;
}


/*! Globals */
.top-nav .my-container,
.bottom-nav .my-container {
    margin: 0px auto;
}
.my-container {
    width: 90%;
    margin: 0 auto;
}
section.space {
    /* margin: 50px auto; */
    /* margin: 100px auto; */
    padding: 150px 0;
    overflow: hidden;
}

.main-btn {
    background-color: var(--white-color);
    color: var(--main-color);
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    width: 120px;
    height: 32px;
    border: transparent;
    width: 100px;
    height: 35px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    border: 1px solid  var(--main-color);
}
.main-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--main-color);
    transition: left 0.4s ease;
    z-index: -1;
}
.main-btn:hover {
    color: var(--white-color);
    border: 1px solid #dad8d859;
}
.main-btn:hover::before {
    left: 0;
}