#intro h2 {
    text-align: center;
    color: #646464;
    margin: 10px 0 30px 0;
    font-size: 1.5em;
    font-weight: bold;
}

ul.touch {
    width: 90%;
    display: block;
    margin: 0 auto;
}

ul.touch li {
    display: block;
    width: calc(25% - 30px);
    float: left;
    height: auto;
    margin: 0 15px;
}

ul.touch li span {
    display: block;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    text-align: center;
    line-height: 110px;
    background-color: #CFCFCF;
    margin-left: 15px;
}

ul.touch li span:before{
    content: ' ';
    display: inline-block;
    width: 0;
    height: 100%;
    vertical-align: middle;
}

ul.touch li span i {
    font-size: 2em;
    vertical-align: middle;
}

#intro .touch h4 {
    margin-top: 10px;
}

#intro .touch h4,#intro .touch h4 a{
    font-size: 1em;
    color: #1269c1;
}

#intro h2:nth-of-type(2) {
    clear: both;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding-top: 20px;
}

#intro h2:nth-of-type(2):before {
    content: url(../images/fly.svg);
    display: block;
    position: relative;
    width: 50px;
    height: 50px;
    left: 46.5%;
    margin: 10px 0;
}

section.sendbox {
    width: 85%;
    margin: 0 auto;
    border: solid 1px #dadada;
}

section.sendbox:before {
    content: '';
    display: block;
    position: relative;
    width: 250px;
    height: 5px;
    background-color: #00A05D;
    left: calc(50% - (250px / 2));
    margin-top: -5px;
}

.sendbox p {
    color: #919191;
    margin: 10px 5px;
    font-size: 1em;
}

.sendbox p span,
.sendbox ul li span {
    color: red;
}

.sendbox ul {
    width: calc(50% - 4px);
    min-height: 280px;
    height: auto;
    overflow: hidden;
    display: inline-block;
}

.sendbox ul li {
    list-style: none;
    color: #000;
    font-weight: 900;
    font-size: 1.2em;
    margin: 10px 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding-left: 5px;
}

.sendbox ul:nth-of-type(1) {
    width: 55%;
}

.sendbox ul:nth-of-type(2) {
    width: 44%;
}

.sendbox input,
.sendbox select,
.sendbox textarea {
    border: solid 1px #cbcbcb;
}

.sendbox ul li h4 {
    width: 35%;
    display: inline-block;
    color: #000;
}

.sendbox textarea {
    max-height: 200px;
    max-width: 250px;
    width: 250px;
    height: 200px;
}

a.send,
a.clean {
    display: inline-block;
    width: 45%;
    text-align: center;
    text-decoration: none;
    background-color: #00A05D;
    color: #FFF;
    height: 30px;
    line-height: 30px;
    border-radius: 3px;
    margin-top: 10px;
    box-shadow: 0px 3px 0px #006c3f;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
}

a.clean {
    background-color: #AAAAAA;
    box-shadow: 0px 3px 0px #606060;
}

a.clean:hover {
    background-color: grey;
}

a.send:hover {
    background-color: green;
}

a.send:active,
a.clean:active {
    transform: translate(0, 2px);
    -webkit-transform: translate(0, 2px);
    -moz-transform: translate(0, 2px);
    -ms-transform: translate(0, 2px);
}

.sendbox input:focus,
.sendbox textarea:focus {
    background-color: #bcddcf;
}

#inquiry{
    margin: 0 0 2em 0;
}

#inquiry table{
    width: 100%;
}

#inquiry th{
    background: #00A05D;
    color: #FFF;
}

#inquiry td{
    text-align: center;
    padding: 0.5em;
    border-bottom: 1px solid #CCC;
}

#inquiry td a{
    color: green;
}

#inquiry td img{
    width: 100px;
}

/* ----- */

@media screen and (max-width:769px) {
    ul.touch {
        width: 100%;
    }
    ul.touch li {
        width: calc(50% - 4px);
        margin: 0;
        text-align: center;
    }
    ul.touch li span {
        margin: 0 auto;
        margin-top: 10px;
    }
}

@media screen and (max-width:701px) {
    section.sendbox {
        width: 80%;
    }
    .sendbox ul:nth-of-type(1),
    .sendbox ul:nth-of-type(2) {
        width: 100%;
    }
    section.sendbox:before {
        width: 50%;
        left: 0;
        margin: 0 auto;
        margin-top: -5px;
    }
    .sendbox ul:nth-of-type(2) li {
        text-align: center;
    }
    .sendbox textarea {
        margin: 10px 0;
    }
}

@media screen and (max-width:445px) {
    ul.touch li {
        width: 100%;
    }
    ul.touch li span {
        width: 70px;
        height: 70px;
        line-height: normal;
        float: left;
    }
    ul.touch li span i {
        font-size: 2em;
    }
    article.contact h4 {
        padding-top: 20px;
    }

    .sendbox{
        position: relative;
    }

    .sendbox ul li{
        padding: 0;
    }

    .sendbox textarea{
        width: 100%;
    }

    #inquiry td img{
        width: 50px;
    }
}