@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab&display=swap');
/********** Template CSS **********/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary: #02bdd5;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
    --text: black;
    --bacground: #091E3E;
    --btext: #091E3E;
}
html {
  scroll-behavior: smooth;
}
small:hover{
  color: #fff;

}

form input{
    color:#000 !important;
}
form textarea{
  color:#000 !important;
}

/*** Utility Classes ***/
.primary_color{
    color: var(--primary) !important;
}
.text_color{
    color: var(--text);
}
.blog_textcolor{
    color: var( --btext);
}
.secondary_color{
    color: var(--light);
}
.primary_background{
  background-color: var(--primary);
}
.primary_background:hover{
    background: var(--light);
}
.secondary_background{
    background: var(--bacground);
}
.primary_border{
    border: 3px solid var(--primary);
}
.primary_font{   /*Generally for Paragraphs */
	font-family: 'Ubuntu', sans-serif;
}
.secondary_font{   /*Generally for Headings */
	font-family: 'Roboto Slab', serif;
}

/*** Utility Classes ***/

.myanchor:hover{
  color:white !important;
}



.hbtn{
    display: none;
}
.wrapper:hover{
    /* display: block; */
}
.wrapper:hover .hbtn{
    display: block;
}
.ourbutton{
    background-color: #02bdd5;
    color: white;
}
.ourbutton:hover{
    background: white !important;
    color: #02bdd5;
    font-weight: bolder;
    border:3px solid #02bdd5;
}
.banner{
    height: 50vh;
}
.aboutbrands{
    width: 100vw;
    overflow: hidden;
}
.more_portfolio{
    width: 18%;
    height:190px;
    margin-right: 10%;
    overflow: hidden;
    float: right;
    background:url('../img/moreportfolio.jpg');
    background-size: contain;
    z-index: 1;
    background-position: center;
}
.brands_button{
    padding: 6%;
    color:black !important;
    background-color: none ;
    position: relative;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
/* .more_portfolio:hover   .brands_button{
    color: #ff560c !important;
} */
.blogbg{
    background: #02bdd5 !important;
}
.blogbg a{
    cursor: pointer;
}
.brands{
    width: 70%;
    float: left;
    overflow: hidden;
}
.blogclosebtn{
  position: absolute;
  border: none;
  background: none;
  top:6.5%;
  right: 3%;
  color: var(--primary);
  float: right;
}

/* Let's Start Working Together start */
.letsbutton{
  background-color: #091E3E;
  color: white;
}
/* Let's Start Working Together end */

/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/* Image Carousel */
.slideshow-container {
    width: 100%;
	height:100vh;
    /* background: #000; */
    position: relative;
    margin: auto;
	overflow: hidden;
}

.mySlides {
  height: 100%;
}
.mySlides img{
	width: 100%;
	height: 100vh;
	background-size:100% 100%;
    background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 45%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: #00008B;
    font-weight: bold;
    font-size: 30px;
    transition: .6s ease;
    border-radius: 0 3px 3px 0;
	z-index: 2;
}

.next {
    right:0;
    border-radius: 3px 3px 3px 3px;
}

.prev {
    border-radius: 3px 3px 3px 3px;
	left:0;
}

.prev:hover,
.next:hover {
    color: #f2f2f2;
	font-weight: bolder;
    background-color: rgba(0, 0, 0, 0.8)
}
.text_slider {
    color: white;
    font-size: 15px;
	font-weight: bolder;
    padding-top: 12px;
  	padding-bottom: 12px;
    position: absolute;
    bottom: 25%;
	margin-left:10%;
	margin-right: 10%;
    width: auto;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6);
	animation:centerme 3s;
	-webkit-animation:centerme 3s;
	animation-fill-mode:forwards;
	-webkit-animation-fill-mode:forwards;
	z-index: 2;
}
.text_slider  h4{
	padding-left: 10px;
	padding-right: 10px;
}
@keyframes centerme  {
	0% {
	   left:0;
	}
	
	100% {
	   left:45%;
	   margin-top:-151px;
	   margin-left:-151px;
	}
 
 }
 @-webkit-keyframes centerme  {
	0% {
	   left:0;
	}
	
	100% {
	   left:51%;
	   margin-left:-151px;
	}
 
 }

.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: rgb(2, 2, 2);
    border-radius: 50%;
    display: inline-block;
    transition: background-color .6s ease;
}

.active1,
.dot:hover {
    background-color: #00008b;
	border: 1px solid black;
}
  /*Image Carousel */


  .move li{
    height: 40vw !important;
  }

/* ububcuasdbcu */


/* more portfolio */
.cell{
    width:24%;
    height: 270px;
    margin: 0 15px;
    overflow: hidden;
    border-radius: 8px;
}
.cell img{
    width:100%;
    height:350px;
    object-fit: cover;
}
/* more portfolio */


/* 3s */
.myblog{
    width:80%;
    height:auto;
    padding: 5%;
    background: lightgrey;
    color:#000;
    position: absolute;
    z-index: 10 !important;
    top:23%;
    left: 10%;
    animation-name: fadeIn;
    -webkit-animation-name: fadeIn; 
    animation-duration: 1.0s;   
    -webkit-animation-duration: 1.0s;
    animation-timing-function: ease-in-out; 
    -webkit-animation-timing-function: ease-in-out;     
    visibility: visible !important; 
}
.myblog h1{
    text-align: center !important;
    padding: 20px;
}
.myblog p{
    text-align: left;
    margin-left: 7%;
    margin-right: 7%;
}
.myblog img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width:40%;
}
.myblog button{
  width: 20%;
  padding: 15px;
  margin: auto;
  text-align: center !important;
  display: flex;
  justify-content: center;
}

/* blogs */


.letlogo{
  width: 35px;
  height: 35px;
  display: inline-block;
  background-image: url("../img/social_icons/icons8-handshake-100\ \(1\).png");
  background-position: center;
  background-size:contain ;
}
.mybutton:hover .letlogo{
  width: 35px;
  height: 35px;
  background:url('../img/social_icons/handshake.png');
  background-position: center;
  background-size:contain ;
}
.imgtext{
      display: inline-block;
      font-size: 1.5rem;
      margin-top: 15px 0;
      /* margin-bottom: -50px !important; */
}


/* 24/7 Service */

.s247box{
    width:100vw;
    height:auto;
    /* margin-bottom: -2.25%; */
    overflow: hidden;
    display: flex;
    flex-direction: row;
}
.s247Left{
   width: 45vw;
   height:70vh;
   /* margin-top: 5%; */
   margin-left: 5%;
   float: left;
   animation-name: fadeIn;
   -webkit-animation-name: fadeIn; 
   animation-duration: 1.5s;   
   -webkit-animation-duration: 1.5s;
   animation-timing-function: ease-in-out; 
   -webkit-animation-timing-function: ease-in-out;  
   overflow: hidden;
}
.s247Right{
   width: 45vw;
   height:75vh;
   /* background: pink; */
   text-align: center;
   /* margin-top: 5%; */
   margin-right: 5%;
   float: right;
   overflow: hidden;
   z-index: 0;
}
.s247Left h1{
  margin-top: 10%;
  font-size: 2.7rem !important;
  color: var(--primary);
  text-align: center !important;
  animation-name: fadeIn;
  -webkit-animation-name: fadeIn; 
  animation-duration: 1.5s;   
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-in-out; 
  -webkit-animation-timing-function: ease-in-out;  
}
.s247Left h2{
    margin-top: 10%;
    font-size: 2rem !important;
    color: var(--primary);
    text-align: center !important;
    animation-name: fadeIn;
    -webkit-animation-name: fadeIn; 
    animation-duration: 1.5s;   
    -webkit-animation-duration: 1.5s;
    animation-timing-function: ease-in-out; 
    -webkit-animation-timing-function: ease-in-out;  
}
.s247Left p{
  margin-top: 7%;
  margin-left: 5%;
  margin-right: 5%;
  text-align: left !important;
  font-size: 1.1rem !important;
  color: var(--text);
  animation-name: fadeIn;
  -webkit-animation-name: fadeIn; 
  animation-duration: 3s;   
  -webkit-animation-duration: 3s;
  animation-timing-function: ease-in-out; 
  -webkit-animation-timing-function: ease-in-out;  
}
/* 24/7 Service */

