﻿@import url(./variable.css);
/* line */
.line-Wrapper {
    display: flex;
    justify-content: center;
}
.footer a {
    color: #fff !important;
}
.line-container {
    position: relative;
    width: 80%;
    height: 120px;
}

.horizontal-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primaryColor);
    /* طلایی */
}

.corner-line {
    position: absolute;
    top: 50%;
    right: 0;
    width: 2px;
    height: 80px;
    background-color: var(--primaryColor);
    transform: translateY(0);
}

.hexagon {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(100%);
    width: 30px;
    height: 30px;
    background-color: var(--primaryColor);
    margin: 0 auto;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
/* line */

.title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

    .title h2 {
        width: 80%;
        text-align: center;
        font-size: 2rem;
        font-weight: bold;
        position: relative;
    }

.main-content {
    margin-top: 50px;
}

.right-box {
    height: 410px;
    background-color: var(--primaryColor);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    border-radius: 20px;
    padding: 20px;
    line-height: 30px;
}

    .right-box h3 {
        font-size: 2rem;
        font-weight: bold;
        color: white;
        border-bottom: 2px solid white;
        padding: 20px;
    }

    .right-box ul {
        display: flex;
        flex-direction: column;
        gap: 20px
    }

        .right-box ul li a {
            color: white;
        }

.item {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    gap: 10px;
}

    .item input {
    }

.left-box {
    background-color: #eaf3ff;
    padding: 30px;
    border-radius: 20px;
}

    .left-box button {
        border: none;
        background-color: var(--primaryColor);
        border-radius: 10px;
        color: white;
        padding: 10px;
        width: 100px;
    }
