.method-section {
  width: 100%;
  height: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--primaryColorRgbTheme), 0.95);
  transition: background-color 0.2s ease-in-out;
}

.method-wrapper{
  width: 100%;
  height: 31vw;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
}

.method-container {
  width: 55%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 4vw 6vw;
  padding-top: 6vw;
  box-sizing: border-box;
  position: relative;
}

.method-image {
  width: 45%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background-color: var(--primaryColor);
  background: url("/images/brandingSection/branding-aside-2.webp");
  background-size: cover;
  background-position: 100% 50%;
  box-shadow: inset 0 0vw 3vw -0.8vw #00000060;
  position: relative;
  overflow: hidden;
}

.method-title {
  color: var(--secondaryHeadingColorTheme);
  font-family: var(--headingFont);
  font-weight: 900;
  font-size: var(--superheadingFontSize);
  margin: 0;
  margin-bottom: 2vw;
}

.method-paragraph {
  color: var(--secondaryHeadingColorTheme);
  font-family: var(--headingFont);
  font-weight: 400;
  font-size: var(--subheadingFontSize);
  line-height: var(--headingFontSize);
  text-shadow: 0 0 1vw 0 #00000080;
  margin: 0;
  margin-bottom: 2vw;
}

@media(max-width: 672px){
  .method-wrapper{
    width: 100%;
    height: 170vw;
    flex-direction: column;
  }
  
  .method-container {
    width: 100%;
    height: 55%;
    padding: 8vw 12vw;
    padding-top: 12vw;
  }
  
  .method-image {
    width: 100%;
    height: 45%;
    background: url("/images/brandingSection/branding-aside-2.webp");
    background-size: cover;
    background-position: 100% 50%;
    box-shadow: inset 0 0vw 6vw -1.6vw #00000060;
  }
  
  .method-title {
    font-size: var(--superheadingFontSize);
    margin-bottom: 4vw;
  }
  
  .method-paragraph {
    font-size: var(--subheadingFontSize);
    line-height: var(--headingFontSize);
    text-shadow: 0 0 2vw 0 #00000080;
    margin-bottom: 4vw;
  }
}