* , *::after , *::before{
	margin:0;
	padding:0;
	outline:none;
	box-sizing: border-box;
}
body{
    padding:0;
	font-size:16px;
    color:var(--prim);
    line-height: 1.5;
}
div,span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
}
a *{
    transition: all 200ms linear;
}
a:hover ,a {
    text-decoration: none;
}
a{
    color: var(--link);
}
ol,
ul,
li {
    list-style-type: none;
    cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6,
dl,
ol,
ul {
    margin: 0;
}
svg{
    overflow: visible;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
.d-flex{
    flex-wrap: wrap;
}
.text-justify{
    text-align: justify;
}
.CP{
    cursor: pointer;
}
.disabled{
    pointer-events: none;
    filter: grayscale(0.7);
}
.mobm{
    display: none;
}
.mobh{
    display: block;
    }
.swiper {
    width: 100%;
height: 100%;
    }

    .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
@media screen and (max-width:769px){
    .mobm{
        display: block;
    }
    .mobh{
        display: none ;
    }
}