:root {
    --dark-color: #11397f;
    --green-color: #33d1cc;
    --yellow-color: #f6dc87;
    --section-color: #d7f3f6;
    --text-color: #303c3c;
    --blue-color: #80d7e0;
}
body {
    font-family: 'Cairo', sans-serif;
    font-family: 'Open Sans', sans-serif;
    font-family: 'Poppins', sans-serif;
    font-family: 'Work Sans', sans-serif;
    font-family: 'Tajawal', sans-serif;
    height: 1000px;
}
a {
    display: block;
}
/* Start Component  */
.main-btn {
    background-color: var(--yellow-color);
    color: black;
    padding: 0.5rem 1rem;
}
.main-btn:hover {
    color: var(--green-color);
}
.main-title::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 2px;
    background-color: var(--green-color);
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}
.background {
    position: relative;
    z-index: -100;
    bottom: -1px;
}
/* End Component  */
/* Start First Header  */
.first-header {
    height: 40px;
    position: relative;
}
.first-header::after {
    content: "";
    position: absolute;
    width: 40%;
    height: 100%;
    background-color: #80d7e0;
    border-radius: 40px 0 0 0;
}
@media (max-width: 576px) {
    .first-header::after {
        display: none;
    }
}
.first-header .icon a {
    color: var(--text-color);
    font-weight: 500;
}
/* End First Header  */
/* Start Header  */
.navbar {
    background-color: var(--dark-color);
}
.navbar .navbar-brand img {
    max-width: 150px;
}
.navbar .navbar-nav .nav-link {
    color: white;
}
.navbar .navbar-nav .nav-link.active,
.navbar .navbar-nav .nav-link:focus,
.navbar .navbar-nav .nav-link:hover {
    color: var(--green-color);

}
.navbar .search {
    border-left: 1px solid var(--green-color);
}
.navbar .search svg {
    color: var(--green-color);
}
.navbar .navbar-toggler {
    color: white;
    font-size: 25px;
    border-color: white;
}
/* End Header  */
/* Start Landing  */
.landing {
    margin-bottom: -200px;
}
.landing .land h1 {
    color: var(--dark-color);
}
.landing .land .login .box a:first-child {
    color: var(--dark-color);
}
.landing .image-land::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background-color: var(--yellow-color);
    z-index: -1;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
    .landing .image-land::before {
        display: none;
    }
}
/* End Landing  */
/* Start Features  */
.features {
    background-color: var(--section-color);
}
.features h1 {
    color: var(--text-color);
}
.features .feat  {
    background-color: var(--yellow-color);
    color: var(--text-color);
}
.features .feat .icon svg {
    font-size: 70px;
}
.features .feat .document {
    height: 160px;
}
.features .feat .link a {
    color: var(--text-color);
}
.features .feat:hover .link svg {
    animation: moving-arrow .6s linear infinite;
}
/* End Features  */
/* Start Story  */
.story {
    background-color: var(--text-color);
    color: white;
}
.story .rubric .success {
    color: var(--yellow-color);
}
.story .video video {
    border-radius: 15px;
}
.story .video iframe {
    border-radius: 15px;
    height: 235px !important;
}
.story .box svg {
    font-size: 60px;
    color: var(--blue-color);
}
.story .box span {
    font-size: 10px;
}
/* End Story  */
/* Start Info  */
.info {
    background-color: var(--section-color);
}
.info h1 {
    color: var(--text-color);
}
.info .contain {
    position: relative;
    background-color: var(--blue-color);
    border-radius: 15px;
}
.info .contain .box {
    position: relative;
}
.info .contain .box ::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 100%;
    border-radius: 10px;
    background-color: var(--yellow-color);
    top: 0;
    right: -12px;
    
}
.info .contain .box h2 {
    color: #4a656c;
}
.info .contain .video video {
    border-radius: 15px;
}
/* End Info  */
/* Start Subscribe  */
.subscribe {
    margin-top: -60px;
}
.subscribe .data h1 {
    color: var(--dark-color);
}
.subscribe .data .advanced {
    color: var(--dark-color);
}
.subscribe input[type="email"] {
    border: 1px solid #9a9a9a;
    background-color: #eaeaea;
    width: 60%;
}
.subscribe input[type="email"]:focus {
    outline: none;
}
.subscribe ::placeholder {
    color: #c0c0c0;
}
.subscribe input[type="submit"] {
    color: var(--text-color);
    width: fit-content;
}
.subscribe .data .time {
    margin-right: 40px;
    color: #c0c0c0
}
@media (max-width: 480px) {
    .subscribe .data {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .subscribe input[type="submit"] {
        margin-top: 10px;
    }
    .subscribe .data .time {
        margin-right: 0;
    }
}
/* End Subscribe  */
/* Start Footer  */
.footer {
    background-color: var(--dark-color);
    color: white
}
.footer a {
    color: rgb(233, 233, 233);
}
/* End Footer  */
/* Start Animation */
@keyframes moving-arrow {
    100% {
        transform: translateX(10px);
    }
}
/* End Animation */