html, body {    
    height: 100%;
}
body {
    margin: 0;
    overflow-x: hidden;
}
.wrapper{
    position: absolute;
    width: 100%;
}
.swiper-container {
    width: 100%;
    height: 100vh;
    z-index: 100;
    overflow: visible;
}
#txt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}
.box {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.slide-description h2 {
    cursor: pointer;        
    font-size: 55px;
    display: block;
    line-height: 1;
    white-space: normal;
    font-weight: bold;
    margin: 0 0 20px 0;
    padding: 0;
    letter-spacing: 1px;
    color: #b6fffc;
}
.slide-description p {
    cursor: pointer;
    font-size: 36px;
    display: block;
    white-space: normal;
    font-weight: 400;
    margin: 0;
    padding: 0 0 0 5px;
    letter-spacing: 1px;
}
#txt .slide-description h2,
#txt .slide-description p{
    display: none;
}
@media screen and (max-width: 1360px) {
    .slide-description h2 {
        font-size: 3.5vw;
    }
    .slide-description p{
        font-size: 3vw;
    }
}  
@media screen and (max-width: 640px) {
    .slide-description h2 {
        font-size: 7vw;
    }
    .slide-description p{
        font-size: 5.5vw;
        padding-left: 2px;
    }
}  

.slide-description{
    position: absolute;
    left: 0;
    bottom: 55%;
    margin-left: 15%;
    color: #ffffff;
}
.swiper-slide:first-child .slide-description h2{
    color: #fff2ad;
}
.swiper-slide:last-child .slide-description h2{
    color: #d8ffa6;
}

@media screen and (max-width: 640px) {
    .slide-description{
        bottom: 60%;
        margin-left: 40px;           
    }
}  
.slide-description ul{
    margin: 0;
    padding: 0;
}
.slide-description ul li{
    overflow: hidden;
}

.swiper-slide .slide-description h2{
     opacity: 0;
     transform: translateX(80px);
     transition: opacity 1s, transform 1s;
}
.swiper-slide.swiper-slide-active .slide-description h2{
     opacity: 1;
     transform: translateX(0px);
}

.swiper-slide .slide-description ul li > *{
     opacity: 0;
     transform: translateY(60px);
     transition: opacity 0.6s, transform 0.6s;
}
.swiper-slide.swiper-slide-active .slide-description ul li > *{
     opacity: 1;
     transform: translateY(0px);
}
.swiper-slide.swiper-slide-active .slide-description ul li:nth-child(1) > *{
    transition-delay: 0.3s;
}
.swiper-slide.swiper-slide-active .slide-description ul li:nth-child(2) > *{
    transition-delay: 0.5s;
}
.swiper-slide.swiper-slide-active .slide-description ul li:nth-child(3) > *{
    transition-delay: 0.7s;
}
.swiper-slide.swiper-slide-active .slide-description ul li:nth-child(4) > *{
    transition-delay: 0.9s;
}

.header-main-nav:hover .logo svg {
    fill: #a2a29e;
}
#shows{
    height: calc(100vh + 100px);
    width: 100%;
}
@media screen and (max-width: 640px) {
    .menu-stripes { 
        background-color: #eeeeee;
    }    
    #shows{
        height: 100vh;
    }
} 

.index-feature{
    display: block;
    position: relative;
    margin-top: -90px;
}
.index-feature h3{
    cursor: pointer;        
    font-size: 45px;
    display: block;
    line-height: 1;
    letter-spacing: 1px;
    white-space: normal;
    font-weight: bold;
    padding: 0;
    width: calc(100% - 130px);
    margin: 0 auto 30px auto;
    color: #ffffff;
}
.index-feature ul{
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
}
.index-feature ul li{
    position: relative;
    display: inline-block;
    flex-basis: calc(32% - 60px);
    max-width: calc(32% - 60px);
    margin: 0 1.5%;       
    overflow: hidden;
}
.index-feature ul li:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #bbbbbb;
}
.index-feature ul li a{
    text-decoration: none;
}
.index-feature .mask{
    position: relative;
    display: block;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    overflow: hidden;
}
.index-feature .mask .overley{
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgb(40, 110, 175, 0);
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}
.index-feature ul li img{
    display: block;
    width: 100%;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}
