.go-msg-box {
    color: #52A9A4;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    border-bottom: 1px solid #DDD;
    padding-bottom: 30px;
    margin: 0 auto 30px;
    max-width: 1250px;
}
.btn.go-msg {
    background: #52A9A4;
    color: #fff;
    font-size: 18px;
    letter-spacing: 0.02em;
    line-height: 1.3;
    width: 130px;
    height: 130px;
    line-height: 130px;
    border-radius: 50%;
    margin-top: 10px;
    transition: all .5s;
}
.btn.go-msg:hover {
    background: #555;
}
.btn.go-msg b {
    display: block;
    color: #52A9A4;
    font-size: 21px;
    font-weight: bold;
}
.btn.go-msg:hover b {
    color: #52A9A4;
}
.btn.go-msg .ic {
    margin-top: 2px;
    font-size: 28px;
}
.message-list {
    max-width: 1250px;
    margin: 0 auto;
}
.message-item {
    border-bottom: 1px solid #DDD;
}
.message-item.active {
    border-bottom: 0;
    padding-bottom: 10px;
}
.message-question {
    position: relative;
    padding: 15px 0 10px;
    cursor: pointer;
    transition: all .5s;
}
.message-question .title {
    display: block;
    color: #000;
    font-size: 15px;
    
}
.message-from {
    color: #000;
    font-size: 14px;
}
.message-from .date {
    color: #52A9A4;
}
.message-from * {
    display: inline-block;
}
.message-from b {
    width: 160px;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-weight: bold;
    line-height: 35px;
    text-align: center;
    letter-spacing: 0.05em;
    background: #52A9A4;
    border-radius: 4px;
    margin-right: 10px;
}
.message-item.active .message-from b {
    background: #52A9A4;
}
.message-answer {
    display: none;
    overflow: hidden;
    position: relative;
    background: #F3F3F3;
    border-radius: 5px;
    padding: 24px 24px 24px 124px;
}
.message-answer .ic {
    background: #fff;
    color: #52A9A4;
    font-family: 'Cormorant Garamond', serif;
    font-size: 50px;
    font-weight: 900;
    width: 72px;
    height: 72px;
    line-height: 72px;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    left: 30px;
    top: 30px;
}
.message-answer .editor {
    min-height: 80px;
    font-size: 13px;
    line-height: 1.7;
    border-left: 1px solid #bbb;
    padding-left: 20px;
}
#message-sect {
    background: #fafafa;
    padding: 45px 0;
}
#message-sect .container {
    max-width: 1020px;
}
#message-sect .form-title {
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 35px;
    font-family: 'Cormorant Garamond', serif;
}
#message-sect .form-box .form-group {
    padding: 8px 0;
}
#message-sect .form-box .form-control:focus {
    background: #fff;
}
#message-sect .form-box .control-label {
    float: left;
}
#message-sect .form-box .control-box {
    margin-left: 95px;
}
#message-sect .form-box .captcha .form-control {
    width: 100%;
    max-width: none;
    padding-right: 120px;
}
#message-sect .form-box .captcha .control-box {
    max-width: 300px;
}
#message-sect .form-box .captcha a {
    position: absolute;
    right: 10px;
    top: 0;
}
#message-sect .btn.simple {
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    margin-top: 20px;
}
@media screen and (max-width: 767px) {
    #message-sect .form-title {
        font-size: 30px;
        margin-bottom: 20px;
    }
    #message-sect .form-box .control-label {
        float: none;
    }
    #message-sect .form-box .control-box {
        margin-left: 0;
    }
    #message-sect .form-box .captcha .control-box {
        max-width: none;
    }
}
@media screen and (max-width: 600px) {
    .message-from b {
        font-size: 14px;
        padding: 0 12px;
        width: auto;
        line-height: 30px;
    }
    .message-answer {
        padding: 10px 15px 15px;
    }
    .message-answer .ic {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 24px;
        position: static;
        margin-bottom: 8px;
    }
    .message-answer .editor {
        border-left: 0;
        padding: 0;
        min-height: 0;
    }
}