/* -------------------------------- 

Primary style

-------------------------------- */
*,
*::after,
*::before {
  box-sizing: border-box;
}
/*   
  a {
    color: #96c03d;
    text-decoration: none;
  } */

/* -------------------------------- 
  
  Basic Style
  
  -------------------------------- */
.cd-breadcrumb,
.cd-multi-steps {
  /* padding: 0.5em 1em; */
  /* margin: 1em auto; */
  border-radius: 0.25em;
}
.cd-breadcrumb::after,
.cd-multi-steps::after {
  clear: both;
  content: "";
  display: table;
}
.cd-breadcrumb li,
.cd-multi-steps li {
  display: inline-block;
  float: left;
  margin: 0.5em 0;
}
.cd-breadcrumb li::after,
.cd-multi-steps li::after {
  /* this is the separator between items */
  display: inline-block;
  content: "\00bb";
  margin: 0 0.6em;
  color: #959fa5;
}
.cd-breadcrumb li:last-of-type::after,
.cd-multi-steps li:last-of-type::after {
  /* hide separator after the last item */
  display: none;
}
.cd-breadcrumb li > *,
.cd-multi-steps li > * {
  /* single step */
  display: inline-block;
  font-size: 1.4rem;
  color: #2c3f4c;
}
.cd-breadcrumb li.current > *,
.cd-multi-steps li.current > * {
  /* selected step */
  color: #96c03d;
}
.no-touch .cd-breadcrumb a:hover,
.no-touch .cd-multi-steps a:hover {
  /* steps already visited */
  color: #96c03d;
}
.cd-breadcrumb.custom-separator li::after,
.cd-multi-steps.custom-separator li::after {
  /* replace the default separator with a custom icon */
  content: "";
  height: 16px;
  width: 16px;
  background: url(https://codyhouse.co/demo/breadcrumbs-multi-steps-indicator/img/cd-custom-separator.svg)
    no-repeat center center;
  vertical-align: middle;
}
.cd-breadcrumb.custom-icons li > *::before,
.cd-multi-steps.custom-icons li > *::before {
  /* add a custom icon before each item */
  content: "";
  display: inline-block;
  height: 20px;
  width: 20px;
  margin-right: 0.4em;
  margin-top: -2px;
  background: url(https://codyhouse.co/demo/breadcrumbs-multi-steps-indicator/img/cd-custom-icons-01.svg)
    no-repeat 0 0;
  vertical-align: middle;
}
.cd-breadcrumb.custom-icons li:not(.current):nth-of-type(2) > *::before,
.cd-multi-steps.custom-icons li:not(.current):nth-of-type(2) > *::before {
  /* change custom icon using image sprites */
  background-position: -20px 0;
}
.cd-breadcrumb.custom-icons li:not(.current):nth-of-type(3) > *::before,
.cd-multi-steps.custom-icons li:not(.current):nth-of-type(3) > *::before {
  background-position: -40px 0;
}
.cd-breadcrumb.custom-icons li:not(.current):nth-of-type(4) > *::before,
.cd-multi-steps.custom-icons li:not(.current):nth-of-type(4) > *::before {
  background-position: -60px 0;
}
.cd-breadcrumb.custom-icons li.current:first-of-type > *::before,
.cd-multi-steps.custom-icons li.current:first-of-type > *::before {
  /* change custom icon for the current item */
  background-position: 0 -20px;
}
.cd-breadcrumb.custom-icons li.current:nth-of-type(2) > *::before,
.cd-multi-steps.custom-icons li.current:nth-of-type(2) > *::before {
  background-position: -20px -20px;
}
.cd-breadcrumb.custom-icons li.current:nth-of-type(3) > *::before,
.cd-multi-steps.custom-icons li.current:nth-of-type(3) > *::before {
  background-position: -40px -20px;
}
.cd-breadcrumb.custom-icons li.current:nth-of-type(4) > *::before,
.cd-multi-steps.custom-icons li.current:nth-of-type(4) > *::before {
  background-position: -60px -20px;
}
@media only screen and (min-width: 768px) {
  .cd-breadcrumb,
  .cd-multi-steps {
    padding: 0 1.2em;
  }

  .cd-breadcrumb li::after,
  .cd-multi-steps li::after {
    margin: 0 1em;
  }
  .cd-breadcrumb li > *,
  .cd-multi-steps li > * {
    font-size: 1.6rem;
  }
}

/* -------------------------------- 
  
  Custom icons hover effects - breadcrumb and multi-steps
  
  -------------------------------- */
@media only screen and (min-width: 768px) {
  .no-touch
    .cd-breadcrumb.triangle.custom-icons
    li:first-of-type
    a:hover::before,
  .cd-breadcrumb.triangle.custom-icons li.current:first-of-type em::before,
  .no-touch
    .cd-multi-steps.text-center.custom-icons
    li:first-of-type
    a:hover::before,
  .cd-multi-steps.text-center.custom-icons li.current:first-of-type em::before {
    /* change custom icon using image sprites - hover effect or current item */
    background-position: 0 -40px;
  }
  .no-touch
    .cd-breadcrumb.triangle.custom-icons
    li:nth-of-type(2)
    a:hover::before,
  .cd-breadcrumb.triangle.custom-icons li.current:nth-of-type(2) em::before,
  .no-touch
    .cd-multi-steps.text-center.custom-icons
    li:nth-of-type(2)
    a:hover::before,
  .cd-multi-steps.text-center.custom-icons
    li.current:nth-of-type(2)
    em::before {
    background-position: -20px -40px;
  }
  .no-touch
    .cd-breadcrumb.triangle.custom-icons
    li:nth-of-type(3)
    a:hover::before,
  .cd-breadcrumb.triangle.custom-icons li.current:nth-of-type(3) em::before,
  .no-touch
    .cd-multi-steps.text-center.custom-icons
    li:nth-of-type(3)
    a:hover::before,
  .cd-multi-steps.text-center.custom-icons
    li.current:nth-of-type(3)
    em::before {
    background-position: -40px -40px;
  }
  .no-touch
    .cd-breadcrumb.triangle.custom-icons
    li:nth-of-type(4)
    a:hover::before,
  .cd-breadcrumb.triangle.custom-icons li.current:nth-of-type(4) em::before,
  .no-touch
    .cd-multi-steps.text-center.custom-icons
    li:nth-of-type(4)
    a:hover::before,
  .cd-multi-steps.text-center.custom-icons
    li.current:nth-of-type(4)
    em::before {
    background-position: -60px -40px;
  }
}

/* new */

/* bread */
/* -------------------------------- 

Primary style

-------------------------------- */

.cd-breadcrumb::after,
.cd-multi-steps::after {
  clear: both;
  content: "";
  display: table;
}
.cd-breadcrumb li,
.cd-multi-steps li {
  display: inline-block;
  float: left;
  margin: 0.5em 0;
}
.cd-breadcrumb li::after,
.cd-multi-steps li::after {
  /* this is the separator between items */
  display: inline-block;
  content: "\00bb";
  margin: 0 0.6em;
  color: #959fa5;
}
.cd-breadcrumb li:last-of-type::after,
.cd-multi-steps li:last-of-type::after {
  /* hide separator after the last item */
  display: none;
}
.cd-breadcrumb li > *,
.cd-multi-steps li > * {
  /* single step */
  display: inline-block;
  font-size: 1.4rem;
  color: #000000;
}
.cd-breadcrumb li.current > *,
.cd-multi-steps li.current > * {
  /* selected step */
  color: #96c03d;
}
.no-touch .cd-breadcrumb a:hover,
.no-touch .cd-multi-steps a:hover {
  /* steps already visited */
  color: #96c03d;
}
.cd-breadcrumb.custom-separator li::after,
.cd-multi-steps.custom-separator li::after {
  /* replace the default separator with a custom icon */
  content: "";
  height: 16px;
  width: 16px;
  background: url(https://codyhouse.co/demo/breadcrumbs-multi-steps-indicator/img/cd-custom-separator.svg)
    no-repeat center center;
  vertical-align: middle;
}
.cd-breadcrumb.custom-icons li > *::before,
.cd-multi-steps.custom-icons li > *::before {
  /* add a custom icon before each item */
  content: "";
  display: inline-block;
  height: 20px;
  width: 20px;
  margin-right: 0.4em;
  margin-top: -2px;
  background: url(https://codyhouse.co/demo/breadcrumbs-multi-steps-indicator/img/cd-custom-icons-01.svg)
    no-repeat 0 0;
  vertical-align: middle;
}
.cd-breadcrumb.custom-icons li:not(.current):nth-of-type(2) > *::before,
.cd-multi-steps.custom-icons li:not(.current):nth-of-type(2) > *::before {
  /* change custom icon using image sprites */
  background-position: -20px 0;
}
.cd-breadcrumb.custom-icons li:not(.current):nth-of-type(3) > *::before,
.cd-multi-steps.custom-icons li:not(.current):nth-of-type(3) > *::before {
  background-position: -40px 0;
}
.cd-breadcrumb.custom-icons li:not(.current):nth-of-type(4) > *::before,
.cd-multi-steps.custom-icons li:not(.current):nth-of-type(4) > *::before {
  background-position: -60px 0;
}
.cd-breadcrumb.custom-icons li.current:first-of-type > *::before,
.cd-multi-steps.custom-icons li.current:first-of-type > *::before {
  /* change custom icon for the current item */
  background-position: 0 -20px;
}
.cd-breadcrumb.custom-icons li.current:nth-of-type(2) > *::before,
.cd-multi-steps.custom-icons li.current:nth-of-type(2) > *::before {
  background-position: -20px -20px;
}
.cd-breadcrumb.custom-icons li.current:nth-of-type(3) > *::before,
.cd-multi-steps.custom-icons li.current:nth-of-type(3) > *::before {
  background-position: -40px -20px;
}
.cd-breadcrumb.custom-icons li.current:nth-of-type(4) > *::before,
.cd-multi-steps.custom-icons li.current:nth-of-type(4) > *::before {
  background-position: -60px -20px;
}
@media only screen and (min-width: 768px) {
  .cd-breadcrumb,
  .cd-multi-steps {
    padding: 0 1.2em;
  }

  .cd-breadcrumb li::after,
  .cd-multi-steps li::after {
    margin: 0 1em;
  }
  .cd-breadcrumb li > *,
  .cd-multi-steps li > * {
    font-size: 16px;
    /* font-weight: 800; */
  }
}

@media (max-width: 767px) {
  .cd-breadcrumb li > *,
  .cd-multi-steps li > * {
    display: inline-block;
    font-size: 14px;
    color: #000000;
  }

  .cd-breadcrumb,
  .cd-multi-steps {
    padding: 0px !important;
    margin: 0px auto;
  }

  .contact-info  h1{
  font-size: 35px;
  text-align: center;
  }
  .contact-info:before{
    display: none;
  }

  .contact-form:before{
    display: none;
  }



.form_container{
  background-color: #fff !important;
}

.form {
  box-shadow: none !important;
}
}

@media (max-width: 455px) {
  .cd-breadcrumb li,
  .cd-multi-steps li {
    margin: 0em 0 !important;
  }
}

/* styling  */
.theme-title h6 {
  position: relative;
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  /* background: linear-gradient(115deg, #f97794, #6200ff, #3498db); */
  background: linear-gradient(115deg, #000000, #464a4e, #ffffff);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.themeht-btn {
  position: relative;
  display: inline-block;
  padding: 10px 25px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(115deg, #000000, #464a4e, #ffffff);
  color: #fff;
  -webkit-transition: all 0.3s cubic-bezier(0.02, 0.54, 0.58, 1);
  -o-transition: all 0.3s cubic-bezier(0.02, 0.54, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.02, 0.54, 0.58, 1);
  font-weight: 600;
  background-size: 150% 100%;
}

.themeht-btn:hover {
  color: #fff;
}

.serviceBriefImgContainer > img {
  /* filter: drop-shadow(1px 2px 3px black); */
}

/* how we can help you style */

.service-item.style-1 {
  position: relative;
  z-index: 9;
  padding: 50px;
  margin-top: 150px;
  cursor: pointer;
}

.service-item.style-1 .service-images {
  width: 200px;
  margin: 0 auto;
  margin-top: -150px;
  filter: drop-shadow(1px 2px 3px black);
}

.service-item.style-1:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: -9;
  transform: skewY(10deg);
  border-radius: 30px;
  box-shadow: 0 10px 35px 0
    rgba(92.99999999999996, 72.00000000000001, 223, 0.08);
  /* background-color: #000000; */
  transition: all 0.5s ease-in-out;
  /* box- */
}

.service-item.style-1 .service-desc {
  padding-top: 30px;
}

.service-item.style-1:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(25px) saturate(200%);
  -webkit-backdrop-filter: blur(25px) saturate(200%);
  background-color: rgba(1, 1, 1, 0.27);
  border-radius: 12px;
  border: 1px solid rgba(209, 213, 219, 0.3);



  z-index: -9;
  transform: scale(0) skewY(10deg);
  border-radius: 30px;
  transition: all 0.5s ease-in-out;
}

.service-item.style-1:hover:after {
  transform: scale(1) skewY(10deg);
}


.service-item.style-1:hover {
  color: #000000;
}

/* css for circle box */
.tt-services-thumbnail-inner .services-img {
  width: 75px;
  height: 75px;
  margin: 0 0 20px;
}

.tt-services-thumbnail-inner .services-img {
  position: relative;
  width: 90px;
  height: 90px;
  background-color: #fff !important;
  box-shadow: 1px 0px 5px gray;
  border-radius: 50%;
  display: flex;
  align-items: center;
  /* align-self: center; */
  margin: 20px auto;
  justify-content: center;
}

.tt-services-thumbnail-inner .services-img img {
  transform: translateX(40px);
  width: 70%;
  transition: all 0.5s ease-in-out;
  opacity: 0.8;
}

.tt-services-thumbnail-inner:hover img {
  transform: translateX(0px);
}

.title-content-wrap h4 {
  font-family: "Heebo", sans-serif !important;
  font-size: 18px !important;
  width: 80% !important;
  margin: 0px auto;
  opacity: 0.8 !important;
}

/* services we offer */
.ourServicesContainer {
  box-shadow: 0px 0.2px 9px rgba(0, 0, 0, 0.3);
  width: 80%;
  overflow: hidden;
  border-radius: 12px;
  margin: 0 auto;
  margin-bottom: 40px;
  transition: all .4s ease;
}

.item_meta,.item_meta_manufacturing,.item_meta_utility,.item_meta_automative,.item_meta_travel ,.item_meta_tech,
.item_meta_education,.item_meta_real ,.item_meta_retail, .item_meta_banking{
  width: 100%;
  background-color: #fff;
  clip-path: polygon(50% 0%, 100% 18%, 100% 100%, 0 100%, 0 18%);
  padding: 50px 20px;
  padding-bottom: 10px;
  margin-top: -25%;
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
}

.item_meta::before,.item_meta_manufacturing::before,
.item_meta_utility::before,.item_meta_automative::before,
.item_meta_travel::before,.item_meta_tech::before,
.item_meta_education::before,.item_meta_real::before,.item_meta_retail::before ,.item_meta_banking::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #FD9A61;
  clip-path: polygon(50% 0%, 100% 18%, 100% 100%, 0 100%, 0 18%);
  position: absolute;
  top: 12px;
  left: 0px;
  z-index: -1;
}
.item_meta_real::before{
  background-color: #58C4EB;
}
.item_meta_retail::before{
  background-color:#72294E ;
}
.item_meta_manufacturing::before{
  background-color: #ECA620;

}

.item_meta_utility::before{
  background-color:#11879e ;
}

.item_meta_automative::before{
  background-color: #48B0AC;
}

.item_meta_travel::before{
  background-color: #E997AD;
}

.item_meta_tech::before{
  background-color: #6B4A67;
}

.item_meta_education::before{
  background-color: #E62443;
}
.item_meta_banking::before{
  background-color: #D9AE79;
}


.ourServicesContainer:hover{
 cursor: pointer;
 transform: scale(1.05);
 box-shadow: inset 2px 3px 5px black;
}

.ourServicesIcon {
  width: 70px;
  height: 70px;
  background-color: #383636;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: auto;
  margin-top: -60px;
  z-index: 12;
  top: -80px;
}

.ourServicesIcon::before {
  width: 70px;
  height: 70px;
  background-color: #ffffff;
  content: "";
  position: absolute;
  top: -5px;
  border-radius: 100%;
  z-index: -21;
}

.ourServicesIcon img {
  width: 50px;
}

.item--title {
  position: relative;
  padding-bottom: 14px;
}

.item--title a {
  font-size: 23px;
  text-decoration: none;
  color: #000000 !important;
}

.item--title:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background-color: #000000;
}

.serviceDetailsContainer ol li span,
.serviceDetailOl span {
  color: black;
  font-weight: bolder;
  opacity: 0.8;
}

.setsApart .serviceDetailOl span {
  color: #000;
  font-weight: 600;
  opacity: 0.8;
  font-style: italic;
  letter-spacing: 0.5px;
}

.setsApartHeading {
  color: #0a2157;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}

/* another services style */
.container1 {
  width: 100%;
  /* height: 480px; */
}

#learn-more {
  fill-opacity: 0;
  fill: #fff;
  stroke: #fff;
  stroke-width: 2;
  border-radius: 5px;
  stroke-linejoin: round;
  transition: all 250ms ease-in;
  cursor: pointer;
}
#learn-more:hover {
  fill-opacity: 1;
}
#learn-more:hover ~ .learn-more-text {
  fill: #000;
}

