.tools-section {
  width: 100%;
  height: max-content;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 4vw 6vw;
  box-sizing: border-box;
  background: linear-gradient(rgba(var(--primaryColorRgbTheme), 0.95), rgba(var(--primaryColorRgbTheme), 0.95)),
  url("/images/servicesSection/back.png");
  transition: background-color 0.2s ease-in-out;
}

.tools-title{
  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;
  text-shadow: 0 0 0.5vw rgba(var(--primaryColorRgbTheme), 0.5);
  text-transform: uppercase;
}

.tools-wrapper{
  background: linear-gradient(rgba(var(--secondaryColorRgbTheme), 0.025), rgba(var(--secondaryColorRgbTheme), 0.025)),
  linear-gradient(rgba(var(--primaryColorRgbTheme), 1), rgba(var(--primaryColorRgbTheme), 1));
  background-size: cover;
  background-position: center;
}

.tools-container-wrapper{
  width: 100%;
  height: 28vw;
  position: relative;
  overflow: hidden;
}

.tools-wrapper{
  transition: all 0.2s ease-in-out;
  width: 45%;
  height: 24vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-radius: 0.2vw;
  position: absolute;
  top: 0;
  z-index: 1;
}

.tools-wrapper:hover{
  cursor: pointer;
  background: linear-gradient(var(--tertiaryHeadingColorTheme), var(--tertiaryHeadingColorTheme));
}

.tools-section hr{
  border-width: 0.075vw;
  background-color: var(--tertiaryColor);
  border-color: var(--tertiaryColor);
}

.tools-tool-title{
  color: var(--secondaryHeadingColorTheme);
  font-family: var(--headingFont);
  font-size: var(--superheadingFontSize);
  margin: 0;
  margin-bottom: 1vw;
  font-weight: 600;
  text-shadow: 0 0 0.5vw rgba(var(--primaryColorRgbTheme), 0.5);
}

.tools-tool-message{
  color: var(--secondaryHeadingColorTheme);
  font-family: var(--headingFont);
  font-size: var(--subheadingFontSize);
  line-height: var(--headingFontSize);
  margin: 0;
  margin-top: 2vw;
  font-weight: 400;
  text-shadow: 0 0 0.5vw rgba(var(--primaryColorRgbTheme), 0.5);
} 

.tools-tool-img{
  width: auto;
  height: 4vw;
  align-self: center;
  margin-top: 2vw;
  margin-right: 1vw;
}

@media(max-width: 672px){
  .tools-section {
    padding: 8vw 12vw;
  }
  
  .tools-title{
    font-size: var(--paragraphFontSize);
    text-shadow: 0 0 2vw 0 #00000080;
    margin-bottom: 8vw;
    text-shadow: 0 0 1vw rgba(var(--primaryColorRgbTheme), 0.5);
  }
  
  .tools-container-wrapper{
    width: 100%;
    height: 224vw;
    flex-direction: column;
  }
  
  .tools-wrapper{
    width: 100%;
    height: 45%;
    border-radius: 0.4vw;
    display: flex;
    justify-content: flex-start;
  }
  
  .tools-section hr{
    border-width: 0.15vw;
  }
  
  .tools-tool-title{
    font-size: var(--superheadingFontSize);
    margin-bottom: 2vw;
    text-shadow: 0 0 1vw rgba(var(--primaryColorRgbTheme), 0.5);
  }
  
  .tools-tool-message{
    font-size: var(--subheadingFontSize);
    line-height: var(--headingFontSize);
    margin-top: 4vw;
    text-shadow: 0 0 1vw rgba(var(--primaryColorRgbTheme), 0.5);
  } 
}