@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
/* -------------  global selector ---------------- */

:root{
    /* text colors */
    --text-gray : #808291;
    --text-white: #f8f9fa;
    --text-light: #f6f6f6;
    --text-dark : #1A3260;
    --text-dark2 : #1A3760D4;
    --text-red : #009E00;
    --box-shadow: 0px 0px 50px 0px rgb(0 0 0 / 10%);
    --bg-blue: rgb(249, 243, 255);
    --bg-red: rgb(254, 247, 252);
    --bg-yellow:rgb(255, 255, 246);
    --bg-purple: rgb(246, 255, 255);
    --text-green: #E6F5E6;

    /* font colors */
    --font-poppins : "Poppins", 'sans-serif';

    /* gradient colors */
    --bg-gradient: linear-gradient(to right, #005200, #009E00);
    --bg-gradient-indigo: linear-gradient(to right, #009E00, #005200);
    --bg-gradient-peach: linear-gradient(to right, #ffffff, #d5ffd7);

    /* images */
    --bg-image1: url('./assets/undraw_qa_engineers_dg-5-p.svg');
    --bg-image2: url('./assets/Construction Worker_Two Color.svg');
    --bg-image3: url('./assets/Entrepreneurs_Two Color.svg');
}

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

html {
    scroll-behavior: smooth;
}

a{
    text-decoration: none;
}

ul{
    list-style-type: none;
}

/* -------------x  global selector  x---------------- */

/* SCROLL UP */
.scrollup{
    position: fixed;
    background: var(--text-gray);
    right: 1em;
    bottom: -20%;
    display: inline-flex;
    padding: .3em;
    z-index: 999;
    border-radius: .25em;
    opacity: .8;
    transition: .4s;
}

.scrollup__icon{
    font-size: 1.25em;
    color: var(--text-white);
}

.scrollup:hover{
    background: var(--text-red);
    opacity: 1;
}

/* Show Scroll Up*/
.show-scroll{
    bottom: 1em;
}

/* SCROLL BAR */
::-webkit-scrollbar{
    width: 0.6em;
    background: #232323;
}

::-webkit-scrollbar-thumb{
    background: #272525;
    border-radius: .5em;
}

/* -------------  global classes ---------------- */

.mx_container {
    position: relative;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 1276px;
    height: 100%;
}

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

.text-white{
    color: var(--text-white);
}

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

.text-gray{
    color: var(--text-gray);
}

.text-red{
    color: var(--text-red);
}

.bg-gradient{
    background: var(--bg-gradient);
}


.bg-gradient-indigo{
    background: var(--bg-gradient-indigo);
}

.bg-gradient-peach{
    background: var(--bg-gradient-peach);
}

.just-green {
    background: var(--text-green);
}

.bg-gradient-blue{
    background: var(--bg-blue);
}

.bg-gradient-red{
    background: var(--bg-red);
}

.bg-gradient-yellow{
    background: var(--bg-yellow);
}

.bg-gradient-purple{
    background: var(--bg-purple);
}

.font-poppins{
    font-family: var(--font-poppins);
}

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

.text-sm{
    font-size: 1em;
    line-height: 1.5rem;
}

.text-md{
    font-size: 1.5em;
}

.text-lg{
    font-size: 2.2rem;
    line-height: 3rem;
}

.text-xl{
    font-size: 3em;
}

.text-2xl{
    font-size: 5em;
}

.font-bold{
    font-weight: bold;
}

.flex{
    display: flex;
}

.flex-row{
    flex-direction: row;
}

.flex-column{
    flex-direction: column;
}

.flex-wrap{
    flex-wrap: wrap;
}

.flex-initial{
    flex: 0 1 auto;
}

.flex-grow{
    flex-grow: 1;
}

.justify-center{
    justify-content: center;
}

.text-uppercase{
    text-transform: uppercase;
}

.container{
    width: 100%;
}

.container-fluid{
    width: 98%;
}

.mx-auto{
    margin-left: auto;
    margin-right: auto;
}

.py-2{
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-5{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-10{
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}
.px-5{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-10{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
}

.link{
    color: var(--text-dark2);
    font-weight: bold;
}

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

.btn{
    border: none;
   background-color: transparent;
   cursor: pointer;
}

.btn-primary{
    padding: .8rem 2rem;
    border-radius: 50px;
    font-family: var(--font-poppins);
    font-weight: bold;
}

.btn-primary-v1{
    padding: .8rem 2rem;
    border-radius: 50px;
    font-family: var(--font-poppins);
    font-weight: bold;
    cursor: auto;
}

.btn-shadow{
    box-shadow: var(--box-shadow);
}

.btn-primary:hover{
    background: var(--bg-gradient-indigo);
}

.d-inline{
    display: inline-block;
}

.d-block{
    display: block;
}

.grid{
    display: grid;
}

.cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr));
    grid-gap: 2em;
}

.w-100{
    width: 100%;
}

.w-50{
    width: 50%;
}

body{
    width: 100%;
    background: url("./assets/backgroundpng.png") no-repeat;
    background-size: cover;
}

/* -------------x  global classes  x---------------- */

/* -------------  media query ---------------- */

@media (max-width: 1276px) {
    .banner-title {
        display: grid;
        position: relative !important;
        grid-template-columns: repeat(1, 1fr) !important;
        padding-top: 10em !important;
        padding-bottom: 5em !important;
        height: inherit !important;
    }
    .banner-title .title {
        text-align: center;
    }
}

/* for small screen sm (640px) */
@media (min-width: 640px) {
    .container{
        max-width: 640px;
    }

    .sm-text-xl{
        font-size: 3.5em;
    }

    .sm-px-10{
        padding-left: 3.5rem;
        padding-right: 3.5rem;
    }
    .animate__fadeInUp p {
        font-size: 1.2em;
    }
}

/* for medium screen md (768px) */
@media (min-width: 768px) {
    .container{
        max-width: 768px;
    }

    #site-main .recent-work-area .grid-item{
        width: 40% !important;
    }

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

    .md-mx-initial{
        margin: initial;
    }

    .md-cols-2{
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 1024px) {
    #nav .flex-initial ul button {
        display: none;
    }
    .mx_container {
        position: absolute;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        max-width: 1276px;
        height: 100%;
    }
}

/* for large screen lg (1024px) */
@media (min-width: 1024px) {
    .container{
        max-width: 1024px;
    }

    .container-fluid{
        padding : 0 3rem;
    }

    #nav .toggle-btn > button{
        display: none;
    }
    #nav{
        flex-direction: row !important;
    }


    .collapse{
        max-height: 50vh;
        overflow-y: initial;
        transition: all 0.9s ease;
    }

    .collapse ul{
        flex-direction: row !important;
        text-align: right !important;
        float: right;
        padding: 0 !important;
    }

    .active{
        max-height: 100% !important;
    }

    .collapse{
        max-height: initial !important;
    }

    .lg-cols-2{
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .lg-cols-3{
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .lg-cols-4{
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }

    .item-three{
        grid-area: 3 / 4 / 8 / 14;
    }

    #site-main .recent-work-area .grid-item{
        width: 28% !important;
    }

}

@media (min-width: 1024px) {
    #nav {
        background: transparent !important;
    }
}

