/* --------------------------------------------------------------------------------
   MD & CEO's Message
-------------------------------------------------------------------------------- */

/* === hero === */
.mdHero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding-top: 60px;
    background: linear-gradient(115deg, #00537f 0%, #0075b8 45%, #56b6c5 100%);

    .rel {
        position: relative;
        z-index: 2;
    }

    .aife {
        align-items: flex-end;
    }

    p {
        color: rgba(255, 255, 255, 0.92);
        margin-bottom: 20px;
    }
}

.heroBlob {
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    pointer-events: none;

    &.heroBlob_1 {
        top: -180px;
        right: -140px;
        width: 520px;
        height: 520px;
        background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 68%);
    }

    &.heroBlob_2 {
        left: -160px;
        bottom: -220px;
        width: 620px;
        height: 620px;
        background: radial-gradient(circle at 50% 50%, rgba(103, 200, 199, 0.35), rgba(103, 200, 199, 0) 70%);
    }
}

.heroText {
    padding: 0 0 70px 30px;
}


.heroSalute {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Helvetica Neue';
}

/* md photo */
.mdImgWrap {
    position: relative;
    text-align: center;

    .mdImg {
        position: relative;
        display: inline-block;

        &::before {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 0;
            width: 118%;
            padding-top: 118%;
            border-radius: 50%;
            transform: translateX(-50%);
            background: radial-gradient(circle at 50% 60%, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 65%);
        }

        img {
            position: relative;
            z-index: 2;
            width: auto;
            max-width: 100%;
            max-height: 760px;
            display: block;
        }
    }
}

.mdTag {
    position: absolute;
    left: 0;
    bottom: 90px;
    z-index: 3;
    padding: 14px 26px;
    border-radius: 20px;
    background-color: rgb(255 255 255 / 60%);
    box-shadow: 0 10px 25px -14px rgba(0, 0, 0, 0.6);
    width: 100%;

    .tagName {
        display: block;
        font-size: 24px;
        font-weight: 700;
        color: var(--blue);
        font-family: 'Helvetica Neue';
    }

    .tagRole {
        display: block;
        font-size: 24px;
        font-weight: 700;
        color: var(--blue);
        font-family: 'Helvetica Neue';
    }
}

/* pull quote inside hero */
.quoteCard {
    position: relative;
    margin-top: 50px;
    padding: 30px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(2px);

    .quoteTxt {
        margin-bottom: 0;
        font-weight: 700;
        color: var(--white);
        font-family: 'Helvetica Neue';
    }
}

.quoteIc {
    position: absolute;
    width: 70px;
    opacity: 1;

    img {
        width: 100%;
        display: block;
    }

    &.quoteIcTop {
        top: -30px;
        left: 30px;
    }

    &.quoteIcBtm {
        right: 30px;
        bottom: -30px;
    }
}

/* === letter body === */
.letterCard {
    position: relative;
    height: 100%;
    padding: 40px 35px 35px;
    margin-bottom: 30px;
    border-radius: 30px;
    background-color: #f7fbfd;
    border: 1px solid #dceaf3;

    p {
        margin-bottom: 20px;
    }
}

.letterHead {
    margin-bottom: 18px;
}

/* === four strategic unlocks === */
.unlockBand {
    padding: 60px 0;
    background: linear-gradient(115deg, #0075b8 0%, #56b6c5 100%);
}

.unlockBox {
    height: 100%;
    padding: 20px 15px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.35);

    .unlockIc {
        height: 90px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;

        img {
            max-width: 90px;
            max-height: 90px;
        }
    }

    .unlockName {
        margin-bottom: 0;
        font-size: 24px;
        font-weight: 500;
        color: var(--white);
        font-family: 'Helvetica Neue';
    }
}

.unlockBand .row>div:last-child .unlockBox {
    border-right: none;
}