.learn-more-text {
  font-family: "Roboto";
  fill: #fff;
  pointer-events: none;
  font-size: 14px;
  transition: all 250ms ease-in;
}

.center {
  fill: #000;
}

.pointer {
  fill: #fff;
  stroke: #000;
  stroke-width: 2;
}

.nav-copy {
  font-family: "Roboto";
  fill: #fff;
  fill-opacity: 1;
  transition: all 250ms ease-in;
}
.nav-copy.changing {
  fill-opacity: 0;
}

.service {
  cursor: pointer;
}
.service text {
  /* font-size: 10px; */
  font-family: "Roboto";
  text-anchor: middle;
}
.service .icon-wrapper {
  transform-origin: 50% 50%;
}
.service .icon-wrapper,
.service .icon-wrapper > * {
  transition: all 250ms ease-in;
}
.service circle {
  fill: #000;
}
.service circle.shadow {
  fill-opacity: 0;
}
.service use {
  fill: #fff;
}
.service text {
  fill: #4d4d4d;
}
.service.active .icon-wrapper,
.service:hover .icon-wrapper {
  transform: scale(1.15) translateY(-5px);
}
.service.active .icon-wrapper,
.service.active .icon-wrapper > *,
.service:hover .icon-wrapper,
.service:hover .icon-wrapper > * {
  transition: all 250ms ease-out;
}
.service.active .icon-wrapper circle.shadow,
.service:hover .icon-wrapper circle.shadow {
  fill-opacity: 0.4;
}
.service.active text,
.service:hover text {
  fill: #000;
  font-weight: bold;
  /* font-size: 10px; */
}

