.about-section {
  width: 100%;
  height: 28vw;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  background-color: rgba(var(--primaryColorRgbTheme), 0.95);
  transition: background-color 0.2s ease-in-out;
}

.welcome-container {
  width: 55%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 4vw;
  padding-left: 6vw;
  box-sizing: border-box;
  position: relative;
}

.welcome-image {
  width: 45%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background-color: var(--primaryColor);
  background: linear-gradient(to left,
      rgba(var(--secondaryColorRgbTheme), 0),
      rgba(var(--secondaryColorRgbTheme), 0)
    ),
    url("/images/aboutSection/about-image-aside-1.webp");
  background-size: cover;
  background-position: 50% 20%;
  box-shadow: inset 0 0vw 3vw -0.8vw #00000060;
  position: relative;
  overflow: hidden;
}

.welcome-title {
  color: var(--secondaryHeadingColorTheme);
  font-family: var(--headingFont);
  font-weight: 500;
  font-size: var(--superheadingFontSize);
  margin: 0;
  margin-bottom: 2vw;
}

.welcome-paragraph {
  color: var(--secondaryHeadingColorTheme);
  font-family: var(--headingFont);
  font-weight: 400;
  font-size: var(--headingFontSize);
  text-shadow: 0 0 1vw 0 #00000080;
  width: 80%;
  margin: 0;
}

.welcome-subtitle {
  color: rgba(var(--secondaryColorRgbTheme), 0.8);
  font-family: var(--headingFont);
  font-weight: 600;
  font-size: var(--paragraphFontSize);
  text-shadow: 0 0 1vw 0 #00000080;
  margin: 0;
  margin-bottom: 2vw;
}

@media(max-width: 672px){
  .about-section {
    height: 155vw;
    flex-direction: column;
  }
  
  .welcome-container {
    width: 100%;
    height: 55%;
    padding: 8vw;
    padding-left: 8vw;
  }
  
  .welcome-image {
    width: 100%;
    height: 45%;
    background-size: cover;
    background-position: 50% 20%;
    box-shadow: inset 0 0vw 6vw -1.6vw #00000060;
  }
  
  .welcome-title {
    font-size: var(--superheadingFontSize);
    margin-bottom: 4vw;
  }
  
  .welcome-paragraph {
    font-size: var(--headingFontSize);
    text-shadow: 0 0 2vw 0 #00000080;
    width: 100%;
  }
  
  .welcome-subtitle {
    font-size: var(--paragraphFontSize);
    text-shadow: 0 0 2vw 0 #00000080;
    margin-bottom: 2vw;
  }
}