/* Hide scrollbar for Chrome, Safari, and Opera */
::-webkit-scrollbar {
    display: none;
}

/* Import Fonts */

@font-face {
    font-family: Hara-Bold;
    src: url(../fonts/Hauora-Bold.otf);
}

@font-face {
    font-family: Hara-ExtraBold;
    src: url(../fonts/Hauora-ExtraBold.otf);
}

@font-face {
    font-family: Hara-ExtraLight;
    src: url(../fonts/Hauora-ExtraLight.otf);
}

@font-face {
    font-family: Hara-Light;
    src: url(../fonts/Hauora-ExtraLight.otf);
}

@font-face {
    font-family: Hara-Medium;
    src: url(../fonts/Hauora-Medium.otf);
}

@font-face {
    font-family: Hara-Regular;
    src: url(../fonts/Hauora-Regular.otf);
}

@font-face {
    font-family: Hara-SemiBold;
    src: url(../fonts/Hauora-SemiBold.otf);
}

/* Global */

:root {
    --color-black: rgb(0, 0, 0);
    --color-dark: rgb(30, 30, 30);
    --color-light: rgb(255, 255, 255);
    --color-offWhite: #f9f9f7;
    --color-grey: #e9e9e9;
    --color-dgrey: rgb(164, 164, 164);
    --color-orange: #dd8303;
    --color-green: #820000;
    --lg-text: 4rem;
    --xl-text: 6rem;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    font-family: Hara-Regular, sans-serif, Inter, system-ui, Avenir, Helvetica,
        Arial;
    width: 100%;
    height: 100%;
    color: var(--color-dark);
    background-color: var(--color-light);
}

.mobile-view {
    display: none !important;
}

.line {
    overflow: hidden !important;
}

.word {
    /* overflow: hidden !important; */
}

.xs-bottom-space {
    margin-bottom: 3rem;
}

.color-light {
    color: var(--color-light);
}

.color-dark {
    color: var(--color-dark);
}

.color-orange {
    color: var(--color-orange);
}

.color-grey {
    color: var(--color-grey);
}

.color-dgrey {
    color: var(--color-dgrey);
}

.orange-link {
    font-family: Hara-SemiBold, "sans-serif";
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
    padding-bottom: 1rem;
}

.orange-link::after {
    content: "";
    height: 1px;
    width: 0%;
    background-color: var(--color-orange);
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    transition: 0.3s ease;
}

.orange-link:hover {
    color: var(--color-orange);
}

.orange-link:hover::after {
    width: 100%;
    transition: 0.3s ease;
}

.orange-btn {
    font-family: Hara-SemiBold, "sans-serif";
    background-color: var(--color-orange);
    color: var(--color-light);
    padding: 0.7rem 1.3rem;
    border-radius: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: max-content;
    transition: 0.3s ease;
}

.orange-btn i {
    margin-left: 1rem;
    font-size: 1.3rem;
    transition: 0.3s ease;
}

.orange-btn:hover i {
    margin-left: 1.5rem;
    transition: 0.3s ease;
}

.light-btn {
    font-family: Hara-SemiBold, "sans-serif";
    background-color: var(--color-light);
    color: var(--color-orange);
    padding: 0.7rem 1.3rem;
    border-radius: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: max-content;
    transition: 0.3s ease;
}

.light-btn i {
    margin-left: 1rem;
    font-size: 1.3rem;
    transition: 0.3s ease;
}

.light-btn:hover i {
    margin-left: 1.5rem;
    transition: 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Hara-SemiBold, "sans-serif";
}

a {
    color: unset;
    text-decoration: none;
}

p {
    font-family: Hara-Regular, "sans-serif";
    font-size: 18px;
    text-align: justify;
    color: var(--color-dark);
}

.lg-text {
    font-size: var(--lg-text);
    line-height: normal;
}

.xl-text {
    font-size: var(--xl-text);
    line-height: normal;
}

/* Home Styling */

.z-1 {
    z-index: 1;
}

.section-padding {
    padding: 15rem 0rem;
}

.hero-section {
    height: 100vh;
    background-color: var(--color-light);
    color: var(--color-light);
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgb(0 0 0 / 67%);
}

.hero-section img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    top: 0px;
}

.grey-rule {
    height: 1px;
    background-color: grey;
    width: 100%;
    margin: 2rem 0rem;
}

.light-rule {
    height: 1px;
    background-color: var(--color-light);
    width: 100%;
    margin: 2rem 0rem;
}

.orange-rule {
    height: 1px;
    background-color: var(--color-orange);
    width: 100%;
    margin: 2rem 0rem;
}

.process-title-container {
    background-color: var(--color-orange);
    padding: 2rem;
    border-radius: 50px;
}

