/* Common */
.flip-horizontal {
  transform: scaleX(-1);
}

/* Typing */
.typing-text {
    border-right: 3px solid #fff;
    padding-right: 5px;
    white-space: nowrap;
    overflow: hidden;
    font-size: 40px;
    line-height: 50px;
    color: #fff;
    font-weight: 500;
    font-family: "Ubuntu", sans-serif;
}
@keyframes blink {
    0% { border-color: transparent; }
    50% { border-color: #fff; }
    100% { border-color: transparent; }
}
.typing-text {
    animation: blink 0.8s infinite;
}

/* Circle */
.circle-wrapper {
    width: 150px;
    height: 150px;
    margin: auto;
    position: absolute;
    left: 50px;
    bottom: 0px;
    z-index: -1;
}
.rotating-text {
    width: 100%;
    height: 100%;
    animation: rotateCircle 15s linear infinite;
}
.rotating-text svg {
    width: 100%;
    height: 100%;
}
.rotating-text text {
    font-size: 23px;
    letter-spacing: 4px;
    fill: #fff;
    font-weight: 500;
}
.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.center-logo img {
    width: 40px;
}
.outer-ring {
    fill: none;
    stroke: #fff;
    stroke-width: 1;
}

.inner-ring {
    fill: none;
    stroke: #fff;
    stroke-width: 1;
}
/* Smooth rotation */
@keyframes rotateCircle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Hero image */
.hero-image-box .axis-image-box {
    position: relative;
    min-height: 565px;
    z-index: 1;
}
.hero-image-box .axis-image-box .shape {
    position: absolute;
    right: 25px;
    top: 60px;
    z-index: -1;
    opacity: .7;
}
.hero-image-box .axis-image-box .axis-image.image_one img {
    margin-left: -30px;
    border-radius: 30px;
}
.hero-image-box .axis-image-box .axis-image.image_two {
    position: absolute;
    bottom: 0;
    right: 0px;
}
.hero-image-box .axis-image-box .axis-image.image_two img {
    border: 2px solid var(--white-color);
    border-radius: 30px;
}

/* About */
.axis-about_two .axis-image-box .shape {
    position: absolute;
    right: 74px;
    bottom: 120px;
    transform: rotate(22deg);
}
.axis-about_two .axis-image-box .shape  img {
  animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Text animation */
.slide-text-two {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.slide-text-two::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 20%;
  height: 100%;
  background-image: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 90%);
  content: "";
}
.slide-text-two::before {
  position: absolute;
  right: 0;
  top: 0;
  width: 20%;
  height: 100%;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 90%);
  content: "";
}
.slide-text-two svg {
  font-family: var(--heading-font);
  width: 100%;
  height: 100%;
}
.slide-text-two svg text {
  margin: 0;
  line-height: 1;
  font-size: 6vw;
  animation: stroke 5s infinite alternate;
  stroke-width: 2;
  font-weight: 900;
  stroke: var(--primary-color);
  text-transform: uppercase;
}

@keyframes stroke {
  0% {
    fill: rgba(var(--lotech-white-rgb, 255, 255, 255), 0);
    stroke: rgba(var(--lotech-base-rgb, 255, 59, 0), 1);
    stroke-dashoffset: 25%;
    stroke-dasharray: 0 50%;
    stroke-width: 2;
  }
  70% {
    fill: rgba(var(--lotech-white-rgb, 255, 255, 255), 0);
    stroke: rgba(var(--lotech-base-rgb, 255, 59, 0), 1);
  }
  80% {
    fill: rgba(var(--lotech-white-rgb, 255, 255, 255), 0);
    stroke: rgba(var(--lotech-base-rgb, 255, 59, 0), 1);
    stroke-width: 2;
  }
  100% {
    fill: rgba(var(--lotech-base-rgb, 255, 59, 0), 1);
    stroke: rgba(var(--lotech-white-rgb, 255, 255, 255), 0);
    stroke-dashoffset: -25%;
    stroke-dasharray: 50% 0;
    stroke-width: 0;
  }
}

