@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

* {
    font-family: 'Space Grotesk', sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html{
    overflow-x: hidden !important;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    color: rgb(1, 1, 42);
}

.navbar>.container,
.navbar>.container-fluid,
.navbar>.container-lg,
.navbar>.container-md,
.navbar>.container-sm,
.navbar>.container-xl,
.navbar>.container-xxl {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

.top-header-grid {
    background-color: rgb(1, 1, 42);
    /* height: 60px; */
    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px; */
    display: grid;
    padding-left: 10%;
    padding-right: 10%;
    grid-template-columns: 1fr 0.5fr 4fr;
    padding-block: 15px;
}

.social-top {
    display: flex;
    align-items: center;
}

.social-top a {
    display: grid;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color:rgb(1, 1, 42);
    text-align: center;
    background-color: #ffffff;
    text-decoration: none;
    margin-right: 3%;
}

.info-top {
    text-align: end;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    align-items: center;
    width: 100%;
    text-align: right;
}

.info-top a {
    color: #FFD700;
    text-decoration: none;
}

.info-top,
.fas {
    color: #FFD700;
    margin-right: 1%;
}

.navbar {
    padding-right: 10%;
    padding-left: 10%;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

.navbar-brand {
    width: 80px;
    height: 80px;
    background-image: url(./images/logo.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

}

.navbar-nav {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.hero-bg {
    height: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* background-image: linear-gradient(120deg, #89f7fe 0%, #66a6ff 100%); */
    background-color: rgb(1, 1, 42);
    /* background: rgba(239, 51, 120, 0.301);
    background: -moz-linear-gradient(338deg, rgba(239, 51, 120, 0.354) 0%, rgba(255, 255, 255, 1) 58%, rgba(38, 147, 180, 0.331) 100%);
    background: -webkit-linear-gradient(338deg, rgba(239, 51, 120, 0.354) 0%, rgba(255, 255, 255, 1) 58%, rgba(38, 147, 180, 0.331) 100%);
    background: linear-gradient(338deg, rgba(239, 51, 120, 0.354) 0%, rgba(255, 255, 255, 1) 58%, rgba(38, 147, 180, 0.331) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ef3378", endColorstr="#2694b4", GradientType=1); */

}


.hero-heading h1 {
    font-size: 50px;
}

.hero-heading p {
    text-align: left;
}

.hero-btn {
    margin-top: 30px;
}

.hero-btn a {
    padding: 15px 45px;
    background-color: #FFD700;
    text-decoration: none;
    color: rgb(1, 1, 42);
    border-radius: 30px;
}

/* .hero-btn a:hover {
    background-color: rgb(1, 1, 42);
    font-weight: 600;
} */

#typed-text {
    color: #FFD700 !important;
}

.fa-user-gear{
    color: #FFD700;
}


.whole-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    align-self: center;
    height: 100%;
    padding-left: 20%;
    text-align: left;
    color: #fff;
}

.mining-icon {
    width: 50px;
    height: 50px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.mining-icon:hover {
    background-color: #01aee8;
    color: #fff;
}

.hero-img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}


@keyframes bounceAnimation {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-50px);

    }

    100% {
        transform: translateY(0);
    }
}


.hero-img img {
    animation-name: bounceAnimation;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;

}

.value {
    padding: 0 10%;
    text-align: center;
    margin-top: 70px;
}



.value p {
    color: #FFD700;
    font-weight: 600;
    font-size: 30px;
    text-shadow: 1px 1px 1px black;
}

.specializes {
    margin-top: 70px;
    padding: 0 10%;
}

.specializes p {
    color: #FFD700;
    font-weight: 600;
    font-size: 30px;
    text-align: center;
    text-shadow: 1px 1px 1px black;
}

.specializes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 30px;
}

.specializes-box {
    width: 95%;
    height: 300px;
    background-color: rgb(1, 1, 42);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    text-align: center;
}



.bg {
    padding-block: 50px;
    padding: 0 10%;
    padding-block: 50px;
    text-align: center;
    margin-top: 50px;
    color: #fff;
    background-color: rgb(1, 1, 42);
    clip-path: polygon(0 0, calc(100% - 50.72px) 0, calc(100% - 40px) 40px, 100% 50.72px, 100% 100%, 50.72px 100%, 40px calc(100% - 40px), 0 calc(100% - 50.72px));
}

.about-bg-home {
    /* background-image: url(./images/para.jpg); */
    background-color: rgb(1, 1, 42);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 550px;
    width: 100%;
    margin-top: 70px;
    clip-path: polygon(0 50.72px, 40px 40px, 50.72px 0, 100% 0, 100% calc(100% - 50.72px), calc(100% - 40px) calc(100% - 40px), calc(100% - 50.72px) 100%, 0 100%);
}

.about-bg-home h1 {
    color: #FFD700;
}

.why-chose {
    padding: 0 10%;
    margin-top: 70px;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0 10%;
    margin-top: 30px;
}

.why-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-img img {
    clip-path: polygon(0 50.72px, 40px 40px, 50.72px 0, 100% 0, 100% calc(100% - 50.72px), calc(100% - 40px) calc(100% - 40px), calc(100% - 50.72px) 100%, 0 100%);
}

.box-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.w-box {
    width: 95%;
    padding: 5%;
    /* padding: 50px; */
    background-color: rgb(1, 1, 42);
    margin-bottom: 30px;
    color: #fff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.w-box h3 {
    color: #FFD700;
}

.bg h1 {
    color: #FFD700;
}

.heading {
    padding: 0 10%;
    margin-top: 70px;
}

.close-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 70px;
    padding: 0 10%;
}

