/* Hero Banner
============*/
#financial .hero-banner .container {
    display: flex;
    align-items: center;
    justify-content: start;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 1;
}
#financial .hero-banner .banner-wrap {
    height: 500px;
    position: relative;
}
#financial .hero-banner .content-wrap {
    width: 100%;
}
#financial .hero-banner .content-wrap h1 {
    color: var(--color-white);
    font-size: 50px;
    font-weight: 700;
    max-width: 55%;
}
#financial .hero-banner .content-wrap h1:lang(en_US) {
    font-family: 'Montserrat';
}
#financial .hero-banner .content-wrap p.top {
    margin-bottom: 70px;
}
#financial .hero-banner .content-wrap p {
    line-height: 28px;
    width: 400px;
}

/* Desktop
========*/
@media(max-width: 1720px) and (max-width: 1440px) {
    #financial .hero-banner .banner-wrap {
        height: 450px;
    }
    #financial .hero-banner .content-wrap h1 {
        font-size: 50px;
        max-width: 50%;
    }
}

@media(max-width: 1399px) {
	.tab-content .result .result-wrap .year {
		width: 35%;
	}
	.tab-content .result .result-wrap .data {
		width: calc(100% - 35%);
	}
}

/* Laptop
=======*/
@media(max-width: 1280px) {}
@media(max-width: 1200px) {
	#financial .hero-banner .banner-wrap {
		height: 380px;
	}
   	#financial .hero-banner .content-wrap h1 {
		font-size: 38px;
	}
	.tab-content .result .result-wrap .year h2 {
		font-size: 30px;	
	}
}

/* iPad Pro
=======*/
@media (max-width: 1024px) {
    #financial .hero-banner .banner-wrap {
        height: 260px;
    }
    #financial .hero-banner .content-wrap h1 {
        font-size: 38px;
    }
}

/* iPad
=====*/
@media(max-width: 768px) {
    /* Hero Banner */
    #financial .hero-banner .banner-wrap {
        height: 240px;
    }
    #financial .hero-banner .content-wrap h1 {
        font-size: 28px;
    }
}

/* Mobile
=======*/
@media(max-width: 576px) {
    /* Hero Banner */
    #financial .hero-banner .banner-wrap {
        display: grid;
        align-items: end;
        justify-items: center;
        height: 240px;
    }
    #financial .hero-banner .content-wrap h1 {
        font-size: 26px;
        max-width: 80%;
    }
    #financial .hero-banner .content-wrap p.top {
        margin-bottom: 35px;
    }
    #financial .hero-banner .content-wrap p {
        width: 90%;
    }
}