﻿@import url(./variable.css);
/* line */
.footer a {
    color: #fff !important;
}
.line-Wrapper {
    display: flex;
    justify-content: center;
}

.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 */
.carousel-control-prev, .carousel-control-next {
    width: auto;
}

.carousel-item img {
    height: 500px;
    width: 100% ;
    object-fit: cover;
}

.content-header h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 50px;
    text-align: center;
}

@media only screen and (max-width: 800px) {
    .content-header h2 {
        font-size: 1rem;
    }
}

.content-header p {
    line-height: 30px;
    text-align: justify;
}

.content-main {
    margin-top: 35px;
}

.content-text {
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgb(228, 225, 225);
    line-height: 30px;
}

.content-image {
    text-align: center;
}

    .content-image img {
        width: 100%;
        border-radius: 20px;
    }

@media only screen and (max-width:769px) {
    .content-image img {
        margin: 30px 0;
    }
}

.content-main .col-12 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-text h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}
/* animation */
.box {
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.8s ease;
}

    .box.show {
        opacity: 1;
        transform: translateY(0);
    }
/* animation */