/* image data show */

.content {
  position: relative;
  width: 100%;

  margin: auto;
  overflow: hidden;
  margin-bottom: 20px;
  /* background-color: red; */
  display: flex;
  align-items: center;
  justify-content: end;
}

.content-image {
  width: 100%;
  /* margin-right:-30px; */
  /* filter: drop-shadow(1px 2px 3px black); */
}

.content-details {
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.serviceDetailOl,
.serviceDetailOl > li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.serviceDetailOl {
  /* margin: 2em 0; */
}
.serviceDetailOl > li {
  margin: 0.5em;
  margin-left: 35px;
  font-size: 15px;
}

.setsApart .serviceDetailOl li {
  margin: 0.5em 0.7em;
}
.serviceDetailOl > li:before {
  content: "\f058";
  font-family: "FontAwesome";
  float: left;
  margin-left: -1.5em;
  color: #30324b;
}

.setsApart .serviceDetailOl > li:before {
  content: "\f005";
  font-family: "FontAwesome";
  float: left;
  margin-left: -1.5em;
  color: #ecb567;
  display: none;
}

.serviceDetailsContainer > h1 {
  font-size: 28px;
}

.serviceDetailsContainer p {
  font-size: 16px;
  margin-top: 10px;
}

/* contact style */
.form_container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 2rem;
  background-color: #fafafa;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form {
  width: 100%;
  max-width: 820px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.contact-form {
  background-color: #3a3c3e;
  position: relative;
}

.circle {
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 20%, #3a4442);
  position: absolute;
}

.circle.one {
  width: 130px;
  height: 130px;
  top: 130px;
  right: -40px;
}

.circle.two {
  width: 80px;
  height: 80px;
  top: 10px;
  right: 30px;
}

.contact-form:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: #3a3c3e;
  transform: rotate(45deg);
  top: 50px;
  left: -13px;
}

