/* 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);
}


/* End Global Rules */

/* Start Header */

header {
    display: flex;
    padding: 40px 0;
}

header .container img {
    width: 100%;
    height: 120px;
}

/* End Header */

/* Start Section */

section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

section .container .box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

section .container .sec {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

section .container .sec .contactImage {
    width: 90px;
    height: 90px;
    background-color: white;
    box-shadow: 0px 0px 10px #0000001a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

section .container .sec span {
    font-weight: bold;
    text-transform: capitalize;
}

a.box {
    background-color: white;
    box-shadow: 0px 0px 10px #0000001a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 7px 30px;
    font-weight: bold;
    border: 1px solid #e9e9e9;
}

/* End Section */


/* Start Footer */

footer {
    position: fixed;
    bottom: -19px;
}

.imageFooter {
    width: 100%;
    height: 100%;
}

.imageFooter img {
    width: 100%;
    height: 100%;
}

/* End Footer */

.box-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.box-col .title {
    font-size: 25px;
    font-weight: bold;
}