


html,
body {
    margin: 0;
    padding: 0;
    color: black;
    height: 100%;
}

.loading-screen {
    position: relative;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    background-color: #4bedc2;
    width: 0%;
    height: 100%;
}

.load-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 10;
    pointer-events: none;
}

h1 {
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Cosi Azure";
    font-size: 84px;
}

.button {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.button a {
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    color: white;
    border: 1px solid white;
    padding: 24px 40px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 10px;
    transition: 0.3s;
}

.button:hover a {
    background: white;
    color: #161616;
    transition: 0.3s;
}


/* -------------------------------------------------- */

main,
.page,
.main-body {
    width: 100%;
    height: 100%;
}

.without-header {
    padding-top: 70px;
}

.img-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
}





.menu-list {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.menu-item {
    list-style: none;
}

.menu-link {
    position: relative;
    margin: 0 1.5rem;
    padding: .25rem 0rem;
    color: rgb(245, 245, 245, .5);
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.menu-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.menu-link:hover {
    color: #f5f5f5;
}

.menu-link:hover::after {
    width: 100%;
}

/*  */

.box-item {
    text-align: right;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 3px;
    box-shadow: 0 2px 5px -3px rgb(12 21 46 / 8%);

}

.box-item-title {
    padding: .5rem;
    font-size: 13px;
    font-weight: bold;
    color: rgb(255, 255, 255);
    background-color: rgba(255, 255, 255, 0.692);
    width: 100%;
    margin-top: 1rem;
    text-align: center;
}

.box-item-copy {
    padding: .5rem;
    font-size: 12px;
    font-weight: bold;
    color: #999;
    text-align: justify;
    direction: rtl;
}

/*  */

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    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;
}

/* hide-scroll */

.hide-scroll {
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}
.hide-scroll::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}