/* skillbar start */

 .skills{
  width: 100%;
  height:auto;
  display: flex;
  flex-direction: row;
  overflow: hidden;
}
.leftskills{
  width:45%;
  height: auto;
  margin-top: 7%;
  margin-left: 5%;
  padding-bottom: 7%;
  float:left;
  /* background: red; */
  overflow: hidden;
}
.rightskills{
  width:45%;
  height: auto;
  /* padding:7%; */
  padding: 10% 0;
  margin-right: 5%;
  float:right;
  /* background: blue; */
  overflow: hidden;
}
.leftskills p{
  padding:10px;
  font-size: 1.2rem !important;
}
.containercontainer {
height: 300px;
max-width: 500px;
background: #f2f2f2;
margin: 0 auto;
}

.skillbar {
position:relative;
  text-align: center !important;
display:block;
margin-bottom:8px;
width:100%;
background:#fff;
border:2px solid #E9DCC9;
height:12px;
border-radius:5px; 
/* -moz-border-radius:3px; */
/* -webkit-border-radius:3px; */
-webkit-transition:0.4s linear;
-moz-transition:0.4s linear;
-ms-transition:0.4s linear;
-o-transition:0.4s linear;
transition:0.4s linear;
-webkit-transition-property:width, background-color;
-moz-transition-property:width, background-color;
-ms-transition-property:width, background-color;
-o-transition-property:width, background-color;
transition-property:width, background-color;
}

.skillbar-title {
position:absolute;
top:0;
left:0;
  width:10px;
font-weight:bold;
font-size:13px;
color:#ffffff;
background:#6adcfa;
border-radius:5px; 
/* -webkit-border-top-left-radius:3px;
-webkit-border-bottom-left-radius:4px;
-moz-border-radius-topleft:3px;
-moz-border-radius-bottomleft:3px;
border-top-left-radius:3px;
border-bottom-left-radius:3px; */
}

.skillbar-title span {
display:block;
padding:0 20px;
height:35px;
line-height:35px;
border-radius:5px; 
/* -webkit-border-top-left-radius:3px;
-webkit-border-bottom-left-radius:3px;
-moz-border-radius-topleft:3px;
-moz-border-radius-bottomleft:3px;
border-top-left-radius:3px;
border-bottom-left-radius:3px; */
}

.skillbar-bar {
height:8px;
width:0px;
background:#95eeee;
border-radius:5px;
/* -moz-border-radius:3px;
-webkit-border-radius:3px; */ 
}

.skill-bar-percent {
position:absolute;
right:10px;
top:0;
  left:20px;
font-size:11px;
height:35px;
line-height:35px;
color:#ffffff;
color:rgba(0, 0, 0, 0.4);
}

/* skillbar end */


.footer {
  z-index: 10;
}
/* Our Services */
.serviceBX01{
    width:100%;
    height: 92.5vh;
    overflow: hidden;
    background: url('../img/services_imgs/web_development.jpg');
    background-size: 100% 100%;
    background-position: center;
    animation-name: fadeIn;
    -webkit-animation-name: fadeIn; 
    animation-duration: 1.5s;   
    -webkit-animation-duration: 1.5s;
    animation-timing-function: ease-in-out; 
    -webkit-animation-timing-function: ease-in-out;    
    
}
.serviceBX02{
    width:100%;
    height: auto;
    overflow: hidden;
    background: url('../img/services_imgs/web_application_dev.jpg');
    background-size: 100% 100%;
    background-position: center;
    animation-name: fadeIn;
    -webkit-animation-name: fadeIn; 
    animation-duration: 1.5s;   
    -webkit-animation-duration: 1.5s;
    animation-timing-function: ease-in-out; 
    -webkit-animation-timing-function: ease-in-out;    
}
.serviceBX03{
    width:100%;
    height: auto;
    overflow: hidden;
    background: url('../img/services_imgs/digital_marketting.jpg');
    background-size: 100% 100%;
    background-position: center;
    animation-name: fadeIn;
    -webkit-animation-name: fadeIn; 
    animation-duration: 1.5s;   
    -webkit-animation-duration: 1.5s;
    animation-timing-function: ease-in-out; 
    -webkit-animation-timing-function: ease-in-out;    
}
.serviceBX04{
    width:100%;
    height: auto;
    overflow: hidden;
    background: url('../img/services_imgs/software_deployment.jpg');
    background-size: 100% 100%;
    background-position: center;
    animation-name: fadeIn;
    -webkit-animation-name: fadeIn; 
    animation-duration: 1.5s;   
    -webkit-animation-duration: 1.5s;
    animation-timing-function: ease-in-out; 
    -webkit-animation-timing-function: ease-in-out;    
}
.serviceBX05{
    width:100%;
    height: auto;
    overflow: hidden;
    background: url('../img/services_imgs/graphics_design.jpg');
    background-size: 100% 100%;
    background-position: center;
    animation-name: fadeIn;
    -webkit-animation-name: fadeIn; 
    animation-duration: 1.5s;   
    -webkit-animation-duration: 1.5s;
    animation-timing-function: ease-in-out; 
    -webkit-animation-timing-function: ease-in-out;    
}
.serviceBX06{
    width:100%;
    height: auto;
    overflow: hidden;
    background: url('../img/services_imgs/seo.jpg');
    background-size: 100% 100%;
    background-position: center;
    animation-name: fadeIn;
    -webkit-animation-name: fadeIn; 
    animation-duration: 1.5s;   
    -webkit-animation-duration: 1.5s;
    animation-timing-function: ease-in-out; 
    -webkit-animation-timing-function: ease-in-out;    
}
.serviceBX07{
    width:100%;
    height: auto;
    overflow: hidden;
    background: url('../img/services_imgs/IT_Consultancy.jpg');
    background-size: 100% 100%;
    background-position: center;
    animation-name: fadeIn;
    -webkit-animation-name: fadeIn; 
    animation-duration: 1.5s;   
    -webkit-animation-duration: 1.5s;
    animation-timing-function: ease-in-out; 
    -webkit-animation-timing-function: ease-in-out;    
}
.serviceBX08{
    width:100%;
    height: auto;
    overflow: hidden;
    background: url('../img/services_imgs/software_development.jpg');
    background-size: 100% 100%;
    background-position: center;
    animation-name: fadeIn;
    -webkit-animation-name: fadeIn; 
    animation-duration: 1.5s;   
    -webkit-animation-duration: 1.5s;
    animation-timing-function: ease-in-out; 
    -webkit-animation-timing-function: ease-in-out;    
}

