/* 
  &:before {
    content: '\e900';
    @include icons-pseudo;
  }
*/
/* 
    @include hover-supported() {
        background-color: white;
    }
*/
/* Examples: 
    @include user-select(none);
    @include user-select(all);
*/
.banner_btm_box_all {
    display: flex;
    gap: 32px;
}

.banner_btm_box_part {
    background: linear-gradient(180deg, #D9EFEF 0%, rgba(255, 255, 255, 0) 100%);
    padding: 60px 0 143px;
}

.banner_btm_box img {
    object-fit: cover;
    height: 100%;
    display: block;
    width: 100%;
}

.banner_btm_box {
    max-width: 416px;
    height: 416px;
    overflow: hidden;
    border-radius: 16px;
}

.banner_btm_box:nth-child(3) {
    max-height: 234px;
}

.banner_btm_box:nth-child(3) img {
    height: 234px;
    width: 416px;
}

.banner_btm_box_part_text_box {
    max-width: 640px;
    margin: auto;
    padding: 32px 34px;
    border-radius: 16px;
    box-shadow: 0px 4px 12px 0px #0000001A;
    left: 50%;
    transform: translateX(-50%);
    margin-top: -163px;
    position: absolute;
    z-index: 99;
    background-color: #fff;
}

.banner_btm_box_part {
    position: relative;
    z-index: 9;
}

.banner_btm_box_part h5 span {
    display: block;
    color: #248384;
}

.banner_btm_box_part h5 {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #060821;
    padding-top: 20px;
}

.banner_btm_box_part_text_box p {
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
}

.hideondesktop {
    display: none !important;
}

@media (max-width:1024px) {

    .banner_btm_box_part_text_box {
        max-width: unset;
        width: 70%;
    }
}
@media (max-width:575px) {
        .banner_btm_box_part>.container {
            padding: 0 24px !important;
        }

        .hideondesktop {
            display: block !important;
        }

        .hidemobile {
            display: none !important;
        }
        .banner_btm_box_all {
            flex-wrap: wrap;
        }

        .banner_btm_box_part_text_box {
            width: 100%;
            transform: unset;
            margin-top: 0;
            position: inherit;
        }

        .banner_btm_box:nth-child(2) {
            height: auto !important;
        }

        .banner_btm_box_part {
            padding: 48px 0;
        }

        .banner_btm_box_part_text_box {
            padding: 23px;
        }

        .banner_btm_box_all {
            gap: 24px;
        }

        .banner_btm_box:nth-child(1) {
            height: 335px;
            width: 100%;
        }

        .banner_btm_box:nth-child(3) {
            height: 205px;
            width: 100%;
        }

        .banner_btm_box:nth-child(4) {
            height: 205px;
            width: 100%;
        }
    }