.contact-form form {
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}

.title {
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.input-container {
  position: relative;
  margin: 1rem 0;
}

.input {
  width: 100%;
  outline: none;
  border: 2px solid #fafafa;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 25px;
  transition: 0.3s;
}

textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 22px;
  resize: none;
  overflow-y: auto;
}

.input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #fafafa;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}

.btn {
  padding: 0.6rem 1.3rem;
  background-color: #fff;
  border: 2px solid #fafafa;
  font-size: 0.95rem;
  color: #000000;
  line-height: 1;
  border-radius: 25px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
}

.btn:hover {
  background-color: transparent;
  color: #fff;
}

.input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.input-container span:before,
.input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: #3a3c3e;
  top: 50%;
  transform: translateY(-50%);
}

.input-container span:before {
  left: 50%;
}

.input-container span:after {
  right: 50%;
}

.input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

.input-container.focus span:before,
.input-container.focus span:after {
  width: 50%;
  opacity: 1;
}

.contact-info {
  padding: 2.3rem 2.2rem;
  position: relative;
  border-left: 13px solid #3a3c3e;
}

.contact-info .title {
  color: #1abc9c;
}

.text {
  color: #333;
  margin: 1.5rem 0 2rem 0;
}

.information {
  display: flex;
  color: #555;
  margin: 0.7rem 0;
  align-items: flex-start;
  font-size: 0.95rem;
}