.leftservice{
    width:45%;
    height: auto;
    margin: 1% 5% ;
    overflow: hidden;
    float: left;
    /* background: black; */
    color:#fff;
    padding: 5%;
}
.rightservice{
    width:45%;
    height: auto;
    margin: 1% 5% ;
    float: right;
    overflow: hidden;
    /* background: black; */
    color:#fff;
    padding: 5%;
}
.leftservice h3{
    font-size: 1.9rem;
    color:#fff
}
.leftservice p{
    font-size: 1.1rem;
    animation-name: fadeIn;
    -webkit-animation-name: fadeIn; 
    animation-duration: 2.5s;   
    -webkit-animation-duration: 2.5s;
    animation-timing-function: ease-in-out; 
    -webkit-animation-timing-function: ease-in-out; 
}
.leftservice ul li{
    padding: 0.7rem 0;
    animation-name: fadeIn;
    -webkit-animation-name: fadeIn; 
    animation-duration: 2.5s;   
    -webkit-animation-duration: 2.5s;
    animation-timing-function: ease-in-out; 
    -webkit-animation-timing-function: ease-in-out; 
}
.rightservice h3{
    font-size: 1.9rem;
    color:white;
    animation-name: fadeIn;
    -webkit-animation-name: fadeIn; 
    animation-duration: 2.5s;   
    -webkit-animation-duration: 2.5s;
    animation-timing-function: ease-in-out; 
    -webkit-animation-timing-function: ease-in-out; 
}
.rightservice p{
    font-size: 1.1rem;
    animation-name: fadeIn;
    -webkit-animation-name: fadeIn; 
    animation-duration: 2.5s;   
    -webkit-animation-duration: 2.5s;
    animation-timing-function: ease-in-out; 
    -webkit-animation-timing-function: ease-in-out; 
}
.rightservice ul li{
    padding: 0.7rem 0;
    animation-name: fadeIn;
    -webkit-animation-name: fadeIn; 
    animation-duration: 2.5s;   
    -webkit-animation-duration: 2.5s;
    animation-timing-function: ease-in-out; 
    -webkit-animation-timing-function: ease-in-out; 
}
.leftul{
    float: left;
    width: 40%;
    margin-left: 10%;
    /* background: green; */
    display: inline;
}
.rightul{
    width: 40%;
    float: right;
    margin-right:10%;
    display: inline;
}
.servicebtn{
    display: flex;
    justify-content: center;
    padding: 9px 15px ;
    font-size: 1.2rem;
    text-align: center;
    border: 3px solid #02bdd5;
    color: #02bdd5;
    margin: auto;
    background: #fff;
}
.servicebtn:hover{
    background: #02bdd5;
    color: white;
    border:3px solid #000;
}
/* Our Services */



/* /* Home Service */
*
  {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Poppins,'sans-serif;

   }
.container01
   {
    position: relative;
    width: 100% !important;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;    
    padding: 15px;
   }
.container01 .card 
   {
    position: relative;
    height:45% !important;
    background: white;
    color: #000;
    display: flex;
    width: 30%;
    padding: 8%;
    margin:30px 15px;
    cursor: pointer;
    box-shadow: 10px 8px 6px rgba(34, 36, 41, 0.5);
   }
.container01 .card .imgBx
   {
    position: absolute;
    top: 0;
    left: 0;
    width:100% ;
    height:100% ;
    background: #02bdd5;
    z-index: 1;
    display: flex;
    justify-content:center ;
    align-items: center;
    overflow: hidden;
    transition: 0.5s ease-in-out;     
   }
.container01 .card:hover .imgBx
   {
    display: inline-block;
    width:150px ;
    height: 150px;
    left: -75px;
    top: calc(50% - 35%) !important;
    transition: 0.5s ease-in-out;
    background:#02bdd5 !important; 
   }

.container01 .card .imgBx:before
   {
    content: attr(data-text);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    
    text-align: center;
    font-size: 6em;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
   }

.container01 .card .imgBx img
    {
      max-width: 100px;
      transition: 0.5s ease-in-out;
    }

.container01 .card:hover .imgBx img
     {
        max-width: 75px;
     }

.container01 .card .content
     {
       position: absolute;
       right: 0;
       width:calc(100% - 75px);
       height: 100%;
       /* padding: 20px; */
       display: flex;
       justify-content: center;
       align-items: center;      
     }
     .container01 .card .content{
        margin-top: -20%;
        display: inline-block;
     }

.container01 .card .content h3
     {
        margin-bottom:5%;
        font-size: 1.7rem;
     }

.container01 .card .content a
     {
        display: inline-block;
        padding:3px 10px;
        background: #02bdd5;
        text-decoration: none;
        color: #fff;        
     }

@media (max-width:992px)
       {
          .container01
          {
            width: 100px;
            flex-direction: column;
            align-items: center;
          }
           .container01 .card
           {
            width: 400px;            
           }
       } 

@media (max-width:768px)  
     {
        .container01 .card
        {
         max-width: 300px; 
         flex-direction: column; 
         height:auto ;          
        }
        .container01 .card .imgBx
        {
          position: relative;            
        }
        .container01 .card .imgBx,
        .container01 .card:hover .imgBx
        {
           width: 100%;
           height:200px ;
           left: 0;
        }
        .container01 .card .imgBx img,
        .container01 .card:hover .imgBx .img
        {
          max-width: 100px;  
        }
        .container01 .card .content
        {
          position: relative;
          width:100%;

        }
     }
/* /* Home Service */


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


.position-absolute1{
    position: absolute !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--light);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

dialog {
  border: none !important;
  border-radius: calc(5px * var(--ratio));
  box-shadow: 0 0 #0000, 0 0 #0000, 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 1.6rem;
  width: 85vw;
  margin: 5% auto;
  height: 96vh;
}

dialog img {
display: flex;
justify-content: center;
max-width: 75%;
margin: 1rem 0 auto 2rem;
}

/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(9, 30, 62, .7); */
    z-index: 1;
}

.mybg{
  width:100%;
  height: 100%;
  background: rgba(9, 30, 62, .7);
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}
.team-img{
    height: 55vh !important;
    overflow: hidden;
}

/*** Miscellaneous ***/

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 85px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
    cursor:pointer;
}

.link-animated a:hover {
    padding-left: 10px;
}


.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.list-inline {
    padding-left: 0;
    list-style: none;
}
.myportfoliobox{
  height: 38vh;
}
.portfolio-item i {
    transition: .3s;
    transition-delay: .3s;
}
.portfolio-item .portfolio-btn {
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    background: rgba(34, 36, 41, 0.5);
    border: 1px solid transparent;
    border-radius: 4px;
    opacity: 0;
    transition: .5s;
  }
  
  .portfolio-item:hover .portfolio-btn {
    display: flex;
    flex-direction: column;
    opacity: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 30px solid rgba(34, 36, 41, 0.9);
  }
  .portfolio-btn h3{
    color:#02bdd5;
    text-align: center !important;
  }
  .portfolio-btn p{
    text-align: center !important;
  }
  
  .portfolio-item i {
    opacity: 0;
    transition: .3s;
    transition-delay: .3s;
  }
  
  .portfolio-item:hover i {
    opacity: 1;
  }

  /* /skills/ */
.skills{
    width: 100%;
    height:auto;
    display: flex;
    flex-direction: row;
    overflow: hidden;
}
.leftskills{
    width:45%;
    height: auto;
    margin-top: 7%;
    margin-left: 5%;
    padding-bottom: 7%;
    float:left;
    /* background: red; */
    overflow: hidden;
}
.rightskills{
    width:45%;
    height: auto;
    /* padding:7%; */
    padding: 10% 0;
    margin-right: 5%;
    float:right;
    /* background: blue; */
    overflow: hidden;
}
.leftskills p{
    padding:10px;
    font-size: 1.2rem !important;
}
.containercontainer {
  height: 400px;
  max-width: 500px;
  background: #f2f2f2;
  margin: 0 auto;
}

