/*
Theme Name: Pisole
Author: pixydrops
Author URI: https://themeforest.net/user/pixydrops
Description: Pisole - Digital Creative Agency Html Template 
Version: 1.0.0
*/
/*CSS Table Of Content Ends Here*/
@import url('https://fonts.googleapis.com/css2?family=Edu+NSW+ACT+Cursive:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');

:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme: #ed3b3b;
  --theme2: #ed3b3b;
  --header: #171717;
  --text: #777777;
  --border: #d7d7d7;
  --border-2: #D4DCED;
  --bg: #F3F7FB;
  --box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
}
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1400px;
}
.theme-btn {
    background: linear-gradient(135deg, rgba(237, 59, 59, 1) 0%, rgb(166 6 6 / 84%) 77%);
    color: var(--white);
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 29px;
    border-radius: 0;
    /* text-transform: uppercase; */
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
    line-height: 1;
    letter-spacing: 0;
    font-family: "Poppins", sans-serif;
    text-align: center;
    border-radius: 2px;
    margin-right: 6px;
    margin-top: 10px;
}
.nice-select:after {
    border-bottom: 2px solid #7b7c98;
    border-right: 2px solid #7b7c98;
    content: '';
    display: block;
    margin-top: -9px;
    pointer-events: none;
    position: absolute;
    right: 27px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 11px;
}
.theme-btn::before {
  content: "";
  background-color: var(--header);
  width: 0;
  height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}
.theme-btn::after {
  content: "";
  background-color: var(--header);
  width: 0;
  height: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}
.theme-btn:hover {
  color: var(--white);
}
.theme-btn:hover::before, .theme-btn:hover::after {
  width: 100%;
}

.link-btn {
  text-transform: uppercase;
  color: var(--text);
  font-weight: 500;
  display: inline-block;
  font-size: 12px;
}
.link-btn i {
  margin-right: 5px;
}
.link-btn:hover {
  color: var(--header);
}


/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 28px;
  color: var(--text);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--white);
  outline: none;
}

input {
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /*font-family: "Questrial", sans-serif !important;*/
  margin: 0px;
  padding: 0;
  color: var(--header);
  text-transform: uppercase;
  transition: all 0.4s ease-in-out;
}

h1 {
  font-size: 110px;
  font-weight: 700;
  line-height: 123%;
}

h2 {
    font-size: 40px;
    font-weight: 700;
}

/*HOME*/
.header-logo img {
    width: 150px;
}

.container-card {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;

  .card {
    flex: 1;
    transition: all 1s ease-in-out;
    height: 75vmin;
    position: relative;
    overflow: hidden;
    .card__head {
      color: black;
      background: rgba(255, 30, 173, 0.75);
      padding: 0.5em;
      transform: rotate(-90deg);
      transform-origin: 0% 0%;
      transition: all 0.5s ease-in-out;
      min-width: 100%;
      text-align: center;
      position: absolute;
      bottom: 0;
      left: 0;
      font-size: 1em;
      white-space: nowrap;
    }
    

    &:hover {
      flex-grow: 10;
      img {
        filter: grayscale(0);
      }
      .card__head {
        text-align: center;
        top: calc(100% - 2em);
        color: white;
        background: rgba(0, 0, 0, 0.5);
        font-size: 2em;
        transform: rotate(0deg) skew(-5deg);
      }
    }
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 1s ease-in-out;
    }
    &:not(:nth-child(10)) {
      margin-right: 1em;
    }
  }
}
.card-icon {
    background: #fff;
    z-index: 9;
    width: 70px !important;
    position: relative;
    border-radius: 100px;
    padding: 7px;
}
.card-wrapper {
    position: absolute;
    top: auto;
    padding: 12px;
    z-index: 9;
}
.card-wrapper .card-content h3 {
    color: #fff;
    text-transform: capitalize;
    font-size: 20px;
}
.container-card .card .card-wrapper .card-content {
    opacity: 0;
    margin-top: 20px;
    transition: all 1s ease-in-out;
}
.container-card .card:hover .card-wrapper .card-content {
    opacity: 1;
    transition: all 1s ease-in-out;
}
.card:before {
    position: absolute;
    content: '';
    background: #27272ec4;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 9;
}

.container-card .card:hover:before {
    position: absolute;
    content: '';
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 9;
}
.card-content p {
    color: #fff !important;
    margin: 8px 0px;
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 15px;
}
img.icon-box-hover {
    filter: grayscale(1) !important;
}
.experience-tab-content {
    min-height: 150px;
}

@media (max-width: 1199px) {
  h2 {
    font-size: 42px;
  }
}
@media (max-width: 767px) {

  h2 {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
}
@media (max-width: 575px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
}

h5 {
  font-size: 18px;
  font-weight: 700;
}

h6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 145%;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: #ed3b3b;
  font-weight: 500;
  transition: all 0.4s ease-in-out;
}
p {
    margin: 0px;
    transition: all 0.4s ease-in-out;
    font-size: 15px !important;
    line-height: 25px;
    color:#3e3e3e;
}
span {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

.about-wrapper .about-image {
  position: relative;
  max-width: 475px;
}
@media (max-width: 1199px) {
  .about-wrapper .about-image {
    max-width: 900px;
  }
}
.about-wrapper .about-image img {
  width: 100%;
  height: 100%;
}
.about-wrapper .about-image .left-shape {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}
p.toggle-text {
    min-height: auto !important;
}
.about-wrapper .about-image .about-image-2 {
  position: absolute;
  bottom: 0;
  right: -28%;
}
@media (max-width: 1199px) {
  .about-wrapper .about-image .about-image-2 {
    right: 0;
  }
}
.about-wrapper .about-image .about-image-2 .title {
  position: absolute;
  right: 0;
  top: -115px;
}
@media (max-width: 1199px) {
  .about-wrapper .about-image .about-image-2 .title {
    display: none;
  }
}
.about-wrapper .about-image .about-image-2 .title .arrow-image {
  margin-bottom: 10px;
  animation: rounded 5s linear infinite;
}
.about-wrapper .about-image .about-image-2 .title h5 {
  text-transform: uppercase;
}
.about-wrapper .about-content {
  margin-left: 70px;
}
.brand-content-area {
    margin-top: 2em;
}
.brand-content-area .icon img {
    height: 100px;
    object-fit: contain;
    padding: 10px;
}
.brand-content-area .funfact-box-items .icon {
    background: transparent !important;
}
.brand-content-area .funfact-wrapper {
    text-align: center;
}
@media (max-width: 1199px) {
  .about-wrapper .about-content {
    margin-left: 0;
  }
}
.about-wrapper .about-content .about-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
}
@media (max-width: 1199px) {
  .about-wrapper .about-content .about-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.about-wrapper .about-content .about-area .about-items .title {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.about-wrapper .about-content .about-area .about-items .title .number {
  position: relative;
  padding-right: 30px;
  margin-right: 5px;
  color: var(--theme);
  font-size: 18px;
  font-weight: 700;
}
.about-wrapper .about-content .about-area .about-items .title h5 {
  position: relative;
}
.about-wrapper .about-content .about-area .about-items .title h5::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  width: 23px;
  height: 2px;
  display: inline-block;
  background-color: var(--theme);
  top: 50%;
  left: -28px;
}
.about-wrapper .about-content .pro-items {
  margin-top: 30px;
  margin-bottom: 30px;
}
.about-wrapper .about-content .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.about-wrapper .about-content .pro-items .pro-head .title {
  font-size: 20px;
  font-weight: 600;
  color: var(--header);
}
.about-wrapper .about-content .pro-items .pro-head .point {
  font-size: 16px;
  font-weight: 400;
  color: var(--header);
}
.about-wrapper .about-content .pro-items .progress {
  background: transparent;
  justify-content: flex-start;
  border-radius: 100px;
  align-items: center;
  position: relative;
  display: flex;
  height: 18px;
  width: 100%;
  border-radius: 0;
  border: 1px solid var(--border);
}
.about-wrapper .about-content .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: var(--theme);
  height: 10px;
  width: 0;
  border-radius: 0;
}
.about-wrapper .about-content .pro-items .style-two {
  animation: load2 3s normal forwards;
}
.about-wrapper .about-content .pro-items .style-three {
  animation: load3 3s normal forwards;
}
.about-wrapper .about-content .pro-items .style-four {
  animation: load4 3s normal forwards;
}
@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 80%;
  }
}
@keyframes load2 {
  0% {
    width: 0;
  }
  100% {
    width: 70%;
  }
}
@keyframes load3 {
  0% {
    width: 0;
  }
  100% {
    width: 85%;
  }
}
@keyframes load4 {
  0% {
    width: 0;
  }
  100% {
    width: 90%;
  }
}

.about-wrapper-2 .about-image {
  position: relative;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-image {
    max-width: 900px;
  }
  .about-wrapper-2 .about-image img {
    width: 100%;
    height: 100%;
  }
}
.about-wrapper-2 .about-image .about-image-2 {
  position: absolute;
  right: 0;
  bottom: -170px;
  border: 20px solid var(--white);
  z-index: 9;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-image .about-image-2 {
    bottom: 0;
  }
}
@media (max-width: 767px) {
  .about-wrapper-2 .about-image .about-image-2 {
    max-width: 330px;
  }
}
@media (max-width: 575px) {
  .about-wrapper-2 .about-image .about-image-2 {
    max-width: 230px;
  }
}
.about-wrapper-2 .about-image .border-shape {
  position: absolute;
  left: -68px;
  bottom: -50px;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-image .border-shape {
    display: none;
  }
}
.about-wrapper-2 .about-content {
  margin-left: 50px;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-content {
    margin-left: 0;
  }
}
.about-wrapper-2 .about-content .list-items {
  margin-top: 30px;
  border-bottom: 1px solid #d7d7d7;
  padding-bottom: 40px;
}
.about-wrapper-2 .about-content .list-items li {
  font-weight: 600;
  font-size: 18px;
  color: var(--header);
}
.about-wrapper-2 .about-content .list-items li i {
  color: var(--theme);
  margin-right: 10px;
}
.about-wrapper-2 .about-content .list-items li:not(:last-child) {
  margin-bottom: 10px;
}
.about-wrapper-2 .about-content .about-author {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-content .about-author {
    flex-wrap: wrap;
  }
}
.about-wrapper-2 .about-content .about-author .author-image {
  display: flex;
  align-items: center;
  gap: 30px;
}
.about-wrapper-2 .about-content .about-author .author-image .content h3 {
  text-transform: uppercase;
  font-weight: 500;
  color: var(--theme);
}
.about-wrapper-2 .about-content .about-author .author-image .author-img {
  position: relative;
}
.about-wrapper-2 .about-content .about-author .author-image .author-img::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid var(--theme);
  width: 85px;
  height: 85px;
  border-radius: 50%;
  content: "";
}
.about-wrapper-2 .about-content .about-author .counter-content {
  background-color: #f4f4f4;
  padding: 15px;
  min-width: 230px;
  justify-content: center;
}
.about-wrapper-2 .about-content .about-author .counter-content .content-2 {
  display: flex;
  align-items: center;
  gap: 20px;
  border-style: solid;
  border-width: 2px;
  border-image-source: linear-gradient(to left, #ed3b3b, #171717);
  border-image-slice: 1;
  background-color: #fff;
  padding: 20px 30px;
}
.about-wrapper-2 .about-content .about-author .counter-content h2 {
  font-size: 50px;
  font-weight: 600;
}
.about-wrapper-2 .about-content .about-author .counter-content p {
  font-size: 16px;
  color: var(--text);
  text-transform: uppercase;
  font-weight: 500;
}
.service-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.service-list li:before {
    position: absolute;
    content: '';
    background: #e63939;
    width: 8px;
    height: 8px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 100px;
    left: 0;
}

.service-list li {
    position: relative;
    padding-left: 16px;
    color: #000;
}
@media (max-width: 470px) {
  .about-wrapper-3 {
    margin-bottom: -20px;
  }
}
.about-wrapper-3.style-border {
    border-bottom: 1px solid #d7d7d7;
    padding-bottom: 60px;
}

@media (max-width: 1199px) {
  .about-wrapper-3.style-border {
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .about-wrapper-3.style-border {
    padding-bottom: 80px;
  }
}
.about-wrapper-3 .about-image {
  position: relative;
}
.about-wrapper-3 .about-image img {
  width: 100%;
  height: 100%;
}
.about-wrapper-3 .about-image .border-shape {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -15%;
}
@media (max-width: 1199px) {
  .about-wrapper-3 .about-image .border-shape {
    display: none;
  }
}
.about-wrapper-3 .about-image .about-image-2 {
  position: absolute;
  bottom: 0;
  left: -38%;
}
@media (max-width: 1199px) {
  .about-wrapper-3 .about-image .about-image-2 {
    left: 0;
  }
}
@media (max-width: 575px) {
  .about-wrapper-3 .about-image .about-image-2 {
    max-width: 200px;
  }
}
.about-wrapper-3 .about-image-3 img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
@media (max-width: 1199px) {
  .about-wrapper-3 .about-content {
    margin-left: 0;
  }
}
.about-wrapper-3 .about-content b {
    color: #0a0a0a;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
}
.about-wrapper-3 .about-content .about-icon-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .about-wrapper-3 .about-content .about-icon-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.about-wrapper-3 .about-content .about-icon-items .about-icon {
  display: flex;
  align-items: center;
  gap: 20px;
}
.about-wrapper-3 .about-content .about-icon-items .about-icon .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50px;
  text-align: center;
  background-color: var(--theme);
  transition: all 0.4s ease-in-out;
}
.about-wrapper-3 .about-content .about-icon-items .about-icon .content h4 {
  font-weight: 600;
}
.about-wrapper-3 .about-content .about-icon-items .about-icon:hover .icon {
  background-color: var(--header);
}
.about-wrapper-3 .about-content .about-btn {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .about-wrapper-3 .about-content .about-btn {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.about-wrapper-3 .about-content .about-btn .text span {
  color: #808080;
  font-size: 14px;
}

.best-company-wrapper {
  margin-top: -10px;
}
.best-company-wrapper .best-company-content {
  margin-top: 110px;
}
@media (max-width: 1199px) {
  .best-company-wrapper .best-company-content {
    margin-top: 100px;
  }
}
@media (max-width: 991px) {
  .best-company-wrapper .best-company-content {
    margin-top: 80px;
  }
}
.best-company-wrapper .best-company-content .check-list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .best-company-wrapper .best-company-content .check-list {
    flex-wrap: wrap;
  }
}
.best-company-wrapper .best-company-content .check-list li {
  background-color: #f4f4f4;
  padding: 16px 30px;
  text-transform: uppercase;
  font-size: 18px;
  font-family: "Barlow Condensed", sans-serif;
  color: var(--header);
  font-weight: 500;
}
.best-company-wrapper .best-company-content .check-list li i {
  color: var(--theme);
  margin-right: 7px;
}
.best-company-wrapper .best-company-content .text {
  max-width: 520px;
  font-weight: 500;
  margin-top: 30px;
}
.best-company-wrapper .best-company-content .list-items {
  margin-top: 30px;
}
.best-company-wrapper .best-company-content .list-items li {
  display: flex;
  align-items: center;
  gap: 20px;
}
.best-company-wrapper .best-company-content .list-items li:not(:last-child) {
  margin-bottom: 40px;
}
.best-company-wrapper .best-company-content .list-items li .icon {
  width: 47px;
  height: 47px;
  line-height: 47px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  color: var(--white);
  font-size: 18px;
  transition: all 0.4s ease-in-out;
}
.best-company-wrapper .best-company-content .list-items li .content h4 {
  font-weight: 600;
}
.best-company-wrapper .best-company-content .list-items li .content p {
  font-weight: 500;
  margin-top: 5px;
}
.best-company-wrapper .best-company-content .list-items li:hover .icon {
  background-color: var(--header);
}
.best-company-wrapper .best-company-image {
  margin-right: -25px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .best-company-wrapper .best-company-image {
    margin-right: 0;
  }
}
.best-company-wrapper .best-company-image img {
  width: 100%;
  height: 100%;
  margin-top: -10px;
}
@media (max-width: 1199px) {
  .best-company-wrapper .best-company-image img {
    margin-top: 0;
  }
}
.best-company-wrapper .best-company-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme);
  z-index: -1;
  left: -60px;
  height: calc(100% + 70px);
  width: 63%;
}
@media (max-width: 1199px) {
  .best-company-wrapper .best-company-image::before {
    display: none;
  }
}
.best-company-wrapper .best-company-image .video-btn {
  display: inline-block;
  width: 115px;
  line-height: 115px;
  background-color: var(--theme);
  color: var(--white);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 20px;
  transition: all 0.4s ease-in-out;
}
.best-company-wrapper .best-company-image .video-btn:hover {
  background-color: var(--header);
}
.best-company-wrapper .best-company-image .text-shape {
  position: absolute;
  top: 50px;
  left: -40px;
}
@media (max-width: 1199px) {
  .best-company-wrapper .best-company-image .text-shape {
    display: none;
  }
}
.best-company-wrapper .best-company-image .text-shape img {
  width: initial;
  height: initial;
}

.about-section-2 {
  position: relative;
}
.about-section-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #f4f4f4;
  width: 30%;
  height: 45%;
}
@media (max-width: 1199px) {
  .about-section-2::before {
    display: none;
  }
}

@-webkit-keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}
@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@-webkit-keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(20deg);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes rotated2 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes wave {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-bottom {
  animation: img-anim-bottom 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}
.brand-items {
    margin-bottom: 60px;
    margin-top: 60px;
    padding: 25px 0px;
}
.brand-slider {
    margin-top: 40px;
}
.brand-items .array-button {
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.brand-items .array-button::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  height: 1px;
  width: 44%;
  top: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.brand-items .array-button::after {
  position: absolute;
  content: "";
  width: 44%;
  top: 50%;
  height: 1px;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
}
.brand-items .brand-image {
  min-height: 100px;
  padding: 10px;
  transition: all 0.4s ease-in-out;
}
.brand-items .brand-image img {
    opacity: 0.6;
    transition: all 0.4s ease-in-out;
    display: inline-block;
    width: 100px;
}
.brand-image small {
    display: block;
    color: #fff;
    font-weight: 500;
}
/*.brand-items .brand-image:hover {
  background-color: var(--black);
}*/
.brand-items .brand-image:hover img {
  opacity: 1;
}
.brand-items.style-2 {
  padding-bottom: 0;
  margin-bottom: 0;
  margin-top: 0;
}
.brand-items.style-2 .brand-image {
  min-height: 100px;
  padding: 30px;
  transition: all 0.4s ease-in-out;
}
.brand-items.style-2 .brand-image img {
  transition: all 0.4s ease-in-out;
  display: inline-block;
}
.brand-items.style-2 .brand-image:hover {
  background-color: #f4f4f4;
}
.brand-items.style-2 .brand-image:hover img {
  opacity: 1;
}
.brand-items.style-2 .swiper-slide.swiper-slide-active .brand-image {
  background-color: #f4f4f4;
}
.brand-items.style-2 .swiper-slide.swiper-slide-active .brand-image img {
  opacity: 1;
}
/*.brand-items .swiper-slide.swiper-slide-active .brand-image {
  background-color: var(--black);
}*/
.brand-items .swiper-slide.swiper-slide-active .brand-image img {
  opacity: 1;
}

.brand-wrapper {
  padding: 90px 0 60px;
}
.brand-wrapper .brand-image {
  text-align: center;
  filter: grayscale(100%);
  transition: all 0.4s ease-in-out;
  opacity: 0.4;
}
.brand-wrapper .brand-image:hover {
  filter: initial;
  opacity: 1;
}
.brand-wrapper .swiper-slide.swiper-slide-active .brand-image {
  filter: initial;
  opacity: 1;
}
.brand-wrapper .content {
  border-top: 2px solid #e56060;
  margin-top: 90px;
  padding-top: 90px;
  padding-bottom: 30px;
}
.brand-wrapper .content h2 {
  color: var(--white);
}

.brand-section-3 {
  background-position: bottom !important;
}

.contact-wrapper .faq-content {
  padding: 120px 0;
  margin-right: 30px;
}
@media (max-width: 1199px) {
  .contact-wrapper .faq-content {
    margin-right: 0;
    padding: 100px 0;
  }
  .sidebar__toggle i {
    color: #000;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
    margin-top: 20px;
}
}
@media (max-width: 991px) {
  .contact-wrapper .faq-content {
    padding: 80px 0;
  }
}
.contact-wrapper .faq-content .form-clt input, .contact-wrapper .faq-content .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--white);
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  text-transform: capitalize;
}
.contact-wrapper .faq-content .form-clt input::placeholder, .contact-wrapper .faq-content .form-clt textarea::placeholder {
  color: #777777;
}
.contact-wrapper .faq-content .form-clt textarea {
  padding-bottom: 100px;
  resize: none;
}
.contact-wrapper .faq-image {
  margin-right: -390px;
}
@media (max-width: 991px) {
  .contact-wrapper .faq-image {
    display: none;
  }
}
.contact-wrapper .faq-image img {
  width: 100%;
  height: 100%;
}

.contact-wrapper-2 .contact-content {
  padding: 51px 60px;
  background-repeat: initial;
}
@media (max-width: 991px) {
  .contact-wrapper-2 .contact-content {
    padding: 40px 30px;
  }
}
.contact-wrapper-2 .contact-content.bg-cover {
  background-size: initial;
}
.contact-wrapper-2 .contact-content .form-clt input, .contact-wrapper-2 .contact-content .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--white);
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
}
.contact-wrapper-2 .contact-content .form-clt input::placeholder, .contact-wrapper-2 .contact-content .form-clt textarea::placeholder {
  color: var(--text);
}
.contact-wrapper-2 .contact-content .form-clt textarea {
  padding-bottom: 100px;
  resize: none;
}
.contact-wrapper-2 .contact-image {
  position: relative;
}
.contact-wrapper-2 .contact-image img {
  width: 100%;
  height: 100%;
}
.contact-wrapper-2 .contact-image .video-btn {
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
  bottom: 0;
  right: 0;
  position: absolute;
  font-size: 22px;
}
.contact-wrapper-2 .contact-image .video-btn:hover {
  background-color: var(--header);
}
@media (max-width: 767px) {
  .contact-wrapper-2 .contact-image .video-btn {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 18px;
  }
}
.contact-wrapper-2 .contact-box {
  margin-top: 30px;
  background-color: var(--theme);
  padding: 60px 60px;
  text-align: center;
  position: relative;
}
.contact-wrapper-2 .contact-box .bg-shape {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0.1;
}
.contact-wrapper-2 .contact-box .icon {
  margin-bottom: 20px;
  position: relative;
  z-index: 9;
  transition: all 0.4s ease-in-out;
}
.contact-wrapper-2 .contact-box .content {
  position: relative;
  z-index: 9;
}
.contact-wrapper-2 .contact-box .content h3 {
  color: var(--white);
  font-weight: 600;
}
.contact-wrapper-2 .contact-box.style-2 {
  background-color: var(--header);
  transition: all 0.4s ease-in-out;
}
.contact-wrapper-2 .contact-box.style-2:hover {
  background-color: var(--theme);
}
.contact-wrapper-2 .contact-box.style-2:hover .icon {
  filter: grayscale(100%) brightness(300%);
}