/* for extra-large screen xl (1280px) */
@media (min-width: 1280px) {
    .container{
        max-width: 1280px;
    }

    #nav .flex-initial ul  button{
        display: inline-block !important;
    }
}

/* -------------x  media query  x---------------- */



/* -------------  navigation style ---------------- */

/* for extra-small screen xs (0px) */
#nav{
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--text-green);
    flex-direction: column;
}

.nav-brand svg{
    position: relative;
}

@media (max-width: 1200px){
    .nav-brand svg{
        height: 40px;
        width: 40px;
    }
}

.collapse{
    max-height: 0px;
    overflow-y: hidden;
    transition: all 0.9s ease;
}

.collapse ul{
    flex-direction: column;
    text-align: center;
    padding: 0 3rem;
}

#nav .collapse ul > li{
    padding: 0 1.5rem;
    line-height: 3rem;
    font-size: 1.1em;
}

#nav .toggle-btn > button{
    font-size: 2rem;
    position: absolute;
    right: 0; top: 0;
    padding: 1rem;
    color: var(--text-dark2);
}

.active{
    max-height: 50vh;
}

/* -------------x  navigation style  x---------------- */

/* -------------  banner area style ---------------- */
#site-main .banner-area{
    /* max-width: 320px; */
    width: 100%;
    position: relative;
    z-index: -99;
}