.skillbar {
	position:relative;
    text-align: center !important;
	display:block;
	margin-bottom:8px;
	width:100%;
	background:#fff;
  border:2px solid #E9DCC9;
	height:12px;
  border-radius:5px; 
	/* -moz-border-radius:3px; */
	/* -webkit-border-radius:3px; */
	-webkit-transition:0.4s linear;
	-moz-transition:0.4s linear;
	-ms-transition:0.4s linear;
	-o-transition:0.4s linear;
	transition:0.4s linear;
	-webkit-transition-property:width, background-color;
	-moz-transition-property:width, background-color;
	-ms-transition-property:width, background-color;
	-o-transition-property:width, background-color;
	transition-property:width, background-color;
}

.skillbar-title {
	position:absolute;
	top:0;
	left:0;
    width:10px;
	font-weight:bold;
	font-size:13px;
	color:#ffffff;
	background:#6adcfa;
  border-radius:5px; 
	/* -webkit-border-top-left-radius:3px;
	-webkit-border-bottom-left-radius:4px;
	-moz-border-radius-topleft:3px;
	-moz-border-radius-bottomleft:3px;
	border-top-left-radius:3px;
	border-bottom-left-radius:3px; */
}

.skillbar-title span {
	display:block;
	padding:0 20px;
	height:35px;
	line-height:35px;
  border-radius:5px; 
	/* -webkit-border-top-left-radius:3px;
	-webkit-border-bottom-left-radius:3px;
	-moz-border-radius-topleft:3px;
	-moz-border-radius-bottomleft:3px;
	border-top-left-radius:3px;
	border-bottom-left-radius:3px; */
}

.skillbar-bar {
	height:8px;
	width:0px;
	background:#95eeee;
	border-radius:5px;
	/* -moz-border-radius:3px;
	-webkit-border-radius:3px; */ 
}

.skill-bar-percent {
	position:absolute;
	right:10px;
	top:0;
    left:20px;
	font-size:11px;
	height:35px;
	line-height:35px;
	color:#ffffff;
	color:rgba(0, 0, 0, 0.4);
}
/* /skills/ */

  /* Clients say*/
  .display-4 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
  }
  .testimonial-owl .owl-dots {
    margin-top: 30px;
    text-align: center;
  }
  
  .testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background: #BDBDBF;
    transition: .5s;
  }
  
  .testimonial-carousel .owl-dot.active {
    width: 40px;
    background: #02bdd5;
  }
  
  .testimonial-carousel .owl-item img {
    width: 100px !important;
    height: 100px;
  }
  
  .testimonial-carousel .owl-item .testimonial-item {
    opacity: .5;
  }
  
  .testimonial-carousel .owl-item.center .testimonial-item {
    background: #222429 !important;
    border-radius: 10px;
    opacity: 1;
  }
  
  .testimonial-carousel .owl-item.center .testimonial-item h5 {
    color: #FFAA17;
  }
  
  .testimonial-carousel .owl-item.center .testimonial-item::before {
    position: absolute;
    content: "";
    top: 45px;
    left: -30px;
    right: -30px;
    bottom: 45px;
    background: #5c616f;
    border-radius: 4px;
    z-index: -1;
  }
  /* Clients say*/

  /*About*/
  .h4{
    font-size: 2rem;
  }

  /*About*/


  /*Portfolio*/
  .case-img, .case-content {
    padding: 30px;
  }
  
  .case-timeline {
    position: relative;
  }
  
  .case-timeline-divider {
    display: block;
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 50%;
    z-index: 0;
    width: 2px;
    height: auto;
    margin-left: -1px;
    background-color: lightgrey;
  }
  
  .case-timeline-dot {
    display: block;
    position: absolute;
    top: 75px;
    left: 50%;
    z-index: 1;
    content: " ";
    width: 20px;
    height: 20px;
    margin-left: -10px;
    color:#02bdd5;
    background-color: white;
    border-width: 5px;
    border-style: solid;
    border-radius: 50%;
  }
  
  @media (max-width: 480px) {
    /* .case-timeline-dot {
      display: none;
    } */
    .case-timeline-divider {
      display: none;
    }
  }
  @media (max-width: 400px) {
    /* .case-timeline-dot {
      display: none;
    } */
    .case-timeline-divider {
      display: none;
    }
  }
  @media (max-width: 768px) {
    /* .case-timeline-dot {
      display: none;
    } */
    .case-timeline-divider {
      display: none;
    }
  }
  @media (max-width: 992px) {
    /* .case-timeline-dot {
      display: none;
    } */
    .case-timeline-divider {
      display: none;
    }
  }
  /*Portfolio*/

  /*what's different*/
  .diff{
    width: 100%;
    height:auto;
    position: relative;
    overflow: hidden;
    background-color: gray;
    display: flex;
    flex-direction: row;
}

.leftdif{
    width: 42%;
    height: auto;
    float: left;
    margin-top: 5%;
    margin-bottom: 5%;
    margin-left:5%;
    margin-right: 2%;
}

