html, body {
    width: 100vw;
    height: 100%;
    margin: 0;
    padding: 0;
    resize: none;
    overflow-x: hidden;
}

body {
    font-family: Almarai, Arial, sans-serif;
    font-size: 1.1em;
    direction: rtl;
}

a {
    text-decoration: none;
}

.bg_color {
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: -1;
    background: #e6fdfc;
    opacity: 0.6;
}

.bg {
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: -2;
    opacity: 0.15;
    background-image: url('../img/pattern.png');
    background-repeat: repeat;
    background-size: contain;
    background-position: center;
    /* animation: scrollBackground 60s infinite alternate; */
}

.container {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
    min-height: 650px;
    height: 100%
}

.container .section {
    display: flex;
    flex-direction: column;
}

.container .section a {
    margin: 10px auto;
}

.header {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.header .logo {
    display: block;
    position: relative;
    animation: bounce 1s forwards;
    animation-iteration-count: 3;
    animation-timing-function: linear;
    animation-delay: 1s;
    height: 80px;
}

.header .logo.tara {
    height: 110px;
}

.header .slogan {
    font-size: 1em;
    font-weight: bold;
    margin: 5px auto;
}

.header .slogan.dark {
    color: #028078;
}

.header .slogan.light {
    color: #00a59b;
}


@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

.btn {
    font-family: inherit;
    font-size: 0.8em;
    font-weight: 800;
    margin: 0 auto;
    padding: 10px 25px;
    width: 220px;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.2s ease-in-out;
    border-radius: 10px;
    border-color: transparent;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    cursor: pointer;
}

.btn-invert {
    background-color: #02504f;
    color: white;
}

.btn-light {
    background-color: #00a59b;
    color: white;
}

.btn-dark {
    background-color: #028078;
    color: white;
}

.btn:hover {
    transform: scale(1.1);
    background-position: right center;
    color: white;
    text-decoration: none;
    box-shadow: 0 0 10px #013f3b;
}

@keyframes scrollBackground {
    0% {
        background-position: right center;
        transform: scale(1);
    }

    50% {
        background-position: left center;
        transform: scale(2);
    }

    100% {
        background-position: right center;
        transform: scale(1);
    }
}