.icon {
  width: 28px;
  margin-right: 0.7rem;
}

.social-media {
  padding: 2rem 0 0 0;
}

.social-media p {
  color: #333;
}

.social-icons {
  display: flex;
  margin-top: 0.5rem;
}

.social-icons a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: linear-gradient(45deg, #7e7e7e, #212529);
  color: #fff;
  text-align: center;
  line-height: 35px;
  margin-right: 0.5rem;
  transition: 0.3s;
  cursor: pointer !important;
}

.social-icons a i {
  cursor: pointer !important;
}

.social-icons a:hover {
  transform: scale(1.05);
}

.contact-info:before {
  content: "";
  position: absolute;
  width: 210px;
  height: 200px;
  border: 22px solid #3a3c3e;
  border-radius: 50%;
  bottom: -50px;
  right: 20px;
  top: 280px;
  opacity: 0.6;
  z-index: -1;
}

.big-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  z-index: 11111;
  /* background: linear-gradient(to bottom, #343535, #000000); */
  bottom: 43%;
  right: 48%;
  transform: translate(-40%, 38%);
}

.big-circle:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  /* background-color: #fafafa; */
  border-radius: 50%;
  top: calc(50% - 180px);
  left: calc(50% - 180px);
}

.square {
  position: absolute;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(181%, 11%);
  opacity: 0.2;
}
@media (max-width:992px) {
  .ourServicesContainer{
    width: 100%;
  }
}

