.numbered_blocks_section {
display: flex;
flex-direction: column;
gap: 2rem;
background: var(--white);
& .container {
position: relative;
}
& .title_wrapper {
display: flex;
flex-direction: column;
gap: 1rem;
align-items: center;
justify-content: center;
& .sub_title_wrapper {
margin-bottom: 1rem;
& span {
font-size: 1.8rem;
color: var(--secondary);
text-transform: uppercase;
}
}
& h2 {
font-size: 40px;
margin: 0;
color: var(--primary);
@media (max-width: 991px) {
text-align: center;
}
}
}
& .content_top p {
text-align: center;
max-width: 900px;
margin: 0 auto;
margin-top: 2rem;
@media (max-width: 991px) {
margin-bottom: 4rem;
}
}
& .force_columns {
display: grid!important;
grid-template-columns: repeat(5, 1fr)!important;
gap: 2rem!important;
@media (max-width: 1024px) {
grid-template-columns: repeat(2, 1fr)!important;
}
} 
& .four-blocks {
display: grid!important;
grid-template-columns: repeat(4, 1fr)!important;
gap: 2rem!important;
@media (max-width: 991px) {
grid-template-columns: repeat(2, 1fr)!important;
}
}
& .five-blocks {
display: flex !important;
flex-wrap: wrap;
gap: 4rem;
& .number_block:nth-child(1) {
flex: 1 1 calc(33.333% - 2.666rem)!important; }
& .number_block:nth-child(2) {
flex: 1 1 calc(33.333% - 2.666rem)!important; }
& .number_block:nth-child(3) {
flex: 1 1 calc(33.333% - 2.666rem)!important; }
& .number_block:nth-child(4),
& .number_block:nth-child(5) {
flex: 1 1 calc(35% - 2rem); }
@media (max-width: 991px) {
gap: 2rem;
& .number_block:nth-child(1),
& .number_block:nth-child(2),
& .number_block:nth-child(3),
& .number_block:nth-child(4),
& .number_block:nth-child(5) {
flex: 1 1 calc(50% - 1rem)!important;
}
}
}
& .number_blocks_section {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 4rem;
margin-top: 6rem;
margin-bottom: 6rem;
position: relative;
z-index: 2;
@media (max-width: 991px) {
grid-template-columns: 1fr!important;
margin-bottom: 0rem;
}
& .line {
position: absolute;
top: 14%;
left: 206px;
width: 69%;
height: 2px;
border-top: 2px dotted #CFCFCF;
z-index: 2; 
}
& .number_block {
display: flex;
flex-direction: column;
gap: 1rem;
align-items: center;
background: var(--white);
border-radius: 5px;
padding: 2rem;
min-height: 327px;
position: relative;
@media (max-width: 991px) { 
min-height: 247px;
}
& .number {
font-size: 16px;
padding: 1rem;
border-radius: 5px; 
width: 60px;
height: 55px;
display: flex;
align-items: center;
justify-content: center;
background: var(--secondary);
color: var(--white);
margin-bottom: 1rem;
position: relative;
z-index: 3;
letter-spacing: 2px;  
}
& h3 {
font-size: 24px;
font-weight: bold;
color: var(--secondary-light);
text-align: center;
line-height: 1.2;
@media (max-width: 1024px) {
font-size: 20px!important;
text-align: center;
}
}
& p {
color: var(--primary);
text-align: center;
padding: 0 2rem;
margin-bottom: 2rem;
} 
& em {
color: var(--secondary);
}
}
}
& .content_bottom.content_bottom_without_content {
display: flex;
justify-content: center;
width: 100%;
& .call_to_action_buttons { 
display: flex;
justify-content: center;
}
}
& .content_bottom { 
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
margin-top: 6rem;
position: relative;
z-index: 2;
@media (max-width: 991px) {
grid-template-columns: 1fr;
text-align: center;
}
& .call_to_action_buttons {
display: flex;
justify-content: flex-end;
gap: 2rem;
& 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(--secondary-light) !important;
}
}
& a.white_button {
display: flex;
align-items: center;
text-decoration: none;
& span {
color: var(--secondary-light);
}
& .quote_icon {
margin-right: 1rem;
}
& .first {
font-size: 22px;
font-weight: bold;
text-decoration: underline;
}
& .second {
display: block;
margin-top: 0.5rem;
}
& .quote_text {
display: flex;
flex-direction: column;
}
}
}
}
& .floating_bg_without {
height: 308px!important;
}
& .floating_bg {
position: absolute;
bottom: 0;
right: 0;
width: 100%;
height: 428px;
background: linear-gradient(131deg, #F2F2F2 50%, #FFFFFF 100%);
@media (max-width: 991px) {
height: 1224px !important;
}
}
}