@font-face {
    font-family: danae;
    font-style: normal;
    font-weight: normal;
    src: url('./fonts/DanaFaNum-Regular.woff2') format('woff2'),
}
@font-face {
    font-family: dana-en;
    font-style: normal;
    font-weight: normal;
    src: url('./fonts/Dana-Regular.woff2') format('woff2'),
}
@font-face {
    font-family: alhelal;
    font-style: normal;
    font-weight: normal;
    src: url('./fonts/Al-Hilal.otf') format("opentype"),
}

body {
    font-family: danae;
}

.btn-green,
.whatsapp {
    display: none;
}

.web-picture {
    width: 100%;
    height: 100dvh;
}

.whatsapp2 {
    display: none
}

@media only screen and (max-width: 560px) {
    .btn-green {
        position: fixed;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 55px;
        left: 0;
        bottom: 0;
        background-color: #49df54;
        color: #fff;
        font-weight: bold;
        font-size: 1.25rem;
        gap: 1rem;
        box-shadow: 0 2px 20px rgba(41, 216, 94, 0.548);
    }

    .btn-green a {
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        font-weight: bold;
        font-size: 1.25rem;
        gap: 1rem;
        box-shadow: 0 2px 20px rgba(41, 216, 94, 0.548);
        text-decoration: none;
    }
    .btn-black {
        position: fixed;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 55px;
        left: 0;
        bottom: 0;
        background-color: #000000;
        color: #fff;
        font-weight: bold;
        font-size: 1.25rem;
        gap: 1rem;
        border-top: 4px solid #EF6C00;
    }

    .btn-black a {
        display: flex;
        justify-content: center;
        align-items: center;
        color: #e98717;
        font-weight: bold;
        font-size: 1.25rem;
        gap: 1rem;
        text-decoration: none;
    }

    .whatsapp {
        display: flex;
        position: fixed;
        right: 0;
        bottom: 6rem;
    }

    .whatsapp svg {
        width: 40%;
    }

    .whatsapp2 {
        display: block;
        position: fixed;
        left: 5px;
        bottom: 10%;
        width: 5rem;
        height: auto;
        transform: translate3d(0, 0, 0);
        backface-visibility: hidden;
        animation-name: shakeMe;
        animation-duration: 5s;
        animation-iteration-count: infinite;
        animation-timing-function: ease-in-out;
    }

    .whatsapp3 .box{
        display: flex;
        gap: 3px;
        justify-content: center;
        align-items: center;
        position: fixed;
        left: 0px;
        bottom: 49px;
        width: 61%;
        height: 5rem;
        background-color: #000;

        font-weight: bold;
        border-radius: 0 15px 15px 0;
        border-right: 4px solid #FB8C27;
    }
    .whatsapp3 .box a{
        color: #FB8C27;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .whatsapp3 .box svg{
        width: 24px;
    }
    .whatsapp3 .content a p{
        margin-bottom: 0;
        font-size: 10px;
    }

    .whatsapp3 .content span{
        font-family: arial;
        font-weight: bold;
        font-size: 20px;
}
    }


@keyframes shakeMe {

    2%,
    20% {
        transform: translate3d(-5px, 0, 0);
    }

    4%,
    18% {
        transform: translate3d(5px, 0, 0);
    }

    6%,
    10%,
    14% {
        transform: translate3d(-5px, 0, 0);
    }

    8%,
    12% {
        transform: translate3d(5px, 0, 0);
    }

    20% {
        transform: translate3d(0px, 0, 0);
    }
}

/* @keyframes scale-point {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
} */

.toggle-btn {
    padding: 0;
    background-color: #F44336;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    width: 90px;
    height: 90px;
    z-index: 10;
    position: fixed;
    right: 1rem;
    bottom: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.toggle-btn:hover {
    background-color: #F44336;
}
.toggle-btn span{
    font-size: .725rem;
}
.menu {
    position: fixed;
    bottom: 0;
    right: 0;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out, visibility 0.3s, opacity 0.3s;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 0;
    visibility: hidden;
    opacity: 0;
    z-index: 11;
    width: 100%;
}

.menu ul {
    list-style: none;
    padding: 10px;
    margin: 0;
}

.menu li {
    padding: 10px;
    text-align: right;
}

.menu li a {
    font-family: dana-en;
    font-weight: bold;
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.25rem;
}

.menu li a span {
font-weight: bold;
}

.menu li a:hover {
    color: #007bff;
}
.menu li:hover {
    background-color:#f3f3f3
}
.menu.show {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

@keyframes shake {
    0%, 100% {
      transform: translateX(0);
    }
    25% {
      transform: translateX(-5px);
    }
    50% {
      transform: translateX(5px);
    }
    75% {
      transform: translateX(-5px);
    }
  }

  .toggle-btn.shake {
    animation: shake 0.3s ease-in-out;
  }