@media (max-width: 850px) {
  .form {
    grid-template-columns: 1fr;
  }


  .contact-info:before {
    bottom: initial;
    top: -75px;
    right: 65px;
    transform: scale(0.95);
  }

  .contact-form:before {
    top: -13px;
    left: initial;
    right: 70px;
  }

  .square {
    transform: translate(140%, 43%);
    height: 350px;
  }

  .big-circle {
    bottom: 75%;
    transform: scale(0.9) translate(-40%, 30%);
    right: 50%;
  }

  .text {
    margin: 1rem 0 1.5rem 0;
  }

  .social-media {
    padding: 1.5rem 0 0 0;
  }
}

@media (max-width: 480px) {
  .contact-info:before {
    display: none;
  }

  .square,
  .big-circle {
    display: none;
  }

  form,
  .contact-info {
    padding: 1.7rem 0rem;
  }

  .text,
  .information,
  .social-media p {
    font-size: 0.8rem;
  }

  .title {
    font-size: 1.15rem;
  }

  .social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .icon {
    width: 23px;
  }

  .input {
    padding: 0.45rem 1.2rem;
  }

  .btn {
    padding: 0.45rem 1.2rem;
  }
}

/* contact btn style */
.contact-btn-container {
  display: flex;
  align-items: center;
  display: inline-block;
}

