html, body {height: 100%; width: 100%; font-size: 16px;}
body {font-family: "JL_font"; font-weight: 400; font-style: normal; overflow-x: hidden;}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face{
    font-family: "JL_font";
    src: url("../font/JLREmeric-ExtraLight.otf") format("opentype"), url("../font/JLREmeric-ExtraLight.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
@font-face{
    font-family: "JL_font";
    src: url("../font/JLREmeric-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face{
    font-family: "JL_font";
    src: url("../font/JLREmeric-SemiBold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
.container{
    /* max-width: 1440px; */
    width: 100%;
    margin: 0 auto;
    padding: 38px;
}
    .container .logo_header{
        width: 309px;
        height: auto;
        object-fit: contain;
        object-position: top left;
    }
    .container .title{
        font-size: 32px;
        line-height: 1.125em;
        font-family: "JL_font";
        margin-bottom: 38px;
        font-weight: 200;
        text-transform: uppercase;
    }
.img_container img{
    width: 100%;
    max-height: 450px;
    height: auto;
    object-fit: cover;
    object-position: center center;
    display: block;
}
.text_link{
    font-size: 11px;
    text-transform: uppercase;
    color: #000000;
    font-weight: 700;
    letter-spacing: 0.1em;
}
.text_link.text_link_mob{
    display: none;
}
    .link{
        text-decoration: none;
        display: inline-block;
        position: relative;
        border-bottom: 1px solid #000000;
        color: #000000;
        font-weight: 700;
        margin-left: 5px;
    }
    .link:hover{
        color: #9E1B32;
        border-color: #9E1B32;
    }
.btn_section{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 15px;
    margin-bottom: 35px;
}
    .btn_section .btn_list{
        width: 50%;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
        .btn_section .btn{
            margin: 0 5px;
            margin-bottom: 10px;
        }
            .btn_section .btn:first-child{
                margin-left: 0;
            }
        .btn_section .btn_list .btn_icon{
            width: auto;
        }
            .btn_section .btn_list .btn_icon svg{
                width: auto;
                height: 16px;
                fill: #FFFFFF;
                vertical-align: middle;
            }
.special_text{
    font-size: 11px;
    line-height: 16px;
    color: #acacac;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    display: none;
    text-transform: uppercase;
}

.btn{
    border: 1px solid #141414;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    width: auto;
    font-size: 11px;
    letter-spacing: 0.1em;
    /* line-height: 45px; */
    font-family: "JL_font";
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    padding: 0 30px;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
    background-color: #141414;
    transition: background-color 0.4s ease-in-out, border-color 0.4s ease-in-out, color 0.4s ease-in-out;
}
.btn_j{
    background-color: #9E1B32;
    border-color: #9E1B32;
}
.btn_lr{
    background-color: #005A2B;
    border-color: #005A2B;
}
.btn_transparent{
    background-color: transparent;
    border-color: transparent;
    color: #141414;
}
    .btn_transparent span{
        display: inline-block;
        border-bottom: 1px solid #141414;
        transition: border-color 0.4s ease-in-out;
    }
    .btn_transparent.btn_j span{
        display: inline-block;
        border-bottom: 1px solid #9E1B32;
    }
    .btn_transparent.btn_lr span{
        display: inline-block;
        border-bottom: 1px solid #005A2B;
    }

.btn:hover{
    color: #141414;
    background-color: #ffffff;
}
.btn_j:hover{
    background-color: #141414;
    border-color: #141414;
    color: #ffffff;
}
.btn_lr:hover{
    background-color: #141414;
    border-color: #141414;
    color: #ffffff;
}
.btn_transparent:hover{
    background-color: #141414;
    border-color: #141414;
}
    .btn_transparent:hover span{
        border-bottom: 1px solid transparent!important;
    }

.btn svg{
    width: 17px;
    height: 17px;
    fill: #ffffff;
    flex-shrink: 0;
    transition: fill 0.4s ease-in-out;
}
.btn:hover svg{
    fill: #000000;
}
.btn svg + span,
.btn span + svg{
    margin-left: 10px;
}


.img_container img.mobile-image {
	display: none;
}

@media screen and (max-width: 1199px){
    .container{
        padding: 30px;
    }
    .container .logo_header{
        width: 240px;
        height: auto;
    }
    .container .title{
        font-size: 28px;
        line-height: 1.125em;
        margin-bottom: 30px;
    }
    .img_container img{
        object-fit: contain;
    }
}
@media screen and (max-width: 991px){
    .btn_section .btn_list{
        padding-right: 5px;
    }
    .btn_section .btn_list+.btn_list{
        padding-left: 5px;
        padding-right: 0px;
    }
    .btn_section .btn_list .btn{
        width: 100%;
        margin: 0;
        margin-bottom: 10px;
    }
    .btn_section .btn_list .btn_icon{
        width: calc(50% - 5px);
    }
    .btn_section .btn_list .btn_icon{
        margin-right: 5px;
    }
    .btn_section .btn_list .btn_icon+.btn_icon{
        margin-right: 0px;
        margin-left: 5px;
    }
}
@media screen and (max-width: 767px){
    .container{
        padding: 22px 30px;
    }
    .container .title{
        font-size: 21px;
        line-height: 1.142em;
        margin-bottom: 22px;
    }
    .img_container img{
        height: 50vw;
        max-height: none;
        object-fit: cover;
    }
    .btn_section .btn_list{
        width: 100%;
        padding: 0px;
    }
    .btn_section .btn_list:first-child{
        margin-bottom: 22px;
    }
    .btn_section .btn_list .btn:not(.btn_icon){
        width: 100%;
    }
	.img_container img.mobile-image {
		display: block;
	}
	.img_container img.non-mobile-image {
		display: none;
    }
    .text_link{
        display: none;
    }
    .text_link.text_link_mob{
        display: block;
    }
}
@media screen and (max-width: 575px){
    .link_list{
        justify-content: space-between;
    }
        .link_list .btn{
            width: calc(50% - 5px);
            margin: 0;
            margin-bottom: 10px;
        }
            .link_list .btn span{
                display: none;
            }
        .link_list .btn:last-child{
            width: 100%;
        }
            .link_list .btn:last-child span{
                display: inline-block;
            }
    .special_text{
        display: block;
    }
}