.leftdif p{
    color:white;
    font-size: 1rem;
}
.rightdif{
    width: 42%;
    height: auto;
    float: right;
    margin-top: 5%;
    margin-bottom: 5%;
    margin-right:5%;
    margin-left: 2%;
}
.rightdif ul li{
    color: white;
}
  /*what's different*/

  /*single faq*/
  .afaq{
    width: 100%;
    display: flex;
    flex-direction: row;
    height:auto ;
    overflow: hidden;
  }
  
  .lfaq{
    width:60%;
    height: auto;
    margin-left:5% ;
    float:left ;
  }
  
  .rfaq{
    width:40%;
    height: 55vh;
    margin-top: 10%;
    margin-bottom: 15%;
    margin-right: 8%;
    background: url('../img/FAQ\ img.jpg'); 
    background-size: 100% 100%;
    background-position: center;
    overflow: hidden;
    background-repeat: no-repeat;
    float:right ;
  
  }
  .wrapper01 {
    width: 80%;
  }
  
  h1 {
    margin-bottom: 20px;
  }
  
  .container11 {
    background-color: white;
    color: black;
    border-radius: 20px;
    box-shadow: 7px 10px 10px 0 rgb(0,0,0,0.5);
    margin: 20px 0;
    border-left: 3px solid #02bdd5;
  }
  
  .question1 {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 20px 80px 20px 20px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  
  .question1::after {
    content: "\002B";
    font-size: 2.2rem;
    position: absolute;
    right: 20px;
    transition: 0.2s;
  }
  
  .question1.active::after {
    transform: rotate(45deg);
  }
  .sicon{
    margin-top: -90px;
    opacity: .6;
  }
  .answercont {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
  }
  
  .answer {
    padding: 0 20px 20px;
    line-height: 1.5rem;
  }
  
  /* .question.active + .answercont {
  } */
  
  /*single faq*/
  /* .handshake{
      width: 40px;
      height: 40px;
      margin-top: 10px !important;
      display: inline-block;
      background: url('../img/icons8-handshake-100\ \(1\).png');
      background-size: contain;
      background-position: center;
  }
  .imgtext{
      display: inline-block;
      position: relative;
      font-size: 1.2rem;
      margin-bottom: -20px !important;
  }
    .handshake:hover{
        background-image:url('../img/icons8-handshake-100.png'); ;
    } */


    /* ourskill start */
    .leftskill{
      text-align: left !important;
    }
   
    /* ourskill end*/

  /*sservices*/
.solutech_service3_area {
    padding:0px 0px 70px;
}
.solutech_service3_area .witr_service_front_3d, .solutech_service3_area .witr_service_back_3d {
    height: 302px;
    border-radius: 5px;
}
.solutech_service3_area .witr_service_3d {
    margin-bottom: 30px;
}

.witr_service_3d {
    perspective: 1000px;
    transition: .5s;
}
.witr_single_service_3d {
    transition: transform .5s;
    transform-style: preserve-3d;
    position: relative;
    text-align: center;
    z-index: 999;
}
.witr_service_position{
    left: 0;
    padding: 40px 20px 40px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.post_service_6 .witr_service_position{
    padding: 0px;
}
.post_service_6 .witr_service_content_3d {
    padding: 40px 20px;
}
.witr_service_front_3d, .witr_service_back_3d {
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    transition:.5s;
}
.witr_service_flip_left:hover .witr_single_service_3d {
    transform: rotateY( -180deg);
}
.witr_service_flip_right:hover .witr_single_service_3d {
    transform: rotateY( 180deg);
}
.witr_service_flip_up:hover .witr_single_service_3d {
    transform: rotateX( 180deg);
}
.witr_service_flip_down:hover .witr_single_service_3d {
    transform: rotateX( -180deg);
}
.witr_service_front_3d {
    z-index: 2;
}
.witr_service_back_3d {
    z-index: 3;
}
/* left */
.witr_service_flip_left .witr_service_back_3d {
    transform: rotateY( -180deg);
}
/* right */
.witr_service_flip_right .witr_service_back_3d {
    transform: rotateY( 180deg);
}
/* up */
.witr_service_flip_up .witr_service_back_3d {
    transform: rotateX( 180deg);
}
/* down */
.witr_service_flip_down .witr_service_back_3d {
    transform: rotateX( -180deg);
}
/* zoom in */
.witr_service_flip_zoomin .witr_service_back_3d{
    opacity: 0;
    transform: scale(.75);
}
.witr_service_flip_zoomin:hover .witr_service_back_3d{
    opacity: 1;
    transform: scale(1);
}
/* zoom out */
.witr_service_flip_zoomout .witr_service_front_3d {
    opacity: 1;
    transform: scale(1);
    z-index:4;
}
.witr_service_flip_zoomout:hover .witr_service_front_3d{
    opacity: 0;
    transform: scale(0);
}
.witr_service_front_3d, .witr_service_back_3d {
    height: 398px;
    width:100%;
}
/* tittle css */
.witr_service_content_3d{
}
.witr_service_icon_3d {
    margin-bottom: 14px;
}
.witr_service_icon_3d i {
    font-size: 35px;
    color:#fff;
    display:inline-block;
}
.witr_service_content_3d h3 {
    margin-bottom: 12px;
    color:#fff;
}
.witr_service_content_3d h3 a{
    color:#fff;
}
.witr_service_content_3d p {
    color:#fff;
}
/* Service Front Face */
.witr_service_front_3d {
    background: #02bdd5;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.witr_service_front_3d:before {
   /* background: rgba(0, 0, 0, 0.7);
    */
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}
.witr_service_back_3d {
    background: #17161a;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.witr_service_back_3d:before {
   /* background: #0c5adb80;
    */
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}
/* Service Service Button */
.witr_service_btn_3d {
    margin-top: 27px;
    z-index: 999;
}
.witr_service_btn_3d a {
    border: 2px solid #fff;
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    font-size: 15px;
    padding: 8px 33px;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.witr_service_btn_3d a:hover {
    background: #fff;
    color: #0c5adb;
}
/*CREATIVE SERVICE2 SECTION 2*/
.witr_service2{
    overflow: hidden;
}
.witr_front_content {
    position:relative;
}
.witr_service2_image{
    position:relative;
}
.witr_service2_image img{
    width: 100%;
}
.witr_service2_box{
    background: #0c5adb;
    padding: 32px 30px 32px;
}
.witr_service2_icon{
    float: left;
    margin-right: 25px;
    margin-top: -17px;
}
.witr_service2_icon i{
    color: #fff;
    font-size: 55px;
    transition: all 0.3s ease 0s;
    display: inline-block;
}
/* witr_custom2_icon */
.witr_custom2_icon{
    float: left;
    margin-right: 25px;
}
.witr_custom2_icon i{
    color: #fff;
    font-size: 50px;
    transition: all 0.3s ease 0s;
    display: inline-block;
}
.witr_titles{
}
.witr_titles h3, .witr_titles h3 a{
    color: #fff;
}
/* all_service2_color */
.all_service2_color {
    text-align: left;
}
.witr_back_service2{
    position: absolute;
    background: #0c5adb94;
    top: -55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    padding: 0 30px;
    transition:.5s;
}
.witr_service2:hover .witr_back_service2{
    top: 50%;
}
.witr_content_service2{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.witr_content_service2 p{
    color:#fff;
}
.witr_content_service2 ul{
}
.witr_content_service2 ul li{
}
.witr_content_service2 ul li a{
    color:#fff;
    transition:.5s;
}
.witr_content_service2 ul li a:hover{
    color:#00247e ;
}
.witr_service2_btnb{
    margin-top:15px;
}
.witr_service2_btnb a{
    color:#fff;
}
/* SERVICE3 SECTION 2*/
.witr_single_service3{
    border:1px solid #ddd;
    transition: .5s;
}
.witr_single_service3:hover{
    border:1px solid #f9f9f9;
}
.witr_service3_thumb{
    position:relative;
}
.witr_service3_thumb img{
    width: 100%;
}
.witr_service3_thposi{
    opacity:0;
    transition: .5s;
}
.witr_single_service3:hover .witr_service3_thposi{
    opacity:1;
}
.witr_service3_box{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: .5s;
    padding: 0 30px;
}
.witr_single_service3:hover .witr_service3_box{
    opacity:0;
}
.witr_service3_icon{
    float: left;
    margin-right: 25px;
}
.witr_service3_icon i{
    font-size: 50px;
    transition: .5s;
    display:inline-block;
}
.witr_service3_content{
    overflow: hidden;
}
.witr_service3_content h3{
    margin-bottom: 20px;
}
.witr_service3_content p{
}
.witr_btn_inner{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}
.witr_single_service3:hover .witr_btn_inner{
    opacity: 1;
}
.witr_service3_btn{
}
.witr_service3_btn a{
    color:#fff;
    background:#0c5adb;
    padding:15px 25px;
}
/* witr_service2_7 Style */
.witr_service2_7{
}
.witr_service2_7{
    box-shadow: 0px 5px 20px 0px #00000014;
    padding: 20px;
    background: #fff;
}
.witr_2service_content {
    display: flex;
    justify-content: space-around;
}
.witr_service7s_image {
    margin-right: 30px;
}
.witr_service7s_image img{
    width:100%;
}
.witr_service2_7 .witr_titles_content h2{
    font-size:16px;
}
.witr_service2_7 .witr_ser_btnb{
    position:relative;
    margin-top: 30px;
}
.witr_service2_7 .witr_ser_btnb a {
    background: #0c5adb;
    padding: 5px 6px 7px 30px;
    color: #fff;
    border-radius: 0px 30px 30px 0;
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    opacity: 0;
    z-index: 99;
    transition:.5s;
}
.witr_service2_7 .witr_ser_btnb a:hover{
    background: #000;
    color: #fff;
}
.witr_service2_7:hover .witr_ser_btnb a{
    transform: scaleX(1);
    opacity: 1;
}
.witr_service2_7 .witr_ser_btnb a i{
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50px 50px 50px 50px;
    background: #fff;
    color: #0c5adb;
    margin-left: 10px;
    display: inline-block;
}
.pluse_btn{
    position: absolute;
    left: 0;
    display: inline-block;
}
.pluse_btn span{
    font-size: 17px;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50px;
    background: #0c5adb;
    display: inline-block;
    transition:.5s;
}
.witr_service2_7:hover .pluse_btn span{
    transform: scale(0);
}
/* witr_service2_9 Style */
.witr_services2_image{
    position:relative;
    transition:.5s;
}
.witr_services2_image::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(180deg, #0c5adb8f 0%, #0000009c 100%);
    transform: scale(0);
    transition:.5s;
}
.witr_services2_image:hover::before {
    transform: scale(1);
}
.wirt_s2_s9 .witr_service2_box {
    position: absolute;
    top: 0;
    width: 100%;
    background: #fff;
    border-top: 3px solid #0c5adb;
    transition:.5s;
}
.wirt_s2_s9:hover .witr_service2_box{
    background: transparent;
    border-color: transparent;
}
.witr_service2_toggle {
    display: flex;
    align-items: center;
}
.witr_service2_icont{
    margin-right: 20px;
}
.witr_service2_icont i{
    font-size:40px;
    color:#0c5adb;
    width:80px;
    height:80px;
    line-height:80px;
    background:#0c5adb3b;
    transition:.5s;
}
.wirt_s2_s9:hover .witr_service2_icont i{
    background:#fff;
}
.wirt_s2_s9 .witr_titles h3, .wirt_s2_s9 .witr_titles h3 a {
    margin: 0;
    font-size: 24px;
    color: #272727;
    transition:.5s;
}
.wirt_s2_s9:hover .witr_content_text2 p, .wirt_s2_s9:hover .witr_content_text2 .witr_service2_btnb a, .wirt_s2_s9:hover .witr_titles h3, .wirt_s2_s9:hover .witr_titles h3 a{
    color: #fff;
}
.witr_content_text2 p{
    margin-top: 17px;
    transition:.5s;
}
.witr_content_text2 .witr_service2_btnb a {
    color: #272727;
    transition:.5s;
}
.mobil-item .slick-dots li button {
    background-color: transparent;
    font-size: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #fff;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 50%;
    padding: 0;
}
.mobil-item .slick-dots li.slick-active button {
    background: #fff;
}
/*=========================== 7.process css ===========================*/
/* PROCESS SECTION */
.witr_process{
    overflow: hidden;
    margin-bottom: 30px;
}
.witr_front_content {
}
.witr_process_image{
}
.witr_process_image img{
    position: relative;
    width: 100%;
}
.witr_process_box{
    position:absolute;
    left: 20px;
    bottom: 20px;
    z-index: 99;
}
.witr_process_icon{
}
.witr_process_icon i{
    color: #fff;
    background:#0c5adb;
    font-size: 20px;
    transition: .5s;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}
.witr_process :hover .witr_process_icon i{
    display: none;
}
.witr_content_service h3{
    color: #fff;
}
.witr_content_service h3 a{
    color: #fff;
}
.witr_back_process{
    background: #0c5adb;
    opacity:0;
    padding: 35px 30px 30px;
    transition: .5s;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 1;
    transform: scale(0);
}
/* .witr_process_icon i:hover .witr_back_process {
    top:0;
}
*/
.witr_process :hover .witr_back_process {
    opacity:0.9;
    transform: scale(1);
}
.witr_content_service {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
}
.witr_content_service p{
    color:#fff;
}
.witr_process_btnb{
    margin-top:15px;
}
.witr_process_btnb a{
    color:#fff;
}
.witr_process_icon2{
}
.witr_process_icon2 i{
    color: #fff;
    background:#0c5adb;
    font-size: 20px;
    transition: .5s;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: none;
    text-align: center;
}
.witr_process :hover .witr_process_icon2 i{
    display: block;
}
/*=========================== 7.team css ===========================*/
.witr_team_section{
    position: relative;
    text-align:center;
}
.witr_team_section img {
    width: auto;
}
.witr_team_section:before {
    content:"";
    position: absolute;
   /* background: #0c5adb6b;
    */
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    transition:.5s;
}
.witr_team_section:hover:before{
    opacity: 1;
}
.team_overlay_icon a{
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    color:#fff;
    top: 50%;
    font-size: 35px;
    opacity: 0;
}
.witr_team_section:hover .team_overlay_icon a{
    opacity: 1;
}
.slick-slide img {
    display: inline-block !important;
}
  /*services*/


/*letdis*/
.letdis{
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .leftld{
    width: 50%;
    height: 50vh;
    overflow: hidden;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .rightld{
    width: 50%;
    height: 50vh;
    overflow: hidden;
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .letdishead{
    text-align: left;
    color: black;
    font-size: 1.4rem;
    padding-left: 10%;
    padding-right: 10%;
  }
  .letdispara{
    text-align: left;
    font-size: 1rem;
    margin: 3%;
    padding-left: 15%;
    padding-right: 15%;
    color: black;
  }
  /*letdis*/


  /*portfolio*/
  .filterDiv{
    display: none; /* Hidden by default */
}
/* The "show" class is added to the filtered elements */
.show {
  display: inline !important;
}
.portfolio-container{
    display: flex;
    flex-direction: row !important;
    width:95vw;
    height: auto;
}
  /*portfolio*/
.start_working{
    width: 100%;
    height: auto;
    background: #0095a9;;
    overflow: hidden;
    margin-bottom: -23px !important;
}
.para1{
    width:80%;
    padding:0 5% !important;
    margin: auto !important;
}
.workbutton{
    margin-top: 2% !important;
    margin-left:40% !important;
}

.timeline {
    position: relative;
    width: 660px;
    margin: 0 auto;
    margin-top: 20px;
    padding: 1em 0;
    list-style-type: none;
  }
  
  .timeline:before {
    position: absolute;
    left: 50%;
    top: 0;
    content: ' ';
    display: block;
    width: 6px;
    height: 100%;
    margin-left: -3px;
    background: rgb(80,80,80);
    background: -moz-linear-gradient(top, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(30,87,153,1)), color-stop(100%,rgba(125,185,232,1)));
    background: -webkit-linear-gradient(top, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%);
    background: -o-linear-gradient(top, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%);
    background: -ms-linear-gradient(top, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%);
    background: linear-gradient(to bottom, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%);
    
    z-index: 5;
  }
  
  .timeline li {
    padding: 1em 0;
  }
  
  .timeline li:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }
  
  .direction-l {
    position: relative;
    width: 300px;
    float: left;
    text-align: right;
  }
  
  .direction-r {
    position: relative;
    width: 300px;
    float: right;
  }
  
  .flag-wrapper {
    position: relative;
    display: inline-block;
    
    text-align: center;
  }
  
  .flag {
    position: relative;
    display: inline;
    background: rgb(248,248,248);
    padding: 6px 10px;
    border-radius: 5px;
    
    font-weight: 600;
    text-align: left;
  }
  
  .direction-l .flag {
    -webkit-box-shadow: -1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
    -moz-box-shadow: -1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
    box-shadow: -1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
  }
  
  .direction-r .flag {
    -webkit-box-shadow: 1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
    -moz-box-shadow: 1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
    box-shadow: 1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
  }
  
  .direction-l .flag:before,
  .direction-r .flag:before {
    position: absolute;
    top: 50%;
    right: -40px;
    content: ' ';
    display: block;
    width: 12px;
    height: 12px;
    margin-top: -10px;
    background: #fff;
    border-radius: 10px;
    border: 4px solid rgb(255,80,80);
    z-index: 10;
  }
  
  .direction-r .flag:before {
    left: -40px;
  }
  
  .direction-l .flag:after {
    content: "";
    position: absolute;
    left: 100%;
    top: 50%;
    height: 0;
    width: 0;
    margin-top: -8px;
    border: solid transparent;
    border-left-color: rgb(248,248,248);
    border-width: 8px;
    pointer-events: none;
  }
  
  .direction-r .flag:after {
    content: "";
    position: absolute;
    right: 100%;
    top: 50%;
    height: 0;
    width: 0;
    margin-top: -8px;
    border: solid transparent;
    border-right-color: rgb(248,248,248);
    border-width: 8px;
    pointer-events: none;
  }
  
  .time-wrapper {
    display: inline;
    
    line-height: 1em;
    font-size: 0.66666em;
    color: rgb(250,80,80);
    vertical-align: middle;
  }
  
  .direction-l .time-wrapper {
    float: left;
  }
  
  .direction-r .time-wrapper {
    float: right;
  }
  
  .time {
    display: inline-block;
    padding: 4px 6px;
    background: rgb(248,248,248);
  }
  
  .desc {
    margin: 1em 0.75em 0 0;
    
    font-size: 0.77777em;
    font-style: italic;
    line-height: 1.5em;
  }
  
  .direction-r .desc {
    margin: 1em 0 0 0.75em;
  }
  
  /* ================ Timeline Media Queries ================ */
  
/* brands start  */
.owl-carousel{
  height: auto;
  width: 100%;
}

.container{
  height: 70%;
  width:100% ;
}
/* brands end  */


/* slider  */
  #slider {
	position: relative;
	width: 100%;
  height: 100vh;
	overflow: hidden;
  background-image: url('../img/banner clip.gif');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
#slider h1{
  font-size: 3.5rem;
}
#slider span{
  color: #02bdd5;
  font-weight: bolder;
}
/* slider */


/* CSS Multiple Whatsapp Chat */
.whatsapp-name {
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 0;
  margin-bottom: 0;
  line-height: 0.5;
}

#whatsapp-chat {
  box-sizing: border-box !important;

  outline: none !important;
  position: fixed;
  width: 350px;
  border-radius: 10px;
  box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
  bottom: 90px;
  right: 30px;
  overflow: hidden;
  z-index: 99;
  animation-name: showchat;
  animation-duration: 1s;
  transform: scale(1);
}
a.blantershow-chat {
  /*   background: #009688; */
  /* background: #fff; */
  color: #404040;
  position: fixed;
  display: flex;
  font-weight: 600;
  justify-content: center;
  z-index: 98;
  bottom: 25px;
  right: 30px;
  font-size: 1rem;
  padding: 10px 10px;
  border-radius: 30px;
  /* box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28); */
}
a.blantershow-chat svg {
  transform: scale(1.2);
  margin: 0 10px 0 0;
}
.header-chat {
  /*   background: linear-gradient(to right top, #6f96f3, #164ed2); */
  background: #009688;
  background: #095e54;
  color: #fff;
  padding: 20px;
}
.header-chat h3 {
  margin: 0 0 10px;
}
.header-chat p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}
.info-avatar {
  position: relative;
}
.info-avatar img {
  border-radius: 100%;
  background-size: contain;
  background-position:center;
  width: 45px;
  height:45px;
  float: left;
  margin: 0 10px 0 0;
}

a.informasi {
  padding: 20px;
  display: block;
  overflow: hidden;
  animation-name: showhide;
  animation-duration: 0.5s;
}
a.informasi:hover {
  background: #f1f1f1;
}
.info-chat span {
  display: block;
}
#get-label,
span.chat-label {
  font-size: 12px;
  color: #888;
}
#get-nama,
span.chat-nama {
  margin: 5px 0 0;
  font-size: 15px;
  font-weight: 700;
  color: #222;
}
#get-label,
#get-nama {
  color: #fff;
}
span.my-number {
  display: none;
}
/* .blanter-msg {
  color: #444;
  padding: 20px;
  font-size: 12.5px;
  text-align: center;
  border-top: 1px solid #ddd;
} */
textarea#chat-input {
    border: none;
    font-family: "Arial", sans-serif;
    width: 100%;
    height: 45px;
    outline: none;
    resize: none;
    padding: 10px;
    font-size: 14px;
}

