@charset "UTF-8";

/*
Theme Name: Jtech
Theme URI: https://wordpress.org/themes/twentytwentyone/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: Twenty Twenty-One is a blank canvas for your ideas and it makes the block editor your best brush. With new block patterns, which allow you to create a beautiful layout in a matter of seconds, this theme’s soft colors and eye-catching — yet timeless — design will let your work shine. Take it for a spin! See how Twenty Twenty-One elevates your portfolio, business website, or personal blog.
Requires at least: 5.3
Tested up to: 6.3
Requires PHP: 5.6
Version: 1.9
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyone
Tags: one-column, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready

Twenty Twenty-One WordPress Theme, (C) 2020 WordPress.org
Twenty Twenty-One is distributed under the terms of the GNU GPL.
*/

/**
 * SETTINGS
 * File-header..........The file header for the themes style.css file.
 * Fonts................Any font files, if the project needs specific fonts.
 * Global...............Project-specific, globally available variables.
 *
 * TOOLS
 * Functions............Global functions.
 * Mixins...............Global mixins.
 *
 * GENERIC
 * Normalize.css........Normalise browser defaults.
 * Breakpoints..........Mixins and variables for responsive styles
 * Vertical-margins.....Vertical spacing for the main components.
 * Reset................Reset specific elements to make them easier to style in other contexts.
 * Clearings............Clearings for the main components.
 *
 * ELEMENTS
 * Blockquote...........Default blockquote.
 * Forms................Element-level form styling.
 * Headings.............H1–H6
 * Links................Default links.
 * Lists................Default lists.
 * Media................Images, Figure, Figcaption, Embed, iFrame, Objects, Video.
 *
 * BLOCKS
 * Audio................Specific styles for the audio block.
 * Button...............Specific styles for the button block.
 * Code.................Specific styles for the code block.
 * Columns..............Specific styles for the columns block.
 * Cover................Specific styles for the cover block.
 * File.................Specific styles for the file block.
 * Gallery..............Specific styles for the gallery block.
 * Group................Specific styles for the group block.
 * Heading..............Specific styles for the heading block.
 * Image................Specific styles for the image block.
 * Latest comments......Specific styles for the latest comments block.
 * Latest posts.........Specific styles for the latest posts block.
 * Legacy...............Specific styles for the legacy gallery.
 * List.................Specific styles for the list block.
 * Media text...........Specific styles for the media and text block.
 * Navigation...........Specific styles for the navigation block.
 * Paragraph............Specific styles for the paragraph block.
 * Pullquote............Specific styles for the pullquote block.
 * Quote................Specific styles for the quote block.
 * Search...............Specific styles for the search block.
 * Separator............Specific styles for the separator block.
 * Table................Specific styles for the table block.
 * Verse................Specific styles for the verse block.
 * Video................Specific styles for the video block.
 * Utilities............Block alignments.
 *
 * COMPONENTS
 * Header...............Header styles.
 * Footer...............Footer styles.
 * Comments.............Comment styles.
 * Archives.............Archive styles.
 * 404..................404 styles.
 * Search...............Search styles.
 * Navigation...........Navigation styles.
 * Footer Navigation....Footer Navigation styles.
 * Pagination...........Pagination styles.
 * Single...............Single page and post styles.
 * Posts and pages......Misc, sticky post styles.
 * Entry................Entry, author biography.
 * Widget...............Widget styles.
 * Editor...............Editor styles.
 *
 * UTILITIES
 * A11y.................Screen reader text, prefers reduced motion etc.
 * Color Palette........Classes for the color palette colors.
 * Editor Font Sizes....Editor Font Sizes.
 * Measure..............The width of a line of text, in characters.
 */

/* Categories 01 to 03 are the basics. */

/* Variables */


 *{
  margin:0;
  padding:0;
 }

 body{
    box-sizing:border-box;
    font-family: 'Roboto', sans-serif!important;
 }

 :root {
  --lightblue:#6198E4;
  --blue:#004CB6;
}

img{
  width:100%;
}


