body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
  }
  
  a {
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: none;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: "Roboto", sans-serif;
  }


.header {
    /* --background-color: rgba(255, 255, 255, 0); */
    /* --default-color: #ffffff;
    --heading-color: #ffffff; */
    color: var(--default-color);
    background-color: white;
    transition: all 0.5s;
    z-index: 997;
  }
  
  .header .logo img {
    max-height: 55px;
    margin-right: 8px;
  }
  
  .header .logo h1 {
    font-size: 24px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
  }
  
  .header .logo span {
    font-size: 24px;
    padding-left: 1px;
    font-family: var(--heading-font);
    color: var(--color-primary);
  }
  
  .scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  }
  



  .hamburger-state {
    display: none;
  }
  
  .hamburger-icon {
    display: block;
    width: 30px;
    height: 25px;
    position: relative;
    cursor: pointer;
    margin-left: 40px;
    z-index: 2;
    margin-top: 20px;
  }
  
  .hamburger-icon div,
  .hamburger-icon::before,
  .hamburger-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: currentcolor;
    transform-origin: center;
  }
  
  .hamburger-icon div {
    top: 50%;
    transform: translateY(-50%);
    transition: height 250ms ease;
  }
  
  .hamburger-icon::before {
    top: 0;
    transition: top 500ms ease, transform 500ms ease;
  }
  
  .hamburger-icon::after {
    bottom: 0;
    transition: bottom 500ms ease, transform 500ms ease;
  }
  
  .hamburger-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
    background-color: #f2fbfd;
    width: 100%;
    height: 100%;
    transition: inset 500ms ease;
  }
  
  .hamburger-menu.top {
    top: -100%;
  }
  
  .hamburger-menu.bottom {
    top: 100%;
  }
  
  .hamburger-menu.left {
    left: -100%;
  }
  
  .hamburger-menu.right {
    bottom: 100%;
  }
  
  .hamburger-state:checked ~ .hamburger-menu {
    bottom: 0;
    left: 0;
  }
  
  .hamburger-state:checked + .hamburger-icon div {
    height: 0;
  }
  
  .hamburger-state:checked + .hamburger-icon::before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  
  .hamburger-state:checked + .hamburger-icon::after {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
  }
  
  body:has(.hamburger-state:checked) {
    overflow: hidden;
  }
  
  