.index-feature ul li:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.index-feature ul li:hover .overley{
    background: rgb(40, 110, 175, .2);
}
.index-feature ul li span{
    position: relative;
    display: block;
    background: #ffffff;
    top: -30px;
    width: 80%;
    text-align: left;
    padding: 10px 0 10px 15px;
    border-radius: 0 8px 0 0;
    box-sizing:border-box;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    -webkit-box-shadow: 5px -30px 20px rgb(0, 0, 0, .6);
    box-shadow: 5px -30px 30px rgb(0, 0, 0, .6);
    z-index: 2;
}
.index-feature ul li label{
    display: inline-block;
    width: calc(100% - 60px);
    vertical-align: middle;
    font-size: 22px;
    font-weight: 600;
    color: #222222;
    cursor: pointer;
    word-break: break-word;
}
.index-feature ul li:hover label{
    color: #e5aa20;
}
.index-feature ul li .btn_s{
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 36px;
    height: 36px;
    margin-right: 10px;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 50%;
    transition: all 0.12s ease-in 0s;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    cursor: pointer;
} 
.index-feature ul li .btn_s:before {
    position: absolute;
    z-index: 2;
    display: block;
    content: "";
    top: 15px;
    left: 14px;
    margin: auto;
    width: 5px;
    height: 5px;
    border-top: 1px solid #aaaaaa;
    border-right: 1px solid #aaaaaa;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all 0.12s ease-in 0s;
}    
.index-feature ul li:hover .btn_s {
    border: 1px solid #f7d835;
    background: #f7d835;
}
.index-feature ul li:hover .btn_s:before {
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
} 
@media screen and (max-width: 1360px) {
    .index-feature h3 {
        text-align: center;
        width: 100%;
    }
}
@media screen and (max-width: 900px) {
    .index-feature{
        margin-top: 30px;
    }
    .index-feature ul li {
        flex-basis: 100%;
        max-width: 100%;
        margin: 0 0 -20px 0;
    }
    .index-feature ul {
        width: 85%;
        margin: 0 auto;
    }
    .index-feature ul li span {
        top: -60px;
        width: 80%;
        padding: 5px 0 5px 5px;
        border-radius: 0 26px 26px 0
    }
    .index-feature ul li img,
    .index-feature .mask {
        border-radius: 20px 6px 40px 6px;
    }
    .index-feature ul li:after {
        display: none;
    }
}
@media screen and (max-width: 640px) {
    .index-feature h3 {
        color: #222222;
        font-size: 7.5vw;
        font-weight: bold;
        width: 85%;
        text-align: left;
    }
}


