body {
    font-family: 'cronos-pro', 'vdl-v7mincho', Times, serif;
    font-size: 1rem;
    line-height: 2.5rem;
    font-weight: normal;
    word-break: break-word;
    background-color: #f6f6f6;
    margin: 0;
}

.english {
    position: fixed;
    right:30px;
    top:30px;
    color: #Fff;
    z-index: 1;
    padding: 3px 10px;
    background-color: rgba(0, 0, 0, 0.75);
    letter-spacing: 2px;
}

.english a {
    text-decoration: none;
    color: #fff;
}

::selection {
    background: #FF8000;
    color: #fff;
}

::-moz-selection {
    background: #FF8000;
    color: #fff;
}

ul {
    margin: 0;
    padding: 0;
}

ul li {
    list-style-type: none;
}

.menu-wrap {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
}

.toggler {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    width: 60px;
    height: 60px;
    z-index: 3;
    opacity: 0;
    cursor: pointer;
}

.menu div div ul li label {
    cursor: pointer;
    color: #fff;
    font-size: 18px;
}

.hamburger {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    width: 60px;
    height: 60px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.hamburger>div {
    position: absolute;
    width: 60%;
    height: 3px;
    border-radius: 1.5px;
    background-color: #ff8000;
    transition: .4s;
}

.hamburger>div:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    border-radius: 1.5px;
    background-color: #ff8000;
    top: -10px;
    left: 0;
    transition: .4s;
}

.hamburger>div:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    border-radius: 1.5px;
    background-color: #ff8000;
    top: 10px;
    left: 0;
    transition: .4s;
}

.toggler:checked+.hamburger>div {
    transform: rotate(135deg);
}

.toggler:checked:hover+.hamburger>div {
    transform: rotate(225deg);
}

.toggler:checked+.hamburger>div:before,
.toggler:checked+.hamburger>div:after {
    top: 0;
    transform: rotate(90deg);
}


.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    transition: .6s;
}

.menu>div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-150%) translateY(-50%);
    width: 1600px;
    height: 1600px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: .6s;
}

.menu>div>div {
    max-width: 90vw;
    max-height: 100vh;
    opacity: 0;
    transition: .6s;
}

.menu>div>div>ul>li {
    list-style: none;
}

.menu>div>div>ul>li>a {
    text-decoration: none;
    color: #fff;
    font-weight: 550;
    text-transform: uppercase;
    margin: .5rem;
    transition: .3s;
    font-size: 1.2rem;
    display: inline-block;
}

.menu>div>div>ul>li>a:hover {
    color: #fff44f;
}

.toggler:checked~.menu {
    visibility: visible;
}

.toggler:checked~.menu>div {
    transform: translateX(-50%) translateY(-50%);
}

.toggler:checked~.menu>div>div {
    opacity: 1;
}

.kv {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
}

.kv section {
    color: #fff;
    padding: 150px 7% 0 7%;
}