.line{
  border-left: 1px solid gray;
  font-size: 20px;
}





  /* Global Header on Scroll
  ------------------------------*/
  .scrolled .header {
    --background-color: rgba(255, 255, 255, 0.95);
    --heading-color: #3c3c3c;
    --nav-color: #3c3c3c;
    --nav-hover-color: #3c3c3c;
  }
  .navmenu ul li a{
    text-decoration: none;
	  font-size: 15px;
  }

  .button_li {
    display: flex;
    margin-bottom: 0px;
  }
  
  .button_li li {
    list-style: none;
  }

  .butt{
    background-color:#fd5f07;
    color: white;
    border: 1px solid #db6a04;
    
    margin: 10px;
    display: flex;
    padding: 8px 25px;
    border-radius: 50px;
  }

  .butt a{
    color: white;
    text-decoration: none;
    font-size: 18px;
  }

  .butt-1{
    margin: 15px;
    font-size: 20px;
  }


  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /* Desktop Navigation */
  @media (min-width: 1200px) {
    .navmenu {
      padding: 0;
    }
  
    .navmenu ul {
      margin: 0;
      padding: 0;
      display: flex;
      list-style: none;
      align-items: center;
    }
  
    .navmenu li {
      position: relative;
     
    }
  
    .navmenu>ul>li {
      white-space: nowrap;
      padding: 15px 14px;
      text-decoration: none;
    }
  
    .navmenu>ul>li:last-child {
      padding-right: 0;
    }
  
    .navmenu a,
    .navmenu a:focus {
      color: var(--nav-color);
      font-size: 14px;
      padding: 0 2px;
      font-family: var(--nav-font);
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: space-between;
      white-space: nowrap;
      transition: 0.3s;
      position: relative;
      text-transform: uppercase;
    }
  
    .navmenu a i,
    .navmenu a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
      transition: 0.3s;
    }
  
    .navmenu>ul>li>a:before {
      content: "";
      position: absolute;
      height: 2px;
      bottom: -6px;
      left: 0;
      background-color: var(--accent-color);
      visibility: hidden;
      width: 0px;
      transition: all 0.3s ease-in-out 0s;
    }
  
    .navmenu a:hover:before,
    .navmenu li:hover>a:before,
    .navmenu .active:before {
      visibility: visible;
      width: 100%;
    }
  
    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
      color: var(--nav-hover-color);
    }
  
    .navmenu .dropdown ul {
      margin: 0;
      padding: 10px 0;
      background: var(--nav-dropdown-background-color);
      display: block;
      position: absolute;
      visibility: hidden;
      left: 14px;
      top: 130%;
      opacity: 0;
      transition: 0.3s;
      border-radius: 4px;
      z-index: 99;
      box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
  
    .navmenu .dropdown ul li {
      min-width: 200px;
    }
  
    .navmenu .dropdown ul a {
      padding: 10px 20px;
      font-size: 15px;
      text-transform: none;
      font-weight: 400;
      color: var(--nav-dropdown-color);
    }
  
    .navmenu .dropdown ul a i {
      font-size: 12px;
    }
  
    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
      color: var(--nav-dropdown-hover-color);
    }
  
    .navmenu .dropdown:hover>ul {
      opacity: 1;
      top: 100%;
      visibility: visible;
    }
  
    .navmenu .dropdown .dropdown ul {
      top: 0;
      left: -90%;
      visibility: hidden;
    }
  
    .navmenu .dropdown .dropdown:hover>ul {
      opacity: 1;
      top: 0;
      left: -100%;
      visibility: visible;
    }
  }
  
  /* Mobile Navigation */
  @media (max-width: 1199px) {
    .mobile-nav-toggle {
      color: var(--nav-color);
      font-size: 28px;
      line-height: 0;
      margin-right: 10px;
      cursor: pointer;
      transition: color 0.3s;
      position: absolute;
      right: 0;
      top: 10px;
    }
  
    .navmenu {
      padding: 0;
      z-index: 9997;
    }
  
    .navmenu ul {
      display: none;
      list-style: none;
      position: absolute;
      inset: 60px 20px 20px 20px;
      padding: 10px 0;
      margin: 0;
      border-radius: 6px;
      background-color: var(--nav-mobile-background-color);
      border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
      box-shadow: none;
      overflow-y: auto;
      transition: 0.3s;
      z-index: 9998;
    }
  
    .navmenu a,
    .navmenu a:focus {
      color: var(--nav-dropdown-color);
      padding: 10px 20px;
      font-family: var(--nav-font);
      font-size: 17px;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: space-between;
      white-space: nowrap;
      transition: 0.3s;
    }
  
    .navmenu a i,
    .navmenu a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: 0.3s;
      background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }
  
    .navmenu a i:hover,
    .navmenu a:focus i:hover {
      background-color: var(--accent-color);
      color: var(--contrast-color);
    }
  
    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
      color: var(--nav-dropdown-hover-color);
    }
  
    .navmenu .active i,
    .navmenu .active:focus i {
      background-color: var(--accent-color);
      color: var(--contrast-color);
      transform: rotate(180deg);
    }
  
    .navmenu .dropdown ul {
      position: static;
      display: none;
      z-index: 99;
      padding: 10px 0;
      margin: 10px 20px;
      background-color: var(--nav-dropdown-background-color);
      transition: all 0.5s ease-in-out;
    }
  
    .navmenu .dropdown ul ul {
      background-color: rgba(33, 37, 41, 0.1);
    }
  
    .navmenu .dropdown>.dropdown-active {
      display: block;
      background-color: rgba(33, 37, 41, 0.03);
    }
  
    .mobile-nav-active {
      overflow: hidden;
    }
  
    .mobile-nav-active .mobile-nav-toggle {
      color: #fff;
      position: absolute;
      font-size: 32px;
      top: 15px;
      right: 15px;
      margin-right: 0;
      z-index: 9999;
    }
  
    .mobile-nav-active .navmenu {
      position: fixed;
      overflow: hidden;
      inset: 0;
      background: rgba(33, 37, 41, 0.8);
      transition: 0.3s;
    }
  
    .mobile-nav-active .navmenu>ul {
      display: block;
    }
  }



  @media screen and (max-width: 667px) {
    .hijanu {
      display: none!important;
  
    }
  }

  /* about us css */
  .about-section{
    position:relative;
    padding:20px 0px 0px 0px;
  }
  
  .about-section .content-column{
    position:relative;
    margin-bottom:40px;
  }
  
  .about-section .content-column .inner-column{
    position:relative;
    padding-top:0px;
    padding-right:0px;
  }
  
  .about-section .content-column .text{
    position:relative;
    color:#777777;
    font-size:18px;
    line-height:2em;
    margin-bottom:40px;
  }
  
  .about-section .content-column .email{
    position:relative;
    color:#252525;
    font-weight:700;
    margin-bottom:50px;
  }
  
  .about-section .image-column{
    position:relative;
    margin-bottom:50px;
  }
  
  .about-section .image-column .inner-column{
    position:relative;
    padding:40px 40px 0px 0px;
    margin-left:50px;
  }
  
  .about-section .image-column .inner-column:after{
    position:absolute;
    content:'';
    right:0px;
    top:0px;
    left:40px;
    bottom:100px;
    z-index:-1;
    border:2px solid #e75e12;
  }
  
  .about-section .image-column .inner-column .image{
    position:relative;
  }
  
  .about-section .image-column .inner-column .image:before{
    position:absolute;
    content:'';
    left:-50px;
    bottom:-50px;
    width:299px;
    height:299px;
    background:url(img/pattern-2.png) no-repeat;
  }
  
  .about-section .image-column .inner-column .image img{
    position:relative;
    width:100%;
    display:block;
  }
  
  .about-section .image-column .inner-column .image .overlay-box{
    position:absolute;
    left:40px;
    bottom:48px;
  }
  
  .about-section .image-column .inner-column .image .overlay-box .year-box{
    position:relative;
    color:#fff;
    font-size:20px;
    font-weight:700;
    line-height:1.4em;
    padding-left:125px;
  }
  
  .about-section .image-column .inner-column .image .overlay-box .year-box .number{
    position:absolute;
    left:0px;
    top:0px;
    width:110px;
    height:110px;
    color:#e75e12;
    font-size:57px;
    font-weight:700;
    line-height:105px;
    text-align:center;
    background-color:#ffffff;
    border:1px solid #000000;
  }
 /* .about-section .btn-style-three:before {
      position: absolute;
      content: '';
      left: 10px;
      top: 10px;
      z-index: -1;
      right: -10px;
      bottom: -10px;
      background: url(https://i.ibb.co/DKn55Qz/pattern-1.jpg) repeat;
  }*/

  .about-section .btn-style-three:hover {
      color: #ffffff;
      background: #e75e12;
  }
  .about-section .btn-style-three {
      position: relative;
      line-height: 24px;
      color: #252525;
      font-size: 15px;
      font-weight: 700;
      background: none;
      display: inline-block;
      padding: 6px 16px;
      background-color: #ffffff;
      text-transform: capitalize;
      border: 2px solid #e75e12;
      font-family: 'Arimo', sans-serif;
	  float:right;
  }
  .sec-title2{
    color:#fff;
  }
  .sec-title {
      position: relative;
      padding-bottom: 9px;
  }
  .sec-title .title {
      position: relative;
      color: #e75e12;
      font-size: 18px;
      font-weight: 700;
      padding-right: 50px;
      margin-bottom: 15px;
      display: inline-block;
      text-transform: capitalize;
  }
  .sec-title .title:before {
      position: absolute;
      content: '';
      right: 0px;
      bottom: 7px;
      width: 40px;
      height: 1px;
      background-color: #bbbbbb;
  }








  .exp-more{
    text-decoration: none;
    margin: 0;
    background-color: #fd5f07;
    border-color: #fd5f07 !important;
    border-width: 2px;
    color: white;
  }
  
  .btn-get-started:hover {
    border: 2px solid #fd5f07 !important;
    color: #fd5f07;
}