.mdIconWrap {
    display: flex;
    flex-wrap: wrap;

    .mdIconItem {
        width: calc(100% / 4);
        text-align: center;
        padding: 10px;

        .mdIcon {
            height: 60px;
            margin: 0 auto;
            margin-bottom: 20px;
        }
    }
}

.lineCont {
    border-bottom: 1px solid #ffffff;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.customList {
    li {
        font-weight: bold;
        font-family: 'Helvetica Neue';
    }
}

.busWrap {
    display: flex;
    flex-wrap: wrap;

    .busIcon {
        width: 110px;
        height: 110px;
        border-radius: 10px;
        padding: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .eachIconH {
        width: calc(100% - 110px);
        padding-left: 15px;
    }
}

.tagRole {
    display: block !important;
    font-size: 16px !important;
    color: var(--grayDk) !important;
    font-weight: 400 !important;
}

/* === responsive === */
@media(max-width: 1440px) {
    .busWrap {
        .busIcon {
            width: 90px;
            height: 90px;
        }
    }

    .numMain {
        &.fz_60 {
            font-size: 50px !important;
        }
    }
}

@media (max-width: 1366px) {
    .mdImgWrap {
        .mdImg {
            img {
                max-height: 560px;
            }
        }
    }
}

@media (max-width: 1199px) {
    .heroText {
        padding: 0 0 60px 0;
    }

    .quoteIc {
        width: 50px;

        &.quoteIcTop {
            top: -18px;
        }

        &.quoteIcBtm {
            bottom: -18px;
        }
    }
}

@media(max-width: 1280px) {
    .busWrap {
        .busIcon {
            width: 80px;
            height: 80px;
        }
    }

    .numMain {
        &.fz_60 {
            font-size: 40px !important;
        }
    }
}


@media (max-width: 991px) {
    .fz_28 {
        font-size: 24px !important;
    }

    .numMain {
        &.fz_60 {
            font-size: 38px !important;
        }
    }

    .busWrap {
        .busIcon {
            width: 70px;
            height: 70px;
            padding: 12px
        }
    }

    .mdHero {
        padding-top: 40px;
    }

    .mdImgWrap {
        .mdImg img {
            max-width: 340px;
            margin: 0 auto;
        }
    }

    .mdTag {
        left: 50%;
        bottom: 10px;
        width: auto;
        border-radius: 30px;
        transform: translateX(-50%);
        min-width: 300px;
    }

    /* .heroText {
        padding: 40px 0 60px 0;
    } */

    .letterCard {
        height: auto;
        margin-bottom: 0;
    }

    .unlockBand .row>div:nth-child(2) .unlockBox {
        border-right: none;
    }
}

@media (max-width: 840px) {
    .mdImgWrap {
        .mdImg img {
            max-width: 290px;
        }
    }

    .mdIconWrap {
        .mdIconItem {
            width: calc(100% / 2);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
    }
}

@media (max-width: 767px) {
    .heroText {
        padding: 16px 0 60px 0;
        text-align: center;
    }

    .quoteCard {
        padding: 25px;
    }

    .quoteIc {
        width: 46px;

        &.quoteIcTop {
            top: -20px;
            left: 20px;
        }

        &.quoteIcBtm {
            right: 20px;
            bottom: -20px;
        }
    }

    .letterCard {
        padding: 30px 22px;
    }

    .unlockBox {
        .unlockIc {
            height: 70px;

            img {
                max-width: 70px;
                max-height: 70px;
            }
        }

        .unlockName {
            font-size: 20px;
        }
    }

    .blueBg {
        &.rad_30 {
            border-radius: 20px;
        }

        &.p_30 {
            padding: 20px;
        }
    }
}

@media(max-width: 575px) {
    .numText {
        &.fz_24 {
            font-size: 16px !important;
        }
    }
}

@media (max-width: 480px) {
    .mdIconWrap {
        .mdIconItem {
            width: 100%;
        }
    }
}