.sp-block-resizableImage {
   display: flex;
   border-radius: var(--sp-border-radius--1-25rem);
   align-items: center;
   justify-content: space-between;
   box-shadow: 0 0.25rem 0.625rem 0 rgba(0, 0, 0, 0.1);
 }
 
 .sp-block-resizableImage h2 {
   font-size: 2rem;
   font-weight: 500;
   line-height: 140%;
    color: #000;
 }
 
 .sp-block-resizableImage p {
   font-size: 16px;
   font-weight: 400;
   line-height: normal;
    color: #000;
 }
 
@media (prefers-color-scheme: dark) {
   .sp-block-resizableImage h2, .sp-block-resizableImage p{
      color: #fff;
   }
}

 
 @media (max-width: 992px) {
   .sp-block-resizableImage p {
     font-size: 14px;
   }
 }
 
 @media (max-width: 1024px) { 
   .sp-block-resizableImage {
     flex-direction: column;
   }
   .sp-block-resizableImage h2 {
     margin-top: 0;
   }
   .sp-block-resizableImage .sp-block-resizableImage__text-div {
     width: calc(100% - 3.625rem - 2.75rem) !important;
   }
   .sp-block-resizableImage .sp-block-resizableImage__image-div {
     width: 100% !important;
   }
 }
 
 .sp-block-resizableImage__button-div {
   display: flex;
   flex-wrap: wrap;
   gap: 1rem;
 }
 
 .sp-block-resizableImage__button-div .env-button {
	background-color: #003d7c;
    border-radius: 2px;
    color: #fff;
    display: inline-block;
    font-size: 1.4rem;
    letter-spacing: 0.3em;
    line-height: 150%;
    margin: 10px 0;
    outline: none;
    padding: 10px 30px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 1px solid #003d7c;
 }
.sp-block-resizableImage__button-div .env-button:hover {
   box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
    text-decoration: underline;
    transition: 0.1s;
}


 
 @media (max-width: 992px) {
   .sp-block-resizableImage__button-div .env-button {
     font-size: 14px;
   }
 }
 
 
 .sp-block-resizableImage__text-div {
   padding-left: 3.625rem;
   padding-right: 2.75rem;
 }
 
 @media (max-width: 1024px) {
   .sp-block-resizableImage__text-div {
     width: calc(100% - 2.5rem) !important;
     margin-top: 1.875rem;
     margin-bottom: 1.875rem;
     padding-left: 1.25rem;
     padding-right: 1.25rem;
   }
 }
 
 .sp-block-resizableImage__image-div {
   height: 31.25rem;
 }
 
 @media (max-width: 1024px) {
   .sp-block-resizableImage__image-div {
     height: auto;
     display: flex;
   }
 }
 
 .sp-block-resizableImage__image-div img {
   width: 100%;
   object-fit: cover;
   height: 31.25rem;

 }
 
 @media (max-width: 1024px) {
   .sp-block-resizableImage__image-div img {
     height: auto;

   }
 }
 
 .sp-block-resizable__width-50 > div {
   width: 50%;
 }
 
 .sp-block-resizable__width-50 .sp-block-resizableImage__text-div {
   width: calc(50% - 3.625rem - 2.75rem);
 }
 
 .sp-block-resizable__width-70 .sp-block-resizableImage__image-div {
   width: 70%;
 }
 
 .sp-block-resizable__width-70 .sp-block-resizableImage__text-div {
   width: calc(30% - 3.625rem - 2.75rem);
 }


 .sp-block-risizableImage__lightBlue{
    background-color: rgba(56, 115, 224, 0.1);
 }

 .sp-block-risizableImage__grey{
    background-color: rgba(178, 178, 178, 0.2);
 }


 
 @media (prefers-color-scheme: dark) {
   .sp-block-risizableImage__white,
    .sp-block-risizableImage__lightBlue,
    .sp-block-risizableImage__grey
    {
     background-color: #333;
   }
 }
 

 