#site-main .banner-area .banner-title{
    height: 95vh;
    padding-top: 16em;
}

@media (max-width: 800px) {
    .banner-area,
    .agency-area,
    .life-area,
    .counting-area,
    .card-area,
    .recent-work-area,
    .articles-area {
        padding: 0 5%;
    }
}

/* -------------x  banner area style x---------------- */


/* ------------- agnecy area style ---------------- */
#site-main .agency-area{
    padding-bottom: 5em;
}
/* -------------x  agency area style x---------------- */

/* ------------- life area style ---------------- */

#site-main .life-area > .grid{
    column-gap: 10em;
}

#site-main .life-area .grid-images{
    display: grid;
    grid-template-columns: repeat(16, minmax(10px, 1fr));
    grid-template-rows: repeat(8, minmax(100px, 1fr));
}

.item-one{
    /* grid-column: span 7 / span 7; */
    grid-row-start: 2;
    grid-row-end: 5;
    grid-column-start: 1;
    grid-column-end: 8;
    background: var(--bg-image1) no-repeat;
    background-size: cover;
    border-radius: 8px;
}
.item-two{
    /* grid-column: span 7 / span 7; */
    grid-row-start: 1;
    grid-row-end: 4;
    grid-column-start: 9;
    grid-column-end: 16;
    background: var(--bg-image2) no-repeat;
    background-size: cover;
    border-radius: 8px;
}

.item-three{
    grid-area: 3 / 1 / 8 / 20;
    background: var(--bg-image3) no-repeat;
    background-size: cover;
    border-radius: 8px;
    filter: blur(0px);
}

/* -------------x life area style x---------------- */

/* ------------- counting area style ---------------- */
#site-main .counting-area{
    padding: 7em 0;
}

#site-main .counting-area .grid-one p{
    width: 80%;
}

#site-main .counting-area .count-box{
    display: flex;
    justify-content: center;
    margin: 2em 0;
}

#site-main .counting-area .count-box .grid{
  display: inline-grid;
  grid-gap: 2px;
  border-radius: 20px;
  background-color: var(--text-light);
 
}


#site-main .counting-area .count-box .grid > div{
    background-color: white;
    padding: 2em 2.5em;
    text-align: center;
}

/* -------------x counting area style x---------------- */

/* ------------- card area style ---------------- */
#site-main .cart-area .grid{
    column-gap: 4em;
}
/* ------------x card area style x---------------- */

/* ------------- recent area style ---------------- */

#site-main .recent-work-area .images-flex .cols{
    height: 100%;
}

#site-main .recent-work-area .grid-item {
    width: 100%;
    margin-bottom: 50px;
}

#site-main .recent-work-area .grid-item img{
    border-radius: 10px;
}
  
  /* .grid-item--width2 { width: 160px; } */
  .grid-item--height2 { height: 540px; }
/* -------------x recent area style x---------------- */

/* ------------- article area style ---------------- */
#site-main .articles-area .grid{
    column-gap: 5em;
}

#site-main .articles-area .card article{
    border-radius: 10px;
}
/* -------------x article area style x---------------- */


/* ------------- ready area style ---------------- */
#site-main .ready-area .flex{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
/* ------------- ready area style ---------------- */


/* ------------- footer style ---------------- */
#footer{
    border-top: 2px solid var(--text-light);
    margin-top: 8em;
    
}
#footer .grid{
    column-gap: 3em;
    padding: 6em 0;
    border-bottom: 2px solid var(--text-light);
}