.kv section h2 {
    font-size: 72px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.kv section p {
    font-size: 18px;
    font-weight: 400;
    line-height: 115%;
    letter-spacing: 1px;
    width: 100%;
    max-width: 600px;
}

.about {
    display: flex;
    height: auto;
    color: #333;
    background-color: #fff;
}

.img-wrap{
    background-image: url('../images/about.jpg');
    width: 1100px;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
    object-position: center center;
    clip-path: polygon(0% 0%, 85% 0, 100% 100%, 75% 100%, 0% 100%);
    -webkit-clip-path: polygon(0% 0%, 85% 0, 100% 100%, 75% 100%, 0% 100%);
}

.col {
    display: table;
}

.container {
    width: 100%;
    text-align: center;
    padding: 25px 50px;
    display: table-cell;
    vertical-align: middle;
    align-items: center;
}

.container h2 {
    font-size: 1.5rem;
    text-transform: uppercase;
}

.container p {
    font-size: 18px;
    line-height: 115%;
    font-weight: 400;
    text-align: left;
    letter-spacing: 1px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    overflow: auto;
}

header {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

header h1 {
    font-size: 60px;
}

.counters {
    border-top: 1px solid #f0f0f0;
    background: #f6f6f6;
    color: #797979;
    padding: 75px 25px 20px 25px;
}

.counters .container_num {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    overflow: hidden;
}

.cun {
    border-right: 1px solid #ddd;
}

.counters .container_num h3 {
    margin: 0;
    font-weight: 400;
}

.counters .container_num .counter {
    font-size: 45px;
    margin: 0;
}

.event-title {
    padding: 50px 7%;
}

.event-title h2 {
    font-size: 1.5rem;
    text-align: center;
    color: #333;
}

.event-content a {
    text-decoration: none;
}

.data {
    max-width: 90%;
    height: 250px;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    margin-bottom: 25px;
}

.data-a {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
    align-items: center; 
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.data-img-1 {
    background-image: url('../images/a01-1.jpg');
}
.data-img-2 {
    background-image: url('../images/a02-1.jpg');
}
.data-img-3 {
    background-image: url('../images/a03-1.jpg');
}
.data-img-4 {
    background-image: url('../images/a04-1.jpg');
}
.data-img-5 {
    background-image: url('../images/a05-1.jpg');
}

.data-a p {
    border: 1px solid #fff;
    color: #fff;
    font-style: italic;
    padding: 0 50px;
    font-size: 18px;
    letter-spacing: 1px;
    transition: .5s ease;
}

.data-a p:hover {
    background-color: #FF8000;
}

.data-t {
    display: flex;
    justify-content: center;
    align-items: center; 
    flex-direction: column;
    padding: 30px;
    line-height: 115%;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
    background-color: #fff;
    color: #333;
    margin: 0 auto;
}

.data-t h2 {
    font-weight: 400;
    font-size: 28px;
    line-height: 115%;
}

.data-t p {
    text-align: left;
}

footer {
    position: relative;
    padding: 30px 0px 5px 0px;
    z-index: 0;
    background-color: #202020;
}

.panel {
    color: #fff;
    border-color: #fff;
    height: 100%;
    width: 100%;
    max-width: 1024px;
    display: block;
    margin: 0 auto;
    float: none;
    clear: both;
}

.section-content {
    color: #fff;
    border-color: #fff;
    display: flex;
    flex-wrap: wrap;
}

.column1 {
    padding-right: 50px;
    margin: 0;
    flex: 1;
}

.column1 ul li a {
    text-decoration: none;
    color: #fff;
}

.column1 ul li a i {
    padding-left: 15px;
}

.column2 {
    padding-right: 50px;
    padding-left: 50px;
    margin: 0;
    flex: 1;
}

.column2 a {
    transition: all .4s ease;
    text-decoration: none;
    color: #fff;
}

.column2 a:hover {
    padding-left: 15px;
}


.column3 {
    padding-left: 50px;
    margin: 0;
    flex: 1;
}

.copyright {
    text-align: center;
    color: #fff;
    margin-top: 10px;
    padding-top: 5px;
    border-top: #3a3737 thin solid;
}

.copyright a {
    text-decoration: none;
    color: #fff;
}

.hide {
    width: 0px;
    height: 0px;
    display: block;
    opacity: 0;
    overflow: hidden;
}

@media (max-width: 1100px) {

    .kv section h2 {
        font-size: 50px;
    }

    .about {
        display: flex;
        flex-wrap: wrap;
        height: auto;
    }

    .col {
        height: 150px;
    }

    .img-wrap{
        min-width: 100%;
        height: 340px;
        clip-path: polygon(0% 0%, 100% 0, 100% 100%, 100% 80%, 0% 100%);
        -webkit-clip-path: polygon(0% 0%, 100% 0, 100% 100%, 100% 80%, 0% 100%);
    }

    .container {
        width: 100%;
        order: 1;
        max-height: 100%;
        padding: 0 50px 50px 50px;
    }

    .section-content {
        padding: 0 5% 0 5%;
    }

    .counters .container_num {
        grid-template-columns: repeat(2, 1fr);
    }

    .counters .container_num>div:nth-of-type(1),
    .counters .container_num>div:nth-of-type(2) {
        padding-bottom: 20px;
    }

    .column1 {
        min-width: 100%;
        border-left: none;
        border-right: none;
        padding: 0 0 0 0;
    }

    .column2 {
        min-width: 100%;
        margin-top: 40px;
        padding: 30px 0 0 0;
        border-left: none;
        border-right: none;
        border-top: #3A3737 thin solid;
    }

    .column3 {
        min-width: 100%;
        margin-top: 40px;
        padding: 30px 0 0 0;
        border-top: #3A3737 thin solid;
    }

    .counters .container_num {
        grid-gap: 30px;
    }
    
    .cun {
        border-right: none;
    }

    .data {
        max-width: 95%;
        height: auto;
        display: block;
    }    

    .data-a {
        height: 250px;
    }

}