@charset "UTF-8";


body {
    padding:0px;
    margin:0px;
}

#container-left {
    float:left;
    width:42%;
    padding-top:60px;
}

#container-right {
    width:55%;
    padding-top:60px;
    float:right;
}


#sec-title {
    font-size:2.16em;
    font-weight:100;
    text-transform:uppercase;
    color: #407cca;
    padding-bottom:30px;
 
}


/* About us section */

#about-home .wrapper {
    height:674px;
 }

#about-home {
    position:relative;
}

#content-desc {
    font-size: 1em;
    font-weight: 100;
    line-height: 1.67em;
    padding-top:30px;
    color:#6a7486;
}

hr {
    color: #bbc0cc;
}

h2 {
    color:#232222;
    font-size:1em;
}

#about-subhead {
    padding-top:1em;
}

#list li {
    width:100%;
    display:list-item;
    color:#77777a
}

#right {
    width:28%;
    float: right;
}

#first {
    color:#407cca;
    margin:.25em;
    padding:.1em 25px;
    font-size:1.15em;
    font-weight:100;
    line-height:1.5em;
    border-left: 0px;
    display:inline-block;
    width:26%;
    
}

ul.joblist, ul.equipmentlist {
    position:relative;
    margin:0;
    padding-bottom:30px;
   
}

ul.equipmentlist {
    padding-top:30px;
    
}

ul.joblist li, ul.equipmentlist li{
    display:list-item;
    float:none;
    list-style-type: disc;
    color: #6a7486;
    margin-left:20px;
}

ul.equipmentlist li{
    list-style-type: none;
    margin-left:0px;

}


.product {
    margin: 20px 0 0 0;
    text-align: center;
    width:49%;
    display:inline-block;
   
}


#contact-form {
    margin-top:20px;
}

#contact-desc {
    font-size:1.15em;
    font-weight:100;
    line-height:1.4em;
}

#contact-form #btn-text {
    margin-bottom: 10px;
    background-color:#f1f1f1;
    display:block;
}

#contact-form #message-text {
    background-color:#f1f1f1;
    display:block;
 
}

#contact-form #btn{
    width: 200px;
    display:block;
    margin-top:15px;
}

#address {
    font-weight:100;
    line-height:1.4em;
    color: #6a7486;
}

#faq-desc {
    font-size:1.15em;
    font-weight:100;
    line-height:1.4em;
}


/*Time for the CSS*/
* {margin: 0; padding: 0;}

.slider{
    width: 640px; /*Same as width of the large image*/
    position: relative;
    /*Instead of height we will use padding*/
    padding-top: 320px; /*That helps bring the labels down*/
  
}


/*Last thing remaining is to add transitions*/
.slider>img{
    position: absolute;
    left: 0; top: 0;
    transition: all 0.5s;
}

.slider input[name='slide_switch'] {
    display: none;
}

.slider label {
    /*Lets add some spacing for the thumbnails*/
    margin: 10px 10px 10px 0px;
    float: left;
    cursor: pointer;
    transition: all 0.5s;
    
    /*Default style = low opacity*/
    opacity: 0.6;
}

.slider label img{
    display: block;
}

/*Time to add the click effects*/
.slider input[name='slide_switch']:checked+label {
    border-color: #666;
    opacity: 1;
}
/*Clicking any thumbnail now should change its opacity(style)*/
/*Time to work on the main images*/
.slider input[name='slide_switch'] ~ img {
    opacity: 0;
    transform: scale(1.1);
}
/*That hides all main images at a 110% size
 On click the images will be displayed at normal size to complete the effect
 */
.slider input[name='slide_switch']:checked+label+img {
    opacity: 1;
    transform: scale(1);
}
/*Clicking on any thumbnail now should activate the image related to it*/

/*We are done :)*/