:root{
  --orange-color:#D6552B;
  --gary-color:#273244;
  
  --light-color:#ffffff;
  --dark-color: #000000;
  --bg-color:rgba(214, 85, 43, 0.05);
--header-color:#d6552b2e;
--border-color: #e7eefa;
--processcrical-color:#F8F9FA;
--headertext-color:#D6552B;
  }
  :root.light {
    --orange-color:#D6552B;
    --light-color:#ffffff;
  --dark-color: #000000;
  --bg-color:#F8F9FA;
  --header-color:#d6552b2e;
--border-color: #e7eefa;
--processcrical-color:#F8F9FA;
--headertext-color:#D6552B;


  }
  :root.dark {
    --orange-color:#D6552B;
    --light-color:#000000;
  --dark-color: #ffffff;
  --header-color:#fffbfb40;
--border-color: #e7eefa42;
--processcrical-color:#bfbcbc8a;
--headertext-color:white;

  --bg-color:linear-gradient(180deg, rgba(29, 22, 48, .08), rgba(29, 22, 48, .46));
  }
  





  *{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
  }
  .container{
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
  }
  img{
    display: block;
    width: 100%;
  }
  body{
    box-sizing: border-box;
    color:  var(--dark-color);
    background-color: var(  --light-color);
 
      font-family: 'Inter', sans-serif;

    font-weight: 400;
    margin: 0;
    padding: 0;
    text-transform: capitalize;
  }
  .display-none{
    display: none;
  }
    .title-view p {
      text-align: center;
      font-size: 16px;
  }
  /* p{
    color: #4C5A67;
  } */
  .w50{
    width: 20%;
  }
  /* header */
  .dnone{
display: none;
  }
    .default-logo {
      height: 44px;
      width: 167px;
  }
  
  /* ------------------------- -----------------------------theam switcher------------------------- ----------------------------- */
 .toggle-container {
  position: relative;
}