.advantage-bg{
    display: block;
    width: 100%;
    margin-top: 10%;
}
.advantage {
    position: relative;
    display: block;
    width: 75%;
    padding: 10% 0 10% 5%;
    box-sizing:border-box;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
}
.advantage:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: scaleY(0.01);
    transform-origin: center bottom;
    background-color: #f0f0f0;
    -webkit-transition: -webkit-transform 1s cubic-bezier(0,.71,.35,.99) .2s;
    transition: -webkit-transform 1s cubic-bezier(0,.71,.35,.99) .2s;
    transition: transform 1s cubic-bezier(0,.71,.35,.99) .2s;
    transition: transform 1s cubic-bezier(0,.71,.35,.99) .2s, -webkit-transform 1s cubic-bezier(0,.71,.35,.99) .2s;
}
.advantage.view-poll.in-view:after{
    transform: scaleY(1);
}
.map p,
.advantage h1,
.aside-content h5{  
    font-size: 40px;
    display: block;
    line-height: 1;
    white-space: normal;
    font-weight: 500;
    margin: 0 0 40px 0;
    padding: 0;
    color: #222222;
}
.map p{  
    margin: 0 0 15px 0;
}
.advantage .description{
    display: inline-block;
    width: 60%;
    font-size: 18px;
    line-height: 1.6;
    white-space: normal;
    font-weight: 400;
    margin: 0;
    padding: 0 0 0 3px;
    color: #707070;
    word-break: break-word;
    vertical-align: top;
    box-sizing:border-box;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
}
.advantage img{
    display: inline-block;
    width: 55%;
    position: absolute;
    right: -25%;
    bottom: 0;
}
.map span,
.advantage span,
.aside-content span{
    font-size: 13px;
    display: inline-block;
    font-weight: 500;
    margin: 0 0 3% 0;
    padding: 0;
    color: #999999;
    border-bottom: 2px solid #f7d835;
    text-transform:uppercase;
}
.map b,
.advantage h5,
.aside-content h6{
    font-size: 50px;
    display: block;
    line-height: 1;
    letter-spacing: 1px;
    white-space: normal;
    font-weight: 600;
    padding: 0;
    margin: 0 0 7% 0;
    color: #222222;
    text-transform:uppercase;
}
.map a.read-more label,
.advantage a.read-more label{
    display: inline-block;
    font-size: 18px;
    letter-spacing: 1px;
    vertical-align: middle;
    color: #555555;
    cursor: pointer;
} 
.map a.read-more label:hover,
.advantage a.read-more label:hover{
    color: #e5aa20;
} 
@media screen and (max-width: 900px) {
    .advantage {
        width: 100%;
        padding: 10%;
    }
    .advantage img {
        width: 60%;
        bottom: -25%;
        right: 0;
    }
    .map b, 
    .advantage h5, 
    .aside-content h6{
        font-size: 45px;
    }
    .advantage .description {
        width: 100%;
    }
} 
@media screen and (max-width: 640px) {
    .advantage {
        padding: 15% 7%;
    }
    .map p,
    .advantage h1,
    .aside-content h5{
        font-size: 5.6vw;
    }
    .map b, 
    .advantage h5, 
    .aside-content h6{
        font-size: 8vw;
        font-weight: bold;
    }
    .advantage .description{
        padding-left: 2px;
        font-size: 16px;
    }
    .map span,
    .advantage span,
    .aside-content span {
        margin: 0 0 5% 0;
    }
    .advantage img {
        position: unset;
        width: 100%;
    }
    .map a.read-more,
    .advantage a.read-more{
        margin: 30px 0;
    }
    .map span,
    .advantage span,
    .aside-content span {
        font-size: 12px;
    }
    .map a.read-more label,
    .advantage a.read-more label {
        font-size: 16px;
    }
} 
.map a.read-more,
.advantage a.read-more{
    margin-top: 30px;
    display: block;
    text-decoration: none;
} 
.map a.read-more .btn_s,
.advantage a.read-more .btn_s{
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 50%;
    cursor: pointer;
} 
.map a.read-more .btn_s:before,
.advantage a.read-more .btn_s:before {
    position: absolute;
    z-index: 2;
    display: block;
    content: "";
    top: 8px;
    left: 7px;
    margin: auto;
    width: 3px;
    height: 3px;
    border-top: 1px solid #aaaaaa;
    border-right: 1px solid #aaaaaa;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.map a.read-more:hover .btn_s,    
.advantage a.read-more:hover .btn_s {
    border: 1px solid #f7d835;
    background: #f7d835;
}
.map a.read-more:hover .btn_s:before,
.advantage a.read-more:hover .btn_s:before {
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
} 


.team-content{
    display:block;
    width:100%;
    margin:0 auto;
    padding:0 5%;  
    box-sizing:border-box;
    -moz-box-sizing:border-box; 
    -webkit-box-sizing:border-box; 
}
.team-content ul{
    display:table;
    width:100%;
    padding:0;
    margin:0 auto;
    text-align:center;
}
.team-content ul li{
    display:inline-block;
    width:50%;
    padding:0 1.5%;
    vertical-align:top;
    text-align:left;
    box-sizing:border-box;
    -moz-box-sizing:border-box; 
    -webkit-box-sizing:border-box;  
}
.team-content ul li:first-child{
    padding-left:0;  
}
.team-content ul li:last-child{
    padding-right:0;  
}
.team-content ul li img{
    display:block;
    width:100%;
}    

.team-content ul li .team-aside{
    display:block;
    padding:10% 0 20% 0;
}
.team-content ul li .team-aside.food{
    padding:5% 0;
}
.team-content ul li .team-aside h4{
    display:block;
    padding:0;
    margin:0 0 15px 0;
    color:#333333;
    font-size:24px;
    font-weight:500;
}
.team-content ul.food li .team-aside h4{
    display: block;
    padding: 0;
    margin: 0 0 15px 0;
    color: #222222;
    font-size: 24px;
    font-weight: 600;
}  
.team-content ul li .team-aside p{
    display:block;
    padding:0;
    margin:0;
    color:#707070;
    font-size:18px;
    line-height:160%;
}   

.team-content ul li .team-aside p a:link, 
.team-content ul li .team-aside p a {
    display: block;
    margin: 20px 0 0 0;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    color: #222222;
}
.team-content ul li .team-aside p a:hover{
    color:#C70026;
    text-decoration:underline;
}
@media screen and (max-width: 640px) {
    .team-content{ max-width: 100%; }  
    .team-content ul{ text-align:center; }   
    .team-content ul li{
        width:100%;
        padding: 0;
        margin: 0 auto;
    }          
    .page-aside{
        width:80%;  
    }
    .team-content ul li .team-aside{
        max-height:inherit;
    }
    .team-content ul li .team-aside h3{
        font-size:18px;
    }  
}

.aside-content {
    display: block;
    width: 100%;
    padding: 10% 5%;
    vertical-align:top;
    text-align:left;
    box-sizing:border-box;
    -moz-box-sizing:border-box; 
    -webkit-box-sizing:border-box;  
    margin: 0 auto;
}
.page-aside{
    display: block;
    margin: 35px 0 0 0;
    width: 100%;
    max-width: 1600px;
    font-size: 18px;
    line-height: 1.6;
    color: #707070;
    text-align: left;            
}
.page-aside a{
    color:#C70026;  
    text-decoration: underline;     
}
@media screen and (max-width: 900px) {
    .aside-content {
        padding: 25% 10% 10% 10%;
    }
}
@media screen and (max-width: 640px) {
    .page-aside{
        padding-left: 2px;
        font-size: 16px;
    }
    .team-content ul li .team-aside p{
        font-size: 16px;
    }
    .team-content ul li .team-aside h4{
        font-size: 5.6vw;
    }
    .aside-content{
        padding: 15% 7%;
    }
    .team-content{
        padding: 0 7% 15% 7%;
    }
}    