/* Start Global Rules */

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

/* Start Variables */

:root {
    --main-color: #49AA4D;
    --sec-color: #E0E1E5;
    --back-color: #0C0A09;
    --text-color: #393939;
    --main-transition: 0.5s;
    --padding-top: 50px;
    --padding-bottom: 50px;
    --bx-sh: 0px 0px 10px #d9d9d9;
    ;
}

/* 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;
}

.main-title {
    margin: 0 auto;
    display: flex;
    font-size: 25px;
    color: black;
    flex-direction: column;
    position: relative;
    font-weight: bold;
    text-transform: uppercase;
    width: fit-content;
}

.main-title img {
    position: absolute;
    width: 250px;
    height: 100px;
    top: -36px;
    left: -67px;
    filter: opacity(0.5);
}

@media (max-width: 768px) {
    .main-title {
        font-size: 25px;
    }
}

/* ****************************** */

.menu {
    display: none;
    flex-direction: column;
    position: relative;
    height: 80px;
    width: 35px;
    border: none;
    outline: none;
    background-color: transparent;
    margin-right: 30px;
    cursor: pointer;
    justify-content: center;
}

@media (max-width: 768px) {
    .menu {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
}

.menu span {
    display: block;
    width: 27px;
    height: 2px;
    margin: 3px auto;
    background-color: black;
    transition: all 0.3s ease-in-out;
}

.menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(-1px, 11px);
    background-color: red;
}

.menu.active span:nth-child(2) {
    opacity: 0;
}

.menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -17px);
    background-color: red;
}

/* **************************** */

.menu-slide {
    display: flex;
    flex-direction: column;
    position: relative;
    height: 80px;
    width: 35px;
    border: none;
    outline: none;
    background-color: transparent;
    margin-right: 30px;
    cursor: pointer;
    justify-content: center;
}

@media (max-width: 768px) {
    .menu-slide {
        display: flex !important;
        align-items: center;
        justify-content: center;
        display: none !important;
    }
}

.menu-slide span {
    display: block;
    width: 27px;
    height: 2px;
    margin: 3px auto;
    background-color: black;
    transition: all 0.3s ease-in-out;
}

.menu-slide.active span:nth-child(1) {
    transform: rotate(45deg) translate(1px, 12px);
    background-color: red;
}

.menu-slide.active span:nth-child(2) {
    opacity: 0;
}

.menu-slide.active span:nth-child(3) {
    transform: rotate(-45deg) translate(-1px, -10px);
    background-color: red;
}

.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 40;
    width: 100%;
    height: 100%;
    background-color: var(--main-blue-color);
    animation: hide 400ms ease 2500ms forwards;
}

.loader img:nth-child(2) {
    width: 280px;
    margin-left: 25px;
    transform: translateY(-20px);
}

@keyframes hide {
    100% {
        top: 100%;
    }
}

.loaderLogo {
    opacity: 0;
    animation: loader 1.5s linear 0s infinite forwards;
}

.loaderLogo img {
    width: 280px;
    height: 280px;
}

@keyframes loader {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* Start BTN */

.btn {
    width: fit-content;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 60px;
    color: black;
    border-radius: 50px;
    gap: 10px;
    font-weight: bold;
    transition: 0.2s;
    text-transform: capitalize;
    border: 1px solid #dbdbdb;
    overflow: hidden;
}

.btn:hover {
    color: white;
}

.btn span {
    position: relative;
    text-transform: capitalize;
    z-index: 10;
}

.btn::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: var(--main-color);
    border-radius: 50%;
    left: -15px;
    top: -19px;
    transition: 0.5s;
}

.btn:hover::before {
    width: 140px;
    height: 140px;
}

.btn::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: var(--main-color);
    border-radius: 50%;
    right: -19px;
    bottom: -18px;
    transition: 0.5s;
}

.btn:hover::after {
    width: 140px;
    height: 140px;
}

a.btn.mb {
    margin: 0 auto;
}

/* End BTN */

.color {
    position: fixed !important;
    width: 100%;
    z-index: 1000;
    background-color: white;
    transition: var(--main-transition);
}

.drop {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: -moz-fit-content;
    width: 60px;
}

.drop .dropMenu {
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
    height: 43px;
    padding: 0 20px;
    position: absolute;
    top: calc(100% + 10px);
    background-color: var(--main-color);
    border-radius: 5px;
    border-right: none;
    animation: none;
    box-shadow: var(--bx-sh);
}

.drop a {
    color: black;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

span.dropMenu a {
    color: white;
}

.drop a .lang {
    width: 0;
    -o-object-fit: contain;
    object-fit: contain;
    display: none;
}

.drop a .drop-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10px;
    transform: translateX(-5px);
    transition: 0.2s;
}

.drop.active .dropMenu {
    display: flex;
}

.drop.active .drop-icon {
    transform: translateX(-5px) rotate(-90deg);
}

.mLinks {
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 768px) {
    .mLinks {
        gap: 0;
    }
}

/* End Global Rules */

/* Start Page */

.page{
        height: 100vh;
    background-image: url(../media/cover.png);
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
}

.page .container{
    height: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 50px;
}

.page .container .logo{
    width: 200px;
    height: 200px;
    background-color: white;
    border-radius: 50%;
    border: 2px solid #399a72;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page .container .logo img{
    width: 200px;
    height: 200px;
}

.page .container .social{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.page .container .social a{
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 7px;
    box-shadow: 0px 0px 10px #cccccc;
}

.page .developed {
    margin: 0 auto;
    width: 100%;
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page .developed img{
    width: 150px;
    height: 60px;
}

.com{
        display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.com span{
        font-weight: bold;
    text-transform: capitalize;
}

/* End Page */