a#send-it {
  width: 30px;
  font-weight: 700;
  padding: 10px 10px 0;
  background:#eee;
  
  /* svg {
  } */
}
.sendimg{
    fill:#a6a6a6;
    height: 20px;
    width: 20px;
    display: flex;
    justify-content: center;
    margin-left: -4px;
}

.first-msg {
  background: transparent;
  padding: 30px;
  text-align: center;
  /* & span {
    background: #e2e2e2;
    color: #333;
    font-size: 14.2px;
    line-height: 1.7;
    border-radius: 10px;
    padding: 15px 20px;
    display: inline-block;
  } */
}

.start-chat .blanter-msg {
  display: flex;
}
#get-number {
  display: none;
}
a.close-chat {
  position: absolute;
  top: 5px;
  right: 15px;
  color: #fff;
  font-size: 30px;

}

@keyframes ZpjSY{
  0% {
    background-color: rgb(182, 181, 186);
  }
  15% {
    background-color: rgb(17, 17, 17);
  }
  25% {
    background-color: rgb(182, 181, 186);
  }
}

@keyframes hPhMsj {
  15% {
    background-color: rgb(182, 181, 186);
  }
  25% {
    background-color: rgb(17, 17, 17);
  }
  35% {
    background-color: rgb(182, 181, 186);
  }
}