.map-items .googpemap iframe {
  width: 100%;
  height: 490px;
}

.map-items-2 .googpemap iframe {
  width: 100%;
  height: 485px;
}
.map-items-2 .map-contact-info-wrapper {
    /* background-color: var(--white); */
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    /* box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1); */
    z-index: 9;
}
.map-contact-info-wrapper i {
    font-size: 22px;
    color: #ff3633;
}
.contact-text {
    padding-top: 30px;
}
@media (max-width: 1199px) {
  .map-items-2 .map-contact-info-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.map-items-2 .map-contact-info-wrapper .icon-items {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: column;
    color: #fff;
    padding: 14px;
    background: #fc6c6c;
    box-shadow: 0px 10px 15px rgba(8, 14, 28, 0.06);
}
.map-items-2 .map-contact-info-wrapper .icon-items .content p {
  text-transform: none;
  font-family: "poppins", sans-serif;
  font-weight: 500;
}
.map-items-2 .map-contact-info-wrapper .icon-items .content h3 {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}
.map-items-2 .map-contact-info-wrapper .social-icon {
  gap: 10px;
  position: relative;
  z-index: 9;
}
.map-items-2 .map-contact-info-wrapper .social-icon a {
    width: 40px;
    height: 40px;
    line-height: 46px;
    text-align: center;
    font-size: 16px;
    display: block;
    background: #f4f4f4;
    color: var(--header);
    border-radius: 50%;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    text-align: center;
}
.map-items-2 .map-contact-info-wrapper .social-icon a:hover {
    background-color: #ececec;
    color: #fff;
}
.contact-form-123 .form-clt input, .contact-form-123 .form-clt textarea {
  border: none;
  outline: none;
  line-height: 1;
  padding: 22px 30px;
  background-color: #f4f4f4;
  width: 100%;
  text-transform: capitalize;
  color: var(--text);
}
.contact-form-123 .form-clt textarea {
  padding-bottom: 130px;
}

.cta-discuss-wrapper {
  background-color: #171717;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 9;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cta-discuss-wrapper {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .cta-discuss-wrapper {
    padding: 30px;
  }
}
.cta-discuss-wrapper .icon-items {
  padding-left: 225px;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1199px) {
  .cta-discuss-wrapper .icon-items {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cta-discuss-wrapper .icon-items {
    flex-wrap: wrap;
  }
}
.cta-discuss-wrapper .icon-items .icon {
  width: 95px;
  height: 95px;
  text-align: center;
  line-height: 95px;
  border-radius: 50%;
  background-color: var(--white);
}
@media (max-width: 991px) {
  .cta-discuss-wrapper .icon-items .icon {
    margin: 0 auto;
  }
}
.cta-discuss-wrapper .icon-items h2 {
  font-size: 36px;
  color: var(--white);
}
.cta-discuss-wrapper .theme-btn::before, .cta-discuss-wrapper .theme-btn::after {
  background-color: var(--white);
}
.cta-discuss-wrapper .theme-btn:hover {
  color: var(--header);
}
.cta-discuss-wrapper .cta-thumb {
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  z-index: -1;
  margin: -3px;
}
@media (max-width: 1199px) {
  .cta-discuss-wrapper .cta-thumb {
    display: none;
  }
}
.cta-discuss-wrapper .cta-thumb img {
  width: 100%;
  height: 100%;
}

.cta-wrapper {
  padding: 250px 0 120px;
  position: relative;
  background-attachment: fixed;
  z-index: 9;
  margin-top: -142px;
  position: relative;
  z-index: 9;
  margin: -142px 100px 0;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1199px) {
  .cta-wrapper {
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 100px;
    padding-top: 230px;
  }
}
@media (max-width: 991px) {
  .cta-wrapper {
    padding-top: 210px;
    padding-bottom: 80px;
  }
}
.cta-wrapper .cta-content {
  text-align: center;
}
.cta-wrapper .cta-content h2 {
  font-size: 60px;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1;
}
.cta-wrapper .cta-content p {
  font-size: 20px;
  color: #ffc9c9;
}
.cta-wrapper .cta-content .theme-btn {
  background-color: var(--header);
  margin-top: 50px;
}
.cta-wrapper .cta-content .theme-btn::before, .cta-wrapper .cta-content .theme-btn::after {
  background-color: var(--white);
}
.cta-wrapper .cta-content .theme-btn:hover {
  color: var(--header);
}

.cta-agency-content {
  margin-bottom: 50px;
}
.cta-agency-content h2 {
  font-size: 60px;
}
@media (max-width: 767px) {
  .cta-agency-content h2 {
    font-size: 52px;
  }
}
@media (max-width: 575px) {
  .cta-agency-content h2 {
    font-size: 40px;
  }
}
.cta-agency-content .theme-btn {
  background-color: var(--header);
  margin-top: 50px;
}
@media (max-width: 575px) {
  .cta-agency-content .theme-btn {
    margin-top: 30px;
  }
}
.cta-agency-content .theme-btn::before, .cta-agency-content .theme-btn::after {
  background-color: var(--white);
}
.cta-agency-content .theme-btn:hover {
  color: var(--header);
}

.cta-agency-section {
  position: relative;
  z-index: 9;
}
.cta-agency-section .cta-shape {
  position: absolute;
  top: -4px;
  bottom: -2px;
  left: 0;
  z-index: -1;
  width: 1310px;
}
@media (max-width: 1199px) {
  .cta-agency-section .cta-shape {
    display: none;
  }
}
.cta-agency-section .cta-shape img {
  width: 100%;
  height: 100%;
}
.cta-agency-section .shape-cicrle {
  position: absolute;
  top: 22%;
  left: 55%;
}
@media (max-width: 1399px) {
  .cta-agency-section .shape-cicrle {
    display: none;
  }
}
.cta-agency-section .shape-cicrle .animation-circle {
  animation: cir36 10s linear infinite;
}
.cta-agency-section .shape-cicrle .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta-wrapper-2 {
  padding: 0 0 120px;
  position: relative;
  background-attachment: fixed;
}
.cta-wrapper-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #171717;
  opacity: 0.7;
}
.cta-wrapper-2 h2 {
  font-size: 60px;
  font-weight: 600;
  color: var(--white);
  position: relative;
  text-align: center;
}
@media (max-width: 767px) {
  .cta-wrapper-2 h2 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .cta-wrapper-2 h2 {
    font-size: 32px;
  }
}
.cta-wrapper-2 .cta-button {
  margin: 50px auto 0;
  text-align: center;
}
.cta-wrapper-2 .list-items {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
  background-color: var(--theme);
  padding: 16px 35px;
  margin-bottom: 102px;
}
@media (max-width: 1899px) {
  .cta-wrapper-2 .list-items {
    padding: 16px 20px;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.cta-wrapper-2 .list-items .text-move {
  font-size: 16px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 3.6px;
  font-weight: 500;
}

.cta-wrapper-3 {
  text-align: center;
}
.cta-wrapper-3 .circle-image {
  margin-bottom: 20px;
  position: relative;
}
.cta-wrapper-3 .circle-image .animation-circle {
  animation: cir36 10s linear infinite;
}
.cta-wrapper-3 .circle-image .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cta-wrapper-3 .cta-content {
  position: relative;
}
.cta-wrapper-3 .cta-content h2 {
  font-size: 60px;
  color: var(--white);
  margin-bottom: 30px;
}
.experience-tab-icon i {
    font-size: 25px;
}
@media (max-width: 767px) {
  .cta-wrapper-3 .cta-content h2 {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .cta-wrapper-3 .cta-content h2 {
    font-size: 40px;
  }
}

.cta-bg-section-3 {
  position: relative;
  background-attachment: fixed;
}

.cta-section-2 {
  position: relative;
}
.cta-section-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #f4f4f4;
  height: 50%;
}

.cta-agency-section {
  background-attachment: fixed;
}

.faq-wrapper .faq-items {
  margin-top: 30px;
}
.faq-wrapper .faq-items .faq-image {
  height: 425px;
}
.faq-wrapper .faq-items .faq-image img {
    width: 100%;
    height: 410px;
    object-fit: cover;
    border-radius: 10px;
}
.faq-wrapper .faq-items .faq-image-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.faq-wrapper .faq-items .counter-box {
    background-color: var(--theme);
    padding: 32px;
    padding-left: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
}
.faq-wrapper .faq-items .counter-box .inner-icon {
  text-align: right;
}
.faq-wrapper .faq-items .counter-box .inner-icon .icon {
    width: 54px;
    height: 54px;
    line-height: 54px;
    font-size: 24px;
    border-radius: 50%;
    text-align: center;
    background: #ff9191;
    color: #ffffff;
    display: inline-block;
    transition: all 0.4s ease-in-out;
}
.faq-wrapper .faq-items .counter-box .text span {
  color: var(--white);
}
.faq-wrapper .faq-items .counter-box .text h3 a {
    color: var(--white);
    font-size: 16px;
}
.faq-wrapper .faq-items .counter-box:hover .inner-icon .icon {
  background: #fff;
  color: var(--theme);
}
.faq-wrapper .faq-content {
  margin-top: 30px;
}
.faq-wrapper .faq-content .faq-accordionss {
  margin-left: 20px;
}
@media (max-width: 1199px) {
  .faq-wrapper .faq-content .faq-accordionss {
    margin-left: 0;
  }
}
.faq-wrapper .faq-content .faq-accordionss .accordion-item {
  border: 0;
  background-color: #f4f4f4;
  border: 1px solid var(--border);
  border-radius: 0;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
}
.faq-wrapper .faq-content .faq-accordionss .accordion-item:not(:first-of-type) {
  border: none;
}
.faq-wrapper .faq-content .faq-accordionss .accordion-item .accordion-header {
  border: none;
}
.faq-wrapper .faq-content .faq-accordionss .accordion-item .accordion-header .accordion-button {
  font-weight: 600;
  color: var(--header);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background-color: var(--white);
  padding: 25px 30px;
  text-transform: uppercase;
  font-size: 18px;
  padding-bottom: 25px;
  border-radius: 0;
  border: none;
}
.faq-wrapper .faq-content .faq-accordionss .accordion-item .accordion-header .accordion-button::after {
  content: "\f077";
  font-family: "Font Awesome 6 Pro";
  background: transparent;
  font-weight: 500;
  transition: all 0.3s ease-in-out !important;
  color: var(--theme);
}
.faq-wrapper .faq-content .faq-accordionss .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: "\f078";
  font-family: "Font Awesome 6 Pro";
  background: transparent;
  font-weight: 500;
  color: var(--theme);
  transform: rotate(0);
}
.faq-wrapper .faq-content .faq-accordionss .accordion-item .accordion-header .accordion-button.collapsed {
  background-color: transparent;
  padding: 25px 30px;
  color: var(--header);
}
.faq-wrapper .faq-content .faq-accordionss .accordion-item .accordion-collapse .accordion-body {
  padding-left: 30px;
  padding-top: 25px;
  color: var(--text);
  background-color: var(--white);
  border-top: 1px solid var(--border);
  font-weight: 500;
  padding-bottom: 25px;
}
.faq-wrapper .faq-content .faq-items .accordion-item:first-of-type {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-item {
  border: none;
  border-radius: 0px;
  background: #fff;
  margin-bottom: 6px;
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-item h2 button {
    padding: 14px;
    font-weight: 500;
    font-size: 15px;
    line-height: 1;
    box-shadow: none;
    border-radius: 0;
    color: var(--header);
    border: 1px solid #d7d7d7;
}
@media (max-width: 575px) {
  .faq-wrapper .faq-content .faq-items .accordion .accordion-item h2 button {
    font-size: 17px;
  }
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-item .accordion-body {
    padding: 20px;
    border: 1px solid #d7d7d7;
    border-top: none;
}

.faq-wrapper .faq-content .faq-items .accordion .accordion-item .accordion-body p {
    font-size: 15px;
    line-height: 22px;
    color: #3e3e3e;
    text-align:justify;
}
.funfact-wrapper .icon img {
    height: 130px;
    padding: 25px;
    width: 100%;
    object-fit: contain;
}
.client-logo .funfact-wrapper .icon img {
    height: 145px;
    padding: 20px;
}
@media (max-width: 575px) {
  .faq-wrapper .faq-content .faq-items .accordion .accordion-item .accordion-body p {
    width: 100%;
    font-size: 14px;
    line-height: 28px;
  }
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-button {
  background-color: transparent;
  color: var(--header);
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-button::after {
  display: none;
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-button::before {
    content: "-";
    font-family: "Font Awesome 6 Pro";
    background: transparent;
    font-weight: 800;
    transition: all 0.3s ease-in-out !important;
    color: var(--theme);
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
}
.testimonial-right-wrapper {
    max-width: 90%;
    margin: 0px auto;
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-button.collapsed {
  background-color: #f4f4f4;
  color: var(--header);
  position: relative;
  z-index: 7;
  box-shadow: none;
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-button.collapsed::before {
  content: "+";
  font-family: "Font Awesome 6 Pro";
  font-weight: 800;
  color: var(--theme);
}

/*.funfact-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}*/
.funfact-wrapper .funfact-box-items {
    transition: all 0.4s ease-in-out;
    width: 20%;
}
.funfact-box-items {
    display: inline-block;
    width: 16% !important;
    margin-bottom: 5px;
}
.faq-section {
    margin-top: 20px;
}
.funfact-box-items {
    border-width: 2px;
    border-image: linear-gradient(to right, #f4f4f4, #f4f4f4) 1;
    border-style: solid;
    transition: 300ms;
}
.faq-image-2 img {
    height: 309px !important;
}
.funfact-box-items:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 60px;
    transform: translateY(-15px);
    transition: 300ms;
}
.funfact-section p {
    color: #000000;
    text-align: justify;
    margin-top: 30px;
}
.experience-tab-content h4 {
    font-size: 16px;
    line-height: 25px;
    text-transform: capitalize;
    font-weight: 600;
    text-align: center;
    margin-top: 20px;
    color: #cb3434;
}
.counter-box {
    display: flex;
    justify-content: flex-start;
}
.counter-box .text {
    margin-left: 10px;
}
@media (max-width: 1399px) {
  .funfact-wrapper {
    flex-wrap: wrap;
  }
}

.funfact-wrapper .funfact-box-items .icon {
  background-color: var(--white);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
 /* width: 145px;*/
  /*height: 145px;.icon img*/
  /*line-height: 145px;*/
  text-align: center;
  transition: all 0.4s ease-in-out;
}
.funfact-wrapper .funfact-box-items .icon img {
  transition: all 0.4s ease-in-out;
}
.funfact-wrapper .funfact-box-items .content {
  margin-top: 20px;
  text-align: center;
}
.funfact-wrapper .funfact-box-items .content h2 {
  font-size: 36px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
}
.funfact-wrapper .funfact-box-items .content h2 span {
  font-family: "Barlow Condensed", sans-serif;
}
.funfact-wrapper .funfact-box-items .content p {
  font-weight: 500;
  margin-top: 5px;
}
/*.funfact-wrapper .funfact-box-items:hover .icon {
  background-color: var(--theme);
}*/
/*.funfact-wrapper .funfact-box-items:hover .icon img {
  filter: grayscale(100%) brightness(300%);
}*/

.feature-card-items .feature-image {
  position: relative;
  overflow: hidden;
}
.feature-card-items .feature-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: -moz-linear-gradient(90deg, rgb(23, 23, 23) 0%, rgba(23, 23, 23, 0) 100%);
  background-image: -webkit-linear-gradient(90deg, rgb(23, 23, 23) 0%, rgba(23, 23, 23, 0) 100%);
}
.feature-card-items .feature-image img {
  width: 100%;
  height: 100%;
}
.feature-card-items .feature-image .feature-title {
  color: var(--white);
  position: absolute;
  text-align: center;
  left: 20px;
  bottom: 20px;
  right: 20px;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 10px solid var(--theme);
  padding-bottom: 30px;
  line-height: 1;
}
.feature-card-items .feature-image .content {
  text-align: center;
  background-color: var(--white);
  padding: 30px;
  position: absolute;
  bottom: -100px;
  left: 20px;
  right: 20px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.feature-card-items .feature-image .content h3 {
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1;
}
.feature-card-items .feature-image .content p {
  max-width: 200px;
  margin: 0 auto;
}
.feature-card-items .feature-image .content .icon {
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  color: var(--white);
  display: inline-block;
  margin-top: 20px;
}
.feature-card-items .feature-image .content .icon:hover {
  background-color: var(--header);
}
.feature-card-items:hover .feature-image .content, .feature-card-items .active .feature-image .content {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}

.work-section-2 {
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}

.counter-wrapper-2 {
  margin-top: -50px;
  position: relative;
  z-index: 9;
}
.counter-wrapper-2 .counter-box {
  background: var(--white);
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.counter-wrapper-2 .counter-box.bg-1 {
  background: linear-gradient(90deg, #fefdfd 0%, #f4f4f4 100%);
}
.counter-wrapper-2 .counter-box.bg-2 {
  background: linear-gradient(90deg, #fefdfd 0%, #f4f4f4 100%);
}
.counter-wrapper-2 .counter-box .icon {
  width: 118px;
  height: 118px;
  line-height: 118px;
  background-color: var(--theme);
  text-align: center;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}
.counter-wrapper-2 .counter-box .content h2 {
  font-weight: 500;
}
.counter-wrapper-2 .counter-box .content p {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}
.counter-wrapper-2 .counter-box:hover .icon {
  background-color: var(--header);
}

.work-process-area {
  padding: 60px 0;
  max-width: 1050px;
  margin: 0 auto;
}
.work-process-area .work-process-box {
  position: relative;
}
.work-process-area .work-process-box .icon {
  width: 170px;
  height: 170px;
  line-height: 170px;
  text-align: center;
  border-radius: 50%;
  background-color: #f4f4f4;
  position: relative;
  margin: 0 auto;
  transition: all 0.4s ease-in-out;
}
.work-process-area .work-process-box .icon img {
  transition: all 0.4s ease-in-out;
}
.work-process-area .work-process-box .icon::before {
  width: 170px;
  height: 170px;
  content: "";
  position: absolute;
  top: 10px;
  left: -8px;
  bottom: 0;
  background-color: var(--theme);
  border-radius: 50%;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}
.work-process-area .work-process-box .icon .number {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  background-color: #171717;
  display: inline-block;
  font-weight: 600;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  color: var(--white);
  position: absolute;
  bottom: 0;
  left: 0;
}
.work-process-area .work-process-box .content {
  text-align: center;
  max-width: 250px;
  margin: 30px auto 0;
}
.work-process-area .work-process-box .content h3 {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 5px;
}
.work-process-area .work-process-box .shape-img {
  position: absolute;
  top: 30%;
  right: -80px;
  transform: translateY(-50%);
}
@media (max-width: 1199px) {
  .work-process-area .work-process-box .shape-img {
    display: none;
  }
}
.work-process-area .work-process-box:hover .icon {
  background-color: var(--theme);
}
.work-process-area .work-process-box:hover .icon img {
  filter: grayscale(100%) brightness(300%);
}
.work-process-area .work-process-box:hover .icon::before {
  background-color: #f4f4f4;
}

.work-text {
  border: 2px solid var(--theme);
  max-width: 700px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  width: 100%;
  padding: 9px 18px;
  padding-right: 9px;
  margin-bottom: -8px;
}
@media (max-width: 1199px) {
  .work-text {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .work-text {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    text-align: center;
    padding: 16px 25px;
  }
}
.work-text h6 {
  font-size: 16px;
}
.work-text span {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--white);
  background-color: var(--theme);
  padding: 6px 24px;
}
.work-text span:hover {
  background-color: var(--header);
}

.feature-section-2 {
  position: relative;
}
.feature-section-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #f4f4f4;
  width: 30%;
}

.feature-wrapper-4 .icon-box-items {
  background-color: #f4f4f4;
  padding: 30px 40px;
  transition: all 0.4s ease-in-out;
}
.feature-wrapper-4 .icon-box-items .icon {
  margin-bottom: 20px;
  transition: all 0.4s ease-in-out;
}
.feature-wrapper-4 .icon-box-items h6 {
  font-size: 20px;
  font-weight: 600;
}
.feature-wrapper-4 .icon-box-items:hover {
  background-color: var(--theme);
}
.feature-wrapper-4 .icon-box-items:hover .icon {
  filter: grayscale(100%) brightness(300%);
}
.feature-wrapper-4 .icon-box-items:hover h6 {
  color: var(--white);
}
.feature-wrapper-4 .hire-text-items {
  border-top: 1px solid #d7d7d7;
  margin-top: 30px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .feature-wrapper-4 .hire-text-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.feature-wrapper-4 .hire-text-items .content span {
  font-size: 16px;
}
.feature-wrapper-4 .hire-text-items .content h3 {
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
}
.feature-wrapper-4 .hire-text-items .contact-content {
  display: flex;
  align-items: center;
  gap: 20px;
}
.feature-wrapper-4 .hire-text-items .contact-content .icon {
  width: 54px;
  height: 54px;
  line-height: 54px;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
  font-size: 18px;
}
.feature-wrapper-4 .hire-text-items .contact-content .info-content h6 {
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.feature-wrapper-4 .hire-text-items .contact-content .info-content h3 {
  font-size: 18px;
  font-weight: 500;
}
.feature-wrapper-4 .choose-us-image {
  margin-top: -200px;
  position: relative;
  z-index: 9;
  margin-left: 40px;
}
.service-items .icon img {
    width: auto;
}
.breadcrumb-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 9;
    position: relative;
    flex-direction: column;
}
.website-features li {
    position: relative;
    color: #fff;
}
.website-features li:before {
    position: absolute;
    content: '';
    background: #fff;
    width: 8px;
    height: 8px;
    border-radius: 100px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}
.website-features {
    margin-top: 15px;
}
.website-features li {
    position: relative;
    color: #fff;
    padding-left: 18px;
}
.single-footer-widget img {
    width: 150px;
    margin: 0px auto;
}
.main-features-inner .heading-title, .main-features-inner .sub-heading {
    text-align: center;
    display: block;
}
.main-features {
    margin: 2em 0px;
}
@media (max-width: 1199px) {
  .feature-wrapper-4 .choose-us-image {
    margin-left: 0;
  }
  .feature-wrapper-4 .choose-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media (max-width: 991px) {
  .feature-wrapper-4 .choose-us-image {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .feature-wrapper-4 .choose-us-image {
    height: 550px;
  }
  .breadcrumb-inner {
    flex-direction: column;
}
.website-features li:before{
	display: none;
}
.website-features li{
	padding:0px;
}
.website-images img {
    width: 100%;
}
}
@media (max-width: 575px) {
  .feature-wrapper-4 .choose-us-image {
    height: 450px;
  }
}
.footer-widgets-wrapper {
    padding: 10px 0 10px;
    position: relative;
}
@media (max-width: 991px) {
  .footer-widgets-wrapper {
    padding: 50px 0 80px;
  }
}
.footer-widgets-wrapper .single-footer-widget .widget-head h3 {
font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
    padding-bottom: 20px;
    position: relative;
    margin-bottom: 16px;
    letter-spacing: 1px;
}
.contact-area li a p {
    font-size: 14px;
    font-weight: 600;
    color: #ebebeb;
}
.main-features-list li {
    display: inline-block;
    width: 19%;
    margin: 4px;
    color: #000;
    font-weight: 400;
    text-align: center;
    border: 1px solid #ccc;
    padding: 20px;
    transition: 300ms;
    background: #fff;
    border-radius: 10px;
    box-shadow: 5px 3px 7px 1px rgb(213 213 213 / 50%);
    line-height: 22px;
    font-size: 15px;
    min-height: 155px;
    vertical-align: top;
}
.service-page-box .service-block {
    margin-bottom: 30px;
}
.mainfeatures-img {
    margin: 0px auto;
    display: block;
    width: 450px;
}
.main-features-list li span {
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, #0167c9 0%, rgb(0, 51, 102) 100%);
    display: block;
    text-align: center;
    margin-right: 10px;
    color: #fff;
    font-size: 20px;
    line-height: 50px;
    border-radius: 100px;
    max-width: 50px;
    margin: 0px auto 10px;
    margin-top:10px;
}
.main-features-list li:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 60px;
    transform: translateY(-15px);
    transition: 300ms;
}
.features {
    margin-top: 4em;
}
.footer-section {
    padding-top: 2em;
    color: #000;
    background-position: center center !important;
    background: #292929 !important;
    position: relative;
}
.footer-section:before {
    position: absolute;
    content: '';
    background: url('https://www.teqprosolz.com/public/assets/img/footer-bg.png');
    width: 100%;
    height: 100%;
    top: 0;
    background-position: center center !important;
    background-size: cover;
}
.single-footer-widget {
    margin-bottom: 20px;
}
.footer-content p {
    color: #d3d3d3 !important;
    margin-top: 0px !important;
    text-align: justify !important;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-sub-title {
    font-size: 18px;
    color: #ffffff;
    font-weight: 800;
    margin-top: 20px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
  margin-top: 15px;
  gap: 10px;
  position: relative;
  z-index: 9;
}
@media (max-width: 575px) {
  .footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
    margin-top: 20px;
  }
}
.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    font-size: 25px;
    display: block;
    background: #2a2a2a;
    color: var(--white);
    border-radius: 50%;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    text-align: center;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input {
  position: relative;
  margin-bottom: 25px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input input {
  width: 100%;
  border: none;
  background-color: var(--white);
  color: var(--text);
  position: relative;
  padding: 20px;
  text-transform: capitalize;
  line-height: 1;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input input::placeholder {
  color: var(--text);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input .newsletter-button {
  position: absolute;
  right: 4px;
  top: 10px;
  bottom: 4px;
  color: var(--theme);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  font-size: 14px;
  color: var(--white);
  background-color: var(--theme);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-contact li {
  font-size: 15px;
  font-weight: 500;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-contact li:not(:last-child) {
  margin-bottom: 15px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-contact li a {
  color: var(--white);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-contact li i {
  color: var(--theme);
  margin-right: 10px;
}
.footer-widgets-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-widgets-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item:not(:last-child) {
  margin-bottom: 10px;
}
.footer-widgets-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb {
  position: relative;
  width: 100px;
}
.footer-widgets-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb img {
  width: 100%;
  height: 100%;
}
.footer-widgets-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  transition: 0.3s;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.footer-widgets-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb .icon::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(237, 59, 59, 0.85);
  transition: 0.4s;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.footer-widgets-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb .icon i {
  color: var(--white);
  font-size: 22px;
  z-index: 99;
  position: relative;
  margin-top: 30px;
}
.footer-widgets-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb:hover .icon {
  opacity: 1;
}
.footer-widgets-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb:hover .icon::after {
  opacity: 1;
}
.footer-widgets-wrapper .single-footer-widget .list-area li {
  font-weight: 500;
}
.footer-widgets-wrapper .single-footer-widget .list-area li a {
    color: #d3d3d3;
    position: relative;
    font-size: 14px;
    display: block;
    line-height: 40px;
    font-weight: 500;
}
.footer-widgets-wrapper .single-footer-widget .list-area li a::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 6px;
    height: 6px;
    content: "";
    border-radius: 50%;
    background-color: var(--theme);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    transform: translateY(-50%);
}
.footer-widgets-wrapper .single-footer-widget .list-area li a:hover {
  padding-left: 20px;
  color: var(--theme);
}
.footer-widgets-wrapper .single-footer-widget .list-area li a:hover::before {
  opacity: 1;
  visibility: visible;
}
.footer-bottom .footer-wrapper {
    text-align: center;
    padding: 14px 0;
    color: #fff;
}

.header-1 .header-right-items {
  display: flex;
  align-items: center;
  gap: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.102);
  padding-left: 20px;
}
@media (max-width: 1399px) {
  .header-1 .header-right-items {
    padding: 0;
    border-left: none;
  }
}
.header-1 .header-right-items .search-icon {
  color: var(--white);
}
.header-1 .header-right-items .contact-content {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1399px) {
  .header-1 .header-right-items .contact-content {
    display: none;
  }
}
.header-1 .header-right-items .contact-content .icon {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background-color: var(--theme);
    color: var(--white);
    font-size: 20px;
    transition: all 0.4s ease-in-out;
    background:linear-gradient(135deg, rgba(237, 59, 59, 1) 0%, rgb(166 6 6 / 84%) 77%);
    border-radius: 8px;
}
.info-content h3 a {
    font-size: 20px;
    font-weight: 700;
    color: #2f2e2e !important;
}
.header-1 .header-right-items .contact-content .info-content h6 {
  font-size: 14px;
  font-weight: 500;
  color: #6c6c6c;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  margin-bottom: 0;
}
.header-1 .header-right-items .contact-content .info-content h3 {
  font-size: 18px;
  font-weight: 500;
}
.banner-left p {
    color: #fff;
    line-height: 25px;
    font-weight: 400;
    text-align: justify;
    margin-bottom: 20px;
}
.header-1 .header-right-items .contact-content .info-content h3 a {
  color: #000;
}
.header-1 .header-right-items .contact-content:hover .icon {
  background-color: var(--header);
}
.header-1 .header-logo-2 {
  display: none;
}
.header-1 .header-main {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1019607843);
}
.header-1 .sidebar__toggle {
  color: var(--white);
}
.header-1.header-2 {
  position: relative;
}
.header-1.header-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme);
  z-index: -1;
  width: calc(100% - 1430px);
  left: initial;
}
@media (max-width: 1899px) {
  .header-1.header-2::before {
    display: none;
  }
}
.header-1.header-2 .header-main .main-menu ul li a {
  color: #777777;
}
.header-1.header-2 .header-main .main-menu ul li a:hover {
  color: var(--header) !important;
}
.header-1.header-2 .header-main .header-right {
  gap: 40px;
}
@media (max-width: 1399px) {
  .header-1.header-2 .header-main .header-right {
    gap: 20px;
  }
}
.header-1.header-2 .header-main .sidebar__toggle {
  color: var(--header);
}
.header-1.header-2 .header-button {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1199px) {
  .header-1.header-2 .header-button {
    display: none;
  }
}
.header-1.header-2 .header-button .theme-btn {
  background-color: var(--white);
  color: var(--header);
  padding: 21px 45px;
}
@media (max-width: 1899px) {
  .header-1.header-2 .header-button .theme-btn {
    background-color: var(--theme);
    color: var(--white);
  }
}
.header-1.header-2 .header-button .theme-btn:hover {
  color: var(--white);
}
.header-1.header-2 .header-button .contact-content .icon {
  background-color: var(--header);
}
.header-1.header-2 .header-button .contact-content:hover .icon {
  background-color: var(--theme) !important;
}
.header-1.header-2 .header-right-items {
  gap: 60px;
  border-left: 1px solid #d7d7d7;
}
@media (max-width: 1899px) {
  .header-1.header-2 .header-right-items {
    border-left: none;
    gap: 20px;
  }
  .header-1.header-2 .header-right-items .info-content h6 {
    color: var(--header);
  }
  .header-1.header-2 .header-right-items .info-content h3 a {
    color: var(--header);
  }
}
.header-1.header-2 .header-right-items .search-icon {
  color: var(--header);
}
.header-1.header-2 .header-left {
  display: flex;
  align-items: center;
  gap: 160px;
}
@media (max-width: 1600px) {
  .header-1.header-2 .header-left {
    gap: 50px;
  }
}
.header-1.header-3 {
  background-color: #161616;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1019607843);
}
.header-1.header-3 .header-main {
  border: none;
}
.header-1.header-3::before {
  display: none;
}
.header-1.header-3 .sidebar__toggle {
  color: var(--white) !important;
}
.header-1.header-3 .header-right-items {
  gap: 20px;
  border-left: 1px solid #2f2f2f;
}
@media (max-width: 1399px) {
  .header-1.header-3 .header-right-items {
    border-left: none;
  }
}
@media (max-width: 1899px) {
  .header-1.header-3 .header-right-items .info-content h6 {
    color: var(--white);
  }
  .header-1.header-3 .header-right-items .info-content h3 a {
    color: var(--white);
  }
}
.header-1.header-3 .header-right-items .search-icon {
  color: var(--white);
}
.header-1.header-3 .header-right-items .theme-btn {
  background-color: var(--black);
  color: var(--white);
}
.header-1.header-3 .header-right-items .theme-btn::before, .header-1.header-3 .header-right-items .theme-btn::after {
  background-color: var(--theme);
}
.header-1.header-3 .header-right-items .contact-content .icon {
  background-color: var(--theme);
}
.header-1.header-3 .header-right-items .contact-content:hover .icon {
  background-color: var(--header) !important;
}

.header-top {
    background-color: #4c4c4c;
    padding: 6px 0;
}
@media (max-width: 991px) {
  .header-top {
    display: none;
  }
}

.header-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-top-wrapper .header-left {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header-top-wrapper .header-left li {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
}
.header-top-wrapper .header-left li a {
  color: #fff;
}
.header-top-wrapper .header-left li i {
  color: #d4d4d4;
  margin-right: 10px;
}
.header-top-wrapper .header-top-right {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header-top-wrapper .header-top-right .top-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-top-wrapper .header-top-right .top-right li {
  color: #6d6d6d;
  font-size: 14px;
}
.header-top-wrapper .header-top-right .top-right li a {
  color: #6d6d6d;
}
.header-top-wrapper .header-top-right .top-right li a:hover {
  color: var(--theme);
}
.header-top-wrapper .header-top-right .social-icon {
  gap: 25px;
  font-size: 14px;
}
.header-top-wrapper .header-top-right .social-icon a {
    color: #d4d4d4;
    font-size: 20px;
}
.header-top-wrapper .header-top-right .social-icon a:hover {
  color: var(--theme);
}
.header-section-1 {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}
.header-section-1.header-section-2 {
  position: static;
}
.header-section-1.header-section-2 .container-fluid {
  padding: 0 60px;
}
.banner-images-items img {
    height: 630px;
    width: 100%;
    object-fit: cover;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}
.banner-form p {
    color: #fff;
    line-height: 22px;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 8px;
}
.banner-images-items {
    position: relative;
}

.banner-images-items:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgb(59 59 59 / 93%);
    left: 0;
    top: 0;
    z-index: 9;
}
.header-1 {
    background: rgb(255 255 255 / 55%);
}
.homepage-image-slider {
    position: relative;
    overflow: hidden;
}
.homepage-image-slider:before {
    position: absolute;
    content: '';
    width: 300px;
    height: 100%;
    z-index: 99;
    transform: rotate(45deg);
    left: -260px;
    background: linear-gradient(135deg, rgba(237, 59, 59, 1) 0%, rgba(55, 14, 14, 0) 77%, rgba(0, 0, 0, 0) 100%);
}
.banner-content {
    position: absolute;
    bottom: 25px;
    z-index: 99;
    display: flex;
    left: 0;
    right: 0;
    justify-content: space-between;
    max-width: 100%;
    align-items: center;
    top: 0;
}
.banner-form .theme-btn {
    margin-top: 20px !important;
    width: 100%;
    padding: 20px;
    overflow: hidden;
}
.banner-title {
    font-size: 44px;
    color: #fff;
    line-height: 55px;
    margin-bottom: 20px;
    text-transform: capitalize;
}
.banner-left {
    width: 60%;
    padding: 25px 35px 25px 30px;
}
.banner-right {
    width: 30%;
}
.banner-service-list li {
    /*display: inline-block;*/
    width: 49%;
    line-height: 25px;
    margin-bottom: 7px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding-left: 18px;
}
.banner-service-list li:before {
    position: absolute;
    content: '';
    background: #ed3b3b;
    width: 10px;
    height: 10px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 100px;
    left: 0;
}
.banner-service-list {
    margin: 10px 0px 25px;
}
.banner-form {
    background: #003366;
    padding: 25px 20px;
    max-width: 80%;
    margin: 0px auto;
    text-align: center;
    box-shadow: 0 20px 70px rgb(175 179 186 / 30%);
}
.banner-form .form-group {
    text-align: left;
}
.banner-form .form-group label {
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    display: block;
    margin: 5px 0px;
}
.banner-form .form-group input {
    width: 100%;
    height: 50px;
    border: 2px solid #c5c5c5;
    color: #000000;
    padding: 0px 11px;
    font-size: 16px;
    box-shadow: 0 20px 70px rgb(36 36 37 / 4%);
    background: rgb(234 234 234);
    transition: all 0.4s ease-in-out;
    border-bottom: 3px solid #9f9c9c;
}

h3.form-title {
    margin-bottom: 10px;
    font-size: 27px;
    color: #fff;
    text-transform: capitalize;
    font-weight: 600;
}
.banner-form .form-group input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #000;
}
@media (max-width: 1600px) {
  .header-section-1.header-section-2 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .header-section-1.header-section-2 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .header-section-1.header-section-2 .container-fluid {
    padding: 0 30px;
  }
}

.header-section .container-fluid {
  padding: 0 120px;
}
@media (max-width: 1600px) {
  .header-section .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .header-section .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .header-section .container-fluid {
    padding: 0 30px;
  }
}

@media (max-width: 1199px) {
  .menu-thumb {
    display: none !important;
  }
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.header-main .main-menu ul {
  margin-bottom: 0;
}
.header-main .main-menu ul li {
    position: relative;
    list-style: none;
    display: inline-block;
    margin-inline-end: 40px;
}
.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}
.header-main .main-menu ul li a {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    padding: 20px 0;
    text-align: left;
    position: relative;
    text-transform: capitalise;
    transition: all 0.4s ease-in-out;
    letter-spacing: 0.2px;
}
.header-main .main-menu ul li a i {
  margin-left: 4px;
  font-size: 14px;
}
.header-main .main-menu ul li a:hover {
  color: var(--theme2) !important;
}
.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 115%;
  inset-inline-start: 0;
  min-width: 320px;
  background: var(--white);
  padding: 20px 0;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--header);
  transform: translateY(-10px);
  transition: all 0.4s ease-in-out;
  border-top: 6px solid var(--theme);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
}
.header-main .main-menu ul li .submenu li a {
    position: relative;
    z-index: 11;
    font-size: 15px;
    font-weight: 500;
    color: var(--header);
    line-height: 38px;
    padding: 0px 0px 0px 32px;
    width: 100%;
}
.header-main .main-menu ul li .submenu li a::before {
  content: "";
  position: absolute;
  width: 0px;
  height: 2px;
  background: var(--theme);
  left: 14px;
  bottom: 18px;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li .submenu li a:hover {
  color: var(--theme) !important;
}
.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}
.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.header-main .main-menu ul li .submenu li:hover > a {
  color: var(--theme) !important;
  margin-left: 10px;
}
.header-main .main-menu ul li .submenu li:hover > a::before {
  width: 10px;
}
.header-main .main-menu ul li .submenu li:hover > a::after {
  color: var(--theme);
}
.header-main .main-menu ul li .submenu li:hover > .submenu {
  -webkit-transform: translateY(1);
  -moz-transform: translateY(1);
  -ms-transform: translateY(1);
  -o-transform: translateY(1);
  transform: translateY(1);
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .submenu li.has-dropdown > a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--theme);
}
.header-main .main-menu ul li .has-homemenu {
  width: 800px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -250px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items {
    flex-wrap: wrap;
  }
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 14px 20px;
  color: var(--white) !important;
  width: initial;
  font-size: 16px;
  text-align: center;
  border-radius: 0px !important;
  background-color: var(--theme);
  line-height: initial;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  background-color: var(--header);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  font-family: "Manrope", sans-serif;
}
.header-main .main-menu ul li:hover > a {
  color: var(--theme2);
}
.header-main .main-menu ul li:hover > a::after {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}
.header-main .header-right {
  gap: 40px;
}
@media (max-width: 1399px) {
  .header-main .header-right {
    gap: 20px;
  }
}
.header-main .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
}
.sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.9s;
    background-color: var(--white);
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background: #fff !important;
}
.brand-items .heading-title {
    color: #fff;
    text-align: center;
}
.sticky.header-1 .header-main .main-menu ul li a {
  color: var(--header);
}
.sticky.header-1 .header-main .header-right {
  gap: 40px;
}
@media (max-width: 1399px) {
  .sticky.header-1 .header-main .header-right {
    gap: 20px;
  }
}
.sticky.header-1 .header-main .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
}
.sticky.header-1 .search-icon {
  color: var(--header);
}
.sticky.header-1 .header-logo-2 {
  display: block;
}
.sticky.header-1 .sidebar__toggle {
  color: var(--header);
}
.sticky.header-1 .contact-content .info-content h6 {
  color: var(--header);
}
.sticky.header-1 .contact-content .info-content h3 a {
  color: var(--header);
}
.sticky.header-2 .contact-content .info-content h6 {
  color: var(--white);
}
.sticky.header-2 .contact-content .info-content h3 a {
  color: var(--white);
}
.sticky.header-3 {
  background-color: var(--white);
}
.sticky.header-3 .sidebar__toggle {
  color: var(--header);
}
.sticky.header-3 .header-right-items .search-icon {
  color: var(--header);
}
.sticky.header-3 .header-right-items .info-content h6 {
  color: var(--header);
}
.sticky.header-3 .header-right-items .info-content h3 a {
  color: var(--header);
}

.offcanvas__info {
  background: var(--white) none repeat scroll 0 0;
  border-left: 2px solid var(--theme);
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 99999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.offcanvas__info::-webkit-scrollbar {
  display: none;
}

.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}
.offcanvas__wrapper .offcanvas__content .text {
  color: var(--text);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  position: relative;
  z-index: 9;
  cursor: pointer;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--white);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
  margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
  color: var(--text);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
  margin-bottom: 15px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: var(--theme);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: initial;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
  width: 100%;
  padding: 20px 40px;
  text-transform: capitalize !important;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
  margin-top: 30px;
  gap: 10px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: transparent;
  color: var(--text);
  border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}
.banner-form .form-group .nice-select {
    width: 100%;
    padding: 10px;
    border-radius: 0;
    border-color: #ccc;
    font-size: 15px;
}
.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 300px;
  }
}
@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}
.breadcrumb-wrapper {
    position: relative;
    overflow: hidden;
    z-index: 9;
    padding: 5em 0px;
    color: #000;
    background-position: bottom center !important;
    padding: 8em 0px !important;
}
.breadcrumb-wrapper {
    background-size: cover;
    background-attachment: fixed;
    background-position: top center !important;
}
.main-features-list li:hover span {
    background: #ed3b3b;
    color: #fff;
}
.service-details-banner {
    padding: 20px 0px;
}
.service-details-banner:before {
    position: absolute;
    content: '';
    background: #353535d6;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 9;
    margin-bottom: 25px;
    margin-top: 15px;
    justify-content: center;
}
@media (max-width: 1399px) {
  .breadcrumb-wrapper {
    padding: 240px 0 150px;
  }
}
@media (max-width: 991px) {
  .breadcrumb-wrapper {
        padding: 7em 0px 1em;
    }

}
.breadcrumb-wrapper .page-heading {
    position: relative;
    z-index: 99;
    width: 100%;
    text-align: center;
}
.page-heading h1 {
    color: #fff;
    font-size: 32px;
    text-transform: capitalize;
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading {
    text-align: center;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 9;
  margin-bottom: 25px;
  margin-top: 15px;
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items {
    justify-content: center;
  }
      .breadcrumb-wrapper .page-heading p {
    font-size: 30px;
}
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li {
  font-size: 15px;
  color: rgb(255 255 255 / 91%);
  text-transform: capitalize;
  font-family: "poppins", sans-serif;
  font-weight:500;
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items li {
    font-size: 16px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
  color: rgb(255 255 255 / 91%);
  transition: all 0.4s ease-in-out;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
  color: var(--theme);
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
  color: rgb(255 255 255 / 91%);
}
.breadcrumb-wrapper .page-heading p {
    font-size: 30px;
    font-weight: bold;
    color: var(--white);
    max-width: 90%;
    text-transform: none;
    line-height:1.4;
    margin-bottom: 22px;
}
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.Suggestions {
    text-align: center;
    position: relative;
    background-position: center center !important;
    background-size: cover !important;
}
.Suggestions .experience-tab {
    background: #fff !important;
}
.improve-section {
    padding: 30px 0px;
    text-align: center;
    /*border-bottom: 1px solid #ccc;*/
}

.improve-section p {
    max-width: 90%;
    margin: 20px auto;
    line-height: 27px;
    color:#3e3e3e;
}
.Suggestions .experience-tab-content h4 {
    max-width: 100%;
    text-align: left;
}
.case-study-img {
    width: 50% !important;
    display: inline-block;
    vertical-align: middle;
}
.case-study-content {
    width: 49%;
    display: inline-block;
    vertical-align: middle;
}
.case-study-content h3 {
    color: #ed3b3b;
    margin-bottom: 8px;
}
.case-study-content ul li i {
    color: #ff3633;
    font-size: 16px;
    font-weight: 400;
}
.case-study-content b {
    color: #ff918f;
    font-weight: 600;
    font-size: 16px;
}
.case-study-content p {
    margin-bottom: 10px;
    color: #fff;
    text-align:justify;
}
.case-study-content ul li {
    color: #fff;
    font-weight:400;
    font-size:16px;
    line-height:2;
}
.case-study-content ul li span {
    font-size: 16px;
    margin-right: 8px;
}
.case-study-content ul {
    margin-bottom: 10px;
}
.breadcrumb-items {
    margin: 10px 0px 0px !important;
}
/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--theme);
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--theme);
  border-radius: 10px;
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.ml-50 {
  margin-left: 50px;
}
@media (max-width: 1199px) {
  .ml-50 {
    margin-left: 0;
  }
}

.ripple {
  position: relative;
}
.ripple::before, .ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 110px;
  height: 110px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -webkit-animation: rippleOne 3s infinite;
  animation: rippleOne 3s infinite;
}
.ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}
.ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.swiper-dot .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  transition: all 0.4s ease-in-out;
  background-color: var(--theme);
  opacity: 1;
  border-radius: 10px;
}
.swiper-dot .swiper-pagination-bullet:not(:last-child) {
  margin-right: 10px;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
  transition: 0.6s;
  position: relative;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  width: 22px;
  height: 22px;
  line-height: 22px;
  top: -6px;
  left: -6px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--theme);
  content: "";
}

.swiper-dot-2 {
  text-align: center;
}
.swiper-dot-2 .swiper-pagination-bullet {
  width: 32px;
  height: 8px;
  transition: 0.6s;
  background-color: rgba(213, 213, 213, 0.6);
  opacity: 1;
  border-radius: 10px;
  position: relative;
}
.swiper-dot-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--theme);
  transition: 0.6s;
  position: relative;
  width: 50px;
}
.array-button {
    display: inline-block;
    align-items: center;
    gap: 15px;
}
.array-button .array-prev {
  width: 55px;
  height: 55px;
  line-height: 30px;
  text-align: center;
  background-color: #2a2a2a;
  color: var(--white);
  transition: all 0.4s ease-in-out;
  font-size: 12px;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.08);
  border-radius: 100px;
}
.array-button .array-prev:hover {
  background-color: var(--theme);
  color: var(--white);
}
.array-button .array-next {
    width: 55px;
    height: 55px;
    line-height: 30px;
    text-align: center;
    background-color: var(--theme);
    color: var(--white);
    transition: all 0.4s ease-in-out;
    font-size: 12px;
    border-radius: 100px;
}
.array-button .array-next:hover {
  background-color: var(--theme);
  color: var(--white);
}
.testimonial-box-items {
    padding: 20px;
}
.testimonial-box-items p {
    text-align: justify;
    font-style: italic;
    font-size: 16px;
    line-height: 26px;
}
.mt-10 {
  margin-top: 10px;
}
.what-we-made .service-block {
    margin-bottom: 20px;
}
.what-we-made {
    background: #f0fdff;
    padding-bottom: 3em !important;
}
.portfolio-content h3 {
    margin-bottom: 10px;
    font-size: 30px;
    color: #fff;
}
.portfolio-content p {
    color: #fff;
    margin-bottom: 10px;
}
.slick-arrow{
	display:none !important;
}
.porrtfolio {
    padding: 3em 0px;
    background-attachment: fixed !important;
    background-size: cover !important;
    position: relative;
}
.porrtfolio:before {
    position: absolute;
    content: '';
    background: rgb(79 78 78 / 79%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.portfolio-inner {
    position: relative;
}
.why-choose .website-features li {
    color: #000;
    text-align: left;
}
.why-choose-wrapper .website-features li:before {
    background: #000;
}
.why-choose-wrapper h3 {
    text-align: center;
}
.why-choose-wrapper {
    padding: 50px;
}
.features-list .experience-tab {
    align-items: center;
}
.features-list .experience-tab-icon img {
    height: 20px;
}
.service-list-block h2 {
    font-size: 20px;
    min-height: 70px;
    text-transform: capitalize;
}
.service-list-block .service-block .inner-box {
    min-height: 300px;
    margin-bottom: 30px;
}
.service-list-block .service-block .icon-box {
    display: none;
}
.why-choose-item .service-block .inner-box {
    min-height: auto;
    margin-bottom: 30px;
}
.client-logo .funfact-wrapper {
    text-align: center;
}
.about-list .service-block .inner-box {
    min-height: auto;
}
.client-logo {
    margin: 35px auto;
}
.service-block h2 {
    text-transform: capitalize;
    font-size: 20px;
    min-height: 70px;
}
.service-image {
    width: 60px;
    border-radius: 15px;
    margin-bottom: 15px;
    z-index: 9;
    position: relative;
}
.service-block .inner-box .title, .service-block .inner-box p {
    position: relative;
    z-index: 9;
    text-align: left !important;
}
@media (max-width: 767px) {
	.portfolio-content {
    text-align: center;
    padding-bottom: 2em;
}
.porrtfolio{
	overflow-x: hidden;
}
  br {
    display: none;
  }
    .main-features-list li {
        width: 100%;
        text-align: center;
        margin: 0px 0px 10px;
    }
.main-features-list li span {
    display: block;
    margin: 0px auto;
}
.mainfeatures-img {
    max-width: 250px;
    margin: 0px auto 20px;
    text-align: center;
    display: block;
}
.service-page-box .service-block .inner-box {
    min-height: auto;
}
.service-block .icon-box {
    display: none;
}
.case-study-img {
    width: 100% !important;
}
.case-study-content {
    width: 100%;
    text-align: center;
}
    .map-items-2 .map-contact-info-wrapper {
        flex-wrap: wrap;
        gap: 30px;
        display: flex;
        flex-direction: column;
    }
    .map-contact-info-wrapper .icon-items {
    width: 100% !important;
    text-align: center;
}
}

.mt-60 {
  margin-top: 55px;
}

.mb-40 {
  margin-bottom: 40px;
}
.website-images img {
    width: 100%;
}
/* background */
.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}

.bg-cover-2 {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
  width: 100%;
  height: 100%;
}
.banner-form .form-group .nice-select {
    width: 100%;
    padding: 10px;
    box-shadow: 0 20px 70px rgb(175 179 186 / 30%);
    background: rgba(255, 255, 255, 0.7);
    background: rgb(234 234 234);
    color: #000000;
    border: 1px solid #eeeeee;
    height: 50px;
    border-bottom: 3px solid #9f9c9c !important;
    line-height: 30px;
}
/*
.nice-select {
  background-color: transparent;
  width: unset;
  outline: none;
  border-bottom: 2px solid var(--border) !important;
  padding-bottom: 20px !important;
  border: none;
  border-radius: 0;
  padding: 0;
}
.nice-select:hover {
  border-bottom: 2px solid transparent;
  border-color: var(--theme);
  border-bottom: 2px solid transparent;
  border-image-slice: 2;
}
.nice-select span {
  font-size: 16px;
  color: var(--text);
  text-transform: capitalize;
}
*/
.nice-select .current {
  margin-right: 12px;
}
.nice-select.open .list {
    background: linear-gradient(135deg, rgb(13 119 222) 0%, rgb(22 105 189) 77%);
    margin-top: 16px;
    width: 100%;
    text-transform: capitalize;
    color: #ffffff;
}
.nice-select .option.selected.focus {
    background:#093a6a;
    outline: none;
    color: #ffffff;
    text-transform: capitalize;
    font-weight: 400;
    font-size: 16px;
    border: none;
    font-size: 15px;
}
.nice-select .option {
  border: none;
}

.nice-select .option:hover {
  background: transparent;
}

.custom-container {
  max-width: 1680px;
}

.page-nav-wrap ul li {
  display: inline-block;
}
.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: transparent;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
  border: 1px solid var(--border);
  color: var(--text);
}
.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme);
  color: var(--white);
}
@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
  }
      .breadcrumb-wrapper .page-heading p {
    font-size: 30px;
}
}
.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
}
.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid transparent;
}

