* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

:root {
    --backgroundColorBody: #00172f;
    --secondColor: #5a78e1;
}

body {
    font-family: 'Almarai', sans-serif;
    background-color: var(--backgroundColorBody);
}

/* Container System */
.container {
    margin: auto;
}

@media (min-width: 1200px) {
    .container {
        width: 1200px;
        padding-left: 8px;
        padding-right: 8px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .container {
        width: 992px;
        padding-left: 8px;
        padding-right: 8px;
    }
}

@media (min-width: 767px) and (max-width: 992px) {
    .container {
        width: 768px;
        padding-left: 8px;
        padding-right: 8px;
    }
}

@media (max-width: 767px) {
    .container {
        width: 100%;
        padding-left: 8px;
        padding-right: 8px;
    }
}

/* Global Selector Style  */
.image-control {
    max-width: 100%;
    height: auto;
}

.submit-btn {
    color: var(--backgroundColorBody);
    background: #f7b004;
    padding: 15px 25px;
    border-radius: 15px;
    font-weight: bold;
}

.section {
    padding-top: 10px;
    padding-bottom: 10px;
}

div.submit-button {
    padding-top: 15px;
    padding-bottom: 15px;
}

div.submit-button>a {
    background-color: white;
    color: var(--backgroundColorBody);
    padding: 15px 32px;
    border-radius: 30px;
    font-weight: bold;
}

div.submit-button>a>i {
    padding-right: 2px;
}

.fixed-whatsapp-button {
    position: fixed;
    right: 10px;
    bottom: 10px;
    padding: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    font-size: 22px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Global Selector Style  */

/* header */
header {
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--secondColor);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav>a.logo>img {
    max-width: 150px;
}

.submit-btn>i {
    padding-right: 2px;
}

/* header */

/* section-01 */
.fixed-banner div.submit-button {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* section-01 */

section.section.section-04.fixed-banner .row {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* results-section */
.results-section h2,
.section-07 h2 {
    color: #ffdc4e;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.results-section .results-contianer {
    display: grid;
    grid-template-columns: repeat(2, minmax(450px, 1fr));
}

.results-section .results-contianer>div {
    margin: 5px;
}

.results-section .results-contianer img {
    border: 2px solid #ffdc4e;
    border-radius: 8px;
}

@media (max-width: 992px) {
    .results-section .results-contianer {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

/* results-section */

/* section-07 */
.section-07 .result-item {
    text-align: center;
}

.section-07 .submit-button {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* section-07 */

.section .submit-button {
    text-align: center;
}

/* section.section.section-01.fixed-banner>div.container::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 100%;
    background: linear-gradient(to right, #00172f, transparent);
}

section.section.section-01.fixed-banner>div.container {
    padding: 0px !important;
    position: relative;
}

section.section.section-01.fixed-banner>div.container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to bottom, #00172f, transparent);
} */