body{
    margin: 0;
    padding: 0;
    font-family: Manrope, serif;
    font-weight: 400;
    color: #131313;
}
body *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none;
}
ul{
    list-style: none;
}

.df{
    display: flex;
}
.dn{
    display: none;
}
.pr{
    position: relative;
}
.pa{
    position: absolute;
}
.a-center{
    align-items: center;
}
.a-end{
    align-items: flex-end;
}
.j-center{
    justify-content: center;
}
.j-spc-btw{
    justify-content: space-between;
}
.j-end{
    justify-content: flex-end;
}
.f-column{
    flex-direction: column;
}
.f-wrap{
    flex-wrap: wrap;
}
.tc{
    text-align: center;
}
.btn{
    background: transparent;
    border: none;
    box-shadow: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all .3s linear;
}
input,textarea{
    outline: none;
    box-shadow: none;
    border: none;
}
.swiper {
    width: 100%;
    height: 100%;
}
.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;

}

.active, .accordion:hover {
    background-color: #ccc;
}

.panel {
    padding: 0 18px;
    display: none;
    background-color: white;
    overflow: hidden;
    transition: all .3s linear;
}