/* =========================================================
   HABAŞ VISION / EXPERIENCE V1
========================================================= */

.habas-vision-v1 {
    position: relative;
    width: 100%;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient( 120deg, #05182c 0%, #07365a 48%, #004e7d 100% );
    color: #fff;
}


/* =========================================================
   BACKGROUND IMAGE
========================================================= */

.habas-vision-v1-bg {
    position: absolute;
    inset: -7%;
    background-image: linear-gradient( 180deg, rgba(3, 18, 34, .25), rgba(3, 18, 34, .75) ), url('/Content/images/habas-vision-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: .62;
    transform: scale(1.05);
    animation: habasVisionBackground 18s ease-in-out infinite alternate;
}


@keyframes habasVisionBackground {

    0% {
        transform: scale(1.05) translate3d(-1%, 0, 0);
    }

    100% {
        transform: scale(1.13) translate3d(1.5%, -1%, 0);
    }
}


/* =========================================================
   LIGHT GLOWS
========================================================= */

.habas-vision-v1-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}


.habas-vision-v1-glow-1 {
    width: 600px;
    height: 600px;
    top: -280px;
    left: 15%;
    background: rgba(0, 145, 220, .26);
    animation: habasGlowOne 10s ease-in-out infinite alternate;
}


.habas-vision-v1-glow-2 {
    width: 650px;
    height: 650px;
    right: -180px;
    bottom: -350px;
    background: rgba(0, 115, 190, .25);
    animation: habasGlowTwo 13s ease-in-out infinite alternate;
}


@keyframes habasGlowOne {

    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(120px, 90px);
    }
}


@keyframes habasGlowTwo {

    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(-140px, -60px);
    }
}


/* =========================================================
   ORBIT LINES
========================================================= */

.habas-vision-v1-orbits {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 120px;
    width: 100%;
    height: 420px;
    z-index: 1;
    pointer-events: none;
    opacity: .58;
}


    .habas-vision-v1-orbits path {
        fill: none;
        stroke: rgba(159, 219, 248, .75);
        stroke-width: 1;
        stroke-dasharray: 12 13;
        animation: habasOrbitMove 30s linear infinite;
    }


        .habas-vision-v1-orbits path:nth-child(2) {
            opacity: .65;
            animation-duration: 38s;
        }


        .habas-vision-v1-orbits path:nth-child(3) {
            opacity: .38;
            animation-duration: 47s;
        }


@keyframes habasOrbitMove {

    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -1500;
    }
}


/* =========================================================
   INNER
========================================================= */

.habas-vision-v1-inner {
    position: relative;
    z-index: 5;
    width: calc(100% - 120px);
    max-width: 1600px;
    margin: 0 auto;
    padding: 85px 0 90px;
}


/* =========================================================
   HEADING
========================================================= */

.habas-vision-v1-heading {
    max-width: 780px;
    margin: 0 auto 72px;
    text-align: center;
}


.habas-vision-v1-kicker {
    margin-bottom: 14px;
    color: rgba(255,255,255,.66);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
}


.habas-vision-v1-heading h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(36px, 3.3vw, 58px);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -1px;
}


    .habas-vision-v1-heading h2 strong {
        display: block;
        margin-top: 5px;
        font-weight: 700;
    }


.habas-vision-v1-heading p {
    max-width: 600px;
    margin: 22px auto 0;
    color: rgba(255,255,255,.72);
    font-size: 16px;
    line-height: 1.65;
}


/* =========================================================
   STAT GRID
========================================================= */

.habas-vision-v1-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    border-top: 1px solid rgba(255,255,255,.18);
    border-bottom: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.055);
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
}


/* =========================================================
   STAT
========================================================= */

.habas-vision-v1-stat {
    position: relative;
    min-height: 210px;
    padding: 39px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid rgba(255,255,255,.17);
    transition: background .35s ease, transform .35s ease;
}


    .habas-vision-v1-stat:last-child {
        border-right: 0;
    }


    .habas-vision-v1-stat:hover {
        background: rgba(255,255,255,.11);
    }


    /* küçük üst vurgu */

    .habas-vision-v1-stat::before {
        content: "";
        position: absolute;
        top: -1px;
        left: 30px;
        width: 0;
        height: 3px;
        background: #e3262e;
        transition: width .35s ease;
    }


    .habas-vision-v1-stat:hover::before {
        width: 55px;
    }


/* =========================================================
   NUMBER
========================================================= */

.habas-vision-v1-number {
    color: #ffffff;
    font-size: clamp(34px, 3vw, 52px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1px;
}


    .habas-vision-v1-number sup {
        position: relative;
        top: -12px;
        margin-left: 2px;
        font-size: 21px;
    }


    .habas-vision-v1-number small {
        margin-left: 7px;
        font-size: 17px;
        font-weight: 600;
        letter-spacing: 0;
    }


/* =========================================================
   LABEL
========================================================= */

.habas-vision-v1-label {
    max-width: 260px;
    color: rgba(255,255,255,.78);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .habas-vision-v1-inner {
        width: calc(100% - 60px);
    }


    .habas-vision-v1-stats {
        grid-template-columns: repeat(2,1fr);
    }


    .habas-vision-v1-stat:nth-child(2) {
        border-right: 0;
    }


    .habas-vision-v1-stat:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,.17);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .habas-vision-v1 {
        min-height: auto;
    }


    .habas-vision-v1-inner {
        width: calc(100% - 32px);
        padding: 60px 0;
    }


    .habas-vision-v1-heading {
        margin-bottom: 45px;
    }


        .habas-vision-v1-heading h2 {
            font-size: 35px;
        }


    .habas-vision-v1-stats {
        grid-template-columns: 1fr;
    }


    .habas-vision-v1-stat {
        min-height: 170px;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.17);
    }
}


/* =========================================================
   FAALİYET ALANLARIMIZ BAŞLIĞI
========================================================= */

.habas-vision-v1 .habas-vision-v1-activities-title {
    margin-top: 58px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #ffffff;
    font-size: 17px;
    font-weight: 650;
    line-height: 1.2;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}


.habas-vision-v1
.habas-vision-v1-activities-line {
    width: 42px;
    height: 2px;
    margin-top: 14px;
    background: #e1262d;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(225, 38, 45, .22);
}