/* Slider */
.welcome{
 color: #fd5f07 !important;
 font-size: 40px;
 font-weight: 900;
}
.slider-container{
  padding:1rem;
/*   border:5px solid lightblue; */
}

.slider-item{
  padding:1rem;
}

/* Within Debug mode in Chrome, I found that the arrows were hidden so I adjusted them   */
.slick-next{
  right: -15px;
}

.slick-prev{
  left: -15px;
}


.slick-next:before, .slick-prev:before {
    font-family: slick;
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: #22a6b3;
}

.slick-dots{
  left:0;
/*   bottom:8px; */
}

.slick-dots:active{
  color:white;
}

/*The dots before they are active  */
.slick-dots li button:before {
    font-family: slick;
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: #22a6b3;
}

/* The dot when active */
.slick-dots li.slick-active button:before {
    opacity: .75;
    color: #000;
}

/* Background Image styles */

figcaption{
  color: black;
    text-align: -webkit-center;
    font-size: 21px;
    align-content: end;
    padding: 10px;
}


.bg-image{
  background-size: cover;
  background-position: center;
  background-color:lightblue;
  max-width:100%;
  border-radius: 20px;
}

.bg-image:hover{
  cursor:pointer;
}

.bg-2{
   background-image: url('./images/ai.jpg');
}

