@charset "utf-8";
/* ================================================================== */
/* Name	: main.css
/* Script :  Layout CSS
/* Author : Design Geulggol
/* Date	: 2017-07-21
/* ================================================================== */


/* ----------------------------- */
/* Common
/* ----------------------------- */
.main h1 {
    font-family: 'RobotoB';
    font-size: 8rem;
    letter-spacing: 0.4em;
    text-align: center;
    text-transform: uppercase;
    color: #000;
}

.container {
    max-width: 1680px;
    margin: 0 auto;
    padding: 5vw 0;
}


/* ----------------------------- */
/* visual
/* ----------------------------- */
#visual_wrap {
    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;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background: #000;
}

#visual {
    overflow: hidden;
    -webkit-transition: opacity 2s ease-in-out;
    transition: opacity 2s ease-in-out;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

#visual div {
    -webkit-transition: opacity 3s ease, visibility 3s;
    transition: opacity 3s ease, visibility 3s;
    background-size: cover;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    visibility: hidden;
    width: 120%;
}

#visual div.visible {
    -webkit-animation: bg 45s linear infinite;
    animation: bg 45s linear infinite;
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

#visual div.visible.top {
    z-index: 2;
}

#visual div:only-child {
    -webkit-animation-direction: alternate !important;
    animation-direction: alternate !important;
}

body.is-loading #visual {
    opacity: 0;
}

@-webkit-keyframes bg {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-25%);
        transform: translateX(-25%);
    }
}

@keyframes bg {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-25%);
        transform: translateX(-25%);
    }
}

@-webkit-keyframes zoom {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1.15);
        transform: scale(1.15);
    }
}

@keyframes zoom {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1.15);
        transform: scale(1.15);
    }
}

#visual_wrap .slogan {
    text-align: center;
    z-index: 3;
}

#visual_wrap .slogan p {
    line-height: 1.4em;
    font-family: 'RobotoT';
    font-size: 3.8vw;
    text-align: center;
    color: #fff;
}

#visual_wrap .slogan p span {
    display: block;
    margin-top: 0.2em;
    font-family: 'RobotoB';
}

#visual_wrap .btn_brc {
    display: inline-block;
    vertical-align: middle;
    margin: 5vw auto 0;
    padding: 3% 6%;
    font-family: 'RobotoL';
    font-size: 18px;
    text-align: center;
    color: #fff;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: box-shadow;
    transition-property: box-shadow;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3), 0 0 1px rgba(0, 0, 0, 0);
    /* Hack to improve aliasing on mobile/tablet devices */
}

#visual_wrap .btn_brc:hover,
#visual_wrap .btn_brc:focus,
#visual_wrap .btn_brc:active {
    background: rgba(0, 0, 0, 0.7);
    box-shadow: inset 0 0 0 4px #00aeef, 0 0 1px rgba(0, 0, 0, 0);
    color: #00aeef;
    /* Hack to improve aliasing on mobile/tablet devices */
}

#visual_wrap .btn_brc i {
    font-family: 'RobotoB';
}

#visual_wrap .quick_move {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-justify-content: space-around;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-around;
    /*-ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-grow: 1;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;*/
    position: absolute;
    left: 0;
    bottom: 3.5%;
    width: 100%;
    z-index: 3;
}

#visual_wrap .quick_move a {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.6em;
    text-indent: 0.6em;
    text-transform: uppercase;
    color: #fff;
}

#visual_wrap .quick_move a::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 100%;
    bottom: 0;
    background: #00aeef;
    height: 1px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

#visual_wrap .quick_move a:hover:before,
#visual_wrap .quick_move a:focus:before,
#visual_wrap .quick_move a:active:before {
    right: 0;
}

#visual_wrap .quick_move a:hover,
#visual_wrap .quick_move a:focus,
#visual_wrap .quick_move a:active {
    -webkit-animation-name: btn_quickb-float, btn_quick;
    animation-name: btn_quick-float, btn_quick;
    -webkit-animation-duration: .3s, 1.5s;
    animation-duration: .3s, 1.5s;
    -webkit-animation-delay: 0s, .3s;
    animation-delay: 0s, .3s;
    -webkit-animation-timing-function: ease-out, ease-in-out;
    animation-timing-function: ease-out, ease-in-out;
    -webkit-animation-iteration-count: 1, infinite;
    animation-iteration-count: 1, infinite;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-direction: normal, alternate;
    animation-direction: normal, alternate;
}

@-webkit-keyframes btn_quick {
    0% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }

    50% {
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px);
    }

    100% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
}

@keyframes btn_quick {
    0% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }

    50% {
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px);
    }

    100% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
}

@-webkit-keyframes btn_quick-float {
    100% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
}

@keyframes btn_quick-float {
    100% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
}