@keyframes iUMejp {
  25% {
    background-color: rgb(182, 181, 186);
  }
  35% {
    background-color: rgb(17, 17, 17);
  }
  45% {
    background-color: rgb(182, 181, 186);
  }
}


@keyframes showhide {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
}
@keyframes showchat {
  from {
    transform: scale(0);
    opacity: 0;
  }
}
@media screen and (max-width: 480px) {
  #whatsapp-chat {
    width: auto;
    left: 5%;
    right: 5%;
    font-size: 80%;
  }
}
.hide {
  display: none;
  animation-name: showhide;
  animation-duration: 0.5s;
  transform: scale(1);
  opacity: 1;
}
.show {
  display: block;
  animation-name: showhide;
  animation-duration: 0.5s;
  transform: scale(1);
  opacity: 1;
}

.whatsapp-message-container {
  display: flex;
  z-index: 1;
}

.whatsapp-message {
  padding: 7px 14px 6px;
  background-color: rgb(255, 255, 255);
  border-radius: 0px 8px 8px;
  position: relative;
  transition: all 0.3s ease 0s;
  opacity: 0;
  transform-origin: center top 0px;
  z-index: 2;
  box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
  margin-top: 4px;
  margin-left: -54px;
  max-width: calc(100% - 66px);
}

.whatsapp-chat-body {
  padding: 20px 20px 20px 10px;
  background:url('../img/whatsapp_default.png');       /*   rgb(230, 221, 212); */
  background-size: cover;
  background-position: contain;
  position: relative;
  height: 250px;
}

.dAbFpq {
  display: flex;
  z-index: 1;
}

