/* Default Setting Theme */
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
/* Fonts File Import */
@font-face {
    font-family: Inter-Regular;
    src: url(../fonts/Inter-Regular.ttf);
}
@font-face {
    font-family: Inter-Bold;
    src: url(../fonts/Inter-Bold.ttf);
}
/* Main Style Theme */
html{
    font-family: syne;
    scroll-behavior: smooth;
}
/* Container Style Theme */
.full_width{
    width: 100%;
    height: auto;
    padding: 5px;
}
.fix_width{
    max-width: 1400px;
    height: auto;
    margin: auto;
    padding: 5px;
}
.content_inline_jusfity_center_align_item_center{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 5px;
}
.content_inline_jusfity_sp_align_item_center{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 5px;
    margin-top: 10px;
}
.content_inline_jusfity_sp{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 5px;
    margin-top: 10px;
}
.width_45{
    width: 45%;
    height: auto;
    margin: 5px;
}
.width_35{
    width: 35%;
    height: auto;
    margin: 5px;
}
.width_90{
    width: 90%;
    height: auto;
    margin: 5px;
}
.width_100{
    width: 100%;
    height: 15px;
}
.footer_content_inline_jusfity_sp_align_item_center {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    padding: 5px;
}
.footer_width_35{
    width: 20%;
}
.footer_width_45{
    width: 35%;
    padding-right: 20px;
}
/* Images Style Theme */
.images_size{
    max-width: 100%;
    height: auto;
}
.max_width_images{
    max-width:70px;
    height: auto;
}
.ptb{
    padding-top: 150px;
    padding-bottom: 150px;
}
