/* Home : Hero */

.hero-section {
    position: relative;
    overflow: hidden;
    height: 100vh;

}

.hero-background{
    background: url('../images/comingsoonbg.png') center/cover no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
}

.hero-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    display: grid;
    place-content: baseline;
    place-items: center;
    top: 100px;
}

.hero{
    width: 80%;
    height: 60vh;
    position: relative;
    background: #fff;
    text-align: center;
    padding: 50px;
    box-shadow: 0px 0px 10px 7px rgba(0, 0, 0, 0.3);
    border: 3px dashed #000;
    display: grid;
    place-content: center;
    gap: 20px;
}

.hero-logo{
    text-align: center;
    position: relative;
}

.hero-logo img{
    width: 120px;
}

.hero-title h1{
    font-size: 35px;
    line-height: 35px;
    margin: 0;
}

.hero-text{
    font-size: 18px;
}

@media screen and (max-width: 1650px) {
   .hero-logo img {
    width: 80px;
}

.hero{
    padding: 30px 50px;
}

.hero-inner {
    top: 80px;
}

.hero{
    height: 70vh;
}
}


@media screen and (max-width: 767px) {
   .hero-inner {
     top: 0px;
   }

       .hero {
        padding: 30px;
       width: 94%;
        height: 100vh;
        background: #ffffffe3;
    }

    .hero-logo {
    display: none;
    }

    .hero-text{
    font-size: 16px;
}
}



/* Story section   */
.story-section{
    background:#fff5dd;
    position: relative;
    padding: 100px 200px;
}

.story-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.story-container-l{
    /* display: grid; */
    gap: 10px;
}

.story-container-r {
    padding: 20px;
    width: 100%;
}

.story-img{
width: 100%;
}

.story-img img{
    width: 200px;
}

.story-title{
    font-size: 22px;
margin: 30px 0;
}


.storybox-container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.story-box-inner {
    border-right: 1px solid #000;
    padding-right: 20px;
}

.storybox-container .story-box-inner:last-child {
    border-right: none;
}

.story-box {
   width: 100%;
    height: 250px;
    background-color: #fff5dd;
    color: #000;
    display: grid;
    align-items: center;
    place-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    padding: 0px;
    transform: scale(1);
        border-radius: 10px;
    transition: transform 2s, visibility 2s ease-in;
}

.story-box:hover {
    transform: scale(1.1);
   box-shadow: 0 0px 10px rgba(0, 0, 0, 0.5);
    transition: transform 2s, visibility 2s ease-in;
}



.box-img{
width: 100%;
}

.box-img img{
    width: 80px;
}

.box-title{
      font-size: 20px;
      margin: 10px 0;
}

.box-text{
    font-size: 16px;
}

.section-title-m{
    display: none;
     font-size: 40px;
    position: relative;
    font-weight: 600;
    margin-bottom: 20px;
}

.box-title-m{
    display: none;
}


@media (max-width: 1300px) {
    .story-section{
        padding:50px 100px;
    }
    }

    @media (max-width: 1100px) {
    .story-section{
        padding:  50px;
    }

    .box-img img {
        width: 50px;
    }
}

@media (max-width: 990px) {
    .story-box {
    height: 250px;
    padding:0;
    }
}

