@import url("https://fonts.googleapis.com/css2?family=Reem+Kufi+Fun:wght@400;500;600;700&display=swap");
:root {
    --blue: #0077b5;
    --blue-light: #b0e3ff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --red-light: #ffcdd2;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --yellow-light: #fff2cc;
    --green: #28a745;
    --green-light: #b8ffc9;
    --teal: #20c997;
    --teal-light: #caffef;
    --cyan: #17a2b8;
    --cyan-light: #c8f8ff;
    --white: #fff;
    --gray: #6c757d;
    --gray-light: #dadada;
    --gray-dark: #343a40;

    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;

    --primary: #990000;
    --primary-light: #b00c0c;
    --primary-dark: #6c0505;

    --text-color: #030303;
    --back-color: #ffffff;
    --panel-color: #ffffff80;
    --backdrop-filter: var(--backdrop-filter);
    --font-size: 14px;

    --heading-size: 40px;
    --sub-heading-size: 36px;
    --text-size: 24px;

    --text-shadow: 1px 1px 2px #00000060;
    --box-shadow: 0 4px 8px 0 rgba(12, 10, 10, 0.2),
        0 6px 20px 0 rgba(0, 0, 0, 0.19);
    --box-shadow-reverse: 0 -4px -8px 0 rgba(12, 10, 10, 0.2),
        0 -6px -20px 0 rgba(0, 0, 0, 0.19);
    --inset-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2) inset,
        0 6px 20px 0 rgba(0, 0, 0, 0.19) inset;

    --font-family: "Reem Kufi Fun", sans-serif;
    --section-margin: 80px;
    --side-padding: 128px;
}

@media screen and (max-width: 1440px) {
    :root {
        --heading-size: 38px;
        --sub-heading-size: 34px;
        --text-size: 22px;
    }
}

@media screen and (max-width: 1366px) {
    :root {
        --heading-size: 36px;
        --sub-heading-size: 32px;
        --text-size: 20px;
    }
}

@media screen and (max-width: 1200px) {
    :root {
        --heading-size: 34px;
        --sub-heading-size: 30px;
        --text-size: 19px;
    }
}

@media screen and (max-width: 1024px) {
    :root {
        --heading-size: 32px;
        --sub-heading-size: 28px;
        --text-size: 18px;
        --side-padding: 64px;
    }
}

@media screen and (max-width: 800px) {
    :root {
        --heading-size: 30px;
        --sub-heading-size: 26px;
        --text-size: 17px;
        --side-padding: 56px;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --heading-size: 28px;
        --sub-heading-size: 24px;
        --text-size: 16px;
        --side-padding: 32px;
    }
}

@media screen and (max-width: 600px) {
    :root {
        --heading-size: 26px;
        --sub-heading-size: 22px;
        --text-size: 15px;
    }
}

@media screen and (max-width: 500px) {
    :root {
        --heading-size: 24px;
        --sub-heading-size: 20px;
        --text-size: 14px;
    }
}

@media screen and (max-width: 450px) {
    :root {
        --heading-size: 20px;
        --sub-heading-size: 16px;
        --text-size: 13px;
    }
}

@media screen and (max-width: 360px) {
    :root {
        --heading-size: 18px;
        --sub-heading-size: 14px;
        --text-size: 12px;
    }
}

html {
    overflow-x: hidden;
    overflow-y: auto;
}

*,
*::before,
*::after {
    outline-style: none;
    position: relative;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    scroll-behavior: smooth;
    -webkit-app-region: no-drag;
}

*:focus,
*:active {
    outline-style: none;
}

::-webkit-input-placeholder {
    font-size: var(--text-size);
}
::-moz-placeholder {
    font-size: var(--text-size);
} /* Firefox 19+ */
:-moz-placeholder {
    font-size: var(--text-size);
} /* Firefox 18- */
:-ms-input-placeholder {
    font-size: var(--text-size);
}

body {
    position: relative;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    min-width: 420px;
    overflow: hidden;
}

a {
    color: var(--text-color);
}

a:hover {
    color: var(--primary);
    text-decoration: none;
    cursor: pointer;
}

