/* 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;
    /* background-image: url(../media/bussiness-hour-bg.png); */
    background-color: #f1f1f1;
}

/* 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);
}


/* End Global Rules */

header {
    border-bottom: 2px solid black;
}

.landingPage {
    background-image: url(../media/cover.png);
    height: 24vh;
    background-repeat: no-repeat;
    background-size: contain;
}


.content-top .image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
}

.content-top .image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid black;
    object-fit: cover;
}

.content-top {
    position: relative;
    top: -50px;
}

.content-top .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.aboutMe .name {
    font-size: 25px;
    font-weight: bold;
    text-transform: capitalize;
}

.aboutMe .posation {
    font-weight: bold;
    color: black;
    font-size: 20px;
}

.company {
    font-size: 25px;
    font-weight: bold;
    text-transform: uppercase;
    background-image: linear-gradient(90deg, black, black, black);
    background-size: 300%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: colorWave 3s linear infinite;
    text-align: center;
}

@keyframes colorWave {
    0% {
        background-position: 0%;
    }

    100% {
        background-position: 100%;
    }
}



.position {
    font-size: 24px;
    font-weight: bold;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

#animated-text {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
}

.cursor {
    font-weight: bold;
    font-size: 24px;
    color: #333;
    animation: blink 0.7s step-end infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/*  */

.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info .image {
    width: 50px;
    height: 50px;
    background-color: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    box-shadow: 0px 0px 10px #00000021;
}

.contact-info {
    border-bottom: 2px solid #3481a13b;
    padding-bottom: 7px;
}

form .inp-gap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

form .inp {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

form .inp label {
    font-weight: bold;
}

form .inp input {
    padding: 5px 7px;
    outline: 0;
    border: 2px solid black;
    border-radius: 4px;
}

form .inp textarea {
    padding: 5px 7px;
    outline: 0;
    border: 2px solid black;
    border-radius: 4px;
    height: 200px;
    max-height: 220px;
}

form button {
    width: fit-content;
    background-color: black;
    padding: 4px 30px;
    border-radius: 4px;
    color: white;
    font-weight: bold;
}

/*  */

.so {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f1f1f1;
    border-radius: 4px;
    box-shadow: 0px 0px 10px #00000021;
}

.so img {
    width: 30px;
}

.social-media {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

/*  */

footer {
    background-color: #e6e6e6;
    padding: 7px 0;
}

footer .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

footer img {
    width: 40%;
    height: auto;
}

/*  */

.videos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

video {
    width: 100%;
    border-radius: 10px;
    border: 2px solid black;
}

.btn {
    width: fit-content;
    background-color: black;
    padding: 4px 30px;
    border-radius: 4px;
    color: white;
    font-weight: bold;
}

.website {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.website a img {
    width: 100%;
    height: 250px;
    border: 2px solid black;
}

.post {
    display: flex;
    gap: 10px;
    flex-direction: column;
    border-radius: 10px;
}

.post img {
    width: 100%;
    height: 100%;
    border: 2px solid black;
    border-radius: 10px;
}

/*  */

.btn-menu {
    width: 100%;
    background-color: black;
    padding: 4px 30px;
    border-radius: 4px;
    color: white;
    font-weight: bold;
    text-align: center;
}

.menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.menu img {
    width: 100%;
    height: 500px;
}