:root{
    --main-yellow:#F5CE00;
    --main-blue:#113C71;
    --yellow:rgba(245,206,0,0.7);
}

body{
    box-sizing: border-box;
    margin:0;
    padding:0;
}
body,html,.my-main-wrapper{
    font-size:18px;
    font-family: 'Poppins', sans-serif;
}
.my-main-wrapper h1{
    font-size:2.5rem;
    margin:0;
    padding:0;
}
.my-main-wrapper h2{
    font-size:1.8rem;
    margin:0;
    padding:0;
}
.my-main-wrapper h3{
    font-size:1.5rem;
    margin:0;
    padding:0;
}
.highlight{
    font-weight:700;
    color:var(--main-blue);
}
.maincontent{
    max-width:100%;
    padding:0;
    margin:0;
}
.maincontent_wrapper{
    padding-top:0;
}
.my-main-wrapper img{
    width:100%
}
.mt{
    margin-top:10px;
}
.my-container{
    max-width:90%;
    padding:0 2%;
    margin:0 auto;
}
.hero{
    position: relative;
    display:grid;
    border-bottom:2px solid var(--main-blue);
}
.hero-container{
    position: absolute;
}
#hero-bg{
    grid-column:1/2;
    grid-row:1/2;
}
#hero-logo{
    padding:2rem;
    max-width:300px;
    grid-column:1/2;
    grid-row:1/2;
}
#hero-text-wrapper{
    grid-column:1/2;
    grid-row:1/2;
    align-self:center;
    background: #fff;
    padding:3% 6%;
    max-width:55%;
    border:2px solid var(--main-yellow);
    clip-path: polygon(0% 0%, 90% 0%, 100% 100%, 0% 100%);
}
#hero-text{
    color:var(--main-blue);
    display:inline-block;
    font-weight:100;
}
.title{
    font-weight:100;
}
.center{
    text-align: center;
}
.section1{
    padding:3%;
}
.my-header{
    max-width:900px;
    margin:0 auto;
    text-transform:uppercase;
    letter-spacing: .1rem;
}
.my-header h2{
    line-height:2.5rem;
}
.section1{
    background:#fff;
    margin-bottom:-5px;
}
.main-image-wrapper{
    position: relative;
    display:inline-block;
    max-width:600px;
}
.main-image-wrapper::before{
    position: absolute;
    content:"";
    display:inline-block;
    top:-20px;
    left:-20px;
    height:100%;
    width:100%;
    border:2px solid var(--main-blue);
}
.main-image-wrapper::after{
    position: absolute;
    content:"";
    display:inline-block;
    top:20px;
    right:-20px;
    height:100%;
    width:100%;
    border:2px solid var(--main-yellow);
}
#main-image{
    display:inline-block;
    position: relative;
    z-index:5;
    /* clip-path: polygon(0% 18%, 100% 18%, 100% 100%, 0% 100%); */
}
.stacked-grid{
    display:grid;
    max-width:1200px;
    margin:100px auto 0;
}
.main-image-wrapper{
    grid-column:1/3;
    grid-row:1/2;
    justify-self:flex-end;
}
.parallax-text-box{
    display:inline;
    position: relative;
    z-index:10;
    grid-column:2/4;
    grid-row:1/2;
    align-self:flex-end;
    justify-self:flex-end;
    max-width:70%;
    background:rgba(255,255,255,0.8);
    padding:5% 7%;
    box-shadow: 5px 5px 8px 0px rgba(0,0,0,0.2);
}
.parallax-divider-container{
    position: relative;
}
.parallax-bg{
    position: absolute;
    height:70vh;
    width:100%;
    background-image: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,.5) 50%, rgba(255,255,255,1) 101%), url('/imageserver/Reusable/duradek23/duradek-hero.jpg');
    background-attachment: fixed;
    background-size:cover;
}
.divider-wrapper{
    position: relative;
    /* height:50vh; */
    display:grid;
}
.divider-wrapper p{
    /* justify-self:center; */
    max-width:900px;
    margin-top:20px;
}
.solutions-group{
    display:flex;
    flex-direction:row;
    justify-content: center;
    flex-wrap:wrap;
}
.solutions-list{
    font-size:2rem;
    margin:0 20px;
    color:var(--main-blue);
    opacity:0;
    transform:scale(.7);
}



.products{
    position: relative;
    margin:30px auto;
}
.product-list{
    margin-top:50px;
    display:flex;
    flex-direction:row;
    justify-content: space-evenly;
    flex-wrap:wrap;
}
.product-card{
    max-width:300px;
    overflow:hidden;
}
.product-card-overlay{
    transform:translateX(-100%);
    background-color:rgba(0,0,0,0.6);
    height:100%;
    width:100%;
    opacity:0;
    grid-column:1/2;
    grid-row:1/2;
    display:grid;
    transition:.3s;
}
.product-card-overlay a{
    color:var(--main-blue);
    background:var(--main-yellow);
    padding:12px 15px;
    place-self:center;
    border-radius:5px;
    text-transform: uppercase;
    text-decoration: none;
}
.product-card-overlay a:hover{
    transform:scale(.99);
    box-shadow: 5px 5px 8px 0px rgba(255,255,255,0.2);
}
.product-card-box{
    text-align: center;
    display:grid;
}
.product-image{
    grid-column:1/2;
    grid-row:1/2;
}
.product-name{
    grid-column:1/2;
    grid-row:1/2;
    color:#fff;
    font-weight:700;
    align-self:flex-end;
    z-index:10;
}
.product-card:hover .product-card-overlay{
    transform:translateX(0);
    background-color:rgba(0,0,0,0.6);
    height:100%;
    width:100%;
    opacity:1;
    transition:.3s;
}
@media screen and (max-width:1250px) {
    #hero-text{
        font-size:2rem
    }
}
@media screen and (max-width:992px) {
    .my-container{
        text-align: center;
    }
    .stacked-grid{
        display:block;
    }
    .parallax-text-box{
        transform:translate3d(0,0,0)!important;
      margin-top:200px;
    background:rgba(255,255,255,0);
    box-shadow: 5px 5px 8px 0px rgba(0,0,0,0);
    }
    .main-image-wrapper::before{
        position: absolute;
        content:"";
        display:inline-block;
        top:-20px;
        left:-20px;
        height:0;
        width:0;
        border:2px solid var(--main-blue);
    }
    .main-image-wrapper::after{
        position: absolute;
        content:"";
        display:inline-block;
        top:20px;
        right:-20px;
        height:0;
        width:0;
        border:2px solid var(--main-yellow);
    }
    #main-image{
        display:inline-block;
        position: relative;
        z-index:5;
        transform:translateY(-50px);
        /* clip-path: polygon(0% 18%, 100% 18%, 100% 100%, 0% 100%); */
    }

    .hero{
        position: relative;
        display:block;
        border-bottom:2px solid var(--main-blue);
    }
    .hero-container{
        position: absolute;
    }
    #hero-bg{
        grid-column:1/2;
        grid-row:1/2;
    }
 #hero-logo{
        position: absolute;
        top:0;
        left:0;
    max-width:34vw;
    }   
 #hero-text-wrapper{
        text-align: center;
        grid-column:1/2;
        grid-row:1/2;
        align-self:center;
        background: #fff;
        padding:40px 100px;
        max-width:100%;
        border:0px solid var(--main-yellow);
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
    #hero-text{
        color:var(--main-blue);
        display:inline-block;
        font-weight:100;
    }
}