.process-container {
    background-color: var(--color-green);
    color: var(--color-light);
    display: flex;
    flex-direction: row;
    align-items: center;
}

.process-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.process-number {
    display: grid;
    place-content: center;
    color: var(--color-orange);
    background-color: var(--color-light);
    height: 4.5rem;
    width: 4.5rem;
    border-radius: 50px;
    font-family: Hara-SemiBold, "sans-serif";
    font-size: 2rem;
}

.process-title {
    margin: 0px;
    padding: 0px;
    margin-left: 2rem;
    font-family: Hara-SemiBold, "sans-serif";
}

.meta-btn {
    background-color: var(--color-grey);
    padding: 0.7rem 2rem;
    width: max-content;
    height: max-content;
    border-radius: 50px;
    margin: 0px;
    font-size: 1rem;
    font-family: Hara-SemiBold, "sans-serif";
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.3rem;
}

.project-main-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.project-img-container {
    height: 70vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.project-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-title {
    font-size: 1.5rem;
    margin: 0px;
    padding: 0px;
}

/* Services */

.main-featured-row > div:last-of-type {
    border: none !important;
}

.featured-link {
    transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
    position: relative;
    cursor: pointer;
}

.featured-link:hover {
    color: var(--color-light);
    transition-delay: 0.5s;
}

.featured-row {
    border-bottom: 0.5px solid #48484858;
    padding: 3rem 0rem;
}

.from-top:before {
    bottom: 0;
    border-top: 0;
    border-bottom: 0;
}

.from-top:before,
.from-top:after {
    left: 0;
    height: 0;
    width: 100%;
}

.from-top:hover:before,
.from-top:hover:after {
    height: 100%;
}
.featured-link:before,
.featured-link:after {
    content: "";
    position: absolute;
    transition: inherit;
    z-index: -1;
}

.from-top:hover:before,
.from-top:hover:after {
    height: 100%;
}

.featured-link:hover:after {
    background: var(--color-orange);
    transition-delay: 0.35s;
}
.from-top:after {
    top: 0;
    height: 0;
}
.from-top:before,
.from-top:after {
    left: 0;
    height: 0;
    width: 100%;
}
.featured-link:before,
.featured-link:after {
    content: "";
    position: absolute;
    transition: inherit;
    z-index: -1;
}

/* Footer */

footer {
    padding-bottom: 2rem;
    background-color: var(--color-green);
    padding-top: 10rem;
    /* margin-top: -5rem; */
}

.kick-start-container {
    margin-bottom: 3rem;
}

.kick-start {
    background-color: var(--color-orange);
    padding: 3rem 5rem;
    border-radius: 2rem;
    color: var(--color-light);
}

.footer-link-col {
    display: flex;
    flex-direction: row;
    justify-content: end;
}

.footer-contact-col {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.footer-link-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1rem;
}

/* Nav Style */

.nav-none {
    display: none !important;
}

.my-logo {
    height: 30px;
    width: auto;
}

.nav-bar {
    width: 100vw;
    padding: 20px 0;
    background-color: transparent;
    transition: 0.3s ease;
}

.nav-bar .container {
    z-index: 1040;
}

.toggle-btn {
    display: flex;
    justify-content: flex-end;
}

.toggle {
    padding: 5px;
}

.burger {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.75em 2em 1.5em 2em;
    outline: none;
    border: none;
    width: 28px;
    height: 20px;
    transition: all 250ms ease-in-out;
    cursor: pointer;
    background-color: transparent;
    padding: 0px;
}

/* Dark Naa */

.dark-burger span {
    width: 40px;
    height: 2px;
    position: absolute;
    background: var(--color-light) !important;
    transition: all 250ms ease-in-out;
    will-change: transform;
}

.dark-burger:after,
.dark-burger::before {
    content: "";
    width: 40px;
    height: 2px;
    position: absolute;
    background: var(--color-light) !important;
    transition: all 250ms ease-in-out;
    will-change: transform;
}

.dark-burger:before {
    transform: translateY(-8px);
}

.dark-burger:after {
    transform: translateY(8px);
}

/* Dark Naa */

.burger span {
    width: 40px;
    height: 2px;
    position: absolute;
    background: var(--color-black);
    transition: all 250ms ease-in-out;
    will-change: transform;
}

.burger:after,
.burger::before {
    content: "";
    width: 40px;
    height: 2px;
    position: absolute;
    background: var(--color-black);
    transition: all 250ms ease-in-out;
    will-change: transform;
}

.burger:before {
    transform: translateY(-8px);
}

.burger:after {
    transform: translateY(8px);
}

.active.burger span {
    transform: translateY(0) rotate(45deg);
    opacity: 0;
}

.active.burger:before {
    transform: translateY(0) rotate(45deg);
    background: var(--color-orange) !important;
}

.active.burger:after {
    transform: translateY(0) rotate(-45deg);
    background: var(--color-orange) !important;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    background: var(--color-green);
    will-change: transform;
    transform: translateY(-100%);
}

.overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    gap: 1em;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.menu-item {
    display: flex;
    cursor: pointer;
    overflow: hidden;
}

.menu-item p {
    text-transform: uppercase;
    position: relative;
    text-align: center;
    font-size: 8vw;
    line-height: 80%;
    will-change: transform;
    transition: letter-spacing 0.3s;
    color: var(--color-orange);
}

.menu-item p#active::after {
    content: "";
    position: absolute;
    top: 45%;
    left: 0;
    transform: translateY(-50%);
    background: red;
    width: 0;
    height: 10px;
}

