/* header */
.owl-one .owl-item img {
    width: 100%;
    height: 100vh;
}

.home_banner {
    position: relative;
}

.mobile_home_header{
    display: none;
}

.home_header {
    position: absolute;
    z-index: 99;
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 70px;
    letter-spacing: 2px;
    font-size: 18px;
    color: #000;
}

.home_header div {
    margin: 0 80px;
    cursor: pointer;
    padding: 5px;
}

.home_header div a {
    color: #000;
    text-decoration: none;
}

.home_header div a:hover {
    transition: .5s;
    color: white;
}

.home_header div:hover:not(:first-child) {
    transition: .5s;
    background-color: #777;
    border-radius: 5px;
}

/* index */
h1 {
    width: 100%;
    text-align: center;
    padding: 30px 0;
    font-size: 26px;
    letter-spacing: 2px;
    font-weight: 500;
}

h2 {
    font-size: 18px;
}

.home_detail {
    width: 60%;
    margin: 0 auto;
    letter-spacing: 2px;
    line-height: 2;
    font-size: 14px;
    margin-bottom: 30px;
}

.container {
    width: 1200px;
    margin: auto;
}

.item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.item .pic {
    width: 60%;
    flex-shrink: 0;
}

.item .pic img {
    width: 100%;
    vertical-align: middle;
    border-radius: 10px;
}

.item .text {
    width: 40%;
    flex-shrink: 0;
    position: relative;
    padding: 30px;
    backdrop-filter: blur(5px);
    letter-spacing: 2px;
    line-height: 1.8;
    font-size: 14px;
}

.item:nth-of-type(odd) .text {
    margin-left: -10%;
    background-color: rgba(254, 201, 121, .8);
    border-radius: 10px;
    z-index: 2;
}

.item:nth-of-type(even) .text {
    order: -1;
    margin-right: -10%;
    background-color: rgba(149, 219, 214, .8);
    text-align: right;
    border-radius: 10px;
    z-index: 2;
}

.item .text h2 {
    margin-bottom: 10px;
}

/* footer */
.main_footer {
    background: linear-gradient(-270deg, #e6e9f0, #eef1f5);
}

.wrap {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    padding: 50px;
}

.footer_item {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    color: #000;
    margin-right: 1%;
    margin-left: 1%;
}

h4 {
    font-size: 20px;
    border-bottom: 1px dotted #000;
    font-weight: 700;
    padding-bottom: 10px;
    letter-spacing: 2px;
}

li {
    font-size: 16px;
    padding-top: 10px;
    line-height: 1.5;
}

.copyright {
    text-align: center;
    padding: 10px 0;
    background-color: rgba(254, 201, 121, .8);
    color: #000;
}

.color {
    color: #000;
}

@media(max-width: 1200px){
    .home_header div{
        margin: 0 50px
    }
    .container{
        width: auto;
    }
    .wrap{
        width: auto;
    }
    .item{
        display: flex;
        justify-content: center;
    }
}

@media(max-width: 992px){
    .home_header div{
        margin: 0 40px
    }
}

@media(max-width: 768px){
    .owl-one .owl-item img{
        height: auto;
    }
    .mobile_carousel{
        height: auto !important;
    }
}

@media(max-width: 576px){
    .index_wrap{
        overflow: hidden;
    }
    .home_header{
        display: none;
    }
    .home_detail{
        width: 90%;
    }
    .wrap{
        flex-direction: column;
        padding: 20px;
    }
    .footer_item{
        margin-bottom: 40px;
    }
    .item:nth-of-type(odd){
        display: flex;
        flex-direction: column-reverse;
    }
    .item:nth-of-type(even){
        display: flex;
        flex-direction: column;
    }
    .item .pic{
        width: 90%;
    }
    .item:nth-of-type(odd) .text{
        margin-left: 0;
        margin-bottom: 10px;
    }
    .item:nth-of-type(even) .text{
        margin-right: 0;
        text-align: left;
        margin-bottom: 10px;
    }
    .item .text{
        box-sizing: border-box;
        width: 90%;
        padding: 20px;
        font-size: 16px;
    }
    .mobile_home_header{
        display: flex;
        position: fixed;
        z-index: 999;
        width: 100%;
    }
    .mobile_home_header_logo{
        margin: 10px;
        z-index: 100;
    }
    .bars{
        width: 50px;
        height: 50px;
        background-color: #000;
        margin-left: auto;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 999;
    }
    .bars span{
        width: 30px;
        height: 3px;
        background-color: #FFF;
        display: block;
        margin: 0 auto;
        margin: 4px 0;
    }
    .mobile_link{
        position: fixed;
        z-index: 500;
        width: 100%;
        text-align: center;
        display: none;
    }
    .mobile_link div{
        font-size: 18px;
        background-color: rgba(41, 41, 41, 0.9);
        border-bottom: 1px solid #d0d0d0;
    }
    .mobile_link div a{
        color: #FFF;
        display: block;
        padding: 50px;
        text-decoration: none;
    }
}