@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap');

:root{

    --primary-color: #151328; 
    --secondary-color: #bafd02;
    --white-color: #fff;
    --dark-color: #333;
    --smokey-color: #1a1a19;


    --fs-1: 6rem;
    --fs-2: 5rem;
    --fs-3: 3.8rem;
    --fs-4: 2.8rem;
    --fs-5: 2.6rem;
    --fs-6: 2.2rem;
    --fs-7: 2rem;
    --fs-8: 1.8rem;
    --fs-9: 1.5rem;
    --fs-10: 1.4rem;
    --fs-11: 1.2rem;

    --fw-300: 300;
    --fw-400: 400;
    --fw-500: 500;

    /* spacing */
    --section-padding: 60px;

    /* shadow */
    --shadow: 0 12px 30px -10px hsla(0, 0%, 14%, 0.1);

    /* border radius */
    --radius-circle: 50%;
    --radius-5: 5px;
    --radius-25: 25px;

    /* transition */
    --transition-1: 0.25s ease;
    --transition-2: 0.5s ease;
    --transition-3: 1s ease;
    --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
    --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);
}



*,
*::before,
*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    /* font-family: 'Mukta', sans-serif; */
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    font-family: "Poppins", sans-serif;
}

ul{
    padding-inline: 0;
}

li{
    list-style: none;
}

a,
img,
span,
button,
ion-icon{
    display: block;
}

a{
    color: inherit;
    text-decoration: none;
}

h1,h2{
    font-weight: 600;  
}

h1,h2,h3,h4,h5,h6{
    /* font-family: 'Croissant One', cursive; */
    font-family: "Playfair", serif;
}

button{
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
}


body::-webkit-scrollbar {
    width: 1rem;
}
  
body::-webkit-scrollbar-thumb {
  background: linear-gradient(#96cc00, #bafd02);
  border-radius: 2rem;
}
  
body::-webkit-scrollbar-track {
   background-color: var(--primary-color);
}


body{
    background-color: var(--primary-color);
    color: var(--white-color);
    font-family: var(--playfair-font);
    overflow-x: hidden !important;
}

.container{
    width: 80%;
    margin: 0 auto;
}

.section{
    padding-block: var(--section-padding);
}

main{
    overflow: hidden;
}


.section_header{
    font-size: 3rem;
    font-family: "Montserrat", sans-serif;
    position: relative;
}

.section_header::before{
    content: "";
    position: absolute;
    left: -5%;
    top: 50%;
    height: 3px;
    width: 40px;
    background-color: var(--secondary-color);
}

@media screen and (max-width: 1020px) {
    .section_header::before{
        left: -7%;
    } 
}

@media screen and (max-width: 920px) {
    .section_header::before{
        left: -9%;
    } 
}

@media screen and (max-width: 575px) {
    .section_header::before{
        left: -11%;
    } 
}

@media screen and (max-width: 400px) {
    .section_header::before{
        width: 25px;
    } 
    
}

.section_text{
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
}

.btn_primary{
    font-size: 1.7rem;
    border: 1px solid #bafd02;
    text-align: center;
    padding: 12px;
    width: 40%;
    transition: all 0.4s ease-in-out;
}

.btn_primary:hover{
    border-radius: 4rem;
}


/*********************************************
            Header && Navigation
**********************************************/

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--smokey-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    z-index: 100;
}

.logo img{
    width: 100px;
}

.header ul{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 3.5rem;
}

.header ul li a{
    font-size: 1.7rem;
    position: relative;
}

.header ul li a::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: -10%;
    background-color: var(--secondary-color);
    width: 20%;
    height: 2px;
    transition: all 0.4s ease-in-out;
}

.header ul li a:hover::before{
    width: 100%;
}

.contact_btn{
    background-color: var(--secondary-color);
    padding: 16px;
    border-radius: 1.2rem;
    font-size: 1.5rem;
    border: 1px solid var(--secondary-color);
    color: var(--dark-color);
    transition: all 0.4s ease-in-out;
}

.contact_btn:hover{
    background-color: transparent;
    color: var(--white-color);
}


.mobile_menu_btn{
    font-size: 2rem;
    display: none;
}

.mobile_menu{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    transform: scale(0);
}

.mobile_menu.active{
    opacity: 1;
    transform: scale(1);
}

.mobile_menu ul{
    text-align: center;
}

.mobile_menu ul li{
   padding: 16px;
}

.mobile_menu ul li a{
    font-size: 2.5rem;
    transition: all 0.4s ease-in-out;
}

.mobile_menu ul li a:hover{
    color: var(--primary-color);
}

