.introduction-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;
}

.introduction-wrapper{
  width: 100%;
  height: 69vw;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: center;
}

.introduction-container {
  width: 55%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 4vw 6vw;
  box-sizing: border-box;
  position: relative;
}

.introduction-image {
  width: 45%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background-color: var(--primaryColor);
  background: linear-gradient(rgba(var(--secondaryColorRgbTheme), 0.05), rgba(var(--secondaryColorRgbTheme), 0.05)), url("/images/brandingSection/branding-aside-1.webp");
  background-size: calc(100% + 10px);
  background-position: center;
  border: 0.2vw solid rgba(var(--secondaryColorRgbTheme), 0.1);
  position: relative;
  overflow: hidden;
}

.introduction-title {
  color: var(--secondaryHeadingColorTheme);
  font-family: var(--headingFont);
  font-weight: 900;
  font-size: var(--superheadingFontSize);
  margin: 0;
  margin-bottom: 2vw;
}

.introduction-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;
}

.introduction-paragraph:nth-of-type(1){
  margin-bottom: 10vw;
}

@media(max-width: 672px){
  .introduction-wrapper{
    width: 100%;
    height: max-content;
    flex-direction: column;
  }
  
  .introduction-container {
    width: 100%;
    height: max-content ;
    padding: 12vw;
  }
  
  .introduction-image {
    width: 100%;
    height: 155vw;
    background: linear-gradient(rgba(var(--secondaryColorRgbTheme), 0.05), rgba(var(--secondaryColorRgbTheme), 0.05)), url("/images/brandingSection/branding-aside-1.webp");
    background-size: calc(100% + 10px);
    background-position: 0 0;
    border: 0.4vw solid rgba(var(--secondaryColorRgbTheme), 0.1);
  }
  
  .introduction-title {
    font-size: var(--superheadingFontSize);
    margin-bottom: 4vw;
  }
  
  .introduction-paragraph {
    font-size: var(--subheadingFontSize);
    line-height: var(--headingFontSize);
    text-shadow: 0 0 2vw 0 #00000080;
  }
  
  .introduction-paragraph:nth-of-type(1){
    margin-bottom: 20vw;
  }
}