.item-bg-color {
  background-color: #F4F6FA !important;
}

.bor-top {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.bor-bottom {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.sticky-style {
  position: sticky !important;
  top: 100px;
}

.custom-container-2 {
  max-width: 1575px;
  margin: 0 auto;
}

.aximo_screenfix_right {
  margin-right: calc((-100vw + 100%) / 2);
}
@media (max-width: 1199px) {
  .aximo_screenfix_right {
    margin-right: 0;
  }
}

.custom-container-3 {
  max-width: 1695px;
  margin: 0 auto;
}

.contact-container {
  max-width: 1650px;
  margin: 0 auto;
}

.slide-transtion {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.brand-slide-element {
  width: auto;
  display: inline-block;
}

.hero-1 {
  position: relative;
}
.hero-1 .slider-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
}
.hero-1 .slider-shape img {
  height: 100%;
}
@media (max-width: 1399px) {
  .hero-1 .slider-shape {
    display: none;
  }
}
.hero-1 .bg-shadow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.hero-1 .bg-shadow img {
  width: 100%;
  height: 100%;
}
.hero-1 .slider-bg {
  overflow: hidden;
  position: absolute !important;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: -2;
  background-size: cover;
  transform: scale(1);
  -webkit-transition: all 8s ease-out 0s;
  -moz-transition: all 8s ease-out 0s;
  -ms-transition: all 8s ease-out 0s;
  -o-transition: all 8s ease-out 0s;
  transition: all 8s ease-out 0s;
}
.hero-1 .slider-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.7);
}
.hero-1 .overlar-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.hero-1 .hero-content {
  padding: 320px 0 220px;
  position: relative;
}
@media (max-width: 1199px) {
  .hero-1 .hero-content {
    padding: 260px 0 200px;
  }
}
@media (max-width: 991px) {
  .hero-1 .hero-content {
    padding: 190px 0 190px;
  }
}
@media (max-width: 767px) {
  .hero-1 .hero-content {
    text-align: center;
    padding: 150px 0 150px;
  }
}
.hero-1 .hero-content h6 {
  color: rgba(255, 255, 255, 0.6);
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-left: 205px;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .hero-1 .hero-content h6 {
    margin-left: 0;
  }
}
.hero-1 .hero-content h1 {
    color: var(--white);
    line-height: 85%;
    text-transform: uppercase;
    margin-bottom: 50px;
    font-size: 50px;
}
@media (max-width: 1199px) {
  .hero-1 .hero-content h1 {
    line-height: 110%;
  }
}
@media (max-width: 1199px) {
  .hero-1 .hero-content h1 {
    font-size: 90px;
  }
}
@media (max-width: 767px) {
  .hero-1 .hero-content h1 {
    font-size: 80px;
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .hero-1 .hero-content h1 {
    font-size: 56px;
    margin-bottom: 30px;
  }
}

.hero-section-1 {
  position: relative;
}
.hero-section-1 .swiper-slide-active .slider-bg {
  -webkit-transform: scale(1.12);
  -moz-transform: scale(1.12);
  transform: scale(1.12);
}
.hero-section-1 .array-button {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
@media (max-width: 991px) {
  .hero-section-1 .array-button {
    display: none;
  }
}
.hero-section-1 .array-button .array-prev, .hero-section-1 .array-button .array-next {
  width: 75px;
  height: 60px;
  line-height: 60px;
  text-align: center;
}
.hero-section-1 .array-button .array-prev {
  background-color: var(--white);
  color: var(--header);
}
.hero-section-1 .array-button .array-prev:hover {
  background-color: var(--theme);
  color: var(--white);
}
.hero-section-1 .array-button .array-next {
  background-color: var(--black);
}
.hero-section-1 .array-button .array-next:hover {
  background-color: var(--theme);
  color: var(--white);
}

.hero-2 {
  position: relative;
}
.hero-2 .array-button {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
}
@media (max-width: 991px) {
  .hero-2 .array-button {
    display: none;
  }
}
.hero-2 .array-button .array-prev, .hero-2 .array-button .array-next {
  width: 75px;
  height: 60px;
  line-height: 60px;
  text-align: center;
}
.hero-2 .array-button .array-prev {
  background-color: var(--white);
  color: var(--header);
}
.hero-2 .array-button .array-prev:hover {
  background-color: var(--theme);
  color: var(--white);
}
.hero-2 .array-button .array-next:hover {
  background-color: var(--header);
  color: var(--white);
}
.hero-2 .swiper-slide-active .hero-image {
  -webkit-transform: scale(1.12);
  -moz-transform: scale(1.12);
  transform: scale(1.12);
}
.hero-2 .hero-image {
  overflow: hidden;
  position: absolute !important;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: -2;
  background-size: cover;
  transform: scale(1);
  -webkit-transition: all 8s ease-out 0s;
  -moz-transition: all 8s ease-out 0s;
  -ms-transition: all 8s ease-out 0s;
  -o-transition: all 8s ease-out 0s;
  transition: all 8s ease-out 0s;
}
.hero-2 .hero-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--black);
  opacity: 0.7;
}
.hero-2 .overlay-shape {
  position: absolute;
  bottom: 0;
  left: 0;
}
.hero-2 .border-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  opacity: 0.2;
}
@media (max-width: 1199px) {
  .hero-2 .border-shape {
    display: none;
  }
}
.hero-2 .border-shape img {
  width: 100%;
  height: 100%;
}
.hero-2 .right-shape {
  position: absolute;
  bottom: 0;
  right: -10px;
}
@media (max-width: 1199px) {
  .hero-2 .right-shape {
    display: none;
  }
}
.hero-2 .hero-content {
  padding: 170px 0;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .hero-2 .hero-content {
    padding: 160px 0;
  }
}
@media (max-width: 767px) {
  .hero-2 .hero-content {
    padding: 130px 0;
  }
}
.hero-2 .hero-content .icon {
  margin-bottom: 25px;
}
.hero-2 .hero-content h5 {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  letter-spacing: 2px;
}
@media (max-width: 575px) {
  .hero-2 .hero-content h5 {
    font-size: 18px;
  }
}
.hero-2 .hero-content h1 {
  font-size: 110px;
  font-weight: 700;
  line-height: 92%;
}
@media (max-width: 1199px) {
  .hero-2 .hero-content h1 {
    font-size: 100px;
  }
}
@media (max-width: 991px) {
  .hero-2 .hero-content h1 {
    font-size: 80px;
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .hero-2 .hero-content h1 {
    font-size: 60px;
    margin-top: 15px;
  }
}
@media (max-width: 575px) {
  .hero-2 .hero-content h1 {
    font-size: 42px;
  }
}
.hero-2 .hero-content .cta-button {
  margin-top: 45px;
}
@media (max-width: 575px) {
  .hero-2 .hero-content .cta-button {
    margin-top: 30px;
  }
}

.hero-3 .slider-bg {
  background-position: initial !important;
  position: relative;
  z-index: 9;
}
@media (max-width: 1399px) {
  .hero-3 .slider-bg {
    background-position: right !important;
  }
  .hero-3 .slider-bg::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--black);
    opacity: 0.5;
  }
}
.hero-3 .slider-shape {
  position: absolute;
  top: 0;
  left: -110px;
  bottom: 0;
}
@media (max-width: 1399px) {
  .hero-3 .slider-shape {
    display: none;
  }
}
.hero-3 .slider-shape img {
  width: 100%;
  height: 100%;
}
.hero-3 .hero-content {
  padding: 180px 0 180px;
  position: relative;
  z-index: 9;
}
@media (max-width: 767px) {
  .hero-3 .hero-content {
    text-align: center;
    padding: 130px 0;
  }
}
.hero-3 .hero-content h6 {
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  text-transform: uppercase;
}
.hero-3 .hero-content h1 {
  color: var(--white);
  margin-bottom: 42px;
  line-height: 92%;
}
@media (max-width: 1199px) {
  .hero-3 .hero-content h1 {
    font-size: 100px;
    margin-top: 15px;
  }
}
@media (max-width: 991px) {
  .hero-3 .hero-content h1 {
    font-size: 80px;
  }
}
@media (max-width: 767px) {
  .hero-3 .hero-content h1 {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .hero-3 .hero-content h1 {
    font-size: 42px;
  }
}

.hero-section-3 {
  position: relative;
}
.hero-section-3 .array-button {
  position: absolute;
  display: flex;
  align-items: center;
  z-index: 99;
  bottom: 0;
}
@media (max-width: 991px) {
  .hero-section-3 .array-button {
    display: none;
  }
}
.hero-section-3 .array-button .array-prev, .hero-section-3 .array-button .array-next {
  width: 75px;
  height: 60px;
  line-height: 60px;
  text-align: center;
}
.hero-section-3 .array-button .array-prev {
  background-color: var(--white);
  color: var(--header);
}
.hero-section-3 .array-button .array-prev:hover {
  background-color: var(--theme);
  color: var(--white);
}
.hero-section-3 .array-button .array-next {
  background-color: var(--black);
}
.hero-section-3 .array-button .array-next:hover {
  background-color: var(--theme);
  color: var(--white);
}

.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}
.mean-container .mean-nav > ul .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .mean-container .mean-nav > ul .homemenu-items {
    flex-wrap: wrap;
  }
}
.mean-container .mean-nav > ul .homemenu-items .homemenu {
  position: relative;
}
@media (max-width: 1199px) {
  .mean-container .mean-nav > ul .homemenu-items .homemenu {
    max-width: 300px;
    text-align: center;
    margin: 0 auto;
    border: 1px solid var(--border);
    padding: 10px;
  }
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 12px 20px;
  color: var(--white) !important;
  width: initial;
  font-size: 16px;
  text-align: center;
  border-radius: 0;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}
