.services-section {
  width: 100%;
  height: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-color: rgba(var(--primaryColorRgbTheme), 0.95);
  transition: background-color 0.2s ease-in-out;
}

.services-wrapper{
  width: 100%;
  height: 38vw;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: center;
}

.services-container {
  width: 55%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 4vw 6vw;
  box-sizing: border-box;
  position: relative;
}

.services-image {
  width: 45%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background-color: var(--primaryColor);
  background: url("/images/aboutSection/about-image-aside-2.webp");
  background-size: cover;
  background-position: 50% 100%;
  box-shadow: inset 0 0vw 3vw -0.8vw #00000060;
  position: relative;
  overflow: hidden;
}

.services-title {
  color: var(--secondaryHeadingColorTheme);
  font-family: var(--headingFont);
  font-weight: 900;
  font-size: var(--superheadingFontSize);
  margin: 0;
  margin-bottom: 2vw;
}

.services-items-container{
  width: 100%;
  height: max-content;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 2vw;
}

.services-item {
  color: rgba(var(--secondaryColorRgbTheme), 0.8);
  font-family: var(--headingFont);
  font-weight: 600;
  font-size: var(--subheadingFontSize);
  text-shadow: 0 0 1vw 0 #00000080;
  margin: 0;
  transition: all 0.2s ease-in-out;
}

.services-item:hover {
  color: var(--tertiaryColor);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.services-vertical-divisor{
  width: 0.15vw;
  height: var(--subheadingFontSize); 
  background-color: rgba(var(--secondaryColorRgbTheme), 0.85);
  align-self: center;
  margin: 0 0.4vw;
}

.services-info-container{
  width: 100%;
  height: max-content;
  position: relative;
}

.services-service-info{
  width: 100%;
  height: max-content;
  position: absolute;
  top: 0;
  left: 0;
}

.services-service-paragraph{
  color: var(--secondaryHeadingColorTheme);
  font-family: var(--headingFont);
  font-weight: 600;
  font-size: var(--subheadingFontSize);
  text-shadow: 0 0 1vw 0 #00000080;
  margin: 0;
  margin-bottom: 2vw;
}

.services-service-features{
  width: 100%;
  height: max-content;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-left: 1vw;
}

.services-service-feature{
  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;
}

.services-service-feature i{
  margin: 0;
  margin-right: 1vw;
  color: var(--tertiaryColor);
}

@media(max-width: 672px){
  .services-wrapper{
    height: 304vw;
    flex-direction: column;
  }
  
  .services-container {
    width: 100%;
    height: 55%;
    padding: 8vw 12vw;
  }
  
  .services-image {
    width: 100%;
    height: 45%;
    background-size: cover;
    background-position: 50% 100%;
    box-shadow: inset 0 0vw 6vw -1.6vw #00000060;
  }
  
  .services-title {
    font-size: var(--superheadingFontSize);
    margin-bottom: 4vw;
  }
  
  .services-items-container{
    margin-bottom: 4vw;
  }
  
  .services-item {
    font-size: var(--subheadingFontSize);
    text-shadow: 0 0 2vw 0 #00000080;
    margin: 0.5vw 1vw;
  }
  
  .services-vertical-divisor{
    width: 0.3vw;
    height: var(--subheadingFontSize); 
    margin: 0 0.8vw;
  }
  
  .services-service-paragraph{
    font-size: var(--subheadingFontSize);
    text-shadow: 0 0 2vw 0 #00000080;
    margin-bottom: 4vw;
  }
  
  .services-service-features{
    margin-left: 2vw;
  }
  
  .services-service-feature{
    font-size: var(--subheadingFontSize);
    line-height: var(--headingFontSize);
    text-shadow: 0 0 2vw 0 #00000080;
  }
  
  .services-service-feature i{
    margin-right: 2vw;
  }
}