
/* banner-section
-------------------------------------------------------------- */
.banner-section {
    width: 100%;
    margin: 0;
    position: relative;
}
    .banner-section .banner {
        height: 300px;
        background-image: url("../images/bg-300.webp");
        background-repeat: no-repeat;
        background-size: auto 300px;
    }
        @media (min-width: 768px) {
            .banner-section .banner {
                height: 450px;
                background-image: url("../images/bg-400.webp");
                background-size: auto 450px;
            }
        }
        @media (min-width: 1200px) {
            .banner-section .banner {
                height: 450px;
                background-image: url("../images/bg-400.webp");
                background-size: 100% 450px;
            }
        }
        .banner-section .banner img {
            width: 100%;
            height: auto;
        }
        .banner-section .banner .banner-logo {
            position: absolute;
            top: 0;
            left: 10px;
            width: 150px;
            transition: all .5s;
            z-index: 1;
        }        
            .banner-section .banner .banner-logo img {
                filter: drop-shadow(-12px 8px 10px rgba(0, 0, 0, 0.15));
            }
            @media (min-width: 768px) {
                .banner-section .banner .banner-logo {
                    left: 50px;
                    width: 250px;
                }
            }
            @media (min-width: 1200px) {
                .banner-section .banner .banner-logo {
                    left: 50px;
                    width: 300px;
                }
            }
        .banner-section .banner .banner-um {
            display: none;
            position: absolute;
            transition: all .5s;
        }        
            @media (min-width: 768px) {
                .banner-section .banner .banner-um {
                    display: block;
                    right: 65%;
                    top: calc(100% / 2 - 90px);
                    width: 250px;
                }
            }
            @media (min-width: 992px) {
                .banner-section .banner .banner-um {
                    display: block;
                    right: 55%;
                    top: calc(100% / 2 - 90px);
                    width: 250px;
                }
            }
            @media (min-width: 1200px) {
                .banner-section .banner .banner-um {
                    display: block;
                    right: 40%;
                    top: calc(100% / 2 - 130px);
                    width: 350px;
                }
            }
        .banner-section .banner .banner-mail {
            position: absolute;
            bottom: 20px;
            right: 20px; 
            width: 110px;
            transition: all .5s;
            z-index: 1;
        }        
            @media (min-width: 768px) {
                .banner-section .banner .banner-mail {
                    bottom: 20px;
                    width: 170px;
                }
            }
        .banner-section .banner .banner-img {
            position: absolute;
            right: auto;
            left: 30%;
            top: 0;
            bottom: 0;
            height: 300px;
            width: 70%;
            background-image: url("../images/banner-img-300.webp");
        }        
            @media (min-width: 576px) {
                .banner-section .banner .banner-img {                    
                    right: 0;
                    left: auto;
                    top: 0;
                    bottom: 0;
                    height: 300px;
                    width: 388px;
                    background-image: url("../images/banner-img-300.webp");
                }
            }
            @media (min-width: 768px) {
                .banner-section .banner .banner-img {
                    height: 450px;
                    width: 675px;
                    background-image: url("../images/banner-img-450.webp");
                }
            }

        .banner-section .banner .department {
            position: absolute;
            font-family: 'Silka-Regular', sans-serif;
            bottom: 60px;
            left: 0;
            width: 80%;
            padding-left: 25px;
            cursor: default;
            z-index: 2;
            color: var(--department-color-3);
        }        
            @media (min-width: 768px) {
                .banner-section .banner .department {
                    bottom: 80px;
                    width: 65%;
                    padding-left: 50px;
                }
            }
            .banner-section .banner .department .first-line:before {
                content: '';
                background-image: url("../images/svg/arc-white.svg");
                background-repeat: no-repeat;
                background-size: 30px 30px;

                position: absolute;
                left: 8px;
                top: -11px;
                width: 48px;
                height: 48px;
            }
                @media (min-width: 768px) {
                    .banner-section .banner .department .first-line:before {
                        background-size: 48px 48px;
                        left: 25px;
                        top: -20px;
                        width: 48px;
                        height: 48px;
                    }
                }
            .banner-section .banner .department .first-line {
                display: block;
                font-family: 'Silka-Bold', sans-serif;
                font-size: 20px;
            }
                @media (min-width: 768px) {
                    .banner-section .banner .department .first-line {
                        font-size: 30px;
                    }
                }
            .banner-section .banner .department .second-line {
                display: block;
                font-family: 'Silka-Regular', sans-serif;
                font-size: 16px;
                white-space: nowrap;
            }
                @media (min-width: 768px) {
                    .banner-section .banner .department .second-line {
                        font-size: 26px;
                    }
                }




/* image-banner-section subsite
-------------------------------------------------------------- */
.banner-section.subsite {
    position: sticky;
    top: 0;
    z-index: 2;
    transition: top 1s;
}
    .banner-section.subsite.news {
        width: 100%;
        margin: 0;
        position: relative;
    }
    .banner-section.subsite.collapsee {
        top: -300px !important;  /* height from (.banner-section.subsite .banner) + 50px from breadcrumb height */
    }
    .banner-section.subsite .banner {
        height: 180px;
    }
        @media (min-width: 768px) {
            .banner-section.subsite .banner {
                height: 250px;
            }
        }
        
        
        
    .banner-section.subsite .banner {
        height: 180px;
        width: 100%;
        background-image: url("../images/bg-300.webp");
        background-repeat: no-repeat;
        background-size: cover;
    }
        @media (min-width: 768px) {
            .banner-section.subsite .banner {
                height: 250px;
                background-image: url("../images/bg-400.webp");
            }
        }
        .banner-section.subsite .banner .banner-mail {
            display: none;
            bottom: 40px;
        }
            @media (min-width: 576px) {
                .banner-section.subsite .banner .banner-mail {
                    display: block;
                }
            }
        .banner-section.subsite .banner .banner-img {
            position: absolute;
            right: 0;
            left: auto;
            top: 0;
            bottom: 0;
            height: 180px;
            width: 270px;
            background-image: none;
            background-repeat: no-repeat;
        }        
            @media (min-width: 576px) {
                .banner-section.subsite .banner .banner-img {                    
                    right: 0;
                    left: auto;
                    top: 0;
                    bottom: 0;
                    height: 180px;
                    width: 270px;
                    background-image: url("../images/banner-img-180.webp");
                }
            }
            @media (min-width: 768px) {
                .banner-section.subsite .banner .banner-img {
                    height: 250px;
                    width: 675px;
                    background-image: url("../images/banner-img-450.webp");
                }
            }
        .banner-section.subsite .banner .department {
            top: auto;
            bottom: 35px;
        }        
            @media (min-width: 768px) {
                .banner-section.subsite .banner .department {
                    top: auto;
                    min-height: 10px;
                    bottom: 35px;       /* breadcrumb's height */
                }
            }