.bg-3{
   background-image: url('./images/application-modernization.jpg');
}

.bg-4{
   background-image: url('./images/consulting.jpg');
}

.bg-5{
   background-image: url('./images/digital-workplace.jpg');
}

.bg-6{
   background-image: url('./images/unified-service-management.jpg');
}

.bg-7{
   background-image: url('./images/cybersecurity.jpg');
}

/* .bg-8{
   background-image: url('./img/ser-8.webp');
}

.bg-9{
   background-image: url('./img/ser-3.webp');
}

.bg-10{
   background-image: url('./img/ser-5.webp');
} */

/* .view
{
  position: relative;
  overflow: hidden;

}
.view .mask
{
  position: absolute;
  overflow: hidden;
  width: 80%;
  height: 72%;
  left: 10%;
  top: 7%;
  border:2px solid #fff;
  transition: all 0.5s linear;
  opacity: 0;
}


.view img
{
  position: relative;
  height: auto;
  width: 100%;
  display: block;
}


.view .mask:hover
{
  transform: scale(1);
  opacity: 1
} */






/*Changes the height of the image  */
.landscape{
  padding-bottom:120%;
}

@media (max-width: 600px) { 
  figcaption{
   font-size:0.8rem;
  }
}

.dark-underline{
  display: inline-block;
  position: relative;
  line-height: 1.69231;
  position: relative;
  color: #222;
  text-decoration: none;
  padding-bottom: .4rem;
  
}

.dark-underline::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  border-bottom: 2px solid;
  border-color: currentColor;
  transform: scaleX(0);
  transition: transform .4s;
  transition-timing-function: cubic-bezier(.4,0,.2,1);
  transform-origin: right;
}

.dark-underline:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

#blog{
  background-color: #fd5f07;
  box-shadow: inherit;
  color: white;
}

.more{
  border: 1px solid white;
  background-color: #e75e12;
  color: white;
  border-radius: 30px;
  padding: 15px;
}
.card-body{
  background-color: black;
  color: white;
}
.card{
  background-color: none;
  border: none;
  border-radius: 15px 15px 0px 0px;
}

#industry{
  background-color: rgb(231, 227, 227);
  color: black;
}