.contact-btn-container input {
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
}

.contact-btn-container:hover input {
  color: #fff;
}

.information p {
  margin-top: 1px;
}

/* making responsive contact form */
@media (max-width: 2509px) {
  .big-circle {
    transform: translate(-44%, 36%);
  }
}

@media (max-width: 2243px) {
  .big-circle {
    transform: translate(-43%, 36%);
  }
}

@media (max-width: 1935px) {
  .big-circle {
    transform: translate(-42%, 34%);
  }
}

@media (max-width: 1724px) {
  .big-circle {
    transform: translate(-41%, 34%);
  }
}

@media (max-width: 1484px) {
  .big-circle {
    transform: translate(-40%, 38%);
  }
}

@media (max-width: 1275px) {
  .big-circle {
    transform: translate(-39%, 38%);
  }
}

@media (max-width: 767px) {
  .tt-services-thumbnail-inner .services-img img {
    transform: translateX(0px);
  }
  .ourServicesContainer{
    width: 80%;
  }

  .tt-services-thumbnail-inner .services-img {
    width: 80px;
    height: 80px;
  }

  .title-content-wrap h4 {
    font-size: 16px !important;
  }
  .services_graphics {
    width: 100% !important;
}
}

/* services graphics style start */
.services_graphics {
  width: 80%;
  margin: 10px auto;
  display: block;
}

.serviceDetailOl i {
  font-size: 20px;
  padding-right: 7px;
  /* margin-left: 5px; */
}

/* load more style */
.content1{
  display: none;
}

.content2{
  display: none;
}

