@charset "utf-8";
/* CSS Document */

body {
    background-image: url('west-lake-bg.jpg');
    color: #fff;
    font-family: arial;
    line-height: 24px;
    background-attachment: fixed;
}

a {
  color: #fff;
}

h3 {
    margin-bottom: 0px;

}
.mainWrap {
    width: 90%; 
    max-width: 860px;; 
    margin: 50px auto;
}

.logo {
    width: 200px; 
    margin: auto
}

.logo img {
    width: 100%;
}

.companyLogo {
    width: 200px;
    height: 85px;
    padding: 30px;
    display: flex;
    margin: auto;
}

.firstCompany img {
    width: 130px;
    height: auto;
    margin: auto;
}

.secondCompany img {
    width: 200px;
    height: auto;
    margin: auto;
}

.firstCompany {
    width: 420px;
    background-image: url('baz-plastico-bg.jpg');
    background-position: center;
    height: 280px;
    padding: 30px;
    background-size: cover;
    border-radius: 10px;
    float: left;
    margin-right: 10px;
    margin-bottom: 20px;
    box-sizing: border-box;
    border: 1px solid #eee;
}

.secondCompany {
    width: 420px;
    background-image: url('imaginary-bg.jpg');
    background-position: center;
    height: 280px;
    padding: 30px;
    background-size: cover;
    border-radius: 10px;
    float: left;
    margin-right: 10px;
    box-sizing: border-box;
    border: 1px solid #eee;
}

.link-button {
    background-color: #fff;
    border-radius: 10px;
    padding: 2px 5px;
    color: #444;
}

.contact {
  text-align: center;
  display: inline-block;
  width: 100%;
  margin-top: 50px;
}

@media only screen and (max-width: 768px) {
    .firstCompany {
        margin: 20px auto;
        float: none !important;
        width: 100% !important;
        display: inline-table;
    }
    
    .secondCompany {
        margin: 20px auto;
        float: none !important;
        width: 100% !important;
        display: inline-table;
    }
} 