#info .wrap{
    position: relative;
}
#info .text{
    position: absolute;
    font-size: 1.8rem;
    color: #fff;
    top: 40%;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    width: fit-content;
    letter-spacing: 2px;
}
#content .wrap{
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding: 100px 0;
}
h3{
    color: #006c65;
    font-size: 1.5rem;
    padding-bottom: 50px;
}
p{
    font-size: 1.1rem;
}
.contact-btn{
    color: #fff;
    background-color: #006c65;
    padding: 10px 50px 10px 80px;
    position: relative;
    display: inline-block;
    margin-top: 80px;
}
.contact-btn::before {
    content: "";
    display: block;
    position: absolute;
    background-image: url(../img/activity/contact.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    top: 0;
    bottom: 0;
    left: 25px;
    margin: auto;
    width: 30px;
    height: 23px;
}
.contact-btn:hover{
    color: #fff;
}

.footBg{
    background-image: url(../img/common/footer-bg.jpg);
    background-size: cover;
    padding: 100px 0 400px;
}

@media screen and (max-width:767px) {

    .wrap{
        width: 95%;
    }
    #info .text {
        font-size: 1.3rem;
        top: 15%;
    }
    h3{
        font-size: 1.3rem;
    }
    p{
        font-size: 0.9rem;
        text-align: left;
    }


}