html,body{
    margin:0;
    padding:0;
    font-size:0px;
    font-family: 'Noto Sans', sans-serif;
    color: #333333;
    overflow-x:hidden;
}
textarea:focus, input:focus{
    outline: none;
}
img{
    max-width:200%;
    width:100%;
}
label{
    font-size: 14px;
}
.rt-reading-time{
    display:none!important;
}
.title{
    position:relative;
    min-width: 500px;
    width: 100%;
    vertical-align: middle;
    text-align: center;
    padding-top:10px;
    padding-bottom:10px;
}
@media screen and (max-width: 500px) {
    .title{
        min-width: 500px;
        left: 50%;
        margin-left: -250px;
    }
}
h1{
    font-size:48px;
    padding:1%;
    margin:0px;
    text-align: center;
    text-shadow: 0px 0px 10px rgba(0,0,0,0.3);
    vertical-align: middle;
    display: inline-block;
}
.title .title_left{
    vertical-align: middle;
    width:200px;
}
.title .title_right{
    vertical-align: middle;
    width:200px;
}
h2{
    font-size:24px;
}
h3{
    font-size:18px;
    margin:0;
}
h4{
    font-size:18px;
    margin:0;
    padding:0;
}
h5{
    font-size:18px;
    margin:0;
}
p{
    font-size:16px;
    margin-top:10px;
    margin-bottom:20px;
}
.section_content ul{
    list-style: url("../images/point.svg");
    margin: 0;
    padding-left: 20px;
    font-size:14px;
    line-height:1.5;
}
.section_content ul li{
    padding-bottom:10px;
}
a{
    text-align:center;
}
input{
    font-size:14px;
}


._btn{
    position:relative;
    display:inline-block;
    cursor:pointer;
}
._btn .text{
    position: absolute;
    color: #FFFFFF;
    width: 100%;
    text-align: center;
    z-index: 3;
}
._btn .off{
    position:relative;
    display:inline-block;
    z-index: 2;
    top: 0;
}
._btn .on{
    position:relative;
    display:inline-block;
    display:none;
    z-index: 2;
    top: 0;
}
._active .off{
    display:none!important;
}
._active .on{
    display:inline-block!important;
}
._active .text{
    color: #000000!important;
}
._btn:hover .off{
    display:none;
}
._btn:hover .on{
    display:inline-block;
}

.section{
    position: relative;
    width: 100%;
    z-index: 4;
}
.section_content{
    position:absolute;
    display:inline-block;
    height: 100%;
    width:100%;
    z-index:13;
    margin:auto;
    left:0;
    right:0;
}
.bg_holder{
    position:relative;
    display:inline-block;
    width:100%;
    z-index:1;
    top: 0;
    left: 0;
}
.bg_holder img._desktop {
    /*min-width: 900px;*/
    width: 100%;
    height: auto;
    position:relative;
    top: 0;
    left: 0;
    z-index:2;
}
/*
@media screen and (max-width: 900px) {
    .bg_holder img._desktop {
        min-width: 900px;
        left: 50%;
        margin-left: -450px;
    }
}
*/
.bg_holder img._mobile {
    /*min-width: 500px;*/
    width: 100%;
    height: auto;
    position:relative;
    top: 0;
    left: 0;
    z-index:2;
}
/*
@media screen and (max-width: 500px) {
    .bg_holder img._mobile {
        min-width: 500px;
        left: 50%;
        margin-left: -250px;
    }
}
*/


._desktop{
    display:block;
}
._mobile{
    display:none;
}
.bg_holder ._desktop{
    display:inline-block;
}
.bg_holder ._mobile{
    display:none;
}


/* SOLUTION */
/* The pseudo element has the same content and hover style, so it pre-sets the width of the element and visibility: hidden hides the pseudo element from actual view. */
a::before {
    display: block;
    content: attr(title);
    font-weight: bold;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}

@media screen and (max-width: 1600px) {
}
@media screen and (max-width: 1280px) {
    h5{
        font-size:14px;
    }
    p{
        font-size:14px;
    }
}
@media screen and (max-width: 1024px) {
    h1{
        font-size:42px;
    }
    .title .title_left{
        width:100px;
    }
    .title .title_right{
        width:100px;
    }
    h2{
        font-size:22px;
    }
    h4{
        font-size:16px;
    }
    h5{
        font-size:12px;
    }
    p{
        font-size:12px;
    }
    .section_content ul{
        font-size:12px;
    }
}
@media screen and (max-width: 768px) {
    h1{
        font-size:36px;
        width:200px;
    }
    .title .title_left{
        width:150px;
    }
    .title .title_right{
        width:150px;
    }
    h2{
        font-size:20px;
    }
    h3{
        font-size:16px;
    }
    h4{
        font-size:16px;
    }
    ._desktop{
        display:none;
    }
    ._mobile{
        display:block;
    }
    .bg_holder ._desktop{
        display:none;
    }
    .bg_holder ._mobile{
        display:inline-block;
    }
}
@media screen and (max-width: 600px) {
    h1{
        font-size:32px;
    }
}