/* ----------------------------- */
/* Works
/* ----------------------------- */
/* #works {
    padding: 5vw 0;
} */
#works>h1::after {
    content: '';
    display: block;
    width: 1px;
    height: 5vw
        /* 60px */
    ;
    margin: 1.5% auto 2%;
    background: #000;
}

#works .category {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-justify-content: space-between;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-grow: 1;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin: 0 20% 1%;
}

#works .category li a {
    font-family: 'RobotoM';
    font-size: 1.7rem;
    text-align: center;
    color: #000;
}

.work_list figure {
    overflow: hidden;
    position: relative;
}

.work_list figure img {
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.work_list figure:hover img {
    -webkit-transform: scale(1.12);
    transform: scale(1.12);
}

.work_list figure a {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
}

.work_list figure a::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: rgba(0, 0, 0, 0.85);
    -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, transform 0.5s;
    transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
}

.work_list figure figcaption {
    z-index: 1;
    color: #fff;
    opacity: 0;
    -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, transform 0.5s;
    transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
}

.work_list figure figcaption span:first-child {
    font-family: 'RobotoT';
    letter-spacing: 0.2em;
    font-size: 6.7rem;
}

.work_list figure figcaption span:first-child:after {
    content: '';
    display: block;
    width: 1px;
    height: 50px;
    margin: 10px 0 10px 50%;
    background: #fff;
}

.work_list figure figcaption h2 {
    font-family: 'RobotoB', 'NotoM', 'malgun gothic', 맑은고딕, 'Dotum', 돋움, 'Arial', 'sans-serif';
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.work_list figure a:hover:after,
.work_list figure a:hover figcaption {
    opacity: 1;
}

#works .recent h1 {
    display: block;
    margin: 4vw 1.1904% 2.2vw;
    font-size: 3.7rem;
    text-transform: none;
    text-align: left;
}

#works .recent .date {
    margin-bottom: 1.5vw;
}

#works .recent .date span {
    display: inline-block;
    color: #666;
}

#works .recent .date span:first-child {
    margin-right: 30px;
    font-family: 'RobotoB';
    font-size: 3.4rem;
    color: #000;
}

#works .recent .date span:first-child::before {
    content: '';
    display: block;
    margin-bottom: 15px;
    width: 20px;
    height: 2px;
    background: #000;
}

#works .recent h2 {
    font-family: 'RobotoB', 'NotoM';
    font-size: 1.8rem;
}


/* ----------------------------- */
/* overview
/* ----------------------------- */
#overview {
    position: relative;
    /* padding: 5vw 1.1904%; */
}

#overview .slogan {
    font-family: 'RobotoBK';
    font-size: 6vw;
    line-height: 1em;
    color: #000;
}

#overview .slogan span {
    display: block;
}

#overview .num_tab {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    position: absolute;
    top: 14.5vw;
    right: 0;
}

#overview .num_tab a {
    position: relative;
    display: inline-block;
    /*-ms-flex-preferred-size: 25%;
    flex-basis: 25%;*/
    padding-top: 10px;
    font-family: 'RobotoB';
    font-size: 1.6rem;
    letter-spacing: 0.5em;
    text-align: center;
    color: #000;
}

#overview .num_tab a:hover::before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
    left: -2px;
    height: 4px;
    background: #000;
}

#overview .num_tab a:first-child:before {
    width: 29px;
}

#overview .num_tab a:nth-child(2):before {
    width: 28px;
}

#overview .num_tab a:nth-child(3):before {
    width: 66px;
}

#overview .num_tab a:nth-child(4):before {
    width: 12px;
}

#overview .ov_picture {
    position: relative;
    margin-top: 7vw;
}

#overview .ov_picture p {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: right bottom 0;
    transform-origin: right bottom 0;
    top: 50%;
    left: -210px;
    margin-top: -150px;
    font-family: 'RobotoM';
    font-size: 1.3rem;
    text-transform: uppercase;
    color: #fff;
}

#overview .ov_picture p,
#overview .ov_picture button {
    position: absolute;
    letter-spacing: 0.7em;
}

#overview .ov_picture button {
    bottom: 1.6vw;
    right: 240px;
    font-family: 'RobotoB';
    font-size: 1.5rem;
    color: #888;
}

#overview .ov_picture button:hover,
#overview .ov_picture button:focus,
#overview .ov_picture button:active {
    color: #00aeef;
}

#overview .ov_picture button svg {
    width: 50px;
    height: 10px;
    fill: #5e5e5e;
}

#overview .ov_picture .prev svg {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

#overview .ov_picture .next {
    right: 60px;
}

#overview .ov_picture button:hover svg,
#overview .ov_picture button:focus svg,
#overview .ov_picture button:active svg {
    fill: #00aeef
}


#overview .ov_text_wrap {
    position: absolute;
    top: 17vw;
    right: 40px;
    z-index: 1;
}

