/**
* main css
*/
@charset "UTF-8";

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-overflow-style: scrollbar;
}

*,
*::before,
*::after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

* {
    margin: 0;
    padding: 0;
}

button:active, button:focus, button:hover, input:active, input:focus, input:hover, textarea:active, textarea:focus, textarea:hover, select:active, select:focus, select:hover {
    outline: none !important;
}

html {
    font-size: 100%;
}

body {
    min-width: 320px;
    max-width: 2560px;
    min-height: 100vh;
    font-size: 1rem;
    font-size: 16px;
    margin: 0 auto;
}

body.noscroll {
    overflow: hidden;
}

main {
  position: relative;
}

#page {

    min-height: 100vh;
    position: relative;
}

main {
    min-height: 90vh;
    position: relative;
}
main header {
    position: relative;
}

.bg-cover {
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;

}

.bg-contain {
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: contain;
    background-size: contain;

}

.margin-0-auto {
    margin: 0 auto !important;
}

.site_created a {
    color: inherit;
    text-decoration: none;
    opacity: 0.75;
}

.d-flex-flow-row-wrapp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

.m-25-0 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
}
main .search-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-flow: row-reverse;
    flex-flow: row-reverse;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.searh-post-thumbnail {
    width: 300px;
}

.searh-post-thumbnail img {
    width: 100%;
    height: auto;
}

.searh-post-content {
    min-width: 300px;
    width: calc(100% - 310px);
    padding: 0 10px;
}

.searh-post-content h2 {
    font-size: 2.5rem;
}
.container.searh-post {
    padding-top: 20px;
    padding-bottom: 20px;
    border: 1px solid;
}

.error-404 .page-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    min-height: 250px;
}

.error-404 .page-header .sub-page-title {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.5;
    font-size: 250px;
    font-weight: 900;
    -webkit-text-stroke: 1px #fff;
    color: transparent;
}
.error-404 .page-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
   -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px 10px;
}

.error-404 .page-content p {
    text-align: center;
}
@media screen and (max-width: 570px) {
    .searh-post-content h2 {
        font-size: 1.5rem;
    }
    .error-404 .page-header .sub-page-title {
        font-size: 150px;
    }
}