@import url(starting.css);

/* Center the loader */
#loader {
    position: absolute;
    left: 50%;
    top: 70%;
    z-index: 1;
    width: 60px;
    height: 60px;
    margin: -76px 0 0 -76px;
    border: 6px solid #fffafa;
    border-radius: 50%;
    border-top: 5px solid #3498db;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
  }
  
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  /* Add animation to "page content" */
  .animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s
  }
  
  @-webkit-keyframes animatebottom {
    from { bottom:-100px; opacity:0 } 
    to { bottom:0px; opacity:1 }
  }
  
  @keyframes animatebottom { 
    from{ bottom:-100px; opacity:0 } 
    to{ bottom:0; opacity:1 }
  }
  
  #myDiv {
    display: none;
    text-align: center;
  }
/* --------------------------------------hero section slider
--------------------------------------------------------------------------- */
.full-animated-slide{

    background:  linear-gradient(200deg , #E100FF 30% , #7080ff 80%);
    width: 100%;
    height: 88vh;
    padding-bottom: 5rem;
   border-radius: 0 0 30% 30%;
 
 
}

.full-animated-slide .container .animation-slider-btn{
   position: relative;
  
    
}

.full-animated-slide .container .slider .slide{
   
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;

padding:  0rem 0rem;

}
.full-animated-slide .container .slider .slide .left{
    margin-top: -150px;
}
.full-animated-slide .container .slider .slide .right{
    margin-top: -270px;
}
.full-animated-slide .container .slider .slide .left h1{
    font-family: "Raleway-black";
    font-size: 2.5rem;
    font-weight: 1rem;
  line-height: 1.5;

}
.full-animated-slide .container .slider .slide .left h2{
    font-family: "Raleway-semibold";
    font-size: 1.5rem;
    font-weight: 1rem;
  line-height: 1.5;

}

.full-animated-slide .container .slider .slide .left p{
    
    color: aliceblue;
    line-height: 1.9;
    margin-top: 1.5rem;
    padding-right: 14rem;
}

.full-animated-slide .slide .form a{
    background: #ee6eff;
    color: WHITE;
    border: none;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.8rem;
    padding: 0.5rem 2rem;
    outline: none;
    cursor: pointer;
    transition: all .3s ease-in-out ;
    
}
.full-animated-slide .slide .form a:hover{
    background: #7080ff;
 
}
.slider .slide h6{
    color: white;
    margin-top: 1rem;
    font-size: 1.5rem;
    line-height: 2rem;
}

.full-animated-slide .container .slider .slide .right .downimg img{
    width: 300px;
  
    margin-left: 250px;
}
.full-animated-slide .container .slider .slide .right .upimg img{
    width: 250px;
    height: 300px;

}
.full-animated-slide .container .slider .slide .right .rightimg img{
  height: 220px;
  width: 550px;
  margin-bottom: -20px;

  
}

.full-animated-slide .container .animation-slider-btn .slider-btn .prev-btn {
    border: none;
    outline:none;
  background-color: #6e76b1;
    border-radius:4px;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    -ms-border-radius:4px;
    -o-border-radius:4px;
    cursor:pointer;
   padding: 1rem;
   transition: all 2s ease;
   
}

.full-animated-slide .container .animation-slider-btn .slider-btn .prev-btn:hover{
  
    transform: translateY(-10px); 
}
.full-animated-slide .container .animation-slider-btn .slider-btn .next-btn {
    border: none;
    outline:none;
  background-color: #6e76b1;
    border-radius:4px;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    -ms-border-radius:4px;
    -o-border-radius:4px;
    cursor:pointer;
   padding: 1rem;
   transition: all 2s ease;
   
}
.full-animated-slide .container .animation-slider-btn .slider-btn .next-btn:hover{
  
    transform: translateY(-10px); 
}


.prev-btn{
    position:absolute;
    top:100%;
    left:33rem;
    z-index: 1;
}
.next-btn
{
    position:absolute;
    top:100%;
    right:33rem;
    z-index: 1;
}

.slick-active .left h1{
    animation: up 3s forwards;
}

.slick-active .left h2{
    animation: left-to-right 3s forwards;
}
.slick-active .left .form a{
    animation: fade-in 5s forwards;
}

.slick-active .left p{
    animation: left-to-right 3s forwards;
}

.slick-active .left h6{
    animation: right-to-left 3s forwards;
}

.slick-active .right .downimg img{
    animation: imageinup 3s forwards ;
  z-index: 1;
}
.slick-active .right .upimg img{
    animation: imageupdown 3s forwards ;

}
.slick-active .right .rightimg img{
    animation: up 3s forwards ;

}

@keyframes imageinup{
    from{
        transform: translate3d(100%,0,0);
        visibility: visible;
        opacity: 0;
    }
    to{
        transform: translate3d(0,0,0);
        opacity: 1;

    }
}

@keyframes imageupdown{
    from{
        transform: translate3d(0,0,0);
        visibility: visible;
        opacity: 0;
        z-index: 98;
       order: 1;
    }
    to{
        transform: translate3d(0,100%,0);
        opacity: 1;
       
    }
}


@keyframes imagerotate{
    100%{
        transform: rotate(360deg);
  
}
}

@keyframes up{
    from{
        transform: translate3d(0,100%,0);
        visibility: visible;
        opacity: 0;
      
    }
    to{
        transform: translate3d(0,0,0);
        opacity: 1;
       
    }
}

@keyframes left-to-right{
    from{
        transform: translate3d(-50%,0,0);
      
        opacity: 0;
      
    }
    to{
        transform: translate3d(0,0,0);
        opacity: 1;
       
    }
}

@keyframes right-to-left{
    from{
        transform: translate3d(100%,0,0);
      
        opacity: 0;
      
    }
    to{
        transform: translate3d(0,0,0);
        opacity: 1;
       
    }
}

@keyframes fade-in{
    from{
        
      
        opacity: 0;
      
    }
    to{
  
        opacity: 1;
       
    }
}

    
/* --------------------------------------service area 
--------------------------------------------------------------------------- */
.service {

   
    background-color:rgb(243, 243, 243);
    width: 100%;
    padding-bottom: 5rem;
    position:relative;
}
.service .container .service-heading{
    padding-top: 50px;
    font-family: "Raleway-black";
    font-size: 2.5rem;
    font-weight: 1rem;
  line-height: 1.5;
  text-align: center;
}
.service .container .service-p{
    margin-top: 30px;
    font-family:"Raleway-semibold";
    font-size: 1rem;
    font-weight: 1rem;
  line-height: 1.5;
  text-align: center;
}
.service .container .card-wrap{

margin-top: 50px;
display: flex;
margin-right:2rem;


}

section.service .first-card{
    background:var( --pure);
    text-align: center;
    padding:2rem;
    margin-top: 5rem;
    padding-top:4rem;
    margin-right:2rem;
    position: relative;
    border-radius: 4px;
cursor: pointer;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    transition: all .3s ease-in-out
}
section.service .first-card:hover{
    background-color: #cec6c3 ;  
}
.service .container .card-wrap .first-card img{

    width: 100px;

    position: absolute;
    top:-45px;
    left:50%;
    transform:translateX(-50%);
    -webkit-transform:translateX(-50%);
    -moz-transform:translateX(-50%);
    -ms-transform:translateX(-50%);
    -o-transform:translateX(-50%); 


}

.service .container .card-wrap .first-card h2{
    font-family: "Raleway-bold";
    font-size: 1.3rem;
    margin-bottom:1rem; 



}
.service .container .card-wrap .first-card p{
    line-height: 1.6;
    text-align: justify;
    margin-bottom:1rem;
}
.service .container .card-wrap .first-card a{
  
    padding: 1rem 1rem;
    border-radius: 1rem;
    text-decoration: none;
    border: none;
    background-color: rgb(94, 110, 255) ;
    color:var(  --secondary);
    cursor: pointer;
    font-size: 0.8rem;
    font-family:"Raleway-bold";
   
    margin-right: 0.1rem;
    transition:all .3s ease;
    -webkit-transition:all .3s ease;
    -moz-transition:all .3s ease;
    -ms-transition:all .3s ease;
    -o-transition:all .3s ease;
    
    
    }
    .service .container .card-wrap .first-card a:hover{
    background-color: rgb(192, 197, 248) ;
    }  


   
/* --------------------------------------team-say  area 
--------------------------------------------------------------------------- */



    .inform {
    
       margin-top: 50px;
     
        width: 100%;
        padding-bottom: 5rem;
      
    }
    .inform  .container h1{
        margin-top: 50px;
        margin-bottom: 50px;
        font-family: "Raleway-black";
        font-size: 2.5rem;
        font-weight: 1rem;
      line-height: 1.5;
      text-align: center;

    }
    .inform .inform-wrapper {  
    display: flex;
    justify-content: space-between;
   
        
    }
    .inform .inform-wrapper .inform-left img{
        border-radius: 3rem;
        margin-right: 2rem;
    }
    .inform .inform-wrapper .inform-right h2{
     font-size: 2rem;  
     font-family:"Raleway-extrabold";
     font-weight: 1rem;
     margin-bottom: 20px;
    }
    .inform .inform-wrapper .inform-right p{
        font-size: 1rem;  
        font-family:"Raleway-medium";
        font-weight: 1rem;
        margin-bottom: 20px;
        text-align: justify;
       }
       .inform .inform-wrapper .inform-right .card{
        background:var( --light);
       
box-shadow:0px 20px grey ;
       padding: 1rem;
        padding-top:1rem;
        margin-right:2rem;
        position: relative;
        border-radius: 4px;
    cursor: pointer;
      
        transition: all .3s ease-in-out
       }
       .inform .inform-wrapper .inform-right .card:hover{
        box-shadow: 0rem 0.4rem 1rem rgba(35, 52, 53, 0.25)
       }
       .inform .inform-wrapper .inform-right .team-say{

        margin-top: 50px;
        display: flex;
        margin-right:-2rem;

       }
    
    .inform .inform-wrapper .inform-right .team-say  img{
        width: 20%;
        height: 20%;
        border-radius: 50%;
      margin-right: 1rem;
      margin-bottom: 1rem;
    }
    .inform .inform-wrapper .inform-right .team-say  h4{
      font-family:"Raleway-extrabold";
      margin-right: 1rem;
      
    }
    .inform .inform-wrapper .inform-right .team-say  h5{
        font-family:"Raleway-bold"; 
        margin-top: 0.5rem;
    }
   
/* --------------------------------------process area 
--------------------------------------------------------------------------- */
.process-section {

   
    background-color:rgb(255, 251, 251);
    width: 100%;
    padding-bottom: 5rem;
  
}
.process-section .container h1{

    margin-top: 50px;
    margin-bottom: 50px;
    font-family: "Raleway-extrabold";
    font-size: 2.5rem;
    font-weight: 1rem;
  line-height: 1.5;
  text-align: center;
}
.process-section .container .process-wrapper{
   
    display: flex;
    justify-content: space-around;
align-items: center;
}
.process-section .container .process-wrapper .process{
    margin-right: 1rem;
}
.process-section .container .process-wrapper .process img{
    width: 50%;
    height: 30%;
    border-radius: 50%;
    margin-left: 2rem;
    margin-bottom: 2rem;
transition: all 3s ;
}
.process-section .container .process-wrapper .process img:hover{
    transform: rotate(360deg);
}
.process-section .container .process-wrapper .process h2{
 font-family: "Raleway-bold";
 font-size: 1.5rem;
 font-weight: 1rem;
 margin-bottom: 2rem;

}
.process-section .container .process-wrapper .process p{
    font-family: "Raleway-medium";
   font-size: 1rem;
   font-weight: 1rem;
   text-align: justify;
}
.process-section .container .process-wrapper .process hr{
  border: 10px solid green;
  border-radius: 10px;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
/* --------------------------------------project detail area 
--------------------------------------------------------------------------- */

.project-detail {
    background: -webkit-linear-gradient(
        -45deg,
        rgb(224, 225, 231) 0%,
        rgb(134, 58, 233) 100%
      );
     
      padding-bottom: 5rem;
   
    width: 100%;
 
  
}
.project-detail .container h1{

    padding-top: 50px;
    margin-bottom: 50px;
    font-family: "Raleway-extrabold";
    font-size: 2.5rem;
    font-weight: 1rem;
  line-height: 1.5;
  text-align: center;
}
.project-detail .container .project-wrapper{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.project-detail .container .project-wrapper .project-right img{
    width: 80%;
    height: 50%;
    margin-left: 100px;
   
}

.project-detail .container .project-wrapper .project-left h2{
    font-size: 2rem;
    font-weight: 1rem;
    margin-bottom: 1rem;
    font-family:"Raleway-extrabold" ;
    text-align: justify;
}
.project-detail .container .project-wrapper .project-left p{
    font-size: 1rem;
    font-weight: 1rem;
  text-align: justify;
    font-family:"Raleway-medium" ;
}
.project-detail .container .project-wrapper .project-left .counter-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
  
}
.project-detail .container .project-wrapper .project-left .counter-wrapper .data img{
   width: 50%;
   height: 50%;
   border-radius: 5px;
}
/* --------------------------------------team detail area 
--------------------------------------------------------------------------- */

section.team {
    background: -webkit-linear-gradient(
        45deg,
        rgb(224, 225, 231) 0%,
        rgb(134, 58, 233) 100%
       
      );
     
      padding-bottom: 5rem;
   
    width: 100%;
   
  
}
section.team .container .team-slider .slide{
   margin-top: 100px;
    justify-content: space-between;
    align-items: center;
}
section.team .container h1{

   
    margin-bottom: 20px;
    font-family: "Raleway-extrabold";
    font-size: 1.5rem;
    font-weight: 1rem;
  line-height: 1.5;
  text-align: center;
}
section.team .container h2{
padding-top: 4rem;
   
    margin-bottom: 20px;
    font-family: "Raleway-extrabold";
    font-size: 2.5rem;
    font-weight: 1rem;
  line-height: 1.5;
  text-align: center;
}
section.team .container h3{

   
    margin-bottom: 50px;
    font-family: "Raleway-medium";
    font-size: 1rem;
    font-weight: 1rem;
  line-height: 1.5;
  text-align: center;
}
section.team .container .team-slider .slide .team-images{
  padding-left: 95px;
}
section.team .container .team-slider .slide .team-images img{

width: 70%;
height: 70%;
border-radius: 50%;
transition: all 3s ease;
cursor: pointer;

}
section.team .container .team-slider .slide .team-images img:hover{
    transform: rotate(360deg);
}
section.team .container .sliderss .slider-btnn{
 
    align-items: center;
    justify-content: center;
}

section.team .container .sliderss .buttonn .prev-btnn {
   
    border: none;
    outline:none;
  background-color: #6e76b1;
    border-radius:4px;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    -ms-border-radius:4px;
    -o-border-radius:4px;
    cursor:pointer;
   padding: 1rem;
   transition: all 1s ease;
   
}

section.team .container .sliderss .buttonn .next-btnn {
   
    border: none;
    outline:none;
  background-color: #6e76b1;
    border-radius:4px;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    -ms-border-radius:4px;
    -o-border-radius:4px;
    cursor:pointer;
   padding: 1rem;
   transition: all 1s ease;
   
}
section.team .container .sliderss .buttonn .prev-btnn:hover{
    transform: translateY(-10px);
}
section.team .container .sliderss .buttonn .next-btnn:hover{
    transform: translateY(-10px);
}


section.team .container .sliderss{
    position: relative;
}

.prev-btnn{
    position:absolute;
    top:46%;
    left:-3rem;
    z-index: 1;
   
}
.next-btnn{
    position:absolute;
    top:46%;
    right:-3rem;
    z-index: 1;
}

/* --------------------------------------about-us area 
--------------------------------------------------------------------------- */

section.about-us {
    background-color:var(--light);
     
    padding-bottom: 5rem;
   
    width: 100%;
 
  
}

section.about-us .container h1{

padding: 2rem 0rem;
    font-family: "Raleway-extrabold";
    font-size: 2.5rem;
    font-weight: 1rem;
  line-height: 1.5;
  text-align: center;
}
section.about-us .container .about-us-section{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
section.about-us .container .about-us-section .about-right img{
    width: 90%;
    height: 90%;
    margin-left: 50px;
    margin-top: 50px;
    align-items:center;
}
section.about-us .container .about-us-section .about-left .first img{
    width: 10%;
    height: 10%;
    margin-right: 1rem;
    align-items:center;
}
section.about-us .container .about-us-section .about-left .first{
    display: flex;
    justify-content: space-between;
    align-items:center;
    margin-bottom: 1rem;
}
section.about-us .container .about-us-section .about-left h2{
    font-size: 2rem;
    font-weight: 2rem;
    line-height: 0.5rem;
    font-family: "Raleway-bold";
    padding: 3rem 2rem;

}
section.about-us .container .about-us-section .about-left .first h3{
    font-size: 1rem;
    font-weight: 1rem;

    font-family: "Raleway-semibold";
    
}
.btn{
   
    padding:0.75rem 0.75rem;
    border-radius:4px;
    text-decoration: none;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    -ms-border-radius:4px;
    -o-border-radius:4px;
    line-height:0.8;
    font-size:1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    border:1px solid transparent;
}

.btn-primary {
    background:var(--primary);
    color:var(--heaven);
}
.btn-primary:hover{
    background:var(--heaven);
    color:var(--primary); 
    border:1px solid var(--primary);
}
.btn-secondary{
    background:rgb(94, 110, 255);
    color:var(--heaven); 
}
.btn-secondary:hover{
    background:#aeb8fd;
    color:var(--secondary); 
  
    transform: translateY(-4px);
}
section.about-us .container .btn-wrapper{
    text-align: center;
    margin-top: 2rem;
}

/* --------------------------------------client-say  area 
--------------------------------------------------------------------------- */

section.client-say {
    background-color:var(--light);
     
padding-bottom: 5rem;
   
    width: 100%;
   
  
}

section.client-say .container h1{

padding: 2rem 0rem;
    font-family: "Raleway-extrabold";
    font-size: 2.5rem;
    font-weight: 1rem;
  line-height: 1.5;
  text-align: center;
}
section.client-say .container .button-slider .client-wrapper .client-slide .client-images img{
    width: 50%;
    height: 50%;
    border-radius: 50%;

}
section.client-say .container .button-slider .client-wrapper .client-slide .client-images{
 padding-left: 180px;
}
section.client-say .container .button-slider .client-wrapper .client-slide .client-name h2{
    font-size: 2rem;
    font-weight: 1rem;
    font-family: "Raleway-semibold";
    padding: 2rem 2rem;
}
section.client-say .container .button-slider .client-wrapper .client-slide .client-name h3{
    font-size: 1rem;
    font-weight: 1rem;
    font-family: "Raleway-medium";
    text-align: justify;
   
}

section.client-say .container .button-slider .client-wrapper .client-slide{
    margin-right: 1rem;
    text-align: center;
justify-content: center;
margin-top: 100px;

}

section.client-say .container .button-slider .client-button .prev-button {
    border: none;
    outline:none;
  background-color: #7080ff;
    border-radius:4px;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    -ms-border-radius:4px;
    -o-border-radius:4px;
    cursor:pointer;
   padding: 1rem;
   transition: all 2s ease;
   
}
section.client-say .container .button-slider .client-button .prev-button:hover{
  
    transform: translateY(-10px); 
}
section.client-say .container .button-slider .client-button .next-button {
    border: none;
    outline:none;
  background-color: #7080ff;
    border-radius:4px;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    -ms-border-radius:4px;
    -o-border-radius:4px;
    cursor:pointer;
   padding: 1rem;
   transition: all 2s ease;
   
}
section.client-say .container .button-slider .client-button .next-button:hover{
  
    transform: translateY(-10px); 
}

section.client-say .container .button-slider{
    position: relative;
}

.prev-button{
    position:absolute;
    top:46%;
    left:-3rem;
    z-index: 1;
}
.next-button
{
    position:absolute;
    top:46%;
    right:-3rem;
    z-index: 1;
}


/* --------------------------------------contact-button  area 
--------------------------------------------------------------------------- */

section.contact-with-me {
    background: linear-gradient(
        rgba(35,43,56,0.9),
        rgba(35,43,56,0.9)
    ), url(../images/office1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    
    object-fit: cover;

   
   
   
  
}


section.contact-with-me .container .line h4{

    
padding: 5rem 0rem;
font-family: "Raleway-extrabold";
font-size: 2rem;
font-weight: 1rem;
line-height: 1.5;
text-align: center;
color: var(--pure);
}

section.contact-with-me .container .line h1{

    
    padding: 2rem 0rem;
    font-family: "Raleway-extrabold";
    font-size: 5rem;
    font-weight: 5rem;
    line-height: 1.5;
    text-align: center;
    color: var(--pure);
    }
    section.contact-with-me .container .contact-press{
       text-align: center;
    margin-bottom: 1rem;
    
    }
    section.contact-with-me .container .contact-press .contact-pressed{
       margin-bottom: 100px;
     padding: 1rem;
    border-radius:4px;
    text-decoration: none;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    -ms-border-radius:4px;
    -o-border-radius:4px;
    line-height:0.8;
    font-size:1.2rem;
    cursor: pointer;
    background:rgb(94, 110, 255);
    color:var(--heaven); 
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    border:1px solid transparent; 
    }
    
    section.contact-with-me .container .contact-press .contact-pressed:hover{
        background:#aeb8fd;
        color:var(--secondary); 
      
        transform: translateY(-4px);
    }



/* --------------------------------------footer  area 
--------------------------------------------------------------------------- */

section.footer {
    background: linear-gradient(
        rgba(78, 77, 43, 0.9),
        rgba(78, 43, 65, 0.9)
    ), url(../images/pic.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    object-fit: cover;
     
}

section.footer .container .footer-section{
    display: flex;
    justify-content: space-between;

   
   
}

section.footer .container .footer-section .first-1{
    margin-right: 2rem;
    width: 60%;
padding-top: 2rem;
}

section.footer .container .footer-section .first-1 h1{
    font-size: 1rem;
    font-weight: 1rem;
    font-family: "Raleway-extrabold";
    color: var(--pure);
   padding-top: 2rem;
   padding-left: 5rem;
   padding-bottom: 0.5rem;
   

}
section.footer .container .footer-section .first-1 hr{
    border: 2px solid rgb(167, 247, 167);
    border-radius: 10px;
    margin-bottom: 1rem;
   
  
    

}
section.footer .container .footer-section .first-1 .company-information img{
    width: 100%;
    height: 100%;
    padding: 1rem 0rem;

}
section.footer .container .footer-section .first-1 .company-information p{
    font-size: 1rem;
    font-weight: 1rem;
    font-family: "Raleway-medium";
    color: var(--heaven);
    text-align: justify;
}

section.footer .container .footer-section .first-2{
    padding-top: 2rem;
  
}

section.footer .container .footer-section .first-2 h1{
    font-size: 1rem;
    font-weight: 1rem;
    font-family: "Raleway-extrabold";
    color: var(--pure);
   padding-top: 2rem;
   padding-left: 5rem;
   padding-bottom: 0.5rem;
   

}
section.footer .container .footer-section .first-2 hr{
    border: 2px solid rgb(167, 247, 167);
    border-radius: 10px;
    margin-bottom: 1rem;
    width: 200px;
  
   
  
    

}
section.footer .container .footer-section .first-2 ul {
    list-style-type: none;
}

section.footer .container .footer-section .first-2 ul li{
    padding-top: 1rem;
}
section.footer .container .footer-section .first-2 ul li a {
    padding-top: 2rem;
    color:var(--pure);
    text-decoration: none;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}
section.footer .container .footer-section .first-2 ul li a {
    padding-left: 0.5rem;
    padding-top: 2rem;
    color:var(--pure);
    text-decoration: none;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}
section.footer .container .footer-section .first-2 ul li a:hover{
    color:#aeb8fd;
 
  
    transform: translateY(-4px);
}
section.footer .container .footer-section .first-2 ul li img{
    width: 5%;
}
section.footer .container .social-icons{
    padding: 5rem 5rem;
    text-align: center;
}
section.footer .container .social-icons  a img{
    width: 5%;
    height: 5% ;
    margin-right: 2rem;

}
section.footer  .copyright {
    padding: 0.5rem;
    background-color: #282730;
    text-align: center;
}
section.footer  .copyright p{
    color: var(--heaven);
    font-family: "Raleway-extrabold";
    font-weight: 1rem;
    font-size: 1rem;
}
section.footer  .copyright p  a .span{
    text-decoration: none;
    font-size: 1rem;
    font-weight: 1rem;
    font-family: "Raleway-extrabold";
    color: #232fdf;
}

section.footer .container .footer-section .first-3{
    padding-top: 2rem;
}
section.footer .container .footer-section .first-3 h1{
    font-size: 1rem;
    font-weight: 1rem;
    font-family: "Raleway-extrabold";
    color: var(--pure);
   padding-top: 2rem;
   padding-left: 5rem;
   padding-bottom: 0.5rem;
   

}
section.footer .container .footer-section .first-3 hr{
    border: 2px solid rgb(167, 247, 167);
    border-radius: 10px;
    margin-bottom: 1rem;
   
  
    

}
section.footer .container .footer-section .first-3 ul {
    list-style-type: none;
}
section.footer .container .footer-section .first-3 ul li{
    padding-top: 1rem;
    display: flex;
}

section.footer .container .footer-section .first-3 ul li a {
    margin-top: 2rem;
    padding-left: 0.5rem;
    margin-bottom: 2rem;
  
    color:var(--pure);
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-decoration: none;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}
section.footer .container .footer-section .first-3 ul li a:hover{
    color:#aeb8fd;
 
  
    transform: translateY(-4px);
}
section.footer .container .footer-section .first-3 ul li img{
    width: 13%;
    
}
section.footer .container .footer-section .first-3 ul li p{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 1rem;
    font-weight: 1rem;
    color: var(--light); 
    padding-left: 1rem;
    padding-top: 1rem;
}
.project-detail .container .project-wrapper .project-right img{
    margin-left: 50px;
}
.project-detail .container .project-wrapper .project-left .counter-wrapper{
    margin-left: 100px;
}






.nav-background .mobile-logo{
    padding:1rem;
}
.nav-background .mobile-nav{
    padding:1rem;
}
.nav-background .mobile-nav ul{
    list-style-type: none;
}
.nav-background .mobile-nav ul li{
    margin-bottom:1rem;
}
.nav-background .mobile-nav ul li a{
    text-decoration: none;
    color:var(--secondary);
    font-family: "Raleway-medium";
}
.nav-background .mobile-nav ul li a:hover{
    color:var(--primary);
}
.nav-background .contact, .nav-background .time{
    padding:1rem;
    padding-left:0;
}
.nav-background .contact img, .nav-background .time img{
    margin-right:1rem;
}
.nav-background .contact h5,.nav-background .time h5{
    font-family:"Raleway-bold";
    margin-bottom:0.25rem;
    font-size:1rem;
}
.nav-background .contact h6, .nav-background .contact h6{
    font-size: 0.75rem;
}
.nav-background .cart{
    margin-bottom:2rem;
}
.nav-background .cart a{
    color:var(--secondary);
    text-decoration: none;
    font-family: "Raleway-bold";
}
.nav-background .cart img{
    margin-right:0.75rem;
    width:20px;
    height:20px;
}








/* side panel coding */
.side-panel{
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999999999;

  
   
}
.side-panel a{
    width: 9rem;
    background: #475355;
    color: #cec6c3;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 1rem;
    padding: 1rem;
    transition: all 0.5s linear;
    transform: translateX(-5rem);
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-decoration: none;
}
.side-panel a:hover{
    transform: translateX(0);
}
.side-panel img{
    height: 45%;
    width: 45%;


}

.mobile-call-panel a{
    display: none;
}


/* --------------------------------------media-query
--------------------------------------------------------------------------- */

@media (max-width:1200px){
    .mobile-call-panel{
        display: none;
    }
    .inform .inform-wrapper{
        flex-direction: column;
        align-items: center;
    }



    
}


@media (max-width:992px){
  
    .mobile-call-panel{
        display: none;
    }
    header.upper-header .container{
        flex-direction: column;
    }

    .service .container .card-wrap{
        flex-direction: column;
    }
       
    .process-section .container .process-wrapper{
        display: grid;
        grid-template-columns: 1fr 1fr;
       
    }
    section.footer .container .footer-section{
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    section.client-say .container .button-slider .client-wrapper .client-slide .client-images{
        padding-left: 220px;
       }
       .project-detail .container .project-wrapper{
           flex-direction: column;
        
        
       }
       
       .project-detail .container .project-wrapper .project-left .counter-wrapper{
     
      
           margin: 5rem 1rem;
       }


       .full-animated-slide .container .slider{
           padding-top: 1rem;
       }

       .full-animated-slide .container .slider .slide .left h1{
        font-family: "Raleway-black";
        font-size: 1.5rem;
        font-weight: 1rem;
      line-height: 1.5;
    
    }

    .full-animated-slide .container .slider .slide .left p{
    
        color: aliceblue;
       
       text-align: justify;
       
    }
    
.full-animated-slide .container .slider .slide .right .downimg img{
    width: 250px;
    margin-left: 100px;
}
.full-animated-slide .container .slider .slide .right .upimg img{
    width: 100px;
margin-left:10px;

}
.full-animated-slide .container .slider .slide .right .rightimg img{
  height: 100px;
  width: 200px;
  margin-left:25px;
  
}
.full-animated-slide .container .slider .slide .left{
    margin-top: -30px;
}
.full-animated-slide .container .slider .slide .right{
    margin-top: -30px;
}
}
@media (max-width:768px){
    .mobile-call-panel{
        display: none;
    }

    header.upper-header{
        display: none;
    }
    
    nav.last-header{
        display: none;
    }
    .main-site-wrapper{
        position: relative;
    }
    
.main-site-wrapper .mobile-navbar{
    width: 100%;
    height: 100vh;
    background: #e7f5ff;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
   
   
    transform: translateY(-100%);
    transition: all 0.8s linear;
   
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 99999;

}
.open .mobile-navbar{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
 
  }



.main-site-wrapper .mobile-navbar .back{
    position: absolute;
    top: 1rem;
   right: 3rem;
   width: 4rem;
   height: 3rem;
   z-index: 1;
   cursor: pointer;
}
.main-site-wrapper .mobile-navbar ul{
    margin-top: 5REM;
    list-style-type: none;
    
}
.main-site-wrapper .mobile-navbar ul li{
    
    margin-top: 1rem;

}
.main-site-wrapper .mobile-navbar ul li  img{
    width: 5%;
    height: 5%;
}
.main-site-wrapper .mobile-navbar ul li .dropdown .dropdown-content{
    display: none;
    position: absolute;
    background-color: #f3f3f3;
    min-width: 155px;
    min-height: 100px;
    box-shadow: 0px 8px 16px 0px rgb(0,0,0,0.2);
    z-index: 99;
    cursor: pointer;
    top: -30%;
    right: 0%;
    left: 100%;
  
    border-radius:  0px 30px 30px 30px;

    
}

.main-site-wrapper .mobile-navbar ul hr{
    margin-top: 0.3rem;
 
}
.main-site-wrapper .mobile-navbar ul li a{
    text-decoration: none;
   font-size: 1rem;
 
}

    .mobile-menu-icons{
    display: block;
    position: absolute;
    top: 0.2em;
    right: 2rem;
    
    
    }
    .mobile-menu-icons .menu{
        width: 5rem;
        height: 3rem;
        cursor: pointer;
        z-index: 999;
    }

    .main-site-wrapper .mobile-navbar .down-logo img{
        position: absolute;
        top: 1rem;
       left: 1rem;
     
       z-index: 1;
       cursor: pointer;
        width: 60%;
        height: 7%;
    }


    .main-site-wrapper .mobile-navbar  .mobile-copyright {
        position: absolute;
        bottom: 3rem;
       right: 3rem;
       width: 4rem;
       height: 3rem;
       z-index: 1;
       cursor: pointer;
        width: 80%;
        height: 8%;
        padding: 0.5rem;
        background-color: #848882;
        text-align: center;
    }
    .main-site-wrapper .mobile-navbar   .mobile-copyright p{
        color: var(--heaven);
        font-family: "Raleway-extrabold";
        font-weight: 1rem;
        font-size: 1rem;
    }
    .main-site-wrapper .mobile-navbar    .mobile-copyright p  a .span{
        text-decoration: none;
        font-size: 1rem;
        font-weight: 1rem;
        font-family: "Raleway-extrabold";
        color: #232fdf;


    }
    
  
  /* The container <div> - needed to position the dropdown content */
  .main-site-wrapper .mobile-navbar .dropdown {
    position: relative;
    display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .main-site-wrapper .mobile-navbar .dropdown  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .main-site-wrapper .mobile-navbar .dropdown  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  /* Change color of dropdown links on hover */
  .main-site-wrapper .mobile-navbar .dropdown .dropdown-content a:hover {background-color: #f1f1f1}
  
  /* Show the dropdown menu on hover */
  .main-site-wrapper .mobile-navbar  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* Change the background color of the dropdown button when the dropdown content is shown */
  .main-site-wrapper .mobile-navbar .dropdown:hover .dropbtn {
    background-color: #3e8e41;
}

    header.header1 .container .second-header-right{
        display: none;
    }
   

    header.header1 .second-header-left .logo img{
        margin-left: 1rem;
      }







      
      .full-animated-slide .container .slider{
        padding-top: 1rem;
    }

    .full-animated-slide .container .slider .slide .left h1{
     font-family: "Raleway-black";
     font-size: 1rem;
     font-weight: 1rem;
   line-height: 1.5;
 
 }

 .full-animated-slide .container .slider .slide .left p{
 
     color: aliceblue;
    
  font-family: 0.2rem;
    
 }
 
.full-animated-slide .container .slider .slide .right .downimg img{
 width: 250px;
 margin-left: 100px;
}
.full-animated-slide .container .slider .slide .right .upimg img{
 width: 100px;
margin-left:10px;

}
.full-animated-slide .container .slider .slide .right .rightimg img{
height: 100px;
width: 200px;
margin-left:25px;

}

section.about-us .container .about-us-section{
    flex-direction: column;
}

section.footer .container .footer-section{
    display: flex;
    flex-direction: column;
} 

section.contact-with-me .container .line h1{

    
    padding: 2rem 0rem;
    font-family: "Raleway-extrabold";
    font-size: 4rem;
    font-weight: 5rem;
    line-height: 1.5;
    text-align: center;
    color: var(--pure);
    }

}





@media (max-width:576px){



    
  
section.team .container .sliderss{
    position: relative;
}

.prev-btnn{
    position:absolute;
    top:46%;
    left:1rem;
    z-index: 1;
}
.next-btnn{
    position:absolute;
    top:46%;
    right:1rem;
    z-index: 1;
}
    
section.client-say .container .button-slider{
    position: relative;
}

.prev-button{
    position:absolute;
    top:46%;
    left:3rem;
    z-index: 1;
}
.next-button
{
    position:absolute;
    top:46%;
    right:2rem;
    z-index: 1;
}

    .inform .inform-wrapper .inform-left img{
        border-radius: 3rem;
      width: 80%;
      margin-left: 2rem;
      
    }


 .inform .inform-wrapper .inform-right h2{
     font-size: 2rem;  
     font-family:"Raleway-extrabold";
     font-weight: 1rem;
     margin-bottom: 20px;
     padding-left: 1rem;
    }
    .inform .inform-wrapper .inform-right p{
        font-size: 1rem;  
        font-family:"Raleway-medium";
        font-weight: 1rem;
        margin-bottom: 20px;
        text-align: justify;
       }


    .full-animated-slide .container .slider .slide{
        padding-left: 1rem;
    }
    .full-animated-slide .container .slider{
        padding-top: 1rem;
    }

    .full-animated-slide .container .slider .slide .left h1{
     font-family: "Raleway-black";
     font-size: 1rem;
     font-weight: 1rem;
   line-height: 1.5;
 
 }

 .full-animated-slide .container .slider .slide .left p{
 
     color: aliceblue;
    

    
 }
 
.full-animated-slide .container .slider .slide .right .downimg img{
 width: 170px;
 margin-left: 50px;
}
.full-animated-slide .container .slider .slide .right .upimg img{
 width: 100px;
margin-left:10px;

}
.full-animated-slide .container .slider .slide .right .rightimg img{
height: 50px;
width: 100px;
margin-left:25px;

}

section.contact-with-me .container .line h1{

    
    padding: 2rem 0rem;
    font-family: "Raleway-extrabold";
    font-size: 2rem;
    font-weight: 5rem;
    line-height: 1.5;
    text-align: center;
    color: var(--pure);
    }

section.footer .container .footer-section .first-1{
  
    width: 100%;
padding-top: 2rem;
}

section.about-us .container .about-us-section .about-right img{
    width: 80%;
    margin-bottom: 2rem;
    padding-right: 1.6rem;

}


section.service .first-card{
    background:var( --pure);
    text-align: center;
 
    margin-top: 5rem;
    padding-top:4rem;
margin-left: 1.5rem;
    margin-right:0rem;
    position: relative;
    border-radius: 4px;
cursor: pointer;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    transition: all .3s ease-in-out
}
section.service .first-card:hover{
    background-color: #cec6c3 ;  
}

   section.footer .container .social-icons{
       display: flex;
       justify-content: center;
       align-items: center;
   }
   section.footer .container .social-icons  a img{
    width: 70%;
    height: 70% ;
    margin-right: 2rem;

}
section.team .container .team-slider .slide .team-images{
    padding-left: 110px;
  }
  section.team .container .team-slider .slide .team-images img{

    width: 65%;
    height: 65%;
    border-radius: 50%;
    transition: all 3s ease;
    cursor: pointer;
    
    }

.inform .inform-wrapper .inform-right p{
    font-size: 1rem; 
    padding: 1rem 1rem; 
    font-family:"Raleway-medium";
    font-weight: 1rem;
    margin-bottom: 20px;
    text-align: justify;
   }
   .inform .inform-wrapper .inform-right .card{
   margin-left: 1rem;
   }
   
.project-detail .container .project-wrapper .project-left h2{
    font-size: 1rem;  
    font-family:"Raleway-extrabold";
    font-weight: 1rem;
    margin-bottom: 20px;
    margin-right: 1rem;
    padding-left:1rem;
}
.project-detail .container .project-wrapper .project-left h4{
    font-size: 1rem;
    font-weight: 1rem;
    margin-right: 1rem;
    padding-left:1rem;
  text-align: justify;
    font-family:"Raleway-medium" ;
}


.project-detail .container .project-wrapper .project-left .counter-wrapper .data p{
    font-size: 0.6rem;
}

.process-section .container .process-wrapper .process h2{
    font-family: "Raleway-bold";
    padding-left: 1rem;
    font-size: 1.5rem;
    font-weight: 1rem;
    margin-bottom: 2rem;
   
   }
   .process-section .container .process-wrapper .process p{
    padding-left: 1rem;
       font-family: "Raleway-medium";
      font-size: 1rem;
      font-weight: 1rem;
      text-align: justify;
   }
   section.client-say .container .button-slider .client-wrapper .client-slide .client-name h3{
    font-size: 1rem;
    padding: 1rem 1rem;
    font-weight: 1rem;
    font-family: "Raleway-medium";
    text-align: justify;
   
}

section.footer .container .footer-section .first-2{
    padding-top: 2rem;
    padding: 1rem 1rem;
  
}

section.footer .container .footer-section .first-3{
    padding-top: 2rem;
    padding: 1rem 1rem;
}

section.footer .container .footer-section .first-1 h1{
    font-size: 2rem;
    font-weight: 1rem;
    font-family: "Raleway-extrabold";
    color: var(--pure);
   padding-top: 2rem;
   padding-left: 8rem;
   padding-bottom: 0.5rem;
   

}

section.footer .container .footer-section .first-2 h1{
    font-size: 2rem;
    font-weight: 1rem;
    font-family: "Raleway-extrabold";
    color: var(--pure);
   padding-top: 2rem;
   padding-left: 7rem;
   padding-bottom: 0.5rem;
   

}
section.footer .container .footer-section .first-2 hr{
    border: 2px solid rgb(167, 247, 167);
    border-radius: 10px;
    margin-bottom: 1rem;
    width: 300px;
  
   
  
    

}
section.client-say .container .button-slider .client-wrapper .client-slide .client-images{
    padding-left: 90px;
   }
section.client-say .container .button-slider .client-wrapper .client-slide .client-images img{
    width: 75%;
    height: 75%;
    border-radius: 50%;

}

.full-animated-slide{

    background:  linear-gradient(200deg , #E100FF 30% , #7080ff 80%);
    width: 100%;
    height: 35vh;
    padding-bottom: 5rem;
   border-radius: 10% 10% 10% 10%;
 
 
}

.full-animated-slide .container .slider .slide{
   
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    
    padding:  0rem 0rem;
    
    }
    .full-animated-slide .container .slider .slide .left{
        margin-top: 10px;
    }
    .full-animated-slide .container .slider .slide .right{
        margin-top: -150px;
    }
    .full-animated-slide .container .slider .slide .left h1{
        font-family: "Raleway-black";
        font-size: 0.9rem;
        font-weight: 0.5rem;
      line-height: 1;
     
    
    }
    .full-animated-slide .container .slider .slide .left h2{
        font-family: "Raleway-semibold";
        margin-top: 0.5rem;
        font-size: 0.9rem;
        font-weight: 0.7rem;
      line-height: 1;
      margin-bottom: 0.5rem;
    
    }
    .full-animated-slide .container .slider .slide .left p{
        
        color: rgb(47, 136, 214);
        line-height: 0.5rem;
        margin-top: 1.5rem;
        font-size: 0.5rem;
        padding-right: 14rem;
    }
    
    
    .slider .slide h6{
        color: white;
        margin-top: 0.5rem;
        font-size: 0.5rem;
        font-weight: 1rem;
        line-height: 1rem;
    }
    
    .full-animated-slide .container .slider .slide .right .downimg img{
        width: 130px;
        margin-left: 75px;
      
    }
    .full-animated-slide .container .slider .slide .right .upimg img{
        width: 53px;
        height: 130px;
        margin-left: 23px;
    
    
    }
    .full-animated-slide .container .slider .slide .right .rightimg img{
      height: 50px;
      width: 180px;
      margin-right: 30px;
      margin-bottom: -20px;
    
      
    }

    .side-panel{
        display: none;
    }


/* mobile call panel coding */
.mobile-call-panel{
    position: fixed;
    top:40%;
  
   
    


    z-index: 9999999999;

  
   
}

.mobile-call-panel a{
   margin: 0.5rem;
    text-align: center;
    width: 15%;
    height: 15%;
    border-radius: 50%;
    background: #2aca37;
    color: #f1edeb;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    padding: 1rem;
    transition: all 0.5s linear;
  
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-decoration: none;
}
.mobile-call-panel  .first{
    margin: 0.5rem;
     text-align: center;
     width: 15%;
     height: 15%;
     border-radius: 50%;
     background: #1c3952;
     color: #f1edeb;
     display: flex;
     justify-content: center;
     align-items: center;
     font-size: 1rem;
     padding: 1rem;
     transition: all 0.5s linear;
   
     font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
     text-decoration: none;
 }

.mobile-call-panel img{
    height: 100%;
    width:100%;


}
 
  /* Add animation to "page content" */
  .animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s
  }
  
/* Center the loader */
#loader {
    position: absolute;
    left: 60%;
    top: 30%;
    z-index: 1;
    width: 60px;
    height: 60px;
    margin: -76px 0 0 -76px;
    border: 6px solid #fff8f8;
    border-radius: 50%;
    border-top: 5px solid #3498db;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
  }
  
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
 
}