#overview .ov_text_box {
    position: relative;
    overflow: hidden;
    padding: 8.75%;
    /*min-height: 540px;*/
    background: #fff;
    -webkit-box-shadow: -5px 5px 25px 5px rgba(0, 0, 0, 0.2);
    box-shadow: -5px 5px 25px 5px rgba(0, 0, 0, 0.2);
}

#overview .ov_text_box>div {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 7vw;
}

#overview .ov_text_box .big_num {
    width: 40%;
    font-family: 'RobotoT';
    font-size: 10vw;
    line-height: 0.7em;
}

#overview .ov_text_box .title {
    width: 60%;
    font-family: 'RobotoB';
    letter-spacing: 0.5em;
    text-align: right;
}

#overview .ov_text_box .title::before {
    content: '';
    display: inline-block;
    width: 35%;
    height: 1px;
    margin: 0 1em 0.3em 0;
    background: #000;
}

#overview .ov_text_box h2 {
    display: inline-block;
    padding: 0 0 0 4px;
    margin-bottom: 1.5vw;
    font-family: 'RobotoB';
    letter-spacing: 0.5em;
    color: #fff;
    background: #000;
}

#overview .ov_text_wrap .btn_ov {
    float: right;
    margin-top: 20px;
    font-family: 'RobotoB';
    letter-spacing: 0.4em;
    color: #000;
}

#overview .ov_text_wrap .btn_ov:hover,
#overview .ov_text_wrap .btn_ov:focus,
#overview .ov_text_wrap .btn_ov:active,
#overview .ov_text_wrap .btn_ov:hover svg,
#overview .ov_text_wrap .btn_ov:focus svg,
#overview .ov_text_wrap .btn_ov:active svg {
    color: #00aeef;
    fill: #00aeef;
}

#overview .ov_text_wrap .btn_ov svg {
    width: 51px;
    height: 10px;
}


/* ----------------------------- */
/* culture
/* ----------------------------- */
#culture {
    width: 100%;
    background: #191919;
    padding: 3vw 0 0;
    text-align: center;
}

#culture h1,
#culture h1+p {
    margin-bottom: 1.5vw;
    color: #fff;
    letter-spacing: 0.4em;
    text-transform: uppercase;
}

#culture .more {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    margin-top: 2vw;
}

#culture .more::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #666;
}

#culture .more::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: #666;
}

#culture .more:hover::before,
#culture .more:hover::after,
#culture .more:focus::before,
#culture .more:focus::after {
    background: #fff;
}

#culture .grid_wrap {
    margin-top: 2vw;
}

#culture .grid_wrap a {
    display: block;
    margin-bottom: 30px;
    text-align: left;
    color: #999;
}

#culture .grid_wrap article img {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-filter: gray;
    filter: gray;
    -ms-filter: alpha(opacity=50);
    opacity: 0.5;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
}

#culture .grid_wrap article h2 {
    margin: 20px 0 5px;
    font-family: 'RobotoM', 'NotoM', 'malgun gothic', 맑은고딕, 'Dotum', 돋움, 'Arial', 'sans-serif';
    font-size: 1.9rem;
}

#culture .grid_wrap a:hover article img,
#culture .grid_wrap a:focus article img {
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    -ms-filter: grayscale(0);
    filter: grayscale(0);
    -ms-filter: alpha(opacity=100);
    opacity: 1;
}

#culture .grid_wrap a:hover,
#culture .grid_wrap a:focus {
    color: #fff;
}


/* ----------------------------- */
/* info
/* ----------------------------- */
#info>div {
    max-width: 1680px;
    margin: 0 auto;
    padding: 6vw 0 2vw;
}

#info h1 {
    font-size: 2.4rem;
}

#info h1::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    margin: 1.6vw auto;
    background: #000;
}

#news,
#client {
    text-align: center;
}

#news li {
    padding-bottom: 10px;
}

#news li::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 2px;
    margin: 0px 5px 5px 0;
    background: #000;
}

#news .more {
    position: relative;
    display: block;
    width: 55px;
    height: 55px;
    margin: 1vw auto;
}

#news .more::before {
    content: '';
    display: block;
    position: absolute;
    top: 27px;
    left: 8px;
    width: 38px;
    height: 1px;
    background: #666;
}

#news .more::after {
    content: '';
    display: block;
    position: absolute;
    top: 8px;
    left: 27px;
    width: 1px;
    height: 38px;
    background: #666;
}

#news .more:hover,
#news .more:focus {
    background: #000;
}

#news .more::after:hover,
#news .more::before:hover,
#news .more::after:focus,
#news .more::before:focus {
    background: #fff;
}

#client p {
    width: 65%;
    margin: 0 auto 2vw;
    word-break: keep-all;
}

#client .button {
    text-transform: uppercase;
}

