﻿
.containerbox {
    /*position: relative;    */
    display: flex;    
    justify-content: center;
    align-items: center;    
    margin: 0 auto;
    /*padding: 20px 20px;*/
}

    .containerbox:after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        background: url("lib/img/background.png") no-repeat center;
        background-size: cover;
        z-index: -1;
        filter: blur(50px);
    }

.services-box {
    padding: 25px 5px;
}

.threecolumnbox {    
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    align-items: center;
    
    /*background-color: #fff;*/
    background-color:rgb(235, 235, 235);
    box-shadow: 0px 0px 19px 5px rgba(0,0,0,0.19);
    /*color: white;*/
    padding: 25px 20px;
    
}

.tcbw {
    max-width: 1400px;
}

.infoleft {
    /*padding: 25px 30px;*/
    margin: 0 10px;
    height: 100%;
    font-size:.75rem;
    background-color:rgb(235, 235, 235); /* added from jjackson style 12/7/22*/    
    color:black;
}

.infomiddle {
    /* added from jjackson style 12/7/22*/
    margin: 0 10px;
    background-color: rgb(235, 235, 235);
    border-right-style: solid;
    border-color: rgb(225, 225, 225);
    border-left-style: solid;    
    border-width:5px;
    

    /*padding: 25px 30px;*/
    font-size: .75rem;    
    height: 100%;
    color: black;
}

.inforight {
    margin: 0 10px;
    background-color: rgb(235, 235, 235); /* added from jjackson style 12/7/22*/

    /*padding: 25px 30px;*/
    height: 100%;
    /*font-size: .75rem;*/
    font-size: 1.0rem;
    color: black;
}


.field {
    width: 100%;
    padding: 0.5rem 1rem;
    outline: none;
    border: 2px solid rgba(0,0,0,0);
    background-color: rgba(230,230,230, 0.6);
    font-size: 1.1rem;
    margin-bottom: 22px;
    transition: .3s;
}

    .field:hover {
        background-color: rgba(0, 0, 0, 0.1);
    }

    .field:focus {
        background-color: #fff;
        border: 2px solid rgba(30, 85, 250, 0.47);
    }

.area {
    min-height: 150px;
}



@media screen and (max-width: 1000px) {
    .threecolumnbox {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 880px) {
    
    .servicesleft {    
        height:100%;
    }
    
}

@media screen and (max-width: 600px) {
    h2:after {
        background-color: red;
    }
    .threecolumnbox {
        box-shadow: 0px 0px 0px 0px;
    }
        
}

@media screen and (max-width: 450px) {
    .infoleft {
        margin: 0;
    }
    .infomiddle {
        margin:0;
    }
    .inforight {
        margin: 0;
    }
    .threecolumnbox {
        padding: 20px 0;
    }

}