.eJJEeC {
  background-color: rgb(255, 255, 255);
  width: 52.5px;
  height: 32px;
  border-radius: 16px;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-align: center;
  align-items: center;
  margin-left: 10px;
  opacity: 0;
  transition: all 0.1s ease 0s;
  z-index: 1;
  box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
}

.hFENyl {
    position: relative;
    display: flex;
}

.ixsrax {
    height: 5px;
    width: 5px;
    margin: 0px 2px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    animation-duration: 1.2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    top: 0px;
    background-color: rgb(158, 157, 162);
    animation-name: ZpjSY;
}

.dRvxoz {

    height: 5px;
    width: 5px;
    margin: 0px 2px;
    background-color: rgb(182, 181, 186);
    border-radius: 50%;
    display: inline-block;
    position: relative;
    animation-duration: 1.2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    top: 0px;
    animation-name: hPhMsj;
}

.kAZgZq {
        padding: 7px 14px 6px;
        background-color: rgb(255, 255, 255);
        border-radius: 0px 8px 8px;
        position: relative;
        transition: all 0.3s ease 0s;
        opacity: 0;
        transform-origin: center top 0px;
        z-index: 2;
        box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
        margin-top: 4px;
        margin-left: -54px;
        max-width: calc(100% - 66px);
    }

.bMIBDo {
    font-size: 13px;
    font-weight: 700;
    line-height: 18px;
    color: rgba(0, 0, 0, 0.4);
}

.iSpIQi {
    font-size: 14px;
    line-height: 19px;
    margin-top: 4px;
    color: rgb(17, 17, 17);
}

.iSpIQi {
    font-size: 14px;
    line-height: 19px;
    margin-top: 4px;
    color: rgb(17, 17, 17);
}

.cqCDVm {
    text-align: right;
    margin-top: 4px;
    font-size: 12px;
    line-height: 16px;
    color: 
    rgba(17, 17, 17, 0.5);
    margin-right: -8px;
    margin-bottom: -4px;
}
/* whatsapp api */



/* article */
.articlebox{
  width:100%;
  height: auto;
  overflow: hidden;
}
.article1{
  width: 27%;
  display: inline-block;
  height: auto;
  float: left;
}
.articleimg{
    width:46%;
    height: 46vh;
    margin-top: 5%;
    /* margin-bottom: 10%; */
    display: inline-block;
    background-image: url('../img/achivement.jpeg');
    background-size: 100% 100%;
    background-position: center;
    overflow: hidden;
    text-align: center;
    z-index:15;
    opacity: 2;
}
.article2{
  width: 27%;
  height: auto;
  display: inline-block;
  float: right;
}
.article3{
    width: 75vw;
    height: auto;
    margin: 10px auto;
    margin-bottom: 2%;
    /* background: gold; */
}

/* article */





.chat_icon{
  position: fixed;
  width: 45px;
  height: 45px;
  left: 37px!important;
  bottom: 50px !important;
  font-size: 1.4rem;
  color: var(--primary);
  cursor: pointer;
  z-index: 1000
}
.chat_box{
  position: fixed;
  left: 75px;
  bottom: 50px;
  width: 25vw;
  background: #dedede;
  height: 80vh;
  transition:  all 0.7s ease-out;
  transform: scaleY(0);
  z-index: 1000;
}
.hidden{
  display: none !important;
}
.chat_box.active{
  transform: scaleY(1);
}
.conv-form-wrapper textarea{
    height: 40px !important;
    background: rgb(189, 226, 238);
    overflow: hidden;
    resize: none;
}
#messages{
  padding-top: 20px;
  padding-left:20px;
  padding-bottom: 20px;
}
div.conv-form-wrapper div.options div.option{
  display: block !important;
}
.mycross{
  position: absolute;
  float: right;
  right: 15px;
  top: 20px;
  cursor: pointer;
  color:#02bdd5;
  z-index: 200;
}
div.conv-form-wrapper div#messages div.message.from{
  padding: 20px;
}

/* Video Carausel */
.carousel {
  width:60vw;
  height: 80vh;
  margin-top: 5%;
  margin-bottom: 40px;
  margin-left: 20%;
  margin-right: 20%;
}

.carousel-cell {
  width: 200px;
  height: 200px;
  margin-right: 10px;
  background: #212121;
  border: 2px solid #02bdd5 ;
  border-radius: 5px;
  counter-increment: carousel-cell;
  vertical-align: middle;
}
.carousel-nav{
  width: 50vw;
  margin-left: 25%;
  margin-right: 25% ;
}
.carousel-cell-video{
   width: 100%;
   height: 100%;
   background-position: center;
   background-size: contain;
}

/* cell number */

.carousel-cell:before {
  display: none;
}
.carousel-main .carousel-cell:before {
    display: none;
  }  
.carousel-nav .carousel-cell {
  height: 80px;
  width: 100px;
}

.carousel-nav .carousel-cell:before {
  font-size: 50px;
  line-height: 80px;
}

.carousel-nav .carousel-cell.is-nav-selected {
  background: #02bdd5;
}
/* Video Carausel */


/* Brand slider start */
body {
	align-items: center;
	justify-content: center;
}

$animationSpeed: 40s;

@keyframes scroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(calc(-250px * 7))}
}

.slider {
	height: 100px;
	margin: auto;
	overflow:hidden;
	position: relative;
	width: auto;
	
	.slide-track {
		animation: scroll $animationSpeed linear infinite;
		display: flex;
		width: calc(250px * 14);
	}
	.slide {
		height: 100px;
		width: 250px;
	}
}

/* Video Testimonial slider start */
.LookForThisCoolWebsite {
  font-size: 2em;
  text-align: center;
  background-color: #000;
}
.LookForThisCoolWebsite a{
color: #FF0000;
}
/* <!-- second slider -->  */
 .carousel {
  padding: .3em .3em 0;
  background: rgb(255, 255, 255);
  text-align: center;
}
.carousel div {
  position: relative;
  margin-bottom: .3em;
  padding-top: 56.25%;
}
.carousel iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.carousel span {
  display: inline-block;
  word-spacing: 1em;  
  /* расстояние между картинками */

   /* прокрутка миниатюр при необходимости */
  overflow: auto;
  white-space: nowrap;
  word-wrap: normal;

}
.carousel a {
  position: relative;
  display: inline-block;
  max-width: 120px;  
  /* максимальная ширина миниатюр */
  width: 25%; 
   /* ширина миниатюр */
  border: 1px solid blue;
    /* рамка вокруг миниатюр */
  opacity: .7;  
  text-decoration: none;
}
.carousel a:visited,
.carousel a:nth-of-type(1) {
  border-color: #02bdd5; 
   /* рамка вокруг миниатюр просмотренных видео */
}
.carousel a:hover { 
  opacity: 1;
}
.carousel a:not(:active):focus {
  pointer-events: none;
}
.carousel a::before {
  content: "";
  position: absolute;
  top: 0em;
  right: 0em;
  bottom: 0em;
  left: 0em;
  background: rgba(0,0,1,.1);
  transition: background 0s 9999999s;
}
.carousel a:nth-of-type(1)::before {
  background: rgba(255,255,254,.7);
}
.carousel span:active a::before {
  background: rgba(0,0,0,0);
  transition: background 0s;
}
.carousel span:active a:active::before {
  background: rgba(255,255,255,.7);
  transition: background 0s;
}
.carousel img {
  max-width: 100%;
  vertical-align: middle;
    /* убрать нижний отступ до рамки под картинкой */
} 

/* Video Testimonial slider end */
 