.sub-nav {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5em;
    opacity: 0;
}

.xs-space {
    height: 5rem;
}

.project-gallery-col {
    margin-bottom: 2rem;
}

/* Filter */

.project-page {
    padding: 8rem 0rem 15rem 0rem;
}

.filter-active {
    background-color: var(--color-orange);
    color: var(--color-light);
    transition: 0.3s ease;
}

.filter-section {
    display: flex;
    gap: 1rem;
    flex-direction: row;
    flex-wrap: wrap;
}

.filter-btn {
    cursor: pointer;
    transition: 0.3s ease;
}

.filter-btn:hover {
    background-color: var(--color-orange);
    color: var(--color-light);
    transition: 0.3s ease;
}

/* Desktop Nav */

.desk-nav-link {
    margin-left: 1rem;
}

.bg-light {
    background-color: var(--color-light) !important;
    transition: 0.3s ease;
}

/* About Us */

.about-hero {
    height: 70vh;
    overflow: hidden;
    margin-top: 15rem;
}

.about-hero img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.mission-section {
    margin-top: 15rem;
    background-color: var(--color-green);
}

.grid-item {
    margin-bottom: 5rem;
}

/* Loader */

/* Style for the loading screen */
#loading-screen {
    position: fixed !important;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--color-green);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-parent {
    position: fixed;
    background-color: var(--color-green);
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.loader-container {
    width: 30%;
    max-width: 600px;
    margin: 30px;
    display: flex;
    justify-content: center;
}

/* ------------------------ */
.loader {
    width: max-content;
    height: max-content;
    background-color: transparent;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader img {
    animation: loaderAnimation 3s ease-in-out infinite;
    width: 50%;
}

@keyframes loaderAnimation {
    0%,
    100% {
        opacity: 0;
    }
    25% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    75% {
        opacity: 0.5;
    }
}

/* Error */

.error-container {
    height: 100vh;
    display: grid;
    place-content: center;
    background-color: var(--color-green);
    color: var(--color-orange);
}

.error-text {
    font-size: 40vw;
}

.carousel-main-container {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 0;
}

/* Pricing */

.pricing-main-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: stretch;
}

.pricing-container {
    background-color: var(--color-offWhite);
    border-radius: 1.5rem;
    position: relative;
}

.pricing-head-container {
    background-color: var(--color-orange);
    color: var(--color-light);
    text-align: center;
    padding: 2rem;
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.plan-title {
    width: max-content;
    text-align: center;
}

.pricing-body {
    padding: 2rem;
}

.pricing-list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: start;
    gap: 0.6rem;
}

.pricing-list p {
    font-size: 15px;
    color: var(--color-dark);
    text-align: start;
}

.pricing-list i {
    color: var(--color-orange);
}

.pricing-btn {
    margin-top: 2rem;
}

/* CSS */

/* Accordion */

.faq-accordion {
    background: transparent;
    transition: background 0.3s, border 0.3s, border-radius 0.3s,
        box-shadow 0.3s, transform var(--e-transform-transition-duration, 0.4s);
}

.f-item {
    overflow: hidden;
    border-radius: 10px;
    overflow: hidden;
    padding: 17px 25px 17px 54px;
    position: relative;
    z-index: 1;
    background-color: rgba(0, 0, 0, 6%);
    -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    -khtml-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    -moz-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    -ms-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.f-title {
    color: #010101;
    font-size: 18px;
    font-weight: 400;
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    position: relative;
    margin-bottom: 0;
    cursor: pointer;
}

.f-content {
    margin-top: 17px;
    color: white;
    font-size: 20px;
    font-weight: 400;
    line-height: auto;
    margin-bottom: 3px;
}

.f-title.active {
    color: var(--color-light);
    background: var(--color-orange);
}