.mean-container .mean-nav ul li a {
    width: 100%;
    padding: 10px 0;
    color: var(--header);
    line-height: 1.5;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid var(--border) !important;
    border: none;
    text-transform: capitalize;
}
.offcanvas__logo img {
    max-width: 150px;
}
.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme2);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
}

.mean-container .mean-nav ul li > a > i {
  display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
  display: inline-block;
  font-size: 18px;
}

.mean-container .mean-nav > ul > li:first-child > a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}

.news-card-items {
  margin-top: 30px;
  background-color: var(--white);
  box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.news-card-items .news-image {
  position: relative;
  overflow: hidden;
}
.news-card-items .news-image img {
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
}
.news-card-items .news-image h4 {
  background: var(--theme);
  color: var(--white);
  padding: 12px 18px;
  text-align: center;
  display: grid;
  position: absolute;
  bottom: -8px;
  left: 40px;
  line-height: 1;
  border: 10px solid var(--white);
  font-size: 20px;
  font-weight: 500;
}
.news-card-items .news-image h4 span {
  text-transform: uppercase;
  font-size: 14px;
  display: block;
  margin-top: 5px;
}
.news-card-items .news-content {
  padding: 30px 40px;
}
.news-card-items .news-content .post-meta {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 10px;
}
.news-card-items .news-content .post-meta li {
  font-size: 14px;
  color: var(--text);
}
.news-card-items .news-content .post-meta li i {
  color: var(--theme);
  margin-right: 5px;
}
.news-card-items .news-content h3 {
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
  margin-bottom: 20px;
  font-weight: 600;
}
.news-card-items .news-content h3 a:hover {
  color: var(--theme);
}
.news-card-items .news-content .client-info {
  display: flex;
  align-items: center;
  gap: 20px;
}
.news-card-items:hover .news-image img {
  transform: scale(1.1);
}

.news-section {
  position: relative;
  z-index: 99;
}

.news-details-wrapper .news-post-item .details-image {
  position: relative;
}
.news-details-wrapper .news-post-item .details-image img {
  width: 100%;
  height: 100%;
}
.news-details-wrapper .news-post-item .details-image .post {
  position: absolute;
  bottom: -6px;
  left: 40px;
  background-color: var(--theme);
  text-align: center;
  border: 8px solid var(--white);
}
.news-details-wrapper .news-post-item .details-image .post h4 {
  color: var(--white);
  display: grid;
  padding: 12px 15px;
  line-height: 1;
}
.news-details-wrapper .news-post-item .details-image .post h4 span {
  display: inline-block;
  margin-top: 6px;
}
.news-details-wrapper .news-post-item .details-content {
  margin-top: 20px;
}
.news-details-wrapper .news-post-item .details-content .post-list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 5px;
}
@media (max-width: 1199px) {
  .news-details-wrapper .news-post-item .details-content .post-list {
    flex-wrap: wrap;
  }
}
.news-details-wrapper .news-post-item .details-content .post-list li {
  font-size: 14px;
  font-weight: 500;
}
.news-details-wrapper .news-post-item .details-content .post-list li i {
  color: var(--theme);
  margin-right: 5px;
}
.news-details-wrapper .news-post-item .details-content h3 {
  margin-bottom: 20px;
  font-size: 30px;
}
@media (max-width: 575px) {
  .news-details-wrapper .news-post-item .details-content h3 {
    font-size: 24px;
  }
}
.news-details-wrapper .news-post-item .details-content h3 a:hover {
  color: var(--theme);
}
.news-details-wrapper .news-post-item .details-content .tag-share-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
}
.news-details-wrapper .news-post-item .details-content .tag-share-wrap .tagcloud {
  display: flex;
  align-items: center;
}
.news-details-wrapper .news-post-item .details-content .tag-share-wrap .tagcloud span {
  font-size: 20px;
  color: var(--header);
  font-weight: 600;
  margin-right: 20px;
  display: inline-block;
  font-family: "Barlow Condensed", sans-serif;
}
.news-details-wrapper .news-post-item .details-content .tag-share-wrap .tagcloud a {
  display: inline-block;
  padding: 15px 20px;
  line-height: 1;
  background: var(--theme);
  color: var(--white);
  margin-right: 8px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.4s ease-in-out;
  font-size: 14px;
  font-family: "Barlow Condensed", sans-serif;
}
@media (max-width: 575px) {
  .news-details-wrapper .news-post-item .details-content .tag-share-wrap .tagcloud a {
    margin-bottom: 5px;
    padding: 12px 23px;
  }
}
.news-details-wrapper .news-post-item .details-content .tag-share-wrap .tagcloud a:hover {
  background-color: var(--header);
}
.news-details-wrapper .news-post-item .details-content .tag-share-wrap .social-share a {
  font-size: 18px;
  color: var(--header);
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 100px;
  text-align: center;
  background-color: rgb(244, 244, 244);
}
.news-details-wrapper .news-post-item .details-content .tag-share-wrap .social-share a:not(:last-child) {
  margin-right: 10px;
}
.news-details-wrapper .news-post-item .details-content .tag-share-wrap .social-share a:hover {
  color: var(--white);
  background-color: var(--theme);
}
.news-details-wrapper .news-post-item .details-content .details-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1199px) {
  .news-details-wrapper .news-post-item .details-content .details-item {
    flex-wrap: wrap;
  }
}
.news-details-wrapper .news-post-item .details-content .details-item .item {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #f4f4f4;
  padding: 30px;
  transition: all 0.4s ease-in-out;
}
.news-details-wrapper .news-post-item .details-content .details-item .item:hover {
  background-color: var(--theme);
}
.news-details-wrapper .news-post-item .details-content .details-item .item:hover .content h4 {
  color: var(--white);
}
.news-details-wrapper .news-post-item .details-content .comments-area {
  margin-top: 40px;
}
.news-details-wrapper .news-post-item .details-content .comments-area .comments-heading {
  margin-bottom: 10px;
}
@media (max-width: 575px) {
  .news-details-wrapper .news-post-item .details-content .comments-area .comments-heading {
    margin-bottom: 20px;
  }
}
.news-details-wrapper .news-post-item .details-content .comments-area .comments-heading h3 {
  font-size: 30px;
  font-weight: 700;
}
@media (max-width: 575px) {
  .news-details-wrapper .news-post-item .details-content .comments-area .comments-heading h3 {
    font-size: 26px;
  }
}
.news-details-wrapper .news-post-item .details-content .comments-area .blog-single-comment {
  border-bottom: 1px solid var(--border);
}
@media (max-width: 575px) {
  .news-details-wrapper .news-post-item .details-content .comments-area .blog-single-comment {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.news-details-wrapper .news-post-item .details-content .comments-area .blog-single-comment .content .head .con h4 {
  font-weight: 600;
  font-size: 22px;
  text-transform: uppercase;
}
.news-details-wrapper .news-post-item .details-content .comments-area .blog-single-comment .content .reply {
  padding: 15px 25px;
  line-height: 1;
  font-weight: 400;
  background-color: var(--header);
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
.news-details-wrapper .news-post-item .details-content .comments-area .blog-single-comment .content .reply:hover {
  background-color: var(--theme);
}
.news-details-wrapper .news-post-item .details-content .comment-form-wrap h3 {
  font-size: 30px;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .news-details-wrapper .news-post-item .details-content .comment-form-wrap h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
.news-details-wrapper .news-post-item .details-content .comment-form-wrap .form-clt input, .news-details-wrapper .news-post-item .details-content .comment-form-wrap .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: #f4f4f4;
  padding: 16px 20px;
  font-weight: 500;
  color: var(--text);
}
.news-details-wrapper .news-post-item .details-content .comment-form-wrap .form-clt input::placeholder, .news-details-wrapper .news-post-item .details-content .comment-form-wrap .form-clt textarea::placeholder {
  color: var(--text);
}
.news-details-wrapper .news-post-item .details-content .comment-form-wrap .form-clt textarea {
  padding-bottom: 100px;
  resize: none;
}

.main-sideber .single-sidebar-widget {
  padding: 45px 30px 50px;
  margin-bottom: 30px;
  background-color: #f4f4f4;
}
.main-sideber .single-sidebar-widget.style-2 {
  background-color: var(--theme);
}
.main-sideber .single-sidebar-widget .wid-title {
  margin-bottom: 25px;
}
.main-sideber .single-sidebar-widget .search-widget form {
  width: 100%;
  position: relative;
}
.main-sideber .single-sidebar-widget .search-widget form input {
  background-color: var(--white);
  font-size: 14px;
  font-weight: 500;
  padding: 16px 20px;
  width: 100%;
  border: none;
  color: var(--text);
}
.main-sideber .single-sidebar-widget .search-widget form button {
  position: absolute;
  right: 20px;
  top: 0;
  font-size: 16px;
  height: 100%;
  color: var(--text);
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.main-sideber .single-sidebar-widget .recent-post-area .recent-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-sideber .single-sidebar-widget .recent-post-area .recent-items:not(:last-child) {
  margin-bottom: 20px;
}
.main-sideber .single-sidebar-widget .recent-post-area .recent-items .recent-content ul {
  margin-bottom: 6px;
}
.main-sideber .single-sidebar-widget .recent-post-area .recent-items .recent-content ul li {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}
.main-sideber .single-sidebar-widget .recent-post-area .recent-items .recent-content ul li i {
  color: var(--theme);
  margin-right: 5px;
}
.main-sideber .single-sidebar-widget .recent-post-area .recent-items .recent-content h5 {
  font-weight: 500;
  font-size: 18px;
}
.main-sideber .single-sidebar-widget .recent-post-area .recent-items .recent-content h5 a:hover {
  color: var(--theme);
}
.main-sideber .single-sidebar-widget .news-widget-categories ul li {
  font-size: 16px;
  margin-bottom: 1px;
}
.main-sideber .single-sidebar-widget .news-widget-categories ul li.active a {
  color: var(--header);
  background: #fff;
  padding-left: 25px;
}
.main-sideber .single-sidebar-widget .news-widget-categories ul li.active a::before {
  right: 20px;
  color: var(--theme);
}
.main-sideber .single-sidebar-widget .news-widget-categories ul li a {
  color: var(--text);
  padding: 10px 0;
  display: block;
  position: relative;
  z-index: 9;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
.main-sideber .single-sidebar-widget .news-widget-categories ul li a::before {
  content: "\f054";
  font-family: "Font Awesome 6 Pro";
  font-size: 11px;
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  font-weight: 900;
  line-height: 1;
  margin-top: -9px;
}
.main-sideber .single-sidebar-widget .news-widget-categories ul li:hover a {
  color: var(--header);
  background: #fff;
  padding-left: 25px;
}
.main-sideber .single-sidebar-widget .news-widget-categories ul li:hover a::before {
  right: 20px;
  color: var(--theme);
}
.main-sideber .single-sidebar-widget .tagcloud a {
  display: inline-block;
  padding: 12px 20px;
  line-height: 1;
  font-size: 14px;
  font-weight: 600;
  background: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  margin-right: 5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--text);
  transition: all 0.4s ease-in-out;
}
.main-sideber .single-sidebar-widget .tagcloud a:last-child {
  margin-right: 0;
}
.main-sideber .single-sidebar-widget .tagcloud a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.search-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: rgba(255, 255, 255, 0.9);
}
.search-wrap .search-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.search-wrap .search-cell {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}
.search-wrap .search-field-holder {
  width: 50%;
  margin: auto;
  position: relative;
  animation: slideInUp 0.3s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search-wrap .search-field-holder {
    width: 70%;
  }
}
@media (max-width: 575px) {
  .search-wrap .search-field-holder {
    width: 80%;
  }
}
.search-wrap .main-search-input {
  width: 100%;
  height: 70px;
  border: 0;
  padding: 0 50px;
  text-transform: capitalize;
  background: transparent;
  font-size: 25px;
  color: var(--theme);
  border-bottom: 2px solid var(--theme);
  text-align: center;
  letter-spacing: 2px;
}

@media (max-width: 575px) {
  .search-wrap .main-search-input {
    height: 50px;
    padding: 0 0;
    line-height: 50px;
    font-size: 18px;
  }
}
.search-wrap input.form-control,
.search-wrap input.form-control:focus {
  background-color: var(--theme);
}

input.main-search-input::placeholder {
  color: var(--theme);
  opacity: 1;
  font-size: 25px;
}

@media (max-width: 575px) {
  input.main-search-input::placeholder {
    font-size: 18px;
  }
}
.search-close {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 30px;
  color: var(--theme);
  cursor: pointer;
}

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: var(--theme);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -35px;
  margin-top: -35px;
  width: 70px;
  height: 70px;
  background-color: var(--theme);
  opacity: 0.3;
}

.cursor-outer {
  margin-left: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--theme);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  -webkit-transition: all 0.08s ease-out;
  -o-transition: all 0.08s ease-out;
  transition: all 0.08s ease-out;
}

.cursor-outer.cursor-hover {
  opacity: 0;
}

.back-to-top {
  border-radius: 50%;
  background-color: var(--theme);
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: var(--white);
  font-size: 18px;
  position: fixed;
  display: inline-block;
  z-index: 999;
  right: 30px;
  bottom: 30px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.back-to-top:hover {
  background-color: var(--header);
  color: var(--white);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.preloader {
  align-items: center;
  cursor: default;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}
.preloader .animation-preloader {
  z-index: 1000;
}
.preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--theme);
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .spinner {
    width: 7.5em;
    height: 7.5em;
    margin: 0 auto 1.5em auto;
  }
}
.preloader .animation-preloader .txt-loading {
  font: bold 5em "Barlow Condensed", sans-serif, "Manrope", sans-serif;
  text-align: center;
  user-select: none;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 2.5em;
  }
}
.preloader .animation-preloader .txt-loading .letters-loading {
  color: var(--theme);
  position: relative;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading::before {
  animation: letters-loading 4s infinite;
  color: var(--header);
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: "Barlow Condensed", sans-serif;
  position: absolute;
  top: -3px;
  transform: rotateY(-90deg);
}
.preloader p {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--theme);
}
.preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}
.preloader .loader .row {
  height: 100%;
}
.preloader .loader .loader-section {
  padding: 0px;
}
.preloader .loader .loader-section .bg {
  background-color: var(--white);
  height: 100%;
  left: 0;
  width: 100%;
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}
.preloader.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}
.preloader.loaded .loader-section .bg {
  width: 0;
  transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

.project-card-items {
  margin-top: 50px;
  transition: all 0.4s ease-in-out;
}
.project-card-items .project-image {
  position: relative;
  overflow: hidden;
   transition: all 0.4s ease-in-out;
}
.project-card-items .project-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}
.project-card-items .project-image:hover img {
    filter: grayscale(0);
    transition: all 0.4s ease-in-out;
    filter: grayscale(100%);
}
.project-card-items .content {
    position: absolute;
    bottom: 0;
    color: #000;
    width: 100%;
    margin: 0px auto;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.72) 100%);
    padding: 20px;
    transition: all 0.4s ease-in-out;
}
.content a {
    color: #ffffff;
    font-size: 18px;
}
.project-card-items .content{
	transition: all 0.4s ease-in-out;
}
.project-card-items:hover .content {
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#eaeaea+0,ed3b3b+100&0.33+0,1+100 */
background: linear-gradient(to bottom,  rgba(234,234,234,0.33) 0%,rgba(237,59,59,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .project-card-items .project-image {
    height: 450px;
  }
}

@media (max-width: 767px) {
  .project-card-items .project-image .project-content {
    padding: 25px;
  }
}
/*.project-card-items .project-image .project-content::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme);
  opacity: 0;
  visibility: hidden;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  transition: all 0.4s ease-in-out;
}*/
.project-card-items .project-image .project-content span {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 600;
}
.project-card-items .project-image .project-content .content h6 {
  font-size: 12px;
  color: var(--white);
  letter-spacing: 1.2px;
}
.project-card-items .project-image .project-content .content h3 a {
    color: var(--white);
    font-size: 16px;
    line-height: 20px;
}
.project-card-items:hover .project-image .project-content span {
  color: var(--white);
  z-index: 1;
}
.project-card-items:hover .project-image .project-content .content {
  color: var(--white);
  z-index: 1;
}
.project-card-items:hover .project-image .project-content:before {
  width: 100%;
  opacity: 1;
  visibility: visible;
}
.project-section {
    position: relative;
    padding-bottom: 0px !important;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0px !important;
}
.project-section .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.project-section .bg-image img {
  width: 100%;
  height: 100%;
}
.project-card-items p {
    text-align: center;
    color: #000 !important;
    font-size: 13px;
}
.project-image-items {
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}
.project-image-items img {
  width: 100%;
  height: 100%;
}
.project-image-items::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgb(237, 59, 59);
  top: 20px;
  bottom: 20px;
  left: 20px;
  right: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.project-image-items .icon {
  display: inline-block;
  background-color: var(--white);
  color: var(--header);
  width: 75px;
  height: 75px;
  line-height: 75px;
  text-align: center;
  position: absolute;
  top: -100px;
  right: 20px;
  font-size: 20px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.project-image-items .icon:hover {
  background-color: var(--header);
  color: var(--white);
}
.project-image-items .content {
  position: absolute;
  bottom: -150px;
  left: 50px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.project-image-items .content p {
  font-weight: 600;
  color: var(--white);
  font-size: 14px;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}
.project-image-items .content h3 {
  font-weight: 600;
  font-size: 20px;
}
.project-image-items .content h3 a {
  color: var(--white);
}
.project-image-items:hover::before {
  opacity: 0.902;
  visibility: visible;
}
.project-image-items:hover .content {
  opacity: 1;
  visibility: visible;
  bottom: 50px;
}
.project-image-items:hover .icon {
  opacity: 1;
  visibility: visible;
  top: 20px;
}

.project-card-items-2 {
  margin-top: 30px;
}
.project-card-items-2 .project-image {
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease-in-out;
  display: block;
}
.project-card-items-2 .project-image img {
  width: 100%;
  height: 100%;
}
.project-card-items-2 .project-image .project-content {
  padding: 40px;
  background: rgba(23, 23, 23, 0.9);
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  width: 300px;
}
.project-card-items-2 .project-image .project-content h3 a {
  color: var(--white);
}
.project-card-items-2 .project-image .project-content h3 a:hover {
  color: var(--theme);
}
.project-card-items-2 .project-image .project-content span {
  color: #df3939;
  font-size: 12px;
}
.project-card-items-2 .project-image .project-content .icon {
  position: absolute;
  right: 0;
  top: -26px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background-color: var(--theme);
  color: var(--white);
  display: inline-block;
  text-align: center;
  font-size: 18px;
}
.project-card-items-2:hover .project-image .project-content {
  visibility: visible;
  opacity: 1;
  bottom: 0;
}

.project-section-3 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 1600px) {
  .project-section-3 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .project-section-3 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .project-section-3 .container-fluid {
    padding: 0 30px;
  }
}

.project-details-wrapper .details-image img {
  width: 100%;
  height: 100%;
}
.project-details-wrapper .project-information {
  padding: 45px 40px;
  background-color: var(--white);
  border-top: 10px solid var(--theme);
  margin: 0 auto;
  max-width: 1050px;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
  margin-top: -50px;
  position: relative;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .project-details-wrapper .project-information {
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px;
    justify-content: start;
  }
}
.project-details-wrapper .project-information ul {
  display: flex;
  align-items: center;
  gap: 60px;
  justify-content: center;
}
@media (max-width: 1199px) {
  .project-details-wrapper .project-information ul {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: start;
  }
}
.project-details-wrapper .project-information ul li {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  color: var(--header);
  font-weight: 600;
  text-transform: uppercase;
}
.project-details-wrapper .project-information ul li span {
  font-size: 16px;
  font-family: "Barlow Condensed", sans-serif;
  display: block;
  font-weight: 500;
  color: var(--text);
}
.project-details-wrapper .project-information .social-icon {
  gap: 12px;
}
.project-details-wrapper .project-information .social-icon a {
  width: 42px;
  height: 42px;
  line-height: 42px;
  background-color: #f4f4f4;
  color: var(--header);
  text-align: center;
  border-radius: 50%;
}
.project-details-wrapper .project-information .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.project-details-wrapper .project-content {
  margin-top: 30px;
}
.project-details-wrapper .project-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
.project-details-wrapper .project-content h3 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 20px;
}
.project-details-wrapper .project-content h4 {
  font-size: 24px;
  font-weight: bold;
  font-family: "Manrope", sans-serif;
  color: var(--theme);
  text-transform: capitalize;
  margin-top: 25px;
  margin-bottom: 20px;
}
.project-details-wrapper .project-content .details-list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .project-details-wrapper .project-content .details-list {
    flex-wrap: wrap;
  }
}
.project-details-wrapper .project-content .details-list ul li {
  font-weight: 700;
  color: var(--header);
}
.project-details-wrapper .project-content .details-list ul li:not(:last-child) {
  margin-bottom: 14px;
}
.project-details-wrapper .project-content .details-list ul li i {
  margin-right: 10px;
  color: var(--theme);
}
.project-details-wrapper .slider-button {
  border-top: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
  margin-top: 65px;
  padding: 25px 0;
}
.project-details-wrapper .slider-button .cmn-next,
.project-details-wrapper .slider-button .cmn-prev {
  width: 70px;
  height: 70px;
  line-height: 75px;
  text-align: center;
  border-radius: 50%;
  transition: all 0.4s;
  background-color: #f4f4f4;
}
.project-details-wrapper .slider-button .cmn-next i,
.project-details-wrapper .slider-button .cmn-prev i {
  color: #454750;
  font-size: 24px;
  transition: all 0.4s;
}
.project-details-wrapper .slider-button .cmn-next:hover,
.project-details-wrapper .slider-button .cmn-prev:hover {
  background: var(--theme);
  border-color: var(--theme);
}
.project-details-wrapper .slider-button .cmn-next:hover i,
.project-details-wrapper .slider-button .cmn-prev:hover i {
  color: var(--white);
}
@media (max-width: 1399px) {
  .project-details-wrapper .slider-button .cmn-next,
  .project-details-wrapper .slider-button .cmn-prev {
    width: 48px;
    height: 48px;
    line-height: 48px;
  }
  .project-details-wrapper .slider-button .cmn-next i,
  .project-details-wrapper .slider-button .cmn-prev i {
    font-size: 17px;
  }
}
@media (max-width: 1399px) {
  .project-details-wrapper .slider-button .cmn-next,
  .project-details-wrapper .slider-button .cmn-prev {
    width: 38px;
    height: 38px;
    line-height: 38px;
  }
  .project-details-wrapper .slider-button .cmn-next i,
  .project-details-wrapper .slider-button .cmn-prev i {
    font-size: 16px;
  }
}
.project-details-wrapper .slider-button .previus-text {
  font-size: 18px;
  color: var(--header);
  text-transform: uppercase !important;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600 !important;
}
@media (max-width: 575px) {
  .project-details-wrapper .slider-button .previus-text {
    font-size: 18px;
  }
  .project-details-wrapper .slider-button .project-storke {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .project-details-wrapper .slider-button .previus-text {
    font-size: 16px;
  }
  .project-details-wrapper .slider-button .project-storke {
    font-size: 24px;
  }
}
@media (max-width: 470px) {
  .project-details-wrapper .slider-button .previus-text {
    font-size: 14px;
  }
  .project-details-wrapper .slider-button .project-storke {
    display: none;
  }
}

.section-padding {
    padding: 60px 0;
}
.icon img {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    width: 100px;
    background-size: cover;
}
.technology-icon-list li {
    display: inline-block;
    width: 8%;
    margin-bottom: 16px;
}
.icon {
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
ul.technology-icon-list {
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.tooltip-1 {
    font-weight: 400;
    background: #ff3633;
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    color: #fff;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    line-height: 35px;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: auto;
    margin: 0px auto;
}
.tooltip-1:after {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #ff3633;
    bottom: -10px;
    left: 0;
    right: 0;
    margin: 0px auto;
}
.technology-icon-list .icon:hover .tooltip-1 {
    opacity: 1;
}
@media (max-width: 1199px) {
  .section-padding {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
}
.section-title {
    margin-bottom: 20px;
    margin-top: -7px;
    position: relative;
}
.section-title span {
  font-size: 18px;
  font-weight: 600;
  color: var(--theme);
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  margin-top: 50px;
}
.section-title span::before {
  display: inline-block;
  margin-right: 5px;
}

.section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 0;
    justify-content: center;
    text-align: center;
  }
  .banner-title {
    font-size: 26px;
}
.banner-left {
    width: 100%;
    padding: 15px;
}
    .banner-content {
        display: block;
        top: 0;
        text-align: center;
        top: 90px;
    }
    .banner-service-list li:before{
    	display: none;
    }
.banner-service-list li {
    padding-left: 0;
}
.banner-form {
    max-width: 100%;
}
}
.section-title-area .section-title {
  margin-bottom: 0;
}

.service-wrapper {
  background-color: var(--white);
  padding: 40px;
  border-top: 12px solid var(--theme);
  margin-top: -15px;
  position: relative;
  z-index: 9;
}
.service-wrapper .service-box-items {
  background-color: #f4f4f4;
  padding: 30px 30px 10px;
  position: relative;
  z-index: 9;
}
.service-wrapper .service-box-items::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 97px;
  height: 98px;
  z-index: 2;
  background-image: url(../img/service/shape.png);
}
.service-wrapper .service-box-items::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(-45deg, rgba(237, 59, 59, 0.3) 0 0%, rgba(255, 255, 255, 0) 40% 0%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: -1;
  opacity: 0;
}
.service-wrapper .service-box-items .content {
  margin-top: 15px;
}
.service-wrapper .service-box-items .content h4 {
  margin-bottom: 10px;
  padding-bottom: 30px;
  border-bottom: 1px solid #d7d7d7;
}
.service-wrapper .service-box-items .content h4 a:hover {
  color: var(--theme);
}
.service-wrapper .service-box-items:hover::after {
  opacity: 1;
}
.service-wrapper .service-info {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}
/*About*/
.homepage-about {
    background: #fff5f5;
    position: relative;
}
.about-wrapper {
    /*border-top: 5px solid #ec3b3b;*/
    text-align: center;
    padding: 30px;
    position: relative;
}
.heading-title {
    font-size: 32px;
    font-weight: 700;
    text-transform: none;
    line-height: 1.4;
}
.sub-heading {
    font-size: 15px;
    color: #3e3e3e;
}
.service-section p, .project-section p {
    color: #000;
}
.brand-content p {
    color: #fff;
    margin-bottom: 8px;
    line-height: 25px;
    text-align:justify;
}
.about-wrapper p {
    color: #3e3e3e;
    line-height: 27px;
    margin: 1em auto;
    max-width: 90%;
    text-align: justify;
}
.Suggestions p {
    max-width: 90%;
    margin: 0px auto;
}
.what-we-do-list p {
    max-width: 100%;
}
.service-inner {
    padding: 50px;
    text-align: center;
}
.web-application-service h2 {
    text-align: center;
}
.divider {
    width: 70px;
    height: 3px;
    background: #ed3b3b;
    margin: 15px auto;
}
.service-block .inner-box {
    background: #fff;
    box-shadow: 0px -5px 27px 5px rgb(175 179 186 / 38%);
    padding: 20px;
    position: relative;
    background-position: center center;
    background-size: cover;
    min-height: 400px !important;
}
.service-block .inner-box::before {
    position: absolute;
    width: 124px;
    height: 121px;
    left: 0px;
    top: 0px;
    background-image: url(../img/dots.webp);
    content: "";
}
.service-block .icon-box {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 110px;
    width: 110px;
    background: #f4f4f4;
    transition: 300ms;
    padding: 40px 50px;
    border-radius: 100px 0px 0px 0px;
    z-index: 0;
}
.service-block .inner-box .icon-box .icon-box-hover {
    display: none;
}
.service-block .inner-box .icon-box .icon-box-icon {
    position: absolute;
    top: 60%;
    width: 50px;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0px auto;
}
.service-block .inner-box:hover .icon-box .icon-box-hover {
	display: block;
    position: absolute;
    top: 60%;
    width: 50px;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0px auto;
}
.service-box li {
    padding: 30px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    min-height: 450px;
}
.service-box li:first-child {
    background: #b42e2e;
}
.service-box li:nth-child(2) {
    background: #545454;
}
.service-box li:nth-child(3) {
    background: #003466;
}
.service-box li:nth-child(4) {
    background: #545454;
}
.service-box li:nth-child(5) {
    background: #003466;
}
.service-box li:last-child {
    background: #b42e2e;
}
.service-box li:hover:nth-child(3), .service-box li:hover:nth-child(5) {
    background: #014788;
}
.service-box li:hover:first-child, .service-box li:hover:last-child {
    background: #e64e4e;
}
.service-box li:hover:nth-child(2), .service-box li:hover:nth-child(4) {
    background: #2e2e2e;
}

.service-text-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}
.service-text-title img {
    max-width: 70px;
}
.service-block {
    position: relative;
}
.service-text-title h3 {
    font-size: 27px;
    color: #fff;
    text-transform: capitalize;
    width: 400px;
    line-height: 35px;
}
.service-box p {
    color: #e8e8e8;
    margin-top: 20px;
    min-height: 220px;
    text-align: justify;
}
.service-box a {
    margin-top: 40px;
}
.service-block .icon-box i {
    font-size: 70px;
    color: #ed3b3b;
    line-height: 80px;
}
.service-block .read-more {
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    color: #272727;
    border-radius: 10px;
    transition: 100ms linear;
    margin-top: 20px;
    font-weight:500;
}
.service-block .read-more i {
    margin-right: 10px;
    height: 52px;
    width: 52px;
    font-size: 16px;
    color: #000;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 30px;
    border-radius: 50%;
    transition: 100ms linear;
}
.inner-box p {
    font-size: 15px;
    color: #3e3e3e;
}

.inner-box h5 {
    font-size: 22px;
    margin-bottom: 18px;
    position: relative;
    max-width: 90%;
    text-transform: capitalize;
}
.service-block .inner-box:hover .icon-box {
    background-color: #ed3b3b;
}
.service-block .inner-box:hover .icon-box .icon {
    color: rgb(255, 255, 255);
}
.service-block .inner-box:hover .read-more i {
    color: rgb(255, 255, 255);
    background-color: #ed3b3b;
}
.service-block .inner-box:hover .icon-box i {
    color: #fff;
}
.experience-panel h2 {
    text-align: center;
}
.experience-panel {
    padding: 60px 0px;
    background: #fcfcfc;
    margin-top: 50px;
}
.footer-bottom p {
    color: #fff;
}
.experience-tab {
    display: flex;
    border: 1px solid #202020;
    padding: 10px;
}
.experience-tab {
    display: flex;
    border: 2px solid #f5f5f5;
    padding: 25px;
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 6px;
    min-height: 10px;
    flex-direction: column;
    align-content: center;
    box-shadow: 0 20px 70px rgb(175 179 186 / 30%) !important;
}
.experience-tab:hover {
    border-color: #ececec;
}
.experience-tab-content p {
    color: #3e3e3e;
    margin-top: 10px;
    min-height: 200px;
    max-width: 300px;
    font-size: 15px;
    text-align: center;
    line-height: 24px;
}
.project-section p, .service-inner p {
    max-width: 80%;
    margin: 0px auto;
    color: #3e3e3e;
}
/*.experience-tab:before {
    position: absolute;
    content: '';
    right: 0px;
    top: 0px;
    width: 0;
    height: 0;
    border-top: 0px solid transparent;
    border-bottom: 60px solid transparent;
    border-right: 50px solid #f57a7a;
}*/
.experience-tab:after {
    position: absolute;
    content: '';
    right: 30px;
    top: -60px;
    width: 26px;
    height: 220px;
    transform: rotate(-40deg);
}
.experience-panel-inner {
    margin-top: 50px;
}
.experience-tab-icon img {
    width: 55px;
    object-fit: contain;
    margin: 0px auto;
    display: block;
}
.technology-wrapper {
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
    padding: 2em 0px;
    text-align: center;
}
.technology-wrapper:before {
    position: absolute;
    content: '';
    background: rgba(52 52 52 / 80%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.technology-content-area {
    position: relative;
}
.technology-content-area .heading-title {
    color: #fff;
}
.technology-content p {
    color: #fff;
    font-weight: 400;
    max-width: 80%;
    margin: 0px auto;
    text-align: center;
}
.technology-icon .technology-box-items {
    display: inline-block;
    width: 16%;
    transition: 300ms;
}
.technology-icon .technology-box-items:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 60px;
    transition: 300ms;
}
.technology-icon .technology-box-items img {
    height: 100px;
    object-fit: contain;
    padding: 10px;
}
.technology-content-part {
    margin: 1em 0px;
}
.technology-icon .technology-box-items .icon {
    background: #fff;
    padding: 10px;
    margin: 6px;
    border-image: linear-gradient(to right, #868686, #ffffff) 1;
    border-radius:10px;
}
.funfact-section {
    background-attachment: fixed !important;
    background-size: cover;
    margin: 0em 0px !important;
}
.projectFactsWrap {
    display: flex;
    margin-top: 30px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: 35px 15em 10px;
}
.projectFactsWrap .item p {
    text-align: center;
}
#projectFacts .fullWidth{
  padding: 0;
}
.projectFactsWrap .item {
    width: 170px;
    height: 170px;
    padding: 38px 0px;
    text-align: center;
    border-radius: 100%;
}
.projectFactsWrap .item:nth-child(1) {
    background: rgb(255 131 201);
}
.projectFactsWrap .item:nth-child(2) {
    background: rgb(106 178 255);
}
.projectFactsWrap .item:nth-child(3) {
    background: rgb(86 207 193);
}
.projectFactsWrap .item p.number {
    font-size: 36px !important;
    padding: 0;
    font-weight: bold;
    color: #fff;
    line-height: 50px;
}
.projectFactsWrap .item p {
    color: #fff;
    font-size: 18px;
    margin: 0;
    padding: 10px;
    font-weight: 700;
}


.projectFactsWrap .item span{
  width: 60px;
  background: rgba(255, 255, 255, 0.8);
  height: 2px;
  display: block;
  margin: 0 auto;
}


.projectFactsWrap .item i{
  vertical-align: middle;
  font-size: 50px;
  color: rgba(255, 255, 255, 0.8);
}


.projectFactsWrap .item:hover i, .projectFactsWrap .item:hover p{
  color: white;
}

.projectFactsWrap .item:hover span{
  background: white;
}
.experience-tab{
	transition: 300ms;
}
.experience-tab:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 60px;
    transform: translateY(-15px);
    transition: 300ms;
}

@media (max-width: 575px) {
  .service-wrapper .service-info {
    flex-wrap: wrap;
  }
    .banner-title {
        text-align: center;
        line-height: 30px;
        font-size: 25px;
        margin-bottom: 10px;
    }
}
.service-wrapper .service-info .info-content p {
  color: var(--text);
}
.service-wrapper .service-image {
  position: relative;
}
.service-wrapper .service-image img {
  width: 100%;
  height: 100%;
}
.service-wrapper .service-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(23, 23, 23, 0.8);
}
.service-wrapper .service-image .service-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 40px;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
.service-wrapper .service-image .service-content h3 {
  font-weight: 600;
}
.service-wrapper .service-image .service-content h3 a {
  color: var(--white);
}
.service-wrapper .service-image .service-content h3 a:hover {
  color: var(--theme);
}
.service-wrapper .service-image .service-content .theme-btn {
  padding: 22px 20px;
}
.service-wrapper .service-image .service-content .theme-btn::before, .service-wrapper .service-image .service-content .theme-btn::after {
  background-color: var(--white);
}
.service-wrapper .service-image .service-content .theme-btn:hover {
  color: var(--header);
}