#footer .grid input.subcribe-text{
    border: none;
    background-color: var(--text-red);
    padding: 1em;
    font-size: 1em;
    color: var(--text-dark2);
    font-family: var(--font-poppins);
}

#footer .grid input.subcribe-text:focus{
    border: none;
    outline: none;
}

@media (max-width: 768px) {
    .subcribe-text-main {
        display: flex;
        justify-content: center;
    }
}

#footer .grid button.btn-go{
    background-color: var(--text-light);
    padding: 0 2em;
    font-family: var(--font-poppins);
}

#footer .grid button.btn-go:hover{
    background-color: var(--text-dark2);
    color: var(--text-white);
}


@media (max-width: 768px) {
    .footer-svg {
        left: -7em;
    }
}
/* ------------- footer style ---------------- */

.button-d1 {
    display: none;
}
.button-d2 {
    display: block;
    padding-top: 5em;
}


@media (max-width: 1024px) {
    .button-d1 {
        display: block;
    }
    .button-d2 {
        display: none;
    }
    .our_machine,
    .our_products {
        display: grid;
        grid-template-columns: repeat(1, 1fr) !important;
        width: 100%;
    }
    .our_products img {
        position: relative;
        left: 0 !important;
    }
    .media-show {
        display: block !important;
    }
    .media-hidden {
        display: none !important;
    }
}

.media-show {
    display: none;
}

.our_machine {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    width: 100%;
}

.our_products {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    width: 100%;
}

.our_products img {
    position: relative;
    left: -5em;
}

/* Contact Us */

.hermes_container {
    position: relative;
    width: 100%;
    font-family: var(--font-poppins);
    min-height: 90vh;
    padding: 2em;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hermes_form {
    width: 100%;
    max-width: 820px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
    z-index: 2;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.hermes_contact-form {
    background-color: #009E00;
    position: relative;
}

.hermes_circle {
    border-radius: 50%;
    background: linear-gradient(135deg, transparent 20%, #009E00);
    position: absolute;
}

.hermes_circle.hermes_one {
    width: 130px;
    height: 130px;
    top: 130px;
    right: -40px;
}

.hermes_circle.hermes_two {
    width: 80px;
    height: 80px;
    top: 10px;
    right: 30px;
}

.hermes_contact-form:before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    background-color: #009E00;
    transform: rotate(45deg);
    top: 50px;
    left: -13px;
}

form {
    padding: 2.3rem 2.2rem;
    z-index: 1;
    overflow: hidden;
    position: relative;
}

.hermes_title {
    color: #fff;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 0.7rem;
}

.hermes_input-container {
    position: relative;
    margin: 1rem 0;
}

.hermes_input {
    width: 100%;
    outline: none;
    border: 2px solid #fafafa;
    background: none;
    padding: 0.6rem 1.2rem;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: 25px;
    transition: 0.3s;
}

textarea.hermes_input {
    padding: 0.8rem 1.2rem;
    min-height: 150px;
    border-radius: 22px;
    resize: none;
    overflow-y: auto;
}

.hermes_input-container label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    padding: 0 0.4rem;
    color: #fafafa;
    font-size: 0.9rem;
    font-weight: 400;
    pointer-events: none;
    z-index: 2;
    transition: 0.5s;
}

.hermes_input-container.hermes_textarea label {
    top: 1rem;
    transform: translateY(0);
}

.hermes_btn {
    padding: 0.6rem 1.3rem;
    background-color: #fff;
    border: 2px solid #fafafa;
    font-size: 0.95rem;
    color: #009E00;
    line-height: 1;
    border-radius: 25px;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    margin: 0;
}

.hermes_btn:hover {
    background-color: transparent;
    color: #fff;
}

.hermes_input-container span {
    position: absolute;
    top: 0;
    left: 25px;
    transform: translateY(-50%);
    font-size: 0.8rem;
    padding: 0 0.4rem;
    color: transparent;
    pointer-events: none;
    z-index: 1;
}

.hermes_input-container span:before,
.hermes_input-container span:after {
    content: "";
    position: absolute;
    width: 10%;
    opacity: 0;
    transition: 0.3s;
    height: 5px;
    background-color: #009E00;
    top: 50%;
    transform: translateY(-50%);
}

.hermes_input-container span:before {
    left: 50%;
}

.hermes_input-container span:after {
    right: 50%;
}

.hermes_input-container.hermes_focus label {
    top: 0;
    transform: translateY(-50%);
    left: 25px;
    font-size: 0.8rem;
}

.hermes_input-container.hermes_focus span:before,
.hermes_input-container.hermes_focus span:after {
    width: 50%;
    opacity: 1;
}

.hermes_contact-info {
    padding: 2.3rem 2.2rem;
    position: relative;
}

.hermes_contact-info .hermes_title {
    color: #009E00;
}

.hermes_text {
    color: #333;
    margin: 1.5rem 0 2rem 0;
}

.hermes_information {
    display: flex;
    color: #555;
    margin: 0.7rem 0;
    align-items: center;
    font-size: 0.95rem;
}

.hermes_icon {
    width: 28px;
    margin-right: 0.7rem;
}

.hermes_social-media {
    padding: 2rem 0 0 0;
}

.hermes_social-media p {
    color: #333;
}

.hermes_social-icons {
    display: flex;
    margin-top: 0.5rem;
}

.hermes_social-icons a {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background: linear-gradient(45deg, #005200, #009E00);
    color: #fff;
    text-align: center;
    line-height: 35px;
    margin-right: 0.5rem;
    transition: 0.3s;
}

.hermes_social-icons a:hover {
    transform: scale(1.05);
}

.hermes_contact-info:before {
    content: "";
    position: absolute;
    width: 110px;
    height: 100px;
    border: 22px solid #009E00;
    border-radius: 50%;
    bottom: -77px;
    right: 50px;
    opacity: 0.3;
}

.hermes_big-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #009E00, #005200);
    bottom: 50%;
    right: 50%;
    transform: translate(-40%, 38%);
}

.hermes_big-circle:after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    background-color: #fafafa;
    border-radius: 50%;
    top: calc(50% - 180px);
    left: calc(50% - 180px);
}

