/* ===============================
   Base styles (no color defined)
================================ */
.text_centered_card {
    display: flex;
    justify-content: center;
	padding: 4rem 0;
	background: var(--main_colour);
}
.text_centered_layout{
    position: relative;
    border: 1px solid rgba(38, 167, 245, 1);
    background: rgba(0, 93, 150, 1);
    border-radius: 1rem;
    display: flex;
    flex-direction:column;
    padding: 3rem;
}
.text_centered_layout p,
.text_centered_layout li,
.text_centered_layout h1,
.text_centered_layout h2,
.text_centered_layout h3,
.text_centered_layout h5,
.text_centered_layout h6 {
    margin: 0;
    padding: .5rem 0;
    color: var(--white_tone);
}
.text_centered_layout h1,
.text_centered_layout h2,
.text_centered_layout h3,
.text_centered_layout h4,
.text_centered_layout h5,
.text_centered_layout h6 {
	
    line-height: 1;
}
.text_centered_layout h1 strong,
.text_centered_layout h2 strong,
.text_centered_layout h3 strong,
.text_centered_layout h4 strong,
.text_centered_layout h5 strong,
.text_centered_layout h6 strong {
	color: var(--secondary_colour)!important;
}
.text_centered_layout p,
.text_centered_layout li{
    font-size:16px;
}
.text_centered_layout h1{
	font-size: 45px;
}
.text_centered_layout h2 {
    font-size: 60px;
    margin-bottom: 2rem;
}
.text_centered_layout h3{
	font-size: 30px;
}
.text_centered_layout h4{
	font-size: 26px;
}
.text_centered_layout h5{
	font-size: 24px;
}
.text_centered_layout h6{
	font-size: 20px;
}
.text_centered_layout p a{
	color: #26A7F5;
    text-decoration: none;	
}
.text_centered_layout li{
    color:#fff;
    position:relative;
    padding-left: 2.5rem;
    font-size: 1.2rem;
}
.text_centered_layout li::before {
    content: '';
    position: absolute;
    left: .5rem;
    width: 13px;
    height: 31px;
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='31' viewBox='0 0 13 31' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.0216675 17.427L9.57343 0.867676L7.80093 14.1151H12.9707L3.46819 30.6743L5.48686 17.427H0.0216675Z' fill='%23F7E30A'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}