.service-card-items {
  margin-top: 30px;
  padding: 10px;
  background-color: var(--white);
  padding-bottom: 0;
}
.service-card-items .service-items {
  padding: 40px;
  background-color: #f4f4f4;
  position: relative;
  z-index: 9;
}
.service-card-items .service-items .content {
  margin-top: 20px;
  position: relative;
  z-index: 9;
}
.service-card-items .service-items .content h4 {
  font-weight: 600;
  margin-bottom: 15px;
}
.service-card-items .service-items .content h4 a:hover {
  color: var(--theme);
}
.service-card-items .service-items .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.service-card-items .service-items .bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card-items .link-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    padding: 10px 40px;
    position: relative;
}
.service-card-items .link-btn:hover {
  color: var(--theme);
}
.service-card-items:hover .service-items .bg-image, .service-card-items.active .service-items .bg-image {
  opacity: 1;
  visibility: visible;
}
.service-card-items:hover .service-items .content h4 a, .service-card-items.active .service-items .content h4 a {
  color: var(--white);
}
.service-card-items:hover .service-items .content h4 a:hover, .service-card-items.active .service-items .content h4 a:hover {
  color: var(--theme);
}
.service-card-items:hover .service-items .content p, .service-card-items.active .service-items .content p {
  color: var(--white);
}