.hermes_square {
    position: absolute;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(181%, 11%);
    opacity: 0.2;
}

@media (max-width: 850px) {
    .hermes_form {
        grid-template-columns: 1fr;
    }

    .hermes_contact-info:before {
        bottom: initial;
        top: -75px;
        right: 65px;
        transform: scale(0.95);
    }

    .hermes_contact-form:before {
        top: -13px;
        left: initial;
        right: 70px;
    }

    .hermes_square {
        transform: translate(140%, 43%);
        height: 350px;
    }

    .hermes_big-circle {
        bottom: 75%;
        transform: scale(0.9) translate(-40%, 30%);
        right: 50%;
    }

    .hermes_text {
        margin: 1rem 0 1.5rem 0;
    }

    .hermes_social-media {
        padding: 1.5rem 0 0 0;
    }
}

@media (max-width: 480px) {
    .hermes_container {
        padding: 1.5rem;
    }

    .hermes_contact-info:before {
        display: none;
    }

    .hermes_square,
    .hermes_big-circle {
        display: none;
    }

    form,
    .hermes_contact-info {
        padding: 1.7rem 1.6rem;
    }

    .hermes_text,
    .hermes_information,
    .hermes_social-media p {
        font-size: 0.8rem;
    }

    .hermes_title {
        font-size: 1.15rem;
    }

    .hermes_social-icons a {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .hermes_icon {
        width: 23px;
    }

    .hermes_input {
        padding: 0.45rem 1.2rem;
    }

    .hermes_btn {
        padding: 0.45rem 1.2rem;
    }
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: white;
    font-family: var(--font-poppins);
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: white;
    font-family: var(--font-poppins);
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: white;
    font-family: var(--font-poppins);
}

label {
    font-family: var(--font-poppins);
}