.method-section {
  width: 100%;
  height: max-content;
  transition: all 0.2s ease-in-out;
  position: relative;
  background: linear-gradient(rgba(var(--primaryColorRgbTheme), 0.95), rgba(var(--primaryColorRgbTheme), 0.95)),
  url("/images/servicesSection/back.png");
  background-position: 0% 50%;
  background-size: cover;
  padding: 6vw;
  box-sizing: border-box;
}

.method-info-container{
  width: 100%;
  height: max-content;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.method-row-container{
  height: max-content;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  margin: 2.4vw 0;
}

.method-element-container{
  width: calc(50% - 2.4vw);
  height: max-content;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  box-sizing: border-box;
  padding: 2vw;
  border-radius: 0.4vw;
  transition: all 0.2s ease-in-out;
  background-color: rgba(var(--primaryColorRgbTheme), 0.45);
  box-shadow: 0.5vw 0.5vw 2vw 0 rgba(var(--secondaryColorRgbTheme), 0.1);
}

.method-element-container:hover{
  transition: all 0.2s ease-in-out;
  box-shadow: 1vw 1vw 4vw 0 rgba(var(--secondaryColorRgbTheme), 0.2);
  background-color: rgba(var(--primaryColorRgbTheme), 0.95);
  cursor: pointer;
}

.method-title {
  color: var(--secondaryHeadingColorTheme);
  font-family: var(--headingFont);
  font-weight: 900;
  font-size: var(--headingFontSize);
  margin: 0;
  margin-bottom: 2vw;
  width: 100%;
}

.method-paragraph {
  color: var(--secondaryHeadingColorTheme);
  font-family: var(--headingFont);
  font-weight: 500;
  font-size: var(--subheadingFontSize);
  line-height: var(--headingFontSize);
  text-shadow: 0 0 1vw 0 #00000080;
  width: 100%;
  margin: 0;
}

.method-subtitle {
  color: var(--tertiaryColor);
  font-family: var(--headingFont);
  font-weight: 600;
  font-size: var(--subheadingFontSize);
  text-shadow: 0 0 1vw 0 #00000080;
  margin: 0;
  margin-bottom: 1vw;
}

.method-vertical-divisor{
  width: 0.2vw;
  height: 18vw; 
  background-color: rgba(var(--tertiaryColorRgb), 0.25);
  align-self: center;
}

.method-horizontal-divisor{
  width: 80vw; 
  height: 0.2vw;
  align-self: center;
  background-color: rgba(var(--tertiaryColorRgb), 0.25);
}

@media(max-width: 672px){
  .method-section {
    background-position: 0% 50%;
    background-size: cover;
    padding: 12vw 5vw;
  }
  
  
  .method-row-container{
    margin: 0;
    flex-direction: column;
  }
  
  .method-element-container{
    width: 100%;
    padding: 4vw;
    border-radius: 0.8vw;
    box-shadow: 1vw 1vw 4vw 0 rgba(var(--secondaryColorRgbTheme), 0.1);
  }
  
  .method-element-container:hover{
    box-shadow: 2vw 2vw 8vw 0 rgba(var(--secondaryColorRgbTheme), 0.2);
  }
  
  .method-title {
    font-size: var(--headingFontSize);
    margin-bottom: 4vw;
  }
  
  .method-paragraph {
    font-size: var(--subheadingFontSize);
    line-height: var(--headingFontSize);
    text-shadow: 0 0 2vw 0 #00000080;
  }
  
  .method-subtitle {
    font-size: var(--subheadingFontSize);
    text-shadow: 0 0 2vw 0 #00000080;
    margin-bottom: 2vw;
  }
  
  .method-vertical-divisor{
    width: 160vw; 
    height: 0.4vw;
  }
  
  .method-horizontal-divisor{
    width: 160vw; 
    height: 0.4vw;
  }
}