 .centred-layout-container {
     display: flex;
     width: 100%;
     padding: 0px var(--grid-margin, 20px);
     flex-direction: column;
     justify-content: center;
     align-items: center;
     background: var(--background-default, #FFF);
     margin: 0 auto;

 }

 .centred-layout-container_content {
     display: flex;
     max-width: 822px;
     flex-direction: column;
     align-items: center;
     gap: 24px;
     align-self: stretch;
     margin: 0 auto;
     width: 100%;
 }

 .centred-layout-container_text {
     display: flex;
     flex-direction: column;
     align-items: flex-start;
     gap: 16px;
     align-self: stretch;
 }

 .centred-layout-container_heading {
     color: var(--primary-graphene, var(--primary-graphene, #004F59));
     text-align: center;
     font-family: Averta;
     font-size: 26px;
     font-style: normal;
     font-weight: 600;
     line-height: 32px;
     width: 100%;
     margin: 0px !important;
 }

 .centred-layout-container_para {
     color: var(--primary-coalescent, #131E29);
     text-align: center;
     font-family: Averta;
     font-size: 16px;
     font-style: normal;
     font-weight: 400;
     line-height: 24px;
     margin: 0 !important;
     width: 100%;
 }

 .centred-layout-container_caption {
     color: var(--primary-coalescent, #131E29);
     text-align: center;
     font-family: Averta;
     font-size: 12px;
     font-style: normal;
     font-weight: 400;
     line-height: 18px;
 }
 .centred-layout-container-paddingtop{
    padding-top: 24px;
 }
.centred-layout-container-paddingbottom {
    padding-bottom: 24px;
}

 @media only screen and (min-width:1025px) {
     .centred-layout-container {
         width: 100%;
         padding: 0px var(--grid-margin, 24px);
     }

     .centred-layout-container_content {
         gap: 24px;
     }

     .centred-layout-container_text {
         gap: 16px;
     }

     .centred-layout-container_heading {
         font-family: Averta;
         font-size: 40px;
         font-style: normal;
         font-weight: 600;
         line-height: 48px;
         color: var(--primary-graphene, var(--primary-graphene, #004F59));
         text-align: center;
     }

     .centred-layout-container_caption {
         color: var(--primary-coalescent, #131E29);
         text-align: center;
         font-family: Averta;
         font-size: 12px;
         font-style: normal;
         font-weight: 400;
         line-height: 18px;
     }
    .centred-layout-container-paddingtop {
        padding-top: 48px;
    }

    .centred-layout-container-paddingbottom {
        padding-bottom: 48px;
    }

 }