* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}


html {
    scroll-behavior: smooth;
}

body {
    /* font-family: 'Almarai', sans-serif; */
    background-color: #080e11;
}

/* Container System */
.container {
    margin: auto;
}

@media (min-width: 1200px) {
    .container {
        width: 1200px;
        padding-left: 8px;
        padding-right: 8px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .container {
        width: 992px;
        padding-left: 8px;
        padding-right: 8px;
    }
}

@media (min-width: 767px) and (max-width: 992px) {
    .container {
        width: 768px;
        padding-left: 8px;
        padding-right: 8px;
    }
}

@media (max-width: 767px) {
    .container {
        width: 100%;
        padding-left: 8px;
        padding-right: 8px;
    }
}

/* Global Selector Style  */
.image-control {
    max-width: 100%;
    height: auto;
}
.btn {
    width: 500px;
    animation: heartbeat 1.5s ease-in-out 1s infinite both;
}


.row {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 0.5rem;
}

.full-width {
    width: 100%;
}

.gap-0 {
    row-gap: 0 !important;
}

.flex-d-c {
    flex-direction: column;
}


.flex-d-r {
    flex-direction: row;
}


.position-r {
    position: relative;
}


/*** btns ***/

.btns-sec1 {
    position: absolute;
    bottom: 9%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.btns-sec2 {
    position: absolute;
    bottom: 9%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.btns-sec3 {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}


@media (max-width: 767px) {
    .container {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    .btn {
        width: 285px;
    }
    .btns-sec1 {
        bottom: 10px;
    }
    .btns-sec2 {
        bottom: -16px;
    }
    .btns-sec3 {
        bottom: -34px;
    }
}










.fixed-button {
    position: fixed;
    bottom: 64px;
    right: 20px;
    background-color: #0056b3;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
    animation: heartbeat 1.5s ease-in-out 1s infinite both;
}

.fixed-button:hover {
    background-color: #ffbf1c;

}


@keyframes heartbeat { 

    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    10% {
        -webkit-transform: scale(.91);
        transform: scale(.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    17% {
        -webkit-transform: scale(.98);
        transform: scale(.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    33% {
        -webkit-transform: scale(.87);
        transform: scale(.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

}