/* Start Global Rules */

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

/* Start Variables */

:root {
    --main-color: #0084D6;
    --sec-color: #343A40;
    --back-color: #0C0A09;
    --text-color: #B0B0B0;
    --main-transition: 0.5s;
    --padding-top: 50px;
    --padding-bottom: 50px;
}

/* End Variables */

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Cairo", sans-serif;
}

/* Start container */

.container {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

/* End container */

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    width: 50px;
    height: 50px;
}


p {
    color: var(--text-color);
}

.btmAni30002 {
    opacity: 0;
    transform: translateY(200px);
    animation: btmAni 800ms cubic-bezier(0.215, 0.61, 0.355, 1) 1.6s forwards;
}

.btmAni2500 {
    opacity: 0;
    transform: translateY(200px);
    animation: btmAni 800ms cubic-bezier(0.215, 0.61, 0.355, 1) 1.5s forwards;
}

.btmAni3000 {
    opacity: 0;
    transform: translateY(200px);
    animation: btmAni 800ms cubic-bezier(0.215, 0.61, 0.355, 1) 1.4s forwards;
}

.btmAni20002 {
    opacity: 0;
    transform: translateY(200px);
    animation: btmAni 800ms cubic-bezier(0.215, 0.61, 0.355, 1) 1.3s forwards;
}

.btmAni25002 {
    opacity: 0;
    transform: translateY(200px);
    animation: btmAni 800ms cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s forwards;
}

.btmAni2000 {
    opacity: 0;
    transform: translateY(200px);
    animation: btmAni 800ms cubic-bezier(0.215, 0.61, 0.355, 1) 1.1s forwards;
}


@keyframes btmAni {
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* End Global Rules */


.page {
    height: 98vh;
    /*overflow: hidden;*/
}

.page .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.page .container .logo {
    width: 350px;
    height: 217px;
}

.page .container .logo img {
    width: 350px;
    height: 217px;
}

.page .container .social{
    display: flex;
    align-items: center;
    gap: 10px;
}

.page .container .links{
    display: flex;
    height: 75px;
    width: 75px;
    background-color: white;
    box-shadow: 0px 0px 10px #00000059;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
}

.page .container .links img{
    width: 56px;
    height: 56px;
}

.animation {
    display: flex;
    justify-content: space-around;
}

.animation img{
    width: 100px;
    height: 220px;
}