#loadMore,#loadMore2 {
width: 200px;
color: #fff;
display: block;
text-align: center;
margin: 20px auto;
padding: 10px;
border-radius: 10px;
border: 1px solid transparent;
background-color: rgb(17, 17, 17);
transition: .3s;
}
#loadMore:hover , #loadMore2:hover {
color:  rgb(17, 17, 17) !important;
background-color: #fff;
border: 1px solid  rgb(17, 17, 17);
text-decoration: none;
}
.noContent {
color: #000 !important;
background-color: transparent !important;
pointer-events: none;
}

/* contact form responsive */
@media (max-width:991px) {
  .contact-info {
    border-left: none;
}

.form_container {
  padding: 2rem 0rem;
}

.form {
  border-radius: 0px;
}
}

/* sidebar form start */
.sidebar-contact{
  position:fixed;
  top:50%;
  right:-350px;
  transform:translateY(-50%);
  width:350px;
  height:auto;
  padding:20px;
  background:#fff;
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
  box-sizing:border-box;
  transition:0.5s;
  z-index: 1114;
  border-radius: 20px 0px 0px 20px;
}
.sidebar-contact.active{
  right:0;
}
.sidebar-contact input,
.sidebar-contact textarea{
  width:100%;
  height:36px;
  padding:5px;
  margin-bottom:10px;
  box-sizing:border-box;
  border:1px solid rgba(0,0,0,.5);
  outline:none;
  border-radius: 5px;
}
.sidebar-contact h2{
  margin:0 0 20px;
  padding:0;
}
.sidebar-contact textarea{
  height:60px;
  resize:none;
}

.sidebar-contact .contact-btn-container{
 background-color: #000;
}

.sidebar-contact i{
  color: #FFF;
}
.sidebar-contact input[type="submit"]{
  color:#ffffff;
  cursor:pointer;
  font-size:18px;
  width: unset;
  height:unset;
  padding:0px 5px;
  margin-bottom: 0px;
  box-sizing: border-box;
  border: 1px solid rgba(0,0,0,.5);
  outline: none;
  border-radius: 5px;
}



.toggle{
  position:absolute;
  text-align:center;
  cursor:pointer;
  background:rgb(0, 0, 0);
  color: #fff;
  top:40%;
  left:-70px;
  transform: rotate(90deg);
  padding: 8px 15px;
  border-radius:0px  0px 10px 10px;
}

.toggle h6{
    font-size:12px;
  margin-bottom: .5px;
}
.toggle h6 i{
  padding-right: 8px;
}

@media(max-width:768px)
{
  .sidebar-contact{
    width:100%;
    height:100%;
    right:-100%;
  }
  .sidebar-contact .toggle{
    top:50%;
    transform:translateY(-50%) rotate(90deg);
    transition:0.5s;

  }
  .sidebar-contact.active .toggle
  {
    top: 24px;
    left: 34px;
    transform:translateY(0);
  border-radius:10px;

  }

  .sidebar-contact.active .toggle h6{
    display: none;
  }
 .toggle.active::before{
    content:'\f00d';
    font-family:fontAwesome;
  font-size:18px;
  color:#ffffff;
  }
  .scroll{
    width:100%;
    height:100%;
    overflow-y:auto;
  }
}
@media (max-width:850px){
  .contact-info{
    display: none;
  }

  .contact-form {
    background-color: #ffffff;
}

.title {
  color: #000;
  font-weight: 800;
 text-align: center;
 font-size:23px;
}

.input {
  border: 2px solid #000000;
  color: #000000;
}

.input-container label {
  color: #1d1c1c;
  background-color: #fff;
}

.btn {
  background-color: #000;
  border: 2px solid #000000;
  color: #ffffff;
}
.contact-btn-container input {
  color: #fff;
}


.form_container {
  margin: 10px auto;
  min-height:unset;
  padding: .02rem 0rem;

}

.contact-form form {
  padding: 2.3rem 2rem;
  border: 1px solid;
  margin: 20px 10px;
  border-radius: 12px;
}

.circle.one,.circle.two {
  display: none;
}

}