* {
    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: #1a6ee1;
}

/* Container System */
.container {
    margin: auto;
    width: 100%;
}

@media (min-width: 1200px) {
    .container {
        width: 100%;
        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: 350px;
    background: #b9fc00;
    text-align: center;
    padding: 13px 10px;
    border-radius: 50px;
    color: #0b448d;
    font-size: 28px;
    font-weight: 600;
    transition: all .5s;
    
}

.btn:hover {
    scale: 0.9;
}

.row {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 0.5rem;
        position: relative;
}

.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;
}

.position-bottom {
    position: absolute;
    bottom: 5%;
}

/*** btns ***/

.btnsflex {
    display: flex;
    gap: 0.5rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -25%);
    z-index: 999;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.btnssec {
    width: 25% !important;
}
.btns-sec1 {
    position: absolute;
    bottom: 99px;
    left: 50%;
    transform: translate(-50%, -25%);
    z-index: 999;
   
}
.btns-sec2 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
}
.btns-sec3 {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -25%);
    z-index: 999;
   
}
.btns-sec4 {
    position: absolute;
    top: 25rem;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
}

@media (max-width: 767px) {
    .container {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    .btn {
        width: 270px;
        padding: 5px;
        font-size: 23px;
    }
    .btns-sec4 {
        position: absolute;
        top: 9rem;
        left: 50%;
        width: 100%;
        transform: translate(-50%, -50%);
    }
    .btns-sec1 {
        position: absolute;
        bottom: 5px;
        left: 50%;
        transform: translate(-50%, -25%);
       
    }
    .btnssec {
        width: 49% !important;
        font-size: 17px;
    }
}











.fixed-button {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background-color: #b9fc00;
    color: #0b448d;
    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;
    z-index: 1000;
}

.fixed-button:hover {
    background-color: #0b448d;
    color: #b9fc00;
}


@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;
    }

}

