﻿@import url(./variable.css);
/* line */
.line-Wrapper {
    display: flex;
    justify-content: center;
}
.footer a {
    color: #fff !important;
}
.my-10 {
    margin-block: 10rem;
}

.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 */
.box-image {
    width: 80%;
    height: 200px;
    transform: translateY(80px);
    transition: all 0.5s ease;
}

    .box-image img {
        width: 100%;
        height: 100%;
        border-radius: 20px;
    }

.box-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .box-container:hover .box-image {
        transform: scale(1.01) translateY(80px);
    }

.main-box {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 100px 30px 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

    .main-box p {
        line-height: 25px;
    }

    .main-box h2 {
        font-size: 1.1rem;
        font-weight: bold;
    }

    .main-box span {
        font-size: 0.9rem;
        color: rgb(124, 124, 124);
    }

    .main-box a {
        color: rgb(124, 123, 123);
    }

        .main-box a svg {
            font-size: 10px;
        }

.title h1 {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}
