.breadcrumb_area {
    background-color: unset !important;
}

.Introduction {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 7rem;

    padding-bottom: 50px;

}

.Introduction .navbar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1rem;
}

.Introduction .navbar .card {
    border-radius: 26px;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.05);
    border: unset;
}

.Introduction .navbar .card a {
    padding: 1rem 1rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.Introduction .navbar .card .icon {
    /*display: inline-block;*/
    background-color: var(--theme-main-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.Introduction .navbar .card.Consulting .icon {
    background-color: #2eaa83;
}

.Introduction .navbar .card .title {
    font-size: 16px;
    color: var(--theme-main-color);
    font-weight: 300 !important;
}

.Introduction .navbar .card.Consulting .title {
    color: #2eaa83;
}

.Introduction .navbar .card i {
    font-size: 29px;
    color: #fff;
}

.Introduction .navbar .card .more {
    position: absolute;
    bottom: -14px;
    background-color: var(--theme-main-color);
    color: #fff;
    font-size: 14px;
    padding: 4px 12px;
    border-radius: 8px;
    font-weight: 700;
}

.Introduction .navbar .card.Consulting .more {
    background-color: #2eaa83;
}

.Introduction .video-box {
    grid-column: 2/4;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.Introduction .video-box video {
    border-radius: 16px;
    object-fit: cover;
}

.Introduction .video-box .popup_video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.Introduction_text_content {
    position: relative;
    padding-bottom: 2rem;
    height: 250px;


}

.arrow-bottom {
    width: 100%;
    position: absolute;
    bottom: -20px;
    background: linear-gradient(180deg, rgba(246, 248, 255, 0) 0%, rgba(246, 248, 255, 0.1) 0%, rgba(246, 248, 255, 0.3) 0%, rgba(246, 248, 255, 1) 100%, rgba(246, 248, 255, 1) 100%);;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    padding-top: 2rem;
}

.Introduction_text {
    height: max-content;
    margin: 10px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    line-height: 2.5 !important;
}

.Introduction_text2 {
    line-height: 2.5 !important;
    text-align: justify;
}

.arrow-bottom :is(svg,span) {
    cursor: pointer;
    transition: all .3s;
}

.arrow-bottom a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #000;
}

.arrow-bottom svg:hover {
    transform: scale(1.2);
}

.testimonial-area_card {
    background-color: #fff;
    border-radius: 1rem;
    overflow: hidden;
    padding: 1rem;
    width: 100%;
}

.testimonial-area_card .author_details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
}

.testimonial_area_video video {
    border-radius: 12px;
}

.testimonial_area_video {
    position: relative;
}

.testimonial_area_video .blog_play {
    width: 70px;
    height: 70px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.testimonial_area_video .blog_play i {
    font-size: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accordion details {
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    border-radius: 1rem;
    overflow: hidden;
}

.accordion summary {
    padding: 1rem;
    background-color: #fff;
    border-radius: 1rem;
    position: relative;
    font-weight: 800;

}

.accordion summary::marker {
    content: "";


}

.accordion summary::before {
    content: "+";
    position: absolute;
    left: 1rem;
    font-size: 22px;
    font-weight: 700;

}

.accordion details .content-summary {
    padding: 0 1.5rem;
    background-color: #fff;
}

.accordion details[open] > summary::before {
    content: "-";


}

.icon-background {
    transform: rotate(0);
    height: 90px;
    width: 114px;

}

.icon-process {
    width: 50px;
    height: 50px;
}

.path {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    margin: 0;
    transform: rotate(90deg);
    position: relative;
}

.path .line-path {
    flex: 1 1 0;
    height: 50px;
    background-size: 3px 10px, 3px 100%;
    border: none;
    width: 2px;
    min-height: 24px;


}

.image_card_path {
    margin-bottom: 20px;
}

.path .circle-path {
    width: 14px;
    height: 14px;
    border-radius: 50%;

}

.phone-icon1 {
    animation: phone 2s linear infinite;
    transform: rotateY(180deg);

}

@keyframes phone {
    0% {
        transform: rotateY(180deg) scale(1);
    }
    20% {
        transform: rotateY(180deg) scale(1.15);
    }
    30% {
        transform: rotateY(180deg) scale(1.15) rotate(25deg);
    }
    40% {
        transform: rotateY(180deg) scale(1.15) rotate(0);
    }
    50% {
        transform: rotateY(180deg) scale(1.15) rotate(-15deg);
    }
    60% {
        transform: rotateY(180deg) scale(1.15) rotate(0);
    }
    70% {
        transform: rotateY(180deg) scale(1.15) rotate(25deg);
    }
    80% {
        transform: rotateY(180deg) scale(1.15) rotate(0);
    }
    100% {
        transform: rotateY(180deg) scale(1) rotate(0);
    }
}

@media screen and (max-width: 1300px) {
    .Introduction {
        gap: 4rem;
    }
}

@media screen and (max-width: 1200px) {

    .Introduction {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .Introduction .video-box {
        grid-column: unset;
        order: -1;
    }

}

@media screen and (max-width: 991px) {
    .path {
        transform: rotate(0deg) translate(10px, 10px);
        margin: 12px 0 0 8px;

    }

    .image_card_path {
        margin-bottom: 0;
        margin-left: 20px;
    }

    .icon-background {
        position: relative;
        transform: rotate(-90deg);
        height: 56px;
        width: 102px;
        z-index: -1;
    }

    .icon-process {
        position: relative;
        width: 40px;
        height: 40px;
        z-index: 10;
    }
}

@media screen and (max-width: 768px) {

    .icon-background {
        height: 86px;
        width: 152px;
    }

    .icon-process {
        width: 30px;
        height: 30px;
    }

    .Introduction {

        margin-top: 0;
        margin-bottom: 0;

    }

    #portfolio_area .breadcrumb_area {
        margin-bottom: 85px !important;
    }

    .Introduction .navbar {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 1rem;
    }

    .Introduction .navbar .card a {
        padding: 10px 10px 2rem;

        gap: 10px;
    }

    .Introduction .navbar .card .icon {
        width: 40px;
        height: 40px;
    }

    .Introduction .navbar .card i {
        font-size: 20px;
    }

    .Introduction .navbar .card svg {
        width: 20px;
        height: 20px;
    }

    .Introduction .navbar .card .title {
        font-size: 16px;
        color: var(--theme-main-color);
        font-weight: 300 !important;
    }

    .Introduction .navbar .card .more {
        bottom: -14px;
        font-size: 12px;
        padding: 4px 12px;
    }

    .Introduction .video-box .popup_video {
        width: 50px;
        height: 50px;
    }

    .Introduction .video-box .popup_video i {
        font-size: 18px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .testimonial_area_video .blog_play {
        width: 50px;
        height: 50px;

    }

    .testimonial_area_video .blog_play i {
        font-size: 18px;

    }
}

@media screen and (max-width: 500px) {
    .icon-background {
        height: 86px;
        width: 200px;
    }

    .icon-process {
        width: 30px;
        height: 30px;
    }
}