.mobile_menu_close{
    position: absolute;
    top: 5%;
    right: 5%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
}



@media screen and (max-width: 970px){
    .header ul{
        display: none;
    }

    .mobile_menu_btn{
        display: block;
    }
}


/*********************************************
                Hero Section
**********************************************/

.hero{
    /* background-image: url('../images/tech_2.jpg'); */
    height: 100vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 8rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.cube_one{
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 9;
    width: 800px;
    height: 800px;
    background-color: rgba(186, 253, 2, 0.3);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.cube_two{
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 9;
    right: 15%;
    background-color: rgba(255, 255, 255, 0.3);
    width: 400px;
    height: 100%;
    clip-path: polygon(0 0, 46% 0, 89% 100%, 41% 100%);
}

.hero h1{
    width: 60%;
    font-size: 8rem;
    text-align: center;
    z-index: 10;
}

.hero p{
    text-align: center;
    font-size: 1.6rem;
    z-index: 10;
    width: 50%;
    letter-spacing: 1px;
    margin-block: 3rem;
}

.hero a{
    z-index: 10;
    margin-top: 3rem;
    font-size: 2rem;
    border: 1px solid var(--white-color);
    padding: 16px 32px;
    transition: all 0.4s ease-in-out;
}

.hero a:hover{
    border-radius: 2rem;
}

.hero::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(16, 21, 19, 0.5);
    z-index: 0;
}

@media screen and (max-width: 885px){
    .hero h1{
        font-size: 6rem;
    }
}


@media screen and (max-width: 640px){
    .hero h1{
        font-size: 4rem;
    }
}


@media screen and (max-width: 410px){
    .hero h1{
        font-size: 3rem;
    }

    .hero p{
        font-size: 1.3rem;
    }
    
}


/***************************************************
                   Hero Section
***************************************************/

.services_container{
    padding-block: 10rem;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2rem;
}

.service_box{
    background-color: #100e20;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    padding: 4rem;
    border-bottom: 2px solid var(--white-color);
    margin-bottom: 2rem;
    transition: all 0.5s ease-in-out;
}

.service_box:hover{
    background-color: var(--secondary-color);
}

.service_box i{
    color: var(--secondary-color);
    font-size: 4rem;
    margin-bottom: 2rem;
}

.service_box:hover i,
.service_box:hover h3,
.service_box:hover p{
    color: #100e20;
}

.service_box img{
    width: 50px;
    margin-bottom: 1rem;
}

.service_box h3{
    font-size: 1.7rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.service_box p{
    font-size: 1.4rem;
}

@media screen and (max-width: 950px){
    .services_container{
        grid-template-columns: repeat(2,1fr);
    }
}


@media screen and (max-width: 600px){
    .services_container{
        grid-template-columns: 1fr;
    }
}


/***************************************************
                about Section
***************************************************/

.about_up,
.about_down{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 5rem;
}

.about_up_content,
.about_down_content{
    text-align: center;
}

.about_up_content .btn_primary,
.about_down_content .btn_primary{
    margin: 0 auto;
    width: 50%;
    margin-top: 2rem;
} 

.about_up_img,
.about_down_img{
    height: 500px;
    position: relative;
}

.about_up_img::before{
    content: "";
    position: absolute;
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    border: 1px solid #bafd02;
    z-index: -1;
}

.about_down_img::before{
    content: "";
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    border: 1px solid #bafd02;
    z-index: -1;
}

.about_up_img img,
.about_down_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.about_up_content h2,
.about_down_content h2{
    font-size: 3.5rem;
    margin-bottom: 3rem;
}

.about_up_content p,
.about_down_content p{
    font-size: 1.5rem;
}


.about_mid{
    margin-block: 15rem;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 4rem;
}


.about_mid_box{
    text-align: center;
    padding: 16px;
    transition: all 0.4s ease-in-out;
}

.about_mid_box:hover{
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.about_mid_box i{
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #bafd02;
}

.about_mid_box h2{
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.about_mid_box p{
    font-size: 1.4rem;
}


@media screen and (max-width: 1540px) {
    .about_up_img::before{
        top: -10%;
        left: -20%;
        width: 600px;
        height: 600px;
    }
    
    .about_down_img::before{
        top: -10%;
        right: -20%;
        width: 600px;
        height: 600px;
    }
}


@media screen and (max-width: 1390px) {
    .about_up_img::before{
        top: -10%;
        left: -20%;
        width: 500px;
        height: 600px;
    }
    
    .about_down_img::before{
        top: -10%;
        right: -20%;
        width: 500px;
        height: 600px;
    }
}


@media screen and (max-width: 1180px) {
    .about_up_img::before{
        top: -10%;
        left: -20%;
        width: 400px;
        height: 600px;
    }
    
    .about_down_img::before{
        top: -10%;
        right: -20%;
        width: 400px;
        height: 600px;
    }
}


@media screen and (max-width: 990px) {
    .about_up_img::before{
        top: -10%;
        left: -20%;
        width: 300px;
        height: 600px;
    }
    
    .about_down_img::before{
        top: -10%;
        right: -20%;
        width: 300px;
        height: 600px;
    }
}


@media screen and (max-width: 840px) {
    .about_mid{
        grid-template-columns: 1fr;
    }
}


@media screen and (max-width: 745px) {
    .about_up,
    .about_down{
       grid-template-columns: 1fr;
    }

    .about_up_img::before{
     display: none;
    }
    
    .about_down_img::before{
     display: none;
    }

    .about_up_img,
    .about_down_img{
        height: 350px;
    }
}






/***************************************************
           product & template Section
***************************************************/

.projects {
    width: 100%;
    height: 100%;
    padding: 15rem 0 15rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .projects h1 {
    font-family: 'Mooli', cursive;
    font-size: 6rem;
    margin-bottom: 4rem;
    color: #bafd02;
  }
  
  .projects p {
    width: 90rem;
    text-align: center;
    font-size: 2rem;
    color: #5e728f;
    margin-bottom: 4rem;
  }
  
  .filter-nav {
    width: 90%;
    height: 10rem;
    background-color: #fff;
    box-shadow: 0 2rem 8rem rgba(130, 162, 235, 0.2);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-bottom: 6rem;
  }
  
  .filter-nav-link {
    width: 14rem;
    height: 5rem;
    background-color: #f2f4f5;
    border-radius: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #919daa;
    letter-spacing: 0.1rem;
    transition: all 0.3s;
  }
  
  .filter-nav-link:hover {
    background-color: #dadfe2;
    transform: translateY(-0.1rem);
  }
  
  .active {
    background-color: #bafd02;
    color: #fff;
  }
  
  .active:hover {
    background-color: #bafd02;
  }
  
  .projects-list {
    width: 90%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .project {
    width: 30rem;
    height: 33rem;
    position: relative;
    margin: 5rem;
    cursor: pointer;
  }
  
  .project.hide {
    display: none;
  }
  
  .project img {
    position: absolute;
    object-fit: cover;
    top: 50%;
    border-radius: 1rem;
  }
  
  .project img:nth-child(1) {
    width: 22rem;
    height: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.4);
    z-index: 2;
  }
  
  .project img:nth-child(2) {
    width: 20rem;
    height: 30rem;
    left: -5%;
    transform: translateY(-50%);
    box-shadow: 0 3rem 8rem rgba(130, 162, 235, 0.9);
    z-index: 1;
  }
  
  .project img:nth-child(3) {
    width: 100%;
    height: 70%;
    right: -10%;
    transform: translateY(-50%);
    box-shadow: 0 3rem 8rem rgba(130, 162, 235, 0.9);
  }
  /* End of Projects */


  /* Responsive */
@media (max-width: 1600px) {
  
    .projects-list {
      width: 80%;
    }
  
  }
  
  @media (max-width: 1440px) {
    .filter-nav {
      width: 85%;
    }
  
    .projects-list {
      width: 85%;
    }
  }
  
  @media (max-width: 1366px) {

    .project {
      width: 30rem;
    }
  
    .project img:nth-child(1) {
      width: 19rem;
    }
  
    .project img:nth-child(2) {
      width: 17rem;
      left: 0;
    }
  
    .project img:nth-child(3) {
      width: 90%;
      right: 0;
    }
  
  }
  

  @media (max-width: 820px) {

    .filter-nav {
      width: 90%;
    }
  
    .filter-nav-link {
      width: 12rem;
      height: 4.5rem;
    }
  
    .projects-list {
      width: 90%;
    }

  }
  
  @media (max-width: 430px) {

    .projects h1 {
      font-size: 4rem;
    }
  
    .projects p {
      width: 50rem;
    }
  
    .filter-nav {
      height: 15rem;
      flex-wrap: wrap;
    }
  
    .filter-nav-link {
      margin: 1rem;
    }
  
  }
  
  /* End of Responsive */




/***************************************************
                  pricing Section
***************************************************/
.pricing_container{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 4rem;
}

.price_box{
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    padding-bottom: 2rem;
}

.price_box.price_box_mid{
    background: linear-gradient(90deg, rgba(186,253,2,0) 35%, rgba(21,19,40,0.1966036414565826) 35%, rgba(0,212,255,0.3982843137254902) 98%);
}

.price_box_mid{
    transform: scale(1.1);
}

.price_box_header{
    background-color: #232c3b;
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price_box_header h3{
    font-size: 2.5rem;
    letter-spacing: 1px;
}
  
.price_box_amount{
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.price_box_amount h3{
    font-size: 6rem;
    color: #bafd02;
}

.price_box_amount span{
    position: absolute;
    top: 35%;
    left: 33%;
    font-size: 2rem;
    color: #bafd02;
}

.price_box ul{
    padding: 3rem;
}

.price_box ul li{
    display: flex;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid #ffffff57;
}

.price_box ul li i{
    color: #bafd02;
    font-size: 1.5rem;
}

.price_box ul li p{
    font-size: 1.8rem;
    margin-left: 1rem;
}

.price_box .btn_primary{
    margin: 0 auto;
}

.pricing .btn_primary{
    text-align: center;
    margin: 0 auto;
    margin-top: 2rem;
}


@media screen and (max-width: 1305px){
    .price_box ul li p{
        font-size: 1.4rem;
    } 

    .price_box_amount h3{
        font-size: 4.5rem;
    }
    
    .price_box_amount span{
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 1005px){
    .price_box ul li p{
        font-size: 1.2rem;
    } 

    .price_box_amount h3{
        font-size: 4rem;
    }
    
    .price_box_amount span{
        font-size: 1.5rem;
    }

    .price_box_header h3{
        font-size: 2rem;
    }
}

@media screen and (max-width: 930px){
    .pricing_container{
        grid-template-columns: 1fr;
    }

    .price_box{
        margin-bottom: 2rem;
    }

    .price_box_mid{
        transform: scale(1);
    }

    .price_box_amount span{
        top: 35%;
        left: 42%;
    }
    
}


@media screen and (max-width: 650px){
    .price_box_amount span{
        top: 35%;
        left: 40%;
    }
}

@media screen and (max-width: 470px){
    .price_box_amount span{
        top: 35%;
        left: 38%;
    }
}

@media screen and (max-width: 390px){
    .price_box_amount span{
        top: 35%;
        left: 34%;
    }
}


/***************************************************
               testimonial Section
***************************************************/

.container.swiper {
    max-width: 1400px;
    width: 100%;
    padding: 60px 0;
  }
  .slide-container {
    margin: 0 30px;
    overflow: hidden;
  }
  .card {
    border-radius: 8px;
    border: 1px solid #ffffff62;
    padding: 3rem;
    background: linear-gradient(90deg, rgba(43,38,89,0.38988095238095233) 0%, rgba(77,68,162,0.7288165266106443) 100%);
  }

  .image_box_testi{
    margin-bottom: 1rem;
  }

  .image_box_testi img{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
  }

  .name_testi{
    font-size: 2rem;
  }

  .job_testi{
    font-size: 1.6rem;
    color: #ffffffb6;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
  }

  .testi_text{
    font-size: 1.4rem;
    letter-spacing: 1px;
  }


  .swiper-navBtn {
    color: #000;
    height: 50px;
    width: 50px;
    transform: translateY(-40%);
    background: #fff;
    border-radius: 50%;
  }
  .swiper-navBtn::before,
  .swiper-navBtn::after {
    font-size: 24px;
  }
  
  .swiper-pagination-bullet {
    background-color: #333;
  }
  
  @media screen and (max-width: 768px) {
    .swiper-navBtn {
      display: none;
    }
  }



/***************************************************
                home blog Section
***************************************************/

.home_blogs_container{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 6rem;
}

.home_blog_img_con{
    height: 400px;
    border-top-left-radius: 3rem;
    border-top-right-radius: 3rem;
    overflow: hidden;
}

.home_blog_img_con img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 3rem;
    border-top-right-radius: 3rem;
    transition: all 0.4s ease-in-out;
}

.home_blog_img_con:hover img{
    transform: scale(1.4) rotate(10deg);
}

.home_blog_header{
    font-size: 3rem;
    margin-block: 1.3rem;
    transition: all 0.4s ease-in-out;
}

.home_blog_header:hover{
    text-decoration: underline;
}

.home_blog_details{
    display: flex;
    gap: 6rem;
}

.home_blog_details div{
    display: flex;
    align-items: center;
}

.home_blog_details div i{
    margin-right: 1rem;
    font-size: 1.3rem;
}

.home_blog_details div span{
    font-size: 1.3rem;
}

.home_blogs .btn_primary{
    margin: 0 auto;
}


@media screen and (max-width: 710px){
    .home_blogs_container{
        display: grid;
        grid-template-columns: 1fr;
        gap: 6rem;
    }
    
}


/***************************************************
                     footer
***************************************************/

.footer{
    display: grid;
    grid-template-columns: 0.5fr 1.5fr;
    padding: 3rem;
    background: linear-gradient(0deg, rgba(45,39,97,0) 0%, rgba(67,56,163,0.4515056022408963) 100%);
}

.footer_logo{
    width: 100px;
}

.footer_left{
    padding-inline: 3rem;   
}

.footer_left h3{
    font-size: 2.4rem;
    margin-bottom: 2rem;
}

.footer_left p{
    font-size: 1.3rem;
}

.footer_right{
    padding-inline: 6rem;
}

.footer_right_up{
   display: flex;
   justify-content: space-between;
}

.footer_right_up_socials_con{
    display: flex;
}

.footer_right_up_socials{
    width: 20%;
}

.footer_right_up_socials i{
   font-size: 1.8rem;
   margin-right: 1rem;
}

.footer_right_up h3{
    font-size: 2rem;
}

.footer_right_up_subs{
    width: 50%;
}

.footer_right_up_subs form{
    display: flex;
}

.footer_right_up_subs form input{
    padding: 10px 16px;
    width: 80%;
    background-color: #5e728f;
    color: #fff;
    outline: none;
}

.footer_right_up_subs form input::placeholder{
    color: #fff;
}

.footer_right_up_subs form button{
    padding: 10px 16px;
    color: #fff;
    background-color: #bafd02; 
    width: 15%;
    font-size: 1.5rem;
}



.footer_right_down{
  display: flex;
  justify-content: space-between;
  padding-top: 5rem;
}

.footer_right_down h3{
   font-size: 2rem;
}

.footer_right_down_box ul li{
    padding-block: 1.5rem;
    font-size: 1.5rem;
}

.footer_right_down_box ul li a{
    transition: all 0.4s ease-in-out;
}

.footer_right_down_box ul li a:hover{
    color: #bafd02;
}

.footer_right_down_box:nth-child(3) ul li i{
    color: #bafd02;
    margin-right: 10px;
}

@media screen and (max-width: 880px){
    .footer{
        grid-template-columns: 1fr;
    }

    .footer_left{
        margin-bottom: 3rem;
    }

    .footer_right{
        padding-inline: 3rem;
    }
}


@media screen and (max-width: 590px){
    .footer_right_down{
        flex-wrap: wrap;
    }

    .footer_right_down div{
        width: 100%;
        margin-bottom: 5rem;
    }

    .footer_right_up{
        flex-direction: column;
    }

    .footer_right_up div{
       width: 100%;
       margin-bottom: 3rem;
    }
}




/***************************************************
                    Contact Page
***************************************************/

.contact_page_up{
    margin-top: 10rem;
}

.contact_page_up_container{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.contact_page_up_container h1{
    width: 50%;
   font-size: 8rem;
}

.contact_page_up_container h1 span{
    background: -webkit-linear-gradient(#bafd02, #b6b5b5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact_page_up_container p{
    font-size: 1.5rem;
    width: 40%;
    line-height: 1.8;
    letter-spacing: 1px;
}

.contact_page_down .container{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.contact_page_down_contact_container{
    width: 50%;
}

.contact_page_down_contact_details_con{
    width: 40%;
}

.contact_page_down_input_group{
   display: flex;
   gap: 1rem;
   margin-bottom: 1.8rem;
}

.contact_page_down_input_group input{
    padding: 1.2rem;
    width: 100%;
}

.contact_page_down_contact_container textarea{
    width: 100%;
    padding: 1.2rem;
    resize: none;
}

.contact_page_down_contact_container input,
.contact_page_down_contact_container textarea{
    font-family: "Poppins", sans-serif;
    background-color: #232c3baf;
    outline: none;
    border: none;
    color: #fff;
    border: 1px solid #979595;
    border-radius: 1rem;
}

.contact_form_btn{
    color: #fff;
    background: radial-gradient(circle, rgba(28,48,131,1) 0%, rgba(98,125,237,0.8212535014005602) 100%);
    width: 100%;
    padding: 16px;
    border-radius: 1rem;
    font-size: 1.4rem;
    margin-block: 2rem;
    transition: all 0.4s ease-in-out;
}

.contact_form_btn:hover{
    transform: scale(1.05);
}

.contact_page_box{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact_page_box i{
   color: #bafd02;
   font-size: 2.5rem;
   
}

.contact_page_box a{
    font-size: 1.7rem;
    transition: all 0.4s ease-in-out;
}

.contact_page_box a:hover{
    color: #bafd02;
}

.contact_page_socials{
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5rem;
}

.contact_page_socials a{
    margin-right: 2rem;
    font-size: 2rem;
}


@media screen and (max-width: 820px) {
    .contact_page_up_container{
        flex-direction: column;
    }

    .contact_page_up_container h1{
        width: 100%;
        margin-bottom: 5rem;
    }
    
    .contact_page_up_container p{
        width: 100%;
    }

    .contact_page_down .container{
        flex-direction: column;
    }
    
    .contact_page_down_contact_container{
        width: 100%;
        margin-bottom: 5rem;
    }
    
    .contact_page_down_contact_details_con{
        width: 100%;
    }
}



@media screen and (max-width: 410px) {
    .contact_page_up_container h1{
       font-size: 5rem;
    }

    .contact_page_down_input_group{
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.8rem;
     }
}



/***************************************************
                single project Page
***************************************************/

.single_project_container{
    margin-top: 15rem;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 2rem;
}

.single_project_img_container img{
    width: 100%;
    height: 400px;
    object-fit: contain;
    margin-bottom: 3rem;
}

.single_project_details h1{
  font-size: 8rem;
  background: -webkit-linear-gradient(#bafd02, #b6b5b5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.single_project_details ul li{
    font-size: 1.5rem;
    margin-block: 2rem;
}

.single_project_details p{
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.single_project_details h3{
    font-size: 3rem;
}


.single_project_video{
    margin-top: 5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    border-radius: 2rem;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    align-items: center;
    gap: 3rem;
    /* height: 450px; */
    /* overflow: hidden; */
    padding: 2rem;
}

.single_project_video video{
  width: 100%;
  /*height: 100%;*/
  object-fit: contain;
}

.single_project_video video[poster]{
    /*height:100%;*/
    width:100%;
    object-fit: cover;
}

.single_project_header{
    font-size: 8rem;
    background: -webkit-linear-gradient(#bafd02, #b6b5b5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


@media screen and (max-width: 1120px){
    .single_project_header{
        font-size: 6rem;
    }

    /* .single_project_video{
        height: 350px;
    } */
}


@media screen and (max-width: 890px){
    .single_project_header{
        font-size: 5rem;
    }

    /* .single_project_video{
        height: 300px;
    } */

    .single_project_details h1{
        font-size: 6rem;
      }
}


@media screen and (max-width: 730px){
    .single_project_header{
        font-size: 4rem;
    }

    /* .single_project_video{
        height: 300px;
    } */

    .single_project_details h1{
        font-size: 4.8rem;
      }
}


@media screen and (max-width: 600px){
    .single_project_header{
        font-size: 3rem;
    }

    /* .single_project_video{
        height: 200px;
    } */

    .single_project_details h1{
        font-size: 4rem;
      }

      .single_project_container{
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px){
    .single_project_header{
        font-size: 2rem;
    }

    .single_project_video{
        height: auto;
    }

    .single_project_details h1{
        font-size: 3.5rem;
    }

    .single_project_video{
      display: flex;
      flex-direction: column-reverse;  
    }
}



/***************************************************
                Blogs Page
***************************************************/

.blogs_page_banner{
    /* background-image: url('../images/blog_page_1.jpg'); */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 70vh;
    margin-top: 2rem;
    position: relative;
}

.blogs_page_banner h1{
    position: absolute;
    top: 10%;
    left: 10%;
    font-size: 8rem;
    background: -webkit-linear-gradient(#bafd02, #b6b5b5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 10;
}

.blogs_page_banner::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(16, 21, 19, 0.7);
}

.single_blog_container h3{
    font-size: 3rem !important;
    color: #96cc00;
}


.blogs_page_banner_float_box{
    width: 30%;
    position: absolute;
    top: 40%;
    left: 10%;
    z-index: 10;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.blogs_page_banner_float_box_img{
    width: 100%;
}

.blogs_page_banner_float_box_img img{
    width: 100%;
    height: 100%;
}

.blogs_page_banner_float_box_content{
    padding: 2rem;
    background-color: #232c3b;
}

.blogs_page_banner_float_box_content p{
    width: 90%;
    font-size: 1.5rem;
    line-height: 2;
}

/* .blogs_page_banner_float_box_content h3{
    font-size: 5rem !important;
    color: #96cc00;
} */

.blogs_page .blogs_page_container{
    margin-top: 25rem;
}


@media screen and (max-width: 1250px){
    .blogs_page_banner_float_box{
        width: 35%;
    }
}


@media screen and (max-width: 910px){
    .blogs_page_banner_float_box{
        width: 45%;
    }
}

@media screen and (max-width: 710px){
    .blogs_page_banner_float_box{
        width: 55%;
    }
}

@media screen and (max-width: 550px){
    .blogs_page_banner_float_box{
        width: 75%;
    }
}

@media screen and (max-width: 410px){

    .blogs_page_banner_float_box_content p{
        width: 100%;
        font-size: 1.5rem;
        line-height: 1.8;
    }
}


@media screen and (max-width: 350px){
    .blogs_page_banner_float_box{
        display: none;
    }

    .blogs_page .blogs_page_container{
        margin-top: 5rem;
    }
}




/***************************************************
                 single Blog Page
***************************************************/

.single_blog_container{
    width: 100%;
    margin: 0 auto;
    margin-top: 10rem;
    padding: 4rem;
    background-color: #0d316092;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.single_blog_img_con{
    width: 100%;
    height: 500px;
    margin-bottom: 5rem;
}

.single_blog_img_con img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single_blog_header{
    font-size: 5rem;
    background: -webkit-linear-gradient(#bafd02, #b6b5b5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.single_blog_date{
    font-size: 1.4rem;
    margin-bottom: 5rem;
}

.single_blog_container p{
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.single_blog_container h2{
    font-size: 3rem;
    font-weight: bold;
}

.single_blog_container ul{
    margin-block: 2rem;
}

.single_blog_container li{
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.single_blog_tag_container{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 5rem;
}

.single_blog_tag_container span{
    background-color: #0d316092;
    padding: 16px;
    border-radius: 1rem;
    margin-right: 1rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}




/***************************************************
                 Projects Page
***************************************************/

.projects_page_light_one,
.projects_page_light_two{
    width: 1500px;
    height: 1500px;
    border-radius: 50%;
    background: radial-gradient(#bafd0276,transparent,transparent);  
    /* filter: blur(10px); */
    position: absolute;
}

.projects_page_light_one{
    top: -50%;
    left: -65%;
}

.projects_page_light_two{
    top: -50%;
    right: -70%;
}

.projects_page{
    margin-top: 10rem;
}

.projects_page_header{
    font-size: 8rem;
    margin-bottom: 3rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.projects_page_header span{
    display: inline-block;
    background: -webkit-linear-gradient(#bafd02, #b6b5b5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.projects_page_item{
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.projects_page_content{
    font-size: 1.5rem;
}


.projects_page_container{
    margin-top: 10rem;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 5em;
}

.projects_page_item_img img{
    width: 100%;
}

.projects_page_item_content{
    padding: 16px;
    background-color: #232c3b;
}

.projects_page_item_content h3{
    font-size: 2rem;
    margin-bottom: 2rem;
}

.projects_page_item_content p{
    font-size: 1.3rem;
}

.projects_page_item_content .btn_primary{
    margin-top: 2rem;
    font-size: 1.3rem;
    width: 100%;
}


@media screen and (max-width: 1040px){
    .projects_page_container{
        grid-template-columns: repeat(2,1fr);
    }
}

@media screen and (max-width: 770px){
    .projects_page_header{
        font-size: 6rem;
    }
}


@media screen and (max-width: 590px){
    .projects_page_container{
        grid-template-columns: 1fr;
    }

    .projects_page_header{
        font-size: 4rem;
    }
}



/***************************************************
                    pricing  Page
***************************************************/

.pricing_page{
    margin-top: 10rem;
}

.pricing_page_banner{
    margin-block: 10rem;
    height: 50vh;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    /* background-image: url('../images/pricing_banner.jpg'); */
    background-position: center;
    background-size: cover;
    position: relative;
}

.pricing_page_banner::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.pricing_page_banner_shape{
    height: 100%;
    background: linear-gradient(0deg, rgba(45,39,97,1) 0%, rgba(67,56,163,1) 100%);
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 34% 100%);
    width: 100%;
    z-index: 10;
}

.pricing_page_banner_content{
    height: 100%;
}

.pricing_page_banner_content h2{
    position: absolute;
    z-index: 20;
    font-size: 5rem;
    right: 10%;
    top: 5%;
}

.pricing_page_banner_content p{
    position: absolute;
    z-index: 20;
    font-size: 1.6rem;
    right: 2%;
    top: 25%;
    width: 30%;
}

@media screen and (max-width: 1025px){
    .pricing_page_banner_content h2{
        right: 5%;
    }   
}

@media screen and (max-width: 880px){
    .pricing_page_banner_content h2{
        right: 8%;
        font-size: 3.5rem;
    }
}


@media screen and (max-width: 690px){
    .pricing_page_banner_content h2{
        right: 8%;
        font-size: 3.5rem;
    }

    .pricing_page_banner_content p{
        position: absolute;
        z-index: 20;
        font-size: 1.4rem;
        right: 2%;
        top: 20%;
        width: 35%;
    }
}


@media screen and (max-width: 500px){
    .pricing_page_banner{
        display: none;
    }
}


/***************************************************
                    logos Page
***************************************************/

.logos_page{
    margin-top: 10rem;
}

.logos_container{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 4rem;
    margin-top: 8rem;
}

.logo_box{
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    padding: 16px;
    /* width: 28%; */
    justify-content: space-around;
    align-items: center;
    height: auto;
}

.logo_box_img{
    /* border: 1px solid red; */
    height: 70%;
}

.logo_box_img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo_box_content p{
   font-size: 1.3rem;
   text-align: center;
}

@media screen and (max-width: 930px) {
    .logos_container{
        display: grid;
        grid-template-columns: repeat(2,1fr);
    }
}

@media screen and (max-width: 650px) {
    .logos_container{
        display: grid;
        grid-template-columns: 1fr;
    }
}


/***************************************************
                    404  Page
***************************************************/

.not_found{
    height: 100vh;
    /* background-image: url('../images/not_found_page.jpg'); */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.not_found_content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.not_found_content h1{
    font-size: 35rem;
    color: #ffffff94;
}

.not_found_content h3{
    font-size: 3rem;
    margin-bottom: 3rem;
}

@media screen and (max-width: 540px) {
    .not_found_content h1{
        font-size: 25rem;
    }
}



/***************************************************
                multi language Page
***************************************************/

.translator_main_box img{
    width: 30px;
}


.translator_main_box{
    background-color: #fff;
    color: #000;
    width: 150px;
    padding: 16px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 99999;
    cursor: pointer;
}

.selected_translator{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    cursor: pointer;
}

.translator_all_list{
    background-color: #fff;
    color: #000;
    width: 150px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 16px;
    position: absolute;
    bottom: 100%;
    left: 0;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.translator_all_list:hover{
    background-color: #fff;
}

.translator_all_list.active{
    opacity: 1;
    visibility: visible;
}

.translator_all_list.active a{
    background-color: transparent;
    color: #000;
}

.translator_box{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    font-size: 18px;
    cursor: pointer;
    margin-bottom: 15px;
    transition: all 0.4s ease-in-out;
}



/***************** Extra Styles  ********************************/
#loader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.75) url(loading.gif) no-repeat center center;
    z-index: 100000000;
}

.text-danger{
    color: red;
    font-size: 14px;
}


.captch_group {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
    margin-top: 2rem;
}

.captch_group div{
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-block: 5px;
    gap: 10px;
    font-size: 20px;
    border: 1px solid #c3c1c1;
}

input.random_num{
    border-radius: 0;
    width: 70%;
    padding-left: 1rem;
}

.captcha_error{
    display: block;
    color: red;
    font-size: 1.4rem;
}



/*********** pagination  ***************/

.pagination{
    display: flex;
    gap: 20px;
}

.pagination .page-item{
    background-color: var(--secondary-color);
    width: 35px;
    height: 35px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    border-radius: 50%;
    transition: all 0.3s;
    font-size: 1.6rem;
    cursor: pointer;
} 

.pagination .page-item:hover{
    background-color: #384559;
}

.pagination .page-item.active{
    background-color: #384559;
    color: #fff;
}

.pagination_btns{
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/***************** TermsCondition && Privacy Policy && Imprint  ***************/


.t_p_i-header{
    font-size: 8rem;
    margin-bottom: 3rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-top: 8rem;
    text-align: center;
}

.t_p_i-header span{
    display: inline-block;
    background: -webkit-linear-gradient(#bafd02, #b6b5b5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.t_p_i-content h2{
    font-size: 4.3rem;
    margin-bottom: 1rem;
}

.t_p_i-content h3{
    font-size: 3.3rem;
    margin-bottom: 1rem;
}

.t_p_i-content p{
    font-size: 1.5rem;
    line-height: 1.8;
}

.t_p_i-content{
    font-size: 1.5rem;
    line-height: 1.8;
}

@media screen and (max-width: 700px) {
  .t_p_i-header{
    font-size: 4rem;
   }  
}







