﻿#solutions-main-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    font-size: 40px;
    /*    text-shadow: 0px 0px 3px rgba(0,0,0,1);*/
    text-shadow: -1px 0 0 rgba(0, 0, 0, 0.1), 1px 0 0 rgba(0, 0, 0, 0.1), 0 -1px 0 rgba(0, 0, 0, 0.1), 0 1px 0 rgba(0, 0, 0, 0.1), -1px -1px 0 rgba(0, 0, 0, 0.1), 1px -1px 0 rgba(0, 0, 0, 0.1), -1px 1px 0 rgba(0, 0, 0, 0.1), 1px 1px 0 rgba(0, 0, 0, 0.1);
}


ul{
    padding:20px 30px;
}

p {
    font-size: 18px;
    line-height: 1.8;
}

li{
    font-size:18px;
    line-height:1.8;
}

.process-text {
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
}

.processes-banner-area {
    background-image: linear-gradient( to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 1%, rgba(0, 0, 0, 0.7) 2%, rgba(0, 0, 0, 0.6) 3%, rgba(0, 0, 0, 0.5) 4%, rgba(0,0,0,0.4) 5%, rgba(0,0,0,0.3) 6%, rgba(0,0,0,0.2) 7%, rgba(0,0,0,0.1) 8%, rgba(0,0,0,0.05) 9%, rgba(0,0,0,0.04) 10%, rgba(0,0,0,0.03) 11%, rgba(0,0,0,0.03) 11%, rgba(0,0,0,0.02) 12%, rgba(0,0,0, 0.01) 25%, rgba(0, 0, 0, 0) 50% ), url('/images/about-us/processes_banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    opacity:0;
    transition: opacity .6s linear;
}

.process-section {
    margin: 0 auto;
}

.process-title {
    font-size: 20px;
    font-weight: 600;
    color: #0071bc;
    margin-bottom: 40px;
}

.process-timeline {
    position: relative;
    padding-right: 20px;
}

.process-step {
    display: grid;
    grid-template-columns: 40px 1fr;
    column-gap: 15px;
    margin-bottom: 40px;
}

.process-line {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .process-line::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: -40px;
        width: 2px;
        background: #2f7ec4;
        opacity: .4;
    }

.process-bullet {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2f7ec4;
    margin-top: 12px;
}

.process-arrow {
    margin-top: auto;
    font-size: 18px;
    color: #2f7ec4;
}

.process-content {
}

.process-heading-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.process-heading {
    font-weight: 600;
    color: #2f7ec4;
    font-size: 25px;
    padding-bottom:5px;
    line-spacing:1.8;
    white-space: nowrap;
}

.process-heading-second {
    color: #232323;
}

.process-arrow-horizontal {
    font-size: 18px;
    color: #2f7ec4;
}


/* ANİMASYONLU OK */
/* Timeline'ın sol kolonunun üzerine gelen görünmez alan */
.process-animated-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 40px;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.process-animated-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 10px solid #2f7ec4;
    top: -20px;
    opacity: 0;
    animation: processArrowDown 21s linear infinite;
}

    .process-animated-arrow:nth-child(2) {
        animation-delay: 3s;
    }

    .process-animated-arrow:nth-child(3) {
        animation-delay: 6s;
    }

    .process-animated-arrow:nth-child(4) {
        animation-delay: 9s;
    }

    .process-animated-arrow:nth-child(5) {
        animation-delay: 12s;
    }

    .process-animated-arrow:nth-child(6) {
        animation-delay: 15s;
    }

    .process-animated-arrow:nth-child(7) {
        animation-delay: 18s;
    }

@keyframes processArrowDown {
    0% {
        top: -20px;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    80% {
        top: calc(100% - 10px);
    }

    100% {
        top: calc(100% + 20px);
        opacity: 0;
    }
}

.main-heading {
    padding: 0px 20px;
}

.process-main-heading {
    padding-bottom: 50px;
    line-height: 50px;
    padding-left: 20px;
}


/*<!-- RESPONSIVE: -->*/
@media( max-width: 767px ) {
    .process-step
    {
        grid-template-columns: 24px 1fr;
        column-gap: 15px;
    }

    .process-title {
        font-size: 18px;
    }
    
    .process-heading-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .process-heading {
        white-space: normal;
    }
    
    .process-animated-line {
        width: 24px;
    }

}


@media( min-width: 575px ) {
    .main-heading {
        padding: 0px 0px;
    }

    .process-main-heading {
        padding-left: 0px;
    }

    .process-timeline {
        padding-right: 0px;
    }
}

@media (min-width: 768px) {
    #solutions-main-title {
        font-size: 100px;
    }

    .process-main-heading {
        /*        margin-bottom: 75px;*/
    }
}

@media( min-width: 991px ){
    p {
        font-size: 16px;
    }

    li {
        font-size: 16px;
    }

    .process-text {
        font-size: 16px;
        text-align: justify;
    }
}

@media( min-width: 1199px ){
    p {
        font-size: 17px;
    }

    li {
        font-size: 17px;
    }

    .process-text {
        font-size: 17px;
    }
}

@media( min-width: 1440px ){
    p {
        font-size: 18px;
    }

    li {
        font-size: 18px;
    }

    .process-text {
        font-size: 18px;
    }
}