﻿.sj-blue-redesign {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    align-items: center;
    background: radial-gradient(circle at 18% 72%, rgba(255,255,255,.95) 0 13%, transparent 14%), linear-gradient(135deg, #f7fbff 0%, #eaf2ff 43%, #1f5edc 43%, #123b96 100%);
}

.sj-hero-model {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 90px 4% 0 6%;
}

    .sj-hero-model img {
        max-height: 88vh;
        max-width: 100%;
        object-fit: contain;
        filter: drop-shadow(0 35px 50px rgba(18,59,150,.28));
    }

.sj-hero-info {
    position: relative;
    z-index: 3;
    padding: 110px 7% 70px 5%;
    color: #fff;
    text-align: right;
    max-width: 40%;
    text-align: justify;
}

    .sj-hero-info:before {
        position: absolute;
        width: 189px;
        height: 40px;
        background: #d40404;
        content: '';
        top: 140px;
        transform: rotate(-2deg);
        border-radius: 5px;
        right: 106px;
    }

    .sj-hero-info a {
        color: #fff;
        font-weight: 200;
        margin-left: 20px
    }

.sj-hero-phone {
    position: absolute;
    top: 55px;
    left: 7%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #fff;
}

    .sj-hero-phone span {
        font-size: 13px;
        opacity: .85;
    }

    .sj-hero-phone strong {
        font-size: 28px;
        direction: ltr;
    }

.sj-hero-label {
    display: inline-block;
    margin-bottom: 14px;
    color: #dbeafe;
    font-weight: 900;
    letter-spacing: 3px;
    animation: floatShape2 18s ease-in-out infinite;
}

.sj-hero-info h1 {
    font-size: 22px;
    line-height: 1.1;
    margin: 0 0 12px;
    color: #fff;
    position: relative;
    animation: floatShape2 28s ease-in-out infinite;
}

@keyframes floatShape2 {
    0%,100% {
        transform: translate(0,0) rotate(0);
    }

    50% {
        transform: translate(-2px,-5px) rotate(-3deg);
    }
}

.sj-hero-info h2 {
    font-size: 38px;
    margin: 0 0 22px;
    color: #dbeafe;
}

.sj-hero-info p {
    max-width: 720px;
    font-size: 14px;
    line-height: 2.1;
    color: #eef6ff;
    margin-bottom: 32px;
    color: #000;
    letter-spacing: -1.5px;
    padding: 20px;
    background: linear-gradient(-90deg , #ffffff78 , transparent);
    border-radius: 10px;
    animation: floatShape2 28s ease-in-out infinite;
    font-weight: 200;
}

.sj-hero-service-list {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    gap: 14px;
    max-width: 500px;
}

    .sj-hero-service-list a {
        background: rgba(255,255,255,.14);
        border: 1px solid rgba(255,255,255,.32);
        color: #fff;
        padding: 14px 18px;
        border-radius: 18px;
        font-weight: 900;
        backdrop-filter: blur(10px);
    }

@media (max-width: 900px) {
    .sj-blue-redesign {
        grid-template-columns: 1fr;
        background: linear-gradient(180deg, #1f5edc, #123b96);
    }

    .sj-hero-model {
        height: 42vh;
        padding-top: 30px;
        opacity: .9;
    }

        .sj-hero-model img {
            max-height: 42vh;
        }

    .sj-hero-info {
        padding: 30px 6% 70px;
        text-align: center;
    }

        .sj-hero-info h1 {
            font-size: 40px;
        }

        .sj-hero-info h2 {
            font-size: 26px;
        }

        .sj-hero-info p {
            font-size: 16px;
        }

    .sj-hero-phone {
        position: static;
        align-items: center;
        margin-bottom: 22px;
    }

    .sj-hero-actions {
        justify-content: center;
    }

    .sj-hero-service-list {
        grid-template-columns: 1fr;
        margin-inline: auto;
    }
}
