    @import "./fonts/myriad-pro-cufonfonts-webfont/style.css";
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    #page-loader {
        position: fixed;
        top: 0;
        width: 100%;
        height: 100%;
        background: #0a0607;
        z-index: 1000;
        display: flex;
        justify-content: center;
    }
    
    #page-loader img {
        position: absolute;
        display: block;
        margin-left: auto;
        margin-right: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        animation: rotateAnimation 1s linear infinite;
    }
    
    #page-loader img:before {
        content: '';
        position: absolute;
        top: 0;
        left: -100px;
        width: 70px;
        height: 100%;
        background: rgba(255, 255, 255, 0.3);
        transform: skewX(-30deg);
        animation-name: slide;
        animation-duration: 7s;
        animation-timing-function: ease-in-out;
        animation-delay: .3s;
        animation-iteration-count: infinite;
        animation-direction: alternate;
        background: linear-gradient( to right, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0.13) 77%, rgba(255, 255, 255, 0.5) 92%, rgba(255, 255, 255, 0.0) 100%);
    }
    
    @keyframes slide {
        0% {
            left: -100;
            top: 0;
        }
        50% {
            left: 120px;
            top: 0px;
        }
        100% {
            left: 290px;
            top: 0;
        }
    }
    
    body {
        font-family: 'Myriad Pro Condensed';
        font-weight: normal;
        height: 100vh;
        /* background-color: #02071b; */
        background-color: #000000;
    }
    
    .pop-ant {
        position: absolute;
    }
    
    .pop-ant .ant {
        max-width: 300px;
    }
    
    @media (max-width: 992px) {
        .pop-ant .ant {
            max-width: 125px;
        }
        section.land-container .keep-going {
            max-width: 125px !important;
            top: -33vh !important;
            left: 34vw !important;
        }
    }
    
    .modal {
        max-width: 90%;
        height: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    
    @media (max-width: 992px) {
        .modal {
            height: 92%;
        }
    }
    
    .modal a.close-modal {
        top: 0;
        left: 0;
        width: 60px;
        height: 60px;
    }
    
    .popup-section {
        background-color: black;
        margin: auto;
        margin-top: 50px;
        margin-bottom: 50px;
        border: 1px solid white;
        width: 87%;
        padding-top: 0px;
        padding-bottom: 0px;
    }
    
    .popup-logo-top {
        float: right;
        margin-right: 60px;
        border: 1px solid white;
        border-bottom-right-radius: 15px;
        border-bottom-left-radius: 15px;
        padding: 8px;
        margin-top: -1px;
    }
    
    .popup-close-button {
        font-size: 50px;
        font-weight: 100;
        padding: 20px;
        margin: 0;
        margin-top: -30px;
        margin-left: 5px;
    }
    
    .popup-main-division {
        padding: 25px;
        border: 1px solid #FFFFFF;
        border-radius: 35px;
        margin: 50px;
        margin-right: 150px;
        margin-top: 0;
    }
    
    .popup-main-division>div>img {
        max-width: 100%;
    }
    
    .popup-main-division-text {
        font-size: 14px;
        padding-left: 50px;
    }
    
    .popup-category-display-button {
        margin-bottom: -1px;
        border: 1px solid white;
        border-top-left-radius: 35px;
        border-top-right-radius: 35px;
        padding: 0;
        text-align: center;
        padding: 6px;
        font-weight: 300;
        text-transform: uppercase;
        cursor: pointer;
    }
    
    .popup-Title {
        font-family: 'Myriad Pro Condensed';
        font-size: 27px;
        color: #878786;
    }
    
    .popup-Text {
        font-family: 'Myriad Pro Condensed';
        font-weight: light;
        font-size: 18px;
        color: #DEDEDE;
    }
    
    .SliderImages {
        height: 372px;
    }
    
    @media (max-width:1200px) {
        .popup-category-display-button {
            font-size: 1rem;
        }
        .popup-main-division-text h2 {
            font-size: 1.5rem;
        }
        .popup-main-division {
            margin-right: 50px;
        }
    }
    
    @media (max-width:992px) {
        .popup-category-display-button-container {
            width: 20.5%;
        }
        .popup-main-division-text {
            padding: 0px;
        }
        .popup-section {
            padding: 0px;
        }
    }
    
    @media (max-width:768px) {
        .popup-category-display-button-container {
            width: 26.5%;
        }
        .row.popup-main-division {
            margin-left: 30px;
            margin-right: 30px;
            padding: 30px;
        }
        .popup-logo-top {
            margin-right: 20px;
            width: 115px;
        }
    }
    
    @media (max-width:576.1px) {
        .popup-category-display-button-container {
            width: 36.5%;
        }
        .popup-category-display-button.h4 {
            font-size: 0.85rem;
        }
        .row.popup-main-division {
            margin-left: 15px;
            margin-right: 15px;
            padding: 15px;
        }
    }
    
    header {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        min-height: 100vh;
        text-align: center;
        z-index: -1;
    }
    
    .sky-container {
        background-image: url("assets/sky.jpg");
        background-size: contain;
        padding-left: 20%;
    }
    
    @media (max-width: 992px) {
        .sky-container {
            background-image: url("assets/sky.jpg");
            background-size: cover;
            padding-left: 20%;
        }
    }
    
    .sky-container .earth-floating {
        animation: float 6s ease-in-out infinite;
        max-width: 220px;
        margin-bottom: 230px;
    }
    
    section.land-container {
        display: flex;
        z-index: 1;
        min-height: 100vh;
        position: relative;
        flex-direction: column;
        align-items: flex-start;
    }
    
    section.land-container .land-bg {
        position: absolute;
        top: -25vh;
        width: 100%;
    }
    
    section.land-container .keep-going {
        position: absolute;
        top: -34vh;
        left: 45vw;
        max-width: 300px;
        width: 100%;
        display: block;
        height: auto;
        z-index: 1;
    }
    
    section.footer {
        font-family: 'Myriad Pro Condensed';
        color: white;
        font-size: 20px;
        background: linear-gradient(to top, rgb(0 0 0), rgba(0, 0, 0, 0) 90%, rgb(0 0 0)), url(assets/footer-bg.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position-y: center;
        background-position-x: center;
        background-color: black;
    }
    
    section.footer .footer-logo {
        max-width: 250px;
        margin-bottom: 40px;
    }
    
    section.footer h3 {
        color: #828588;
        margin-bottom: 0;
        margin-top: 25px;
        font-size: 35px;
    }
    
    section.footer p {
        margin: 0;
    }
    
    section.footer ul {
        color: #828588;
        margin-top: 20px;
        margin-bottom: 20px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    section.footer ul li {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-left: 10px;
    }
    
    section.footer ul li:before {
        content: "â€¢";
        color: #828588;
        font-size: 25px;
    }
    
    section.footer ul a {
        font-family: 'Myriad Pro Condensed', serif;
        color: #828588;
        max-width: 115px;
        text-transform: uppercase;
        margin-left: 10px;
        font-size: 24px;
    }
    
    section.footer ul li:hover a,
    section.footer ul li:hover:before {
        color: #464849;
    }
    
    @media (max-width: 992px) {
        .navbar-expand-lg .navbar-toggler {
            margin-left: auto;
            margin-right: auto;
            margin-top: 25px;
            background-color: white;
        }
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns= 'http://www.w3.org/2000/svg' viewBox= '0 0 30 30' %3e%3cpath stroke= 'rgba%280, 0, 0, 0.55%29' stroke-linecap= 'round' stroke-miterlimit= '10' stroke-width= '2' d= 'M4 7h22M4 15h22M4 23h22' /%3e%3c/svg%3e");
        }
        section.footer ul {
            color: #828588;
            margin-top: 20px;
            margin-bottom: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            flex-wrap: nowrap;
        }
        section.footer ul a {
            max-width: initial;
        }
        section.footer ul li:before {
            display: none;
        }
    }
    
    .fade-in {
        opacity: 1;
        animation-name: fadeIn;
        animation-iteration-count: 1;
        animation-timing-function: ease-in;
        animation-duration: 2s;
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    
    @keyframes bounceIn {
        0% {
            transform: scale(0.1);
            opacity: 0;
        }
        60% {
            transform: scale(1.2);
            opacity: 1;
        }
        100% {
            transform: scale(1);
        }
    }
    
    @keyframes float {
        0% {
            transform: translatey(0px);
        }
        50% {
            transform: translatey(-30px);
        }
        100% {
            transform: translatey(0px);
        }
    }
    
    .shake-1 {
        animation: shake 3s cubic-bezier(.36, .07, .19, .97) both infinite;
        transform: translate3d(0, 0, 0);
    }
    
    .shake-2 {
        animation: shake 5s cubic-bezier(.36, .07, .19, .97) both infinite;
        transform: translate3d(0, 0, 0);
    }
    
    .shake-3 {
        animation: shake 7s cubic-bezier(.36, .07, .19, .97) both infinite;
        transform: translate3d(0, 0, 0);
    }
    
    @keyframes shake {
        0% {
            transform: translate(1px, 1px) rotate(0deg);
        }
        10% {
            transform: translate(-1px, -2px) rotate(-1deg);
        }
        20% {
            transform: translate(-3px, 0px) rotate(1deg);
        }
        30% {
            transform: translate(3px, 2px) rotate(0deg);
        }
        40% {
            transform: translate(1px, -1px) rotate(1deg);
        }
        50% {
            transform: translate(-1px, 2px) rotate(-1deg);
        }
        60% {
            transform: translate(-3px, 1px) rotate(0deg);
        }
        70% {
            transform: translate(3px, 1px) rotate(-1deg);
        }
        80% {
            transform: translate(3px, 1px) rotate(-1deg);
        }
        90% {
            transform: translate(3px, 1px) rotate(-1deg);
        }
        100% {
            transform: translate(3px, 1px) rotate(-1deg);
        }
    }
    
    .ant-subtitle {
        text-decoration: none;
        font-size: 1.4rem;
        color: white;
    }
    
    @media (max-width:992px) {
        .ant-subtitle {
            font-size: 1.1rem;
        }
    }
    
    .footer-paragraph {
        line-height: 2.2rem;
    }
    
    .contact-popup {
        writing-mode: vertical-rl;
        text-orientation: upright;
        font-size: 24px;
        border-top: 1px solid white;
        border-left: 1px solid white;
        border-bottom: 1px solid white;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
        /* margin-top: 450px; */
        position: -webkit-sticky;
        position: sticky;
        top: 40%;
    }
    
    .payment-popup {
        writing-mode: vertical-rl;
        text-orientation: upright;
        font-size: 24px;
        border-top: 1px solid white;
        border-right: 1px solid white;
        border-bottom: 1px solid white;
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
        /* margin-top: 450px; */
        position: -webkit-sticky;
        position: sticky;
        top: 40%;
    }
    
    .contact-info {
        padding-top: 10%;
    }
    
    ul li::before {
        content: "•" !important;
    }
    
    .land-container a {
        text-decoration: none;
    }
    
    a.pop-ant {
        color: transparent;
        outline: none;
        text-decoration: none;
    }
    
    .returntonav {
        position: sticky;
        bottom: 0;
    }
    
    .returntonavbot {
        max-width: fit-content;
        cursor: pointer;
    }
    
    .dot {
        width: 60px;
    }
    
    .wrapper {
        width: 600px;
        height: 300px;
        position: relative;
        background-color: var(--wrapper-background-c);
        box-shadow: 0 0 80px var(--wrapper-shadow-c);
    }
    /* Images Area */
    
    .images-area {
        width: 100%;
        height: 100%;
        position: relative;
        display: flex;
        overflow: hidden;
    }
    
    .images-area img {
        width: 100%;
        transition: 0.3s cubic-bezier(.79, .03, 0, .99);
    }
    /* Buttons Area  */
    
    .buttons-area {
        width: 100%;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        display: flex;
        justify-content: space-between;
        overflow: hidden;
    }
    
    .buttons-area>div {
        color: var(--white-c);
        background-color: var(--buttons-background-c);
        cursor: pointer;
        transition: 0.3s ease-in-out;
    }
    /* Buttons | Previous And Next */
    
    .buttons-area>div:first-child {
        border-radius: 0 5px 5px 0;
        margin-left: -100px;
    }
    
    .buttons-area>div:last-child {
        border-radius: 5px 0 0 5px;
        margin-right: -100px;
    }
    /* Show The Buttons */
    
    .wrapper:hover .buttons-area>div:first-child {
        margin-left: 0;
    }
    
    .wrapper:hover .buttons-area>div:last-child {
        margin-right: 0;
    }
    
    .buttons-area div:hover:not(div.disabled) {
        background-color: var(--buttons-active-background-c);
    }
    
    .buttons-area div:not(div.disabled):active {
        opacity: 0.7;
    }
    /* Disabled Button */
    
    .buttons-area>div.disabled {
        cursor: no-drop;
        opacity: 0.3;
    }
    
    .buttons-area div i {
        font-size: 70px;
    }
    /* Pagination Area */
    
    .pagination-area {
        position: absolute;
        top: 90%;
        left: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
    }
    /* Pagination Spans */
    
    .pagination-area span {
        display: inline-block;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: var(--white-c);
        margin-right: 5px;
        transform: scale(0.5);
        transition: 0.3s ease-in-out;
        opacity: 0.4;
    }
    /* Current Active Span */
    
    .pagination-area span.active {
        transform: scale(1);
        opacity: 1;
    }
    
    .mySlides {
        display: none;
    }
    
    img {
        vertical-align: middle;
    }
    /* Slideshow container */
    
    .slideshow-container {
        max-width: 1000px;
        position: relative;
        margin: auto;
    }
    /* Next & previous buttons */
    
    .prev,
    .next {
        cursor: pointer;
        position: absolute;
        top: 50%;
        width: auto;
        padding: 16px;
        margin-top: -22px;
        color: white;
        font-weight: bold;
        font-size: 18px;
        transition: 0.6s ease;
        border-radius: 0 3px 3px 0;
        user-select: none;
    }
    
    .slide-radius {
        border-radius: 40px;
        width: 100%;
    }
    /* Position the "next button" to the right */
    
    .next {
        right: 0;
        border-radius: 3px 0 0 3px;
    }
    /* On hover, add a black background color with a little bit see-through */
    
    .prev:hover,
    .next:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }
    /* Caption text */
    
    .text {
        color: #f2f2f2;
        font-size: 15px;
        padding: 8px 12px;
        position: absolute;
        bottom: 8px;
        width: 100%;
        text-align: center;
    }
    /* Number text (1/3 etc) */
    
    .numbertext {
        color: #f2f2f2;
        font-size: 12px;
        padding: 8px 12px;
        position: absolute;
        top: 0;
    }
    /* The dots/bullets/indicators */
    
    .dot {
        cursor: pointer;
        height: 15px;
        width: 15px;
        margin: 0 2px;
        background-color: #bbb;
        border-radius: 50%;
        display: inline-block;
        transition: background-color 0.6s ease;
    }
    
    .active,
    .dot:hover {
        background-color: #717171;
    }
    /* Fading animation */
    
    .fade {
        -webkit-animation-name: fade;
        -webkit-animation-duration: 1000000000s;
        animation-name: fade;
        animation-duration: 10000000000s;
    }
    
    @-webkit-keyframes fade {
        from {
            opacity: 1
        }
        to {
            opacity: 1
        }
    }
    
    @keyframes fade {
        from {
            opacity: 1
        }
        to {
            opacity: 1
        }
    }
    /* On smaller screens, decrease text size */
    
    @media only screen and (max-width: 300px) {
        .prev,
        .next,
        .text {
            font-size: 11px
        }
    }
    
    .footerdot {
        background-color: white;
        border: 1px solid #FFFFFF;
        border-radius: 50%;
    }
    
    .imagegallery {
        margin-top: 50px;
    }
    
    .modal2style {
        color: #717171;
    }
    
    .keep-going-text {
        font-size: xx-large;
    }
    
    .text-floating {
        animation: float 6s ease-in-out infinite;
    }
    
    .cta-sides {
        background-color: #0a0607;
        border-top-right-radius: 40px;
        border-bottom-right-radius: 40px;
    }
    
    .cta-contact-side {
        border-top-left-radius: 50%;
        border-bottom-left-radius: 50%;
    }
    
    .wtp-icon {
        width: 24px;
    }
    /* @media screen and (min-width: 900px) {
        #saveEnvironmentAnt {
            bottom: 4770px !important;
        }
        #crushedStonesAnt {
            bottom: 3690.52px !important;
        }
        #blockMachineryAnt {
            bottom: 3300px !important;
            right: calc(26%) !important
        }
        #readyMixedAnt {
            bottom: 2370px !important;
        }
        #generalContracting {
            bottom: 1345.74px !important;
        }
    } */