/* Hero Banner
============*/
#corporate .hero-banner .container {
    display: flex;
    align-items: center;
    justify-content: start;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 1;
}
#corporate .hero-banner .banner-wrap {
    height: 500px;
    position: relative;
}
#corporate .hero-banner .content-wrap {
    width: 100%;
}
#corporate .hero-banner .content-wrap h1 {
    color: var(--color-white);
    font-size: 50px;
    font-weight: 800;
    max-width: 55%;
}
#corporate .hero-banner .content-wrap h1:lang(en_US) {
    font-family: 'Montserrat';
}
#corporate .hero-banner .content-wrap p.top {
    margin-bottom: 70px;
}
#corporate .hero-banner .content-wrap p {
    line-height: 28px;
    width: 400px;
}
#corporate .tab-content .group:nth-last-child(2) hr {
    display: none;
}

#corporate .policy figure {
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    transition: all .3s ease-in-out;
}
#corporate .policy figure:hover {
    border-radius: 2rem;
    transition: all .3s ease-in-out;
    box-shadow: 00 0.1rem 1.2rem 0 rgba(0,0,0,.5);
}
#corporate .policy figure:hover img {
    transition: all .3s ease-in-out;
    transform: scale(1.08) rotate(0.4deg);
}
#corporate .policy figure img {
    transition: all .3s ease-in-out;
}
#corporate .policy figure .thumbnail {
    position: relative;
    border-radius: 1.5rem;
}
#corporate .policy figcaption {
    width: 100%;
    height: 7rem;
    padding: 1.5rem;
    color: var(--color-white);
    border-radius: 0rem 0rem 1.5rem 1.5rem;

    gap: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;

    bottom: 0;
    position: absolute;
    z-index: 1;

    background-color: rgb(9 8 8 / 48%);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}
#corporate .policy figcaption h3 {
    font-size: 1.5rem;
    color: var(--color-white);
}
#corporate .policy figcaption a.view {
    padding: 1.3rem;
    width: 2.5rem;
    height: 2.5rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 100%;
    background-color: var(--color-white);
}
#corporate .policy figcaption a.view:hover {
    background-color: var(--color-gray-light);
}
#corporate .policy figcaption img {
    width: 1.5rem;
}

/* Desktop
========*/
@media(max-width: 1720px) and (max-width: 1440px) {
    #corporate .hero-banner .banner-wrap {
        height: 450px;
    }
    #corporate .hero-banner .content-wrap h1 {
        font-size: 50px;
        max-width: 50%;
    }
    .tab-content .description h3 {
        font-size: 2rem;
    }
}

/* Laptop
=======*/
@media(max-width: 1280px) {}
@media(max-width: 1200px) {
	#corporate .hero-banner .banner-wrap {
		height: 380px;
	}
	#corporate .hero-banner .content-wrap h1 {
		font-size: 38px;
	}
    .tab-content .description h3 {
        font-size: 2rem;
    }
}

/* iPad Pro
=========*/
@media (max-width: 1024px) {
    #corporate .hero-banner .banner-wrap {
        height: 320px;
    }
    #corporate .hero-banner .content-wrap h1 {
        font-size: 38px;
    }
}

/* iPad
=====*/
@media(max-width: 768px) {
    /* Hero Banner */
    #corporate .hero-banner .banner-wrap {
        height: 240px;
    }
    #corporate .hero-banner .content-wrap h1 {
        font-size: 28px;
    }
}

/* Mobile
=======*/
@media(max-width: 576px) {
    /* Hero Banner */
    #corporate .hero-banner .banner-wrap {
        display: grid;
        align-items: end;
        justify-items: center;
        height: 240px;
    }
    #corporate .hero-banner .content-wrap h1 {
        font-size: 26px;
        max-width: 80%;
    }
    #corporate .hero-banner .content-wrap p.top {
        margin-bottom: 35px;
    }
    #corporate .hero-banner .content-wrap p {
        width: 90%;
    }
}