.service-box-items-3 {
  margin-top: 30px;
  padding: 30px 30px 20px;
  background-color: var(--white);
  position: relative;
  z-index: 9;
  transition: all 0.4s ease-in-out;
}
.service-box-items-3::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 97px;
  height: 98px;
  z-index: 2;
  background-image: url(../img/service/shape.png);
}
.service-box-items-3 .icon {
  transition: all 0.4s ease-in-out;
}
.service-box-items-3 .content {
  margin-top: 10px;
}
.service-box-items-3 .content h4 {
  font-weight: 600;
  margin-bottom: 10px;
  padding-bottom: 30px;
  border-bottom: 1px solid #d7d7d7;
}
.service-box-items-3 .content .link-btn {
  text-align: right;
  display: block;
  line-height: 1;
  padding-top: 10px;
}
.service-box-items-3:hover {
  background-color: var(--theme);
}
.service-box-items-3:hover .icon {
  filter: grayscale(100%) brightness(300%);
}
.service-box-items-3:hover .content h4 {
  border-bottom: 1px solid var(--header);
}
.service-box-items-3:hover .content h4 a {
  color: var(--white);
}
.service-box-items-3:hover .content .link-btn {
  color: var(--header);
}

@media (max-width: 1199px) {
  .service-section-2 .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.service-details-wrapper .service-details-post .details-image img {
  width: 100%;
  height: 100%;
}
.service-details-wrapper .service-details-post .details-content {
  margin-top: 30px;
}
.service-details-wrapper .service-details-post .details-content h3 {
  font-size: 36px;
  font-weight: 600;
}
.service-details-wrapper .service-details-post .details-content span {
  color: var(--theme);
  font-weight: 400;
}
.service-details-wrapper .service-details-post .details-content .details-area {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
  margin-bottom: 50px;
}
@media (max-width: 1199px) {
  .service-details-wrapper .service-details-post .details-content .details-area {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.service-details-wrapper .service-details-post .details-content .details-area .details-items {
  display: flex;
  gap: 25px;
  border-bottom: 2px solid var(--theme);
  padding-bottom: 20px;
}
@media (max-width: 1199px) {
  .service-details-wrapper .service-details-post .details-content .details-area .details-items {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.service-details-wrapper .service-details-post .details-content .details-area .details-items .icon {
  width: 110px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  background-color: var(--theme);
  transition: all 0.4s ease-in-out;
}
.service-details-wrapper .service-details-post .details-content .details-area .details-items .content h4 {
  margin-bottom: 10px;
}
.service-details-wrapper .service-details-post .details-content .details-area .details-items:hover .icon {
  background-color: var(--header);
}
.service-details-wrapper .service-details-post .details-content .list-area {
  display: flex;
  align-items: center;
  gap: 100px;
}
@media (max-width: 1199px) {
  .service-details-wrapper .service-details-post .details-content .list-area {
    gap: 30px;
    flex-wrap: wrap;
  }
}
.service-details-wrapper .service-details-post .details-content .list-area .list-content h3 {
  margin-bottom: 30px;
}
.service-details-wrapper .service-details-post .details-content .list-area .list-content h5 {
  color: var(--theme);
  font-weight: 600;
}
.service-details-wrapper .service-details-post .details-content .list-area .list-content .details-list {
  margin-top: 30px;
}
.service-details-wrapper .service-details-post .details-content .list-area .list-content .details-list li {
  color: var(--text);
  font-weight: 500;
}
.service-details-wrapper .service-details-post .details-content .list-area .list-content .details-list li:not(:last-child) {
  margin-bottom: 10px;
}
.service-details-wrapper .service-details-post .details-content .list-area .list-content .details-list li i {
  margin-right: 6px;
  height: 20px;
  width: 20px;
  line-height: 20px;
  border-radius: 30px;
  text-align: center;
  background: var(--theme);
  color: var(--white);
  font-size: 12px;
}
.service-details-wrapper .head-service-text {
  font-size: 20px;
  font-weight: 600 !important;
  font-family: "Barlow Condensed", sans-serif;
  color: var(--theme);
  text-transform: uppercase;
}

.main-sideber .service-sideber .single-sidebar-widget {
  border: 2px solid var(--theme);
  padding: 30px;
  margin-bottom: 30px;
  background-color: var(--white);
}
.main-sideber .service-sideber .single-sidebar-widget .widget-categories ul li {
  display: flex;
  align-items: center;
  transition: all 0.4s ease-in-out;
  justify-content: space-between;
  padding: 12px 20px;
  background-color: #f4f4f4;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
}
.main-sideber .service-sideber .single-sidebar-widget .widget-categories ul li:not(:last-child) {
  margin-bottom: 10px;
}
.main-sideber .service-sideber .single-sidebar-widget .widget-categories ul li:hover {
  background-color: var(--theme);
  color: var(--white);
}
.main-sideber .service-sideber .single-sidebar-widget .widget-categories ul li:hover a {
  color: var(--white);
}
.main-sideber .post-bg-image {
  position: relative;
  overflow: hidden;
}
.main-sideber .post-bg-image .service-contact-items {
  padding: 50px;
  position: relative;
  z-index: 9;
}
.main-sideber .post-bg-image .service-contact-items .icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 100px;
  text-align: center;
  background-color: var(--header);
  color: var(--white);
  margin-bottom: 30px;
  transition: all 0.4s ease-in-out;
  position: relative;
}
.main-sideber .post-bg-image .service-contact-items .icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  transform: translate(-50%, -50%);
  width: 108px;
  height: 108px;
  line-height: 108px;
  background-color: rgba(255, 255, 255, 0.102);
  border-radius: 50%;
}
.main-sideber .post-bg-image .service-contact-items .icon:hover {
  background-color: var(--theme);
}
.main-sideber .post-bg-image .service-contact-items .content h3 {
  color: var(--white);
  margin-bottom: 50px;
  font-size: 30px;
  font-weight: 600;
}
.main-sideber .post-bg-image .service-contact-items .content .contact span {
  color: var(--white);
  font-size: 14px;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}
.main-sideber .post-bg-image .service-contact-items .content .contact h4 {
  font-size: 20px;
  font-weight: 600;
}
.main-sideber .post-bg-image .service-contact-items .content .contact h4 a {
  color: var(--white);
}
.main-sideber .post-bg-image .bg-shape {
  position: absolute;
  top: 0;
  left: -80px;
  bottom: -5px;
}
.main-sideber .post-bg-image .bg-shape img {
  width: 100%;
  height: 100%;
}
.main-sideber .service-document {
  display: flex;
  align-items: center;
  gap: 30px;
  background-color: var(--theme);
  padding: 40px;
  margin-top: 30px;
}
.main-sideber .service-document .icon {
  color: var(--white);
  font-size: 30px;
}
.main-sideber .service-document .content h6 {
  font-weight: 500;
}
.main-sideber .service-document .content h6 a {
  color: var(--white);
}
.main-sideber .service-document .content span {
  font-size: 12px;
  color: var(--white);
}

.team-card-items {
  margin-top: 60px;
  position: relative;
}
.team-card-items .bg-image {
  position: absolute;
  right: -30px;
  top: -30px;
  z-index: -1;
}
.team-card-items .bg-image img {
  width: 100%;
  height: 100%;
}
.team-card-items .team-image {
  position: relative;
  padding-top: 30px;
  padding-right: 30px;
}
.team-card-items .team-image img {
  width: 100%;
  height: 100%;
}
.team-card-items .team-image::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url(../img/team/bg-shape.png) no-repeat calc(100% - 30px) 30px #f4f4f4;
}
.team-card-items .team-content {
  background-color: var(--white);
  padding: 20px;
  margin-top: -50px;
  position: relative;
}
.team-card-items .team-content .social-profile {
  position: absolute;
  right: 30px;
  bottom: 30px;
  content: "";
  transition: all 0.4s ease-in-out;
  z-index: 2;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
}
.team-card-items .team-content .social-profile ul {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: all 0.6s ease-in-out;
}
.team-card-items .team-content .social-profile ul li a {
  width: 50px;
  height: 50px;
  background: var(--white);
  display: block;
  color: var(--header);
  text-align: center;
  line-height: 50px;
  transition: all 0.4s ease-in-out;
}
.team-card-items .team-content .social-profile ul li a:hover {
  background-color: var(--theme);
  color: var(--white);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.team-card-items .team-content .social-profile .share-btn {
  width: 50px;
  height: 50px;
  background: var(--white);
  display: inline-block;
  color: var(--header);
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.team-card-items .team-content .social-profile:hover ul {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.team-box-items {
  margin-top: 30px;
}
.team-box-items .thumb {
  position: relative;
}
.team-box-items .thumb img {
  width: 100%;
  height: 100%;
}
.team-box-items .thumb::after {
  content: "";
  position: absolute;
  top: -35px;
  right: 0px;
  width: 9%;
  height: 100%;
  background-image: linear-gradient(-45deg, rgba(237, 59, 59, 0.3) 0 0%, rgba(255, 255, 255, 0) 40% 0%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.team-box-items .content {
  background-color: var(--white);
  padding: 20px;
  margin-top: -80px;
  position: relative;
  margin-right: 60px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.team-box-items .content span {
  font-size: 14px;
  text-transform: uppercase;
  font-family: "Barlow Condensed", sans-serif;
}
.team-box-items .content h3 {
  font-weight: 600;
}
.team-box-items .content h3:hover {
  color: var(--theme);
}
.team-box-items .content .social-profile {
  position: absolute;
  right: 10px;
  bottom: 20px;
  content: "";
  transition: all 0.4s ease-in-out;
  z-index: 2;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
}
.team-box-items .content .social-profile ul {
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease-in-out;
  position: relative;
}
.team-box-items .content .social-profile ul::before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -5px;
  border-top: 5px solid var(--theme);
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  margin-left: -7px;
  z-index: 99;
}
.team-box-items .content .social-profile ul li a {
  padding: 7px 10px;
  background-color: var(--theme);
  color: var(--white);
  display: block;
  text-align: center;
  transition: all 0.4s ease-in-out;
}
.team-box-items .content .social-profile ul li a:hover {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.team-box-items .content .social-profile .share-btn {
  width: 50px;
  height: 50px;
  background: var(--white);
  display: inline-block;
  color: var(--header);
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  border-left: 1px solid #d7d7d7;
  padding-left: 5px;
}
.team-box-items .content .social-profile:hover .share-btn {
  color: var(--theme);
}
.team-box-items .content .social-profile:hover ul {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.team-box-items:hover .thumb::after {
  opacity: 1;
}

.testimonial-wrapper .testimonial-content {
  position: relative;
}
.testimonial-wrapper .testimonial-content p {
    max-width: 80%;
    margin-top: 10px;
    position: relative;
    z-index: 9;
    color: #3e3e3e;
    margin: 20px auto 0px !important;
}
.testimonial-box-items p {
    color: #3e3e3e;
    padding-top: 60px;
}
.testimonial-wrapper .testimonial-content .circle-shape {
  position: absolute;
  bottom: 50px;
  right: 30px;
}
@media (max-width: 1199px) {
  .testimonial-wrapper .testimonial-content .circle-shape {
    display: none;
  }
}
.testimonial-wrapper .testimonial-content .circle-shape .animation-circle {
  animation: cir36 10s linear infinite;
}
.testimonial-wrapper .testimonial-content .circle-shape .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.testimonial-wrapper .testimonial-content .array-button {
  margin-top: 30px;
}
.testimonial-wrapper .testimonial-content .array-button .array-next, .testimonial-wrapper .testimonial-content .array-button .array-prev {
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--white);
  text-align: center;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}
.testimonial-wrapper .testimonial-content .array-button .array-next:hover, .testimonial-wrapper .testimonial-content .array-button .array-prev:hover {
  background-color: var(--theme);
  color: var(--white);
}

@media (max-width: 1199px) {
  .testimonial-wrapper .testimonial-right-wrapper {
    margin-right: 0;
  }
}
.testimonial-wrapper .testimonial-right-wrapper .testimonial-box-items .content {
  background-color: transparent;
  box-shadow: none;
  position: relative;
}
.client-info i {
    color: #ed3b3b;
}
.client-img {
    width: 100px;
    overflow: hidden;
    border: 3px solid #ccc;
    border-radius: 100px;
    height: 100px;
}
.client-content {
    display: flex;
    align-items: center;
}
.client-img img {
    width: 90px;
    height: 90px;
    border-radius: 100px;
    object-fit: contain;
    padding: 5px;
}
.author-info {
    margin-left: 20px;
}
.star {
    text-align: left;
}
.testimonial-wrapper .testimonial-right-wrapper .testimonial-box-items .content .bar-shape {
  position: absolute;
  bottom: -26px;
  left: 0;
  right: 0;
}

.testimonial-wrapper .testimonial-right-wrapper .testimonial-box-items .content .bar-shape img {
  width: 100%;
  height: 100%;
}
.testimonial-wrapper .testimonial-right-wrapper .testimonial-box-items .client-info {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
}
.testimonial-wrapper .testimonial-right-wrapper .testimonial-box-items .client-info .client-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ed3b3b;
    text-align: left;
}
.testimonial-wrapper .testimonial-right-wrapper .testimonial-box-items .client-info .client-content span {
    font-size: 15px;
    font-weight: 500;
    color: #3e3e3e;
    text-align: left !important;
    display: block;
}
.testimonial-section-2 {
  background-color: rgb(244, 244, 244);
}

.testimonial-wrapper-2 {
  position: relative;
}
.testimonial-wrapper-2 .client-shape-image {
  position: absolute;
  right: -11%;
  top: -20px;
}
.testimonial-wrapper-2 .testimonial-content {
  position: relative;
  z-index: 9;
}
.testimonial-wrapper-2 .testimonial-content p {
  font-weight: 500;
}
.testimonial-wrapper-2 .testimonial-right-items {
  position: relative;
}
.testimonial-wrapper-2 .testimonial-right-items .icon {
  width: 105px;
  height: 105px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  background: var(--theme);
  border-radius: 0 0 0 100%;
  font-size: 42px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 20px;
}
.testimonial-wrapper-2 .testimonial-right-items .content {
  padding: 60px;
  background-color: var(--white);
  position: relative;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.07);
}
.testimonial-box-items .content i {
    font-size: 80px;
    position: absolute;
    top: -20px;
    left: 0;
    color: #d3d3d3;
    z-index: -1;
}
.services-background {
    background: #f1f1f1;
}

/*RESPONSIVE*/

@media (max-width: 1199px) {
}

@media (max-width: 991px) {
  .testimonial-wrapper-2 .testimonial-right-items .content {
    padding: 50px;
  }
  .technology-icon-list li {
    width: 16%;
}
.activity-item {
    flex-direction: column;
    text-align: center;
}
}
@media (max-width: 768px) {
      .about-wrapper {
        margin-top: 0px !important;
        padding: 50px 0px !important;
    }
      .theme-btn {
        margin: 10px;
        text-align: center;
        display: block;
        font-size: 13px;
}
.activity-item h3 {
    text-align: center;
    font-size: 12px;
}
  .header-logo img {
    width: 100px;
}
.activity-item span {
    font-size: 30px;
    margin-right: 0px;
}
  .testimonial-wrapper-2 .testimonial-right-items .content {
    padding: 40px;
  }
  .funfact-box-items {
    display: inline-block;
    width: 48%;
    margin-bottom: 10px;
    text-align: center;
}
.banner-title {
    font-size: 24px;
    line-height: 36px;
}
.our-review li p {
    font-size: 10px !important;
}
.our-review li {
    width: 100%;
}
}
@media (max-width: 575px) {
  .testimonial-wrapper-2 .testimonial-right-items .content {
    padding: 30px;
  }
}
.testimonial-wrapper-2 .testimonial-right-items .content .star {
  color: var(--theme);
  margin-bottom: 15px;
}
.testimonial-wrapper-2 .testimonial-right-items .content p {
  font-size: 20px;
  font-weight: 500;
  line-height: 38px;
}
@media (max-width: 767px) {
  .testimonial-wrapper-2 .testimonial-right-items .content p {
    font-size: 18px;
  }
  .banner-title {
    text-align: center;
    font-size: 30px;
    line-height: 38px;
}
.our-review li {
    max-width: 100% !important;
    margin-top: 0px !important;
}
}
@media (max-width: 575px) {
  .testimonial-wrapper-2 .testimonial-right-items .content p {
    font-size: 16px;
  }
  .our-review {
        flex-direction: column;
    }
        .our-review li {
        max-width: 100% !important;
        margin-top: 0px !important;
        width: 80%;
        margin-bottom: 20px !important;
    }
    .banner-left p {
    text-align: center;
}
.banner-service-list {
    margin: 10px 0px;
}
.theme-btn {
    margin: 10px;
}
.activity-wrapper {
    flex-direction: column;
}
    .activity-item {
        width: 100% !important;
        flex-direction: column;
        margin-bottom: 20px;
    }
    .homepage-about {
    padding: 3em 0px !important;
}
.our-activity:after {
    background: #f00 !important;
}
.service-box a {
    margin-top: 0;
}
.service-box p {
    min-height: inherit;
    margin-bottom: 30px;
}
.service-text-title h3 {
    width: inherit;
    font-size: 20px;
    text-align: left;
    line-height: 30px;
}
.service-text-title img {
    max-width: 50px;
}
.container-card {
    flex-direction: column;
}
.card-wrapper {
    position: inherit;
}
.icon-box-hover {
    display: none !important;
}
.container-card .card .card-wrapper .card-content {
    opacity: 1;
}
.container-card {
    & .card {
        &:not(:nth-child(10)) {
            margin-right: 0px;
        }
    }
}
.technology-content p {
    max-width: 100%;
}
.experience-tab-icon img {
    width: 40px;
}
}
.testimonial-wrapper-2 .testimonial-right-items .content .testimonial-one__arrow {
  display: inline-block;
  width: 146px;
  height: 50px;
  position: absolute;
  top: 100%;
  left: 60px;
}
.testimonial-wrapper-2 .testimonial-right-items .content .testimonial-one__arrow .first {
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: -2px;
  background: #fff;
  z-index: 9;
}
.testimonial-wrapper-2 .testimonial-right-items .content .testimonial-one__arrow .second {
  position: absolute;
  left: 0;
  right: -4px;
  bottom: -4px;
  top: 0;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  background: var(--theme);
  z-index: 1;
}
.testimonial-wrapper-2 .testimonial-right-items .client-info {
  margin-left: 160px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.service-card-items .content h4 a {
    color: #000;
}
.service-page {
    margin-bottom: 30px;
}
@media (max-width: 575px) {
  .testimonial-wrapper-2 .testimonial-right-items .client-info {
    margin-left: 130px;
    position: relative;
    z-index: 9;
  }
  .technology-icon .technology-box-items {
    width: 32%;
}
.contact-area li {
    display: flex;
    flex-direction: column;
}
}
.testimonial-wrapper-2 .testimonial-right-items .client-info .client-img {
  width: 90px;
  height: 90px;
  line-height: 82px;
  text-align: center;
  border: 2px solid var(--theme);
  border-radius: 50%;
}
.testimonial-wrapper-2 .testimonial-right-items .client-info .client-content h4 {
  font-size: 22px;
  font-weight: 500;
}
.testimonial-wrapper-2 .testimonial-right-items .client-info .client-content span {
  font-size: 15px;
  text-transform: uppercase;
}

.testimonial-wrapper-3 .testimonial-image {
  position: relative;
  margin-top: -2px;
}
.testimonial-wrapper-3 .testimonial-image img {
  width: 100%;
  height: 100%;
}
.testimonial-wrapper-3 .testimonial-image .icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50px;
  text-align: center;
  background-color: var(--theme);
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}
.testimonial-wrapper-3 .testimonial-image .icon img {
  width: initial;
  height: initial;
}
.testimonial-wrapper-3 .testimonial-content {
  margin-left: 70px;
  padding-top: 120px;
}
@media (max-width: 1199px) {
  .testimonial-wrapper-3 .testimonial-content {
    margin-left: 30px;
    padding-top: 100px;
  }
}
@media (max-width: 991px) {
	.service-block h3 {
    text-align: left;
}
.breadcrumb-wrapper {
    padding: 2em 0px !important;
}
.about-wrapper-3 .about-image-3 img {
    height: auto;
}
.about-wrapper-3 p, .sub-heading {
        text-align: justify !important;
        display: block;
    }
    .web-application-service {
    margin-top: 15px;
}
.improve-section p {
    max-width: 100%;
    text-align: justify;
}
.social-icon {
    justify-content: center;
    margin-top: 0px !important;
}
.contact-area li p {
    padding: 0;
}
  .testimonial-wrapper-3 .testimonial-content {
    margin-left: 0;
    padding-top: 30px;
  }
  .banner-images {
    display: none !important;
}
    .banner-content {
        position: relative;
        display: flex;
        flex-direction: column;
    }
        .banner-content {
        position: relative;
        background: #484848;
        top:0;
    }
    .banner-left {
    width: 100%;
    padding: 10px;
}
.banner-service-list li {
        width: 100%;
        font-size: 13px;
    }
.banner-form {
    max-width: 100%;
}
.banner-right {
    width: 100%;
}
    .about-wrapper {
        margin-top: 0;
        padding: 10px;
    }
.heading-title {
        font-size: 20px;
        font-weight: 700;
        line-height: 30px;
    }
.about-wrapper p {
    max-width: 100%;
}
    .project-section p, .service-inner p {
        max-width: 100%;
        margin: 0px auto;
    }
    .inner-box h5 {
    max-width: 100%;
    text-align: left;
}
.service-block .inner-box {
    min-height: auto;
}
.service-block .read-more {
    width: 100%;
}
.experience-panel {
        padding: 10px;
    }
.experience-tab {
        min-height: auto;
        margin-bottom: 10px;
    }
.service-inner {
    padding: 20px;
    text-align: center;
}
.service-block {
    margin-bottom: 20px;
}
.project-card-items .project-image img {
    object-fit: contain;
}
.funfact-section {
    text-align: center;
    padding: 20px;
}
.funfact-box-items {
    width: 32% !important;
}
    .section-padding {
        padding: 20px 0;
        text-align: center;
    }
        h2 {
        font-size: 20px;
    }
    .testimonial-wrapper .testimonial-content p {
    max-width: 100%;
}
    .footer-widgets-wrapper {
        padding: 10px;
        text-align: center;
    }
    .service-block .inner-box {
    padding: 30px;
}
}
.testimonial-wrapper-3 .testimonial-content .testimonial-card-items {
  margin-top: 20px;
}
.testimonial-wrapper-3 .testimonial-content .testimonial-card-items .star {
  display: inline-block;
  margin-bottom: 15px;
}
.testimonial-wrapper-3 .testimonial-content .testimonial-card-items .star i {
  color: var(--theme);
}
.testimonial-wrapper-3 .testimonial-content .testimonial-card-items p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  color: var(--text);
}
.testimonial-wrapper-3 .testimonial-content .testimonial-card-items .client-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
.testimonial-wrapper-3 .testimonial-content .testimonial-card-items .client-info .text h3 {
  font-size: 22px;
}
.testimonial-wrapper-3 .testimonial-content .testimonial-card-items .client-info .text span {
  font-size: 15px;
  color: var(--text);
}
.testimonial-wrapper-3 .tesimonial-image-araa {
  position: relative;
}
.testimonial-wrapper-3 .tesimonial-image-araa .array-button {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: end;
  margin-top: 20px;
}
.meta {
    max-width: 90%;
    margin: 10px auto 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.author-details {
    display: flex;
    align-items: center;
    width: 150px;
}
.author-info .author-name {
    font-style: normal;
    font-size: 18px;
    margin: 0;
    margin-bottom: 8px;
    font-weight:700;
}
.author-info p {
    margin-bottom: 10px;
}
.postdate {
    font-size: 13px;
    color: #4e4e4e;
    font-weight:500;
    font-style:italic;
}
.blog-details .meta {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}
.blog-details .meta .author-name {
    margin-left: 4px;
}
.blog-details .meta .postdate {
    margin-left: 14px;
    font-size: 12px;
    font-weight: 500;
}
.meta img {
    width: 100%;
    max-width: 30px;
    height: 30px;
    border-radius: 100px;
    object-fit: cover;
    border: 1px solid #ababab;
}
.author-name {
    font-size: 13px;
    margin-left: 7px;
    color:#4e4e4e;
    font-style: italic;
    font-weight: 500;
}
@media (max-width: 991px) {
	.blog-details {
    max-width: 100% !important;
    margin: 0px auto;
}
  .testimonial-wrapper-3 .tesimonial-image-araa .array-button {
    display: none;
  }

.banner-content {
        position: relative;
        padding: 30px 0px;
    }
.service-block .inner-box {
    padding: 30px;
}
.projectFactsWrap {
    flex-direction: column;
    align-items: center;
}
.projectFactsWrap .item {
    margin-bottom: 10px;
}
.accordion-header .accordion-button {
    font-size: 14px !important;
    line-height: 19px !important;
}
.counter-box .text {
    margin-left: 10px;
    width: 100%;
    text-align: left;
}
.testimonial-box-items p {
    text-align: justify;
}
.banner-images-items img{
  display:none;
}
.our-review {
    display: flex;
}
}


.testimonial-wrapper-3 .tesimonial-image-araa .array-button .array-prev, .testimonial-wrapper-3 .tesimonial-image-araa .array-button .array-next {
  width: 75px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  box-shadow: none;
}
.testimonial-wrapper-3 .tesimonial-image-araa .array-button .array-prev {
  background-color: #f4f4f4;
  color: var(--header);
}
.testimonial-wrapper-3 .tesimonial-image-araa .array-button .array-prev:hover {
  background-color: var(--theme);
  color: var(--white);
}
.testimonial-wrapper-3 .tesimonial-image-araa .array-button .array-next {
  background-color: var(--black);
}
.testimonial-wrapper-3 .tesimonial-image-araa .array-button .array-next:hover {
  background-color: var(--theme);
  color: var(--white);
}

.testimonial-section-3 {
  position: relative;
}
.testimonial-section-3::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--theme);
  width: 35%;
  height: 84%;
}
.contact-area li {
    display: flex;
}
.contact-area li span {
    color: #d4d4d4;
    font-size:20px;
}
.contact-area li p {
    padding-left: 10px;
    color: #d3d3d3;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 14px;
}
.map-contact-info-wrapper h3 a {
    color: #000;
}
.footer-bottom {
    background: #dd4543;
}
.blog-content-title {
    font-size: 16px;
    text-transform: none;
    margin: 10px 0px;
    font-weight: 600;
    transition: all 0.4s ease-in-out;
    line-height: 1.4;
    margin-bottom: 15px;
}

.blog-content-title-home {
    font-size: 15px;
    text-transform: capitalize;
    margin: 10px 0px;
    font-weight: 500;
    transition: all 0.4s ease-in-out;
    line-height: 1.4;
    margin-bottom: 0px;
    color: #333333;
    min-height: 80px;
}
.except {
    color: #3d3d3d;
    line-height: 20px;
    font-size: 15px;
    margin-bottom: 10px;
    margin-top:5px;
    text-align:justify;
    color: #151414 !important;
    text-align: justify;
    line-height: 24px;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-item {
    border: 2px solid #fff;
    transition: all 0.4s ease-in-out;
    border-radius: 10px;
    box-shadow: 0 20px 70px rgb(175 179 186 / 56%) !important;
}
.blog-item:hover h1 {
    color: #ed3b3b;
    transition: all 0.4s ease-in-out;
}
.blog-item:hover {
    border: 2px solid #e5e5e5;
    transition: all 0.4s ease-in-out;
}
.blog-wrapper ul li a, .blog-wrapper ul li, .blog-wrapper ul li i {
    color: #484848 !important;
}
.blog-wrapper {
    padding: 10px 0px !important;
}
.blog-features-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin: 15px;
}
.blog-item .blog-features-img img {
    transition: all 0.4s ease-in-out;
    height: 210px;
    object-fit: cover;
    border-radius: 8px;
}
.blog-item:hover .blog-features-img img {
    transform: scale(1.1);
    transition: all 0.4s ease-in-out;
}
.blog-item {
    background: #fff;
}
.blog-content {
    padding: 10px 15px;
}
.blog-details h1 {
    color: #e93a3a;
    font-size: 28px;
    text-align: center !important;
    max-width: 100%;
    margin: 0px auto;
}
.author-img img {
    border-radius: 20px;
    object-fit: cover;
    
}
.author-profile {
    background: #f1f1f1;
}
.blog-details .blog-content-title {
    color: #e93a3a;
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.blog-details {
    max-width: 90%;
    margin: 0px auto;
}
.blog-details p {
    color: #3e3e3e;
    line-height: 27px;
    margin: 1em auto;
    text-align: justify;
}
.blog-details h4, .blog-details h3 {
    text-transform: capitalize;
    font-size: 18px;
}
.blog-details ul li {
    color: #3e3e3e;
    font-weight: 400;
    margin-bottom: 10px;
    font-size:15px;
}
.blog-details ul li span {
    margin-right: 6px;
    color: #ed3b3b;
}
table {
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}

table caption {
  font-size: 1.5em;
  margin: .5em 0 .75em;
}

table tr {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  padding: .35em;
}
.blog-details .blog-features-img img {
    max-width: 75%;
    margin: 0px auto;
    display: block;
}
table th,
table td {
  padding: .625em;
  color: #fff;
}

table th {
  font-size: .85em;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: #4c4c4c;
}
tr:nth-child(even) {background-color: #f2f2f2;}

@media screen and (max-width: 600px) {
  table {
    border: 0;
  }

  table caption {
    font-size: 1.3em;
  }
  
  table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
  table tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: .625em;
  }
  
  table td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: .8em;
    text-align: right;
  }
  
  table td::before {
    /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  table td:last-child {
    border-bottom: 0;
  }
  table td::before {
    margin-right: 10px;
}
.blog-details .blog-content-title {
    color: #e93a3a;
    font-size: 20px;
}
.author-info .author-name {
    margin-top: 20px;
}
.projectFactsWrap {
    margin: 0px;
}
.client-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
}
.testimonial-box-items {
    padding: 0px;
}
.author-info {
    margin-left: 0;
}
.testimonial-wrapper .testimonial-right-wrapper .testimonial-box-items .client-info .client-content span {
    text-align: center !important;
}
.star {
    text-align: center;
}
.client-content h3 {
    text-align: center !important;
}
.footer-content p {
    color: #d3d3d3 !important;
    margin-top: 0px !important;
    text-align: center !important;
}
.blog-content-title-home {
    text-align: center;
    min-height: auto;
}
.theme-btn {
        margin: 10px;
        text-align: center;
        display: block;
    }
    section.blog-section {
    margin: 60px 0px;
    text-align: center;
}
.blog-section .divider {
    margin: 20px auto !important;
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-button::before {
    right: 10px;
}
.funfact-section p {
    max-width: 100% !important;
}
.card {
    text-align: center;
}
.card-content ul li {
    padding: 0px !important;
}
.card-content ul li:before{
  display:none;
}
.service-box p {
    text-align: center;
}
.service-text-title {
    flex-direction: column;
}
.service-text-title h3 {
    text-align: center;
}
    .service-box {
        padding: 16px;
        margin-bottom: 10px;
        min-height: auto;
    }
    .about-wrapper p {
        max-width: 100%;
        text-align: center;
    }
        .banner-title {
        text-align: center;
        font-size: 20px;
        line-height: 28px;
    }
    .work-process-list {
    width: 100% !important;
}
.pera-content {
    width: 100% !important;
}
    .about-wrapper-3 p, .sub-heading {
        text-align: center !important;
        display: block;
    }
        .improve-section p {
        max-width: 100%;
        text-align: center;
    }
        .service-block h3 {
        text-align: center;
        min-height: auto;
        margin-bottom: 10px;
    }
}
.blog-details table td{
    text-align: left;
    color: #3e3e3e;
    font-size:15px;
    line-height: 1.3;
}
.whatsapp-icon {
    background: #25d366;
    position: fixed;
    right: 20px;
    bottom: 26px;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    color: #fff;
    font-size: 27px;
    border-radius: 100px;
    z-index: 99;
}
section.blog-section {
    margin: 60px 0px;
}
.blog-section .divider {
    margin: 20px 0px;
}
@media (max-width: 1199px) {
  .testimonial-section-3::before {
    display: none;
  }
  
}/*# sourceMappingURL=main.css.map */



.funfact-section p {
    max-width: 80% ;
    margin: 0px auto;
    color: #3e3e3e;
    text-align: center;
}
.projectFactsWrap p {
    max-width: 100%;
}
.project-name {
    text-align: center;
    color: #484848;
    margin-bottom: 8px;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
    margin-top: 20px;
}
.what-we-do-list li {
    text-align: left;
    margin-bottom: 30px;
    border-radius: 6px;
    padding: 28px 32px 24px;
    background-color: #efefef;
}
.what-we-do-list li p {
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 14px;
    color: #474747;
    line-height: 1.4;
}
.what-we-do-img {
    max-width: 300px;
}
.what-we-do-list span {
    background: -webkit-linear-gradient(#b52e2e, #333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 35px;
    font-weight: 700;
}
.work-process-icon img {
    width: 80px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: none;
    margin-bottom: 20px;
    position: absolute;
    left: -120px;
}
.work-process-list:hover .work-process-icon img {
    display: block !important;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    margin-left: 0px;
    left: 0px;
}
.work-process-list {
    overflow: hidden;
    padding: 25px;
    border-bottom: 1px solid #D9D9D9;
    background: #eeeded;
    position: relative;
    display: flex;
    align-items: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    width: 33%;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 5px;
    min-height: 250px;
}
.setpess p {
    min-height: auto;
}
.work-process-list:before {
    position: absolute;
    content: '';
    background: linear-gradient(90deg, rgb(103 103 104) 0%, rgb(211 54 54 / 76%) 100%);
    width: 100%;
    height: 0px;
    left: 0;
    top: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.work-process-list:hover:before{
    background: linear-gradient(90deg, rgb(103 103 104) 0%, rgb(211 54 54 / 76%) 100%);
    width: 100%;
    height: 100%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.setpess .experience-tab-content {
    min-height: auto;
}
.work-process-icon {
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.pera-content {
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    width: 350px;
}
.work-process-list:hover h3, .work-process-list:hover p {
    color: #fff;
}
.work-process-list .step-number {
    position: absolute;
    right: 30px;
    font-size: 60px;
    font-weight: 700;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    line-height: 80px;
    color: #d8d8d8;
}
.work-process-list:hover .step-number {
    display: block;
    color: #ff7373;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.work-process-list:hover .pera-content {
    -webkit-transform: translateX(90px);
    transform: translateX(90px);
}
.pera-content h3 {
    text-transform: capitalize;
    font-size: 16px;
    margin-bottom: 10px;
}
.work-process-list:hover .pera-content {
    width: 300px;
}
.pera-content p {
    min-height: 100px;
}
.service-block .inner-box:before {
    position: absolute;
    content: '';
    /*background: linear-gradient(90deg, rgb(255 205 205) 0%, rgb(225 144 144 / 76%) 100%);*/
    background:linear-gradient(90deg, rgb(103 103 104) 0%, rgb(211 54 54 / 76%) 100%);
    width: 100%;
    bottom: 0;
    height: 0px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}
.service-block .inner-box:hover:before {
    bottom: 0;
    height: 100%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

/*.service-page-block .inner-box p {
    height: 100px;
    overflow-y: scroll;
}

.service-page-block .inner-box p::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--theme);
  border-radius: 5px;
}


::-webkit-scrollbar-thumb {
  background: #f00;
  border-radius: 10px;
}*/


    .toggle-text-content  {

      span {
          display: none;
      }
    }

.toggle-text-link {
    display: block;
    margin: 20px 0;
    position: relative;
    padding-left: 11px;
    font-weight: 600;
}
.toggle-text-link:after {
    position: absolute;
    width: 33px;
    height: 33px;
    background: #efeded;
    content: '';
    left: 0;
    z-index: -1;
    border-radius: 100px;
    top: -4px;
}
.service-block .inner-box:hover .toggle-text-link:after, .work-process-list:hover .toggle-text-link:after {
    background: #e5321d;
}
.review-icon {
    width: 150px;
    margin: 0px auto;
    display: block;
}
.our-review li {
    background: #fff;
    max-width: 300px;
    margin: 0px auto;
    padding: 25px 15px 25px 15px;
    border: 2px solid #e8e8e8;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border-radius: 5px;
}
.our-review li:hover {
    border-color: #015fba;
     -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.our-review li p {
    font-size: 13px;
    line-height: 20px;
    color: #313131;
    text-align: center;
    padding-top: 8px;
    border-top: 1px solid #ccc;
}
.rating {
    text-align: center;
}

.rating span {
    color: #fbaf01;
}
.our-review li small {
    display: block;
    text-align: center;
    color: #000;
}
.our-activity {
    padding: 2em 0px;
    text-align: center;
    background: #ff4c4c;
    position: relative;
    margin-top: -10px;
}
.activity-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.activity-item {
    width: 20%;
    display: flex;
    text-align: left;
    align-items: center;
    justify-content: center;
}
.activity-item span {
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #fff;
    position: relative;
    text-transform: uppercase;
    font-size: 40px;
    margin: 0;
    font-weight: 800;
    display: block;
    line-height: 50px;
    margin-right: 10px;
}
.activity-item h3 {
    color: #fff;
    font-size: 13px;
    text-transform: capitalize;
    font-weight: 600;
    padding: 0px !important;
}
.activity-item:last-child {
    border: none;
}
.card-content h5 {
    color: #fff;
    line-height: 40px;
}
.card-content ul li {
    font-size: 15px;
    color: #fff;
    position: relative;
    padding-left: 20px;
    line-height: 35px;
}
.card-content ul li:before {
    position: absolute;
    content: '';
    background: #ffffff;
    width: 8px;
    height: 8px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50px;
    left: 0;
}

.s-page:after {
    position: absolute;
    content: '';
    background: rgb(38 38 38 / 80%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}
.service-block .inner-box p {
    min-height: 200px;
}
.s-page h2, .s-page p {
    color: #fff;
}
.s-page:hover h2, .s-page:hover p {
    color: #000;
}
.our-activity:after {
    z-index: 9;
    bottom: -18px;
    width: 400px;
    position: absolute;
    content: '';
    background: url(https://www.teqprosolz.com/public/assets/img/shape-3.png);
    height: 20px;
    right: 0px;
}
.our-activity:before {
    height: 100%;
    position: absolute;
    content: '';
    width: 100%;
    background: url(https://www.teqprosolz.com/public/assets/img/bg-map.png);
    top: 0;
    left: 0;
    background-position: center center !important;
    background-size: cover;
}
.faq-section {
    position: relative;
    background: #ebebeb;
    padding: 60px 0px !important;
    margin-top: 0px !important;
}
.faq-section:before {
    position: absolute;
    content: '';
    background: url(https://www.teqprosolz.com/public/assets/img/tech_shape_1.png);
    width: 100%;
    height: 100%;
    top: 0px;
    z-index: 0;
    background-attachment: fixed;
    background-size: contain !important;
}
.faq-wrapper {
    position: relative;
}
.widget-head h3:before {
    position: absolute;
    content: '';
    background: #ff3633;
    width: 85px;
    height: 2px;
    bottom: 0;
}
.widget-head h3:after {
    position: absolute;
    content: '';
    background: #fff;
    width: 10px;
    height: 10px;
    bottom: -4px;
    left: 84px;
    border-radius: 100px;
    border: 2px solid #ff3633;
}
.service-block .inner-box:hover h2, .service-block .inner-box:hover p {
    color: #fff;
}
.main-object-inner {
    background-color: #fff;
    box-shadow: 0px 10px 15px rgba(8, 14, 28, 0.06);
    border-radius: 10px;
    position: relative;
    webkit-transition: all 500ms ease;
    transition: all 500ms ease;    
}
.main-object-img img {
    width: 100%;
}
.main-object-content {
    padding: 20px;
}
.main-object-content h2 {
    font-size: 20px;
    line-height: 1.417;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 10px;
    webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    text-align: left;
}
.service-item-current-style5:hover .main-object-img::before {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}
.service-item-current-style5 .main-object-img::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(0, 0, 0, 0.4);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transform: scaleX(0);
    transition: all 500ms ease;
    z-index: 1;
}
.service-item-current-style5 .main-object-img {
    overflow: hidden;
    position: relative;
    border-radius: 6px 6px 0 0;
}
.main-object-inner .play-btn {
    position: absolute;
    top: 50%;
    background: #ff3633;
    left: 0;
    color: #fff;
    width: 50px;
    text-align: center;
    height: 50px;
    line-height: 50px;
    right: 0;
    margin: 0px auto;
    transform: translateY(-50%) scale(0) !important;
    z-index: 9;
    border-radius: 100px;
   webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.main-object-inner:hover .play-btn {
    transform: translateY(-50%) scale(1.1) !important;
    webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.main-object-inner:hover h2 {
    color: #ff3633;
     webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.main-object-content p {
    min-height: 100px;
}
.main-object-block {
    margin-bottom: 30px;
}
.service-list .inner-box {
    min-height: auto !important;
}
.service-list .inner-box:hover a, .service-list .inner-box:hover h3 {
    color: #fff;
}
h3.title {
    font-size: 20px;
    text-transform: capitalize;
    min-height: 60px;
}
.service-page-box .service-block:hover h3 {
    color: #fff;
}
.about-content h3 {
    font-size: 18px;
    text-transform: capitalize;
    margin-bottom: 10px;
    font-weight: 600;
}
.about-content p {
    margin-bottom: 10px;
    color: #000;
}
.testimonial-wrapper .toggle-text-content a {
    color: #ed3b3b;
    font-size: 16px;
    font-style: normal;
}
.service-text-title h2 {
    font-size: 27px;
    color: #fff;
    text-transform: capitalize;
}
.map-items-2 {
    background: #ff4c4c;
    padding: 60px 0px;
    position: relative;
}
.map-items-2:before {
    height: 100%;
    position: absolute;
    content: '';
    width: 100%;
    background: url(https://www.teqprosolz.com/public/assets/img/bg-map.png);
    top: 0;
    left: 0;
    background-position: center center !important;
    background-size: cover;
}
.map-items-2 .container {
    position: relative;
}
.map-items-2 .heading-title {
    color: #fff;
}
.map-items-2 .sub-heading {
    color: #fff;
    margin-top: 12px;
}
.map-contact-info-wrapper .icon-items {
    width: 28%;
    text-align: center;
}
.map-items-2 .icon i {
    color: #fff;
}
.map-contact-info-wrapper h3 a {
    color: #ffffff;
}
.map-contact-info-wrapper h3{
    color: #ffffff;
}
.m-app-w p {
    color: #3e3e3e;
    line-height: 27px;
    margin: 1em auto;
    text-align: justify;
}
.service-block .inner-box .s-img-c img {
    width: 60px;
    margin-bottom: 15px;
    z-index: 9;
    position: relative;
}
.service-block .inner-box .s-img-w img {
    display: none;
}
.service-block .inner-box:hover .s-img-c img {
    display: none;
}
.service-block .inner-box:hover .s-img-w img {
    width: 60px;
    margin-bottom: 15px;
    z-index: 9;
    position: relative;
    display: block;
}
.w-d .pera-content {
    width: 400px;
}
.work-process-list:hover .toggle-text-link {
    color: #fff;
}
.work-process-list .toggle-text-link {
    font-weight: 600;
    font-size: 16px;
    text-decoration: underline;
}
.mobile-app-offer {
    height: 300px;
    background-position: center center !important;
    background-size: cover !important;
    background-attachment: fixed !important;
}
.app-s {
    width: 500px;
    margin: 0px auto;
    display: block;
}
.mobile-app-offer {
    height: 530px;
    background-position: center center !important;
    background-size: cover !important;
    background-attachment: fixed !important;
    padding: 2em 0px;
    position: relative;
    overflow: hidden;
}
.mobile-app-offer:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgb(59 59 59 / 93%);
    left: 0;
    top: 0;
    z-index: 9;
}
.mobile-app-offer .row {
    z-index: 9;
    position: relative;
}
.app-s-content h2 {
    font-family: "Edu NSW ACT Cursive", cursive;
    text-transform: capitalize;
    color: #f2f2f2;
    font-size: 38px;
    margin-bottom: 22px;
    margin-top: 22px;
    line-height: 80px;
}
.app-s-content p {
    color: #f2f2f2;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 12px;
}
.app-s-content a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    text-transform: uppercase;
    text-align: center;
    background: #ff3633;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    padding: 18px 36px;
    z-index: 1;
    overflow: hidden;
    letter-spacing: 0.6px;
    border-radius: 0px;
    position: relative !important;
    margin-top: 12px;
}
.services-background .app-s-content a {
    margin: 0px !important;
    text-align: left;
    display: flex;
    justify-content: flex-start;
    width: 385px;
}
.count-wrapper {
    background: #ff4c4c;
    padding: 2em 0px;
}

.app-s-content a:hover{
box-shadow: 0 10px 10px -10px rgba(0, 0, 0, .5);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.our-indutries .main-features-list li {
    width: 32%;
    margin-bottom: 25px;
}
.our-indutries .main-features-list li img {
    width: 100%;
}
.our-indutries .main-features-list li span {
    width: 100%;
    height: 80px;
    background: #eeeeee;
    display: block;
    text-align: center;
    margin-right: 10px;
    color: #fff;
    font-size: 20px;
    line-height: 80px;
    border-radius: 100px;
    max-width: 80px;
    margin: 0px auto 10px;
    margin-top: 10px;
    padding: 5px;
}
.our-indutries .main-features-list li:hover span {
    background: #d1d0d0;
}
.t-inner-img img {
    width: 100%;
}
.t-inner-img {
    overflow: hidden;
}
.t-inner-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
    filter: grayscale(100%);
}
.t-inner {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.4s ease-in-out;
}
.t-inner .t-inner-c {
    position: absolute;
    bottom: 0;
    background: linear-gradient(135deg, rgba(237, 59, 59, 1) 0%, rgb(166 6 6 / 84%) 77%);
    color: #fff;
    padding: 22px 30px;
    text-align: left;
    width: 100%;
    height: 72px;
    transition: all 0.4s ease-in-out;
}
.t-inner-c ul li:before {
    position: absolute;
    content: '';
    background: #fff;
    width: 8px;
    height: 8px;
    border-radius: 100px;
    top: 10px;
    left: 0;
}
.t-inner-c ul li {
    font-size: 16px;
    font-weight: 400;
    position: relative;
    padding-left: 20px;
}
.t-inner:hover img {
    transform: scale(1.1);
    transition: all 0.4s ease-in-out;
}
.t-inner-c h3 {
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 20px;
    font-size: 20px;
}
.t-inner:hover .t-inner-c {
    height: 100%;
    transition: all 0.4s ease-in-out;
}
.d-process h3 {
    font-size: 16px;
    line-height: 25px;
    text-transform: capitalize;
    font-weight: 600;
    text-align: center;
    margin-top: 20px;
    color: #cb3434;
}
.d-process .experience-tab-content p {
    max-width: 100%;
}

.mobile-app-offer:after {
    position: absolute;
    content: '';
    width: 300px;
    height: 100%;
    z-index: 99;
    transform: rotate(45deg);
    left: -260px;
    background: linear-gradient(135deg, rgba(237, 59, 59, 1) 0%, rgba(55, 14, 14, 0) 77%, rgba(0, 0, 0, 0) 100%);
    top:0;
}
.p-section:before {
    display: none;
}
.p-section {
    padding: 2em 0px !important;
    background: #ffebeb;
}
.p-section .case-study-content ul li {
    color: #003466;
}
.p-section .case-study-content b {
    color: #003466;
    font-weight: 600;
    font-size: 16px;
}
.p-section .case-study-content {
    padding: 0px 40px;
}
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 300px;
    perspective: 1000px;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}

.flip-card:focus {
    outline: 0;
}

.flip-card:hover .flip-card-inner,
.flip-card:focus .flip-card-inner{
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
}
.flip-card-front {
    background: #003366;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.flip-card-front h3 {
    color: #fff;
    text-transform: capitalize;
}
.flip-card-back {
    background: linear-gradient(to right, #545454, #9b9b9b);
    color: white;
    transform: rotateY(180deg);
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    flex-direction: column;
}
.flip-section {
    margin: 3em 0px;
}
.flip-card-back h3 {
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 10px;
}
.flip-card-back p {
    color: #fff;
}
.flip-card-front img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}
.tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.tabs label {
    order: 1;
    padding: 16px 25px;
    margin-right: 0.2rem;
    cursor: pointer;
    background: #ff3633;
    font-weight: 500;
    transition: background ease 0.2s;
    color: #fff;
}
.tabs .tab {
    order: 99;
    width: 100%;
    display: none;
    padding: 30px 10px;
    background: #fff;
    border-top: 2px solid #e2e2e2;
}
.tabs input[type="radio"] {
	display: none;
}
.tabs input[type="radio"]:checked + label {
    background: #ececec;
    border-bottom: 3px solid #ff3633;
    color: #303030;
    font-weight: 700;
}
.tabs input[type="radio"]:checked + label + .tab {
	display: block;
}
.tab-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tab-image img {
    width: 100%;
    padding: 20px;
    height: 650px;
    object-fit: cover;
}
.tab-image, .tab-content {
    width: 50%;
}
.tab-content h3 {
    color: #2f2e2e;
    text-transform: capitalize;
    font-size: 20px;
    margin-bottom: 6px;
}
.tab-content p {
    margin-bottom: 20px;
}
.benefit-img {
    height: 750px;
    object-fit: fill;
}
.benefits-list li {
    display: flex;
    justify-content: flex-start;
}
.benefits-list li span {
    margin-right: 12px;
}
.benefits-list li p {
    width: auto !important;
    margin: 0px;
}
@media (max-width: 45em) {
  .tabs .tab,
  .tabs label {
    order: initial;
  }
  .tabs label {
    width: 100%;
    margin-right: 0;
    margin-top: 0.2rem;
  }
}


.w-us span {
    font-size: 20px;
    margin-bottom: 10px !important;
    display: block;
}
.visit-w ul li {
    color: #171717;
    font-size: 16px;
    margin: 10px 0px;
    line-height: 40px;
}
.visit-w ul li span i {
    font-size: 22px;
    margin-right: 12px;
    width: 20px;
    color: #d53636;
}
.visit-w {
    padding: 20px;
}
.visit-w h3 {
    text-transform: capitalize;
    margin-bottom: 20px !important;
}
.t-style-2 h3 {
    font-size: 18px;
}
.e-industry .t-inner-img img {
    height: 380px;
}
.what-sub-list li {
    color: #474747;
    padding: 0px;
    margin-bottom: 10px;
    font-weight: 600;
}
.t-inner p {
    color: #fff;
    margin-bottom:12px;
}
.industri-style-02 {
    margin: 4px;
    color: #000;
    font-weight: 400;
    text-align: center;
    border: 1px solid #ccc;
    padding: 20px;
    transition: 300ms;
    background: #fff;
    border-radius: 10px;
    box-shadow: 5px 3px 7px 1px rgb(213 213 213 / 50%);
    line-height: 22px;
    font-size: 15px;
    min-height: 155px;
    vertical-align: top;
    margin-bottom: 30px;
}
.industri-style-02 span {
    width: 100%;
    height: 80px;
    background: #eeeeee;
    display: block;
    text-align: center;
    margin-right: 10px;
    color: #fff;
    font-size: 20px;
    line-height: 80px;
    border-radius: 100px;
    max-width: 80px;
    margin: 0px auto 10px;
    margin-top: 10px;
    padding: 5px;
}
.industri-style-02 img {
    width: 100%;
}
.industri-style-02:hover span {
    background: #d1d0d0;
}
.industri-style-02 p {
    max-width: 100%;
    margin-top: 12px;
}
.industri-style-02 h4 {
    text-transform: capitalize;
    font-size: 18px;
    margin-top: 20px;
}
.industri-style-02:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 60px;
    transform: translateY(-15px);
    transition: 300ms;
}
@media only screen and (max-width: 1199px) {
p {
    font-size: 14px !important;
    line-height: 20px;
}
}

@media only screen and (max-width: 999px) {
    .about-wrapper p {
        max-width: 100%;
        font-size: 14px !important;
        line-height: 20px;
    }
    .theme-btn {
        margin: 0px;
    }
    .service-box p {
    min-height: auto;
}
.service-box li {
    min-height: auto;
}
.service-text-title h2 {
    font-size: 20px;
}
  }

@media only screen and (max-width: 768px) {
.activity-item span {
    margin-right: 0px;
    font-size: 30px;
}
.Company-count {
    margin-top: 25px;
}
.projectFactsWrap .item p.number {
    font-size: 30px !important;
}
.projectFactsWrap .item p {
    font-size: 12px !important;
}
.t-inner-c ul li {
    font-size: 14px;
}
.t-inner-c ul li {
    padding-left: 20px;
}
.t-inner-c h3 {
    font-size: 16px;
}
.t-inner .t-inner-c{
  height:62px;
}
.t-inner-c b{
font-size: 13px;
    font-weight: 500;
}
.widget-head h3:after{
display: none;
}
.footer-widgets-wrapper .single-footer-widget .list-area li a::before{
  display:none;
}
.single-footer-widget ul li a {
    padding: 0px !important;
}
.page-heading h1 {
    font-size: 20px;
}
    .breadcrumb-wrapper .page-heading .breadcrumb-items li {
        font-size: 10px;
    }
.heading-title {
        font-size: 20px;
        font-weight: 700;
        line-height: 22px;
    }
.what-we-do-list li {
    text-align: center;
    padding: 16px;
    margin-bottom: 12px;
}
.what-we-do-list span {
    font-size: 22px;
}
.inner-box.wow.fadeInUp {
    text-align: left;
}
.service-block .inner-box {
    min-height: auto !important;
}
.work-process-icon img {
    position: relative;
}
.work-process-list:hover .pera-content {
    -webkit-transform: none;
    transform: inherit;
    text-align: left;
}
.pera-content {
        width: 100% !important;
        text-align: left;
    }
    .Suggestions p {
    max-width: 100%;
    margin: 0px auto;
    font-size: 14px !important;
}
.what-we-do-img {
    max-width: 300px;
    display: none;
}
    .what-we-do-list li {
        text-align: left;
    }
    .service-image {
    width: 45px;
}
.about-wrapper-3 .about-content {
        margin-left: 0;
        text-align: left;
    }
    .about-content p {
    text-align: left !important;
}
.about-content h3 {
    font-size: 16px;
}
.services-background .app-s-content a {
    width: 100%;
    padding: 12px;
    font-size: 12px;
    text-align: center;
    display: block;
}
}

@media only screen and (max-width: 600px) {
.about-wrapper {
        margin-top: 0px !important;
        padding: 20px 0px !important;
    }
    .funfact-wrapper .icon img {
    height: 100px;
    padding: 15px;
}
.experience-tab-content p {
    min-height: auto;
}
    .experience-tab-icon img {
        width: 50px;
    }
    .experience-tab-content h4 {
    margin-top: 10px;
}
.technology-icon-list li {
        width: 30%;
    }
    .icon img {
    width: 80px;
}
  }
@media only screen and (max-width: 480px) {
      p {
        font-size: 13px !important;
        line-height: 20px !important;
    }
  }