@media (max-width: 767px) {
    .story-container{
    grid-template-columns: 1fr;
    gap: 20px;
    }

    .section-title-m{
    display: block;
    }

    .about-main-title{
        display: none;
    }

        .storybox-container{
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .story-title-area {
        order: 2;
        text-align: center;
    }

    .story-container-r {
        order: 1;
        padding: 0;
    }

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

    .box-title-m{
        display: block;
        font-size: 20px;
        margin-top: 10px;
    }

    .story-box-inner {
        border-right: none;
        padding-right: 0px;
    }

    .story-box {
        height: 200px;
        padding: 0;
    }

    .story-box-inner:hover   .story-box {
        display: grid;
        grid-template-columns: 0.5fr 1fr;
        gap: 10px;
    }

    .story-box:hover {

        transform: scale(1);
        box-shadow: none;
        transition: transform 2s, visibility 2s ease-in;
    }


    .box-inner {
        display: none;
        text-align: left;
    }

    .story-box-inner:hover .box-inner {
    display: block;
    }


    .story-box-inner:hover .box-title-m {
    display: none;
    }

    .box-img img {
        width: 90px;
    }

}

@media (max-width: 500px) {
    .box-img img {
        width: 80px;
    }

    .story-section {
        padding: 30px;
    }

    .story-title {
    margin: 10px 0;
    }
}


/* Key products section */
.keyproducts-section{
   position: relative;
   padding-bottom: 50px;
}

.keyproducts-bg{
 background: url('../images/key-products.png') center/cover no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
}

.section-info {
    padding: 50px;
}

.keyproduct{
    border-top: 2px solid #ff5757;
    border-bottom: 2px solid #ff5757;
}

.product-area {
    padding: 0px 200px;
    background: #fff;
}

.product-container {
    position: relative;
    width: 100%;
    padding: 0px 0;
}

.product-box {
    flex: 0 0 300px;
    margin: 10px 20px;
    border-radius: 0px;
    padding: 20px;
    text-align: center;
    border: 2px solid #ffffffbf;
    color: #fff;
    transition: box-shadow 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.product-box:hover {
    box-shadow: 0 0 20px #ff5757;
    transform: scale(1.03); 
}


.product-img {
    display: grid;
    place-content: center;
}

.product-img img {
    width: 150px;
    height:100%;
}

.product-title {
   color: #000;
    font-size: 30px;
    margin-bottom: 20px;
}

.product-text {
    font-weight: 600;
    margin: 10px 0 5px;
    font-size: 20px;
}

.slick-prev:before, .slick-next:before {
    color: #000;
}

.slick-initialized .slick-slide {
    display: grid;
}

.testimonial-text {
    font-size: 16px;
}

.slick-dots {
    display: none;
}



@media (max-width: 1300px) {
    .product-area {
    padding: 0px 100px;
}
}

@media (max-width: 1100px) {
        .product-area {
    padding: 0px 50px;
}
}

@media (max-width: 767px) {
       .product-area {
    padding: 0px 30px;
}

.section-info {
    padding: 30px;
}
}

@media (max-width: 600px) {
.keyproduct {
    border-top: none;
    border-bottom: none;
}

.product-box {
    border-radius: 10px;
    border: 2px solid #0000006e;
    background: #fff;
    margin: 20px 20px;
}

.product-box:hover {
    box-shadow: 0 0 16px -2px #ff5757;
}

.product-area {
    background: transparent;
}

.product-title {
    font-size: 25px;
}


.slick-next {
    right: 0;
}

.slick-prev {
    left: 0px;
}
}

 /* Mission section */
.mission-section {
    position: relative;
    overflow: hidden;
}

.mission-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.mission-container-l{
    padding: 100px 0;
    padding-left: 200px;
}

.mission-container-r {
   background: url('../images/Mission-Page-bg.png') center/cover no-repeat;
   background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: -1;
}

.mission-img{
width: 100%;
    height: 100%;
    display: grid;
    align-items: center;
    place-content: center;
}

.mission-img img{
   width: 400px;
    height: 100%;
}

.mission-title{
    font-size: 22px;
margin: 30px 0;
}

@media (max-width: 1500px) {
.mission-container-l{
    padding: 100px 0;
    padding-left: 100px;
}

.mission-img img{
   width: 300px;
}
}

@media (max-width: 1100px) {
.mission-container-l{
    padding: 100px 0;
    padding-left: 50px;
}

.mission-img img{
   width: 250px;
}
}

@media (max-width: 767px) {
.mission-section{
    background:#fff5dd;
    padding: 50px;
}

.mission-container {
    grid-template-columns: 1fr;
    gap: 30px;
}

.mission-title-area {
    order: 2;
    text-align: center;
}

.mission-container-r{
    order: 1;
        position: relative;
        z-index: 99;
        background: transparent;
}

.mission-img {
    width: auto;
    height: auto;
    display: block;
}

.mission-main-title{
    display: none;
}

.mission-container-l{
    padding: 0px 0;
}

.mission-img img{
   width: 200px;
}
}

@media (max-width: 500px) {
.mission-img img{
   width: 180px;
}

.mission-section{
    padding: 30px;
}
}



/* How we work section   */
.work-section{
    position: relative;
   
}

.work-bg{
    background: url('../images/How-We-Work-bg.png') 50% 50% no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.work-inner {
    position: relative;
    padding: 100px;
    text-align: center;
}

.work-full-inner {
        position: relative;
}

.work-full {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0px;
    align-items: center;
}

.work-col {
    position: relative;
    border-radius: 10px;
    border: 1px solid #aaa3a3;
}

.work-col-img {
    width: 100%;
    background: url() 50% 50% no-repeat;
    background-size: cover;
    background-clip: content-box;
    position: relative;
    height: 200px;
    z-index: 1;
    border-radius: 10px 10px 0 0;
}

.work-info {
   position: relative;
    z-index: 0;
    background: #fff;
    padding: 30px 20px;
    height: 100%;
    display: grid;
    place-content: center;
    border-radius: 10px;
}

.work-title{
    font-size: 20px;
}

.work-text{
    font-size: 16px;

}

.work-btn{
    margin:20px 0;
    text-align: center;
}

@media (max-width: 1200px) {
   .work-inner {
    position: relative;
    padding: 50px;
   }
}

@media (max-width: 767px) {
.work-bg {
    background: linear-gradient(to bottom, #0000004a, #ffffffba, #ffefcede, #ffefce);
   }

    .work-full {
        grid-template-columns: 1fr;
        gap:10px;
    }


.work-col {
    position: relative;
    border-radius: 0px;
    border: none;
    display: grid;
   grid-template-columns: 170px 1fr;
        align-items: center;
    overflow: hidden;
    border-bottom: 1px solid #aaa;
    padding-bottom: 10px;
}

.work-full .work-col:last-child {
   border-bottom: none;
    padding-bottom: 0px;
}

.work-col-img {
    border-radius:  0;
    height: 120px;
}

.work-info {
   background: transparent;
        padding: 20px;
        height: 100%;
        display: block;
        border-radius: 0px;
        text-align: left;
}

.work-text {
    display: none;
}

.work-col:hover .work-text {
    display: block;
    margin-top: 10px;
}

.work-btn{
    width: 80%;
}

}

@media (max-width: 580px) {
      .work-inner {
        padding: 30px;
    }

        .work-info {
        padding: 10px;
        }

       .work-col-img {
        height: 130px;
    }

    .work-title {
    font-size: 18px;
}

.work-text {
    font-size: 14px;
}

.work-col {
   grid-template-columns: 100px 1fr;
}
}


/* Blog section */
.blog-section{
    position: relative;
}

.blog-bg{
    background: url('../images/The-Blog-bg.png') 50% 50% no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.blog-inner {
    position: relative;
    padding: 50px 100px;
    text-align: center;
}

.blog-full-inner {
    position: relative;
}

.blog-full {
    margin: 50px;
}

.blog-col {
    position: relative;
    overflow: hidden;
    margin: 10px;
    border: 1px solid #aaa;
}

.blog-col-img {
    width: 100%;
    background: url() 50% 50% no-repeat;
    background-size: cover;
    background-clip: content-box;
    position: relative;
    height: 250px;
}

.blog-info {
   position: relative;
    z-index: 99;
    background: #fff;
    border-radius: 0;
}

.blog-title {
   color: #32373c;
    font-size: 20px;
    font-weight: 600;
    text-align: left;
    display: grid;
    padding: 20px;
}

.button-blog {
   position: relative;
    width: 100%;
    text-align: right;
}

.blog-btn {
   width: 60%;
}

.button-blog a {
    text-decoration: none;
}


@media (max-width: 1200px) {
   .blog-inner {
    padding: 30px;
   }
}

@media (max-width: 1050px) {
 .blog-title {
    font-size: 18px;
}
}

@media (max-width: 767px) {
    .blog-bg {
        background: linear-gradient(to bottom, #dcd7ca, #ffefcede, #ffefce);
   }

     .blog-col-img {
        height: 300px;
    }

   

.blog-full {
    margin: 20px 0px;
}
}

@media (max-width: 380px) {
    .blog-col-img {
        height: 160px;
    }

    .blog-full {
    margin: 0px 0px;
}

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


/* Clients section */
.clients-section{
background: linear-gradient(to bottom, #dcd7ca, #ffefcede, #ffefce);
}

.clients-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.clients-container-l {
    padding-left: 100px;
}


.clients-container-r {
    width: 100%;
    height: 100%;
    position: relative;
}

.clients-img{
width: 100%;
    height: 100%;
    display: grid;
    align-items: center;
    place-content: center;
}

.clients-img img{
  width: 250px;
    height: 100%;
    opacity: 0.4;
}

.clients-btn{
    width: fit-content;
}


@media (max-width: 1500px) {
.clients-container-l {
    padding-left: 0px;
}
}


@media (max-width: 767px) {
.clients-container-r{
   display: none;
}

.clients-container{
    grid-template-columns: 1fr;
    gap: 0px;
}

li.clients-item {
    padding: 5px 0;
}

}

/* FAQ section */
.faq-section {
    background: linear-gradient(to bottom, #9191916e, #fff, #fff);
    padding: 50px 200px;
}

    .faq-container {
    
    }

    .accordion {
    border-radius: 0;
    margin-bottom: 20px;
    border: none;
    }

    .accordion-header {
     padding: 15px 20px;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    color:#000;
    outline: 3px dashed #000000;
    }


    .accordion.active .accordion-header{
     background: #ffefce;
    }

    .accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      padding: 0 20px;
      background:transparent;
      background: #ffefce36;
      font-size: 16px;
    }

    .accordion-content p {
      padding: 15px 0;
      margin: 0;
    }

    @media (max-width: 1200px) {
        .faq-section {
    padding: 50px 100px;
}
}

    @media (max-width: 990px) {
        .faq-section {
    padding: 50px;
}
}

@media (max-width: 767px) {
  .faq-section {
    padding: 30px;
}

.accordion-header {
     padding: 10px;
    font-size: 16px;
    }

     .accordion-content {
      font-size: 14px;
    }
}