.tech-input label.error {
    color: red;
    font-size: 12px;
    letter-spacing: 0.5px;
    padding-top: 5px;
    font-weight: 400;
}


  .slide {
    position: relative;
  }
  .slide .slide__img {
    width: 100%;
    height:800px;
    overflow: hidden;
  }

  .slide .slide__img img {
    max-width: 100%;
    width:100%;
    height:100%;
    opacity: 1 !important;
    animation-duration: 3s;
    transition: all 1s ease;
    object-fit: cover;
  }
  .slide .slide__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .slide .slide__content.slide__content__left {
    left: 15%;
    transform: translate(-15%, -50%);
  }
  .slide .slide__content.slide__content__right {
    /* right: 50%; */
    left: 50%;
    transform: translate(-50%, -50%);
}
  .slide .slide__content--headings {
    color: #fff;
  }
  .slide .slide__content--headings h2 {
    font-size: 4.5rem;
    margin: 10px 0;
  }
  .slide .slide__content--headings .animated {
    transition: all 0.5s ease;
  }
  .slide .slide__content--headings .top-title {
    font-size: 2.5rem;
  }
  .slide .slide__content--headings .title {
    font-size: 3.5rem;
  }
  .slide .slide__content--headings .button-custom {
    text-decoration: none;
    color: #333;
    padding: 1.2rem 2.5rem;
    font-size: 1.5rem;
  }
  
  .slider [data-animation-in] {
    opacity: 0;
    -webkit-animation-duration: 1.5s;
            animation-duration: 1.5s;
    transition: opacity 0.5s ease 0.3s;
  }
  

  
  /* /////////// IMAGE ZOOM /////////// */

  @keyframes zoomInImage {
    from {
      transform: scale3d(1, 1, 1);
    }
    to {
      transform: scale3d(1.1, 1.1, 1.1);
    }
  }
  .zoomInImage {
      animation-name: zoomInImage;
  }

  
  @keyframes zoomOutImage {
    from {
      transform: scale3d(1.1, 1.1, 1.1);
    }
    to {
      transform: scale3d(1, 1, 1);
    }
  }
  .zoomOutImage {
      animation-name: zoomOutImage;
  }
 

  
  @keyframes stroke {
    52% {
      transform: rotate(-180deg);
      stroke-dashoffset: 0;
    }
    52.1% {
      transform: rotate(-360deg);
      stroke-dashoffset: 0;
    }
    100% {
      transform: rotate(-180deg);
      stroke-dashoffset: 126;
    }
  }

  @keyframes arrow {
    0%, 100% {
      transform: translateX(0);
      opacity: 1;
    }
    23% {
      transform: translateX(17px);
      opacity: 1;
    }
    24%, 80% {
      transform: translateX(-22px);
      opacity: 0;
    }
    81% {
      opacity: 1;
      transform: translateX(-22px);
    }
  }

  @keyframes arrowUp {
    0%, 100% {
      transform: rotate(-40deg) scaleX(1);
    }
    20%, 80% {
      transform: rotate(0deg) scaleX(0.1);
    }
  }

  @keyframes arrowDown {
    0%, 100% {
      transform: rotate(40deg) scaleX(1);
    }
    20%, 80% {
      transform: rotate(0deg) scaleX(0.1);
    }
  }


  .banner__slider{
    position: relative;
  }

  .arrow.slick-nav.prev-arrow.slick-arrow {
    position: absolute;
    top: 50%;
    left:4%;
    border-radius: 50%;
    transform:translateY(-50%);
    border: 1px solid white;
    z-index: 1;
    width: 60px;
    height: 60px;
    font-size: 24px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.arrow.slick-nav.next-arrow.slick-arrow{
    position: absolute;
    top: 50%;
    right:4%;
    border-radius: 50%;
     transform:translateY(-50%);
    border: 1px solid white;
    z-index: 1;
    width: 60px;
    height: 60px;
    font-size: 24px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.bg-banner-shape{
    position: absolute;
    bottom: 6px;
    left: 0%;
    width: 100%;
}

.bg-why-us{
  padding:70px 0px 120px 0px;
  position: relative;
}
.cube-shape{
    position: absolute;
    top: -27%;
    right: 2%;
    width: 10%;
    animation:up 2s linear infinite;
}
.cube-shape1{
  position: absolute;
  bottom: 0%;
  left: 2%;
  width: 5%;
  animation: up 2s linear infinite;
}
.bg-why-us .row{
  align-items:center;
  /*flex-direction: row-reverse;*/
}
.why-image {
  width: 85%;
  margin: auto;
  /* box-shadow:0px 3px 16px 0px rgba(0,0,0,.05); */
  box-shadow: 0 10px 80px rgb(54 65 90 / 10%);
  position: relative;
}
.why-info h4{
  font-size: 16px;
  font-weight: 500;
  background-color: #6198e4;
  text-transform: capitalize;
  padding: 5px 16px;
  display: inline-block;
  color: white;
  letter-spacing: 0.5px;
  border-left: 3px solid black;
  margin-bottom:25px;
}
.why-info h2{
  font-size: 34px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
}
.why-info p{
  line-height: 1.8;
  font-size: 16px;
  font-weight: 400;
  /*text-align:justify;*/
}
.why-image:before{
  content: "";
  position: absolute;
  top: -11%;
  left: -8%;
  width: 30%;
  height: 30%;
  background-image: url(./assets/images/about-img-shape.png);
  background-repeat: no-repeat;
  z-index: -1;
  animation: up 2s linear infinite;
}

@keyframes scale{
  0%,100%{
    transform:scale(0.8);
  }
  50%{
    transform:scale(1);
  }
}

@keyframes up{
  0%,100%{
    transform:translateY(0);
  }
  50%{
    transform:translateY(-10px);
  }
}

.why-image:after{
  content: "";
  position: absolute;
  bottom: -15%;
  right: -20%;
  width: 30%;
  height: 30%;
  background-image: url(./assets/images/why-shape.png);
  background-repeat: no-repeat;
  z-index: -1;
  animation: up 2s linear infinite;
  display:none;
}

.bg-service-section{
  padding:70px 0px;
  background-image:url(https://demo.rstheme.com/wordpress/bizdesk/wp-content/uploads/2023/07/service-bg.jpg);
}
.bg-how-we-work .heading-title{
  margin-bottom:50px;
}
.heading-title{
  text-align:center;
  margin-bottom:50px;
}
.heading-title h2{
  text-transform: capitalize;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.heading-title h5{
  font-size: 16px;
  font-weight: 500;
  background-color: #6198e4;
  text-transform: capitalize;
  padding: 5px 16px;
  display: inline-block;
  color: white;
  letter-spacing: 0.5px;
  border-left: 3px solid black;
  margin-bottom: 20px;
}
.service-content{
   padding:60px 20px 40px 20px;
}
.service-content h3 a{
    font-size:20px;
    font-weight:600;
    text-transform:capitalize;
    letter-spacing:0.5px;
    margin-bottom:20px;
    text-decoration:none;
    color:black;
}
.service-icon {
  width: 80px;
  height: 80px;
  padding: 12px;
  /* background-color: #6198e42e; */
  background-color:white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -15%;
  left: 5%;
  box-shadow:0px 10px 18px 0px rgba(0, 36.99999999999995, 89, 0.04);
  transition:all 0.5s ease;
  transform: rotateY(0deg);
}
.service-icon img{
    transition:all 0.5s ease;
}

.service-main-box:hover .service-icon img{
    transform: rotateY(360deg);
}
.service-image{
  position: relative;
}
.service-image .iner-img{
  border-radius:8px 8px 0px 0px;
  height:250px;
  object-fit:cover;
  transition:all 0.5s ease;
}
.service-main-box{
  box-shadow:0px 10px 18px 0px rgba(0, 36.99999999999995, 89, 0.04);
  margin-bottom:50px;
  position: relative;
  overflow:hidden;
}
.service-content p{
  /*text-align:justify;*/
  line-height:1.8;
  display: block;
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.service-content button{
  border:none;
  background-color:transparent;
}
.service-content button a{
  text-transform:capitalize;
  font-weight:500;
  color:black;
  font-size:17px;
  text-decoration:none;
  display: block;
}
.service-content button a i{
  font-size:14px;
  margin-left:4px;
}
.service-shape{
  position: absolute;
  bottom:0%;
  right:-2%;
  width:50%;
}

.service-1{
  position: absolute;
}

.service-main-box:hover .service-shape .service-2{
  display:block;
}

.service-main-box:hover .service-shape .service-1{
  display:none;
}

.bg-team-section{
  padding:70px 0px;
}

.team-inner .content{
  background: var(--lightblue);
  bottom: -130px;
  box-shadow: 1px 20px 30px rgba(0,0,0,.07);
  display: block;
  margin: 0 auto;
  opacity: 0;
  padding: 40px 25px 30px 25px;
  position: absolute;
  text-align: center;
  -webkit-transform: translate(5%);
  transform: translate(5%);
  transition: .6s;
  width: 90%;
  color: white;
}
.team-box:hover .content{
  border-radius: 30px 30px 0 0;
    bottom: 0;
    box-shadow: 0 15px 30px rgba(0,0,0,.1);
    opacity:1;
}
.team-box{
  border-radius:8px;
  background-color:#f2f2f2;
}
.team-inner{
  border-radius:8px;
}

.social{
  /*bottom: 0;*/
    top:0;
    left: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 0;
    transition: .6s;
    z-index: 1;
    display:flex;
    margin:0px 4px;
    justify-content:center;
}
.team-box:hover .social{
  /*bottom:110px;*/
  top:-20px;
  opacity:1;
  z-index:1;
}
.team-inner{
  position: relative;
  overflow:hidden;
  height:450px;
}

.team-inner img {
    height:100%;
    width:100%;
    object-fit:cover;
    object-position:top;
}

.social li a{
  align-items: center;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,.07);
  color: #7052fb;
  display: flex;
  font-size: 16px;
  height: 40px;
  justify-content: center;
  position: relative;
  text-align: center;
  transition: .6s;
  width: 40px;
  color:var(--blue);
}
.social li{
  display: inline-block;
  margin: 0 3px;
  opacity: 0;
  transition: all .3s ease-in-out 0s;
  visibility: hidden;
  transform: translateY(30px);
}
.team-box:hover .social li{
    transform: translateY(0);
    visibility: visible;
    opacity:1;
}
.team-box:hover .social li:first-child{
  transition-delay: .2s ;
}
.team-box:hover .social li:nth-child(2){
  transition-delay: .3s ;
}
.team-box:hover .social li:nth-child(3){
  transition-delay: .4s ;
}
.team-box:hover .social li:last-child{
  transition-delay: .5s ;
}
.social a{
  text-decoration:none;
}
.content h3{
   font-size: 20px;
    text-transform: capitalize;
    font-weight: 600;
}
.content span{
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin: 4px 0px;
    display: block;
}

.bg-how-we-work{
  padding:70px 0px 0px 0px;
}
.how-we-work-image {
  width: 55%;
}

.bg-how-we-work{
  position: relative;
  z-index:1;
}
.bg-how-we-work:after{
  content: "";
  position: absolute;
  bottom: 0%;
  left: 0%;
  width: 100%;
  height:45%;
  z-index: -2;
  background-image: linear-gradient(90deg, rgba(237,245,255,1) 0%, rgba(204,223,247,1) 100%);
}
.faq-items{
  position: relative;
}
.fixed-thumb {
  position: absolute;
  left: 8.5%;
  bottom: 0px;
  width: 20%;
}
.bg-row {
  position: relative;
  padding:70px 50px;
  justify-content:end;
}
.bg-row .col-lg-4{
  display: flex;
}
.bg-row:after {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 80%;
  /* background: #1273eb; */
  background-color:var(--blue);
  z-index: -1;
}
.work-box{
    padding: 60px 20px 30px;
  border-radius: 6px;
  border: 1px solid #ffffff7a;
  color: white;
  position: relative;
}
.work-box h3{
  text-transform: capitalize;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}
.work-box p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  text-align:left;
}
.work-box span{
  color: transparent;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  line-height: 44px;
  font-weight: 700;
  /* background: white; */
  border-radius: 50%;
  /* margin: -50px auto 30px auto; */
  margin-left: auto;
  position: absolute;
  right: 5%;
  top: 5%;
  -webkit-text-stroke: 1px white;
  opacity: 0.4;
}
.footer-img{
  width:80%;
  margin-bottom:30px;
}
.footer-social ul{
  display: flex;
  align-items:center;
  list-style:none;
  padding-left:0px;
}
.footer-social ul li a{
    align-items: center;
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.07);
    color: #7052fb;
    display: flex;
    font-size: 16px;
    height: 40px;
    justify-content: center;
    position: relative;
    text-align: center;
    transition: .6s;
    width: 40px;
    color: var(--blue);
    text-decoration:none;
    margin:0px 7px;
}
.footer-social ul li:hover a{
  background-color: var(--lightblue);
  color:white;
}
.bg-footer-section{
  background-color:#0e1e2a;
  padding:70px 0px 30px;
  position: relative;
}
.bg-footer-section::after{
  content:"";
  position: absolute;
  bottom:0%;
  left:0%;
  width:100%;
  height:65%;
  background-image:url(./assets/images/footer-image.png);
  background-repeat: no-repeat;
  z-index:0;
}
.footer-title{
  color: white;
  text-transform: capitalize;
  font-size: 24px;
  font-weight: 700;
  margin-bottom:25px;
}
.footer-address ul{
  padding-left:0px; 
  list-style:none;
}
.footer-links ul li{
  display: flex;
  align-items:center;
  margin-bottom:12px;
}
.footer-links ul li a{
  color:white;
  text-decoration:none;
  text-transform:capitalize;
  font-size:16px;
  display:block;
}
.footer-links ul{
  padding-left:0px;
  list-style:none;
}
.footer-links ul li i{
  font-size:6px;
  color:white;
  margin-right:12px;
}
.footer-links ul li:hover a ,.footer-links ul li:hover i{
  color:var(--lightblue);
}
.footer-address ul li{
  display: flex;
  align-items:center;
  margin-bottom:20px;
}

.footer-address ul li i{
  margin-right:12px;
  color:white;
}
.footer-address ul li span{
  display:block;
  color:white;
  line-height:1.7;
}
.footer-address ul li a{
  text-decoration: none;
  color: white;
  font-size: 16px;
  font-weight: 500;
}
.footer-section{
  position: relative;
  z-index: 1;
  padding-bottom:40px;
}
.footer-address ul li:hover a ,.footer-address ul li:hover i{
  color:var(--lightblue);
}
.copy-privacy ul{
  display:flex;
  align-items:center;
  list-style:none;
  margin-bottom:0px;
  justify-content:end;
  gap: 20px;
}
.copy-privacy ul li a{
  color:white;
  text-decoration:none;
}
.copy-privacy ul li a:hover{
   color:var(--lightblue);
}
.copy-text-title {
  color: white;
  font-size: 16px;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.copy-text {
  padding: 20px 0px;
  position: relative;
  border-top: 1px solid white;
  z-index: 1;
}
.header-menu ul{
  display:flex;
  align-items:center;
  list-style:none;
  margin-bottom:0px;
  justify-content:end;
}
.header-menu ul{
  padding-left:0px;
}
.header-menu ul li {
  margin-right: 50px;
}
.header-menu ul li a{
  text-decoration:none;
  color:black;
  text-transform:capitalize;
  font-size:18px;
  font-weight:500;
  padding:24px 0px;
  display: block;
}
.header-logo {
  width: 96%;
}
.bg-header .row{
  align-items:center;
}
.header-logo a{
  text-decoration: none;
  color: black;
}
.header-menu ul li{
  position: relative;
}
.sub-menu{
    position: absolute;
    display: block!important;
    z-index: 1;
    background: white;
    border-radius: 0px 0px 6px 6px;
    width:270px;
    /*padding:0px 20px 20px 20px!important;*/
    padding-bottom: 20px;
    border-bottom:4px solid var(--blue);
    display:none!important;
    z-index:2;
}

.header-menu ul li:hover .sub-menu{
  display:block!important;
}
.header-menu .sub-menu li{
  margin-right:0px;
  margin:18px 0px!important;
  transition:all 0.5s ease;
  padding:0 20px;
}
.sub-menu li a{
  font-size:16px!important;
  padding:0px!important;
  transition:all 0.5s ease;
  
}
.sub-menu li a img{
    width: 25px;
    margin-right: 12px;
    transition:all 0.5s ease;
}

.header-menu ul li a i{
  font-size:14px;
  margin-left:4px;
}
.stricky-fixed{
  top:0%;
  position:sticky;
  background-color:white;
  z-index:99;
  box-shadow: 0px 0px 12px #80808069;
  transform:translateY(0%);
  transition:all 0.5s ease;
}
.sub-menu li:hover a{
  color:var(--lightblue);
  transform:translateX(10px);
}


.sub-menu li:hover a img {
  transform: rotateY(360deg);
}

.service-inner{
  overflow:hidden;
}
.service-main-box:hover .service-inner img{
   transform:scale(1.2);
} 








        

.contact-us {
  padding: 100px 0;
  position: relative;
}

.tech-form h3 {
  text-transform: capitalize;
  font-weight: 700;
  font-size: 34px;
  color: var(--lightblue);
  margin-bottom: 8px;
}

.tech-form p {
  font-size: 16px;
}

.tech-input {
  margin-bottom: 12px;
  position: relative;
}
.tech-input input {
  width: 100%;
  height: 50px;
  font-size: 16px;
  font-weight: 400;
  border-radius: 6px;
  border: 1px solid lightgray;
  padding: 0 12px;
  outline: none;
}

.tech-input input:focus {
  border: 1px solid var(--lightblue) !important;
}

.tech-input label {
  text-transform: capitalize;
  font-weight: 600;
  font-size: 16px;
  display: block;
  margin-bottom: 5px;
}

.tech-input textarea {
  width: 100%;
  font-size: 18px;
  font-weight: 400;
  border-radius: 6px;
  border: 1px solid lightgray;
  padding: 12px;
  margin-bottom: 10px;
  outline: none;
}
.tech-input textarea:focus {
  border: 1px solid var(--lightblue) !important;
}

.tech-btn {
  text-align: center;
}
.tech-btn button{
  text-transform: capitalize;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  border-radius: 6px;
  padding: 10px 50px;
  border: 1px solid transparent;
  background-color: var(--lightblue);
  color: #fff;
  transition: all 0.5s;
  width: 100%;
}

.tech-btn button:hover {
  background-color: transparent;
  border: 1px solid var(--lightblue);
  color: #000;
}


.tech-form {
  box-shadow: 0 10px 80px rgb(54 65 90 / 10%);
  border-radius: 10px;
  padding: 25px 30px;
  background-color: #fff;
}
.contact-img {
  border-radius: 10px;
  box-shadow: 0 10px 80px rgb(54 65 90 / 10%);
  padding: 25px;
  background-color: #fff;
  margin-right:30px;
}
.inner-contact-img {
  overflow: hidden;
  height: 100%;
  width: 100%;
  border-radius: 10px;
}
.contact-img .inner-contact-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
  transition: all 0.5s;
}

.contact-img:hover .inner-contact-img img {
  transform:  scale(1.2);
}

.inner-contact .row {
  justify-content: center;
}

.inner-contact .row > .col-lg-7 {
  display: flex;

}

.breadscrumb-section {
  background-image: url(./assets/images/about-banner.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height:300px;
  position: relative;
}
.breadscrumb-section:after{
    content:"";
    position:absolute;
    top:0%;
    left:0%;
    width:100%;
    height:100%;
    background-color: rgb(0 0 0 / 40%);
}


.breadscumb-box {
    text-align: center;
    padding: 12px 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 100%;
}
.breadscumb-box h1 {
  color: #fff;
  font-weight: 700;
  font-size: 34px;
  text-transform: capitalize;
}

.breadscumb-box p {
   color: #fff;
   font-size: 17px;
   text-transform: uppercase;
}

.breadscumb-box ul {
    list-style-type: none;
    padding-left: 0;
}

.contact-shape {
    position: absolute;
    top: 15%;
    left: 5%;
    animation: updown 2s infinite alternate;
    z-index: -1;
}

.contact-shape1 {
    position: absolute;
    right: 2%;
    bottom: 10%;
    z-index: -1;
}

@keyframes updown {
   from {
       transform: translateY(20px);
   }
   to {
       transform: translateY(-20px);
   }
}

/* ............about us page................  */

.about-us {
   padding: 100px 0;
   position: relative;
   background-color: #f9fcff;
}


.about-img-box {
   position: relative;
   z-index: 1;
}

.inner-about-img1 {
  position: absolute;
  top: -20%;
  left: -5%;
  height: 300px;
  width: 300px;
  margin-left: -50px;
  box-shadow: 0 10px 80px rgb(54 65 90 / 10%);
}
.inner-about-img1 img {
   height: 100%;
   width: 100%;
   object-fit: cover;
   border-radius: 10px;
   transform: rotateY(180deg);
}

.inner-about-img2 {
  height: 450px;
  width: 80%;
  box-shadow: 0 10px 80px rgb(54 65 90 / 10%);
  margin-top: 60px;
  margin-left: auto;
}
.inner-about-img2 img {
   height: 100%;
   width: 100%;
   object-fit: cover;
   border-radius: 10px;
}

.about-shape {
   position: absolute;
   top: 20%;
   left: 2%;
   animation: rotate 27s infinite;
   display: none;
}

@keyframes rotate {
  form {
     transform: rotate(0deg);
  }
  to {
     transform: rotate(360deg);
  }
}

.about-shape2 {
  position: absolute;
  top: 10%;
  right: 2%;
  width: 5%;
  animation: updown 2s infinite alternate;

}

.about-desc-box h3 {
   text-transform: capitalize;
   font-weight: 700;
   font-size: 34px;
   color: var(--lightblue);
   margin-bottom: 15px;
}

.about-desc-box p {
   font-size: 16px;
   padding-bottom: 15px;
   line-height: 27px;
   /*text-align: justify;*/
}



.nav-tabs .nav-link {
   border: none !important;
   border-bottom: 2px solid lightgray !important;
   font-size: 20px;
   font-weight: 500;
   color: #000;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
   color: var(--lightblue) !important;
   border-bottom: 2px solid var(--lightblue) !important;
   background-color: transparent!important;
}

.about-data p {
   font-size: 16px;
   /*text-align: justify;*/
   line-height: 27px;
}


/*.................... portfolio  css ..................... */

.our-portfolio {
  padding: 70px 0;
  position: relative;
}

.portfolio-listing .row {
  justify-content: center;
}

.portfolio-listing .row .col-lg-4 {
  display: flex;
}

.portfolio-main-box {
  background-color: #fff;
  border-radius: 10px;
  padding: 15px 20px;
  box-shadow: 0 10px 80px rgb(54 65 90 / 10%);
  margin-bottom: 30px;
  transition: all 1s;
}

.portfolio-main-box:hover {
  transform: translateY(-10px);
}

.portfolio-icon {
  width: 90px;
  height: 90px;
  margin: 20px auto;
  text-align: center;
  transition: all 1s;
  border-radius: 100%;
  background-color: #edf5ff;
}

.portfolio-icon img {
  width: 100%;
  text-align: center;
  transition: all 1s;
  padding: 18px;
}

.portfolio-main-box:hover .portfolio-icon>img {
  transform: rotateY(360deg);
}

.portfolio-title {
  margin-bottom: 12px;
}

.portfolio-title h3 {
  text-align: center;
  text-transform: capitalize;
  color: var(--lightblue);
  font-weight: 700;
  margin-bottom: 0;
}

.portfolio-desc p {
  font-size: 16px;
  line-height: 27px;
  text-align: center;
}

.p-shape {
  position: absolute;
  right: 3%;
  top: 50%;
}
.p-shape2 {
  position: absolute;
  top: 0%;
  left: 0;
  width: 10%;
}


/* .....................our merit section css ................... */

.our-merit {
  padding: 70px 0 0;
  position: relative;
  background-color: #f9fcff;
}

.merit-img {
  width:85%;
  margin:auto;
}

.merit-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-merit-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* border-bottom: 1px solid lightgray; */
  background: #fff;
  padding: 22px 30px 22px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 10px 60px rgba(0,0,0,.1);
  position: relative;
}
.merit-icon {
  /* width: 15%; */
  margin-right: 20px;
  z-index: 2;
}
.merit-icon img {
  width: 100%;
}

.merit-gap {
  margin-left: 40px;
}

.merit-gap-inner {
  margin-left: 70px;
}


.merit-info {
  z-index: 2;
}

.merit-info h3 {
  color: var(--lightblue);
  font-size: 20px;
  font-weight: 400;
}

.merit-info p {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: unset;
}

.our-merit-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: #edf5ff;
  width: 0;
  content: "";
  transition: all .3s ease;
  border-radius: 10px;
}

.our-merit-list li:hover::before {
  width: 100%;
}

.m-shape {
  position: absolute;
  top: 10%;
  left: 2%;
  width: 7%;
  animation: rotate 30s 0s infinite;
}
.m-shape2 {
  position: absolute;
  right: 4%;
  bottom: -36px;
  transform: rotate(90deg);
}

.our-merit .heading-title {
    margin-bottom: 50px;
}

.our-merit-list li:hover {
  cursor: pointer;
}

/* .................our-convenant css.......................  */

.our-convenant {
  padding: 70px 0;
  position: relative;
}

.our-convenant-desc {
  background-color: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 10px 80px rgb(54 65 90 / 10%);
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.our-convenant-desc h3 {
  text-transform: capitalize;
  font-weight: 700;
  color: var(--lightblue);
  font-size: 34px;
}

.our-convenant-desc p {
  font-size: 16px;
  line-height: 26px;
  /*text-align: justify;*/
}

.convenant-img-box {
  margin-left: -70px;
  height: 450px;
  position: relative;
  z-index: -1;
}
.convenant-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.oc-shape {
  position: absolute;
  bottom: 10%;
  left: 2%;
}

.oc-shape1 {
  position: absolute;
  right: -10%;
  top: -15%;
  width: 20%;
  z-index: -1;
  display: none;
}

.our-convenant-desc .convenant-info {
  overflow: auto;
  height: 290px;
}



/* .....................service detail page css ..................... */

.tech-service-detail {
  padding: 70px 0;
}
.tab-content {
    margin: 0 -10px;
}
.service-img {
  margin-bottom: 20px;
  height: 300px;
}
.service-img img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.service-title-box {
  margin-bottom: 50px;
}
.service-title-box .row {
  align-items: center;
}

.service-title-box .heading-title h2 {
  margin-bottom: 0;
}
.service-title-box .heading-title {
  margin-bottom: 0;
  text-align: left;
}

.service-main-title {
  position: relative;
}

.service-title-desc {
    position:relative;
}
.service-title-desc::after {
  position: absolute;
  content: '';
  top: 0px;
  left: 0px;
  height: 100%;
  border-right: 2px solid #d4d4d4;
}

.service-title-desc p {
  /*text-align: justify;*/
  font-size: 16px;
  /* margin-bottom: 0; */
  padding-left:20px;

}

.service-detail-main .row {
  justify-content: space-between;
}


.tech-service-detail .nav-tabs {
  border-bottom: none;
}

.tech-service-detail  .nav-tabs .nav-link {
    border: none !important;
    border-bottom: none!important;
    background: #fff;
    box-shadow: 0 10px 80px rgb(54 65 90 / 10%);
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 12px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
}
.tech-service-detail .nav-tabs .nav-link.active {
  color: #fff !important;
  border-bottom: none !important;
  /*border: 2px solid var(--lightblue) !important;*/
  background: var(--lightblue) !important;
}


.tech-service-detail .nav-tabs .nav-link.active i {
  color: #fff;
}

.service-tabs .nav-tabs .nav-link i {
  font-size: 8px;
  color: #104cbc1a;
}







.service-data p {
  font-size: 16px;
  /*text-align: justify;*/
  line-height: 26px;
}

.service-data h5 {
  text-transform: capitalize;
  font-size: 22px;
}

.service-data ul {
  padding-left: 1.2rem;
}

.header-menu ul li.current_page_item a {
  color: var(--lightblue);
}


.scrollTop {
    position: fixed;
    right: 5%;
    border-radius: 50%;
    z-index: 9;
    bottom: 5%;
    height: 55px;
    width: 55px;
    text-align: center;
    line-height: 55px;
    opacity: 0;
    transition: all 0.4s ease-in-out 0s;
    background-color: var(--blue);
}
.scrollTop a{
    color:White;
    font-size:24px;
}

.scrollTop a:hover{
    color:white;
}

.banner-path {
    display: inline-block;
    position: absolute;
    bottom: 0%;
    background-color: white;
    z-index:1;
}
.banner-path ol{
    padding:14px 28px;
    margin-bottom:0px;
}
.banner-path li a{
    text-transform: capitalize;
    font-weight: 500;
    text-decoration: none;
    color: var(--blue);
    font-size: 17px;
    letter-spacing: 0.5px;
}
.banner-path li.breadcrumb-item.active {
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}


.mobile-menu-main {
  height: 100%;
  overflow-y: auto;
}

.toggle-bar {
  display: none;
}
.mobile-menu {
  display: none;
  list-style-type: none;
  padding: 0;
}

.mobile-menu li {
  border-bottom: 1px solid #ededed;
}
.mobile-menu li:last-child {
  border-bottom: 1px solid transparent;
}
.mobile-menu li a {
  text-decoration: none;
  color: #000;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 500;
  padding: 10px 25px;
  display: inline-block;
  width: 100%;
}

.mobile-menu li a.active {
    color:var(--lightblue);
}

.mobile-menu-main .btn-close {
  color: #000 !important;
  background: none;
  opacity: 1;
  width: unset;
  height: 2em;
  text-align: right;
}

.mobile-menu-main .btn-close i {
  font-size: 25px;
  padding: 5px 10px;
}

.mobile-menu-main .btn-close:focus {
  box-shadow: none;
}

.mobile-menu .mobile-inner-menu>a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-sub-menu {
  list-style-type: none;
  padding: 0;
  /* background-color: rgb(204 227 255); */
}
.mobile-sub-menu li a {
  font-size: 16px;
  padding-left: 31px;
  font-weight:400;
}
.mobile-sub-menu li a img{
  width: 25px;
  margin-right: 10px;
}

.mobile-sub-menu li:last-child {
  border-bottom: 1px solid transparent;
}

.breadscrumb-section.dynamic_banner {
  background-image: url(./assets/images/dynamic_banner3.jpg);
}

.breadscrumb-section.power_apps_banner {
  background-image: url(./assets/images/pa-banner.jpg);
}
.breadscrumb-section.power_bi_banner {
  background-image: url(./assets/images/power_bi_banner1.jpg);
}
.breadscrumb-section.azure_banner {
  background-image: url(./assets/images/azure_banner.webp);
}
.breadscrumb-section.automation_banner {
  background-image: url(./assets/images/service-banner2.jpg);
}

.breadscrumb-section.devops_banner {
  background-image: url(./assets/images/devops-banner1.jpg);
}

.breadscrumb-section.contact_banner {
  background-image: url(./assets/images/contactus_banner.png);
}

.header-menu .sub-menu1>li>a {
  display: flex;
  justify-content: space-between;
}

.header-menu .sub-menu1>li>a i {
  transition: all 0.2s;
}

.header-menu .sub-menu1>li:hover a i {
  transform: rotate(-92deg);
}

.header-menu .sub-menu1 li {
  position: relative;
}

.header-menu .sub-menu1 .sub-menu-inner {
  position: absolute;
  top: 0;
  left: 100%;
  background: white;
  width:235px;
  border-bottom:4px solid var(--blue);
  display:none!important;
  z-index:2;
  transition: all 0.5s;
}

.header-menu .sub-menu1 li:hover .sub-menu-inner {
  display: block !important;
  box-shadow: 0 4px 10px -2px rgba(0,0,0,.1);
}
.sub-menu1 li:hover .sub-menu-inner a {
  color: #000;
  transform:translateX(0px);
}

.sub-menu1 li .sub-menu-inner li:hover a {
  color: var(--lightblue);
  transform: translateX(10px);
}


.mobile-sub-menu1 li a {
  display: flex;
  justify-content: space-between;
}
.mobile-sub-menu1 li a i {
  font-size: 14px;
}
.mobile-sub-menu-inner {
  list-style-type: none;
  padding-left: 0;
}
.mobile-sub-menu .mobile-sub-menu-inner a {
  font-weight: 400;
  font-size: 15px;
  padding-left: 60px;
}

/*..........Responsive start.........*/

@media only screen and (min-width:1400px) and (max-width:1500px){
/*.....About Us page Responsive.....*/
  .inner-about-img1{
      margin-left: 0;
  }
/*.....Contact page Responsive.....*/
  .tech-form h3 {
      font-size: 42px;
  }
  .contact-shape {
      top: 8%;
      left: 1%;
  }
  .contact-shape1 {
      right: 1%;
      bottom: 2%;
  }
}

@media only screen and (min-width:1200px) and (max-width:1399px){

/*.....Index page Responsive.....*/
  .slide .slide__img {
      height: 650px;
  }
  .bg-banner-shape {
      bottom: 6px;
  }
  .slide .slide__content--headings .title {
      font-size: 48px;
  }
  .slide .slide__content {
      width: 720px;
  }
  .cube-shape{
      width: 12%;
  }
  .bg-service-section {
      padding: 60px 0px 30px;
  }
  .service-content {
      padding: 50px 20px 25px 20px;
  }
  .bg-why-us {
      padding: 70px 0px 100px 0px;
  }
  .fixed-thumb {
      left: -0.9%;
  }
  .bg-row:after{
    width: 89%;
  }
  .bg-row {
      padding: 60px 40px;
      padding-left: 15%;
  }
  .work-box span{
      top: 3%;
  }
  .work-box {
      padding: 50px 20px 10px;
  }
  .bg-how-we-work {
      padding: 60px 0px 0px 0px;
  }
  .bg-team-section {
      padding: 60px 0px;
  }
  .heading-title {
      margin-bottom: 40px;
  }
  .bg-how-we-work .heading-title {
      margin-bottom: 40px;
  }
/*.....About Us page Responsive.....*/
  .about-us {
      padding: 100px 0 80px;
  }
  .inner-about-img1{
      height: 260px;
      width: 260px;
      margin-left: 0;
  }
  .our-portfolio {
      padding: 80px 0 60px;
  }
  .portfolio-title h3{
    font-size: 26px;
  }
  .our-merit{
      padding: 80px 0 0;
  }
  .merit-img {
      width: 100%;
  }
  .our-merit-list {
      margin-bottom: 60px;
      padding: 0;
  }
  .our-merit .heading-title {
      margin-bottom: 40px;
  }
  .our-convenant {
      padding: 80px 0;
  }
  .p-shape {
      top: 55%;
  }
    .our-convenant-desc p {
        padding-right: 10px;
    }
/*.....Contact page Responsive.....*/
  .tech-form h3 {
      font-size: 36px;
  }
  .contact-shape {
      top: 8%;
      left: 1%;
  }
  .contact-shape1 {
      right: 1%;
      bottom: 2%;
  }
  .contact-us {
      padding: 80px 0;
  }

} 
@media only screen and (min-width:992px) and (max-width:1199px){

  /*.....Index page Responsive.....*/
  .header-menu ul li {
      margin-right: 40px;
  }
  .header-logo {
      width: 100%;
  }
  
  .footer-img {
      width:100%;
  }
  
  .slide .slide__img {
      height: 580px;
  }
  .bg-banner-shape {
      bottom: 6px;
  }
  .slide .slide__content--headings .title {
      font-size: 44px;
  }
  .slide .slide__content {
      width: 65%;
  }
  .cube-shape{
      width: 13%;
  }
  .bg-why-us {
      padding: 50px 0px 80px 0px;
  }
  .why-image{
    width: 90%;
  }
  .cube-shape1{
      width: 6%;
  }
  .bg-service-section {
      padding: 40px 0px 20px;
  }
  .service-content {
      padding: 50px 20px 25px 20px;
  }
  .service-main-box{
      margin-bottom: 40px;
  }
  .fixed-thumb {
      left: 0%;
  }
  .bg-row:after{
    width: 88%;
  }
  .bg-row {
      padding: 40px 25px;
      padding-left: 15%;
  }
  .work-box {
      padding: 60px 20px 10px;
  }
  .bg-how-we-work:after{
      height: 60%;
  }
  .bg-how-we-work {
      padding: 50px 0px 0px 0px;
  }
  .work-box span{
      top: 3%;
  }
  .bg-team-section {
      padding: 60px 0px;
  }
  .heading-title {
      margin-bottom: 30px;
  }
  .bg-how-we-work .heading-title {
      margin-bottom: 30px;
  }
  .bg-team-section {
      padding: 60px 0px;
  }
  .heading-title h2,.why-info h2  {
      font-size: 32px;
  }
  
  .team-inner {
     height: 400px;
   }

/*.....About Us page Responsive.....*/
  .breadscrumb-section{
      height: 250px;
  }
  .breadscumb-box h1{
      font-size: 32px;
  }
  .inner-about-img1{
      height: 220px;
      width: 220px;
      margin-left: 0;
  }
  .about-us {
      padding: 80px 0 60px;
  }
  .about-desc-box h3,.our-convenant-desc h3{
      font-size: 34px;
  }
  .our-portfolio {
      padding: 60px 0 40px;
  }
  .portfolio-title h3{
    font-size: 24px;
  }
  .our-merit{
      padding: 60px 0 0;
  }
  .merit-img {
      width: 100%;
  }
  .our-merit-list {
      margin-bottom: 55px;
      padding: 0;
  }
  .our-merit .heading-title {
      margin-bottom: 30px;
  }
  .p-shape {
      top: 55%;
  }
  .our-merit-list li:first-child, .our-merit-list li:last-child {
      margin-left: -80px;
  }
  .merit-gap {
      margin-left:-40px;
  }
  .merit-gap-inner {
      margin-left: 0px;
  }
  .our-merit-list li{
      padding: 15px 20px 15px;
  }
  .our-convenant {
      padding: 60px 0;
  }
  .oc-shape {
      bottom: 4%;
  }
    .our-convenant-desc p {
        padding-right: 10px;
    }
/*.....Contact page Responsive.....*/
  .contact-us {
      padding: 60px 0;
  }
  .tech-form h3 {
      font-size: 32px;
  }
  .contact-shape {
      top: 8%;
      left: 1%;
  }
  .contact-shape1 {
      right: 1%;
      bottom: 2%;
  }
  .contact-img {
      margin-right: 20px;
  }
  .tech-input textarea {
      height: 100px;
  }
  
/*.....Service Details page Responsive.....*/
  .tech-service-detail {
      padding: 60px 0;
  }
  .service-tabs {
      margin-right: 15px;
  }
} 
@media only screen and (min-width:768px) and (max-width:991px){
  /*.....Index page Responsive.....*/
  .header-menu ul li {
      margin-right: 19px;
  }
  .header-logo {
      width: 100%;
  }
  .header-menu ul li a{
      font-size: 16px;
  }
  .header-menu ul{
      justify-content: flex-end;
  }
  .slide .slide__img {
      height: 450px;
  }
  .bg-banner-shape {
      bottom: 6px;
  }
  .slide .slide__content--headings .title {
      font-size: 42px;
  }
  .slide .slide__content {
      width: 65%;
  }
  .cube-shape{
      top: -22%;
      width: 14%;
  }
  .bg-why-us {
      padding: 30px 0px 60px 0px;
  }
  .why-image{
      width: 98%;
      margin: 0px;
  }
  .cube-shape1{
      width: 9%;
  }
  .service-content {
      padding: 50px 20px 20px 20px;
  }
  .service-main-box {
      margin-bottom: 40px;
  }
  .bg-service-section {
      padding: 40px 0px 10px;
  }
    .bg-how-we-work {
      padding: 40px 0px 0px 0px;
  }
  .fixed-thumb {
      display: none;
  }
  .bg-row:after{
    width: 80%;
    transform: translateX(50%);
    right: 50%;
  }
  .bg-row {
      padding: 40px 120px 20px;
  }
  .work-box {
      padding: 30px 20px 10px;
      margin-bottom: 30px;
  }
  .bg-how-we-work {
      padding: 50px 0px 0px 0px;
  }
  .work-box span{
      top: 3%;
  }
  .bg-how-we-work:after{
      height: 70%;
  }
  .heading-title {
      margin-bottom: 30px;
  }
  .bg-how-we-work .heading-title {
      margin-bottom: 30px;
  }
  .bg-team-section {
      padding: 60px 0px;
  }
  .heading-title h2,.why-info h2  {
      font-size: 30px;
  }
  .footer-img {
      width: 100%;
  }
  .footer-social ul li a{
      margin: 0 12px 0 0; 
  }
  .bg-footer-section {
      padding: 60px 0px 20px;
  }
  .bg-footer-section::after{
      height: 75%;
  }
  .footer-section {
      padding-bottom: 30px;
  }
  
  .team-box {
      margin-bottom:25px;
  }
  
  .team-inner {
      height:400px;
  }
  
  .team-inner .content {
    
     padding: 35px 25px 25px 25px;
   }
   
   .content h3 {
        font-size: 19px;
    }
  
  /*.....About Us page Responsive.....*/
  .breadscrumb-section{
      height: 250px;
  }
  .breadscumb-box h1{
      font-size: 30px;
  }
  .inner-about-img1{
      height: 260px;
      width: 260px;
      margin-left: 0;
      left: -4%;
  }
  .about-shape2{
      top: 6%;
      width: 7%;
  }
  .about-us {
      padding: 80px 0 40px;
  }
  .about-desc-box{
      margin-top: 30px;
  }
  .about-desc-box h3{
      text-align: center;
  }
  .about-desc-box h3,.our-convenant-desc h3{
      font-size: 32px;
  }
  .our-portfolio {
      padding: 40px 0 20px;
  }
  .portfolio-title h3{
      font-size: 22px;
  }
  .our-merit{
      padding: 40px 0 0;
  }
  .merit-img {
      width: 100%;
      margin-left: -35px;
  }
  .m-shape {
      top: 22%;
      left: 7%;
      width: 10%;
  }
  .m-shape2 {
      right: 5%;
      width: 40px;
      bottom: -25px;
  }
  .our-merit-list {
      margin-bottom: 40px;
      padding: 0;
  }
  .our-merit .heading-title {
      margin-bottom: 30px;
  }
  .p-shape {
      top: 70%;
  }
  .our-merit-list li:first-child {
      margin-left: -260px;
  }
  .merit-gap {
      margin-left: -210px;
  }
  .merit-gap-inner {
      margin-left: -170px;
  }
  li.merit-gap:nth-child(4) {
      margin-left: -50px;
  }
  .our-merit-list li:last-child {
      margin-left: -150px;
  }
  .merit-icon img {
      width: 60px;
  }
  .our-merit-list li{
      padding: 15px 20px 15px;
  }
  .our-convenant {
      padding: 60px 0;
  }
  .convenant-img-box {
      height: 350px;
  }
  .our-convenant-desc .convenant-info {
      height: 210px;
  }
  .oc-shape {
      bottom: 3%;
  }
  .copy-privacy ul {
      padding-left: 0px;
  }
    .our-convenant-desc p {
        padding-right: 10px;
    }
/*.....Contact page Responsive.....*/
  .contact-us {
      padding: 50px 0 60px;
  }
  .tech-form h3 {
      font-size: 30px;
  }
  .contact-shape {
      top: 3%;
      left: 1%;
  }
  .contact-shape1 {
      right: 1%;
      bottom: 1%;
  }
  .contact-img {
      margin-right: 0;
      margin-bottom: 20px;
  }
   
/*.....Service Details page Responsive.....*/
  .tech-service-detail {
      padding: 60px 0;
  }
  .service-title-box .heading-title h2 {
      margin-bottom: 20px;
      text-align: center;
  }
  .service-title-desc p {
      padding-left: 0px;
  }
  .service-title-desc::after {
      display: none;
  }
  .service-title-box {
      margin-bottom: 30px;
  }
  .service-tabs{
      overflow-x: scroll;
  }
  .tech-service-detail .nav-tabs {
      flex-direction: row !important;   
      flex-wrap: nowrap;
      width: 720px;
  }
  .tech-service-detail li.nav-item {
      padding: 0 10px;
  }
  .tech-service-detail .nav-tabs .nav-link{
      font-size: 16px;
      text-wrap: nowrap;
      gap: 20px;
  }
  .service-data h5 {
        font-size: 20px;
    }
}
@media only screen and (min-width:576px) and (max-width:767px){
  /*.....Index page Responsive.....*/
  .header-menu{
      display: none;
  }
  .header-logo {
      width: 100%;
  }
  .slide .slide__img {
      height: 400px;
  }
  .bg-banner-shape {
      bottom: 6px;
  }
  .slide .slide__content--headings .title {
      font-size: 38px;
      text-align: center;
  }
  .slide .slide__content {
      width: 65%;
  }
  .cube-shape{
      top: -12%;
      width: 16%;
  }
  .why-image{
      margin-bottom: 30px;
  }
  .bg-why-us {
      padding: 50px 0px 40px 0px;
  }
  .cube-shape1{
      width: 10%;
      bottom: -3%;
  }
  .service-content {
      padding: 50px 20px 30px 20px;
  }
  .service-main-box {
      margin-bottom: 30px;
  }
  .bg-service-section {
      padding: 40px 0px 10px;
  }
  .bg-how-we-work {
      padding: 40px 0px 0px 0px;
  }
  .fixed-thumb {
      display: none;
  }
  .bg-row:after{
    width: 85%;
    transform: translateX(50%);
    right: 50%;
  }
  .bg-row {
      padding: 40px 80px 20px;
  }
  .work-box {
      padding: 50px 20px 10px;
      margin-bottom: 30px;
  }
  .bg-how-we-work {
      padding: 50px 0px 0px 0px;
  }
  .work-box span{
      top: 3%;
  }
  .bg-how-we-work:after{
      height: 70%;
  }
  .heading-title {
      margin-bottom: 30px;
  }
  .bg-how-we-work .heading-title {
      margin-bottom: 30px;
  }
  .bg-team-section {
      padding: 60px 0px 40px;
  }
  .team-box {
      margin-bottom: 30px;
  }
  .team-inner {
      height: 350px;
  }
  .team-inner img{
    height: 100%;
    object-fit: cover;
    object-position: top;
  }
  .heading-title h2,.why-info h2  {
      font-size: 28px;
  }
  .footer-logo{
    margin-bottom: 30px;
  }
  .footer-img{
      margin: 0 auto 20px;
  }
  .footer-social ul{
      justify-content: center;
  }
  .copy-text-title {
      text-align: center;
  }
  .copy-privacy ul{
      justify-content: center;
      margin-top: 10px;
  }
  .bg-footer-section {
      padding: 40px 0px 20px;
  }
  .bg-footer-section::after {
      height: 52%;
  }
  .footer-section {
      padding-bottom: 25px;
  }
  
  .team-inner .content {
      padding: 30px 25px 20px 25px;
  }
  .team-inner .content h3 {
    font-size: 17px;
 }
  .team-inner .content span {
      font-size:15px;
  }
  /*.....About Us page Responsive.....*/
  .breadscrumb-section{
      height: 250px;
  }
  .breadscumb-box h1{
      font-size: 28px;
  }
  .inner-about-img1{
      height: 250px;
      width: 250px;
      margin-left: 0;
      left: -4%;
  }
  .about-shape2{
      top: 6%;
      width: 7%;
  }
  .p-shape2 {
      width: 80px;
  }
  .about-us {
      padding: 80px 0 40px;
  }
  .about-desc-box{
      margin-top: 30px;
  }
  .about-desc-box h3,.our-convenant-desc h3{
      text-align: center;
      font-size: 30px;
  }
  .our-portfolio {
      padding: 40px 0 20px;
  }
  .portfolio-title h3{
      font-size: 20px;
  }
  .our-merit{
      padding: 40px 0 0;
  }
  .merit-img {
      display: none;
  }
  .m-shape {
      top: 4%;
      left: 7%;
      width: 8%;
  }
  .m-shape2 {
      right: 6%;
      width: 40px;
      bottom: -25px;
  }
  .our-merit-list {
      margin-bottom: 40px;
      padding: 0;
  }
  .our-merit .heading-title {
      margin-bottom: 30px;
  }
  .p-shape {
      top: 95%;
      width: 80px;
  }
  .merit-gap {
      margin-left: 0px;
  }
  .merit-gap-inner {
      margin-left: 0px;
  }
  .our-merit-list li{
      padding: 15px 20px 15px;
  }
  .our-convenant {
    padding: 40px 0 60px;
  }
  .our-convenant .row{
      flex-direction: column-reverse;
  }
  .convenant-img-box {
      height: 340px;
      margin-left: 0px;
  }
  .our-convenant-desc{
      top: 0;
      transform: translateY(0%);
      margin-top: 30px;
  }
  .our-convenant-desc .convenant-info {
      height: 250px;
  }
  .oc-shape {
      bottom: 3%;
  }
  .copy-privacy ul {
      padding-left: 0px;
  }
    .our-convenant-desc p {
        padding-right: 10px;
    }
/*.....Contact page Responsive.....*/
  .contact-us {
      padding: 50px 0 60px;
  }
  .tech-form h3 {
      font-size: 28px;
  }
  .contact-shape {
      top: 3%;
      left: 1%;
  }
  .contact-shape1 {
      right: 1%;
      bottom: 1%;
  }
  .contact-img {
      margin-right: 0;
      margin-bottom: 20px;
  }
/*.....Service Details page Responsive.....*/
  .tech-service-detail {
      padding: 50px 0 40px;
  }
  .service-title-box .heading-title h2 {
      margin-bottom: 20px;
      text-align: center;
  }
  .service-title-desc p {
      padding-left: 0px;
  }
  .tech-service-detail .nav-tabs {
      margin-bottom: 10px;
  }
  .service-title-desc::after {
      display: none;
  }
  .service-title-box {
      margin-bottom: 20px;
  }
  .service-tabs{
      overflow-x: scroll;
  }
  .tech-service-detail .nav-tabs {
      flex-direction: row !important;   
      flex-wrap: nowrap;
      width: 540px;
  }
  .tech-service-detail li.nav-item {
      padding: 0 10px;
  }
  .tech-service-detail .nav-tabs .nav-link{
      font-size: 16px;
      text-wrap: nowrap;
      gap: 20px;
  }
  .service-data h5 {
      font-size: 18px;
  }
}
@media only screen and (max-width:575px){
  /*.....Index page Responsive.....*/
  .header-menu{
      display: none;
  }
  .header-logo {
      width: 100%;
  }
  .slide .slide__img {
      height: 350px;
  }
  .bg-banner-shape {
      bottom: 6px;
  }
  .slide .slide__content--headings .title {
      font-size: 26px;
      text-align: center;
  }
  .slide .slide__content {
      width: 100%;
      padding: 0 20px;
  }
  .cube-shape{
      top: -10%;
      width: 18%;
  }
  .arrow.slick-nav.next-arrow.slick-arrow{
      width: 35px;
      height: 35px;
      top: 85%;
      right:35%;
      font-size: 16px;
  }
  .arrow.slick-nav.prev-arrow.slick-arrow{
      width: 35px;
      height: 35px;
      top: 85%;
      left: 35%;
      font-size: 16px;
  }
  .why-image{
      width: 90%;
      margin-bottom: 30px;
  }
  .why-image:before{
      top: -8%;
      left: -6%;
  }
  .bg-why-us {
      padding: 50px 0px 40px 0px;
  }
  .cube-shape1{
      width: 10%;
      bottom: -2%;
  }
  .service-content {
      padding: 40px 20px 20px 20px;
  }
  .service-icon{
      width: 60px;
      height: 60px;
  }
  .service-main-box {
      margin-bottom: 30px;
  }
  .bg-service-section {
      padding: 10px 0px;
  }
  .service-shape {
        width: 35%;
    }
  .bg-how-we-work {
      padding: 40px 0px 0px 0px;
  }
  .fixed-thumb {
      display: none;
  }
  .bg-row:after{
    width: 88%;
    transform: translateX(50%);
    right: 50%;
  }
  .bg-row {
      padding: 40px 40px 20px;
  }
  .work-box {
      padding: 50px 20px 10px;
      margin-bottom: 30px;
  }
  .bg-how-we-work {
      padding: 30px 0px 0px 0px;
  }
  .work-box span{
      top: 3%;
  }
  .bg-how-we-work:after{
      height: 70%;
  }
  .heading-title {
      margin-bottom: 20px;
  }
  .bg-how-we-work .heading-title {
      margin-bottom: 20px;
  }
  .bg-team-section {
      padding: 60px 0px 30px;
  }
  .team-box {
      margin-bottom: 30px;
  }
  .team-inner {
      height: 400px;
  }
  .team-inner img{
    height: 100%;
    object-fit: cover;
    object-position: top;
  }
  .team-inner .content {
      padding: 30px 30px 15px;
  }
  .team-box:hover .social {
      bottom: 90px;
  }
  .heading-title h2,.why-info h2 {
      font-size: 24px;
  }
  .footer-title {
      margin-top: 25px;
      margin-bottom: 20px;
  }
  .footer-img{
      margin: 0 auto 20px;
  }
  .footer-social ul{
      justify-content: center;
  }
  .copy-text-title {
      text-align: center;
  }
  .copy-privacy ul{
      justify-content: center;
      margin-top: 10px;
  }
  .bg-footer-section {
      padding: 40px 0px 20px;
  }
  .bg-footer-section::after {
      height: 40%;
  }
  .footer-section {
      padding-bottom: 25px;
  }
  
  .team-inner .content h3 {
      font-size:18px;
  }
  .team-inner .content span {
      font-size:14px;
  }
  
/*.....About Us page Responsive.....*/
  .breadscrumb-section{
      height: 200px;
  }
  .breadscumb-box h1{
      font-size: 28px;
  }
  .breadscumb-box p {
      font-size: 16px;
  }
  .banner-path ol {
      padding: 10px 20px;
  }
  .banner-path {
      bottom: -1%;
  }
  .inner-about-img2 {
      height: auto;
      margin-top: 25px;
  }
  .inner-about-img1{
      height: 180px;
      width: 180px;
      margin-left: 0;
      left: 0%;
      top: -15%;
  }
  .about-shape2{
      top: 4%;
      width: 40px;
  }
  .p-shape2 {
      width: 70px;
  }
  .about-us {
      padding: 70px 0 20px;
  }
  .about-desc-box p {
      padding-bottom: 0;
  }
  .about-desc-box{
      margin-top: 30px;
  }
  .about-desc-box h3,.our-convenant-desc h3{
      text-align: center;
      font-size: 24px;
  }
  .aboutus-tabs ul {
      align-items: end;
  }
  .aboutus-tabs ul a.nav-link{
      font-size: 18px;
  }
  .our-portfolio {
      padding: 30px 0 10px;
  }
  .portfolio-title h3{
      font-size: 20px;
  }
  .portfolio-main-box {
      padding: 10px 15px;
  }
  .portfolio-icon {
      width: 80px;
      height: 80px;
  }
  .our-merit{
      padding: 40px 0 0;
  }
  .merit-img {
      display: none;
  }
  .merit-info h3 {
      font-size: 18px;
  }
  .m-shape {
      top: 0%;
      left: 4%;
      width: 50px;
  }
  .m-shape2 {
      right: 15%;
      width: 40px;
      bottom: -35px;
      transform: rotate(-90deg);
  }
  .our-merit-list {
      margin-bottom: 30px;
      padding: 0;
  }
  .our-merit .heading-title {
      margin-bottom: 30px;
  }
  .p-shape {
      top: 96%;
      width: 50px
  }
  .merit-gap {
      margin-left: 0px;
  }
  .merit-gap-inner {
      margin-left: 0px;
  }
  .our-merit-list li{
      padding: 15px;
  }
  .merit-icon img {
      width: 70px;
  }
  .merit-icon {
      margin-right: 10px;
  }
  .our-convenant {
    padding: 40px 0 60px;
  }
  .our-convenant .row{
      flex-direction: column-reverse;
  }
  .convenant-img-box {
      height: auto;
      margin-left: 0px;
  }
  .our-convenant-desc{
      top: 0;
      transform: translateY(0%);
      margin-top: 30px;
  }
  .our-convenant-desc .convenant-info {
      height: 250px;
  }
  .oc-shape {
      bottom: 1%;
  }
  .copy-privacy ul {
      padding-left: 0px;
      flex-wrap:wrap;
  }
  .aboutus-tabs {
        margin-top: 25px;
    }
    .our-convenant-desc p {
        padding-right: 10px;
    }
    .about-data p {
        text-align: left;
    }
/*.....Contact page Responsive.....*/
  .contact-us {
      padding: 50px 0 60px;
  }
  .tech-form h3 {
      font-size: 24px;
  }
  .contact-shape {
      top: 3%;
      left: 1%;
  }
  .contact-shape1 {
      right: 1%;
      bottom: 0%;
  }
  .contact-img {
      margin-right: 0;
      margin-bottom: 20px;
  }
  .tech-input input {
      height: 40px;
  }
  .tech-input textarea {
      height: 100px;
  }
  .contact-img {
        padding: 15px;
    }

/*.....Service Details page Responsive.....*/
  .tech-service-detail {
      padding: 40px 0 ;
  }
  .service-title-box .heading-title h2 {
      margin-bottom: 20px;
      text-align: center;
  }
  .service-title-desc p {
      padding-left: 0px;
  }
  .tech-service-detail .nav-tabs {
      margin-bottom: 10px;
  }
  .service-title-desc::after {
      display: none;
  }
  .service-title-box {
      margin-bottom: 20px;
  }
  .service-tabs{
      overflow-x: scroll;
  }
  .tech-service-detail .nav-tabs {
      flex-direction: row !important;   
      flex-wrap: nowrap;
      width: 100%;
  }
  .tech-service-detail li.nav-item {
      padding: 0 10px;
  }
  .tech-service-detail .nav-tabs .nav-link{
      font-size: 16px;
      text-wrap: nowrap;
      gap: 15px;
      padding: 8px 15px;
  }
  .service-img {
      height: 250px;
  }
  .scrollTop{
      width:40px;
      height:40px;
      line-height: 40px;
  }
  .scrollTop a {
        color: White;
        font-size: 18px;
  }
  .service-data h5 {
      font-size: 17px;
  }
}
@media only screen and (max-width:425px){
  /*.....Index page Responsive.....*/
  .slide .slide__img {
      height: 250px;
  }
  .slide .slide__content{
      top:40%;
  }
  .bg-banner-shape {
      bottom: 1%;
  }
  .bg-row {
      padding: 40px 0px 20px;
  }
  .bg-row:after {
      width: 100%;
  }
  .bg-how-we-work:after {
      display: none;
  }
  .why-image{
      width: 95%;
  }
  .bg-why-us {
      padding: 30px 0px 40px 0px;
  }
  .service-image .iner-img {
      height: 200px;
  }
  .footer-img {
      width: 100%;
  }
/*.....About Us page Responsive.....*/
  .about-us {
      padding: 50px 0 20px;
  }
  .inner-about-img1 {
      height: 130px;
      width: 130px;
  }
  .merit-icon img {
      margin-bottom: 20px;
  }
  .our-merit-list li {
      padding: 15px;
      flex-wrap: wrap;
      justify-content: center;
      text-align: center;
  }
  
}




/* .................................... mobile menu css ............................................ */
@media only screen and (min-width:576px) and (max-width:767px) {

  .toggle-bar {

    display: block;
    text-align: right;
    font-size: 30px;

  }
  .mobile-menu {

    display: block;

  }
  .bg-header {
      padding:3px 0;
  }
}

@media only screen and (max-width: 575px) {

  .toggle-bar {

    display: block;
    text-align: center;
    font-size: 30px;

  }
  .mobile-menu {

    display: block;

  }
  

}



/*.............................. sub menu responsive css ............................ */

@media only screen and (min-width:1200px) and (max-width:1366px) {

  .header-menu ul li:hover .sub-menu {
    left: -20px;
  }
}
@media only screen and (min-width:992px) and (max-width:1199px) {
  .header-menu ul li:hover .sub-menu {
    left: -35px;
  }
}
@media only screen and (min-width:768px) and (max-width:991px) {
  .header-menu ul li:hover .sub-menu {
    left: -62px;
  }
}

@media only screen and (max-width:1900px) {
  .header-menu .sub-menu1 .sub-menu-inner {
    left: unset;
    right: 100%;
  }
}