.theme-btn {

  padding: 0.5em;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  background-color: transparent;
}
.toggle-containeres{
  z-index: 999;
}
.theme-btn img {
  height: 30px;
  width: 30px;
  object-fit: cover;
  animation: rotate-animation 10s infinite linear;
}
@keyframes rotate-animation {
	0% {
		transform: rotate(0deg);
  }
  50% {
		transform: rotate(180deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
.theme-btn.light {
  display: none;
}

.dark .theme-btn.dark {
  display: none;
}

.dark .theme-btn.light {
  display: block;
}
  /*------------------------- ----------------------------- loder------------------------- ----------------------------- */
  .loader-overlay {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
  
    transition:transform 1s ease 0.5s, transform 1s ease 0.5s, opacity 1s ease 0.5s;
  }
  .title-view h2 {text-align: center;font-weight: 800;font-size: 42px;}
  .light-gray-bg{background-color: #F8F9FA;}
  
  
  /*------------------------- ----------------------------- cursor------------------------- ----------------------------- */
  
  .cursor {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: 1px solid var(--orange-color);
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(calc(-50% + 15px), -50%);
    
  }
  
  .cursor2 {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color:var(--orange-color);
    opacity: .3;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width .3s, height .3s, opacity .3s;
  }
  
  
  
  .cursorinnerhover {
    width: 50px;
    height: 50px;
    opacity: .5;
  }
  /* ------------------------- -----------------------------bottom to top butoon ------------------------- -----------------------------*/
  #scroll {
    position:fixed;
    right:10px;
    bottom:20px;
    cursor:pointer;
    width:80px;
    height:80px;
    text-indent:-9999px;
    display:none;
    -webkit-border-radius:60px;
    -moz-border-radius:60px;
    border-radius:60px;
    animation-name: bounce;
}


  /* header */
  
  
  
  header {
  
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0);
    background: hsla(0, 0%, 100%, 0);
    /* border-radius: 8px; */
    left: 0;
    margin: 0 auto;
    margin-top: 10px;
    padding: 5px 0px;
    position: sticky;
    right: 0;
    top: 10px; 
    transition: all .35s linear;
    width: clamp(60vw, 1640px, 96vw);
    z-index: 999;
  
  }
  dl, ol, ul {
    margin-top: 0;
    margin-bottom: 0;
    list-style-type: none;  
    padding: 0;
  }
  
  
 .meanhead{
    position: relative;

      color: var(--dark-color);
      transition: all linear 0.2s;
      font-weight: bold;
      text-decoration: none;
      font-size: 15px;
      font-weight: 400;

  }
  .meanhead:hover{
    color: var(--orange-color);
  }
 

  
  .meanhead:before, .meanhead:after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -2px;
    background: var(--orange-color);
  }
  
  .meanhead:before {
    left: 0;
  }
  .meanhead:after {
    right: 0;
    background: var(--orange-color);
    transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  
  .meanhead:hover:before {
    background: var(--orange-color);
    width: 100%;
    transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  
  .meanhead:hover:after {
    background: transparent;
    width: 100%;
    transition: 0s;
  }

  .dropdowen{
    position: relative;
  }
  .dropdowen:hover .dropdowen-menu{
    color: red;
    display: block;
    
    
  }
  .dropdowen-menu{
    z-index: 99;
    min-height: 100px;
    min-width: 200px;
    background-color: var(--light-color);
    padding: 10px 30px;
    position: absolute;
    top:100%;
    display: none;
    border-radius: 7px;

    box-shadow: 0px 0px 20px -8px #c1c1c1;
  
  }
  .dropdowen-menu ul li a{
    border-bottom: 1px solid gray;
    padding: 10px 0px;
    transition: all 0.5s;
    color: gray;
    font-weight: 200;
    text-decoration: none;
  }
  .dropdowen-menu ul li a:hover{
    border-bottom: 1px solid var(--them-color) ;
    padding: 10px 0px;
  
  }
  

  .toggle {
    display: none;
    color:  var(--dark-color);
  font-size: 20px;
  
  
  }
  #navbtn {
    background: transparent;
border: 1px solid var(--orange-color);
    border-radius: 8px;
    color:var(--orange-color);
    width: 133px;
    height: 44px;
    /* box-shadow: 0 5px 25px #cd6c4dc7;  */
  }
  
  /* sticy-header */
  header.active{
  
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    /* background:var(--header-color); */
    margin: 10px auto; 
    width: 83% !important;
  
  
  }
  @keyframes move{
    0%{
      transform: translateY(-100%);
    }
    100%{
      transform: translateY(0%);
    }
  }
  .offcanvas {
   
    -webkit-backdrop-filter: blur(64.4px);
    backdrop-filter: blur(64.4px);
    background: var(--light-color);
  
  }
  .offcanvas-body {
    padding: 0px;
  }
    /*------------------------- -----------------------------banner-------------------------------------------------------------------- */
    .bannerimg{
      width: 490px;
    }
    .bannerhead{
      color: var(--headertext-color);
      background: var(--header-color);
      padding: 10px 20px;
display: inline;
      font-size: 15px;
      border-radius: 8px;
    }
 
    .hero-banner {
      min-height: 100vh;
      padding: 55px 0;
      display: flex;
      align-items: center;
  }

  #changingText {
    color: #ffd166;
    border-right: 1px solid black;
    animation: cursoranim 1s linear infinite;
  }
  
  @keyframes cursoranim {
    50% {
      border-right: 1px solid rgba(0, 0, 0, 0);
    }
  }
 
    .main-content h4 {
      font-size: 24px;
      margin: 0 0 16px;
      color: var(--orange-color);
  }
  .main-content h1 {
    font-size: 52px;
    font-weight: 900;
    color: var(--dark-color);
    margin: 0 0 24px;
  }
  .main-content p {
    color:  #9999;
    font-size: 15px;
    line-height:
     26px;
  }
  
  .btn {
    position: relative;
    display: inline-block;
    padding: 9px 27px;
    text-align: center;
    font-size: 15px;
    letter-spacing: 1px;
    text-decoration: none;
    color:white;
    background-color:var(--gary-color)  ;
    cursor: pointer;
    transition: ease-out 0.5s;
    -webkit-transition: ease-out 0.5s;
    -moz-transition: ease-out 0.5s;
  }
  
  
  .btn.btn-border-2::after,
  .btn.btn-border-2::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    transition: .5s;
  }
  
  .btn.btn-border-2::after {
    top: -3px;
    left: -3px;
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;
  }
  
  .btn.btn-border-2::before {
    bottom: -3px;
    right: -3px;
    border-bottom: 2px solid transparent;
    border-right: 2px solid transparent;
  }
  
  .btn.btn-border-2:hover {
    color: var(--orange-color);
  }
  
  .btn.btn-border-2:hover::after,
  .btn.btn-border-2:hover::before {
    width: calc(50% + 3px);
    height: calc(50% + 3px);
    border-color: var(--orange-color);
  }
  
  
  /* ------------------------- -----------------------------about us------------------------- ----------------------------- */
  .pad-block {
    padding: 30px 0;
  }
  .section-counter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
  }
  
  #counter{
    text-align: -webkit-center;
    padding: 40px 0px;
    width: 100%;
  }
  
  #counter .item{
    border-radius: 40px;
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
    background: var(--bg-color);
      width: 200px;
      padding: 35px 40px;
      margin: 20px;
  
  } 
  #counter .item:hover{
    box-shadow: 0px 0px 38px -8px var(--orange-color);
    transition: all 0.75s ease;
  }
  #counter .item .count{
   
    margin-bottom: 5px;
    font-size: 50px;
  }
  #counter .item p{
    color: var(--dark-color);
    text-transform: capitalize;
  }
  
  .about-content h4 {font-size: 28px;
    font-weight: 700;
    color:  var(--dark-color);
    margin: 0 0 16px;}
  .about-content p {color:  var(--dark-color);font-size: 15px;line-height: 26px;margin: 0 0 16px;}
  .title-view-side h5 {font-size: 20px;color:  var(--dark-color);font-weight: 600;}
  .about-content {padding: 0 0 0 60px;}
  .title-view-side {position: relative;padding: 0 0 0 22px;}
  .title-view-side:before {content: '';width: 6px;background-color: var(--orange-color);height: 60px;display: inline-block;position: absolute;left: 0;}
  
  
  
  
  
  /* ------------------------- -----------------------------service------------------------- ----------------------------- */
  .sbtn{
      /* background: rgb(183 98 127); */
      display: inline;
      padding: 13px;
      border-radius: 10px;
      border-bottom: 2px solid var(--orange-color);
  
  }
  .title-view .top-line {font-size: 20px;font-weight: 600;text-align: center;margin: 0 0 12px;}
  .tabbing-view #v-pills-tab {min-width: 350px;margin: 0 130px 0 0;}
  .tabbing-view .nav-pills .nav-link.active, .tabbing-view .nav-pills .show>.nav-link {color: var(--orange-color); border-radius: 10px; border: 1px solid var(--orange-color);box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.06);}
  .tabbing-view .nav-pills .nav-link {background: 0 0;border: 0;border-radius: 0;color:  var(--dark-color);font-size: 18px;font-weight: 500;text-align: left;padding: 15px 24px;margin: 0 0 16px; border-radius: 10px; border: 0.7px solid var(--border-color) ;position: relative;}
  .tab-body-content {
    background-color: var(--light-color);
    box-shadow: 0px 0px 38px -8px #c1c1c1;
    border-radius: 40px;
    padding: 40px;}
  .tabbing-view .nav-pills .nav-link svg {margin-top: -2px;margin-right: 16px;}
  .tabbing-view .nav-pills .nav-link.active svg path, .tabbing-view .nav-pills .show>.nav-link svg path {fill: var(--orange-color);}
  .tab-body-content h2 {color:  var(--dark-color);font-size: 26px;font-weight: 600;margin: 0 0 16px;}
  .tab-body-content p {margin: 0;color:  var(--dark-color);font-size: 15px;line-height: 26px;}
  .tabbing-view .nav-pills .nav-link:after {content: '';background-image: url(../images/arrow.svg);width: 24px;height: 24px;position: absolute;right: 24px;}
  .tabbing-view .nav-pills .nav-link.active:after, .tabbing-view .nav-pills .show>.nav-link:after{background-image: url(../images/arrow-active.svg);}
  h4.small-title {font-size: 24px;color: #192734;margin: 0 0 24px;font-weight: 700;}
  .block-view {border: 1px solid #E2EAF1;border-radius: 10px;padding: 32px;margin: 0 0 40px;min-height: 202px;}
  .block-view .year-badge {background-color: var(--orange-color);display: inline-block;padding: 5px 12px;border-radius: 8px;color:  var(--dark-color);font-size: 14px;}
  .block-view h5 {color: #192734;font-size: 20px;font-weight: 700;margin: 16px 0 8px;}
  .spot-view {color: #192734;font-size: 15px;position: relative;padding: 0 0 0 35px;}
  .spot-view > span {margin: 0 10px 0 0;position: absolute;top: -2px;left: 0;}
  .spot-web{margin: 8px 0 0;}
   .spot-web > a {color: #192734;text-decoration: underline;}
  .spot-web > a:hover {color: var(--orange-color);}
  .spot-web > span {margin: 0 10px 0 0;}
  .upwork-btn {margin: 16px 0 0;}
  .fd-img {max-width: 100%;}
  ul.service-listing {padding: 0;    margin-top: 19px; list-style: none;}
  ul.service-listing li {position: relative;margin: 0 0 20px;font-size: 15px;color: var(--dark-color);font-weight: 500;padding-left: 34px;}
  ul.service-listing li:after {content: '';background-image: url(../images/arrow.svg);width: 22px;height: 22px;display: inline-block;position: absolute;left: 0;top: 1px;}
  ul.service-listing li:last-child {margin: 0;}
  
   /* ------------------------- -----------------------------portfoliyo ------------------------- -----------------------------*/
   .wrap {
    max-width: 1000px;
  }
  #filters li span {
    /* border: 2px solid var(--orange-color); */
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s linear;
    border: 1px solid var(--border-color);
    border-radius: 7px;
  }
  #filters li span:hover{
    color: var(--dark-color);

    border-color: #f3ae986e;
    background-color: #eba8932e;
  }
  #filters li span.active{
   color: var(--dark-color);

   border-color: #f3ae986e;
   background-color: #eba8932e;
  }
 
  .gallery-item {
    width: 15%;
    z-index: 10;
    display: none;
  }
  .overlay{
    top: 16px;
    left: 8px;
    height: 208px;
    width: 310px;
    background-color: var(--dark);
    opacity: 0;
    transition: all 0.5s linear;
  }
  .gallery-item a:hover .overlay{
    opacity: 0.6;
  }
  .portfolio-content h6{
    border-left: 3px solid var(--orange-color);
  }
  /* #filters li span:hover{
    color: var(--light-color);
    background-color: var(--orange-color) ;
    border: 1px solid var(--orange-color);
  } */
  
  /* <!--------------------------- ----------------------------- Work PRocess start------------------------- ----------------------------- --> */
  .ico-circle {   
    
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
    background:var(--processcrical-color)
   ;width: 130px;height: 130px;
   border: 1.5px solid  #e98d6f69;
   border-radius: 100%;
   margin: 0 auto 32px;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: all 0.4s;}
  .work-flow ul {padding: 0;list-style: none;display: flex;justify-content: space-between;}
  .in-block:hover .work-content h4{color: var(--orange-color);}
  .client-name-rating {display: flex;padding: 0 0 0 15px;justify-content: space-between;align-items: center;width: calc(100% - 60px);}
  
  .work-flow{position: relative;z-index: 1;}
  .work-flow ul{text-align: center;}
  .work-flow:after {content: '';background-image: url(../images/work-bg.svg);width: 116%;height: 240px;display: block;position: absolute;top: 0;background-size: contain;background-repeat: no-repeat;background-position: center center;left: -5%;z-index: -1;}
  .work-flow ul > li:nth-child(2), .work-flow ul > li:nth-child(4) {margin: 110px 0 0;}
  .work-content h4 {font-size: 18px;font-weight: 600;transition: all 0.4s;}
  .work-content p {font-size: 14px;margin: 12px 0 0;max-width: 250px;line-height: 24px;}


.workimg{
  width: 125px;
  height: 125px;
}
.workarrow{
  width: 65.95px;
  height: 10.9px;
color: black;

}
  .worktext{
    font-family: Lexend;
font-size: 19px;
font-weight: 400;
line-height: 23.75px;
text-align: left;
margin-top: 25px;
margin-left: 18px;
margin-bottom: 10px;

  }
  
  /* <!-- Work PRocess end --> */
  
  /*------------------------- ----------------------------- testimonal start------------------------- -----------------------------  */
  
  
  .title-view p {text-align: center;font-size: 16px;}
  .review-box { 
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
    background: var(--bg-color);
    border: 1.5px solid  #e98d6f69;
border-radius: 16px;padding: 40px;margin: 15px;min-height: 300px;display: flex !important;flex-flow: column;justify-content: space-between;}
  .review-box p {color: var(--dark-color);font-size: 15px;line-height: 26px;     margin-bottom: -2px;}
  .client-name-rating ul {padding: 0;list-style: none;margin:0;}
  .client-name-rating ul > li{background-image: url(../images/star.svg);height: 17px;width: 17px;display: inline-block;background-size: cover;}
  .client-name-rating h4 {font-size: 12px;color: var(--dark-color);font-weight: 700;margin: 0 0 0px;}
  .client-pro {width: 60px;height: 60px;border-radius: 8px;overflow: hidden;display: inline-block;vertical-align: middle;background-size: cover;background-position: center center;}
  .client-name-rating {width: calc(100% - 75px);display: inline-block;padding: 0 0 0 15px;vertical-align: middle;}
  
  .slick-dots li button:before {font-size: 34px; color: var(--orange-color);}
  .slick-dots li .active:before { color: var(--orange-color);}
  .slick-dots li{width: 10px; height: 10px; color: var(--orange-color);}
  .slick-dots li.slick-active button:before {
    opacity: .75;
    color:var(--orange-color);
}
  .slick-list{width: 100%;}
  /* testimonal end  */
  
  /*-------------------------------------- -----------------------------Our Service------------------------- -------------------------------------------*/
  ul.industries-listing {padding: 0;list-style: none;text-align: center;}
  ul.industries-listing li {width: calc(25% - 25px);border: 1px solid var(--border-color);margin: 10px 10px;display: inline-block;padding: 12px;border-radius: 8px;cursor: pointer;transition: all 0.4s;}
  ul.industries-listing li:hover {border-color: #f3ae986e;background-color: #eba8932e;}
  ul.industries-listing li:nth-child(1) .badge-view .circle-ico{background-color: #EDF3FF;}
  ul.industries-listing li:nth-child(2) .badge-view .circle-ico{background-color: #FFFAED;}
  ul.industries-listing li:nth-child(3) .badge-view .circle-ico{background-color: #ffa7f06b;}
  ul.industries-listing li:nth-child(4) .badge-view .circle-ico{background-color: #EDFFFF;}
  ul.industries-listing li:nth-child(5) .badge-view .circle-ico{background-color: #EDFBFF;}
  ul.industries-listing li:nth-child(6) .badge-view .circle-ico{background-color: #EDF3FF;}
  ul.industries-listing li:nth-child(7) .badge-view .circle-ico{background-color: #FFEFED;}
  ul.industries-listing li:nth-child(8) .badge-view .circle-ico{background-color: #FFF3ED;}
  ul.industries-listing li:nth-child(9) .badge-view .circle-ico{background-color: #FFEDF9;}
  ul.industries-listing li:nth-child(10) .badge-view .circle-ico{background-color: #FFEDF3;}
  .badge-view {display: flex;align-items: center;}
  .badge-view .circle-ico {width: 60px;height: 60px;border-radius: 6px;display: flex;align-items: center;justify-content: center;margin: 0 20px 0 0;}
  .industries-title {color: var(--dark-color);font-weight: 600;font-size: 15px;width: calc(100% - 80px);text-align: left;}
  /* serviceimg  */
  
  .serviceimg{
    width: 35px;
  }
  /*------------------------- ----------------------------- client-logo------------------------- ----------------------------- */
  .cientimg{
    filter:grayscale(1);
  }
  .cientimg:hover{
    filter:grayscale(0);
  }
  .slider-container {
    animation: bannermove 70s linear infinite;
    width: max-content;
  }
  @keyframes bannermove {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(-50%, 0);
    }
  }



   /* ------------------------- -----------------------------work portfoliyo------------------------- ----------------------------- */
   .righttoleft {
    animation: righttoleft 50s linear infinite;
    width: max-content;
  }
  @keyframes righttoleft {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(-50%, 0);
    }
  }
  .righttoleft:hover{
    animation-play-state:paused;

  }

  .lefttoright {
    animation: lefttoright 50s linear infinite;
    width: max-content;
  }
  @keyframes lefttoright {
    0% {
      transform: translate(-50%, 0);
    }
    100% {
      transform: translate(0, 0);
    }
  }
  .lefttoright:hover{
    animation-play-state:paused;

  }
  /* ------------------------- -----------------------------footer------------------------- ----------------------------- */
  .footertext{
font-size: 20px;
font-weight: 500;
line-height: 25px;
color: var(--dark-color);


  }
  .footerlink{
    font-size: 15px;
font-weight: 400;
line-height: 21.25px;
color: var(--dark-color);

  }
  .footerlink:hover{
    color: var(--orange-color);
  }
 

  .footer-distributed{
    /* background: #666; */
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
    width: 100%;
    text-align: left;
    /* font: bold 16px sans-serif; */ 
    padding: 55px 39px;
    text-align: center;

  }
  
  .footer-distributed .footer-left,
  .footer-distributed .footer-center,
  .footer-distributed .footer-right{
    display: inline-block;
    vertical-align: top;
  }
  
  /* Footer left */
  
  .footer-distributed .footer-left{
    width: 30%;
    text-align: justify;
  }
  
  /* The company logo */
  

  
  /* Footer links */
  
  .footer-distributed .footer-links{
    color:   var(--dark-color);
    margin: 20px 0 12px;
    padding: 0;
  }
  
  .footer-distributed .footer-links a{
    display:inline-block;
    line-height: 1.8;
    font-weight:400;
    text-decoration: none;
    color:  inherit;
  }
  .footer-distributed .footer-links a:hover{
    color: var(--orange-color);
  }
  .footer-distributed .footer-company-name{
    color:   var(--dark-color);
    font-size: 15px;
    font-weight: normal;
    margin: 0;
  }
  
  /* Footer Center */
  
  .footer-distributed .footer-center{
    width: 30%;
    text-align: justify;
  
  }
  
  .footer-distributed .footer-center i{
    /* background-color:  #33383b; */
    color: var(--orange-color);
    font-size: 18px;
    padding: 8px;

    border-radius: 7px;
    text-align: center;
    line-height: 42px;
    margin: 10px 15px;
    vertical-align: middle;
    border: 1px solid var(--orange-color);

  }
  .footer-center i:hover {
    box-shadow: 0 0 15px var(--orange-color);
    transition: all 0.75s ease;
    border: 1px solid var(--orange-color);
    border-radius: 7px;
  }

  
  .footer-distributed .footer-center p{
    display: inline-block;
    color:  var(--dark-color);
    font-weight:400;
    vertical-align: middle;
    margin:0;
    font-size: 15px;
  }
  
  .footer-distributed .footer-center p span{
    display:block;
    font-weight: normal;
    font-size:14px;
    line-height:2;
  }
  
  .footer-distributed .footer-center p a{
    color:  var(--dark-color);
    text-decoration: none;;
  }
  
  .footer-distributed .footer-links a:before {
    content: "|";
    font-weight:300;
    font-size: 20px;
    left: 0;
    color: var(--dark-color);
    display: inline-block;
    padding-right: 5px;
  }
  
  .footer-distributed .footer-links .link-1:before {
    content: none;
  }
  
  /* Footer Right */
  
  .footer-distributed .footer-right{
    width: 25%;
    text-align: justify;
  
  }
  
  .footer-distributed .footer-company-about{
    line-height: 20px;
    color: var(--dark-color);
    font-size: 13px;
    font-weight: normal;
    margin: 0;
  }
  
  .footer-distributed .footer-company-about span{
    display: block;
    color:   var(--dark-color);
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .footer-distributed .footer-icons{
    margin-top: 25px;
  }
  
  .footer-distributed .footer-icons a{
    display: inline-block;
    font-size: 18px;
width: 37px;
height: 37px;
    border-radius: 7px;
  
    color:var(--orange-color);
    text-align: center;
    line-height: 38px;
    border: 1px solid var(--orange-color);
  
    margin-right: 3px;
    margin-bottom: 5px;
  }
  .footer-icons a:hover {
    box-shadow: 0 0 15px var(--orange-color);
    transition: all 0.75s ease;
    border: none;
    border: 1px solid var(--orange-color);
border-radius: 7px;
  }
  
  /* If you don't want the footer to be responsive, remove these media queries */
  
  @media (max-width: 880px) {
  
    .footer-distributed{
      font: bold 14px sans-serif;
    }
  
    .footer-distributed .footer-left,
    .footer-distributed .footer-center,
    .footer-distributed .footer-right{
      display: block;
      width: 100%;
      margin-bottom: 40px;
      text-align: center;
    }
    .footer-distributed .footer-left,
    .footer-distributed .footer-center,
    .footer-distributed .footer-right
  {
    text-align: justify;
  }
    .footer-distributed .footer-center i{
      margin-left: 0;
    }
  
  }
  
 /*////////////////////////////////////////////////////////////////////////////////////////// about page csss///////////////////////////////////////////////////////////////////////////////////////////////////////// */
 .border-line{
  border: 1px solid #D6552B;
 box-shadow: 0px 0px 30px 0px #D6552B40;
 border-radius: 7px;
 /* background-image: url(../images/Group\ 26250.png);
 width: 100%;
height: 100vh; */


 }
 /*--------------------------------------- ethics start--------------------------------------------- */
 .ethics .box-view-in {min-height: 265px;}
 .box-view-in 
 {padding: 32px 34px;
  background: var( --light-color); 
     box-shadow: 0px 0px 30px -8px var(--header-color);
     border-radius: 8px;
     margin: 0 0 24px;
     min-height: 250px;
     transform:all 0.3s ease;
     position:relative;
    }
    /* .box-view-in:hover{
      border-top: 2px solid var(--orange-color);
      box-shadow: 0px 0px 14px -8px var(--gary-color);
    } */
    .box-view-in:before{
      content:"";
      position :absolute;
      width:30px;
      height:30px;
      top:-5px;
        left:-5px;
     border-radius: 8px;

      border-top:2px solid var(--orange-color);
      border-left:2px solid var(--orange-color);
      transition:all 0.25s;
    }
    .box-view-in:hover:before ,.box-view-in:hover:after{
      width:103%;
      height:103%;
    }
    .box-view-in:after{
      content:"";
      position :absolute;
     border-radius: 8px;

     width:30px;
     height:30px;
      bottom:-5px;
        right:-5px;
      border-bottom:2px solid var(--orange-color);
      border-right:2px solid var(--orange-color);
      transition:all 0.30s;
    }
.box-view-in h4 {color: var(--gary-color);font-size: 20px;font-weight: 800;margin: 0 0 0 16px;}
.box-view-in p {color:var(--dark-color);font-size: 15px;line-height: 26px;margin: 0;}

.box-view-in .title-ico {display: flex;align-items: center;margin: 0 0 24px;}
.box-view-in .title-ico {display: flex;align-items: center;margin: 0 0 24px;}
.title-ico {display: flex;align-items: center;}
.title-ico h4 {color: var(--gary-color);margin: 0 0 0 16px;font-size: 20px;font-weight: 700;}
.icon-view-in {position: relative;z-index: 1;}
.icon-view-in:after {width: 20px;height: 20px;display: inline-block;background-color: var(--orange-color);position: absolute;content: '';border-radius: 20px;left: 18px;top: 18px;z-index: -1;}

/* team start  */
.profile-card {
  text-align: center;
}
.owl-item{
  padding: 40px;
}
.main{
  /* width: 100%;
  height: 100vh; */
  display: flex;
  justify-content: center;
  align-items: center;
}
.profile-card{
  position: relative;
  font-family: sans-serif;
  width: 170px;
  height: 170px;
  background: var(--light-color);
  padding: 20px;
  border-radius: 50%;
  box-shadow: 0 0 22px #e96c4373;
  transition: .6s;
  margin: 0 25px;
}
/* .profile-card:hover{
  border-radius: 10px;
  height: 260px;
} */
.profile-card .img{
  position: relative;
  width: 100%;
  height: 100%;
  transition: .6s;
  z-index: 99;
}
/* .profile-card:hover .img{
  transform: translateY(-60px);
} */
.img img{
  width: 100%;
  border-radius:50%;
  box-shadow: 0 0 22px #3336;
  transition: .6s;
}
/* .profile-card:hover img{
  border-radius: 10px;
} */
.caption{
  text-align: center;
  transform: translateY(-80px);
  opacity: 0;
  transition: .6s;
}
/* .profile-card:hover .caption{
  opacity: 1;
} */
.caption h3{
  font-size: 21px;
  font-family: sans-serif;
  font-weight: 700;
}
.caption p{
  font-size: 15px;
  color:var(--dark-color);
  font-family: sans-serif;
  margin: 2px 0 9px 0;
}
/*///////////////////////////////////////////// service///////////////////////////////////////////////////////// */
.appbox img{
  transition: all 0.3s ease-in-out 0.1s;
}
.appimg{
  width: 80px;
  height: 80px;
  margin: auto;
  max-width: 75px;
  object-fit: contain;
}
.appbox:hover{
  box-shadow: 0 0 15px var(--orange-color);
    transition: all 0.75s ease;
}
.appbox:hover .appimg{
  transform: scale(1.5) translateY(-10px);
}
/* .appbox:hover .appimg{
  animation: bouncing 0.5s 0.3s;
}
@keyframes bouncing {
  from, to {
    transform: scale(1, 1);
 }
  25% {
    transform: scale(0.9, 1.1);
 }
  50% {
    transform: scale(1.1, 0.9);
 }
  75% {
    transform: scale(0.95, 1.05);
 } 
}*/
.apptext{
font-size: 14px;
font-weight: 400;
line-height: 23px;
text-align: center;

}
.appbox{
  width: 313px;
height: 300px;
border-radius: 7px;
border: 1.5px solid #6c757d5c;
padding: 40px 20px;
}
 /* app process */
 .processimg{
  width: 200px;
  height: 227px;

  
    margin: auto;
 }
 .appmainpro{
  height: 500px;
 }
 /* ////////////////////////////contect us /////////////////////////// */
 .formboder{
  border: 1px solid var(--gary-color);
  /* width: 1040px;
  height: 753px; */

  border-radius: 8px;


 }
 .formtext{

font-size: 17px;
font-weight: 400;

 }
 .formmaintext{
font-size: 18px;
font-weight: 600;
line-height: 31.25px;
color: var(--dark-color);
 }
 ::placeholder {
  font-size: 13px;

}

.form-control:focus{
  border: 1px solid var(--orange-color);
  background-color: transparent;
      box-shadow: none;
}
  
.form-control {
  background-color: transparent;
}
.addtext{
font-size: 17px;
font-weight: 400;
color: var(--dark-color);

}
.addmenu{
  display: inline-block;
  font-size: 20px;
  width: 38px;
  height: 38px;
  border-radius: 7px;

  color:var(--orange-color);
  text-align: center;
  line-height: 38px;
border: 1px solid var(--orange-color);
  margin-right: 3px;
  margin-bottom: 5px;
}
.addmenu:hover {
  box-shadow: 0 0 15px var(--orange-color);
  transition: all 0.75s ease;
  border: none;
border: 1px solid var(--orange-color);
border-radius: 7px;

}
.conimg{
  width: 160px;
margin: 0px auto 0px auto;
}
.footline{
  color: var(--dark-color);
font-size: 13px;
font-weight: 400;


}
.footline:hover{
color: var(--orange-color);


}