.card-home-02 {
  height: 16rem;
  position: relative;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.card-home-02 img {
  width: auto;
  height: 16rem;
  position: absolute;
  bottom: 0;
  right: 0;
}

/*.card-link{
  cursor: default;
}*/

.lazyloaded {
  opacity: 1;
  transition: opacity 400ms;
  transition-delay: 0ms;
}

.card-home-02 .content p {
  font-size: 1.5rem;
  line-height: 2.9rem;
}

.card-home-02 .content * {
  margin-bottom: 0;
}


@media  only screen and (min-width: 1098px){
  li.maroon,li.teallight,li.orange,li.tealdark,li.teal,li.blue{
      -webkit-box-flex: 0 0 33.33% !important;
      -ms-flex: 0 0 33.33% !important;
      flex: 0 0 33.33% !important;
      max-width: 33.33% !important;
  }}
  @media  only screen and (min-width: 1113px){
  .card-home-02 .content {
      padding: 20px 30px !important;
  }}
  .card-home-02 .content p {
  font-size: 1.5rem;
  line-height: 1.8rem;
  }
  .card-home-02--tealdark{background-color:#009CB3 !important;}
  .card-home-02--teallight{background-color:#7AC5C3  !important;}
  .card-home-02--purple{background-color:#666699 !important;}
  .card-home-02--greentelecom{background-color: #acd88a !important;}
  .card-home-02--maroon{background-color: #ff8372!important;}
  .card-home-02--warning{background-color: #ffc107 !important;}
  .card-home-02--teal{background-color: #00adc6  !important;}
  .card-home-02--success{background-color:  #6bbfbc !important;}

  .card-home-02--tealdark:hover{background-color: #26b8ce !important;}
  .card-home-02--teallight:hover {background-color: #81d8d6 !important;} 
  .card-home-02--purple:hover {background-color: #9e56b5 !important;} 
  .card-home-02--greentelecom:hover{background-color: #9df05e !important;}
  .card-home-02--warning:hover{background-color: #daa405 !important;}
  .card-home-02--maroon:hover{background-color: #ff624e!important;}
  .card-home-02--success:hover{background-color:  #5cd1cd !important;}
  .card-home-02--teal:hover{background-color: #048ea3  !important;}
  

  .clients{
    padding: 40px;
    margin: 20px;
  }

  .logobr{
    border: 1px solid gray;
    margin: 15px;
  }



  .link-border {
    display: inline-block;
    position: relative;
    line-height: 1.69231;
    position: relative;
    color: #222;
    text-decoration: none;
    padding-bottom: .4rem;
    border-bottom: 1px solid rgba(34, 34, 34, .2);
  }
  .link-border::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    border-radius: 5px;
    height: 0.05em;
    bottom: 0;
    left: 0;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
    border-bottom: 1px solid #222;
  }
  .link-border:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }


  .client-text{
    text-decoration: underline solid rgb(248, 190, 30) 30%; 
    text-underline-offset: 5px;
    font-style: italic;
}


.lets{
  background-color: #ef9e35;
}

.get{
  padding: 75px;
}


@media all and (max-width:667px){
  .get{
      padding: 10px;
  }
}

.linone{
  list-style: none;
}

.link-underline {
  position: relative;
  text-decoration: none;
  color: #222;
}

.link-underline::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  border-bottom: 1px solid;
  border-color: currentColor;
  transform: scaleX(0);
  transition: transform .4s;
  transition-timing-function: cubic-bezier(.4,0,.2,1);
  transform-origin: right;
}
.link-underline:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.credits {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.credits ul {
  padding: 0px;
  margin: 0px;
}

.credits ul li {
  list-style: none;
  float: left;
  margin-left: auto;
  padding: 0px 5px;
}

.credits ul li a {
  color: #222;
  text-decoration: none;
	font-size:13px;
}

.rights ul {
  padding: 0px;
  margin: 0px;
}

.rights ul li {
  list-style: none;
  
}

.rights ul li a {
 text-decoration: none;
 color: #222;
	font-size:13px;
}

@media all and (max-width:667px){
  .footspace{
      padding-top: 15px;
  }
}

/* @media all and  (max-width: 667px) {
  .credits {  
    text-align: right;
    padding: 2px 0;
    display: flex;
  }
} */

@media all and  (max-width: 667px) {
  .credits {  
    display: flex;
    justify-content: flex-start;
  }
}




.image  {
    max-width: 100%;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.image:hover  {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.footspace h2{ font-size:20px;}


.section-services {
	font-family: "Poppins", sans-serif;
	background-color: #e6edf7;
	color: #202020;
	padding-top: 115px;
    padding-bottom: 120px;
}

.section-services .header-section {
	margin-bottom: 34px;
}

.section-services .header-section .title {
	position: relative;
    padding-bottom: 14px;
    margin-bottom: 25px;
	font-weight: 700;
    font-size: 32px;
}

.section-services .header-section .title:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 3px;
	background-color: #ff4500;
    border-radius: 3px;
}

.section-services .header-section .title:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
    transform: translateX(30px);
	width: 10px;
	height: 3px;
	background-color: #504f93;
    border-radius: 3px;
}

.section-services .header-section .description {
	font-size: 14px;
    color: #282828;
}

.section-services .single-service {
    position: relative;
    margin-top: 30px;
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    overflow: hidden;
}

.section-services .single-service .content {
	position: relative;
	z-index: 20;
}

.section-services .single-service .circle-before {
    position: absolute;
    top: 0;
    right: 0px;
    transform: translate(40%, -40%);
    width: 150px;
    height: 150px;
    background-color: #ff4500;
    border: 6px solid #504f93;
    border-radius: 50%;
    opacity: 0.5;
    z-index: 10;
    transition: all .6s;
}

.section-services .single-service:hover .circle-before {
	width: 100%;
	height: 100%;
	transform: none;
	border: 0;
	border-radius: 0;
	opacity: 1;
}

.section-services .single-service .icon {
	display: inline-block;
	margin-bottom: 26px;
    width: 70px;
    height: 70px;
    background-color: #ff4500;
    border-radius: 5px;
    line-height: 70px;
    text-align: center;
    color: #fff;
    font-size: 30px;
    transition: all .3s;
}

.section-services .single-service:hover .icon {
	background-color: #fff;
	color: #ff4500;
}

.section-services .single-service .title {
    margin-bottom: 18px;
	font-weight: 700;
    font-size: 21px;
    transition: color .3s;
}

.section-services .single-service:hover .title {
	color: #fff;
}

.section-services .single-service .description {
    margin-bottom: 20px;
    font-size: 14px;
    transition: color .3s;
}

.section-services .single-service:hover .description {
	color: #fff;
}

.section-services .single-service a {
	position: relative;
	font-size: 18px;
    color: #202020;
    text-decoration: none;
    font-weight: 500;
    transition: color .3s;
}

.section-services .single-service:hover a {
	color: #fff;
}

.section-services .single-service a:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	background-color: #ff4500;
	transition: background-color .3s;
}

.section-services .single-service:hover a:after {
	background-color: #fff;
}
/* contact */


.contact-info {
  display: inline-block;
  width: 100%;
  text-align: center;
      margin-bottom: 10px;
}
.contact-info-icon {
margin-bottom: 15px;
}
.contact-info-item {
    background: #212529;
    padding: 30px 0px;
    /* min-height: 258px; */
    border-radius: 22px;
}
.contact-page-sec .contact-page-form h2 {
  color: #071c34;
  text-transform: capitalize;
  font-size: 22px;
  font-weight: 700;
}
.contact-page-form .col-md-6.col-sm-6.col-xs-12 {
  padding-left: 0;
}  
.contact-page-form.contact-form input {
  margin-bottom: 5px;
}  
.contact-page-form.contact-form textarea {
  height: 110px;
}
.contact-page-form.contact-form input[type="submit"] {
  background: #071c34;
  width: 150px;
  border-color: #071c34;
}
.contact-info-icon i {
  font-size: 48px;
  color: #fda40b;
}
.contact-info-text p{margin-bottom:0px;}
.contact-info-text h2 {
  color: #fff;
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 10px;
}
.contact-info-text span {
  color: #999999;
  font-size: 16px;
  display: inline-block;
  width: 100%;
}
.touch{
  color: #999999;
}
.touch:hover{
  color: #999999;
}

.contact-page-form input {
  background: #f9f9f9 none repeat scroll 0 0;
  border: 1px solid #f9f9f9;
  margin-bottom: 20px;
  padding: 12px 16px;
  width: 100%;
  border-radius: 4px;
}

.contact-page-form .message-input {
display: inline-block;
width: 100%;
padding-left: 0;	
}
.single-input-field textarea {
  background: #f9f9f9 none repeat scroll 0 0;
  border: 1px solid #f9f9f9;
  width: 100%;
  height: 120px;
  padding: 12px 16px;
  border-radius: 4px;
}
.single-input-fieldsbtn input[type="submit"] {
  background: #ff4500 none repeat scroll 0 0;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  padding: 10px 0;
  text-transform: capitalize;
  width: 150px;
  margin-top: 20px;
  font-size: 16px;
}
.single-input-fieldsbtn input[type="submit"]:hover{background:#071c34;transition: all 0.4s ease-in-out 0s;border-color:#071c34}
.single-input-field  h4 {
  color: #464646;
  text-transform: capitalize;
  font-size: 14px;
}
.contact-page-form {
  display: inline-block;
  width: 100%;
  margin-top: 0px;
border: 1px solid #0000004d;
    padding: 20px;
    border-radius: 20px;
}

.contact-page-map {
  margin-top: 36px;
}
.contact-page-form form {
    padding: 20px 15px 0;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
    border-top-width: 0px;
    border-top-style: none;
    border-top-color: currentcolor;
  border-top: 1px solid rgba(0, 0, 0, 0.9)!important;
}
@media all and  (max-width: 667px) {.dm{display:none!important;}}