datalist {
    font-size: var(--text-size);
}

.relative {
    position: relative;
}

.full {
    width: 100%;
}

.nowrap {
    white-space: nowrap;
}

.container {
    position: relative;
    display: inline-block;
    max-width: 1280px;
    width: 100%;
    padding-left: var(--side-padding);
    padding-right: var(--side-padding);
    margin: 0 auto;
}

.heading {
    font-size: var(--heading-size);
    color: inherit;
    font-weight: 900;
}

.sub-heading {
    font-size: var(--sub-heading-size);
    color: inherit;
    font-weight: 600;
}

.text {
    font-size: var(--text-size);
    color: inherit;
    font-weight: 400;
}

.form-group {
    float: left;
    width: 100%;
    margin: 0;
    padding: 8px 16px;
}

.form-label {
    float: left;
    font-size: var(--text-size);
    width: 100%;
    text-align: left;
    padding: 4px 0 0 0;
    margin: 0;
}

.form-control {
    float: left;
    font-size: var(--text-size);
    width: 100%;
    padding: 8px 12px;
    margin: 0;
    border: 2px solid var(--gray-light);
    border-radius: 4px;
}

.form-control:hover,
.form-control:focus,
.form-control:active {
    border: 2px solid var(--gray);
}

.form-control:focus,
.form-control:active {
    box-shadow: 0 0 2px 2px #00000060;
}

.form-button {
    padding: 8px 32px;
    border-radius: 4px;
    font-size: var(--text-size);
    background-color: var(--primary);
    color: var(--back-color);
    border: 2px solid var(--primary);
    cursor: pointer;
}

.form-button:hover {
    background-color: var(--back-color);
    color: var(--primary);
}

.align-left {
    text-align: left;
}

.align-center {
    text-align: center;
}

.align-right {
    text-align: right;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.text-danger {
    color: var(--danger) !important;
}

.navbar {
    position: fixed;
    top: 30px;
    left: 0;
    height: 100px;
    width: 90%;
    margin: 20px 5%;
    padding: 8px 32px;
    background-color: #900000dd;
    backdrop-filter: blur(6px);
    border-radius: 4px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--box-shadow);
    z-index: 999;
}

#nav-toggle {
    display: none;
}

#nav-toggle img {
    height: 48px;
    width: 48px;
}

.navbar .brand-container {
    position: relative;
    width: 220px;
    height: 140px;
    border-radius: 50%;
    box-shadow: var(--box-shadow);
    background-color: #000000;
}

.navbar .brand-container .brand-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    transform: translate(-50%, -50%);
}

.navbar .nav-container {
    flex: 1;
    background-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    transition: all 0.3s;
}

.navbar .nav-container .nav-item {
    color: var(--back-color);
    text-decoration: none;
    font-size: var(--text-size);
    margin: 16px;
    cursor: pointer;
}

.navbar .nav-container .nav-item:hover {
    color: var(--back-color);
    text-decoration: underline;
}

@media screen and (max-width: 1366px) {
    .navbar {
        height: 80px;
        top: 24px;
    }

    .navbar .brand-container {
        width: 200px;
        height: 120px;
    }

    .navbar .brand-container .brand-logo {
        width: 220px;
    }
}

@media screen and (max-width: 1024px) {
    .navbar {
        height: 74px;
        top: 20px;
    }

    .navbar .brand-container {
        width: 180px;
        height: 100px;
    }

    .navbar .brand-container .brand-logo {
        width: 200px;
    }
}

@media screen and (max-width: 800px) {
    #nav-toggle {
        display: block;
    }

    .navbar .nav-container {
        position: absolute;
        top: calc(100% + 10px);
        right: -100%;
        background-color: #900000dd;
        backdrop-filter: blur(6px);
        box-shadow: var(--box-shadow);
        border-radius: 4px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
    }

    .navbar .nav-container.show {
        right: 0;
    }
}

@media screen and (max-width: 600px) {
    .navbar {
        height: 64px;
        top: 12px;
    }

    .navbar .brand-container {
        width: 160px;
        height: 80px;
    }

    .navbar .brand-container .brand-logo {
        width: 180px;
    }
}

