@font-face {
    font-family: FontName;
    src: url('../fonts/YekanBakh-Regular.eot'),
        url('../fonts/YekanBakh-Regular.woff') format('woff'),
        url('../fonts/YekanBakh-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: FontName;
}

.swiper-slide {
    height: 100%;
    width: 100%;
    background-size: cover;
}

.desktop {
    display: block;
}

.mobile {
    display: none;
}

@media screen and (max-width:1100px) {
    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }
}

.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    transition: 1s;
}

.menu-content {
    background-color: rgb(240, 237, 237);
    height: 100%;
    transition: 1s;
    direction: rtl;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
}

.button {
    height: 50px;
    width: 100px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0);
    color: black;
    border: 1px solid black;
    border-radius: 8px;
    transition: .5s;

    &:hover {
        background-color: black;
        color: white;

    }
}


.accordion {
    width: 90%;
    margin: 50px auto;
}

.accordion-item {
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-bottom: 5px;
}

.accordion-header {
    background-color: #f1f1f1;
    padding: 10px;
    cursor: pointer;
    border-radius: 8px;
}

.accordion-content {
    display: none;
    padding: 10px;
}