@media screen and (min-width:768px) {

.top {
    max-width: 1000px;
    margin: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
}
.logotai {
    width: 100%;
    display: flex;
    align-items: center;
}
.logo {
    width: 35px;
    height: 35px;
}
h1 {
    color: #fff;
    font-size: 32px;
    padding-left: 10px;
}
.nav {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    background: none;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    transform: translateX(0);
}
.nav a {
    font-size: 16px;
    border-bottom: none;
    padding: 25px 20px;
    transition: .5s;
    background-color: transparent;
    height: 0px;

}
.nav a:hover {
    background-color: #333;
    height: 30px;
}
.fa-align-justify {display: none;}

.banner {
    height: 400px;

}

.wrap-about {
    padding: 60px 0;
}
.about {
    max-width: 990px;
    column-count: 2;
    column-gap: 30px;
    background-color: transparent;
}
.about h2 {
    border-right: 3px solid #333;
    line-height: 1;
    padding-right: 30px;
    margin-right: 30px;
    float: left;
}

.wrap-service {
    padding: 0 0 60px ;
}
.service {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.service .fas {
    font-size: 50px;
    padding: 20px;
    border-right: 1px dotted #555;
    margin-right: 20px;
}
.service > .item {

    width: 100%;
    max-width: 510px;
    margin: 10px;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    border-radius: 18px 0 18px 0;
}
.service .txt {
    display: flex;
    text-align: left;
    flex-direction: column;
    justify-content: flex-start;
}

.wrap-pro {
    width: 100%;
    background-size: cover;
    padding: 30px 0;
    text-align: none;
}
.pro {
    width: 90%;
    max-width: 980px;
    padding: 60px 0;
    display: flex;
    justify-content: center;

}
.pro > .item {
    width: 100%;
    margin: 10px 0;
    box-sizing: border-box;
    transition: 0.6s;
    text-align: start;
}
.pro > .item:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px #666;
    z-index: 1;
}
.pro > .item + .item {
    border-left: 1px solid #999;
}
.pro img {
    width: 100%;
}
.pro h3 {
    padding: 30px 30px 0;
}
.pro p {
    padding: 5px 30px 30px;
}

.wrap-contact {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding: 30px 0;
}
.contact img {
    width: 100px;
}

.copy {
    width: 100%;
    color: #fff;
    text-align: center;
    padding: 30px 0;
}


}