#contents {
    display: block;
    width: 100%;
    position: relative;
}

#contents .loading {
    display: block;
    width: 200px;
    margin: 0 auto;
}

.section1 {
    display: block;
    width: 100%;
    font-size: 0;
    background: #222;
    position: relative;
}

.image {
    display: inline-block;
    vertical-align: middle;
    width: 50%;
    height: 700px;
    position: relative;
    
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.change-image {
    display: block;
    width: 100%;
    height: 50px;
    text-align: center;
    font-family: Poppins-Regular, sans-serif;
    font-weight: normal;
    color: #fff;
    font-size: 14px;
    border: 0;
    outline: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    background: blueviolet;
}

.section1 section {
    display: inline-block;
    vertical-align: middle;
    width: 50%;
    padding: 0 20px;
}

.heading1 {
    display: block;
    width: 100%;
    line-height: 40px;
    font-size: 30px;
    font-family: Poppins-Regular, sans-serif;
    font-weight: normal;
    color: #ddd;
    text-align: center;
}

.paragraph1 {
    display: block;
    width: 100%;
    line-height: 20px;
    font-size: 15px;
    font-family: Poppins-Regular, sans-serif;
    font-weight: normal;
    color: #ddd;
    text-align: center;
}

.edit-text {
    display: block;
    width: 150px;
    font-family: Poppins-Regular, sans-serif;
    font-weight: normal;
    color: blueviolet;
    text-align: center;
    font-size: 14px;
    border: 0;
    outline: 0;
    background: transparent;
    margin: 5px auto 20px auto;
}

.edit-text:hover {
    text-decoration: underline;
}

.section2 {
    display: block;
    width: 100%;
    padding: 100px 20px;
    border-bottom: 1px solid #ddd;
}

.heading2 {
    display: block;
    width: 100%;
    line-height: 50px;
    font-size: 40px;
    font-family: Poppins-Regular, sans-serif;
    font-weight: 100;
    color: #222;
    text-align: center;
}

@media only screen and (max-width: 700px){
    
    .image {
        display: block;
        width: 100%;
        height: 500px;
    }
    
    .section1 section {
        display: block;
        width: 100%;
        padding: 100px 20px;
    }
    
    @media only screen and (max-width: 500px){
        
        .heading1 {
            line-height: 35px;
            font-size: 25px;
        }
        
        .paragraph1 {
            font-size: 14px;
        }
        
        .heading2 {
            line-height: 40px;
            font-size: 30px;
        }
        
    }
    
}

/****************************************/

.edit-modal {
    display: block;
    width: 100%;
    height: 100%;
    overflow: auto;
    position: fixed;
    z-index: 200;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.9);
    padding: 50px 0;
}

.edit-modal .background-layer {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
}

.edit-modal section {
    display: block;
    width: 500px;
    padding: 20px;
    background: #fff;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

#text-input {
    display: block;
    width: 100%;
    height: 100px;
    resize: vertical;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: transparent;
    padding: 15px;
    font-family: Popping-Regular, sans-serif;
    font-weight: normal;
    color: #222;
    text-align: left;
    font-size: 14px;
    margin-bottom: 20px;
}

.save-btn,
.cancel-btn {
    display: inline-block;
    vertical-align: middle;
    padding: 0 30px;
    height: 40px;
    font-family: Poppins-Regular, sans-serif;
    font-weight: normal;
    margin-right: 10px;
    border: 0;
}

.save-btn {
    background: blueviolet;
    color: #fff;
}

.cancel-btn {
    background: #ddd;
    color: #222;
}

@media only screen and (max-width: 700px){
    
    .edit-modal section {
        width: 400px;
    }
    
    @media only screen and (max-width: 500px){
        
        .edit-modal {
            padding: 0;
            background: #fff;
        }
        
        .edit-modal section {
            width: 100%;
        }
        
    }
    
}

/*******************************************/

.file-input {
    position: fixed;
    z-index: -1;
    top: -100%;
    left: -100%;
}

