.main {
    position: relative;
}

.page-section {
    float: left;
    width: 100%;
    margin-bottom: var(--section-margin);
}

#home {
    height: 100vh;
}

.banner-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.banner-container::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #00000080;
    z-index: 2;
}

.banner-content {
    position: relative;
    float: left;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    position: absolute;
    left: 5%;
    top: 50%;
    width: calc(100% - 128px);
    max-width: 768px;
    color: var(--back-color);
    transform: translate(0, -50%);
}

.hero-heading {
    font-size: 48px;
}

.hero-text {
    font-size: var(--text-size);
}

@media screen and (max-width: 1440px) {
    .hero-heading {
        font-size: 44px;
    }
}

@media screen and (max-width: 1366px) {
    .hero-heading {
        font-size: 42px;
    }
}

@media screen and (max-width: 1200px) {
    .hero-heading {
        font-size: 40px;
    }
}

@media screen and (max-width: 1024px) {
    .hero-heading {
        font-size: 38px;
    }
}

@media screen and (max-width: 800px) {
    .hero-heading {
        font-size: 36px;
    }
}

@media screen and (max-width: 768px) {
    .hero-heading {
        font-size: 34px;
    }
}

@media screen and (max-width: 600px) {
    .hero-heading {
        font-size: 32px;
    }
}

@media screen and (max-width: 500px) {
    .hero-heading {
        font-size: 30px;
    }
}

@media screen and (max-width: 450px) {
    .hero-heading {
        font-size: 28px;
    }
}

@media screen and (max-width: 360px) {
    .hero-heading {
        font-size: 24px;
    }
}

#aim,
#products,
#contact {
    color: var(--back-color);
    padding-top: 50px;
    padding-bottom: 50px;
}

.director-container .director-image {
    width: 300px;
    border-radius: 4px;
    margin: auto;
    margin-bottom: 16px;
}

.director-container .director-text {
    width: calc(100% - 300px);
}

.director-container .director-text.float-left {
    padding: 0 32px 32px 0;
}

.director-container .director-text.float-right {
    padding: 0 0 32px 32px;
}

@media screen and (max-width: 800px) {
    .director-container .director-image {
        float: none !important;
        width: 300px;
        margin-bottom: 16px;
    }

    .director-container .director-text {
        width: 100%;
    }

    .director-container .director-text.float-left,
    .director-container .director-text.float-right {
        padding: 0;
    }
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-linear-gradient(-60deg, #990000 50%, #990000dd 50%);
    background: linear-gradient(-60deg, #990000 50%, #990000dd 50%);
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    z-index: -auto;
}

.product-list {
    float: left;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 16px;
}

.product-pill {
    align-self: center;
    justify-self: center;
    width: 100%;
    max-width: 300px;
    background: linear-gradient(
        90deg,
        #fdfdfd calc(50% - 4px),
        #d3d3d3,
        #ffffff calc(50% + 4px)
    );
    color: var(--text-color);
    font-weight: 500;
    border-radius: 100px;
    margin: 16px;
    padding: var(--text-size) calc(var(--text-size) / 2);
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.contact-form-container {
    float: left;
    width: 50%;
    padding: 16px;
}

.form-container {
    position: relative;
    float: left;
    width: 100%;
    padding-bottom: 100%;
}

.form {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    background-color: var(--back-color);
    color: var(--text-color);
    overflow: hidden;
}

.contact-form {
    padding: 32px;
}

@media screen and (max-width: 1200px) {
    .contact-form-container {
        float: left;
        width: 100%;
        padding: 16px;
    }

    .form-container {
        position: relative;
        float: left;
        width: 100%;
        padding-bottom: 60%;
    }
}

.footer {
    float: left;
    width: 100%;
}

.address-list {
    float: left;
    width: 100%;
}

.address-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
}

.address-container img {
    height: var(--text-size);
    width: var(--text-size);
    margin: 1% 1%;
}

.address-container p {
    flex: 1;
}

.footer .container {
    border-bottom: 1px solid var(--primary);
}
