/* 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: 30px 0;
}

header .container img {
    width: 100%;
    height: 80px;
}

/* End Header */

/* Start Section */

section{
    width: 95%;
    margin: 0 auto;
    padding: 15px 0;
    border-radius: 8px;
    border: 2px solid #00000012;
}

section .container .title {
    font-weight: bold;
    text-transform: capitalize;
    font-size: 24px;
    color: black;
}

section .container .title span {
    color: #1db6b4;
}

section .container p {
    color: black;
    line-height: 1.2;
    text-align: center;
    text-transform: capitalize;
}

section .container .text {
    text-align: center;
}

section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

section .container form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

section .container .inp {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

section .container .inp label {
    font-weight: bold;
}

section .container .inp input {
    outline: 0;
    border-radius: 4px;
    border: 2px solid #1db6b4;
    padding: 6px 10px;
}

section .container button{
    background-color: #1db6b4;
    width: fit-content;
    padding: 4px 35px;
    font-weight: bold;
    font-size: 17px;
    border-radius: 4px;
    color: white;
}

/* End Section */


/* Start Footer */

@media (min-width: 1200px) {
    footer {
        display: none;
    }
}

footer {
    position: fixed;
    bottom: -9px;
}

.imageFooter {
    width: 100%;
    height: 100%;
}

.imageFooter img {
    width: 100%;
    height: 100%;
}

/* End Footer */