#contact {
    font-size: 16px;
    color: #000;
}

#contact ul {
    width: 70%;
    margin: 0 auto 2vw;
}

#contact ul li {
    padding: 5px 0;
}

#contact ul i {
    display: inline-block;
    width: 30%;
    font-family: 'RobotoB';
    font-size: 1.7rem;
}




/* ----------------------------- */
/* Responsive
/* ----------------------------- */
/* Layout Max Size : 1680px (1640px)
/* Desktop : 1200px < Screen ≤ 1680px
/* Tablet Landscape ~ Desktop : 981px ≤ Screen ≤ 1240px
/* Tablet Portrait ~ Landscape : 768px ≤ Screen ≤ 980px
/* Mobile Portrait ~ Landscape : 480px ≤ Screen < 768px (landscape)
/* Mobile Landscape : 320px  ≤ Screen < 480px (portrait)
/* ----------------------------- */


/* Desktop*/


@media screen and (min-width:1920px) {

    /* max font */
    .main h1 {
        font-size: 92px;
    }

    #visual_wrap .slogan p {
        font-size: 73px;
    }

    #works .recent h1 {
        font-size: 42px;
    }

    #overview .slogan {
        font-size: 115px;
    }

    #overview .ov_text_box .big_num {
        font-size: 192px
    }
}

@media screen and (max-width:1760px) {
    .container {
        padding: 5vw 40px;
    }
}

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

    /* max font */
    .main h1 {
        font-size: 6.5vw;
    }

    .work_list figure figcaption span:first-child {
        font-size: 5vw;
    }

    /* #overview {
        padding: 5vw 1.1904% 7vw;
    } */
    #overview .num_tab {
        top: 13.5vw;
    }

    /* #works {
        padding: 7vw 0;
    } */

}


/* Tablet Landscape ~ Desktop */
@media screen and (max-width:980px) {

    /* .container {
        padding: 5vw 2.3808%;
    } */
    #visual_wrap .slogan p {
        font-size: 37px;
    }

    /*#works, #overview, #culture, #info > div { padding-top: 90px !important;}*/
    #works .category {
        margin: 0 5% 3%;
    }

    #works .recent article {
        margin-bottom: 30px;
    }

    #works .recent .date span:first-child {
        font-size: 24px;
    }

    #overview .num_tab {
        position: relative;
        top: auto;
        margin: 5vw 0 1vw;
        width: 100%;
    }

    #overview .ov_picture {
        width: 100%;
        margin-top: 0;
    }

    #overview .ov_picture button {
        bottom: 3.4vw;
    }

    #overview .ov_text_wrap {
        position: relative;
        width: 100%;
        margin: 0 auto 4vw;
        top: auto;
        right: auto;
    }

    #overview .ov_text_box {
        padding: 7%;
    }

    #overview .ov_text_box>div {
        margin-bottom: 10vw;
    }

    #info h1::after {
        margin: 26px auto;
    }

    #client p {
        width: 90%;
        margin: 0 auto 3vw;
    }

    #contact ul {
        width: 100%;
    }


}





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

    /* max font */
    /*.main h1 { font-size: 37px;}*/
    /*#works .recent h1 { font-size: 28px;}*/
    #overview .slogan {
        font-size: 48px;
    }

    #overview .ov_text_box .big_num {
        font-size: 78px;
    }

    #visual_wrap .quick_move a {
        letter-spacing: 0.3em;
        font-size: 14px;
    }

    #works {
        padding: 15% 30px;
    }

    #overview {
        padding: 5vw 40px 60px;
    }

    #culture .more {
        width: 38px;
        height: 38px;
    }

    #news,
    #client,
    #contact {
        width: 100%;
        padding: 50px 0 40px;
        border-top: 1px solid #ddd;
    }

    #news {
        padding-top: 20px;
        border-top: none;
    }

    #news.gutter,
    #client.gutter,
    #contact.gutter {
        margin: 0;
    }

    #client p {
        width: 80%;
    }

    #contact ul {
        width: 80%;
        margin: 0 auto;
    }


}


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

    #works .category {
        display: block;
        text-align: center;
    }

    .work_list figure figcaption span:first-child {
        font-size: 8vw;
    }

    .work_list figure figcaption span:first-child:after {
        height: 30px;
    }

    #works .recent h1 {
        margin: 4vw 1.1904% 6vw;
    }

    #works .recent .date span:first-child::before {
        margin-bottom: 2vw;
    }

    #overview .ov_picture p {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        -webkit-transform-origin: 0;
        transform-origin: 0;
        top: 10px;
        left: 10px;
        margin-top: 0;
    }

    #overview .ov_picture button.prev {
        left: 15px;
        right: 0;
    }

    #overview .ov_picture button.next {
        right: 15px;
    }

    #culture .more {}



}