:root {
  --font-xs: clamp(0.75rem, calc(0.5vw + 0.5rem), 0.875rem);
  --font-sm: clamp(0.875rem, calc(0.75vw + 0.6rem), 1rem);
  --font-md: clamp(1rem, calc(1vw + 0.75rem), 1.25rem);
  --font-lg: clamp(1.25rem, calc(1.5vw + 0.9rem), 1.5rem);
  --font-xl: clamp(.5rem, 2vw, 4rem); /* dynamic, grows with viewport */
}
.wrapper{
    max-width: 90vmax;
    margin: 0 auto;
    /* border-left:1px solid red;
    border-right:1px solid red; */

}

.hero1, .hero2, .hero3, .hero4{

    /* $steel-blue: rgba(5, 127, 212, 1);
    $cornflower-ocean: rgba(20, 112, 162, 1);
    $steel-blue-2: rgba(11, 130, 214, 1);
    $steel-blue-3: rgba(5, 128, 206, 1);
    $blue-bell: rgba(56, 149, 217, 1); */

    background-color: rgb(0, 0, 0);
    
    min-height: 100vh;
}
.hero1{
    background: url(../Media/wokring-1.jpg) no-repeat;
    background-size: cover;
    background-position: left 65%;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: overlay;
    display: flex;
    justify-content: center;
    align-items: center;
    /* font-size: var(--font-xl); */
    font-size: 1vmax;
    color: rgb(24, 114, 167);
}
.hero1 h1{
    text-align: center;
}

.hero2{
    background: url(../Media/GarageDoor\(1\).jpg) no-repeat;
    background-size: cover;
    background-position: center 28%;
    background-blend-mode: overlay;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main2{
    display: flex;
    gap: 10vmax;
    flex-wrap: wrap;
    justify-content: center;
    
}
.main2>div{
    width: 30vmax;
    padding: 1vmax;
    font-size: 2vmax;
    height: 30vmax;


    color: white;
    background: rgba(0, 0, 0, 0.18);
    border-radius: 2vmax;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(.25vmax);
    -webkit-backdrop-filter: blur(.25vmax);
}
.main2>div>p{
    height: 80%;
    align-content: center;
}
.main2>div>h1{
    text-align: center;
}