/* Arrow animation */
.work-process-one__item__draw {
  position: absolute;
  top: 55px;
  left: 45%;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(90deg, var(--lotech-base, #FF3B00), var(--lotech-base, #FF3B00) 40%, transparent 40%, transparent 100%);
  background-size: 12px 1px;
  z-index: -1;
  transition: all 0.7s;
  animation: shapes 5s linear infinite;
}

.work-process-one__item__draw::after {
  content: "\f178";
  font-family: "Font Awesome 5 Pro";
  color: var(--lotech-base, #FF3B00);
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  transition: all 0.7s;
}

@keyframes shapes {
  0% {
    width: 0%;
    opacity: 1;
  }
  100% {
    width: 74%;
  }
}
.view_All_servi_btn {
  display: block;
}
.view_All_servi_btn_mbl, .about_developer {
  display: none;
}
.view_website_btn {
  font-weight: 500;
  padding: 12px 20px;
}
.axis-project-details-sec .project-details-wrapper .project-thumbnail {
  height: 500px;
}
.axis-project-details-sec .project-details-wrapper .project-thumbnail img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.project_detai_box_1 {
  margin-top: 50px;
}
.axis-project-details-sec .project-details-wrapper .project-info-box ul li p {
  margin-bottom: 0px;
  font-weight: 600;
}
.axis-project-details-sec .project-details-wrapper .project-info-box ul li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.axis-contact_three .axis-contact-box h2 {
  font-size: 40px;
  margin-bottom: 10px;
}
.axis-contact_three .axis-info-box.style-one .icon i {
  font-size: 25px;
}
.service_deta_sidebar {
  background-color: #F6F6F6;
  padding: 40px;
  border-radius: 30px;
}
.service_deta_sidebar .widget-content ul li:not(:last-child) {
  margin-bottom: 15px;
}
.service_deta_sidebar .widget-content ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 15px 25px;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  justify-content: space-between;
}
.service_deta_sidebar .widget-content ul li a:hover, .service_deta_sidebar .widget-content ul li a.active {
  background-color: #FF3B00;
  color: #fff;
}
.service_sidebar_bnr {
  background-color: var(--primary-black-color);
  color: #fff;
  padding: 70px 25px;
  text-align: center;
  border-radius: 40px;
}
.service_sidebar_bnr h4 {
  font-size: 35px;
  font-weight: 600;
  line-height: 40px;
  color: var(--primary-color);
}
.service_sidebar_bnr .icon {
  margin: 25px 0;
}
.service_sidebar_bnr .icon img {
  filter: invert(1) brightness(3);
  transform: rotate(-35deg);
}
.service_sidebar_bnr .call-text {
  font-size: 20px;
  margin-bottom: 15px;
}
.service_sidebar_bnr .phone {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 15px;
}
.service_sidebar_bnr p {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 24px;
}
.service_sidebar_bnr .btn-custom {
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  transition: 0.3s;
}
.mt-minus-5 {
  margin-top: -5px;
}
.theme-btn.style-three {
  color: #fff;
  border: 1px solid #fff;
}
.hero_btn_1:hover {
  background-color: var(--primary-color) !important;
}
.axis-service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.axis-service-card .content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.axis-service-card .read-more {
  margin-top: auto;
}
.axis-testimonial_two .axis-success-box .content h3 {
  font-size: 27px;
}
.axis-testimonial_two .axis-success-box .content h4 {
  font-size: 20px;
  margin-bottom: 10px;
}
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  background-color: #25D366;
  color: #fff;
  font-size: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: scale(0.8);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
}
.whatsapp-btn.active {
  opacity: 1;
  visibility: visible;
}

.whatsapp-btn:hover {
  background-color: #1ebe5d;
  color: #fff;
}
.our_work_side_btn .theme-btn {
  width: 100%;
  padding: 12px 30px;
  font-weight: 400;
  margin-top: 20px;
}




@media (max-width: 767px) {
  .theme-btn {
    font-weight: 500;
    letter-spacing: 0px;
  }
  .slide-text-two {
    margin: -50px 0;
  }
  .typing-text {
    font-size: 30px;
    line-height: 35px;
  }
  .hero-wrapper_three .hero-content p {
    color: var(--white-color);
    max-width: 770px;
    margin-bottom: 35px;
    font-size: 14px;
    line-height: 20px;
    margin-top: 15px;
  }
  .hero-image-box .axis-image-box .axis-image.image_one img {
    margin-left: 0px;
    height: 300px;
    width: 100%;
    object-fit: cover;
    object-position: top;
  }
  .hero-image-box .axis-image-box .axis-image.image_two {
    bottom: 110px;
  }
  .hero-image-box .axis-image-box .axis-image.image_two img {
    height: 250px;
  }
  .circle-wrapper {
    left: 15px;
    bottom: -60px;
  }
  .hero-wrapper_three {
    padding: 140px 0 50px;
  }
  .axis-about_two .about_mbl {
    flex-direction: column-reverse;
  }
  .axis-about_two .axis-image-box {
    margin-top: 30px;
    margin-bottom: 0px !important;
  }
  .axis-about_two .axis-image-box .shape, .axis-iconic-left-box.style-two .content br,
  .work-process-one__item__draw {
    display: none;
  }
  .axis-about_two .axis-image-box .axis-counter-wrapper .axis-counter-item.style-one {
    padding: 20px 25px 25px;
  }
  .axis-about_two .axis-image-box .axis-image {
    width: 100%;
  }
  .axis-about_two .axis-image-box .axis-image img {
    height: 300px;
    width: 100%;
    object-fit: cover;
  }
  .axis-about_two {
    padding-top: 50px;
  }
  @keyframes stroke {
    0% {
      fill: rgba(var(--lotech-white-rgb, 255, 255, 255), 0);
      stroke: rgba(var(--lotech-base-rgb, 255, 59, 0), 1);
      stroke-dashoffset: 25%;
      stroke-dasharray: 0 50%;
      stroke-width: 1;
    }
    70% {
      fill: rgba(var(--lotech-white-rgb, 255, 255, 255), 0);
      stroke: rgba(var(--lotech-base-rgb, 255, 59, 0), 1);
    }
    80% {
      fill: rgba(var(--lotech-white-rgb, 255, 255, 255), 0);
      stroke: rgba(var(--lotech-base-rgb, 255, 59, 0), 1);
      stroke-width: 1;
    }
    100% {
      fill: rgba(var(--lotech-base-rgb, 255, 59, 0), 1);
      stroke: rgba(var(--lotech-white-rgb, 255, 255, 255), 0);
      stroke-dashoffset: -25%;
      stroke-dasharray: 50% 0;
      stroke-width: 0;
    }
  }
  .axis-service_three {
    padding-top: 25px;
  }
  .axis-service_three .section-title {
    margin-bottom: 25px;
  }
  .axis-service-card.style-two .content .title {
    max-width: 100%;
    font-size: 22px;
    margin-bottom: 10px;
  }
  .axis-service-card.style-two > .icon {
    margin-bottom: 20px;
  }
  .axis-service-card.style-two .content p {
    margin-bottom: 25px;
  }
  .axis-service-card.style-two {
    margin-bottom: 30px;
  }
  .axis-service_one {
    padding-top: 40px;
  }
  .axis-service_one .section-title {
    margin-bottom: 25px;
  }
  .axis-service_one .service-wrapper {
    padding: 30px 15px;
  }
  .axis-service_one .service-wrapper .nav-tabs li:not(:last-child) {
    margin-bottom: 0px;
  }
  .axis-service_one .service-wrapper .nav-tabs .nav-link span {
    width: 45px;
    height: 45px;
  }
  .axis-service_one .service-wrapper .nav-tabs .nav-link {
    font-size: 20px;
  }
  .clients-wrapper {
    padding: 60px 0px;
  }
  .axis-choose_two {
    padding: 50px 0px 0px;
  }
  .axis-counter-item.style-two .content h5 {
    max-width: 100%;
    font-size: 18px;
    line-height: 25px;
  }
  .axis-choose_two .axis-content-box > p {
    margin-bottom: 25px;
  }
  .axis-counter-item.style-two {
    margin-bottom: 20px;
  }
  .why_choose_ul {
    margin-bottom: 10px;
  }
  .axis-choose_two .axis-image-box {
    margin-right: 0px;
    margin-bottom: 1rem !important;
    min-height: unset;
  }
  .axis-work_one {
    padding: 50px 0px 20px;
  }
  .axis-iconic-box.style-one .icon {
    margin-bottom: 25px;
  }
  .axis-iconic-box.style-one {
    padding: 30px 30px 30px;
  }
  .axis-testimonial_two {
    padding: 50px 0px 25px;
  }
  .axis-testimonial_two .section-title {
    margin-bottom: 20px;
  }
  .axis-testimonial_two .ratings-box {
    margin-bottom: 20px;
  }
  .ratings-count {
    margin-top: -15px;
  }
  .axis-testimonial_two .axis-success-box .content h3 {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .axis-testimonial_two .axis-success-box {
    padding: 20px 30px;
  }
  .axis-testimonial_two .axis-success-box .content {
    margin-bottom: 25px;
    padding-bottom: 25px;
  }
  .axis-testimonial_two .axis-success-box {
    margin-bottom: 20px !important;
  }
  .footer-widget-area {
    padding: 30px 0px 0px;
  }
  .footer-widget .widget-content .widget-nav li a, .axis-info-box.style-two .info p,
  .copyright-area .copyright-text p {
    font-size: 16px;
    color: #fff;
  }
  .axis-about_one {
    padding: 50px 0px;
  }
  .axis-about_one .axis-image-box .axis-image.image-one img {
    height: 355px;
    width: 100%;
    object-fit: cover;
  }
  .axis-about_one .axis-image-box {
    margin-bottom: 25px !important;
  }
  .axis-about_one .section-title {
    margin-bottom: 20px;
  }
  .axis-about_one .check-list {
    margin-bottom: 15px;
  }
  .axis-features_two .section-title, .axis-feature-card.style-two .content .count-box,
  .axis-project-details-sec .project-details-wrapper .project-content p,
  .project-details-wrapper .axis-content-item {
    margin-bottom: 20px;
  }
  .axis-feature-card.style-two .content h4, .axis-feature-card.style-three .content h4 {
    font-size: 20px;
    line-height: 27px;
  }
  .axis-feature-card.style-three {
    margin-top: 30px;
  }
  .axis-feature-card.style-three .content > p, .axis-feature-card.style-three .content .axis-avatar-box,
  .axis-project_five .section-title {
    margin-bottom: 30px;
  }
  .axis-feature-card.style-three .content .counter-box {
    width: 70%;
  }
  .axis-feature-card.style-three .content .counter-box h2 {
    font-size: 40px;
    line-height: 45px;
  }
  .axis-feature-card.style-three .content .counter-box p {
    line-height: 22px;
  }
  .axis-feature-card.style-two {
    padding: 20px 40px 25px;
  }
  .axis-feature-card.style-four .content > p, .axis-info-box.style-four .icon {
    margin-bottom: 10px;
  }
  .axis-features_two {
    padding-bottom: 20px;
  }
  .axis-counter_one .axis-counter-item.style-one .content h2 {
    font-size: 45px;
    margin-bottom: 5px;
  }
  .axis-counter_one .axis-counter-item.style-one .content h5 {
    font-weight: 100;
    font-size: 16px;
  }
  .axis-counter_one {
    padding: 50px 0px 25px;
  }
  .axis-progress-item .step {
    width: 100px;
    height: 100px;
    font-size: 33px;
    margin-bottom: 25px;
  }
  .axis-progress-item .step:after {
    width: 120px;
    height: 120px;
  }
  .axis-progress-item .step .content p {
    line-height: 24px;
  }
  .axis-process_one {
    padding: 40px 0px 10px;
  }
  .axis-cta_two .axis-content-box {
    padding: 50px 0 70px;
  }
  .about_client {
    padding: 40px 0px 50px;
  }
  .axis-contact_one {
    padding-bottom: 50px;
    margin-top: 30px;
    padding-top: 40px;
  }
  .slide-text-two::after, .slide-text-two::before {
    height: 80%;
  }
  .axis-contact_one .contact-form-wrapper label {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .axis-contact_one .contact-form-wrapper .form_control {
    border-radius: 15px;
    margin-bottom: 15px;
  }
  .axis-contact_one .contact-form-wrapper h4 {
    margin-bottom: 15px;
    font-size: 22px;
  }
  .axis-project_five {
    padding-top: 30px;
    padding-bottom: 0px;
  }
  .axis-project-item {
    margin-bottom: 40px;
  }
  .row > div:last-child .axis-project-item {
    margin-bottom: 0;
  }
  .axis-project-item.style-one .project-content {
    padding: 15px 25px;
  }
  .axis-project-item.style-one .project-thumbnail img {
    height: 320px;
    object-fit: cover;
  }
  .axis-cta_three .axis-button {
    text-align: center;
  }
  .axis-project-details-sec {
    padding: 45px 0px 50px;
  }
  .axis-project-details-sec .project-details-wrapper .project-info-box, .project-thumbnail {
    margin-bottom: 35px !important;
  }
  .axis-project-details-sec .project-details-wrapper .project-thumbnail img {
    height: 370px;
  }
  .project-details-wrapper .check-list {
    margin-bottom: 13px;
  }
  .project_detai_box_1 {
    margin-top: 30px;
  }
  .axis-project-details-sec .project-details-wrapper .project-content .axis-content-item .content h4 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .axis-project-details-sec .project-details-wrapper .project-content .content-box .check-list li:not(:last-child) {
    margin-bottom: 15px;
  }
  .project-details-wrapper .content-box.mb-5 {
    margin-bottom: 30px !important;
  }
  .axis-project-details-sec .post-navigation-wrapper {
    padding: 25px 20px;
    margin-top: 40px;
  }
  .axis-project-details-sec .post-navigation-wrapper .post-navigation-item .thumbnail i {
    padding: 12px;
  }
  .axis-project-details-sec .post-navigation-wrapper .post-navigation-item .thumbnail {
    width: 40px;
    -webkit-margin-end: 5px;
    margin-inline-end: 5px;
  }
  .axis-project-details-sec .post-navigation-wrapper .post-navigation-item .content h4 {
    font-size: 18px;
  }
  .axis-project-details-sec .post-navigation-wrapper .post-navigation-item .content p {
    font-size: 14px;
  }
  .axis-project-details-sec .project-details-wrapper .project-info-box ul li {
    display: grid;
  }
  .axis-project-details-sec .project-details-wrapper .project-info-box ul li:not(:last-child) {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  .axis-contact_three .axis-contact-box h2 {
    font-size: 30px;
  }
  .axis-contact_three {
    padding-top: 30px;
  }
  .axis-contact_three {
    padding-top: 30px;
  }
  .service-details-sec {
    padding-top: 40px;
  }
  .service-details-wrapper .service-item-main .service-thumbnail img {
    height: 300px;
    object-fit: cover;
  }
  .gallery-slider .slick-slide {
    margin-top: 20px;
    margin-bottom: 0px;
  }
  .service-details-wrapper .service-item-main ul.check-list.style-one {
    margin-bottom: 15px;
  }
  .service-item-main {
    margin-bottom: 30px;
  }
  .service_sidebar_bnr h4 {
    font-size: 30px;
    line-height: 35px;
  }
  .service_sidebar_bnr {
    padding: 40px 20px;
  }
  .service_sidebar_bnr .phone {
    font-size: 22px;
  }
  .service-details-sec .counter-wrapper {
    text-align: center;
    margin: 40px 0px 30px;
  }
  .service-details-sec .counter-wrapper .axis-counter-item {
    margin-bottom: 20px;
  }
  .axis-project-details-sec .project-details-wrapper .project-info-box ul li span {
    text-align: left;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .view_All_servi_btn, .draw-two {
    display: none;
  }
  .view_All_servi_btn_mbl {
    display: block;
  }
  .hero-wrapper_three {
    padding: 170px 0 40px;
  }
  .hero-wrapper_three .hero-content h1 {
    font-size: 70px;
  }
  .typing-text {
    font-size: 45px;
  }
  .axis-about_two {
    padding-top: 60px;
    padding-bottom: 15px;
  }
  .section-title h2 {
    font-size: 35px;
    line-height: 40px;
  }
  .axis-about_two .axis-image-box {
    margin-bottom: 100px !important;
  }
  .axis-service_three {
    padding-top: 0px;
  }
  .axis-service_three .section-title {
    margin-bottom: 35px;
  }
  .axis-service-card.style-two .content .title {
    max-width: 100%;
    margin-bottom: 10px;
  }
  .axis-service-card.style-two > .icon {
    margin-bottom: 20px;
  }
  .axis-service-card.style-two .content p {
    margin-bottom: 20px;
  }
  .axis-service_one {
    padding-top: 40px;
  }
  .axis-service_one .section-title {
    margin-bottom: 35px;
  }
  .axis-service_one .service-wrapper .nav-tabs .nav-link {
    font-size: 20px;
  }
  .axis-service_one .service-wrapper .nav-tabs li:not(:last-child) {
    margin-bottom: 5px;
  }
  .axis-service_one .service-wrapper {
    padding: 45px 50px;
  }
  .clients-wrapper {
    padding: 60px 0px;
  }
  .axis-choose_two {
    padding: 50px 0px 10px;
  }
  .axis-work_one {
    padding: 50px 0px 25px;
  }
  .axis-testimonial_two {
    padding: 60px 0px 40px;
  }
  .axis-testimonial_two .section-title {
    margin-bottom: 20px;
  }
  .axis-testimonial_two .ratings-box {
    margin-bottom: 40px;
  }
  .footer-widget-area {
    padding: 40px 0px 0px;
  }
  .header-navigation .site-branding .brand-logo img {
    max-width: 100%;
    width: 110px;
  }
  .header-navigation .site-branding {
    max-width: 100%;
  }
  .page-hero {
    padding: 120px 0 70px;
    background-position: left;
  }
  .axis-about_one .axis-image-box .axis-image.image-one img {
    width: 100%;
    height: 550px;
    object-fit: cover;
  }
  .axis-about_one {
    padding: 60px 0px;
  }
  .page-hero .page-content h1 {
    font-size: 50px;
  }
  .page-hero .page-content ul li {
    font-size: 18px;
    line-height: 25px;
  }
  .axis-about_one .axis-image-box {
    margin-bottom: 2rem !important;
  }
  .axis-about_one .check-list, .axis-info-box.style-four .icon {
    margin-bottom: 15px;
  }
  .axis-features_two .section-title, .axis-feature-card.style-two .content .count-box {
    margin-bottom: 30px;
  }
  .axis-feature-card.style-three .content > p {
    margin-bottom: 30px;
  }
  .axis-feature-card.style-three .content .axis-avatar-box,
  .axis-contact_one .axis-content-box > p {
    margin-bottom: 25px;
  }
  .axis-features_two {
    padding-bottom: 30px;
  }
  .axis-process_one {
    padding-bottom: 10px;
  }
  .axis-cta_two .axis-content-box {
    padding: 50px 0 60px;
  }
  .service_page_sec {
    padding-top: 40px;
  }
  .axis-service-card.style-two .content .title {
    font-size: 22px;
  }
  .axis-contact_one {
    padding-bottom: 70px;
  }
  .axis-project-item, .axis-project_five .section-title {
    margin-bottom: 40px;
  }
  .row > div:nth-last-child(-n+2) .axis-project-item {
    margin-bottom: 0;
  }
  .axis-project-item.style-one .project-thumbnail img {
    height: 340px;
    object-fit: cover;
  }
  .axis-cta_three .axis-button {
    text-align: center;
  }
  .project-details-wrapper .axis-content-item {
    margin-bottom: 30px;
  }
  .axis-project-details-sec .project-details-wrapper .project-content .content-box .check-list li:not(:last-child) {
    margin-bottom: 15px;
  }
  .service-details-sec .counter-wrapper {
    margin: 40px 0px 40px;
  }
}

@media (min-width: 993px) and (max-width: 1200px) {
  .section-title h2 {
    font-size: 35px;
    line-height: 40px;
  }
  .hero-wrapper_three {
    padding: 150px 0 40px;
  }
  .hero-wrapper_three .hero-content h1 {
    font-size: 60px;
  }
  .typing-text {
    font-size: 40px;
    line-height: 50px;
  }
  .hero-image-box .axis-image-box .axis-image.image_one img {
    margin-left: 0px;
  }
  .hero-wrapper_three .row.align-items-center.justify-content-center {
    align-items: start !important;
  }
  .hero-wrapper_three .hero-content {
    margin-bottom: 35px;
    margin-top: 70px;
  }
  .circle-wrapper {
    left: -100px;
    bottom: -20px;
    z-index: -1;
  }
  .hero-image-box .axis-image-box .axis-image.image_two {
    bottom: 30px;
  }
  .hero-image-box .axis-image-box .axis-image.image_one img {
    height: 350px;
    width: 100%;
    object-fit: cover;
    object-position: top;
  }
  .axis-about_two {
    padding-top: 60px;
    padding-bottom: 15px;
  }
  .axis-about_two .axis-image-box .axis-counter-wrapper .axis-counter-item.style-one {
    padding: 25px;
  }
  .axis-about_two .axis-image-box .axis-counter-wrapper .axis-counter-item.style-one .content {
    text-align: center;
  }
  .axis-about_two .axis-image-box .axis-counter-wrapper .axis-counter-item.style-one .content h2 {
    font-size: 40px;
  }
  .axis-about_two .axis-image-box .axis-counter-wrapper .axis-counter-item.style-one .content p {
    font-size: 14px;
    line-height: 20px;
    margin-top: 5px;
  }
  .axis-about_two .axis-image-box .shape, .axis-iconic-left-box.style-two .content br,
  .axis-feature-card.style-three .axis-image img, .draw-two {
    display: none;
  }
  .axis-about_two .axis-content-box .axis-content-wrap .item-border .axis-iconic-left-box {
    padding: 0px;
  }
  .axis-content-wrap-tab .col-md-6.item-border {
    width: 100%;
    margin-bottom: 10px;
  } 
  .axis-about_two .axis-content-box .axis-content-wrap .item-border:not(:last-child) .axis-iconic-left-box {
    border-right: unset;
  }
  .axis-about_two .axis-content-box > p {
    margin-bottom: 25px;
    padding-bottom: 20px;
  }
  .axis-about_two .axis-content-box .check-list {
    margin-top: 15px;
    margin-bottom: 20px;
  }
  .axis-service_three {
    padding-top: 0px;
  }
  .axis-service-card.style-two .content .title {
    max-width: 100%;
  }
  .axis-service_one {
    padding: 50px 20px 0px;
  }
  .axis-service_one .section-title {
    margin-bottom: 35px;
  }
  .axis-service_one .service-wrapper {
    padding: 50px 30px;
  }
  .axis-service_one .service-wrapper .nav-tabs .nav-link {
    font-size: 20px;
  }
  .axis-service_one .service-wrapper .nav-tabs li:not(:last-child) {
    margin-bottom: 10px;
  }
  .axis-service_one .service-wrapper .service-content-wrap .axis-image {
    max-width: 460px;
  }
  .axis-service_one .service-wrapper .service-content-wrap .content-box {
    padding: 20px;
  }
  .clients-wrapper {
    padding: 60px 0px;
  }
  .axis-choose_two {
    padding: 70px 0px 20px;
  }
  .axis-work_one {
    padding: 50px 0px 25px;
  }
  .axis-testimonial_two {
    padding: 60px 0px 40px;
  }
  .footer-widget-area {
    padding: 40px 0px 0px;
  }
  .page-hero {
    padding: 140px 0 80px;
  }
  .page-hero .page-content h1 {
    font-size: 50px;
  }
  .page-hero .page-content ul li {
    font-size: 18px;
    line-height: 25px;
  }
  .axis-about_one .axis-content-box .nav-tabs {
    justify-content: space-evenly;
  }
  .axis-about_one .axis-content-box .nav-tabs .nav-link {
    padding: 13px 15px;
    font-weight: 500;
    font-size: 14px;
  }
  .axis-about_one .axis-content-box .nav-tabs {
    margin-bottom: 25px;
  }
  .axis-about_one {
    padding-bottom: 40px;
  }
  .axis-features_two .section-title {
    margin-bottom: 30px;
  }
  .axis-feature-card.style-three .content h4, .axis-feature-card.style-two .content h4,
  .axis-feature-card.style-four .content h4 {
    font-size: 22px;
    line-height: 30px;
  }
  .axis-feature-card.style-three .content > p {
    margin-bottom: 30px;
  }
  .axis-feature-card.style-two .content .count-box {
    margin-bottom: 15px;
  }
  .axis-feature-card.style-three .content .axis-avatar-box {
    margin-bottom: 50px;
  }
  .axis-features_two {
    padding-bottom: 30px;
  }
  .service_page_sec {
    padding-top: 50px;
  }
  .axis-project-item, .axis-project_five .section-title {
    margin-bottom: 40px;
  }
  .row > div:nth-last-child(-n+3) .axis-project-item {
    margin-bottom: 0;
  }
  .axis-project-item.style-one .project-thumbnail img {
    height: 320px;
    object-fit: cover;
  }
  .axis-cta_three .axis-button {
    text-align: center;
  }
}

@media (min-width: 1201px) and (max-width: 1400px) {
  .hero-wrapper_three {
    padding: 170px 0 80px;
  }
  .hero-wrapper_three .hero-content h1 {
    font-size: 70px;
  }
  .typing-text {
    font-size: 45px;
    line-height: 55px;
  }
  .circle-wrapper {
    left: 0px;
    bottom: -20px;
  }
  .page-hero .page-content h1 {
    font-size: 55px;
  }
  .page-hero .page-content ul li {
    font-size: 18px;
  }
  .axis-choose_two .axis-content-box {
    margin-left: 0px;
  }
}

@media (min-width: 1601px) and (max-width: 1800px) {
  .axis-about_two .axis-image-box .axis-counter-wrapper {
    right: 90px;
  }
  .axis-about_two .axis-image-box .shape {
    right: 130px;
    bottom: 125px;
  }
  .axis-choose_two .axis-image-box .axis-image.image_two {
    left: 60px;
  }
  .axis-choose_two .axis-image-box .axis-image.image_three {
    right: 20px;
  }
  .axis-about_one .axis-image-box .axis-image.image-one img {
    width: 90%;
  }
  .axis-features_two {
    padding-bottom: 70px;
  }
}

@media (min-width: 1801px) and (max-width: 2000px) {
  .axis-about_two .axis-image-box .axis-counter-wrapper {
    right: 90px;
  }
  .axis-about_two .axis-image-box .shape {
    right: 130px;
    bottom: 125px;
  }
  .axis-about_two .axis-image-box .axis-image img {
    width: 65%;
  }
  .axis-about_two .axis-image-box .axis-counter-wrapper {
    right: 90px;
    bottom: -40px;
  }
  .axis-about_two .axis-image-box .shape {
    right: 150px;
    bottom: 160px;
    transform: scale(1.2) rotate(22deg);
  }
  .axis-about_two {
    padding-bottom: 75px;
  }
  .hero-image-box .axis-image-box .axis-image.image_one img {
    width: 70%;
  }
  .circle-wrapper {
    left: -60px;
    bottom: -49px;
  }
  .axis-choose_two .axis-image-box .axis-image.image_two {
    left: 20%;
  }
  .axis-choose_two .axis-image-box .axis-image.image_two img {
    transform: scale(1.1);
  }
  .axis-choose_two .axis-image-box .axis-avatar-box {
    left: 15%;
  }
  .axis-choose_two .axis-image-box .axis-image.image_three {
    right: 20px;
  }
  .axis-about_one .axis-image-box .axis-image.image-one img {
    width: 80%;
  }
  .axis-features_two {
    padding-bottom: 80px;
  }
  .about_developer {
    display: block;
    position: absolute;
    right: 15px;
    bottom: 25px;
    filter: invert(6%) sepia(87%) saturate(1800%) hue-rotate(210deg) brightness(40%) contrast(120%);
  }
}

@media (min-width: 2001px) and (max-width: 2200px) {
  .axis-choose_two .axis-image-box .axis-image.image_three {
    display: none;
  }
}

@media (min-width: 2201px) {
  .axis-choose_two .axis-image-box .axis-image.image_three img {
    transform: scale(1.1);
  }
  .about_developer {
    transform: scale(1.4);
    right: 100px !important;
  }
  .axis-contact_one {
    margin-top: 50px;
  }
}
@media (min-width: 2001px) {
  .hero-image-box .axis-image-box .axis-image.image_one {
    text-align: start !important;
  }
  .hero-image-box .axis-image-box .axis-image.image_one img {
    width: 70%;
  }
  .hero-image-box .axis-image-box .axis-image.image_two {
    right: 50px;
    transform: scale(1.1);
  }
  .circle-wrapper {
    left: -200px;
    bottom: -40px;
  }
  .axis-about_two .axis-image-box .axis-counter-wrapper {
    right: 90px;
  }
  .axis-about_two .axis-image-box .axis-image img {
    width: 65%;
  }
  .axis-about_two .axis-image-box .shape {
    right: 140px;
    bottom: 140px;
  }
  .axis-about_two {
    padding-bottom: 5%;
  }
  .axis-service_one .container {
    max-width: 60%;
  }
  .axis-choose_two .axis-image-box .axis-image.image_two img {
    transform: scale(1.1);
  }
  .axis-choose_two .axis-image-box .axis-image.image_two {
    left: 20%;
  }
  .axis-choose_two .axis-image-box .axis-avatar-box {
    left: 15%;
  }
  .axis-work_one {
    margin: 0 60px;
  }
  .axis-features_two {
    padding-bottom: 100px;
  }
  .about_developer {
    display: block;
    position: absolute;
    right: 15px;
    bottom: 25px;
    filter: invert(6%) sepia(87%) saturate(1800%) hue-rotate(210deg) brightness(40%) contrast(120%);
  }
  .axis-about_one .axis-image-box .axis-image.image-one img {
    width: 80%;
  }
}