.map {
    width: 95%;
}

.map iframe {
    width: 100%;
    height: 100%;
}

.forms input {
    width: 100%;
    height: 50px;
    margin-bottom: 30px;
    padding: 0 5%;
}

.forms textarea {
    width: 100%;
    padding: 0 2%;
}


.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 0 10%;
    padding-block: 50px;
    background-color: #000;
    color: #fff;
    margin-top: 70px;
}

.footer-grid a {
    text-decoration: none;
    color: #fff;
}



.ft-logo {
    width: 150px;
    height: 150px;
    background-image: url(./images/logo.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-home-grid {
    padding: 0 10%;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.about-home-mining-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin-top: 30px;
}

.about-home-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin-top: 30px;
    color: #fff;
}

.specializes-box i {
    color: #FFD700;
}


footer i {
    color: #FFD700;
}

.ft-box {
    width: 95%;
}

.ft-box h3 {
    color: #FFD700;
}

footer .fa-share-from-square {
    color: #FFD700;
}

.submit {
    margin-top: 30px;
    background-color: rgb(1, 1, 42);
    color: #fff;
    border: none;
}

.specializes a {
    text-decoration: none;
    color: #fff;
    font-size: 25px;
}

@media only screen and (max-width: 1296px) {
    .whole-text {
        width: 100%;
        padding: 0 10%;
        padding-block: 50px;
    }

    .top-header-grid {
        display: none;
        padding-block: 55px;
    }

    .social-top {
        display: flex;
        justify-content: center;
        align-items: center;
        /* border: 2px solid; */
    }

    .info-top {
        display: flex;
        justify-content: center;
        align-items: center;
        /* border: 2px solid; */
        margin-top: 20px;
    }

    .info-top a {
        width: 100%;
    }

    .specializes-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .specializes-box {
        margin-top: 50px;
    }

    .about-bg-home {
        display: block;

    }

    .about-home-grid {
        display: block;
        height: 100%;
        padding-block: 30px;
    }

    .why-grid {
        display: block;
    }

    .close-grid {
        display: block;
    }

    .map {
        height: 60vh;
        margin-bottom: 50px;
    }

    .close-grid textarea {
        padding: 0 5%;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .ft-box {
        margin-bottom: 50px;
    }

    .ft-box .social-top {
        width: 100%;
        display: flex;
        justify-content: flex-start;
    }

    .about-home-text h1 {
        width: 100%;
    }

    .about-home-mining-img {
        width: 100%;
    }

}

@media only screen and (max-width: 1000px) {
    .hero-bg {
        height: 100%;
        display: block;
        padding-block: 30px;
    }

    .specializes-grid {
        display: grid;
        grid-template-columns: 1fr;
    }

    .box-grid {
        display: grid;
        grid-template-columns: 1fr;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1fr;
    }

    .about-home-mining-img {
        width: 100%;
    }

    .about-home-mining-img img {
        width: 100%;
    }

}