.title_with_icons {
background: linear-gradient(35deg, #00008E 0%, #000028 76%);
& .title {
font-size: 40px;
font-weight: 700;
margin-bottom: 4rem;
color: #fff;  
}
& .title_with_icons_inner {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
@media (max-width: 991px) {
grid-template-columns: 1fr;
}
}
& .title_with_icons_left {
display: flex;
flex-direction: column;
& .content {
margin-bottom: 4rem;
max-width: 500px;
& p {
font-size: 16px;
font-weight: 400;
color: #fff;
} 
}
& .button_wrapper {
display: flex;
&  a.button.button-primary {
color: var(--white) !important;
background: var(--secondary) !important;
font-weight: bold;
font-size: 14px;
border:none;
box-shadow: none;
margin-top: 20px;
display: flex;
align-items: center;
justify-content: center;
margin: 0!important;
&:hover {   
background: var(--primary) !important;
}
.phone_icon {
margin-right: 1rem;
}
span {
font-size: 14px;
font-weight: bold;
color: var(--white) !important;
@media (max-width: 400px) {
font-size: 12px!important;
}
}
}
}
}
& .title_with_icons_right {
display: flex;
flex-direction: column;
& .label_with_icon {
display: flex;
align-items: center;
gap: 1rem;
margin-bottom: 4rem;
position: relative;
&:not(:last-child)::after {
content: '';
position: absolute;
top: 57px;
left: 28px;
width: 2px;
height: calc(3rem + 28px);
background-image: linear-gradient(to bottom, 
rgba(255, 255, 255, 0.4) 50%, 
transparent 50%);
background-position: center;
background-size: 2px 8px;
background-repeat: repeat-y;
z-index: 1;
@media (max-width: 400px) {
height: calc(6rem + 20px)!important;
left: 24px!important;
}
}
& .icon {
width: 57px;
height: 57px;
position: relative;
z-index: 2;
border-radius: 50%;
background: rgba(255, 255, 255, 0.1);
display: flex;
align-items: center;
justify-content: center;
& img {
width: 57px;
height: 57px;
object-fit: contain;
}
}
& .label_with_icon_content {
margin-left: 2rem;
& .label {
font-size: 24px;
font-weight: 700;
color: #fff;
@media (max-width: 1024px) {
font-size: 20px!important;
}
}
& .text p {
font-size: 16px;
font-weight: 400;
color: #fff;
@media (max-width: 991px) {
font-size: 14px;
}
}
}
}
}
}
@media (max-width: 991px) {
.title_with_icons {
& .title_with_icons_right {
& .label_with_icon {
&:not(:last-child)::after {
height: calc(3rem + 20px);
}
}
}
}
}