@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&family=Ephesis&family=Rubik+Doodle+Shadow&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}





body{
    height: 100vh;
    background: #000000ef;
    
}
/* 212529 */
/* .k-logo{
    margin-left: 20rem;
} */

/* @media screen and (max-width:768px){
    .k-logo{
        margin-left: 0rem;
    }
} */

 ul li:hover a{
    background-color: #292b2e;
    border-radius: 15px 0px 15px 0px;
    /* rgba(0, 0, 0, 0.502) */
}
/* boxanimations */
.animie div{
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: transparent;
    /* border: 6px solid #fb8c00; */
    background: linear-gradient(#212529, #212529) padding-box,
              linear-gradient(to right, #fa8f0c, #7615f4ac) border-box;
              /* b44148 631048 */
  border-radius: 50em;
  border: 4px solid transparent; 
    border-radius: 25%;
}
.animie div:nth-child(1){
    top: 12%;
    left: 42%;
    animation: animate 10s linear infinite;
}
.animie div:nth-child(2){
    top: 90%;
    left: 50%;
    animation: animate 7s linear infinite;
}
.animie div:nth-child(3){
    top: 17%;
    left: 6%;
    animation: animate 9s linear infinite;
}
.animie div:nth-child(4){
    top: 20%;
    left: 60%;
    animation: animate 10s linear infinite;
}
.animie div:nth-child(5){
    top: 67%;
    left: 10%;
    animation: animate 6s linear infinite;
}

.animie div:nth-child(6){
    top: 80%;
    left: 70%;
    animation: animate 12s linear infinite;
}
.animie div:nth-child(7){
    top: 60%;
    left: 80%;
    animation: animate 15s linear infinite;
}
.animie div:nth-child(8){
    top: 32%;
    left: 25%;
    animation: animate 16s linear infinite;
}
.animie div:nth-child(9){
    top: 90%;
    left: 25%;
    animation: animate 9s linear infinite;
}
.animie div:nth-child(10){
    top: 20%;
    left: 80%;
    animation: animate 5s linear infinite;
}
.animie div:nth-child(11){
    top: 90%;
    right: 5%;
    animation: animate 5s linear infinite;
}
.animie div:nth-child(12){
    top: 90%;
    left: 9%;
    animation: animate 5s linear infinite;
}
.animie div:nth-child(13){
    top: 70%;
    left: 30%;
    animation: animate 5s linear infinite;
}
@keyframes animate{
    0%{
        transform: scale(0) translateY(0) rotate(0);
        opacity: 1;
    }
    100%{
        transform: scale(1.3) translateY(-90px) rotate(360deg);
        opacity: 0;
    }
}


.hire-btn{
    background: #ffb742;
    padding: 6px 30px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.hire-btn-one{
    background: #ffb742;
    padding: 6px 30px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    margin-top: 10px;
    position: fixed;
    left: 0px;
    top: 60px;
    z-index: 999;
   
}
.hire-btnsecond{
    background: #ffb742;
    padding: 6px 30px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.hire-btn:hover{
    background: #ffff;
}

.main{
    height: 683px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main h4{
    font-size: 32px;
    color: #fff;
    font-weight: 600;
}

.main h4 span{
    color: #fff;
   
   
}

.main p.title{
    font-size: 70px;
    font-weight: 600;
    color: #fff;
    margin-top: 8px;
    -webkit-text-stroke: 1px #fff;
    color: transparent;
    /* background-image: linear-gradient(#fd9c00, #ffb742); */
    background-image: linear-gradient(#fa8f0c, #7615f4ac);
    background-repeat: no-repeat;
   -webkit-background-clip: text;
   background-position: -1200px 0;
   animation: backcolor 5s linear infinite  alternate;
}
@keyframes backcolor {
    100%{
        background-position: 0 0;
    }
}

.main p.subtitle{
    font-size: 16px;
    color: #ccc;
    /* margin-top: 20px; */
}

.main img{
    width: 200px;
    height: 200px;
    margin-top: 100px;
}

.guarantee{
    margin-top: 50px;
    padding: 0 50px;
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
}

.guarantee .item{
    background: #292b2e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    width: 100%;
    border-radius: 10px;
    padding: 0 30px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.guarantee .item:hover{
    border-color: #ffb742;
}

.guarantee .item .icon{
    width: 46px;
    height: 46px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.guarantee .item:hover .icon{
    background-color: #ffb742;
}

.guarantee .item .icon i{
    font-size: 30px;
}

.guarantee .item .info{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.guarantee .item .info h3{
    color: #ffb742;
    font-size: 28px;
}

.guarantee .item .info p{
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.guarantee .item > i{
    color: #fff;
    font-size: 30px;
    transition: color 0.3s ease;
}

.guarantee .item:hover > i{
    color: #ffb742;
}

.seprator{
    margin: 50px 50px 30px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.08);
    display: inline-block;
    color: #ffb742;
    border-radius: 12px;
}

.about{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    padding: 0 50px;
}

.about img{
    width: 280px;
}

.about .info h3{
    color: #ffb742;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
    letter-spacing: 10px;
    text-transform: uppercase;
    width: 100%;
    -webkit-box-reflect: below 1px linear-gradient(transparent,#0004);
    line-height: 0.70em;
    outline: none;
    animation: animatee 5s linear infinite;
}

@keyframes animatee
{
    0%,18%,20%,50.1%,60%,65.1%,80%,90.1%,92%
    {
        color: #ffb742;
        text-shadow: none;
    }
    /* 18.1%,20.1%,30%,50%,60.1%,65%,80.1%,90%,92.1%,100%{
        color:#fff ;
        text-shadow: 0 0 10px #212529,
        0 0 20px #212529,
        0 0 40px #212529,
        0 0 80px #212529,
        0 0 160px #212529,
    } */
}

.about .info p{
    color: #ccc;
    font-size: 14px;
}

.about .info button{
    margin-top: 30px;
}

.skills{
    display: flex;
    justify-content: space-around;
    padding: 0 50px;
}

.skills .left{
    width: 680px;
}

.skills .left .info h3{
    color: #ffb742;
    font-size: 30px;
    margin-bottom: 20px;
    
}

.skills .left .info p{
    color: #ccc;
    font-size: 14px;
}

.skills .left button{
    margin-top: 30px;
}

.skills .right{
    width: 420px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.skills .right .item{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #383e45;
    width: 50px;
    height: 50px;
    border-radius: 10px;
}

.skills .right .item i{
    font-size: 34px;
    color: #fff;
}

.box:hover{
    border-color: #ffb742;
}


@media screen and (max-width: 1100px) {
    .guarantee{
        flex-wrap: wrap;
        gap: 10px;
        /* margin-top: 220px; */
    }

    .guarantee .item{
        flex-basis: 49%;
    }

    .skills{
        justify-content: space-between;
        gap: 20px;
    }

    .skills .left{
        width: 500px;
    }

    .skills .left .info h3{
        font-size: 22px;
    }

    .skills .left .info p{
        font-size: 12px;
    }

   
}

@media screen and (max-width: 780px) {
    

    .main h4{
        font-size: 24px;
    }

    .main p.title{
        font-size: 36px;
    }

    .main p.subtitle{
        font-size: 14px;
    }

    .guarantee .item{
        flex-basis: 100%;
    }

    .about{
        flex-wrap: wrap;
        justify-content: center;
    }

}

@media screen and (max-width: 650px) {
    
    .navbar{
        justify-content: center;
    }

    .navbar h2{
        display: none;
    }

    .navbar ul li a{
        font-size: 14px;
    }

    .main{
        margin-top: 50px;
        height: 320px;
        justify-content: start;
    }

    .main h4{
        font-size: 20px;
    }

    .main p.title{
        font-size: 28px;
    }

    .main p.subtitle{
        font-size: 12px;
    }

    .main img{
        margin-top: 40px;
        width: 150px;
        height: 150px;
    }

    .skills{
        flex-wrap: wrap;
        justify-content: center;
    }

    .skills .right{
        justify-content: space-between;
    }

    .skills .left .info h3{
        font-size: 20px;
    }


}

@media screen and (max-width: 480px) {
    
    .main p.title{
        font-size: 18px;
    }

    .main p.subtitle{
        font-size: 10px;
    }

    .guarantee .item .info h3{
        font-size: 20px;
    }

    .guarantee .item .info p{
        font-size: 12px;
    }

}

  /* buttonanimie */
  .effect{
    position: absolute;
    overflow: hidden;
    padding: 15px 10px;
    text-decoration: none;
    letter-spacing: 2px;
    border-radius: 5px;
    color: rgba(255, 255, 255, 0.61);
    background-color: #212529;
 }
.effect{
    top:560px;
}
@media screen and (max-width:600px){
    .effect{
        top:350px;
    }
}

 .effect::before{
    position: absolute;
    width: 100%;
    top: 2px;
    left: 2px;
    bottom: 2px;
    content: '';
 }
 .effect span:nth-child(1) {
    width: 100%;
    height: 3px;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to right, #fb8c00, #7615f4ac);
    animation: animate1 2s linear infinite;
 }
 @keyframes animate1{
    0%{
        transform: translateX(-100%);
    }
    100%{
        transform: translateX(100%);
    }
 }
 .effect span:nth-child(2){
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom,  #fb8c00, #7615f4ac );
    animation: animate2 2s linear infinite;
    animation-delay: 1s;
 }
 @keyframes animate2{
    0%{
        transform: translateY(-100%);
    }
    100%{
        transform: translateY(100%);
    }
 }
 .effect span:nth-child(3) {
    width: 100%;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(to left, #fb8c00, #7615f4ac);
    animation: animate3 2s linear infinite;
 }
 @keyframes animate3{
    0%{
        transform: translateX(100%);
    }
    100%{
        transform: translateX(-100%);
    }
 }
 .effect span:nth-child(4){
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to top,  #fb8c00, #7615f4ac );
    animation: animate4 2s linear infinite;
    animation-delay: 1s;
 }
 @keyframes animate4{
    0%{
        transform: translateY(100%);
    }
    100%{
        transform: translateY(-100%);
    }
 }


 /* vedio */
 .modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .modal-content {
    position: relative;
    margin: 10% auto;
    padding: 20px;
    width: 70%;
    max-width: 700px;
    background-color: #fff;
    text-align: center;
  }
  
  .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 35px;
    cursor: pointer;
    color: red;
  }
/* progress bars */
.box1{
    display: flex;
    width: 300px;
    padding: 40px 0;
    border-radius: 8px;
    row-gap: 30px;
    flex-direction: column;
    align-items: center;
}
.circular-progress{
    position: relative;
    height: 200px;
    width: 200px;
    background: conic-gradient(#fa8f0c, #7615f4ac 3.6deg, #ededed 0deg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.circular-progress::before{
    content: '';
    position: absolute;
    height: 170px;
    width: 170px;
    border-radius: 50%;
    background-color: #fff;
}
.progress-value{
    position: relative;
    font-size: 25px;
    font-weight: 600;
    color: #292b2e;
}
.undertext{
    font-size: 15px;
    font-weight: 500;
    color: #ffb742;
}
/* progressbar2 */
.box2{
    display: flex;
    width: 300px;
    padding: 40px 0;
    border-radius: 8px;
    row-gap: 30px;
    flex-direction: column;
    align-items: center;
}
.circular-progresstwo{
    position: relative;
    height: 200px;
    width: 200px;
    background: conic-gradient(#fa8f0c, #7615f4ac 3.6deg, #ededed 0deg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.circular-progresstwo::before{
    content: '';
    position: absolute;
    height: 170px;
    width: 170px;
    border-radius: 50%;
    background-color: #fff;
}
.progress-valuetwo{
    position: relative;
    font-size: 25px;
    font-weight: 600;
    color: #292b2e;
}
.undertexttwo{
    font-size: 15px;
    font-weight: 500;
    color: #ffb742;
}
/* progressbar3 */
.box3{
    display: flex;
    width: 300px;
    padding: 40px 0;
    border-radius: 8px;
    row-gap: 30px;
    flex-direction: column;
    align-items: center;
}
.circular-progressthree{
    position: relative;
    height: 200px;
    width: 200px;
    background: conic-gradient(#fa8f0c, #7615f4ac 3.6deg, #ededed 0deg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.circular-progressthree::before{
    content: '';
    position: absolute;
    height: 170px;
    width: 170px;
    border-radius: 50%;
    background-color: #fff;
}
.progress-valuethree{
    position: relative;
    font-size: 25px;
    font-weight: 600;
    color: #292b2e;
}
.undertextthree{
    font-size: 15px;
    font-weight: 500;
    color: #ffb742;
}

/* progressbar 4 */
.box4{
    display: flex;
    width: 300px;
    padding: 40px 0;
    border-radius: 8px;
    row-gap: 30px;
    flex-direction: column;
    align-items: center;
}
.circular-progressfour{
    position: relative;
    height: 200px;
    width: 200px;
    background: conic-gradient(#fa8f0c, #7615f4ac 3.6deg, #ededed 0deg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.circular-progressfour::before{
    content: '';
    position: absolute;
    height: 170px;
    width: 170px;
    border-radius: 50%;
    background-color: #fff;
}
.progress-valuefour{
    position: relative;
    font-size: 25px;
    font-weight: 600;
    color: #292b2e;
}
.undertextfour{
    font-size: 15px;
    font-weight: 500;
    color: #ffb742;
}



/* progress bar5 */
.box5{
    display: flex;
    width: 300px;
    padding: 40px 0;
    border-radius: 8px;
    row-gap: 30px;
    flex-direction: column;
    align-items: center;
}
.circular-progressfive{
    position: relative;
    height: 200px;
    width: 200px;
    background: conic-gradient(#fa8f0c, #7615f4ac 3.6deg, #ededed 0deg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.circular-progressfive::before{
    content: '';
    position: absolute;
    height: 170px;
    width: 170px;
    border-radius: 50%;
    background-color: #fff;
}
.progress-valuefive{
    position: relative;
    font-size: 25px;
    font-weight: 600;
    color: #292b2e;
}
.undertextfive{
    font-size: 15px;
    font-weight: 500;
    color: #ffb742;
}
/* progress bar6 */
.box6{
    display: flex;
    width: 300px;
    padding: 40px 0;
    border-radius: 8px;
    row-gap: 30px;
    flex-direction: column;
    align-items: center;
}
.circular-progresssix{
    position: relative;
    height: 200px;
    width: 200px;
    background: conic-gradient(#fa8f0c, #7615f4ac 3.6deg, #ededed 0deg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.circular-progresssix::before{
    content: '';
    position: absolute;
    height: 170px;
    width: 170px;
    border-radius: 50%;
    background-color: #fff;
}
.progress-valuesix{
    position: relative;
    font-size: 25px;
    font-weight: 600;
    color: #292b2e;
}
.undertextsix{
    font-size: 15px;
    font-weight: 500;
    color: #ffb742;
}
/* progress bar7 */
.box7{
    display: flex;
    width: 300px;
    padding: 40px 0;
    border-radius: 8px;
    row-gap: 30px;
    flex-direction: column;
    align-items: center;
}
.circular-progressseven{
    position: relative;
    height: 200px;
    width: 200px;
    background: conic-gradient(#fa8f0c, #7615f4ac 3.6deg, #ededed 0deg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.circular-progressseven::before{
    content: '';
    position: absolute;
    height: 170px;
    width: 170px;
    border-radius: 50%;
    background-color: #fff;
}
.progress-valueseven{
    position: relative;
    font-size: 25px;
    font-weight: 600;
    color: #292b2e;
}
.undertextseven{
    font-size: 15px;
    font-weight: 500;
    color: #ffb742;
}










/* pptvedio1 */
/* animation  */
.loader{
 position: fixed;
 top: 0;
 left: 0;
 background: black;
 height: 100%;
 width: 100%;
 display: flex;
 justify-content: center;
 align-items: center;
 z-index: 999999999;
}
         
.disppear{
  animation: vanish 1s forwards;
}
@keyframes vanish {
  100%{
    opacity: 0;
    visibility: hidden;
  }
}
 
 .scroll-line{
 background: #e6fe0b;
   top: 0;
   left: 0;
   z-index: 9999;
   height: 5px;
   position: fixed;
   transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
 }


 .reflector{
    color: #ffb742;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
    letter-spacing: 10px;
    text-transform: uppercase;
    width: 100%;
    -webkit-box-reflect: below 1px linear-gradient(transparent,#0004);
    line-height: 0.70em;
    outline: none;
    animation: animatee 4s linear infinite;

}

@keyframes animatee
{
    0%,18%,20%,50.1%,60%,65.1%,80%,90.1%,92%
    {
        color: #ffb742;
        text-shadow: none;
    }
    /* 18.1%,20.1%,30%,50%,60.1%,65%,80.1%,90%,92.1%,100%{
        color:#fff ;
        text-shadow: 0 0 10px #212529,
        0 0 20px #212529,
        0 0 40px #212529,
        0 0 80px #212529,
        0 0 160px #212529,
    } */
}



/* for designs section */
body {
    font-family: Verdana, sans-serif;
    margin: 0;
  }
 
  * {
    box-sizing: border-box;
  }
 
  .row > .column {
    padding: 0 8px;
  }
 
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
 
  .column {
    float: left;
    width: 25%;
  }
 
  /* The Modal (background) */
  .modalnew {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 170px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: black;
  }
 
  /* Modal Content */
  .modal-contentnew {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
  }
 
  /* The Close Button */
  .closenew {
    color: white;
    position: absolute;
    top: 100px;
    right: 35px;
    font-size: 40px;
    font-weight: bold;
  }
 
  .closenew:hover,
  .closenew:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
  }
 
  .mySlides {
    display: none;
  }
 
  .cursornew {
    cursor: pointer;
  }
 
  /* Next & previous buttons */
  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    background-color: #ffb742;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    color: #000;
  }
 
  /* 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: #383e45;
    color: white;
  }
 
  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
 
  img {
    margin-bottom: -4px;
  }
 
  .caption-container {
    text-align: center;
    background-color: black;
    padding: 2px 16px;
    color: white;
  }
 
  .demo {
    opacity: 0.6;
  }
 
  .active,
  .demo:hover {
    opacity: 1;
  }
 
  img.hover-shadow {
    transition: 0.3s;
  }
 
  .hover-shadow:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }




/* contact page */
.first_col{
    background-color: #f8f9fa;
    height: 720px;
    position: relative;
    width: 550px;
    border-radius: 25px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.img-fluid {
    border-radius: 20px;
}
.form-control{
    height: 52px;
    background-color: #f8f9fa;
    font-size: 15px;
    border-radius: 2px;
    box-shadow: none !important;
    border: 1px solid #ffb742;
}

/* scroll top starts */
#scroll-top {
    position: fixed;
    top: -140%;
    right: 2rem;
    padding: 1rem 1.5rem;
    font-size: 2rem;
    background: #ffae00;
    color: rgb(13, 0, 44);
    border-radius: 50%;
    transition: 1s linear;
    z-index: 1000;
}
 
#scroll-top.activenew {
    top: calc(100% - 12rem);
}
 
/* scroll top ends */





/* developments card hover effect */
.cardd {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
  }

  .cardd:hover:hover {
    transform: translateY(-10px); /* Adjust as needed */
  }

  .cardd-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    background-color: #fb8a00ad; /* Semi-transparent black background */
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
  }

  .cardd:hover .cardd-overlay {
    opacity: 1;
  }

/* project card hover */
.cardd-project {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
  }

  .cardd-.cardd-project:hover {
    transform: translateY(-10px); /* Adjust as needed */
  }

  .cardd-overlay-project {
    position: absolute;
    top: 0;
    left: 3.1%;
    width: 83%;
    height: 100%;
    background-color: #fb8a00e1; /* Semi-transparent black background */
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    padding: 15px;
  }

  .cardd-project:hover .cardd-overlay-project {
    opacity: 1;
  }


  /* scrollbar start */
  html::-webkit-scrollbar {
    width: 1rem;
  }
   
  html::-webkit-scrollbar-track {
    background: #383e45;
  }
   
  html::-webkit-scrollbar-thumb {
    background: #ffb742ce;
  }
   
  .back-to-top{
    position: fixed;
    right: 13px;
    bottom: 45px;
    z-index: 99;
  }


/* hire me */
/* @import url('https://fonts.googleapis.com/css?family=Roboto:300,500');
 
@color-card-background: #2d3638;
@color-tag-background: #191e20;
@color-anchor: #e37544;
@color-body-copy: #b9bcbd;
@default-border-radius: 10px;
@breakpoint-medium: "screen and (min-width: 700px)"; */
 
 
 
.form-popup-bg {
  position:absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
}
.form-popup-bg {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(94, 110, 141, 0.9);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
  overflow-y: auto;
  z-index: 10000;
}
.form-popup-bg.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}
.form-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position:relative;
  padding: 20px 40px;
  color: #fff;
  /* margin-top: -100px; */
}
.close-button {
  background:none;
  color: black;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 30px;
  right: 10px;
  border: solid 1px #ffb742;
  border-radius: 50%;
  /* border: none; */
}
.close-button:hover{
    background-color: #ffb742;
}

.form-control {
    height: 40px;
}
      

.form-popup-bg-one {
    position:absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
  }
  .form-popup-bg-one {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(94, 110, 141, 0.9);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    transition: opacity 0.3s 0s, visibility 0s 0.3s;
    overflow-y: auto;
    z-index: 10000;
  }
  .form-popup-bg-one.is-visible-one {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0s;
  }
  .form-container-one {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
      display: flex;
      flex-direction: column;
      width: 100%;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      position:relative;
    padding: 20px 40px;
    color: #fff;
    /* margin-top: -100px; */
  }
  .close-button-one {
    background:none;
    color: black;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 30px;
    right: 10px;
    border: solid 1px #ffb742;
    border-radius: 50%;
    /* border: none; */
  }
  .close-button-one:hover{
      background-color: #ffb742;
  }
  
  .form-control {
      height: 40px;
  }

/* vedio section */
.swiper {
    width: 80%;
    height: 440px;
    background: #212529;
    border-radius: 25px;
  }

  .swiper-slide {
    font-size: 18px;
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 40px 60px;
  }

  .parallax-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 130%;
    height: 100%;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
  }

  